diff --git a/modules/simpletest/tests/upgrade/drupal-7.bare.database.php b/modules/simpletest/tests/upgrade/drupal-7.bare.database.php
new file mode 100644
index 0000000..feb7b4d
--- /dev/null
+++ b/modules/simpletest/tests/upgrade/drupal-7.bare.database.php
@@ -0,0 +1,25310 @@
+<?php
+
+/**
+ * @file
+ * Filled installation of Drupal 7.0, for test purposes.
+ *
+ * This file was generated by the dump-database-d7.sh tool, from an
+ * installation of Drupal 7, filled with data using the generate-d7-content.sh
+ * tool. It has the following modules installed:
+ *  - block
+ *  - color
+ *  - comment
+ *  - contextual
+ *  - dashboard
+ *  - dblog
+ *  - field
+ *  - field_sql_storage
+ *  - field_ui
+ *  - file
+ *  - filter
+ *  - help
+ *  - image
+ *  - list
+ *  - menu
+ *  - node
+ *  - number
+ *  - options
+ *  - overlay
+ *  - path
+ *  - rdf
+ *  - search
+ *  - shortcut
+ *  - system
+ *  - taxonomy
+ *  - text
+ *  - toolbar
+ *  - update
+ *  - user
+ *  - standard
+ */
+
+db_create_table('actions', array(
+  'fields' => array(
+    'aid' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '0',
+    ),
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'callback' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'parameters' => array(
+      'type' => 'blob',
+      'not null' => TRUE,
+      'size' => 'big',
+    ),
+    'label' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '0',
+    ),
+  ),
+  'primary key' => array(
+    'aid',
+  ),
+  'module' => 'system',
+  'name' => 'actions',
+));
+db_insert('actions')->fields(array(
+  'aid',
+  'type',
+  'callback',
+  'parameters',
+  'label',
+))
+->values(array(
+  'aid' => 'comment_publish_action',
+  'type' => 'comment',
+  'callback' => 'comment_publish_action',
+  'parameters' => '',
+  'label' => 'Publish comment',
+))
+->values(array(
+  'aid' => 'comment_save_action',
+  'type' => 'comment',
+  'callback' => 'comment_save_action',
+  'parameters' => '',
+  'label' => 'Save comment',
+))
+->values(array(
+  'aid' => 'comment_unpublish_action',
+  'type' => 'comment',
+  'callback' => 'comment_unpublish_action',
+  'parameters' => '',
+  'label' => 'Unpublish comment',
+))
+->values(array(
+  'aid' => 'node_make_sticky_action',
+  'type' => 'node',
+  'callback' => 'node_make_sticky_action',
+  'parameters' => '',
+  'label' => 'Make content sticky',
+))
+->values(array(
+  'aid' => 'node_make_unsticky_action',
+  'type' => 'node',
+  'callback' => 'node_make_unsticky_action',
+  'parameters' => '',
+  'label' => 'Make content unsticky',
+))
+->values(array(
+  'aid' => 'node_promote_action',
+  'type' => 'node',
+  'callback' => 'node_promote_action',
+  'parameters' => '',
+  'label' => 'Promote content to front page',
+))
+->values(array(
+  'aid' => 'node_publish_action',
+  'type' => 'node',
+  'callback' => 'node_publish_action',
+  'parameters' => '',
+  'label' => 'Publish content',
+))
+->values(array(
+  'aid' => 'node_save_action',
+  'type' => 'node',
+  'callback' => 'node_save_action',
+  'parameters' => '',
+  'label' => 'Save content',
+))
+->values(array(
+  'aid' => 'node_unpromote_action',
+  'type' => 'node',
+  'callback' => 'node_unpromote_action',
+  'parameters' => '',
+  'label' => 'Remove content from front page',
+))
+->values(array(
+  'aid' => 'node_unpublish_action',
+  'type' => 'node',
+  'callback' => 'node_unpublish_action',
+  'parameters' => '',
+  'label' => 'Unpublish content',
+))
+->values(array(
+  'aid' => 'system_block_ip_action',
+  'type' => 'user',
+  'callback' => 'system_block_ip_action',
+  'parameters' => '',
+  'label' => 'Ban IP address of current user',
+))
+->values(array(
+  'aid' => 'user_block_user_action',
+  'type' => 'user',
+  'callback' => 'user_block_user_action',
+  'parameters' => '',
+  'label' => 'Block current user',
+))
+->execute();
+
+db_create_table('authmap', array(
+  'fields' => array(
+    'aid' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'uid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'authname' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'module' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+  ),
+  'unique keys' => array(
+    'authname' => array(
+      'authname',
+    ),
+  ),
+  'primary key' => array(
+    'aid',
+  ),
+  'foreign keys' => array(
+    'user' => array(
+      'table' => 'users',
+      'columns' => array(
+        'uid' => 'uid',
+      ),
+    ),
+  ),
+  'module' => 'user',
+  'name' => 'authmap',
+));
+
+db_create_table('batch', array(
+  'fields' => array(
+    'bid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'token' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+    ),
+    'timestamp' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+    ),
+    'batch' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+  ),
+  'primary key' => array(
+    'bid',
+  ),
+  'indexes' => array(
+    'token' => array(
+      'token',
+    ),
+  ),
+  'module' => 'system',
+  'name' => 'batch',
+));
+
+db_create_table('block', array(
+  'fields' => array(
+    'bid' => array(
+      'type' => 'serial',
+      'not null' => TRUE,
+    ),
+    'module' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '0',
+    ),
+    'theme' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'status' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'region' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'custom' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'visibility' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'pages' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+    ),
+    'title' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+      'default' => '',
+      'translatable' => TRUE,
+    ),
+    'cache' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 1,
+      'size' => 'tiny',
+    ),
+  ),
+  'primary key' => array(
+    'bid',
+  ),
+  'unique keys' => array(
+    'tmd' => array(
+      'theme',
+      'module',
+      'delta',
+    ),
+  ),
+  'indexes' => array(
+    'list' => array(
+      'theme',
+      'status',
+      'region',
+      'weight',
+      'module',
+    ),
+  ),
+  'module' => 'block',
+  'name' => 'block',
+));
+db_insert('block')->fields(array(
+  'bid',
+  'module',
+  'delta',
+  'theme',
+  'status',
+  'weight',
+  'region',
+  'custom',
+  'visibility',
+  'pages',
+  'title',
+  'cache',
+))
+->values(array(
+  'bid' => '1',
+  'module' => 'system',
+  'delta' => 'main',
+  'theme' => 'bartik',
+  'status' => '1',
+  'weight' => '0',
+  'region' => 'content',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '2',
+  'module' => 'search',
+  'delta' => 'form',
+  'theme' => 'bartik',
+  'status' => '1',
+  'weight' => '-1',
+  'region' => 'sidebar_first',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '3',
+  'module' => 'node',
+  'delta' => 'recent',
+  'theme' => 'seven',
+  'status' => '1',
+  'weight' => '10',
+  'region' => 'dashboard_main',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '4',
+  'module' => 'user',
+  'delta' => 'login',
+  'theme' => 'bartik',
+  'status' => '1',
+  'weight' => '0',
+  'region' => 'sidebar_first',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '5',
+  'module' => 'system',
+  'delta' => 'navigation',
+  'theme' => 'bartik',
+  'status' => '1',
+  'weight' => '0',
+  'region' => 'sidebar_first',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '6',
+  'module' => 'system',
+  'delta' => 'powered-by',
+  'theme' => 'bartik',
+  'status' => '1',
+  'weight' => '10',
+  'region' => 'footer',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '7',
+  'module' => 'system',
+  'delta' => 'help',
+  'theme' => 'bartik',
+  'status' => '1',
+  'weight' => '0',
+  'region' => 'help',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '8',
+  'module' => 'system',
+  'delta' => 'main',
+  'theme' => 'seven',
+  'status' => '1',
+  'weight' => '0',
+  'region' => 'content',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '9',
+  'module' => 'system',
+  'delta' => 'help',
+  'theme' => 'seven',
+  'status' => '1',
+  'weight' => '0',
+  'region' => 'help',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '10',
+  'module' => 'user',
+  'delta' => 'login',
+  'theme' => 'seven',
+  'status' => '1',
+  'weight' => '10',
+  'region' => 'content',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '11',
+  'module' => 'user',
+  'delta' => 'new',
+  'theme' => 'seven',
+  'status' => '1',
+  'weight' => '0',
+  'region' => 'dashboard_sidebar',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '12',
+  'module' => 'search',
+  'delta' => 'form',
+  'theme' => 'seven',
+  'status' => '1',
+  'weight' => '-10',
+  'region' => 'dashboard_sidebar',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '13',
+  'module' => 'comment',
+  'delta' => 'recent',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '1',
+))
+->values(array(
+  'bid' => '14',
+  'module' => 'node',
+  'delta' => 'syndicate',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '15',
+  'module' => 'node',
+  'delta' => 'recent',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '1',
+))
+->values(array(
+  'bid' => '16',
+  'module' => 'shortcut',
+  'delta' => 'shortcuts',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '17',
+  'module' => 'system',
+  'delta' => 'management',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '18',
+  'module' => 'system',
+  'delta' => 'user-menu',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '19',
+  'module' => 'system',
+  'delta' => 'main-menu',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '20',
+  'module' => 'user',
+  'delta' => 'new',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '1',
+))
+->values(array(
+  'bid' => '21',
+  'module' => 'user',
+  'delta' => 'online',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '22',
+  'module' => 'comment',
+  'delta' => 'recent',
+  'theme' => 'seven',
+  'status' => '1',
+  'weight' => '0',
+  'region' => 'dashboard_inactive',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '1',
+))
+->values(array(
+  'bid' => '23',
+  'module' => 'node',
+  'delta' => 'syndicate',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '24',
+  'module' => 'shortcut',
+  'delta' => 'shortcuts',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '25',
+  'module' => 'system',
+  'delta' => 'powered-by',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '10',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '26',
+  'module' => 'system',
+  'delta' => 'navigation',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '27',
+  'module' => 'system',
+  'delta' => 'management',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '28',
+  'module' => 'system',
+  'delta' => 'user-menu',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '29',
+  'module' => 'system',
+  'delta' => 'main-menu',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '30',
+  'module' => 'user',
+  'delta' => 'online',
+  'theme' => 'seven',
+  'status' => '1',
+  'weight' => '0',
+  'region' => 'dashboard_inactive',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->execute();
+
+db_create_table('block_custom', array(
+  'fields' => array(
+    'bid' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'body' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+      'translatable' => TRUE,
+    ),
+    'info' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'format' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => FALSE,
+    ),
+  ),
+  'unique keys' => array(
+    'info' => array(
+      'info',
+    ),
+  ),
+  'primary key' => array(
+    'bid',
+  ),
+  'module' => 'block',
+  'name' => 'block_custom',
+));
+
+db_create_table('block_node_type', array(
+  'fields' => array(
+    'module' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+    ),
+    'delta' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+    ),
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'module',
+    'delta',
+    'type',
+  ),
+  'indexes' => array(
+    'type' => array(
+      'type',
+    ),
+  ),
+  'module' => 'node',
+  'name' => 'block_node_type',
+));
+
+db_create_table('block_role', array(
+  'fields' => array(
+    'module' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+    ),
+    'delta' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+    ),
+    'rid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'module',
+    'delta',
+    'rid',
+  ),
+  'indexes' => array(
+    'rid' => array(
+      'rid',
+    ),
+  ),
+  'module' => 'block',
+  'name' => 'block_role',
+));
+
+db_create_table('blocked_ips', array(
+  'fields' => array(
+    'iid' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'ip' => array(
+      'type' => 'varchar',
+      'length' => 40,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+  ),
+  'indexes' => array(
+    'blocked_ip' => array(
+      'ip',
+    ),
+  ),
+  'primary key' => array(
+    'iid',
+  ),
+  'module' => 'system',
+  'name' => 'blocked_ips',
+));
+
+db_create_table('cache', array(
+  'fields' => array(
+    'cid' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'expire' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'serialized' => array(
+      'type' => 'int',
+      'size' => 'small',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'expire' => array(
+      'expire',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  'module' => 'system',
+  'name' => 'cache',
+));
+
+db_create_table('cache_block', array(
+  'fields' => array(
+    'cid' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'expire' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'serialized' => array(
+      'type' => 'int',
+      'size' => 'small',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'expire' => array(
+      'expire',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  'module' => 'block',
+  'name' => 'cache_block',
+));
+
+db_create_table('cache_bootstrap', array(
+  'fields' => array(
+    'cid' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'expire' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'serialized' => array(
+      'type' => 'int',
+      'size' => 'small',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'expire' => array(
+      'expire',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  'module' => 'system',
+  'name' => 'cache_bootstrap',
+));
+
+db_create_table('cache_field', array(
+  'fields' => array(
+    'cid' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'expire' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'serialized' => array(
+      'type' => 'int',
+      'size' => 'small',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'expire' => array(
+      'expire',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  'module' => 'field',
+  'name' => 'cache_field',
+));
+
+db_create_table('cache_filter', array(
+  'fields' => array(
+    'cid' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'expire' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'serialized' => array(
+      'type' => 'int',
+      'size' => 'small',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'expire' => array(
+      'expire',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  'module' => 'filter',
+  'name' => 'cache_filter',
+));
+
+db_create_table('cache_form', array(
+  'fields' => array(
+    'cid' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'expire' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'serialized' => array(
+      'type' => 'int',
+      'size' => 'small',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'expire' => array(
+      'expire',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  'module' => 'system',
+  'name' => 'cache_form',
+));
+
+db_create_table('cache_image', array(
+  'fields' => array(
+    'cid' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'expire' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'serialized' => array(
+      'type' => 'int',
+      'size' => 'small',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'expire' => array(
+      'expire',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  'module' => 'image',
+  'name' => 'cache_image',
+));
+
+db_create_table('cache_menu', array(
+  'fields' => array(
+    'cid' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'expire' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'serialized' => array(
+      'type' => 'int',
+      'size' => 'small',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'expire' => array(
+      'expire',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  'module' => 'system',
+  'name' => 'cache_menu',
+));
+
+db_create_table('cache_page', array(
+  'fields' => array(
+    'cid' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'expire' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'serialized' => array(
+      'type' => 'int',
+      'size' => 'small',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'expire' => array(
+      'expire',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  'module' => 'system',
+  'name' => 'cache_page',
+));
+
+db_create_table('cache_path', array(
+  'fields' => array(
+    'cid' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'expire' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'serialized' => array(
+      'type' => 'int',
+      'size' => 'small',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'expire' => array(
+      'expire',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  'module' => 'system',
+  'name' => 'cache_path',
+));
+
+db_create_table('cache_update', array(
+  'fields' => array(
+    'cid' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'expire' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'serialized' => array(
+      'type' => 'int',
+      'size' => 'small',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'expire' => array(
+      'expire',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  'module' => 'update',
+  'name' => 'cache_update',
+));
+
+db_create_table('comment', array(
+  'fields' => array(
+    'cid' => array(
+      'type' => 'serial',
+      'not null' => TRUE,
+    ),
+    'pid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'nid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'uid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'subject' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'hostname' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'changed' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'status' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 1,
+      'size' => 'tiny',
+    ),
+    'thread' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+    ),
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 60,
+      'not null' => FALSE,
+    ),
+    'mail' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => FALSE,
+    ),
+    'homepage' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 12,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+  ),
+  'indexes' => array(
+    'comment_status_pid' => array(
+      'pid',
+      'status',
+    ),
+    'comment_num_new' => array(
+      'nid',
+      'status',
+      'created',
+      'cid',
+      'thread',
+    ),
+    'comment_uid' => array(
+      'uid',
+    ),
+    'comment_nid_language' => array(
+      'nid',
+      'language',
+    ),
+    'comment_created' => array(
+      'created',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  'foreign keys' => array(
+    'comment_node' => array(
+      'table' => 'node',
+      'columns' => array(
+        'nid' => 'nid',
+      ),
+    ),
+    'comment_author' => array(
+      'table' => 'users',
+      'columns' => array(
+        'uid' => 'uid',
+      ),
+    ),
+  ),
+  'module' => 'comment',
+  'name' => 'comment',
+));
+
+db_create_table('date_format_locale', array(
+  'fields' => array(
+    'format' => array(
+      'type' => 'varchar',
+      'length' => 100,
+      'not null' => TRUE,
+    ),
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 12,
+      'not null' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'type',
+    'language',
+  ),
+  'module' => 'system',
+  'name' => 'date_format_locale',
+));
+
+db_create_table('date_format_type', array(
+  'fields' => array(
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+    ),
+    'title' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+    ),
+    'locked' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'default' => 0,
+      'not null' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'type',
+  ),
+  'indexes' => array(
+    'title' => array(
+      'title',
+    ),
+  ),
+  'module' => 'system',
+  'name' => 'date_format_type',
+));
+db_insert('date_format_type')->fields(array(
+  'type',
+  'title',
+  'locked',
+))
+->values(array(
+  'type' => 'long',
+  'title' => 'Long',
+  'locked' => '1',
+))
+->values(array(
+  'type' => 'medium',
+  'title' => 'Medium',
+  'locked' => '1',
+))
+->values(array(
+  'type' => 'short',
+  'title' => 'Short',
+  'locked' => '1',
+))
+->execute();
+
+db_create_table('date_formats', array(
+  'fields' => array(
+    'dfid' => array(
+      'type' => 'serial',
+      'not null' => TRUE,
+      'unsigned' => TRUE,
+    ),
+    'format' => array(
+      'type' => 'varchar',
+      'length' => 100,
+      'not null' => TRUE,
+    ),
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+    ),
+    'locked' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'default' => 0,
+      'not null' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'dfid',
+  ),
+  'unique keys' => array(
+    'formats' => array(
+      'format',
+      'type',
+    ),
+  ),
+  'module' => 'system',
+  'name' => 'date_formats',
+));
+db_insert('date_formats')->fields(array(
+  'dfid',
+  'format',
+  'type',
+  'locked',
+))
+->values(array(
+  'dfid' => '1',
+  'format' => 'Y-m-d H:i',
+  'type' => 'short',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '2',
+  'format' => 'm/d/Y - H:i',
+  'type' => 'short',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '3',
+  'format' => 'd/m/Y - H:i',
+  'type' => 'short',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '4',
+  'format' => 'Y/m/d - H:i',
+  'type' => 'short',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '5',
+  'format' => 'd.m.Y - H:i',
+  'type' => 'short',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '6',
+  'format' => 'm/d/Y - g:ia',
+  'type' => 'short',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '7',
+  'format' => 'd/m/Y - g:ia',
+  'type' => 'short',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '8',
+  'format' => 'Y/m/d - g:ia',
+  'type' => 'short',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '9',
+  'format' => 'M j Y - H:i',
+  'type' => 'short',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '10',
+  'format' => 'j M Y - H:i',
+  'type' => 'short',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '11',
+  'format' => 'Y M j - H:i',
+  'type' => 'short',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '12',
+  'format' => 'M j Y - g:ia',
+  'type' => 'short',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '13',
+  'format' => 'j M Y - g:ia',
+  'type' => 'short',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '14',
+  'format' => 'Y M j - g:ia',
+  'type' => 'short',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '15',
+  'format' => 'D, Y-m-d H:i',
+  'type' => 'medium',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '16',
+  'format' => 'D, m/d/Y - H:i',
+  'type' => 'medium',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '17',
+  'format' => 'D, d/m/Y - H:i',
+  'type' => 'medium',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '18',
+  'format' => 'D, Y/m/d - H:i',
+  'type' => 'medium',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '19',
+  'format' => 'F j, Y - H:i',
+  'type' => 'medium',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '20',
+  'format' => 'j F, Y - H:i',
+  'type' => 'medium',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '21',
+  'format' => 'Y, F j - H:i',
+  'type' => 'medium',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '22',
+  'format' => 'D, m/d/Y - g:ia',
+  'type' => 'medium',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '23',
+  'format' => 'D, d/m/Y - g:ia',
+  'type' => 'medium',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '24',
+  'format' => 'D, Y/m/d - g:ia',
+  'type' => 'medium',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '25',
+  'format' => 'F j, Y - g:ia',
+  'type' => 'medium',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '26',
+  'format' => 'j F Y - g:ia',
+  'type' => 'medium',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '27',
+  'format' => 'Y, F j - g:ia',
+  'type' => 'medium',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '28',
+  'format' => 'j. F Y - G:i',
+  'type' => 'medium',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '29',
+  'format' => 'l, F j, Y - H:i',
+  'type' => 'long',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '30',
+  'format' => 'l, j F, Y - H:i',
+  'type' => 'long',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '31',
+  'format' => 'l, Y,  F j - H:i',
+  'type' => 'long',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '32',
+  'format' => 'l, F j, Y - g:ia',
+  'type' => 'long',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '33',
+  'format' => 'l, j F Y - g:ia',
+  'type' => 'long',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '34',
+  'format' => 'l, Y,  F j - g:ia',
+  'type' => 'long',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '35',
+  'format' => 'l, j. F Y - G:i',
+  'type' => 'long',
+  'locked' => '1',
+))
+->execute();
+
+db_create_table('field_config', array(
+  'fields' => array(
+    'id' => array(
+      'type' => 'serial',
+      'not null' => TRUE,
+    ),
+    'field_name' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+    ),
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+    ),
+    'module' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'active' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'storage_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+    ),
+    'storage_module' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'storage_active' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'locked' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'size' => 'big',
+      'not null' => TRUE,
+      'serialize' => TRUE,
+    ),
+    'cardinality' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'translatable' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'primary key' => array(
+    'id',
+  ),
+  'indexes' => array(
+    'field_name' => array(
+      'field_name',
+    ),
+    'active' => array(
+      'active',
+    ),
+    'storage_active' => array(
+      'storage_active',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'module' => array(
+      'module',
+    ),
+    'storage_module' => array(
+      'storage_module',
+    ),
+    'type' => array(
+      'type',
+    ),
+    'storage_type' => array(
+      'storage_type',
+    ),
+  ),
+  'module' => 'field',
+  'name' => 'field_config',
+));
+db_insert('field_config')->fields(array(
+  'id',
+  'field_name',
+  'type',
+  'module',
+  'active',
+  'storage_type',
+  'storage_module',
+  'storage_active',
+  'locked',
+  'data',
+  'cardinality',
+  'translatable',
+  'deleted',
+))
+->values(array(
+  'id' => '1',
+  'field_name' => 'comment_body',
+  'type' => 'text_long',
+  'module' => 'text',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => '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";}}}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '2',
+  'field_name' => 'body',
+  'type' => 'text_with_summary',
+  'module' => 'text',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => '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";}}}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '3',
+  'field_name' => 'field_tags',
+  'type' => 'taxonomy_term_reference',
+  'module' => 'taxonomy',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => '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";}}}',
+  'cardinality' => '-1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '4',
+  'field_name' => 'field_image',
+  'type' => 'image',
+  'module' => 'image',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => '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";}}}}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->execute();
+
+db_create_table('field_config_instance', array(
+  'fields' => array(
+    'id' => array(
+      'type' => 'serial',
+      'not null' => TRUE,
+    ),
+    'field_id' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+    ),
+    'field_name' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'size' => 'big',
+      'not null' => TRUE,
+      'serialize' => TRUE,
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'primary key' => array(
+    'id',
+  ),
+  'indexes' => array(
+    'field_name_bundle' => array(
+      'field_name',
+      'entity_type',
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+  ),
+  'module' => 'field',
+  'name' => 'field_config_instance',
+));
+db_insert('field_config_instance')->fields(array(
+  'id',
+  'field_id',
+  'field_name',
+  'entity_type',
+  'bundle',
+  'data',
+  'deleted',
+))
+->values(array(
+  'id' => '1',
+  'field_id' => '1',
+  'field_name' => 'comment_body',
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_page',
+  'data' => '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:"";}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '2',
+  'field_id' => '2',
+  'field_name' => 'body',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => '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:"";}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '3',
+  'field_id' => '1',
+  'field_name' => 'comment_body',
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_article',
+  'data' => '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:"";}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '4',
+  'field_id' => '2',
+  'field_name' => 'body',
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'data' => '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:"";}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '5',
+  'field_id' => '3',
+  'field_name' => 'field_tags',
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'data' => '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;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '6',
+  'field_id' => '4',
+  'field_name' => 'field_image',
+  'entity_type' => 'node',
+  'bundle' => 'article',
+  'data' => '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:8:{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: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";}}}',
+  'deleted' => '0',
+))
+->execute();
+
+db_create_table('field_data_body', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'body_value' => array(
+      'type' => 'text',
+      'size' => 'big',
+      'not null' => FALSE,
+    ),
+    'body_summary' => array(
+      'type' => 'text',
+      'size' => 'big',
+      'not null' => FALSE,
+    ),
+    'body_format' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'body_format' => array(
+      'body_format',
+    ),
+  ),
+  'foreign keys' => array(
+    'body_format' => array(
+      'table' => 'filter_format',
+      'columns' => array(
+        'body_format' => 'format',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_body',
+));
+
+db_create_table('field_data_comment_body', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'comment_body_value' => array(
+      'type' => 'text',
+      'size' => 'big',
+      'not null' => FALSE,
+    ),
+    'comment_body_format' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'comment_body_format' => array(
+      'comment_body_format',
+    ),
+  ),
+  'foreign keys' => array(
+    'comment_body_format' => array(
+      'table' => 'filter_format',
+      'columns' => array(
+        'comment_body_format' => 'format',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_comment_body',
+));
+
+db_create_table('field_data_field_image', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'field_image_fid' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'unsigned' => TRUE,
+    ),
+    'field_image_alt' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => FALSE,
+    ),
+    'field_image_title' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'field_image_fid' => array(
+      'field_image_fid',
+    ),
+  ),
+  'foreign keys' => array(
+    'field_image_fid' => array(
+      'table' => 'file_managed',
+      'columns' => array(
+        'field_image_fid' => 'fid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_field_image',
+));
+
+db_create_table('field_data_field_tags', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'field_tags_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'field_tags_tid' => array(
+      'field_tags_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'field_tags_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'field_tags_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_field_tags',
+));
+
+db_create_table('field_revision_body', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'body_value' => array(
+      'type' => 'text',
+      'size' => 'big',
+      'not null' => FALSE,
+    ),
+    'body_summary' => array(
+      'type' => 'text',
+      'size' => 'big',
+      'not null' => FALSE,
+    ),
+    'body_format' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'body_format' => array(
+      'body_format',
+    ),
+  ),
+  'foreign keys' => array(
+    'body_format' => array(
+      'table' => 'filter_format',
+      'columns' => array(
+        'body_format' => 'format',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_body',
+));
+
+db_create_table('field_revision_comment_body', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'comment_body_value' => array(
+      'type' => 'text',
+      'size' => 'big',
+      'not null' => FALSE,
+    ),
+    'comment_body_format' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'comment_body_format' => array(
+      'comment_body_format',
+    ),
+  ),
+  'foreign keys' => array(
+    'comment_body_format' => array(
+      'table' => 'filter_format',
+      'columns' => array(
+        'comment_body_format' => 'format',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_comment_body',
+));
+
+db_create_table('field_revision_field_image', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'field_image_fid' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'unsigned' => TRUE,
+    ),
+    'field_image_alt' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => FALSE,
+    ),
+    'field_image_title' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'field_image_fid' => array(
+      'field_image_fid',
+    ),
+  ),
+  'foreign keys' => array(
+    'field_image_fid' => array(
+      'table' => 'file_managed',
+      'columns' => array(
+        'field_image_fid' => 'fid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_field_image',
+));
+
+db_create_table('field_revision_field_tags', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'field_tags_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'field_tags_tid' => array(
+      'field_tags_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'field_tags_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'field_tags_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_field_tags',
+));
+
+db_create_table('file_managed', array(
+  'fields' => array(
+    'fid' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'uid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'filename' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'uri' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'filemime' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'filesize' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'status' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'timestamp' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'uid' => array(
+      'uid',
+    ),
+    'status' => array(
+      'status',
+    ),
+    'timestamp' => array(
+      'timestamp',
+    ),
+  ),
+  'unique keys' => array(
+    'uri' => array(
+      'uri',
+    ),
+  ),
+  'primary key' => array(
+    'fid',
+  ),
+  'foreign keys' => array(
+    'file_owner' => array(
+      'table' => 'users',
+      'columns' => array(
+        'uid' => 'uid',
+      ),
+    ),
+  ),
+  'module' => 'system',
+  'name' => 'file_managed',
+));
+
+db_create_table('file_usage', array(
+  'fields' => array(
+    'fid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'module' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'count' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'primary key' => array(
+    'fid',
+    'type',
+    'id',
+    'module',
+  ),
+  'indexes' => array(
+    'type_id' => array(
+      'type',
+      'id',
+    ),
+    'fid_count' => array(
+      'fid',
+      'count',
+    ),
+    'fid_module' => array(
+      'fid',
+      'module',
+    ),
+  ),
+  'module' => 'system',
+  'name' => 'file_usage',
+));
+
+db_create_table('filter', array(
+  'fields' => array(
+    'format' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+    ),
+    'module' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'status' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'settings' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+      'serialize' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'format',
+    'name',
+  ),
+  'indexes' => array(
+    'list' => array(
+      'weight',
+      'module',
+      'name',
+    ),
+  ),
+  'module' => 'filter',
+  'name' => 'filter',
+));
+db_insert('filter')->fields(array(
+  'format',
+  'module',
+  'name',
+  'weight',
+  'status',
+  'settings',
+))
+->values(array(
+  'format' => 'filtered_html',
+  'module' => 'filter',
+  'name' => 'filter_autop',
+  'weight' => '2',
+  'status' => '1',
+  'settings' => 'a:0:{}',
+))
+->values(array(
+  'format' => 'filtered_html',
+  'module' => 'filter',
+  'name' => 'filter_html',
+  'weight' => '1',
+  'status' => '1',
+  'settings' => 'a:3:{s:12:"allowed_html";s:74:"<a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd>";s:16:"filter_html_help";i:1;s:20:"filter_html_nofollow";i:0;}',
+))
+->values(array(
+  'format' => 'filtered_html',
+  'module' => 'filter',
+  'name' => 'filter_htmlcorrector',
+  'weight' => '10',
+  'status' => '1',
+  'settings' => 'a:0:{}',
+))
+->values(array(
+  'format' => 'filtered_html',
+  'module' => 'filter',
+  'name' => 'filter_html_escape',
+  'weight' => '10',
+  'status' => '0',
+  'settings' => 'a:0:{}',
+))
+->values(array(
+  'format' => 'filtered_html',
+  'module' => 'filter',
+  'name' => 'filter_url',
+  'weight' => '0',
+  'status' => '1',
+  'settings' => 'a:1:{s:17:"filter_url_length";i:72;}',
+))
+->values(array(
+  'format' => 'full_html',
+  'module' => 'filter',
+  'name' => 'filter_autop',
+  'weight' => '1',
+  'status' => '1',
+  'settings' => 'a:0:{}',
+))
+->values(array(
+  'format' => 'full_html',
+  'module' => 'filter',
+  'name' => 'filter_html',
+  'weight' => '10',
+  'status' => '0',
+  'settings' => 'a:3:{s:12:"allowed_html";s:74:"<a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd>";s:16:"filter_html_help";i:1;s:20:"filter_html_nofollow";i:0;}',
+))
+->values(array(
+  'format' => 'full_html',
+  'module' => 'filter',
+  'name' => 'filter_htmlcorrector',
+  'weight' => '10',
+  'status' => '1',
+  'settings' => 'a:0:{}',
+))
+->values(array(
+  'format' => 'full_html',
+  'module' => 'filter',
+  'name' => 'filter_html_escape',
+  'weight' => '10',
+  'status' => '0',
+  'settings' => 'a:0:{}',
+))
+->values(array(
+  'format' => 'full_html',
+  'module' => 'filter',
+  'name' => 'filter_url',
+  'weight' => '0',
+  'status' => '1',
+  'settings' => 'a:1:{s:17:"filter_url_length";i:72;}',
+))
+->values(array(
+  'format' => 'plain_text',
+  'module' => 'filter',
+  'name' => 'filter_autop',
+  'weight' => '2',
+  'status' => '1',
+  'settings' => 'a:0:{}',
+))
+->values(array(
+  'format' => 'plain_text',
+  'module' => 'filter',
+  'name' => 'filter_html',
+  'weight' => '10',
+  'status' => '0',
+  'settings' => 'a:3:{s:12:"allowed_html";s:74:"<a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd>";s:16:"filter_html_help";i:1;s:20:"filter_html_nofollow";i:0;}',
+))
+->values(array(
+  'format' => 'plain_text',
+  'module' => 'filter',
+  'name' => 'filter_htmlcorrector',
+  'weight' => '10',
+  'status' => '0',
+  'settings' => 'a:0:{}',
+))
+->values(array(
+  'format' => 'plain_text',
+  'module' => 'filter',
+  'name' => 'filter_html_escape',
+  'weight' => '0',
+  'status' => '1',
+  'settings' => 'a:0:{}',
+))
+->values(array(
+  'format' => 'plain_text',
+  'module' => 'filter',
+  'name' => 'filter_url',
+  'weight' => '1',
+  'status' => '1',
+  'settings' => 'a:1:{s:17:"filter_url_length";i:72;}',
+))
+->execute();
+
+db_create_table('filter_format', array(
+  'fields' => array(
+    'format' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+    ),
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+      'translatable' => TRUE,
+    ),
+    'cache' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'status' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 1,
+      'size' => 'tiny',
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'primary key' => array(
+    'format',
+  ),
+  'unique keys' => array(
+    'name' => array(
+      'name',
+    ),
+  ),
+  'indexes' => array(
+    'status_weight' => array(
+      'status',
+      'weight',
+    ),
+  ),
+  'module' => 'filter',
+  'name' => 'filter_format',
+));
+db_insert('filter_format')->fields(array(
+  'format',
+  'name',
+  'cache',
+  'status',
+  'weight',
+))
+->values(array(
+  'format' => 'filtered_html',
+  'name' => 'Filtered HTML',
+  'cache' => '1',
+  'status' => '1',
+  'weight' => '0',
+))
+->values(array(
+  'format' => 'full_html',
+  'name' => 'Full HTML',
+  'cache' => '1',
+  'status' => '1',
+  'weight' => '1',
+))
+->values(array(
+  'format' => 'plain_text',
+  'name' => 'Plain text',
+  'cache' => '1',
+  'status' => '1',
+  'weight' => '10',
+))
+->execute();
+
+db_create_table('flood', array(
+  'fields' => array(
+    'fid' => array(
+      'type' => 'serial',
+      'not null' => TRUE,
+    ),
+    'event' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'identifier' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'timestamp' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'expiration' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'primary key' => array(
+    'fid',
+  ),
+  'indexes' => array(
+    'allow' => array(
+      'event',
+      'identifier',
+      'timestamp',
+    ),
+    'purge' => array(
+      'expiration',
+    ),
+  ),
+  'module' => 'system',
+  'name' => 'flood',
+));
+
+db_create_table('history', array(
+  'fields' => array(
+    'uid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'nid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'timestamp' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'primary key' => array(
+    'uid',
+    'nid',
+  ),
+  'indexes' => array(
+    'nid' => array(
+      'nid',
+    ),
+  ),
+  'module' => 'node',
+  'name' => 'history',
+));
+
+db_create_table('image_effects', array(
+  'fields' => array(
+    'ieid' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'isid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'unsigned' => FALSE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => TRUE,
+      'size' => 'big',
+      'serialize' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'ieid',
+  ),
+  'indexes' => array(
+    'isid' => array(
+      'isid',
+    ),
+    'weight' => array(
+      'weight',
+    ),
+  ),
+  'foreign keys' => array(
+    'image_style' => array(
+      'table' => 'image_styles',
+      'columns' => array(
+        'isid' => 'isid',
+      ),
+    ),
+  ),
+  'module' => 'image',
+  'name' => 'image_effects',
+));
+
+db_create_table('image_styles', array(
+  'fields' => array(
+    'isid' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'isid',
+  ),
+  'unique keys' => array(
+    'name' => array(
+      'name',
+    ),
+  ),
+  'module' => 'image',
+  'name' => 'image_styles',
+));
+
+db_create_table('menu_custom', array(
+  'fields' => array(
+    'menu_name' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'title' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+      'translatable' => TRUE,
+    ),
+    'description' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'translatable' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'menu_name',
+  ),
+  'module' => 'menu',
+  'name' => 'menu_custom',
+));
+db_insert('menu_custom')->fields(array(
+  'menu_name',
+  'title',
+  'description',
+))
+->values(array(
+  'menu_name' => 'main-menu',
+  'title' => 'Main menu',
+  'description' => 'The <em>Main</em> menu is used on many sites to show the major sections of the site, often in a top navigation bar.',
+))
+->values(array(
+  'menu_name' => 'management',
+  'title' => 'Management',
+  'description' => 'The <em>Management</em> menu contains links for administrative tasks.',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'title' => 'Navigation',
+  'description' => 'The <em>Navigation</em> menu contains links intended for site visitors. Links are added to the <em>Navigation</em> menu automatically by some modules.',
+))
+->values(array(
+  'menu_name' => 'user-menu',
+  'title' => 'User menu',
+  'description' => "The <em>User</em> menu contains links related to the user's account, as well as the 'Log out' link.",
+))
+->execute();
+
+db_create_table('menu_links', array(
+  'fields' => array(
+    'menu_name' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'mlid' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'plid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'link_path' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'router_path' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'link_title' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+      'translatable' => TRUE,
+    ),
+    'options' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'translatable' => TRUE,
+    ),
+    'module' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => 'system',
+    ),
+    'hidden' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'small',
+    ),
+    'external' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'small',
+    ),
+    'has_children' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'small',
+    ),
+    'expanded' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'small',
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'depth' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'small',
+    ),
+    'customized' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'small',
+    ),
+    'p1' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'p2' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'p3' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'p4' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'p5' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'p6' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'p7' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'p8' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'p9' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'updated' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'small',
+    ),
+  ),
+  'indexes' => array(
+    'path_menu' => array(
+      array(
+        'link_path',
+        128,
+      ),
+      'menu_name',
+    ),
+    'menu_plid_expand_child' => array(
+      'menu_name',
+      'plid',
+      'expanded',
+      'has_children',
+    ),
+    'menu_parents' => array(
+      'menu_name',
+      'p1',
+      'p2',
+      'p3',
+      'p4',
+      'p5',
+      'p6',
+      'p7',
+      'p8',
+      'p9',
+    ),
+    'router_path' => array(
+      array(
+        'router_path',
+        128,
+      ),
+    ),
+  ),
+  'primary key' => array(
+    'mlid',
+  ),
+  'module' => 'system',
+  'name' => 'menu_links',
+));
+db_insert('menu_links')->fields(array(
+  'menu_name',
+  'mlid',
+  'plid',
+  'link_path',
+  'router_path',
+  'link_title',
+  'options',
+  'module',
+  'hidden',
+  'external',
+  'has_children',
+  'expanded',
+  'weight',
+  'depth',
+  'customized',
+  'p1',
+  'p2',
+  'p3',
+  'p4',
+  'p5',
+  'p6',
+  'p7',
+  'p8',
+  'p9',
+  'updated',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '1',
+  'plid' => '0',
+  'link_path' => 'admin',
+  'router_path' => 'admin',
+  'link_title' => 'Administration',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '9',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'user-menu',
+  'mlid' => '2',
+  'plid' => '0',
+  'link_path' => 'user',
+  'router_path' => 'user',
+  'link_title' => 'User account',
+  'options' => 'a:1:{s:5:"alter";b:1;}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '2',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '3',
+  'plid' => '0',
+  'link_path' => 'comment/%',
+  'router_path' => 'comment/%',
+  'link_title' => 'Comment permalink',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '3',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '4',
+  'plid' => '0',
+  'link_path' => 'filter/tips',
+  'router_path' => 'filter/tips',
+  'link_title' => 'Compose tips',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '4',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '5',
+  'plid' => '0',
+  'link_path' => 'node/%',
+  'router_path' => 'node/%',
+  'link_title' => '',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '5',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '6',
+  'plid' => '0',
+  'link_path' => 'node/add',
+  'router_path' => 'node/add',
+  'link_title' => 'Add content',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '6',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '7',
+  'plid' => '1',
+  'link_path' => 'admin/appearance',
+  'router_path' => 'admin/appearance',
+  'link_title' => 'Appearance',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:33:"Select and configure your themes.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-6',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '7',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '8',
+  'plid' => '1',
+  'link_path' => 'admin/config',
+  'router_path' => 'admin/config',
+  'link_title' => 'Configuration',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:20:"Administer settings.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '9',
+  'plid' => '1',
+  'link_path' => 'admin/content',
+  'router_path' => 'admin/content',
+  'link_title' => 'Content',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:32:"Administer content and comments.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '9',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'user-menu',
+  'mlid' => '10',
+  'plid' => '2',
+  'link_path' => 'user/register',
+  'router_path' => 'user/register',
+  'link_title' => 'Create new account',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '2',
+  'p2' => '10',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '11',
+  'plid' => '1',
+  'link_path' => 'admin/dashboard',
+  'router_path' => 'admin/dashboard',
+  'link_title' => 'Dashboard',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:34:"View and customize your dashboard.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-15',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '11',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '12',
+  'plid' => '1',
+  'link_path' => 'admin/help',
+  'router_path' => 'admin/help',
+  'link_title' => 'Help',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:48:"Reference for usage, configuration, and modules.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '9',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '13',
+  'plid' => '1',
+  'link_path' => 'admin/index',
+  'router_path' => 'admin/index',
+  'link_title' => 'Index',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-18',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '13',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'user-menu',
+  'mlid' => '14',
+  'plid' => '2',
+  'link_path' => 'user/login',
+  'router_path' => 'user/login',
+  'link_title' => 'Log in',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '2',
+  'p2' => '14',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'user-menu',
+  'mlid' => '15',
+  'plid' => '0',
+  'link_path' => 'user/logout',
+  'router_path' => 'user/logout',
+  'link_title' => 'Log out',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '10',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '15',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '16',
+  'plid' => '1',
+  'link_path' => 'admin/modules',
+  'router_path' => 'admin/modules',
+  'link_title' => 'Modules',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:26:"Extend site functionality.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-2',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '16',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '17',
+  'plid' => '0',
+  'link_path' => 'user/%',
+  'router_path' => 'user/%',
+  'link_title' => 'My account',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '17',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '18',
+  'plid' => '1',
+  'link_path' => 'admin/people',
+  'router_path' => 'admin/people',
+  'link_title' => 'People',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:45:"Manage user accounts, roles, and permissions.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-4',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '19',
+  'plid' => '1',
+  'link_path' => 'admin/reports',
+  'router_path' => 'admin/reports',
+  'link_title' => 'Reports',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:34:"View reports, updates, and errors.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '5',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '19',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'user-menu',
+  'mlid' => '20',
+  'plid' => '2',
+  'link_path' => 'user/password',
+  'router_path' => 'user/password',
+  'link_title' => 'Request new password',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '2',
+  'p2' => '20',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '21',
+  'plid' => '1',
+  'link_path' => 'admin/structure',
+  'router_path' => 'admin/structure',
+  'link_title' => 'Structure',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:45:"Administer blocks, content types, menus, etc.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-8',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '22',
+  'plid' => '1',
+  'link_path' => 'admin/tasks',
+  'router_path' => 'admin/tasks',
+  'link_title' => 'Tasks',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-20',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '22',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '23',
+  'plid' => '0',
+  'link_path' => 'comment/reply/%',
+  'router_path' => 'comment/reply/%',
+  'link_title' => 'Add new comment',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '23',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '24',
+  'plid' => '3',
+  'link_path' => 'comment/%/approve',
+  'router_path' => 'comment/%/approve',
+  'link_title' => 'Approve',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '1',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '3',
+  'p2' => '24',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '25',
+  'plid' => '3',
+  'link_path' => 'comment/%/delete',
+  'router_path' => 'comment/%/delete',
+  'link_title' => 'Delete',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '2',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '3',
+  'p2' => '25',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '26',
+  'plid' => '3',
+  'link_path' => 'comment/%/edit',
+  'router_path' => 'comment/%/edit',
+  'link_title' => 'Edit',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '3',
+  'p2' => '26',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '27',
+  'plid' => '0',
+  'link_path' => 'taxonomy/term/%',
+  'router_path' => 'taxonomy/term/%',
+  'link_title' => 'Taxonomy term',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '27',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '28',
+  'plid' => '3',
+  'link_path' => 'comment/%/view',
+  'router_path' => 'comment/%/view',
+  'link_title' => 'View comment',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '3',
+  'p2' => '28',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '29',
+  'plid' => '18',
+  'link_path' => 'admin/people/create',
+  'router_path' => 'admin/people/create',
+  'link_title' => 'Add user',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '29',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '30',
+  'plid' => '21',
+  'link_path' => 'admin/structure/block',
+  'router_path' => 'admin/structure/block',
+  'link_title' => 'Blocks',
+  'options' => "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.\";}}",
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '31',
+  'plid' => '17',
+  'link_path' => 'user/%/cancel',
+  'router_path' => 'user/%/cancel',
+  'link_title' => 'Cancel account',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '17',
+  'p2' => '31',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '32',
+  'plid' => '9',
+  'link_path' => 'admin/content/comment',
+  'router_path' => 'admin/content/comment',
+  'link_title' => 'Comments',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:59:"List and edit site comments and the comment approval queue.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '9',
+  'p3' => '32',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '33',
+  'plid' => '11',
+  'link_path' => 'admin/dashboard/configure',
+  'router_path' => 'admin/dashboard/configure',
+  'link_title' => 'Configure available dashboard blocks',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:53:"Configure which blocks can be shown on the dashboard.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '11',
+  'p3' => '33',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '34',
+  'plid' => '9',
+  'link_path' => 'admin/content/node',
+  'router_path' => 'admin/content/node',
+  'link_title' => 'Content',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '9',
+  'p3' => '34',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '35',
+  'plid' => '8',
+  'link_path' => 'admin/config/content',
+  'router_path' => 'admin/config/content',
+  'link_title' => 'Content authoring',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:53:"Settings related to formatting and authoring content.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-15',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '35',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '36',
+  'plid' => '21',
+  'link_path' => 'admin/structure/types',
+  'router_path' => 'admin/structure/types',
+  'link_title' => 'Content types',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:92:"Manage content types, including default status, front page promotion, comment settings, etc.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '37',
+  'plid' => '11',
+  'link_path' => 'admin/dashboard/customize',
+  'router_path' => 'admin/dashboard/customize',
+  'link_title' => 'Customize dashboard',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:25:"Customize your dashboard.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '11',
+  'p3' => '37',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '38',
+  'plid' => '5',
+  'link_path' => 'node/%/delete',
+  'router_path' => 'node/%/delete',
+  'link_title' => 'Delete',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '1',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '5',
+  'p2' => '38',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '39',
+  'plid' => '8',
+  'link_path' => 'admin/config/development',
+  'router_path' => 'admin/config/development',
+  'link_title' => 'Development',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:18:"Development tools.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '39',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '40',
+  'plid' => '17',
+  'link_path' => 'user/%/edit',
+  'router_path' => 'user/%/edit',
+  'link_title' => 'Edit',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '17',
+  'p2' => '40',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '41',
+  'plid' => '5',
+  'link_path' => 'node/%/edit',
+  'router_path' => 'node/%/edit',
+  'link_title' => 'Edit',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '5',
+  'p2' => '41',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '42',
+  'plid' => '19',
+  'link_path' => 'admin/reports/fields',
+  'router_path' => 'admin/reports/fields',
+  'link_title' => 'Field list',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:39:"Overview of fields on all entity types.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '19',
+  'p3' => '42',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '43',
+  'plid' => '7',
+  'link_path' => 'admin/appearance/list',
+  'router_path' => 'admin/appearance/list',
+  'link_title' => 'List',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:31:"Select and configure your theme";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-1',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '7',
+  'p3' => '43',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '44',
+  'plid' => '16',
+  'link_path' => 'admin/modules/list',
+  'router_path' => 'admin/modules/list',
+  'link_title' => 'List',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '16',
+  'p3' => '44',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '45',
+  'plid' => '18',
+  'link_path' => 'admin/people/people',
+  'router_path' => 'admin/people/people',
+  'link_title' => 'List',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:50:"Find and manage people interacting with your site.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '45',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '46',
+  'plid' => '8',
+  'link_path' => 'admin/config/media',
+  'router_path' => 'admin/config/media',
+  'link_title' => 'Media',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:12:"Media tools.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '46',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '47',
+  'plid' => '21',
+  'link_path' => 'admin/structure/menu',
+  'router_path' => 'admin/structure/menu',
+  'link_title' => 'Menus',
+  'options' => '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.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '48',
+  'plid' => '8',
+  'link_path' => 'admin/config/people',
+  'router_path' => 'admin/config/people',
+  'link_title' => 'People',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:24:"Configure user accounts.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-20',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '48',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '49',
+  'plid' => '18',
+  'link_path' => 'admin/people/permissions',
+  'router_path' => 'admin/people/permissions',
+  'link_title' => 'Permissions',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:64:"Determine access to features by selecting permissions for roles.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '49',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '50',
+  'plid' => '19',
+  'link_path' => 'admin/reports/dblog',
+  'router_path' => 'admin/reports/dblog',
+  'link_title' => 'Recent log messages',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"View events that have recently been logged.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-1',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '19',
+  'p3' => '50',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '51',
+  'plid' => '8',
+  'link_path' => 'admin/config/regional',
+  'router_path' => 'admin/config/regional',
+  'link_title' => 'Regional and language',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:48:"Regional settings, localization and translation.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-5',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '51',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '52',
+  'plid' => '5',
+  'link_path' => 'node/%/revisions',
+  'router_path' => 'node/%/revisions',
+  'link_title' => 'Revisions',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '2',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '5',
+  'p2' => '52',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '53',
+  'plid' => '8',
+  'link_path' => 'admin/config/search',
+  'router_path' => 'admin/config/search',
+  'link_title' => 'Search and metadata',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:36:"Local site search, metadata and SEO.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '53',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '54',
+  'plid' => '7',
+  'link_path' => 'admin/appearance/settings',
+  'router_path' => 'admin/appearance/settings',
+  'link_title' => 'Settings',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:46:"Configure default and theme specific settings.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '20',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '7',
+  'p3' => '54',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '55',
+  'plid' => '19',
+  'link_path' => 'admin/reports/status',
+  'router_path' => 'admin/reports/status',
+  'link_title' => 'Status report',
+  'options' => "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.\";}}",
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-60',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '19',
+  'p3' => '55',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '56',
+  'plid' => '8',
+  'link_path' => 'admin/config/system',
+  'router_path' => 'admin/config/system',
+  'link_title' => 'System',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:37:"General system related configuration.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-20',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '56',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '57',
+  'plid' => '21',
+  'link_path' => 'admin/structure/taxonomy',
+  'router_path' => 'admin/structure/taxonomy',
+  'link_title' => 'Taxonomy',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:67:"Manage tagging, categorization, and classification of your content.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '58',
+  'plid' => '19',
+  'link_path' => 'admin/reports/access-denied',
+  'router_path' => 'admin/reports/access-denied',
+  'link_title' => "Top 'access denied' errors",
+  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:35:\"View 'access denied' errors (403s).\";}}",
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '19',
+  'p3' => '58',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '59',
+  'plid' => '19',
+  'link_path' => 'admin/reports/page-not-found',
+  'router_path' => 'admin/reports/page-not-found',
+  'link_title' => "Top 'page not found' errors",
+  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"View 'page not found' errors (404s).\";}}",
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '19',
+  'p3' => '59',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '60',
+  'plid' => '16',
+  'link_path' => 'admin/modules/uninstall',
+  'router_path' => 'admin/modules/uninstall',
+  'link_title' => 'Uninstall',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '20',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '16',
+  'p3' => '60',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '61',
+  'plid' => '8',
+  'link_path' => 'admin/config/user-interface',
+  'router_path' => 'admin/config/user-interface',
+  'link_title' => 'User interface',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:38:"Tools that enhance the user interface.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-15',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '61',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '62',
+  'plid' => '5',
+  'link_path' => 'node/%/view',
+  'router_path' => 'node/%/view',
+  'link_title' => 'View',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '5',
+  'p2' => '62',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '63',
+  'plid' => '17',
+  'link_path' => 'user/%/view',
+  'router_path' => 'user/%/view',
+  'link_title' => 'View',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '17',
+  'p2' => '63',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '64',
+  'plid' => '8',
+  'link_path' => 'admin/config/services',
+  'router_path' => 'admin/config/services',
+  'link_title' => 'Web services',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:30:"Tools related to web services.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '64',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '65',
+  'plid' => '8',
+  'link_path' => 'admin/config/workflow',
+  'router_path' => 'admin/config/workflow',
+  'link_title' => 'Workflow',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"Content workflow, editorial workflow tools.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '5',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '65',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '66',
+  'plid' => '12',
+  'link_path' => 'admin/help/block',
+  'router_path' => 'admin/help/block',
+  'link_title' => 'block',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '66',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '67',
+  'plid' => '12',
+  'link_path' => 'admin/help/color',
+  'router_path' => 'admin/help/color',
+  'link_title' => 'color',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '67',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '68',
+  'plid' => '12',
+  'link_path' => 'admin/help/comment',
+  'router_path' => 'admin/help/comment',
+  'link_title' => 'comment',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '68',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '69',
+  'plid' => '12',
+  'link_path' => 'admin/help/contextual',
+  'router_path' => 'admin/help/contextual',
+  'link_title' => 'contextual',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '69',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '70',
+  'plid' => '12',
+  'link_path' => 'admin/help/dashboard',
+  'router_path' => 'admin/help/dashboard',
+  'link_title' => 'dashboard',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '70',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '71',
+  'plid' => '12',
+  'link_path' => 'admin/help/dblog',
+  'router_path' => 'admin/help/dblog',
+  'link_title' => 'dblog',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '71',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '72',
+  'plid' => '12',
+  'link_path' => 'admin/help/field',
+  'router_path' => 'admin/help/field',
+  'link_title' => 'field',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '72',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '73',
+  'plid' => '12',
+  'link_path' => 'admin/help/field_sql_storage',
+  'router_path' => 'admin/help/field_sql_storage',
+  'link_title' => 'field_sql_storage',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '73',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '74',
+  'plid' => '12',
+  'link_path' => 'admin/help/field_ui',
+  'router_path' => 'admin/help/field_ui',
+  'link_title' => 'field_ui',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '74',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '75',
+  'plid' => '12',
+  'link_path' => 'admin/help/file',
+  'router_path' => 'admin/help/file',
+  'link_title' => 'file',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '75',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '76',
+  'plid' => '12',
+  'link_path' => 'admin/help/filter',
+  'router_path' => 'admin/help/filter',
+  'link_title' => 'filter',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '76',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '77',
+  'plid' => '12',
+  'link_path' => 'admin/help/help',
+  'router_path' => 'admin/help/help',
+  'link_title' => 'help',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '77',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '78',
+  'plid' => '12',
+  'link_path' => 'admin/help/image',
+  'router_path' => 'admin/help/image',
+  'link_title' => 'image',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '78',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '79',
+  'plid' => '12',
+  'link_path' => 'admin/help/list',
+  'router_path' => 'admin/help/list',
+  'link_title' => 'list',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '79',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '80',
+  'plid' => '12',
+  'link_path' => 'admin/help/menu',
+  'router_path' => 'admin/help/menu',
+  'link_title' => 'menu',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '80',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '81',
+  'plid' => '12',
+  'link_path' => 'admin/help/node',
+  'router_path' => 'admin/help/node',
+  'link_title' => 'node',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '81',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '82',
+  'plid' => '12',
+  'link_path' => 'admin/help/options',
+  'router_path' => 'admin/help/options',
+  'link_title' => 'options',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '82',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '83',
+  'plid' => '12',
+  'link_path' => 'admin/help/system',
+  'router_path' => 'admin/help/system',
+  'link_title' => 'system',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '83',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '84',
+  'plid' => '12',
+  'link_path' => 'admin/help/taxonomy',
+  'router_path' => 'admin/help/taxonomy',
+  'link_title' => 'taxonomy',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '84',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '85',
+  'plid' => '12',
+  'link_path' => 'admin/help/text',
+  'router_path' => 'admin/help/text',
+  'link_title' => 'text',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '85',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '86',
+  'plid' => '12',
+  'link_path' => 'admin/help/user',
+  'router_path' => 'admin/help/user',
+  'link_title' => 'user',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '86',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '87',
+  'plid' => '27',
+  'link_path' => 'taxonomy/term/%/edit',
+  'router_path' => 'taxonomy/term/%/edit',
+  'link_title' => 'Edit',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '10',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '27',
+  'p2' => '87',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '88',
+  'plid' => '27',
+  'link_path' => 'taxonomy/term/%/view',
+  'router_path' => 'taxonomy/term/%/view',
+  'link_title' => 'View',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '27',
+  'p2' => '88',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '89',
+  'plid' => '48',
+  'link_path' => 'admin/config/people/accounts',
+  'router_path' => 'admin/config/people/accounts',
+  'link_title' => 'Account settings',
+  'options' => '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.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '48',
+  'p4' => '89',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '90',
+  'plid' => '56',
+  'link_path' => 'admin/config/system/actions',
+  'router_path' => 'admin/config/system/actions',
+  'link_title' => 'Actions',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:41:"Manage the actions defined for your site.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '56',
+  'p4' => '90',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '91',
+  'plid' => '30',
+  'link_path' => 'admin/structure/block/add',
+  'router_path' => 'admin/structure/block/add',
+  'link_title' => 'Add block',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '91',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '92',
+  'plid' => '36',
+  'link_path' => 'admin/structure/types/add',
+  'router_path' => 'admin/structure/types/add',
+  'link_title' => 'Add content type',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '92',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '93',
+  'plid' => '47',
+  'link_path' => 'admin/structure/menu/add',
+  'router_path' => 'admin/structure/menu/add',
+  'link_title' => 'Add menu',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '93',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '94',
+  'plid' => '57',
+  'link_path' => 'admin/structure/taxonomy/add',
+  'router_path' => 'admin/structure/taxonomy/add',
+  'link_title' => 'Add vocabulary',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '94',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '95',
+  'plid' => '54',
+  'link_path' => 'admin/appearance/settings/bartik',
+  'router_path' => 'admin/appearance/settings/bartik',
+  'link_title' => 'Bartik',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '7',
+  'p3' => '54',
+  'p4' => '95',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '96',
+  'plid' => '53',
+  'link_path' => 'admin/config/search/clean-urls',
+  'router_path' => 'admin/config/search/clean-urls',
+  'link_title' => 'Clean URLs',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"Enable or disable clean URLs for your site.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '5',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '53',
+  'p4' => '96',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '97',
+  'plid' => '56',
+  'link_path' => 'admin/config/system/cron',
+  'router_path' => 'admin/config/system/cron',
+  'link_title' => 'Cron',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:40:"Manage automatic site maintenance tasks.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '20',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '56',
+  'p4' => '97',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '98',
+  'plid' => '51',
+  'link_path' => 'admin/config/regional/date-time',
+  'router_path' => 'admin/config/regional/date-time',
+  'link_title' => 'Date and time',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:44:"Configure display formats for date and time.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-15',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '51',
+  'p4' => '98',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '99',
+  'plid' => '19',
+  'link_path' => 'admin/reports/event/%',
+  'router_path' => 'admin/reports/event/%',
+  'link_title' => 'Details',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '19',
+  'p3' => '99',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '100',
+  'plid' => '46',
+  'link_path' => 'admin/config/media/file-system',
+  'router_path' => 'admin/config/media/file-system',
+  'link_title' => 'File system',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:68:"Tell Drupal where to store uploaded files and how they are accessed.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '46',
+  'p4' => '100',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '101',
+  'plid' => '54',
+  'link_path' => 'admin/appearance/settings/garland',
+  'router_path' => 'admin/appearance/settings/garland',
+  'link_title' => 'Garland',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '7',
+  'p3' => '54',
+  'p4' => '101',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '102',
+  'plid' => '54',
+  'link_path' => 'admin/appearance/settings/global',
+  'router_path' => 'admin/appearance/settings/global',
+  'link_title' => 'Global settings',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-1',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '7',
+  'p3' => '54',
+  'p4' => '102',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '103',
+  'plid' => '48',
+  'link_path' => 'admin/config/people/ip-blocking',
+  'router_path' => 'admin/config/people/ip-blocking',
+  'link_title' => 'IP address blocking',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:28:"Manage blocked IP addresses.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '10',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '48',
+  'p4' => '103',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '104',
+  'plid' => '46',
+  'link_path' => 'admin/config/media/image-styles',
+  'router_path' => 'admin/config/media/image-styles',
+  'link_title' => 'Image styles',
+  'options' => '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.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '46',
+  'p4' => '104',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '105',
+  'plid' => '46',
+  'link_path' => 'admin/config/media/image-toolkit',
+  'router_path' => 'admin/config/media/image-toolkit',
+  'link_title' => 'Image toolkit',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:74:"Choose which image toolkit to use if you have installed optional toolkits.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '20',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '46',
+  'p4' => '105',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '106',
+  'plid' => '44',
+  'link_path' => 'admin/modules/list/confirm',
+  'router_path' => 'admin/modules/list/confirm',
+  'link_title' => 'List',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '16',
+  'p3' => '44',
+  'p4' => '106',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '107',
+  'plid' => '36',
+  'link_path' => 'admin/structure/types/list',
+  'router_path' => 'admin/structure/types/list',
+  'link_title' => 'List',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '107',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '108',
+  'plid' => '57',
+  'link_path' => 'admin/structure/taxonomy/list',
+  'router_path' => 'admin/structure/taxonomy/list',
+  'link_title' => 'List',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '108',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '109',
+  'plid' => '47',
+  'link_path' => 'admin/structure/menu/list',
+  'router_path' => 'admin/structure/menu/list',
+  'link_title' => 'List menus',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '109',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '110',
+  'plid' => '39',
+  'link_path' => 'admin/config/development/logging',
+  'router_path' => 'admin/config/development/logging',
+  'link_title' => 'Logging and errors',
+  'options' => "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.\";}}",
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-15',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '39',
+  'p4' => '110',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '111',
+  'plid' => '39',
+  'link_path' => 'admin/config/development/maintenance',
+  'router_path' => 'admin/config/development/maintenance',
+  'link_title' => 'Maintenance mode',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:62:"Take the site offline for maintenance or bring it back online.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '39',
+  'p4' => '111',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '112',
+  'plid' => '39',
+  'link_path' => 'admin/config/development/performance',
+  'router_path' => 'admin/config/development/performance',
+  'link_title' => 'Performance',
+  'options' => '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.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-20',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '39',
+  'p4' => '112',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '113',
+  'plid' => '49',
+  'link_path' => 'admin/people/permissions/list',
+  'router_path' => 'admin/people/permissions/list',
+  'link_title' => 'Permissions',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:64:"Determine access to features by selecting permissions for roles.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-8',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '49',
+  'p4' => '113',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '114',
+  'plid' => '32',
+  'link_path' => 'admin/content/comment/new',
+  'router_path' => 'admin/content/comment/new',
+  'link_title' => 'Published comments',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '9',
+  'p3' => '32',
+  'p4' => '114',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '115',
+  'plid' => '64',
+  'link_path' => 'admin/config/services/rss-publishing',
+  'router_path' => 'admin/config/services/rss-publishing',
+  'link_title' => 'RSS publishing',
+  'options' => '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.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '64',
+  'p4' => '115',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '116',
+  'plid' => '51',
+  'link_path' => 'admin/config/regional/settings',
+  'router_path' => 'admin/config/regional/settings',
+  'link_title' => 'Regional settings',
+  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:54:\"Settings for the site's default time zone and country.\";}}",
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-20',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '51',
+  'p4' => '116',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '117',
+  'plid' => '49',
+  'link_path' => 'admin/people/permissions/roles',
+  'router_path' => 'admin/people/permissions/roles',
+  'link_title' => 'Roles',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:30:"List, edit, or add user roles.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-5',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '49',
+  'p4' => '117',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '118',
+  'plid' => '47',
+  'link_path' => 'admin/structure/menu/settings',
+  'router_path' => 'admin/structure/menu/settings',
+  'link_title' => 'Settings',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '5',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '118',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '119',
+  'plid' => '54',
+  'link_path' => 'admin/appearance/settings/seven',
+  'router_path' => 'admin/appearance/settings/seven',
+  'link_title' => 'Seven',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '7',
+  'p3' => '54',
+  'p4' => '119',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '120',
+  'plid' => '56',
+  'link_path' => 'admin/config/system/site-information',
+  'router_path' => 'admin/config/system/site-information',
+  'link_title' => 'Site information',
+  'options' => '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.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-20',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '56',
+  'p4' => '120',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '121',
+  'plid' => '54',
+  'link_path' => 'admin/appearance/settings/stark',
+  'router_path' => 'admin/appearance/settings/stark',
+  'link_title' => 'Stark',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '7',
+  'p3' => '54',
+  'p4' => '121',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '122',
+  'plid' => '54',
+  'link_path' => 'admin/appearance/settings/test_theme',
+  'router_path' => 'admin/appearance/settings/test_theme',
+  'link_title' => 'Test theme',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '7',
+  'p3' => '54',
+  'p4' => '122',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '123',
+  'plid' => '35',
+  'link_path' => 'admin/config/content/formats',
+  'router_path' => 'admin/config/content/formats',
+  'link_title' => 'Text formats',
+  'options' => '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.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '35',
+  'p4' => '123',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '124',
+  'plid' => '32',
+  'link_path' => 'admin/content/comment/approval',
+  'router_path' => 'admin/content/comment/approval',
+  'link_title' => 'Unapproved comments',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '9',
+  'p3' => '32',
+  'p4' => '124',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '125',
+  'plid' => '60',
+  'link_path' => 'admin/modules/uninstall/confirm',
+  'router_path' => 'admin/modules/uninstall/confirm',
+  'link_title' => 'Uninstall',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '16',
+  'p3' => '60',
+  'p4' => '125',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '126',
+  'plid' => '54',
+  'link_path' => 'admin/appearance/settings/update_test_basetheme',
+  'router_path' => 'admin/appearance/settings/update_test_basetheme',
+  'link_title' => 'Update test base theme',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '7',
+  'p3' => '54',
+  'p4' => '126',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '127',
+  'plid' => '57',
+  'link_path' => 'admin/structure/taxonomy/%',
+  'router_path' => 'admin/structure/taxonomy/%',
+  'link_title' => '',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '127',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '128',
+  'plid' => '54',
+  'link_path' => 'admin/appearance/settings/update_test_subtheme',
+  'router_path' => 'admin/appearance/settings/update_test_subtheme',
+  'link_title' => 'Update test subtheme',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '7',
+  'p3' => '54',
+  'p4' => '128',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '129',
+  'plid' => '40',
+  'link_path' => 'user/%/edit/account',
+  'router_path' => 'user/%/edit/account',
+  'link_title' => 'Account',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '17',
+  'p2' => '40',
+  'p3' => '129',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '130',
+  'plid' => '123',
+  'link_path' => 'admin/config/content/formats/%',
+  'router_path' => 'admin/config/content/formats/%',
+  'link_title' => '',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '35',
+  'p4' => '123',
+  'p5' => '130',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '131',
+  'plid' => '104',
+  'link_path' => 'admin/config/media/image-styles/add',
+  'router_path' => 'admin/config/media/image-styles/add',
+  'link_title' => 'Add style',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:22:"Add a new image style.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '2',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '46',
+  'p4' => '104',
+  'p5' => '131',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '132',
+  'plid' => '127',
+  'link_path' => 'admin/structure/taxonomy/%/add',
+  'router_path' => 'admin/structure/taxonomy/%/add',
+  'link_title' => 'Add term',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '127',
+  'p5' => '132',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '133',
+  'plid' => '123',
+  'link_path' => 'admin/config/content/formats/add',
+  'router_path' => 'admin/config/content/formats/add',
+  'link_title' => 'Add text format',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '1',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '35',
+  'p4' => '123',
+  'p5' => '133',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '134',
+  'plid' => '30',
+  'link_path' => 'admin/structure/block/list/bartik',
+  'router_path' => 'admin/structure/block/list/bartik',
+  'link_title' => 'Bartik',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '134',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '135',
+  'plid' => '90',
+  'link_path' => 'admin/config/system/actions/configure',
+  'router_path' => 'admin/config/system/actions/configure',
+  'link_title' => 'Configure an advanced action',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '56',
+  'p4' => '90',
+  'p5' => '135',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '136',
+  'plid' => '47',
+  'link_path' => 'admin/structure/menu/manage/%',
+  'router_path' => 'admin/structure/menu/manage/%',
+  'link_title' => 'Customize menu',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '136',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '137',
+  'plid' => '127',
+  'link_path' => 'admin/structure/taxonomy/%/edit',
+  'router_path' => 'admin/structure/taxonomy/%/edit',
+  'link_title' => 'Edit',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '127',
+  'p5' => '137',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '138',
+  'plid' => '36',
+  'link_path' => 'admin/structure/types/manage/%',
+  'router_path' => 'admin/structure/types/manage/%',
+  'link_title' => 'Edit content type',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '139',
+  'plid' => '98',
+  'link_path' => 'admin/config/regional/date-time/formats',
+  'router_path' => 'admin/config/regional/date-time/formats',
+  'link_title' => 'Formats',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:51:"Configure display format strings for date and time.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-9',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '51',
+  'p4' => '98',
+  'p5' => '139',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '140',
+  'plid' => '30',
+  'link_path' => 'admin/structure/block/list/garland',
+  'router_path' => 'admin/structure/block/list/garland',
+  'link_title' => 'Garland',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '140',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '141',
+  'plid' => '123',
+  'link_path' => 'admin/config/content/formats/list',
+  'router_path' => 'admin/config/content/formats/list',
+  'link_title' => 'List',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '35',
+  'p4' => '123',
+  'p5' => '141',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '142',
+  'plid' => '127',
+  'link_path' => 'admin/structure/taxonomy/%/list',
+  'router_path' => 'admin/structure/taxonomy/%/list',
+  'link_title' => 'List',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-20',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '127',
+  'p5' => '142',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '143',
+  'plid' => '104',
+  'link_path' => 'admin/config/media/image-styles/list',
+  'router_path' => 'admin/config/media/image-styles/list',
+  'link_title' => 'List',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:42:"List the current image styles on the site.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '1',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '46',
+  'p4' => '104',
+  'p5' => '143',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '144',
+  'plid' => '90',
+  'link_path' => 'admin/config/system/actions/manage',
+  'router_path' => 'admin/config/system/actions/manage',
+  'link_title' => 'Manage actions',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:41:"Manage the actions defined for your site.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-2',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '56',
+  'p4' => '90',
+  'p5' => '144',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '145',
+  'plid' => '89',
+  'link_path' => 'admin/config/people/accounts/settings',
+  'router_path' => 'admin/config/people/accounts/settings',
+  'link_title' => 'Settings',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '48',
+  'p4' => '89',
+  'p5' => '145',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '146',
+  'plid' => '30',
+  'link_path' => 'admin/structure/block/list/seven',
+  'router_path' => 'admin/structure/block/list/seven',
+  'link_title' => 'Seven',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '146',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '147',
+  'plid' => '30',
+  'link_path' => 'admin/structure/block/list/stark',
+  'router_path' => 'admin/structure/block/list/stark',
+  'link_title' => 'Stark',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '147',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '148',
+  'plid' => '30',
+  'link_path' => 'admin/structure/block/list/test_theme',
+  'router_path' => 'admin/structure/block/list/test_theme',
+  'link_title' => 'Test theme',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '148',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '149',
+  'plid' => '98',
+  'link_path' => 'admin/config/regional/date-time/types',
+  'router_path' => 'admin/config/regional/date-time/types',
+  'link_title' => 'Types',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:44:"Configure display formats for date and time.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '51',
+  'p4' => '98',
+  'p5' => '149',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '150',
+  'plid' => '30',
+  'link_path' => 'admin/structure/block/list/update_test_basetheme',
+  'router_path' => 'admin/structure/block/list/update_test_basetheme',
+  'link_title' => 'Update test base theme',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '150',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '151',
+  'plid' => '30',
+  'link_path' => 'admin/structure/block/list/update_test_subtheme',
+  'router_path' => 'admin/structure/block/list/update_test_subtheme',
+  'link_title' => 'Update test subtheme',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '151',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '152',
+  'plid' => '52',
+  'link_path' => 'node/%/revisions/%/delete',
+  'router_path' => 'node/%/revisions/%/delete',
+  'link_title' => 'Delete earlier revision',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '5',
+  'p2' => '52',
+  'p3' => '152',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '153',
+  'plid' => '52',
+  'link_path' => 'node/%/revisions/%/revert',
+  'router_path' => 'node/%/revisions/%/revert',
+  'link_title' => 'Revert to earlier revision',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '5',
+  'p2' => '52',
+  'p3' => '153',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '154',
+  'plid' => '52',
+  'link_path' => 'node/%/revisions/%/view',
+  'router_path' => 'node/%/revisions/%/view',
+  'link_title' => 'Revisions',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '5',
+  'p2' => '52',
+  'p3' => '154',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '155',
+  'plid' => '140',
+  'link_path' => 'admin/structure/block/list/garland/add',
+  'router_path' => 'admin/structure/block/list/garland/add',
+  'link_title' => 'Add block',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '140',
+  'p5' => '155',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '156',
+  'plid' => '146',
+  'link_path' => 'admin/structure/block/list/seven/add',
+  'router_path' => 'admin/structure/block/list/seven/add',
+  'link_title' => 'Add block',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '146',
+  'p5' => '156',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '157',
+  'plid' => '147',
+  'link_path' => 'admin/structure/block/list/stark/add',
+  'router_path' => 'admin/structure/block/list/stark/add',
+  'link_title' => 'Add block',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '147',
+  'p5' => '157',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '158',
+  'plid' => '148',
+  'link_path' => 'admin/structure/block/list/test_theme/add',
+  'router_path' => 'admin/structure/block/list/test_theme/add',
+  'link_title' => 'Add block',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '148',
+  'p5' => '158',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '159',
+  'plid' => '150',
+  'link_path' => 'admin/structure/block/list/update_test_basetheme/add',
+  'router_path' => 'admin/structure/block/list/update_test_basetheme/add',
+  'link_title' => 'Add block',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '150',
+  'p5' => '159',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '160',
+  'plid' => '151',
+  'link_path' => 'admin/structure/block/list/update_test_subtheme/add',
+  'router_path' => 'admin/structure/block/list/update_test_subtheme/add',
+  'link_title' => 'Add block',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '151',
+  'p5' => '160',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '161',
+  'plid' => '149',
+  'link_path' => 'admin/config/regional/date-time/types/add',
+  'router_path' => 'admin/config/regional/date-time/types/add',
+  'link_title' => 'Add date type',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:18:"Add new date type.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '51',
+  'p4' => '98',
+  'p5' => '149',
+  'p6' => '161',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '162',
+  'plid' => '139',
+  'link_path' => 'admin/config/regional/date-time/formats/add',
+  'router_path' => 'admin/config/regional/date-time/formats/add',
+  'link_title' => 'Add format',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"Allow users to add additional date formats.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '51',
+  'p4' => '98',
+  'p5' => '139',
+  'p6' => '162',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '163',
+  'plid' => '136',
+  'link_path' => 'admin/structure/menu/manage/%/add',
+  'router_path' => 'admin/structure/menu/manage/%/add',
+  'link_title' => 'Add link',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '136',
+  'p5' => '163',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '164',
+  'plid' => '30',
+  'link_path' => 'admin/structure/block/manage/%/%',
+  'router_path' => 'admin/structure/block/manage/%/%',
+  'link_title' => 'Configure block',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '164',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '165',
+  'plid' => '31',
+  'link_path' => 'user/%/cancel/confirm/%/%',
+  'router_path' => 'user/%/cancel/confirm/%/%',
+  'link_title' => 'Confirm account cancellation',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '17',
+  'p2' => '31',
+  'p3' => '165',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '166',
+  'plid' => '138',
+  'link_path' => 'admin/structure/types/manage/%/delete',
+  'router_path' => 'admin/structure/types/manage/%/delete',
+  'link_title' => 'Delete',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '166',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '167',
+  'plid' => '103',
+  'link_path' => 'admin/config/people/ip-blocking/delete/%',
+  'router_path' => 'admin/config/people/ip-blocking/delete/%',
+  'link_title' => 'Delete IP address',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '48',
+  'p4' => '103',
+  'p5' => '167',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '168',
+  'plid' => '90',
+  'link_path' => 'admin/config/system/actions/delete/%',
+  'router_path' => 'admin/config/system/actions/delete/%',
+  'link_title' => 'Delete action',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:17:"Delete an action.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '56',
+  'p4' => '90',
+  'p5' => '168',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '169',
+  'plid' => '136',
+  'link_path' => 'admin/structure/menu/manage/%/delete',
+  'router_path' => 'admin/structure/menu/manage/%/delete',
+  'link_title' => 'Delete menu',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '136',
+  'p5' => '169',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '170',
+  'plid' => '47',
+  'link_path' => 'admin/structure/menu/item/%/delete',
+  'router_path' => 'admin/structure/menu/item/%/delete',
+  'link_title' => 'Delete menu link',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '170',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '171',
+  'plid' => '117',
+  'link_path' => 'admin/people/permissions/roles/delete/%',
+  'router_path' => 'admin/people/permissions/roles/delete/%',
+  'link_title' => 'Delete role',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '49',
+  'p4' => '117',
+  'p5' => '171',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '172',
+  'plid' => '130',
+  'link_path' => 'admin/config/content/formats/%/disable',
+  'router_path' => 'admin/config/content/formats/%/disable',
+  'link_title' => 'Disable text format',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '35',
+  'p4' => '123',
+  'p5' => '130',
+  'p6' => '172',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '173',
+  'plid' => '138',
+  'link_path' => 'admin/structure/types/manage/%/edit',
+  'router_path' => 'admin/structure/types/manage/%/edit',
+  'link_title' => 'Edit',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '173',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '174',
+  'plid' => '136',
+  'link_path' => 'admin/structure/menu/manage/%/edit',
+  'router_path' => 'admin/structure/menu/manage/%/edit',
+  'link_title' => 'Edit menu',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '136',
+  'p5' => '174',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '175',
+  'plid' => '47',
+  'link_path' => 'admin/structure/menu/item/%/edit',
+  'router_path' => 'admin/structure/menu/item/%/edit',
+  'link_title' => 'Edit menu link',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '175',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '176',
+  'plid' => '117',
+  'link_path' => 'admin/people/permissions/roles/edit/%',
+  'router_path' => 'admin/people/permissions/roles/edit/%',
+  'link_title' => 'Edit role',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '49',
+  'p4' => '117',
+  'p5' => '176',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '177',
+  'plid' => '104',
+  'link_path' => 'admin/config/media/image-styles/edit/%',
+  'router_path' => 'admin/config/media/image-styles/edit/%',
+  'link_title' => 'Edit style',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:25:"Configure an image style.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '46',
+  'p4' => '104',
+  'p5' => '177',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '178',
+  'plid' => '136',
+  'link_path' => 'admin/structure/menu/manage/%/list',
+  'router_path' => 'admin/structure/menu/manage/%/list',
+  'link_title' => 'List links',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '136',
+  'p5' => '178',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '179',
+  'plid' => '47',
+  'link_path' => 'admin/structure/menu/item/%/reset',
+  'router_path' => 'admin/structure/menu/item/%/reset',
+  'link_title' => 'Reset menu link',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '179',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '180',
+  'plid' => '104',
+  'link_path' => 'admin/config/media/image-styles/delete/%',
+  'router_path' => 'admin/config/media/image-styles/delete/%',
+  'link_title' => 'Delete style',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:22:"Delete an image style.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '46',
+  'p4' => '104',
+  'p5' => '180',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '181',
+  'plid' => '104',
+  'link_path' => 'admin/config/media/image-styles/revert/%',
+  'router_path' => 'admin/config/media/image-styles/revert/%',
+  'link_title' => 'Revert style',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:22:"Revert an image style.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '46',
+  'p4' => '104',
+  'p5' => '181',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '182',
+  'plid' => '138',
+  'link_path' => 'admin/structure/types/manage/%/comment/display',
+  'router_path' => 'admin/structure/types/manage/%/comment/display',
+  'link_title' => 'Comment display',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '4',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '182',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '183',
+  'plid' => '138',
+  'link_path' => 'admin/structure/types/manage/%/comment/fields',
+  'router_path' => 'admin/structure/types/manage/%/comment/fields',
+  'link_title' => 'Comment fields',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '3',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '183',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '184',
+  'plid' => '164',
+  'link_path' => 'admin/structure/block/manage/%/%/configure',
+  'router_path' => 'admin/structure/block/manage/%/%/configure',
+  'link_title' => 'Configure block',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '164',
+  'p5' => '184',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '185',
+  'plid' => '164',
+  'link_path' => 'admin/structure/block/manage/%/%/delete',
+  'router_path' => 'admin/structure/block/manage/%/%/delete',
+  'link_title' => 'Delete block',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '164',
+  'p5' => '185',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '186',
+  'plid' => '139',
+  'link_path' => 'admin/config/regional/date-time/formats/%/delete',
+  'router_path' => 'admin/config/regional/date-time/formats/%/delete',
+  'link_title' => 'Delete date format',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:47:"Allow users to delete a configured date format.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '51',
+  'p4' => '98',
+  'p5' => '139',
+  'p6' => '186',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '187',
+  'plid' => '149',
+  'link_path' => 'admin/config/regional/date-time/types/%/delete',
+  'router_path' => 'admin/config/regional/date-time/types/%/delete',
+  'link_title' => 'Delete date type',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:45:"Allow users to delete a configured date type.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '51',
+  'p4' => '98',
+  'p5' => '149',
+  'p6' => '187',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '188',
+  'plid' => '139',
+  'link_path' => 'admin/config/regional/date-time/formats/%/edit',
+  'router_path' => 'admin/config/regional/date-time/formats/%/edit',
+  'link_title' => 'Edit date format',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:45:"Allow users to edit a configured date format.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '51',
+  'p4' => '98',
+  'p5' => '139',
+  'p6' => '188',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '189',
+  'plid' => '177',
+  'link_path' => 'admin/config/media/image-styles/edit/%/add/%',
+  'router_path' => 'admin/config/media/image-styles/edit/%/add/%',
+  'link_title' => 'Add image effect',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:28:"Add a new effect to a style.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '46',
+  'p4' => '104',
+  'p5' => '177',
+  'p6' => '189',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '190',
+  'plid' => '177',
+  'link_path' => 'admin/config/media/image-styles/edit/%/effects/%',
+  'router_path' => 'admin/config/media/image-styles/edit/%/effects/%',
+  'link_title' => 'Edit image effect',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:39:"Edit an existing effect within a style.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '46',
+  'p4' => '104',
+  'p5' => '177',
+  'p6' => '190',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '191',
+  'plid' => '190',
+  'link_path' => 'admin/config/media/image-styles/edit/%/effects/%/delete',
+  'router_path' => 'admin/config/media/image-styles/edit/%/effects/%/delete',
+  'link_title' => 'Delete image effect',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:39:"Delete an existing effect from a style.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '46',
+  'p4' => '104',
+  'p5' => '177',
+  'p6' => '190',
+  'p7' => '191',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '192',
+  'plid' => '47',
+  'link_path' => 'admin/structure/menu/manage/main-menu',
+  'router_path' => 'admin/structure/menu/manage/%',
+  'link_title' => 'Main menu',
+  'options' => 'a:0:{}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '192',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '193',
+  'plid' => '47',
+  'link_path' => 'admin/structure/menu/manage/management',
+  'router_path' => 'admin/structure/menu/manage/%',
+  'link_title' => 'Management',
+  'options' => 'a:0:{}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '193',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '194',
+  'plid' => '47',
+  'link_path' => 'admin/structure/menu/manage/navigation',
+  'router_path' => 'admin/structure/menu/manage/%',
+  'link_title' => 'Navigation',
+  'options' => 'a:0:{}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '194',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '195',
+  'plid' => '47',
+  'link_path' => 'admin/structure/menu/manage/user-menu',
+  'router_path' => 'admin/structure/menu/manage/%',
+  'link_title' => 'User menu',
+  'options' => 'a:0:{}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '195',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '196',
+  'plid' => '0',
+  'link_path' => 'search',
+  'router_path' => 'search',
+  'link_title' => 'Search',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '196',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '197',
+  'plid' => '196',
+  'link_path' => 'search/node',
+  'router_path' => 'search/node',
+  'link_title' => 'Content',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '196',
+  'p2' => '197',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '198',
+  'plid' => '196',
+  'link_path' => 'search/user',
+  'router_path' => 'search/user',
+  'link_title' => 'Users',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '196',
+  'p2' => '198',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '199',
+  'plid' => '197',
+  'link_path' => 'search/node/%',
+  'router_path' => 'search/node/%',
+  'link_title' => 'Content',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '196',
+  'p2' => '197',
+  'p3' => '199',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '200',
+  'plid' => '17',
+  'link_path' => 'user/%/shortcuts',
+  'router_path' => 'user/%/shortcuts',
+  'link_title' => 'Shortcuts',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '17',
+  'p2' => '200',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '201',
+  'plid' => '19',
+  'link_path' => 'admin/reports/search',
+  'router_path' => 'admin/reports/search',
+  'link_title' => 'Top search phrases',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:33:"View most popular search phrases.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '19',
+  'p3' => '201',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '202',
+  'plid' => '198',
+  'link_path' => 'search/user/%',
+  'router_path' => 'search/user/%',
+  'link_title' => 'Users',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '196',
+  'p2' => '198',
+  'p3' => '202',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '203',
+  'plid' => '12',
+  'link_path' => 'admin/help/number',
+  'router_path' => 'admin/help/number',
+  'link_title' => 'number',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '203',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '204',
+  'plid' => '12',
+  'link_path' => 'admin/help/overlay',
+  'router_path' => 'admin/help/overlay',
+  'link_title' => 'overlay',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '204',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '205',
+  'plid' => '12',
+  'link_path' => 'admin/help/path',
+  'router_path' => 'admin/help/path',
+  'link_title' => 'path',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '205',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '206',
+  'plid' => '12',
+  'link_path' => 'admin/help/rdf',
+  'router_path' => 'admin/help/rdf',
+  'link_title' => 'rdf',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '206',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '207',
+  'plid' => '12',
+  'link_path' => 'admin/help/search',
+  'router_path' => 'admin/help/search',
+  'link_title' => 'search',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '207',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '208',
+  'plid' => '12',
+  'link_path' => 'admin/help/shortcut',
+  'router_path' => 'admin/help/shortcut',
+  'link_title' => 'shortcut',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '208',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '209',
+  'plid' => '53',
+  'link_path' => 'admin/config/search/settings',
+  'router_path' => 'admin/config/search/settings',
+  'link_title' => 'Search settings',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:67:"Configure relevance settings for search and other indexing options.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '53',
+  'p4' => '209',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '210',
+  'plid' => '61',
+  'link_path' => 'admin/config/user-interface/shortcut',
+  'router_path' => 'admin/config/user-interface/shortcut',
+  'link_title' => 'Shortcuts',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:29:"Add and modify shortcut sets.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '61',
+  'p4' => '210',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '211',
+  'plid' => '53',
+  'link_path' => 'admin/config/search/path',
+  'router_path' => 'admin/config/search/path',
+  'link_title' => 'URL aliases',
+  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:46:\"Change your site's URL paths by aliasing them.\";}}",
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-5',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '53',
+  'p4' => '211',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '212',
+  'plid' => '211',
+  'link_path' => 'admin/config/search/path/add',
+  'router_path' => 'admin/config/search/path/add',
+  'link_title' => 'Add alias',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '53',
+  'p4' => '211',
+  'p5' => '212',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '213',
+  'plid' => '210',
+  'link_path' => 'admin/config/user-interface/shortcut/add-set',
+  'router_path' => 'admin/config/user-interface/shortcut/add-set',
+  'link_title' => 'Add shortcut set',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '61',
+  'p4' => '210',
+  'p5' => '213',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '214',
+  'plid' => '209',
+  'link_path' => 'admin/config/search/settings/reindex',
+  'router_path' => 'admin/config/search/settings/reindex',
+  'link_title' => 'Clear index',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '53',
+  'p4' => '209',
+  'p5' => '214',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '215',
+  'plid' => '210',
+  'link_path' => 'admin/config/user-interface/shortcut/%',
+  'router_path' => 'admin/config/user-interface/shortcut/%',
+  'link_title' => 'Edit shortcuts',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '61',
+  'p4' => '210',
+  'p5' => '215',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '216',
+  'plid' => '211',
+  'link_path' => 'admin/config/search/path/list',
+  'router_path' => 'admin/config/search/path/list',
+  'link_title' => 'List',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '53',
+  'p4' => '211',
+  'p5' => '216',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '217',
+  'plid' => '215',
+  'link_path' => 'admin/config/user-interface/shortcut/%/add-link',
+  'router_path' => 'admin/config/user-interface/shortcut/%/add-link',
+  'link_title' => 'Add shortcut',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '61',
+  'p4' => '210',
+  'p5' => '215',
+  'p6' => '217',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '218',
+  'plid' => '211',
+  'link_path' => 'admin/config/search/path/delete/%',
+  'router_path' => 'admin/config/search/path/delete/%',
+  'link_title' => 'Delete alias',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '53',
+  'p4' => '211',
+  'p5' => '218',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '219',
+  'plid' => '215',
+  'link_path' => 'admin/config/user-interface/shortcut/%/delete',
+  'router_path' => 'admin/config/user-interface/shortcut/%/delete',
+  'link_title' => 'Delete shortcut set',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '61',
+  'p4' => '210',
+  'p5' => '215',
+  'p6' => '219',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '220',
+  'plid' => '211',
+  'link_path' => 'admin/config/search/path/edit/%',
+  'router_path' => 'admin/config/search/path/edit/%',
+  'link_title' => 'Edit alias',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '53',
+  'p4' => '211',
+  'p5' => '220',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '221',
+  'plid' => '215',
+  'link_path' => 'admin/config/user-interface/shortcut/%/edit',
+  'router_path' => 'admin/config/user-interface/shortcut/%/edit',
+  'link_title' => 'Edit set name',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '10',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '61',
+  'p4' => '210',
+  'p5' => '215',
+  'p6' => '221',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '222',
+  'plid' => '210',
+  'link_path' => 'admin/config/user-interface/shortcut/link/%',
+  'router_path' => 'admin/config/user-interface/shortcut/link/%',
+  'link_title' => 'Edit shortcut',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '61',
+  'p4' => '210',
+  'p5' => '222',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '223',
+  'plid' => '215',
+  'link_path' => 'admin/config/user-interface/shortcut/%/links',
+  'router_path' => 'admin/config/user-interface/shortcut/%/links',
+  'link_title' => 'List links',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '61',
+  'p4' => '210',
+  'p5' => '215',
+  'p6' => '223',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '224',
+  'plid' => '222',
+  'link_path' => 'admin/config/user-interface/shortcut/link/%/delete',
+  'router_path' => 'admin/config/user-interface/shortcut/link/%/delete',
+  'link_title' => 'Delete shortcut',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '61',
+  'p4' => '210',
+  'p5' => '222',
+  'p6' => '224',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'shortcut-set-1',
+  'mlid' => '225',
+  'plid' => '0',
+  'link_path' => 'node/add',
+  'router_path' => 'node/add',
+  'link_title' => 'Add content',
+  'options' => 'a:0:{}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-20',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '225',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'shortcut-set-1',
+  'mlid' => '226',
+  'plid' => '0',
+  'link_path' => 'admin/content',
+  'router_path' => 'admin/content',
+  'link_title' => 'Find content',
+  'options' => 'a:0:{}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-19',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '226',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'main-menu',
+  'mlid' => '227',
+  'plid' => '0',
+  'link_path' => '<front>',
+  'router_path' => '',
+  'link_title' => 'Home',
+  'options' => 'a:0:{}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '1',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '227',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '228',
+  'plid' => '6',
+  'link_path' => 'node/add/article',
+  'router_path' => 'node/add/article',
+  'link_title' => 'Article',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:89:"Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '6',
+  'p2' => '228',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '229',
+  'plid' => '6',
+  'link_path' => 'node/add/page',
+  'router_path' => 'node/add/page',
+  'link_title' => 'Basic page',
+  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:77:\"Use <em>basic pages</em> for your static content, such as an 'About us' page.\";}}",
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '6',
+  'p2' => '229',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '230',
+  'plid' => '12',
+  'link_path' => 'admin/help/toolbar',
+  'router_path' => 'admin/help/toolbar',
+  'link_title' => 'toolbar',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '230',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '269',
+  'plid' => '19',
+  'link_path' => 'admin/reports/updates',
+  'router_path' => 'admin/reports/updates',
+  'link_title' => 'Available updates',
+  'options' => '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.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-50',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '19',
+  'p3' => '269',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '270',
+  'plid' => '16',
+  'link_path' => 'admin/modules/install',
+  'router_path' => 'admin/modules/install',
+  'link_title' => 'Install new module',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '25',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '16',
+  'p3' => '270',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '271',
+  'plid' => '7',
+  'link_path' => 'admin/appearance/install',
+  'router_path' => 'admin/appearance/install',
+  'link_title' => 'Install new theme',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '25',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '7',
+  'p3' => '271',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '272',
+  'plid' => '16',
+  'link_path' => 'admin/modules/update',
+  'router_path' => 'admin/modules/update',
+  'link_title' => 'Update',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '10',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '16',
+  'p3' => '272',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '273',
+  'plid' => '7',
+  'link_path' => 'admin/appearance/update',
+  'router_path' => 'admin/appearance/update',
+  'link_title' => 'Update',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '10',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '7',
+  'p3' => '273',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '274',
+  'plid' => '12',
+  'link_path' => 'admin/help/update',
+  'router_path' => 'admin/help/update',
+  'link_title' => 'update',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '274',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '275',
+  'plid' => '269',
+  'link_path' => 'admin/reports/updates/install',
+  'router_path' => 'admin/reports/updates/install',
+  'link_title' => 'Install new module or theme',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '25',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '19',
+  'p3' => '269',
+  'p4' => '275',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '276',
+  'plid' => '269',
+  'link_path' => 'admin/reports/updates/update',
+  'router_path' => 'admin/reports/updates/update',
+  'link_title' => 'Update',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '10',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '19',
+  'p3' => '269',
+  'p4' => '276',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '277',
+  'plid' => '269',
+  'link_path' => 'admin/reports/updates/list',
+  'router_path' => 'admin/reports/updates/list',
+  'link_title' => 'List',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '19',
+  'p3' => '269',
+  'p4' => '277',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '278',
+  'plid' => '269',
+  'link_path' => 'admin/reports/updates/settings',
+  'router_path' => 'admin/reports/updates/settings',
+  'link_title' => 'Settings',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '50',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '19',
+  'p3' => '269',
+  'p4' => '278',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '279',
+  'plid' => '127',
+  'link_path' => 'admin/structure/taxonomy/%/display',
+  'router_path' => 'admin/structure/taxonomy/%/display',
+  'link_title' => 'Manage display',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '2',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '127',
+  'p5' => '279',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '280',
+  'plid' => '89',
+  'link_path' => 'admin/config/people/accounts/display',
+  'router_path' => 'admin/config/people/accounts/display',
+  'link_title' => 'Manage display',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '2',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '48',
+  'p4' => '89',
+  'p5' => '280',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '281',
+  'plid' => '127',
+  'link_path' => 'admin/structure/taxonomy/%/fields',
+  'router_path' => 'admin/structure/taxonomy/%/fields',
+  'link_title' => 'Manage fields',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '1',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '127',
+  'p5' => '281',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '282',
+  'plid' => '89',
+  'link_path' => 'admin/config/people/accounts/fields',
+  'router_path' => 'admin/config/people/accounts/fields',
+  'link_title' => 'Manage fields',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '1',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '48',
+  'p4' => '89',
+  'p5' => '282',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '283',
+  'plid' => '279',
+  'link_path' => 'admin/structure/taxonomy/%/display/default',
+  'router_path' => 'admin/structure/taxonomy/%/display/default',
+  'link_title' => 'Default',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '127',
+  'p5' => '279',
+  'p6' => '283',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '284',
+  'plid' => '280',
+  'link_path' => 'admin/config/people/accounts/display/default',
+  'router_path' => 'admin/config/people/accounts/display/default',
+  'link_title' => 'Default',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '48',
+  'p4' => '89',
+  'p5' => '280',
+  'p6' => '284',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '285',
+  'plid' => '138',
+  'link_path' => 'admin/structure/types/manage/%/display',
+  'router_path' => 'admin/structure/types/manage/%/display',
+  'link_title' => 'Manage display',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '2',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '285',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '286',
+  'plid' => '138',
+  'link_path' => 'admin/structure/types/manage/%/fields',
+  'router_path' => 'admin/structure/types/manage/%/fields',
+  'link_title' => 'Manage fields',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '1',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '286',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '287',
+  'plid' => '279',
+  'link_path' => 'admin/structure/taxonomy/%/display/full',
+  'router_path' => 'admin/structure/taxonomy/%/display/full',
+  'link_title' => 'Taxonomy term page',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '127',
+  'p5' => '279',
+  'p6' => '287',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '288',
+  'plid' => '280',
+  'link_path' => 'admin/config/people/accounts/display/full',
+  'router_path' => 'admin/config/people/accounts/display/full',
+  'link_title' => 'User account',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '48',
+  'p4' => '89',
+  'p5' => '280',
+  'p6' => '288',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '289',
+  'plid' => '281',
+  'link_path' => 'admin/structure/taxonomy/%/fields/%',
+  'router_path' => 'admin/structure/taxonomy/%/fields/%',
+  'link_title' => '',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '127',
+  'p5' => '281',
+  'p6' => '289',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '290',
+  'plid' => '282',
+  'link_path' => 'admin/config/people/accounts/fields/%',
+  'router_path' => 'admin/config/people/accounts/fields/%',
+  'link_title' => '',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '48',
+  'p4' => '89',
+  'p5' => '282',
+  'p6' => '290',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '291',
+  'plid' => '285',
+  'link_path' => 'admin/structure/types/manage/%/display/default',
+  'router_path' => 'admin/structure/types/manage/%/display/default',
+  'link_title' => 'Default',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '285',
+  'p6' => '291',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '292',
+  'plid' => '285',
+  'link_path' => 'admin/structure/types/manage/%/display/full',
+  'router_path' => 'admin/structure/types/manage/%/display/full',
+  'link_title' => 'Full content',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '285',
+  'p6' => '292',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '293',
+  'plid' => '285',
+  'link_path' => 'admin/structure/types/manage/%/display/rss',
+  'router_path' => 'admin/structure/types/manage/%/display/rss',
+  'link_title' => 'RSS',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '2',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '285',
+  'p6' => '293',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '294',
+  'plid' => '285',
+  'link_path' => 'admin/structure/types/manage/%/display/search_index',
+  'router_path' => 'admin/structure/types/manage/%/display/search_index',
+  'link_title' => 'Search index',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '3',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '285',
+  'p6' => '294',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '295',
+  'plid' => '285',
+  'link_path' => 'admin/structure/types/manage/%/display/search_result',
+  'router_path' => 'admin/structure/types/manage/%/display/search_result',
+  'link_title' => 'Search result',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '4',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '285',
+  'p6' => '295',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '296',
+  'plid' => '285',
+  'link_path' => 'admin/structure/types/manage/%/display/teaser',
+  'router_path' => 'admin/structure/types/manage/%/display/teaser',
+  'link_title' => 'Teaser',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '1',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '285',
+  'p6' => '296',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '297',
+  'plid' => '286',
+  'link_path' => 'admin/structure/types/manage/%/fields/%',
+  'router_path' => 'admin/structure/types/manage/%/fields/%',
+  'link_title' => '',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '286',
+  'p6' => '297',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '298',
+  'plid' => '289',
+  'link_path' => 'admin/structure/taxonomy/%/fields/%/delete',
+  'router_path' => 'admin/structure/taxonomy/%/fields/%/delete',
+  'link_title' => 'Delete',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '10',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '127',
+  'p5' => '281',
+  'p6' => '289',
+  'p7' => '298',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '299',
+  'plid' => '289',
+  'link_path' => 'admin/structure/taxonomy/%/fields/%/edit',
+  'router_path' => 'admin/structure/taxonomy/%/fields/%/edit',
+  'link_title' => 'Edit',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '127',
+  'p5' => '281',
+  'p6' => '289',
+  'p7' => '299',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '300',
+  'plid' => '289',
+  'link_path' => 'admin/structure/taxonomy/%/fields/%/field-settings',
+  'router_path' => 'admin/structure/taxonomy/%/fields/%/field-settings',
+  'link_title' => 'Field settings',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '127',
+  'p5' => '281',
+  'p6' => '289',
+  'p7' => '300',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '301',
+  'plid' => '289',
+  'link_path' => 'admin/structure/taxonomy/%/fields/%/widget-type',
+  'router_path' => 'admin/structure/taxonomy/%/fields/%/widget-type',
+  'link_title' => 'Widget type',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '127',
+  'p5' => '281',
+  'p6' => '289',
+  'p7' => '301',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '302',
+  'plid' => '290',
+  'link_path' => 'admin/config/people/accounts/fields/%/delete',
+  'router_path' => 'admin/config/people/accounts/fields/%/delete',
+  'link_title' => 'Delete',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '10',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '48',
+  'p4' => '89',
+  'p5' => '282',
+  'p6' => '290',
+  'p7' => '302',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '303',
+  'plid' => '290',
+  'link_path' => 'admin/config/people/accounts/fields/%/edit',
+  'router_path' => 'admin/config/people/accounts/fields/%/edit',
+  'link_title' => 'Edit',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '48',
+  'p4' => '89',
+  'p5' => '282',
+  'p6' => '290',
+  'p7' => '303',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '304',
+  'plid' => '290',
+  'link_path' => 'admin/config/people/accounts/fields/%/field-settings',
+  'router_path' => 'admin/config/people/accounts/fields/%/field-settings',
+  'link_title' => 'Field settings',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '48',
+  'p4' => '89',
+  'p5' => '282',
+  'p6' => '290',
+  'p7' => '304',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '305',
+  'plid' => '290',
+  'link_path' => 'admin/config/people/accounts/fields/%/widget-type',
+  'router_path' => 'admin/config/people/accounts/fields/%/widget-type',
+  'link_title' => 'Widget type',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '48',
+  'p4' => '89',
+  'p5' => '282',
+  'p6' => '290',
+  'p7' => '305',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '306',
+  'plid' => '182',
+  'link_path' => 'admin/structure/types/manage/%/comment/display/default',
+  'router_path' => 'admin/structure/types/manage/%/comment/display/default',
+  'link_title' => 'Default',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '182',
+  'p6' => '306',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '307',
+  'plid' => '182',
+  'link_path' => 'admin/structure/types/manage/%/comment/display/full',
+  'router_path' => 'admin/structure/types/manage/%/comment/display/full',
+  'link_title' => 'Full comment',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '182',
+  'p6' => '307',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '308',
+  'plid' => '183',
+  'link_path' => 'admin/structure/types/manage/%/comment/fields/%',
+  'router_path' => 'admin/structure/types/manage/%/comment/fields/%',
+  'link_title' => '',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '183',
+  'p6' => '308',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '309',
+  'plid' => '297',
+  'link_path' => 'admin/structure/types/manage/%/fields/%/edit',
+  'router_path' => 'admin/structure/types/manage/%/fields/%/edit',
+  'link_title' => 'Edit',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '286',
+  'p6' => '297',
+  'p7' => '309',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '310',
+  'plid' => '297',
+  'link_path' => 'admin/structure/types/manage/%/fields/%/delete',
+  'router_path' => 'admin/structure/types/manage/%/fields/%/delete',
+  'link_title' => 'Delete',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '10',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '286',
+  'p6' => '297',
+  'p7' => '310',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '311',
+  'plid' => '297',
+  'link_path' => 'admin/structure/types/manage/%/fields/%/field-settings',
+  'router_path' => 'admin/structure/types/manage/%/fields/%/field-settings',
+  'link_title' => 'Field settings',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '286',
+  'p6' => '297',
+  'p7' => '311',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '312',
+  'plid' => '297',
+  'link_path' => 'admin/structure/types/manage/%/fields/%/widget-type',
+  'router_path' => 'admin/structure/types/manage/%/fields/%/widget-type',
+  'link_title' => 'Widget type',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '286',
+  'p6' => '297',
+  'p7' => '312',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '313',
+  'plid' => '308',
+  'link_path' => 'admin/structure/types/manage/%/comment/fields/%/delete',
+  'router_path' => 'admin/structure/types/manage/%/comment/fields/%/delete',
+  'link_title' => 'Delete',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '10',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '183',
+  'p6' => '308',
+  'p7' => '313',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '314',
+  'plid' => '308',
+  'link_path' => 'admin/structure/types/manage/%/comment/fields/%/edit',
+  'router_path' => 'admin/structure/types/manage/%/comment/fields/%/edit',
+  'link_title' => 'Edit',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '183',
+  'p6' => '308',
+  'p7' => '314',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '315',
+  'plid' => '308',
+  'link_path' => 'admin/structure/types/manage/%/comment/fields/%/field-settings',
+  'router_path' => 'admin/structure/types/manage/%/comment/fields/%/field-settings',
+  'link_title' => 'Field settings',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '183',
+  'p6' => '308',
+  'p7' => '315',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '316',
+  'plid' => '308',
+  'link_path' => 'admin/structure/types/manage/%/comment/fields/%/widget-type',
+  'router_path' => 'admin/structure/types/manage/%/comment/fields/%/widget-type',
+  'link_title' => 'Widget type',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '183',
+  'p6' => '308',
+  'p7' => '316',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->execute();
+
+db_create_table('menu_router', array(
+  'fields' => array(
+    'path' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'load_functions' => array(
+      'type' => 'blob',
+      'not null' => TRUE,
+    ),
+    'to_arg_functions' => array(
+      'type' => 'blob',
+      'not null' => TRUE,
+    ),
+    'access_callback' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'access_arguments' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+    ),
+    'page_callback' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'page_arguments' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+    ),
+    'delivery_callback' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'fit' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'number_parts' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'small',
+    ),
+    'context' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'tab_parent' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'tab_root' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'title' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'title_callback' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'title_arguments' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'theme_callback' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'theme_arguments' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'type' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'description' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+    ),
+    'position' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'include_file' => array(
+      'type' => 'text',
+      'size' => 'medium',
+    ),
+  ),
+  'indexes' => array(
+    'fit' => array(
+      'fit',
+    ),
+    'tab_parent' => array(
+      array(
+        'tab_parent',
+        64,
+      ),
+      'weight',
+      'title',
+    ),
+    'tab_root_weight_title' => array(
+      array(
+        'tab_root',
+        64,
+      ),
+      'weight',
+      'title',
+    ),
+  ),
+  'primary key' => array(
+    'path',
+  ),
+  'module' => 'system',
+  'name' => 'menu_router',
+));
+db_insert('menu_router')->fields(array(
+  'path',
+  'load_functions',
+  'to_arg_functions',
+  'access_callback',
+  'access_arguments',
+  'page_callback',
+  'page_arguments',
+  'delivery_callback',
+  'fit',
+  'number_parts',
+  'context',
+  'tab_parent',
+  'tab_root',
+  'title',
+  'title_callback',
+  'title_arguments',
+  'theme_callback',
+  'theme_arguments',
+  'type',
+  'description',
+  'position',
+  'weight',
+  'include_file',
+))
+->values(array(
+  'path' => 'admin',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_menu_block_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '1',
+  'number_parts' => '1',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin',
+  'title' => 'Administration',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '9',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}',
+  'page_callback' => 'system_themes_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/appearance',
+  'title' => 'Appearance',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Select and configure your themes.',
+  'position' => 'left',
+  'weight' => '-6',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/default',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}',
+  'page_callback' => 'system_theme_default',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/appearance/default',
+  'title' => 'Set default theme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/disable',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}',
+  'page_callback' => 'system_theme_disable',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/appearance/disable',
+  'title' => 'Disable theme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/enable',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}',
+  'page_callback' => 'system_theme_enable',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/appearance/enable',
+  'title' => 'Enable theme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/install',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'update_manager_access',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:27:"update_manager_install_form";i:1;s:5:"theme";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/appearance',
+  'tab_root' => 'admin/appearance',
+  'title' => 'Install new theme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '25',
+  'include_file' => 'modules/update/update.manager.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}',
+  'page_callback' => 'system_themes_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/appearance',
+  'tab_root' => 'admin/appearance',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => 'Select and configure your theme',
+  'position' => '',
+  'weight' => '-1',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/settings',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:21:"system_theme_settings";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/appearance',
+  'tab_root' => 'admin/appearance',
+  'title' => 'Settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => 'Configure default and theme specific settings.',
+  'position' => '',
+  'weight' => '20',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/settings/bartik',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_system_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:25:"themes/bartik/bartik.info";s:4:"name";s:6:"bartik";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"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:6:"Bartik";s:11:"description";s:48:"A flexible, recolorable theme with many regions.";s:7:"package";s:4:"Core";s:7:"version";s:3:"7.8";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:"1314817616";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: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: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";}}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:6:"bartik";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/appearance/settings',
+  'tab_root' => 'admin/appearance',
+  'title' => 'Bartik',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/settings/garland',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_system_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:27:"themes/garland/garland.info";s:4:"name";s:7:"garland";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:18:{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:3:"7.8";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:"1314817616";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: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: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";}}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:7:"garland";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/appearance/settings',
+  'tab_root' => 'admin/appearance',
+  'title' => 'Garland',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/settings/global',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:21:"system_theme_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/appearance/settings',
+  'tab_root' => 'admin/appearance',
+  'title' => 'Global settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-1',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/settings/seven',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_system_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:23:"themes/seven/seven.info";s:4:"name";s:5:"seven";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:18:{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:3:"7.8";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:"1314817616";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: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: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";}}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:5:"seven";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/appearance/settings',
+  'tab_root' => 'admin/appearance',
+  'title' => 'Seven',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/settings/stark',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_system_themes_access',
+  'access_arguments' => "a:1:{i:0;O:8:\"stdClass\":11:{s:8:\"filename\";s:23:\"themes/stark/stark.info\";s:4:\"name\";s:5:\"stark\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:17:{s:4:\"name\";s:5:\"Stark\";s:11:\"description\";s:208:\"This theme demonstrates Drupal's default HTML markup and CSS styles. To learn how to build your own theme and override Drupal's default code, see the <a href=\"http://drupal.org/theme-guide\">Theming Guide</a>.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:3:\"7.8\";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:\"1314817616\";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: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: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\";}}",
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:5:"stark";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/appearance/settings',
+  'tab_root' => 'admin/appearance',
+  'title' => 'Stark',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/settings/test_theme',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_system_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:39:"themes/tests/test_theme/test_theme.info";s:4:"name";s:10:"test_theme";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:17:{s:4:"name";s:10:"Test theme";s:11:"description";s:34:"Theme for testing the theme system";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:15:"system.base.css";s:39:"themes/tests/test_theme/system.base.css";}}s:7:"version";s:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";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:38:"themes/tests/test_theme/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}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:11:"stylesheets";a:1:{s:3:"all";a:1:{s:15:"system.base.css";s:39:"themes/tests/test_theme/system.base.css";}}s:6:"engine";s:11:"phptemplate";}}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:10:"test_theme";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/appearance/settings',
+  'tab_root' => 'admin/appearance',
+  'title' => 'Test theme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/settings/update_test_basetheme',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_system_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":10:{s:8:"filename";s:61:"themes/tests/update_test_basetheme/update_test_basetheme.info";s:4:"name";s:21:"update_test_basetheme";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:17:{s:4:"name";s:22:"Update test base theme";s:11:"description";s:63:"Test theme which acts as a base theme for other test subthemes.";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"version";s:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";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:49:"themes/tests/update_test_basetheme/screenshot.png";s:3:"php";s:5:"5.2.4";s:11:"stylesheets";a:0:{}s:7:"scripts";a:0:{}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:"engine";s:11:"phptemplate";}}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:21:"update_test_basetheme";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/appearance/settings',
+  'tab_root' => 'admin/appearance',
+  'title' => 'Update test base theme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/settings/update_test_subtheme',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_system_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:59:"themes/tests/update_test_subtheme/update_test_subtheme.info";s:4:"name";s:20:"update_test_subtheme";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:18:{s:4:"name";s:20:"Update test subtheme";s:11:"description";s:62:"Test theme which uses update_test_basetheme as the base theme.";s:4:"core";s:3:"7.x";s:10:"base theme";s:21:"update_test_basetheme";s:6:"hidden";b:1;s:7:"version";s:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";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:48:"themes/tests/update_test_subtheme/screenshot.png";s:3:"php";s:5:"5.2.4";s:11:"stylesheets";a:0:{}s:7:"scripts";a:0:{}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:"engine";s:11:"phptemplate";s:10:"base_theme";s:21:"update_test_basetheme";}}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:20:"update_test_subtheme";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/appearance/settings',
+  'tab_root' => 'admin/appearance',
+  'title' => 'Update test subtheme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/update',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'update_manager_access',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:26:"update_manager_update_form";i:1;s:5:"theme";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/appearance',
+  'tab_root' => 'admin/appearance',
+  'title' => 'Update',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '10',
+  'include_file' => 'modules/update/update.manager.inc',
+))
+->values(array(
+  'path' => 'admin/compact',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_compact_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/compact',
+  'title' => 'Compact mode',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_config_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config',
+  'title' => 'Configuration',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Administer settings.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/content',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_menu_block_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/content',
+  'title' => 'Content authoring',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Settings related to formatting and authoring content.',
+  'position' => 'left',
+  'weight' => '-15',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/content/formats',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:21:"filter_admin_overview";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/content/formats',
+  'title' => 'Text formats',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/filter/filter.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/content/formats/%',
+  'load_functions' => 'a:1:{i:4;s:18:"filter_format_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
+  'page_callback' => 'filter_admin_format_page',
+  'page_arguments' => 'a:1:{i:0;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '30',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/content/formats/%',
+  'title' => '',
+  'title_callback' => 'filter_admin_format_title',
+  'title_arguments' => 'a:1:{i:0;i:4;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/filter/filter.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/content/formats/%/disable',
+  'load_functions' => 'a:1:{i:4;s:18:"filter_format_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_filter_disable_format_access',
+  'access_arguments' => 'a:1:{i:0;i:4;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:20:"filter_admin_disable";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/content/formats/%/disable',
+  'title' => 'Disable text format',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/filter/filter.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/content/formats/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
+  'page_callback' => 'filter_admin_format_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/content/formats',
+  'tab_root' => 'admin/config/content/formats',
+  'title' => 'Add text format',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '1',
+  'include_file' => 'modules/filter/filter.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/content/formats/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:21:"filter_admin_overview";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/content/formats',
+  'tab_root' => 'admin/config/content/formats',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/filter/filter.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/development',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_menu_block_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/development',
+  'title' => 'Development',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Development tools.',
+  'position' => 'right',
+  'weight' => '-10',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/development/logging',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:23:"system_logging_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/development/logging',
+  'title' => 'Logging and errors',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => "Settings for logging and alerts modules. Various modules can route Drupal's system events to different destinations, such as syslog, database, email, etc.",
+  'position' => '',
+  'weight' => '-15',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/development/maintenance',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:28:"system_site_maintenance_mode";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/development/maintenance',
+  'title' => 'Maintenance mode',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Take the site offline for maintenance or bring it back online.',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/development/performance',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:27:"system_performance_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/development/performance',
+  'title' => 'Performance',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.',
+  'position' => '',
+  'weight' => '-20',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/media',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_menu_block_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/media',
+  'title' => 'Media',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Media tools.',
+  'position' => 'left',
+  'weight' => '-10',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/media/file-system',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:27:"system_file_system_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/media/file-system',
+  'title' => 'File system',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Tell Drupal where to store uploaded files and how they are accessed.',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/media/image-styles',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}',
+  'page_callback' => 'image_style_list',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/media/image-styles',
+  'title' => 'Image styles',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Configure styles that can be used for resizing or adjusting images on display.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/image/image.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/media/image-styles/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:20:"image_style_add_form";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/media/image-styles',
+  'tab_root' => 'admin/config/media/image-styles',
+  'title' => 'Add style',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => 'Add a new image style.',
+  'position' => '',
+  'weight' => '2',
+  'include_file' => 'modules/image/image.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/media/image-styles/delete/%',
+  'load_functions' => 'a:1:{i:5;a:1:{s:16:"image_style_load";a:2:{i:0;N;i:1;s:1:"1";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:23:"image_style_delete_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '62',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/media/image-styles/delete/%',
+  'title' => 'Delete style',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Delete an image style.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/image/image.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/media/image-styles/edit/%',
+  'load_functions' => 'a:1:{i:5;s:16:"image_style_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:16:"image_style_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '62',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/media/image-styles/edit/%',
+  'title' => 'Edit style',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Configure an image style.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/image/image.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/media/image-styles/edit/%/add/%',
+  'load_functions' => '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;}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:3:{i:0;s:17:"image_effect_form";i:1;i:5;i:2;i:7;}',
+  'delivery_callback' => '',
+  'fit' => '250',
+  'number_parts' => '8',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/media/image-styles/edit/%/add/%',
+  'title' => 'Add image effect',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Add a new effect to a style.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/image/image.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/media/image-styles/edit/%/effects/%',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:3:{i:0;s:17:"image_effect_form";i:1;i:5;i:2;i:7;}',
+  'delivery_callback' => '',
+  'fit' => '250',
+  'number_parts' => '8',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/media/image-styles/edit/%/effects/%',
+  'title' => 'Edit image effect',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Edit an existing effect within a style.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/image/image.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/media/image-styles/edit/%/effects/%/delete',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:3:{i:0;s:24:"image_effect_delete_form";i:1;i:5;i:2;i:7;}',
+  'delivery_callback' => '',
+  'fit' => '501',
+  'number_parts' => '9',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/media/image-styles/edit/%/effects/%/delete',
+  'title' => 'Delete image effect',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Delete an existing effect from a style.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/image/image.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/media/image-styles/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}',
+  'page_callback' => 'image_style_list',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/media/image-styles',
+  'tab_root' => 'admin/config/media/image-styles',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => 'List the current image styles on the site.',
+  'position' => '',
+  'weight' => '1',
+  'include_file' => 'modules/image/image.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/media/image-styles/revert/%',
+  'load_functions' => 'a:1:{i:5;a:1:{s:16:"image_style_load";a:2:{i:0;N;i:1;s:1:"2";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:23:"image_style_revert_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '62',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/media/image-styles/revert/%',
+  'title' => 'Revert style',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Revert an image style.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/image/image.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/media/image-toolkit',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:29:"system_image_toolkit_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/media/image-toolkit',
+  'title' => 'Image toolkit',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Choose which image toolkit to use if you have installed optional toolkits.',
+  'position' => '',
+  'weight' => '20',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/people',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_menu_block_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/people',
+  'title' => 'People',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Configure user accounts.',
+  'position' => 'left',
+  'weight' => '-20',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/people/accounts',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:19:"user_admin_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/people/accounts',
+  'title' => 'Account settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Configure default behavior of users, including registration requirements, e-mails, fields, and user pictures.',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/user/user.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/people/accounts/display',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/people/accounts',
+  'tab_root' => 'admin/config/people/accounts',
+  'title' => 'Manage display',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '2',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/people/accounts/display/default',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_field_ui_view_mode_menu_access',
+  'access_arguments' => '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";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '63',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/config/people/accounts/display',
+  'tab_root' => 'admin/config/people/accounts',
+  'title' => 'Default',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/people/accounts/display/full',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_field_ui_view_mode_menu_access',
+  'access_arguments' => '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";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '63',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/config/people/accounts/display',
+  'tab_root' => 'admin/config/people/accounts',
+  'title' => 'User account',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/people/accounts/fields',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:3:{i:0;s:28:"field_ui_field_overview_form";i:1;s:4:"user";i:2;s:4:"user";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/people/accounts',
+  'tab_root' => 'admin/config/people/accounts',
+  'title' => 'Manage fields',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '1',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/people/accounts/fields/%',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '62',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/people/accounts/fields/%',
+  'title' => '',
+  'title_callback' => 'field_ui_menu_title',
+  'title_arguments' => 'a:1:{i:0;i:5;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/people/accounts/fields/%/delete',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:26:"field_ui_field_delete_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '125',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/config/people/accounts/fields/%',
+  'tab_root' => 'admin/config/people/accounts/fields/%',
+  'title' => 'Delete',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '10',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/people/accounts/fields/%/edit',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '125',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/config/people/accounts/fields/%',
+  'tab_root' => 'admin/config/people/accounts/fields/%',
+  'title' => 'Edit',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/people/accounts/fields/%/field-settings',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:28:"field_ui_field_settings_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '125',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/config/people/accounts/fields/%',
+  'tab_root' => 'admin/config/people/accounts/fields/%',
+  'title' => 'Field settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/people/accounts/fields/%/widget-type',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:25:"field_ui_widget_type_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '125',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/config/people/accounts/fields/%',
+  'tab_root' => 'admin/config/people/accounts/fields/%',
+  'title' => 'Widget type',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/people/accounts/settings',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:19:"user_admin_settings";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/people/accounts',
+  'tab_root' => 'admin/config/people/accounts',
+  'title' => 'Settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/user/user.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/people/ip-blocking',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"block IP addresses";}',
+  'page_callback' => 'system_ip_blocking',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/people/ip-blocking',
+  'title' => 'IP address blocking',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Manage blocked IP addresses.',
+  'position' => '',
+  'weight' => '10',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/people/ip-blocking/delete/%',
+  'load_functions' => 'a:1:{i:5;s:15:"blocked_ip_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"block IP addresses";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:25:"system_ip_blocking_delete";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '62',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/people/ip-blocking/delete/%',
+  'title' => 'Delete IP address',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/regional',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_menu_block_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/regional',
+  'title' => 'Regional and language',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Regional settings, localization and translation.',
+  'position' => 'left',
+  'weight' => '-5',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/regional/date-time',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:25:"system_date_time_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/regional/date-time',
+  'title' => 'Date and time',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Configure display formats for date and time.',
+  'position' => '',
+  'weight' => '-15',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/regional/date-time/formats',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'system_date_time_formats',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/regional/date-time',
+  'tab_root' => 'admin/config/regional/date-time',
+  'title' => 'Formats',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => 'Configure display format strings for date and time.',
+  'position' => '',
+  'weight' => '-9',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/regional/date-time/formats/%/delete',
+  'load_functions' => 'a:1:{i:5;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:30:"system_date_delete_format_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '125',
+  'number_parts' => '7',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/regional/date-time/formats/%/delete',
+  'title' => 'Delete date format',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Allow users to delete a configured date format.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/regional/date-time/formats/%/edit',
+  'load_functions' => 'a:1:{i:5;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:34:"system_configure_date_formats_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '125',
+  'number_parts' => '7',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/regional/date-time/formats/%/edit',
+  'title' => 'Edit date format',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Allow users to edit a configured date format.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/regional/date-time/formats/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:34:"system_configure_date_formats_form";}',
+  'delivery_callback' => '',
+  'fit' => '63',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/config/regional/date-time/formats',
+  'tab_root' => 'admin/config/regional/date-time',
+  'title' => 'Add format',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => 'Allow users to add additional date formats.',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/regional/date-time/formats/lookup',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'system_date_time_lookup',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '63',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/regional/date-time/formats/lookup',
+  'title' => 'Date and time lookup',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/regional/date-time/types',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:25:"system_date_time_settings";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/regional/date-time',
+  'tab_root' => 'admin/config/regional/date-time',
+  'title' => 'Types',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => 'Configure display formats for date and time.',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/regional/date-time/types/%/delete',
+  'load_functions' => 'a:1:{i:5;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:35:"system_delete_date_format_type_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '125',
+  'number_parts' => '7',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/regional/date-time/types/%/delete',
+  'title' => 'Delete date type',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Allow users to delete a configured date type.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/regional/date-time/types/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:32:"system_add_date_format_type_form";}',
+  'delivery_callback' => '',
+  'fit' => '63',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/config/regional/date-time/types',
+  'tab_root' => 'admin/config/regional/date-time',
+  'title' => 'Add date type',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => 'Add new date type.',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/regional/settings',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:24:"system_regional_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/regional/settings',
+  'title' => 'Regional settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => "Settings for the site's default time zone and country.",
+  'position' => '',
+  'weight' => '-20',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/search',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_menu_block_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/search',
+  'title' => 'Search and metadata',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Local site search, metadata and SEO.',
+  'position' => 'left',
+  'weight' => '-10',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/search/clean-urls',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:25:"system_clean_url_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/search/clean-urls',
+  'title' => 'Clean URLs',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Enable or disable clean URLs for your site.',
+  'position' => '',
+  'weight' => '5',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/search/clean-urls/check',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '1',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_json_output',
+  'page_arguments' => 'a:1:{i:0;a:1:{s:6:"status";b:1;}}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/search/clean-urls/check',
+  'title' => 'Clean URL check',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/search/path',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
+  'page_callback' => 'path_admin_overview',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/search/path',
+  'title' => 'URL aliases',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => "Change your site's URL paths by aliasing them.",
+  'position' => '',
+  'weight' => '-5',
+  'include_file' => 'modules/path/path.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/search/path/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
+  'page_callback' => 'path_admin_edit',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/search/path',
+  'tab_root' => 'admin/config/search/path',
+  'title' => 'Add alias',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/path/path.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/search/path/delete/%',
+  'load_functions' => 'a:1:{i:5;s:9:"path_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:25:"path_admin_delete_confirm";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '62',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/search/path/delete/%',
+  'title' => 'Delete alias',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/path/path.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/search/path/edit/%',
+  'load_functions' => 'a:1:{i:5;s:9:"path_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
+  'page_callback' => 'path_admin_edit',
+  'page_arguments' => 'a:1:{i:0;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '62',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/search/path/edit/%',
+  'title' => 'Edit alias',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/path/path.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/search/path/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
+  'page_callback' => 'path_admin_overview',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/search/path',
+  'tab_root' => 'admin/config/search/path',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/path/path.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/search/settings',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer search";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:21:"search_admin_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/search/settings',
+  'title' => 'Search settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Configure relevance settings for search and other indexing options.',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/search/search.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/search/settings/reindex',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer search";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:22:"search_reindex_confirm";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/search/settings/reindex',
+  'title' => 'Clear index',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/search/search.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/services',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_menu_block_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/services',
+  'title' => 'Web services',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Tools related to web services.',
+  'position' => 'right',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/services/rss-publishing',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:25:"system_rss_feeds_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/services/rss-publishing',
+  'title' => 'RSS publishing',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Configure the site description, the number of items per feed and whether feeds should be titles/teasers/full-text.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/system',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_menu_block_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/system',
+  'title' => 'System',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'General system related configuration.',
+  'position' => 'right',
+  'weight' => '-20',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/system/actions',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
+  'page_callback' => 'system_actions_manage',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/system/actions',
+  'title' => 'Actions',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Manage the actions defined for your site.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/system/actions/configure',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:24:"system_actions_configure";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/system/actions/configure',
+  'title' => 'Configure an advanced action',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/system/actions/delete/%',
+  'load_functions' => 'a:1:{i:5;s:12:"actions_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:26:"system_actions_delete_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '62',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/system/actions/delete/%',
+  'title' => 'Delete action',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Delete an action.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/system/actions/manage',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
+  'page_callback' => 'system_actions_manage',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/system/actions',
+  'tab_root' => 'admin/config/system/actions',
+  'title' => 'Manage actions',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => 'Manage the actions defined for your site.',
+  'position' => '',
+  'weight' => '-2',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/system/actions/orphan',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
+  'page_callback' => 'system_actions_remove_orphans',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/system/actions/orphan',
+  'title' => 'Remove orphans',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/system/cron',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:20:"system_cron_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/system/cron',
+  'title' => 'Cron',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Manage automatic site maintenance tasks.',
+  'position' => '',
+  'weight' => '20',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/system/site-information',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:32:"system_site_information_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/system/site-information',
+  'title' => 'Site information',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Change site name, e-mail address, slogan, default front page, and number of posts per page, error pages.',
+  'position' => '',
+  'weight' => '-20',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_menu_block_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/user-interface',
+  'title' => 'User interface',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Tools that enhance the user interface.',
+  'position' => 'right',
+  'weight' => '-15',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:20:"administer shortcuts";}',
+  'page_callback' => 'shortcut_set_admin',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/user-interface/shortcut',
+  'title' => 'Shortcuts',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Add and modify shortcut sets.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut/%',
+  'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'shortcut_set_edit_access',
+  'access_arguments' => 'a:1:{i:0;i:4;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:22:"shortcut_set_customize";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '30',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/user-interface/shortcut/%',
+  'title' => 'Edit shortcuts',
+  'title_callback' => 'shortcut_set_title',
+  'title_arguments' => 'a:1:{i:0;i:4;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut/%/add-link',
+  'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'shortcut_set_edit_access',
+  'access_arguments' => 'a:1:{i:0;i:4;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:17:"shortcut_link_add";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/config/user-interface/shortcut/%',
+  'tab_root' => 'admin/config/user-interface/shortcut/%',
+  'title' => 'Add shortcut',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut/%/add-link-inline',
+  'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'shortcut_set_edit_access',
+  'access_arguments' => 'a:1:{i:0;i:4;}',
+  'page_callback' => 'shortcut_link_add_inline',
+  'page_arguments' => 'a:1:{i:0;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/user-interface/shortcut/%/add-link-inline',
+  'title' => 'Add shortcut',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut/%/delete',
+  'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'shortcut_set_delete_access',
+  'access_arguments' => 'a:1:{i:0;i:4;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"shortcut_set_delete_form";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/user-interface/shortcut/%/delete',
+  'title' => 'Delete shortcut set',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut/%/edit',
+  'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'shortcut_set_edit_access',
+  'access_arguments' => 'a:1:{i:0;i:4;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:22:"shortcut_set_edit_form";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/config/user-interface/shortcut/%',
+  'tab_root' => 'admin/config/user-interface/shortcut/%',
+  'title' => 'Edit set name',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '10',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut/%/links',
+  'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'shortcut_set_edit_access',
+  'access_arguments' => 'a:1:{i:0;i:4;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:22:"shortcut_set_customize";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/config/user-interface/shortcut/%',
+  'tab_root' => 'admin/config/user-interface/shortcut/%',
+  'title' => 'List links',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut/add-set',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:20:"administer shortcuts";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:21:"shortcut_set_add_form";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/user-interface/shortcut',
+  'tab_root' => 'admin/config/user-interface/shortcut',
+  'title' => 'Add shortcut set',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut/link/%',
+  'load_functions' => 'a:1:{i:5;s:14:"menu_link_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'shortcut_link_access',
+  'access_arguments' => 'a:1:{i:0;i:5;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:18:"shortcut_link_edit";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '62',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/user-interface/shortcut/link/%',
+  'title' => 'Edit shortcut',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut/link/%/delete',
+  'load_functions' => 'a:1:{i:5;s:14:"menu_link_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'shortcut_link_access',
+  'access_arguments' => 'a:1:{i:0;i:5;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:20:"shortcut_link_delete";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '125',
+  'number_parts' => '7',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/user-interface/shortcut/link/%/delete',
+  'title' => 'Delete shortcut',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/workflow',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_menu_block_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/workflow',
+  'title' => 'Workflow',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Content workflow, editorial workflow tools.',
+  'position' => 'right',
+  'weight' => '5',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/content',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:23:"access content overview";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content',
+  'title' => 'Content',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Administer content and comments.',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/node/node.admin.inc',
+))
+->values(array(
+  'path' => 'admin/content/comment',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
+  'page_callback' => 'comment_admin',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/content',
+  'tab_root' => 'admin/content',
+  'title' => 'Comments',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '134',
+  'description' => 'List and edit site comments and the comment approval queue.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/comment/comment.admin.inc',
+))
+->values(array(
+  'path' => 'admin/content/comment/approval',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
+  'page_callback' => 'comment_admin',
+  'page_arguments' => 'a:1:{i:0;s:8:"approval";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/content/comment',
+  'tab_root' => 'admin/content',
+  'title' => 'Unapproved comments',
+  'title_callback' => 'comment_count_unpublished',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/comment/comment.admin.inc',
+))
+->values(array(
+  'path' => 'admin/content/comment/new',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
+  'page_callback' => 'comment_admin',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/content/comment',
+  'tab_root' => 'admin/content',
+  'title' => 'Published comments',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/comment/comment.admin.inc',
+))
+->values(array(
+  'path' => 'admin/content/node',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:23:"access content overview";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/content',
+  'tab_root' => 'admin/content',
+  'title' => 'Content',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/node/node.admin.inc',
+))
+->values(array(
+  'path' => 'admin/dashboard',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"access dashboard";}',
+  'page_callback' => 'dashboard_admin',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/dashboard',
+  'title' => 'Dashboard',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'View and customize your dashboard.',
+  'position' => '',
+  'weight' => '-15',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'admin/dashboard/block-content/%/%',
+  'load_functions' => 'a:2:{i:3;N;i:4;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'dashboard_show_block_content',
+  'page_arguments' => 'a:2:{i:0;i:3;i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '28',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/dashboard/block-content/%/%',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'admin/dashboard/configure',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'dashboard_admin_blocks',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/dashboard/configure',
+  'title' => 'Configure available dashboard blocks',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => 'Configure which blocks can be shown on the dashboard.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'admin/dashboard/customize',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"access dashboard";}',
+  'page_callback' => 'dashboard_admin',
+  'page_arguments' => 'a:1:{i:0;b:1;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/dashboard/customize',
+  'title' => 'Customize dashboard',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => 'Customize your dashboard.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'admin/dashboard/drawer',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'dashboard_show_disabled',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/dashboard/drawer',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'admin/dashboard/update',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'dashboard_update',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/dashboard/update',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'admin/help',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_main',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help',
+  'title' => 'Help',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Reference for usage, configuration, and modules.',
+  'position' => '',
+  'weight' => '9',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/block',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/block',
+  'title' => 'block',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/color',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/color',
+  'title' => 'color',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/comment',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/comment',
+  'title' => 'comment',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/contextual',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/contextual',
+  'title' => 'contextual',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/dashboard',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/dashboard',
+  'title' => 'dashboard',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/dblog',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/dblog',
+  'title' => 'dblog',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/field',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/field',
+  'title' => 'field',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/field_sql_storage',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/field_sql_storage',
+  'title' => 'field_sql_storage',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/field_ui',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/field_ui',
+  'title' => 'field_ui',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/file',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/file',
+  'title' => 'file',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/filter',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/filter',
+  'title' => 'filter',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/help',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/help',
+  'title' => 'help',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/image',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/image',
+  'title' => 'image',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/list',
+  'title' => 'list',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/menu',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/menu',
+  'title' => 'menu',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/node',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/node',
+  'title' => 'node',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/number',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/number',
+  'title' => 'number',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/options',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/options',
+  'title' => 'options',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/overlay',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/overlay',
+  'title' => 'overlay',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/path',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/path',
+  'title' => 'path',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/rdf',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/rdf',
+  'title' => 'rdf',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/search',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/search',
+  'title' => 'search',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/shortcut',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/shortcut',
+  'title' => 'shortcut',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/system',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/system',
+  'title' => 'system',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/taxonomy',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/taxonomy',
+  'title' => 'taxonomy',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/text',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/text',
+  'title' => 'text',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/toolbar',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/toolbar',
+  'title' => 'toolbar',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/update',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/update',
+  'title' => 'update',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/user',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/user',
+  'title' => 'user',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/index',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_index',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '1',
+  'tab_parent' => 'admin',
+  'tab_root' => 'admin',
+  'title' => 'Index',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '-18',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/modules',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer modules";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/modules',
+  'title' => 'Modules',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Extend site functionality.',
+  'position' => '',
+  'weight' => '-2',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/modules/install',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'update_manager_access',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:27:"update_manager_install_form";i:1;s:6:"module";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/modules',
+  'tab_root' => 'admin/modules',
+  'title' => 'Install new module',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '25',
+  'include_file' => 'modules/update/update.manager.inc',
+))
+->values(array(
+  'path' => 'admin/modules/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer modules";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/modules',
+  'tab_root' => 'admin/modules',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/modules/list/confirm',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer modules";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/modules/list/confirm',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/modules/uninstall',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer modules";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:24:"system_modules_uninstall";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/modules',
+  'tab_root' => 'admin/modules',
+  'title' => 'Uninstall',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '20',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/modules/uninstall/confirm',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer modules";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:24:"system_modules_uninstall";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/modules/uninstall/confirm',
+  'title' => 'Uninstall',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/modules/update',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'update_manager_access',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:26:"update_manager_update_form";i:1;s:6:"module";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/modules',
+  'tab_root' => 'admin/modules',
+  'title' => 'Update',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '10',
+  'include_file' => 'modules/update/update.manager.inc',
+))
+->values(array(
+  'path' => 'admin/people',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+  'page_callback' => 'user_admin',
+  'page_arguments' => 'a:1:{i:0;s:4:"list";}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/people',
+  'title' => 'People',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Manage user accounts, roles, and permissions.',
+  'position' => 'left',
+  'weight' => '-4',
+  'include_file' => 'modules/user/user.admin.inc',
+))
+->values(array(
+  'path' => 'admin/people/create',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+  'page_callback' => 'user_admin',
+  'page_arguments' => 'a:1:{i:0;s:6:"create";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/people',
+  'tab_root' => 'admin/people',
+  'title' => 'Add user',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/user/user.admin.inc',
+))
+->values(array(
+  'path' => 'admin/people/people',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+  'page_callback' => 'user_admin',
+  'page_arguments' => 'a:1:{i:0;s:4:"list";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/people',
+  'tab_root' => 'admin/people',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => 'Find and manage people interacting with your site.',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/user/user.admin.inc',
+))
+->values(array(
+  'path' => 'admin/people/permissions',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:22:"user_admin_permissions";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/people',
+  'tab_root' => 'admin/people',
+  'title' => 'Permissions',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => 'Determine access to features by selecting permissions for roles.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/user/user.admin.inc',
+))
+->values(array(
+  'path' => 'admin/people/permissions/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:22:"user_admin_permissions";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/people/permissions',
+  'tab_root' => 'admin/people',
+  'title' => 'Permissions',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => 'Determine access to features by selecting permissions for roles.',
+  'position' => '',
+  'weight' => '-8',
+  'include_file' => 'modules/user/user.admin.inc',
+))
+->values(array(
+  'path' => 'admin/people/permissions/roles',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:16:"user_admin_roles";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/people/permissions',
+  'tab_root' => 'admin/people',
+  'title' => 'Roles',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => 'List, edit, or add user roles.',
+  'position' => '',
+  'weight' => '-5',
+  'include_file' => 'modules/user/user.admin.inc',
+))
+->values(array(
+  'path' => 'admin/people/permissions/roles/delete/%',
+  'load_functions' => 'a:1:{i:5;s:14:"user_role_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_role_edit_access',
+  'access_arguments' => 'a:1:{i:0;i:5;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:30:"user_admin_role_delete_confirm";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '62',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/people/permissions/roles/delete/%',
+  'title' => 'Delete role',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/user/user.admin.inc',
+))
+->values(array(
+  'path' => 'admin/people/permissions/roles/edit/%',
+  'load_functions' => 'a:1:{i:5;s:14:"user_role_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_role_edit_access',
+  'access_arguments' => 'a:1:{i:0;i:5;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:15:"user_admin_role";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '62',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/people/permissions/roles/edit/%',
+  'title' => 'Edit role',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/user/user.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
+  'page_callback' => 'system_admin_menu_block_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports',
+  'title' => 'Reports',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'View reports, updates, and errors.',
+  'position' => 'left',
+  'weight' => '5',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/access-denied',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
+  'page_callback' => 'dblog_top',
+  'page_arguments' => 'a:1:{i:0;s:13:"access denied";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/access-denied',
+  'title' => "Top 'access denied' errors",
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => "View 'access denied' errors (403s).",
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/dblog/dblog.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/dblog',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
+  'page_callback' => 'dblog_overview',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/dblog',
+  'title' => 'Recent log messages',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'View events that have recently been logged.',
+  'position' => '',
+  'weight' => '-1',
+  'include_file' => 'modules/dblog/dblog.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/event/%',
+  'load_functions' => 'a:1:{i:3;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
+  'page_callback' => 'dblog_event',
+  'page_arguments' => 'a:1:{i:0;i:3;}',
+  'delivery_callback' => '',
+  'fit' => '14',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/event/%',
+  'title' => 'Details',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/dblog/dblog.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/fields',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'field_ui_fields_list',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/fields',
+  'title' => 'Field list',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Overview of fields on all entity types.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/page-not-found',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
+  'page_callback' => 'dblog_top',
+  'page_arguments' => 'a:1:{i:0;s:14:"page not found";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/page-not-found',
+  'title' => "Top 'page not found' errors",
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => "View 'page not found' errors (404s).",
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/dblog/dblog.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/search',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
+  'page_callback' => 'dblog_top',
+  'page_arguments' => 'a:1:{i:0;s:6:"search";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/search',
+  'title' => 'Top search phrases',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'View most popular search phrases.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/dblog/dblog.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/status',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'system_status',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/status',
+  'title' => 'Status report',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => "Get a status report about your site's operation and any detected problems.",
+  'position' => '',
+  'weight' => '-60',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/status/php',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'system_php',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/status/php',
+  'title' => 'PHP',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/status/rebuild',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:30:"node_configure_rebuild_confirm";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/status/rebuild',
+  'title' => 'Rebuild permissions',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/node/node.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/status/run-cron',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'system_run_cron',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/status/run-cron',
+  'title' => 'Run cron',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/updates',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'update_status',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/updates',
+  'title' => 'Available updates',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Get a status report about available updates for your installed modules and themes.',
+  'position' => '',
+  'weight' => '-50',
+  'include_file' => 'modules/update/update.report.inc',
+))
+->values(array(
+  'path' => 'admin/reports/updates/check',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'update_manual_status',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/updates/check',
+  'title' => 'Manual update check',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/update/update.fetch.inc',
+))
+->values(array(
+  'path' => 'admin/reports/updates/install',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'update_manager_access',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:27:"update_manager_install_form";i:1;s:6:"report";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/reports/updates',
+  'tab_root' => 'admin/reports/updates',
+  'title' => 'Install new module or theme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '25',
+  'include_file' => 'modules/update/update.manager.inc',
+))
+->values(array(
+  'path' => 'admin/reports/updates/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'update_status',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/reports/updates',
+  'tab_root' => 'admin/reports/updates',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/update/update.report.inc',
+))
+->values(array(
+  'path' => 'admin/reports/updates/settings',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:15:"update_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/reports/updates',
+  'tab_root' => 'admin/reports/updates',
+  'title' => 'Settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '50',
+  'include_file' => 'modules/update/update.settings.inc',
+))
+->values(array(
+  'path' => 'admin/reports/updates/update',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'update_manager_access',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:26:"update_manager_update_form";i:1;s:6:"report";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/reports/updates',
+  'tab_root' => 'admin/reports/updates',
+  'title' => 'Update',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '10',
+  'include_file' => 'modules/update/update.manager.inc',
+))
+->values(array(
+  'path' => 'admin/structure',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_menu_block_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure',
+  'title' => 'Structure',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Administer blocks, content types, menus, etc.',
+  'position' => 'right',
+  'weight' => '-8',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'block_admin_display',
+  'page_arguments' => 'a:1:{i:0;s:6:"bartik";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Blocks',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => "Configure what block content appears in your site's sidebars and other regions.",
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/block',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Add block',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/demo/bartik',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_block_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:25:"themes/bartik/bartik.info";s:4:"name";s:6:"bartik";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"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:6:"Bartik";s:11:"description";s:48:"A flexible, recolorable theme with many regions.";s:7:"package";s:4:"Core";s:7:"version";s:3:"7.8";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:"1314817616";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: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: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";}}',
+  'page_callback' => 'block_admin_demo',
+  'page_arguments' => 'a:1:{i:0;s:6:"bartik";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/block/demo/bartik',
+  'title' => 'Bartik',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '_block_custom_theme',
+  'theme_arguments' => 'a:1:{i:0;s:6:"bartik";}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/demo/garland',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_block_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:27:"themes/garland/garland.info";s:4:"name";s:7:"garland";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:18:{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:3:"7.8";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:"1314817616";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: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: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";}}',
+  'page_callback' => 'block_admin_demo',
+  'page_arguments' => 'a:1:{i:0;s:7:"garland";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/block/demo/garland',
+  'title' => 'Garland',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '_block_custom_theme',
+  'theme_arguments' => 'a:1:{i:0;s:7:"garland";}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/demo/seven',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_block_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:23:"themes/seven/seven.info";s:4:"name";s:5:"seven";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:18:{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:3:"7.8";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:"1314817616";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: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: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";}}',
+  'page_callback' => 'block_admin_demo',
+  'page_arguments' => 'a:1:{i:0;s:5:"seven";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/block/demo/seven',
+  'title' => 'Seven',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '_block_custom_theme',
+  'theme_arguments' => 'a:1:{i:0;s:5:"seven";}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/demo/stark',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_block_themes_access',
+  'access_arguments' => "a:1:{i:0;O:8:\"stdClass\":11:{s:8:\"filename\";s:23:\"themes/stark/stark.info\";s:4:\"name\";s:5:\"stark\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:17:{s:4:\"name\";s:5:\"Stark\";s:11:\"description\";s:208:\"This theme demonstrates Drupal's default HTML markup and CSS styles. To learn how to build your own theme and override Drupal's default code, see the <a href=\"http://drupal.org/theme-guide\">Theming Guide</a>.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:3:\"7.8\";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:\"1314817616\";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: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: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\";}}",
+  'page_callback' => 'block_admin_demo',
+  'page_arguments' => 'a:1:{i:0;s:5:"stark";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/block/demo/stark',
+  'title' => 'Stark',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '_block_custom_theme',
+  'theme_arguments' => 'a:1:{i:0;s:5:"stark";}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/demo/test_theme',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_block_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:39:"themes/tests/test_theme/test_theme.info";s:4:"name";s:10:"test_theme";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:17:{s:4:"name";s:10:"Test theme";s:11:"description";s:34:"Theme for testing the theme system";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:15:"system.base.css";s:39:"themes/tests/test_theme/system.base.css";}}s:7:"version";s:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";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:38:"themes/tests/test_theme/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}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:11:"stylesheets";a:1:{s:3:"all";a:1:{s:15:"system.base.css";s:39:"themes/tests/test_theme/system.base.css";}}s:6:"engine";s:11:"phptemplate";}}',
+  'page_callback' => 'block_admin_demo',
+  'page_arguments' => 'a:1:{i:0;s:10:"test_theme";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/block/demo/test_theme',
+  'title' => 'Test theme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '_block_custom_theme',
+  'theme_arguments' => 'a:1:{i:0;s:10:"test_theme";}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/demo/update_test_basetheme',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_block_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":10:{s:8:"filename";s:61:"themes/tests/update_test_basetheme/update_test_basetheme.info";s:4:"name";s:21:"update_test_basetheme";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:17:{s:4:"name";s:22:"Update test base theme";s:11:"description";s:63:"Test theme which acts as a base theme for other test subthemes.";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"version";s:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";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:49:"themes/tests/update_test_basetheme/screenshot.png";s:3:"php";s:5:"5.2.4";s:11:"stylesheets";a:0:{}s:7:"scripts";a:0:{}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:"engine";s:11:"phptemplate";}}',
+  'page_callback' => 'block_admin_demo',
+  'page_arguments' => 'a:1:{i:0;s:21:"update_test_basetheme";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/block/demo/update_test_basetheme',
+  'title' => 'Update test base theme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '_block_custom_theme',
+  'theme_arguments' => 'a:1:{i:0;s:21:"update_test_basetheme";}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/demo/update_test_subtheme',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_block_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:59:"themes/tests/update_test_subtheme/update_test_subtheme.info";s:4:"name";s:20:"update_test_subtheme";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:18:{s:4:"name";s:20:"Update test subtheme";s:11:"description";s:62:"Test theme which uses update_test_basetheme as the base theme.";s:4:"core";s:3:"7.x";s:10:"base theme";s:21:"update_test_basetheme";s:6:"hidden";b:1;s:7:"version";s:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";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:48:"themes/tests/update_test_subtheme/screenshot.png";s:3:"php";s:5:"5.2.4";s:11:"stylesheets";a:0:{}s:7:"scripts";a:0:{}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:"engine";s:11:"phptemplate";s:10:"base_theme";s:21:"update_test_basetheme";}}',
+  'page_callback' => 'block_admin_demo',
+  'page_arguments' => 'a:1:{i:0;s:20:"update_test_subtheme";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/block/demo/update_test_subtheme',
+  'title' => 'Update test subtheme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '_block_custom_theme',
+  'theme_arguments' => 'a:1:{i:0;s:20:"update_test_subtheme";}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/list/bartik',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_block_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:25:"themes/bartik/bartik.info";s:4:"name";s:6:"bartik";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"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:6:"Bartik";s:11:"description";s:48:"A flexible, recolorable theme with many regions.";s:7:"package";s:4:"Core";s:7:"version";s:3:"7.8";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:"1314817616";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: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: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";}}',
+  'page_callback' => 'block_admin_display',
+  'page_arguments' => 'a:1:{i:0;s:6:"bartik";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/block',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Bartik',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/list/garland',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_block_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:27:"themes/garland/garland.info";s:4:"name";s:7:"garland";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:18:{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:3:"7.8";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:"1314817616";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: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: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";}}',
+  'page_callback' => 'block_admin_display',
+  'page_arguments' => 'a:1:{i:0;s:7:"garland";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/block',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Garland',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/list/garland/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}',
+  'delivery_callback' => '',
+  'fit' => '63',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/block/list/garland',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Add block',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/list/seven',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_block_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:23:"themes/seven/seven.info";s:4:"name";s:5:"seven";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:18:{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:3:"7.8";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:"1314817616";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: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: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";}}',
+  'page_callback' => 'block_admin_display',
+  'page_arguments' => 'a:1:{i:0;s:5:"seven";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/block',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Seven',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/list/seven/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}',
+  'delivery_callback' => '',
+  'fit' => '63',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/block/list/seven',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Add block',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/list/stark',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_block_themes_access',
+  'access_arguments' => "a:1:{i:0;O:8:\"stdClass\":11:{s:8:\"filename\";s:23:\"themes/stark/stark.info\";s:4:\"name\";s:5:\"stark\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:17:{s:4:\"name\";s:5:\"Stark\";s:11:\"description\";s:208:\"This theme demonstrates Drupal's default HTML markup and CSS styles. To learn how to build your own theme and override Drupal's default code, see the <a href=\"http://drupal.org/theme-guide\">Theming Guide</a>.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:3:\"7.8\";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:\"1314817616\";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: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: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\";}}",
+  'page_callback' => 'block_admin_display',
+  'page_arguments' => 'a:1:{i:0;s:5:"stark";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/block',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Stark',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/list/stark/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}',
+  'delivery_callback' => '',
+  'fit' => '63',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/block/list/stark',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Add block',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/list/test_theme',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_block_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:39:"themes/tests/test_theme/test_theme.info";s:4:"name";s:10:"test_theme";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:17:{s:4:"name";s:10:"Test theme";s:11:"description";s:34:"Theme for testing the theme system";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:15:"system.base.css";s:39:"themes/tests/test_theme/system.base.css";}}s:7:"version";s:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";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:38:"themes/tests/test_theme/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}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:11:"stylesheets";a:1:{s:3:"all";a:1:{s:15:"system.base.css";s:39:"themes/tests/test_theme/system.base.css";}}s:6:"engine";s:11:"phptemplate";}}',
+  'page_callback' => 'block_admin_display',
+  'page_arguments' => 'a:1:{i:0;s:10:"test_theme";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/block',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Test theme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/list/test_theme/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}',
+  'delivery_callback' => '',
+  'fit' => '63',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/block/list/test_theme',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Add block',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/list/update_test_basetheme',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_block_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":10:{s:8:"filename";s:61:"themes/tests/update_test_basetheme/update_test_basetheme.info";s:4:"name";s:21:"update_test_basetheme";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:17:{s:4:"name";s:22:"Update test base theme";s:11:"description";s:63:"Test theme which acts as a base theme for other test subthemes.";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"version";s:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";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:49:"themes/tests/update_test_basetheme/screenshot.png";s:3:"php";s:5:"5.2.4";s:11:"stylesheets";a:0:{}s:7:"scripts";a:0:{}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:"engine";s:11:"phptemplate";}}',
+  'page_callback' => 'block_admin_display',
+  'page_arguments' => 'a:1:{i:0;s:21:"update_test_basetheme";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/block',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Update test base theme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/list/update_test_basetheme/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}',
+  'delivery_callback' => '',
+  'fit' => '63',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/block/list/update_test_basetheme',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Add block',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/list/update_test_subtheme',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_block_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:59:"themes/tests/update_test_subtheme/update_test_subtheme.info";s:4:"name";s:20:"update_test_subtheme";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:18:{s:4:"name";s:20:"Update test subtheme";s:11:"description";s:62:"Test theme which uses update_test_basetheme as the base theme.";s:4:"core";s:3:"7.x";s:10:"base theme";s:21:"update_test_basetheme";s:6:"hidden";b:1;s:7:"version";s:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";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:48:"themes/tests/update_test_subtheme/screenshot.png";s:3:"php";s:5:"5.2.4";s:11:"stylesheets";a:0:{}s:7:"scripts";a:0:{}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:"engine";s:11:"phptemplate";s:10:"base_theme";s:21:"update_test_basetheme";}}',
+  'page_callback' => 'block_admin_display',
+  'page_arguments' => 'a:1:{i:0;s:20:"update_test_subtheme";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/block',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Update test subtheme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/list/update_test_subtheme/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}',
+  'delivery_callback' => '',
+  'fit' => '63',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/block/list/update_test_subtheme',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Add block',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/manage/%/%',
+  'load_functions' => 'a:2:{i:4;N;i:5;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:3:{i:0;s:21:"block_admin_configure";i:1;i:4;i:2;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '60',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/block/manage/%/%',
+  'title' => 'Configure block',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/manage/%/%/configure',
+  'load_functions' => 'a:2:{i:4;N;i:5;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:3:{i:0;s:21:"block_admin_configure";i:1;i:4;i:2;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '121',
+  'number_parts' => '7',
+  'context' => '2',
+  'tab_parent' => 'admin/structure/block/manage/%/%',
+  'tab_root' => 'admin/structure/block/manage/%/%',
+  'title' => 'Configure block',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/manage/%/%/delete',
+  'load_functions' => 'a:2:{i:4;N;i:5;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:3:{i:0;s:25:"block_custom_block_delete";i:1;i:4;i:2;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '121',
+  'number_parts' => '7',
+  'context' => '0',
+  'tab_parent' => 'admin/structure/block/manage/%/%',
+  'tab_root' => 'admin/structure/block/manage/%/%',
+  'title' => 'Delete block',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/menu',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+  'page_callback' => 'menu_overview_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/menu',
+  'title' => 'Menus',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Add new menus to your site, edit existing menus, and rename and reorganize menu links.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/menu/menu.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/menu/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:14:"menu_edit_menu";i:1;s:3:"add";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/menu',
+  'tab_root' => 'admin/structure/menu',
+  'title' => 'Add menu',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/menu/menu.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/menu/item/%/delete',
+  'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+  'page_callback' => 'menu_item_delete_page',
+  'page_arguments' => 'a:1:{i:0;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/menu/item/%/delete',
+  'title' => 'Delete menu link',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/menu/menu.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/menu/item/%/edit',
+  'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:4:{i:0;s:14:"menu_edit_item";i:1;s:4:"edit";i:2;i:4;i:3;N;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/menu/item/%/edit',
+  'title' => 'Edit menu link',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/menu/menu.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/menu/item/%/reset',
+  'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:23:"menu_reset_item_confirm";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/menu/item/%/reset',
+  'title' => 'Reset menu link',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/menu/menu.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/menu/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+  'page_callback' => 'menu_overview_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/menu',
+  'tab_root' => 'admin/structure/menu',
+  'title' => 'List menus',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/menu/menu.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/menu/manage/%',
+  'load_functions' => 'a:1:{i:4;s:9:"menu_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:18:"menu_overview_form";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '30',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/menu/manage/%',
+  'title' => 'Customize menu',
+  'title_callback' => 'menu_overview_title',
+  'title_arguments' => 'a:1:{i:0;i:4;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/menu/menu.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/menu/manage/%/add',
+  'load_functions' => 'a:1:{i:4;s:9:"menu_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:4:{i:0;s:14:"menu_edit_item";i:1;s:3:"add";i:2;N;i:3;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/menu/manage/%',
+  'tab_root' => 'admin/structure/menu/manage/%',
+  'title' => 'Add link',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/menu/menu.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/menu/manage/%/delete',
+  'load_functions' => 'a:1:{i:4;s:9:"menu_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+  'page_callback' => 'menu_delete_menu_page',
+  'page_arguments' => 'a:1:{i:0;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/menu/manage/%/delete',
+  'title' => 'Delete menu',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/menu/menu.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/menu/manage/%/edit',
+  'load_functions' => 'a:1:{i:4;s:9:"menu_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:3:{i:0;s:14:"menu_edit_menu";i:1;s:4:"edit";i:2;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '3',
+  'tab_parent' => 'admin/structure/menu/manage/%',
+  'tab_root' => 'admin/structure/menu/manage/%',
+  'title' => 'Edit menu',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/menu/menu.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/menu/manage/%/list',
+  'load_functions' => 'a:1:{i:4;s:9:"menu_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:18:"menu_overview_form";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '3',
+  'tab_parent' => 'admin/structure/menu/manage/%',
+  'tab_root' => 'admin/structure/menu/manage/%',
+  'title' => 'List links',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/menu/menu.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/menu/parents',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;b:1;}',
+  'page_callback' => 'menu_parent_options_js',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/menu/parents',
+  'title' => 'Parent menu items',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'admin/structure/menu/settings',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:14:"menu_configure";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/menu',
+  'tab_root' => 'admin/structure/menu',
+  'title' => 'Settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '5',
+  'include_file' => 'modules/menu/menu.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:30:"taxonomy_overview_vocabularies";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/taxonomy',
+  'title' => 'Taxonomy',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Manage tagging, categorization, and classification of your content.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/taxonomy/taxonomy.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/%',
+  'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:23:"taxonomy_overview_terms";i:1;i:3;}',
+  'delivery_callback' => '',
+  'fit' => '14',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/taxonomy/%',
+  'title' => '',
+  'title_callback' => 'taxonomy_admin_vocabulary_title_callback',
+  'title_arguments' => 'a:1:{i:0;i:3;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/taxonomy/taxonomy.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/%/add',
+  'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:3:{i:0;s:18:"taxonomy_form_term";i:1;a:0:{}i:2;i:3;}',
+  'delivery_callback' => '',
+  'fit' => '29',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/taxonomy/%',
+  'tab_root' => 'admin/structure/taxonomy/%',
+  'title' => 'Add term',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/taxonomy/taxonomy.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/%/display',
+  'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '29',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/taxonomy/%',
+  'tab_root' => 'admin/structure/taxonomy/%',
+  'title' => 'Manage display',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '2',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/%/display/default',
+  'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_field_ui_view_mode_menu_access',
+  'access_arguments' => '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";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '59',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/taxonomy/%/display',
+  'tab_root' => 'admin/structure/taxonomy/%',
+  'title' => 'Default',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/%/display/full',
+  'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_field_ui_view_mode_menu_access',
+  'access_arguments' => '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";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '59',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/taxonomy/%/display',
+  'tab_root' => 'admin/structure/taxonomy/%',
+  'title' => 'Taxonomy term page',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/%/edit',
+  'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"taxonomy_form_vocabulary";i:1;i:3;}',
+  'delivery_callback' => '',
+  'fit' => '29',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/taxonomy/%',
+  'tab_root' => 'admin/structure/taxonomy/%',
+  'title' => 'Edit',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/taxonomy/taxonomy.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/%/fields',
+  'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:3:{i:0;s:28:"field_ui_field_overview_form";i:1;s:13:"taxonomy_term";i:2;i:3;}',
+  'delivery_callback' => '',
+  'fit' => '29',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/taxonomy/%',
+  'tab_root' => 'admin/structure/taxonomy/%',
+  'title' => 'Manage fields',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '1',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/%/fields/%',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '58',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/taxonomy/%/fields/%',
+  'title' => '',
+  'title_callback' => 'field_ui_menu_title',
+  'title_arguments' => 'a:1:{i:0;i:5;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/%/fields/%/delete',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:26:"field_ui_field_delete_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '117',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/taxonomy/%/fields/%',
+  'tab_root' => 'admin/structure/taxonomy/%/fields/%',
+  'title' => 'Delete',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '10',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/%/fields/%/edit',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '117',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/taxonomy/%/fields/%',
+  'tab_root' => 'admin/structure/taxonomy/%/fields/%',
+  'title' => 'Edit',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/%/fields/%/field-settings',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:28:"field_ui_field_settings_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '117',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/taxonomy/%/fields/%',
+  'tab_root' => 'admin/structure/taxonomy/%/fields/%',
+  'title' => 'Field settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/%/fields/%/widget-type',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:25:"field_ui_widget_type_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '117',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/taxonomy/%/fields/%',
+  'tab_root' => 'admin/structure/taxonomy/%/fields/%',
+  'title' => 'Widget type',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/%/list',
+  'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:23:"taxonomy_overview_terms";i:1;i:3;}',
+  'delivery_callback' => '',
+  'fit' => '29',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/taxonomy/%',
+  'tab_root' => 'admin/structure/taxonomy/%',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-20',
+  'include_file' => 'modules/taxonomy/taxonomy.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:24:"taxonomy_form_vocabulary";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/taxonomy',
+  'tab_root' => 'admin/structure/taxonomy',
+  'title' => 'Add vocabulary',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/taxonomy/taxonomy.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:30:"taxonomy_overview_vocabularies";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/taxonomy',
+  'tab_root' => 'admin/structure/taxonomy',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/taxonomy/taxonomy.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'node_overview_types',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/types',
+  'title' => 'Content types',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Manage content types, including default status, front page promotion, comment settings, etc.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/node/content_types.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:14:"node_type_form";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types',
+  'tab_root' => 'admin/structure/types',
+  'title' => 'Add content type',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/node/content_types.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'node_overview_types',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types',
+  'tab_root' => 'admin/structure/types',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/node/content_types.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%',
+  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '30',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'Edit content type',
+  'title_callback' => 'node_type_page_title',
+  'title_arguments' => 'a:1:{i:0;i:4;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/node/content_types.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/comment/display',
+  'load_functions' => 'a:1:{i:4;s:22:"comment_node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '123',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'Comment display',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '4',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/comment/display/default',
+  'load_functions' => 'a:1:{i:4;s:22:"comment_node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_field_ui_view_mode_menu_access',
+  'access_arguments' => '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";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '247',
+  'number_parts' => '8',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/comment/display',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'Default',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/comment/display/full',
+  'load_functions' => 'a:1:{i:4;s:22:"comment_node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_field_ui_view_mode_menu_access',
+  'access_arguments' => '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";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '247',
+  'number_parts' => '8',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/comment/display',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'Full comment',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/comment/fields',
+  'load_functions' => 'a:1:{i:4;s:22:"comment_node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:3:{i:0;s:28:"field_ui_field_overview_form";i:1;s:7:"comment";i:2;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '123',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'Comment fields',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '3',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/comment/fields/%',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:7;}',
+  'delivery_callback' => '',
+  'fit' => '246',
+  'number_parts' => '8',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/types/manage/%/comment/fields/%',
+  'title' => '',
+  'title_callback' => 'field_ui_menu_title',
+  'title_arguments' => 'a:1:{i:0;i:7;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/comment/fields/%/delete',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:26:"field_ui_field_delete_form";i:1;i:7;}',
+  'delivery_callback' => '',
+  'fit' => '493',
+  'number_parts' => '9',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/comment/fields/%',
+  'tab_root' => 'admin/structure/types/manage/%/comment/fields/%',
+  'title' => 'Delete',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '10',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/comment/fields/%/edit',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:7;}',
+  'delivery_callback' => '',
+  'fit' => '493',
+  'number_parts' => '9',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/comment/fields/%',
+  'tab_root' => 'admin/structure/types/manage/%/comment/fields/%',
+  'title' => 'Edit',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/comment/fields/%/field-settings',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:28:"field_ui_field_settings_form";i:1;i:7;}',
+  'delivery_callback' => '',
+  'fit' => '493',
+  'number_parts' => '9',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/comment/fields/%',
+  'tab_root' => 'admin/structure/types/manage/%/comment/fields/%',
+  'title' => 'Field settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/comment/fields/%/widget-type',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:25:"field_ui_widget_type_form";i:1;i:7;}',
+  'delivery_callback' => '',
+  'fit' => '493',
+  'number_parts' => '9',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/comment/fields/%',
+  'tab_root' => 'admin/structure/types/manage/%/comment/fields/%',
+  'title' => 'Widget type',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/delete',
+  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"node_type_delete_confirm";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/types/manage/%/delete',
+  'title' => 'Delete',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/node/content_types.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/display',
+  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'Manage display',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '2',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/display/default',
+  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_field_ui_view_mode_menu_access',
+  'access_arguments' => '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";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '123',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/display',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'Default',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/display/full',
+  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_field_ui_view_mode_menu_access',
+  'access_arguments' => '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";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '123',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/display',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'Full content',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/display/rss',
+  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_field_ui_view_mode_menu_access',
+  'access_arguments' => '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";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '123',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/display',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'RSS',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '2',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/display/search_index',
+  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_field_ui_view_mode_menu_access',
+  'access_arguments' => '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";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '123',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/display',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'Search index',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '3',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/display/search_result',
+  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_field_ui_view_mode_menu_access',
+  'access_arguments' => '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";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '123',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/display',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'Search result',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '4',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/display/teaser',
+  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_field_ui_view_mode_menu_access',
+  'access_arguments' => '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";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '123',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/display',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'Teaser',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '1',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/edit',
+  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'Edit',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/node/content_types.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/fields',
+  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:3:{i:0;s:28:"field_ui_field_overview_form";i:1;s:4:"node";i:2;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'Manage fields',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '1',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/fields/%',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:6;}',
+  'delivery_callback' => '',
+  'fit' => '122',
+  'number_parts' => '7',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/types/manage/%/fields/%',
+  'title' => '',
+  'title_callback' => 'field_ui_menu_title',
+  'title_arguments' => 'a:1:{i:0;i:6;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/fields/%/delete',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:26:"field_ui_field_delete_form";i:1;i:6;}',
+  'delivery_callback' => '',
+  'fit' => '245',
+  'number_parts' => '8',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/fields/%',
+  'tab_root' => 'admin/structure/types/manage/%/fields/%',
+  'title' => 'Delete',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '10',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/fields/%/edit',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:6;}',
+  'delivery_callback' => '',
+  'fit' => '245',
+  'number_parts' => '8',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/fields/%',
+  'tab_root' => 'admin/structure/types/manage/%/fields/%',
+  'title' => 'Edit',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/fields/%/field-settings',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:28:"field_ui_field_settings_form";i:1;i:6;}',
+  'delivery_callback' => '',
+  'fit' => '245',
+  'number_parts' => '8',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/fields/%',
+  'tab_root' => 'admin/structure/types/manage/%/fields/%',
+  'title' => 'Field settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/fields/%/widget-type',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:25:"field_ui_widget_type_form";i:1;i:6;}',
+  'delivery_callback' => '',
+  'fit' => '245',
+  'number_parts' => '8',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/fields/%',
+  'tab_root' => 'admin/structure/types/manage/%/fields/%',
+  'title' => 'Widget type',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/tasks',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_menu_block_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '1',
+  'tab_parent' => 'admin',
+  'tab_root' => 'admin',
+  'title' => 'Tasks',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-20',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/update/ready',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'update_manager_access',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:32:"update_manager_update_ready_form";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/update/ready',
+  'title' => 'Ready to update',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/update/update.manager.inc',
+))
+->values(array(
+  'path' => 'batch',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '1',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'system_batch_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '1',
+  'number_parts' => '1',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'batch',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '_system_batch_theme',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'comment/%',
+  'load_functions' => 'a:1:{i:1;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:15:"access comments";}',
+  'page_callback' => 'comment_permalink',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '2',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'comment/%',
+  'title' => 'Comment permalink',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'comment/%/approve',
+  'load_functions' => 'a:1:{i:1;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
+  'page_callback' => 'comment_approve',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'comment/%/approve',
+  'title' => 'Approve',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '1',
+  'include_file' => 'modules/comment/comment.pages.inc',
+))
+->values(array(
+  'path' => 'comment/%/delete',
+  'load_functions' => 'a:1:{i:1;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
+  'page_callback' => 'comment_confirm_delete_page',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'comment/%',
+  'tab_root' => 'comment/%',
+  'title' => 'Delete',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '2',
+  'include_file' => 'modules/comment/comment.admin.inc',
+))
+->values(array(
+  'path' => 'comment/%/edit',
+  'load_functions' => 'a:1:{i:1;s:12:"comment_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'comment_access',
+  'access_arguments' => 'a:2:{i:0;s:4:"edit";i:1;i:1;}',
+  'page_callback' => 'comment_edit_page',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'comment/%',
+  'tab_root' => 'comment/%',
+  'title' => 'Edit',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'comment/%/view',
+  'load_functions' => 'a:1:{i:1;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:15:"access comments";}',
+  'page_callback' => 'comment_permalink',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'comment/%',
+  'tab_root' => 'comment/%',
+  'title' => 'View comment',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'comment/reply/%',
+  'load_functions' => 'a:1:{i:2;s:9:"node_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'node_access',
+  'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:2;}',
+  'page_callback' => 'comment_reply',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '6',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'comment/reply/%',
+  'title' => 'Add new comment',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/comment/comment.pages.inc',
+))
+->values(array(
+  'path' => 'file/ajax',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'file_ajax_upload',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => 'ajax_deliver',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'file/ajax',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => 'ajax_base_page_theme',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'file/progress',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'file_ajax_progress',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => 'ajax_deliver',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'file/progress',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => 'ajax_base_page_theme',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'filter/tips',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '1',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'filter_tips_long',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'filter/tips',
+  'title' => 'Compose tips',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '20',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/filter/filter.pages.inc',
+))
+->values(array(
+  'path' => 'node',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'node_page_default',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '1',
+  'number_parts' => '1',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'node',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'node/%',
+  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'node_access',
+  'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}',
+  'page_callback' => 'node_page_view',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '2',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'node/%',
+  'title' => '',
+  'title_callback' => 'node_page_title',
+  'title_arguments' => 'a:1:{i:0;i:1;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'node/%/delete',
+  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'node_access',
+  'access_arguments' => 'a:2:{i:0;s:6:"delete";i:1;i:1;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:19:"node_delete_confirm";i:1;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '2',
+  'tab_parent' => 'node/%',
+  'tab_root' => 'node/%',
+  'title' => 'Delete',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '1',
+  'include_file' => 'modules/node/node.pages.inc',
+))
+->values(array(
+  'path' => 'node/%/edit',
+  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'node_access',
+  'access_arguments' => 'a:2:{i:0;s:6:"update";i:1;i:1;}',
+  'page_callback' => 'node_page_edit',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '3',
+  'tab_parent' => 'node/%',
+  'tab_root' => 'node/%',
+  'title' => 'Edit',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/node/node.pages.inc',
+))
+->values(array(
+  'path' => 'node/%/revisions',
+  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_node_revision_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'node_revision_overview',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'node/%',
+  'tab_root' => 'node/%',
+  'title' => 'Revisions',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '2',
+  'include_file' => 'modules/node/node.pages.inc',
+))
+->values(array(
+  'path' => 'node/%/revisions/%/delete',
+  'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => '_node_revision_access',
+  'access_arguments' => 'a:2:{i:0;i:1;i:1;s:6:"delete";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:28:"node_revision_delete_confirm";i:1;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '21',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'node/%/revisions/%/delete',
+  'title' => 'Delete earlier revision',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/node/node.pages.inc',
+))
+->values(array(
+  'path' => 'node/%/revisions/%/revert',
+  'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => '_node_revision_access',
+  'access_arguments' => 'a:2:{i:0;i:1;i:1;s:6:"update";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:28:"node_revision_revert_confirm";i:1;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '21',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'node/%/revisions/%/revert',
+  'title' => 'Revert to earlier revision',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/node/node.pages.inc',
+))
+->values(array(
+  'path' => 'node/%/revisions/%/view',
+  'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => '_node_revision_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'node_show',
+  'page_arguments' => 'a:2:{i:0;i:1;i:1;b:1;}',
+  'delivery_callback' => '',
+  'fit' => '21',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'node/%/revisions/%/view',
+  'title' => 'Revisions',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'node/%/view',
+  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'node_access',
+  'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}',
+  'page_callback' => 'node_page_view',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'node/%',
+  'tab_root' => 'node/%',
+  'title' => 'View',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'node/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_node_add_access',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'node_add_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'node/add',
+  'title' => 'Add content',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/node/node.pages.inc',
+))
+->values(array(
+  'path' => 'node/add/article',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'node_access',
+  'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:7:"article";}',
+  'page_callback' => 'node_add',
+  'page_arguments' => 'a:1:{i:0;s:7:"article";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'node/add/article',
+  'title' => 'Article',
+  'title_callback' => 'check_plain',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/node/node.pages.inc',
+))
+->values(array(
+  'path' => 'node/add/page',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'node_access',
+  'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:4:"page";}',
+  'page_callback' => 'node_add',
+  'page_arguments' => 'a:1:{i:0;s:4:"page";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'node/add/page',
+  'title' => 'Basic page',
+  'title_callback' => 'check_plain',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => "Use <em>basic pages</em> for your static content, such as an 'About us' page.",
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/node/node.pages.inc',
+))
+->values(array(
+  'path' => 'overlay-ajax/%',
+  'load_functions' => 'a:1:{i:1;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access overlay";}',
+  'page_callback' => 'overlay_ajax_render_region',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '2',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'overlay-ajax/%',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'overlay/dismiss-message',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access overlay";}',
+  'page_callback' => 'overlay_user_dismiss_message',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'overlay/dismiss-message',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'rss.xml',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'node_feed',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '1',
+  'number_parts' => '1',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'rss.xml',
+  'title' => 'RSS feed',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'search',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'search_is_active',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'search_view',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '1',
+  'number_parts' => '1',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'search',
+  'title' => 'Search',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '20',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/search/search.pages.inc',
+))
+->values(array(
+  'path' => 'search/node',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_search_menu_access',
+  'access_arguments' => 'a:1:{i:0;s:4:"node";}',
+  'page_callback' => 'search_view',
+  'page_arguments' => 'a:2:{i:0;s:4:"node";i:1;s:0:"";}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '1',
+  'tab_parent' => 'search',
+  'tab_root' => 'search',
+  'title' => 'Content',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/search/search.pages.inc',
+))
+->values(array(
+  'path' => 'search/node/%',
+  'load_functions' => 'a:1:{i:2;a:1:{s:14:"menu_tail_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}',
+  'to_arg_functions' => 'a:1:{i:2;s:16:"menu_tail_to_arg";}',
+  'access_callback' => '_search_menu_access',
+  'access_arguments' => 'a:1:{i:0;s:4:"node";}',
+  'page_callback' => 'search_view',
+  'page_arguments' => 'a:2:{i:0;s:4:"node";i:1;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '6',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'search/node',
+  'tab_root' => 'search/node/%',
+  'title' => 'Content',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/search/search.pages.inc',
+))
+->values(array(
+  'path' => 'search/user',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_search_menu_access',
+  'access_arguments' => 'a:1:{i:0;s:4:"user";}',
+  'page_callback' => 'search_view',
+  'page_arguments' => 'a:2:{i:0;s:4:"user";i:1;s:0:"";}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '1',
+  'tab_parent' => 'search',
+  'tab_root' => 'search',
+  'title' => 'Users',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/search/search.pages.inc',
+))
+->values(array(
+  'path' => 'search/user/%',
+  'load_functions' => 'a:1:{i:2;a:1:{s:14:"menu_tail_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}',
+  'to_arg_functions' => 'a:1:{i:2;s:16:"menu_tail_to_arg";}',
+  'access_callback' => '_search_menu_access',
+  'access_arguments' => 'a:1:{i:0;s:4:"user";}',
+  'page_callback' => 'search_view',
+  'page_arguments' => 'a:2:{i:0;s:4:"user";i:1;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '6',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'search/node',
+  'tab_root' => 'search/node/%',
+  'title' => 'Users',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/search/search.pages.inc',
+))
+->values(array(
+  'path' => 'sites/default/files/styles/%',
+  'load_functions' => 'a:1:{i:4;s:16:"image_style_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '1',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'image_style_deliver',
+  'page_arguments' => 'a:1:{i:0;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '30',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'sites/default/files/styles/%',
+  'title' => 'Generate image style',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'system/ajax',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '1',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'ajax_form_callback',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => 'ajax_deliver',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'system/ajax',
+  'title' => 'AHAH callback',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => 'ajax_base_page_theme',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'includes/form.inc',
+))
+->values(array(
+  'path' => 'system/files',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '1',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'file_download',
+  'page_arguments' => 'a:1:{i:0;s:7:"private";}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'system/files',
+  'title' => 'File download',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'system/files/styles/%',
+  'load_functions' => 'a:1:{i:3;s:16:"image_style_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '1',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'image_style_deliver',
+  'page_arguments' => 'a:1:{i:0;i:3;}',
+  'delivery_callback' => '',
+  'fit' => '14',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'system/files/styles/%',
+  'title' => 'Generate image style',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'system/temporary',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '1',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'file_download',
+  'page_arguments' => 'a:1:{i:0;s:9:"temporary";}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'system/temporary',
+  'title' => 'Temporary files',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'system/timezone',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '1',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'system_timezone',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'system/timezone',
+  'title' => 'Time zone',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'taxonomy/autocomplete',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'taxonomy_autocomplete',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'taxonomy/autocomplete',
+  'title' => 'Autocomplete taxonomy',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/taxonomy/taxonomy.pages.inc',
+))
+->values(array(
+  'path' => 'taxonomy/term/%',
+  'load_functions' => 'a:1:{i:2;s:18:"taxonomy_term_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'taxonomy_term_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '6',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'taxonomy/term/%',
+  'title' => 'Taxonomy term',
+  'title_callback' => 'taxonomy_term_title',
+  'title_arguments' => 'a:1:{i:0;i:2;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/taxonomy/taxonomy.pages.inc',
+))
+->values(array(
+  'path' => 'taxonomy/term/%/edit',
+  'load_functions' => 'a:1:{i:2;s:18:"taxonomy_term_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'taxonomy_term_edit_access',
+  'access_arguments' => 'a:1:{i:0;i:2;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:18:"taxonomy_form_term";i:1;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '13',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'taxonomy/term/%',
+  'tab_root' => 'taxonomy/term/%',
+  'title' => 'Edit',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '10',
+  'include_file' => 'modules/taxonomy/taxonomy.admin.inc',
+))
+->values(array(
+  'path' => 'taxonomy/term/%/feed',
+  'load_functions' => 'a:1:{i:2;s:18:"taxonomy_term_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'taxonomy_term_feed',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '13',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'taxonomy/term/%/feed',
+  'title' => 'Taxonomy term',
+  'title_callback' => 'taxonomy_term_title',
+  'title_arguments' => 'a:1:{i:0;i:2;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/taxonomy/taxonomy.pages.inc',
+))
+->values(array(
+  'path' => 'taxonomy/term/%/view',
+  'load_functions' => 'a:1:{i:2;s:18:"taxonomy_term_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'taxonomy_term_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '13',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'taxonomy/term/%',
+  'tab_root' => 'taxonomy/term/%',
+  'title' => 'View',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/taxonomy/taxonomy.pages.inc',
+))
+->values(array(
+  'path' => 'toolbar/toggle',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access toolbar";}',
+  'page_callback' => 'toolbar_toggle_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'toolbar/toggle',
+  'title' => 'Toggle drawer visibility',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'user',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '1',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'user_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '1',
+  'number_parts' => '1',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'user',
+  'title' => 'User account',
+  'title_callback' => 'user_menu_title',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/user/user.pages.inc',
+))
+->values(array(
+  'path' => 'user/%',
+  'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_view_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'user_view_page',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '2',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'user/%',
+  'title' => 'My account',
+  'title_callback' => 'user_page_title',
+  'title_arguments' => 'a:1:{i:0;i:1;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'user/%/cancel',
+  'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_cancel_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"user_cancel_confirm_form";i:1;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'user/%/cancel',
+  'title' => 'Cancel account',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/user/user.pages.inc',
+))
+->values(array(
+  'path' => 'user/%/cancel/confirm/%/%',
+  'load_functions' => 'a:3:{i:1;s:9:"user_load";i:4;N;i:5;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_cancel_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'user_cancel_confirm',
+  'page_arguments' => 'a:3:{i:0;i:1;i:1;i:4;i:2;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '44',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'user/%/cancel/confirm/%/%',
+  'title' => 'Confirm account cancellation',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/user/user.pages.inc',
+))
+->values(array(
+  'path' => 'user/%/edit',
+  'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_edit_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:17:"user_profile_form";i:1;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'user/%',
+  'tab_root' => 'user/%',
+  'title' => 'Edit',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/user/user.pages.inc',
+))
+->values(array(
+  'path' => 'user/%/edit/account',
+  'load_functions' => 'a:1:{i:1;a:1:{s:18:"user_category_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_edit_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:17:"user_profile_form";i:1;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '11',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'user/%/edit',
+  'tab_root' => 'user/%',
+  'title' => 'Account',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/user/user.pages.inc',
+))
+->values(array(
+  'path' => 'user/%/shortcuts',
+  'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'shortcut_set_switch_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:19:"shortcut_set_switch";i:1;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'user/%',
+  'tab_root' => 'user/%',
+  'title' => 'Shortcuts',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'user/%/view',
+  'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_view_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'user_view_page',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'user/%',
+  'tab_root' => 'user/%',
+  'title' => 'View',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'user/autocomplete',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:20:"access user profiles";}',
+  'page_callback' => 'user_autocomplete',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'user/autocomplete',
+  'title' => 'User autocomplete',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/user/user.pages.inc',
+))
+->values(array(
+  'path' => 'user/login',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_is_anonymous',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'user_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '1',
+  'tab_parent' => 'user',
+  'tab_root' => 'user',
+  'title' => 'Log in',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/user/user.pages.inc',
+))
+->values(array(
+  'path' => 'user/logout',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_is_logged_in',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'user_logout',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'user/logout',
+  'title' => 'Log out',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '10',
+  'include_file' => 'modules/user/user.pages.inc',
+))
+->values(array(
+  'path' => 'user/password',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '1',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:9:"user_pass";}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '1',
+  'tab_parent' => 'user',
+  'tab_root' => 'user',
+  'title' => 'Request new password',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/user/user.pages.inc',
+))
+->values(array(
+  'path' => 'user/register',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_register_access',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:18:"user_register_form";}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '1',
+  'tab_parent' => 'user',
+  'tab_root' => 'user',
+  'title' => 'Create new account',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'user/reset/%/%/%',
+  'load_functions' => 'a:3:{i:2;N;i:3;N;i:4;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => '1',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:4:{i:0;s:15:"user_pass_reset";i:1;i:2;i:2;i:3;i:3;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '24',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'user/reset/%/%/%',
+  'title' => 'Reset password',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/user/user.pages.inc',
+))
+->execute();
+
+db_create_table('node', array(
+  'fields' => array(
+    'nid' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'vid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 12,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'title' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'uid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'status' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 1,
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'changed' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'comment' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'promote' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'sticky' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'tnid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'translate' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'node_changed' => array(
+      'changed',
+    ),
+    'node_created' => array(
+      'created',
+    ),
+    'node_frontpage' => array(
+      'promote',
+      'status',
+      'sticky',
+      'created',
+    ),
+    'node_status_type' => array(
+      'status',
+      'type',
+      'nid',
+    ),
+    'node_title_type' => array(
+      'title',
+      array(
+        'type',
+        4,
+      ),
+    ),
+    'node_type' => array(
+      array(
+        'type',
+        4,
+      ),
+    ),
+    'uid' => array(
+      'uid',
+    ),
+    'tnid' => array(
+      'tnid',
+    ),
+    'translate' => array(
+      'translate',
+    ),
+  ),
+  'unique keys' => array(
+    'vid' => array(
+      'vid',
+    ),
+  ),
+  'foreign keys' => array(
+    'node_revision' => array(
+      'table' => 'node_revision',
+      'columns' => array(
+        'vid' => 'vid',
+      ),
+    ),
+    'node_author' => array(
+      'table' => 'users',
+      'columns' => array(
+        'uid' => 'uid',
+      ),
+    ),
+  ),
+  'primary key' => array(
+    'nid',
+  ),
+  'module' => 'node',
+  'name' => 'node',
+));
+
+db_create_table('node_access', array(
+  'fields' => array(
+    'nid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'gid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'realm' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'grant_view' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'grant_update' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'grant_delete' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+  ),
+  'primary key' => array(
+    'nid',
+    'gid',
+    'realm',
+  ),
+  'foreign keys' => array(
+    'affected_node' => array(
+      'table' => 'node',
+      'columns' => array(
+        'nid' => 'nid',
+      ),
+    ),
+  ),
+  'module' => 'node',
+  'name' => 'node_access',
+));
+db_insert('node_access')->fields(array(
+  'nid',
+  'gid',
+  'realm',
+  'grant_view',
+  'grant_update',
+  'grant_delete',
+))
+->values(array(
+  'nid' => '0',
+  'gid' => '0',
+  'realm' => 'all',
+  'grant_view' => '1',
+  'grant_update' => '0',
+  'grant_delete' => '0',
+))
+->execute();
+
+db_create_table('node_comment_statistics', array(
+  'fields' => array(
+    'nid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'cid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'last_comment_timestamp' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'last_comment_name' => array(
+      'type' => 'varchar',
+      'length' => 60,
+      'not null' => FALSE,
+    ),
+    'last_comment_uid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'comment_count' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'primary key' => array(
+    'nid',
+  ),
+  'indexes' => array(
+    'node_comment_timestamp' => array(
+      'last_comment_timestamp',
+    ),
+    'comment_count' => array(
+      'comment_count',
+    ),
+    'last_comment_uid' => array(
+      'last_comment_uid',
+    ),
+  ),
+  'foreign keys' => array(
+    'statistics_node' => array(
+      'table' => 'node',
+      'columns' => array(
+        'nid' => 'nid',
+      ),
+    ),
+    'last_comment_author' => array(
+      'table' => 'users',
+      'columns' => array(
+        'last_comment_uid' => 'uid',
+      ),
+    ),
+  ),
+  'module' => 'comment',
+  'name' => 'node_comment_statistics',
+));
+
+db_create_table('node_revision', array(
+  'fields' => array(
+    'nid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'vid' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'uid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'title' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'log' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+      'size' => 'big',
+    ),
+    'timestamp' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'status' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 1,
+    ),
+    'comment' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'promote' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'sticky' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'nid' => array(
+      'nid',
+    ),
+    'uid' => array(
+      'uid',
+    ),
+  ),
+  'primary key' => array(
+    'vid',
+  ),
+  'foreign keys' => array(
+    'versioned_node' => array(
+      'table' => 'node',
+      'columns' => array(
+        'nid' => 'nid',
+      ),
+    ),
+    'version_author' => array(
+      'table' => 'users',
+      'columns' => array(
+        'uid' => 'uid',
+      ),
+    ),
+  ),
+  'module' => 'node',
+  'name' => 'node_revision',
+));
+
+db_create_table('node_type', array(
+  'fields' => array(
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+    ),
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+      'translatable' => TRUE,
+    ),
+    'base' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+    ),
+    'module' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+    ),
+    'description' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+      'size' => 'medium',
+      'translatable' => TRUE,
+    ),
+    'help' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+      'size' => 'medium',
+      'translatable' => TRUE,
+    ),
+    'has_title' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'size' => 'tiny',
+    ),
+    'title_label' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+      'translatable' => TRUE,
+    ),
+    'custom' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'modified' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'locked' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'disabled' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'orig_type' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+  ),
+  'primary key' => array(
+    'type',
+  ),
+  'module' => 'node',
+  'name' => 'node_type',
+));
+db_insert('node_type')->fields(array(
+  'type',
+  'name',
+  'base',
+  'module',
+  'description',
+  'help',
+  'has_title',
+  'title_label',
+  'custom',
+  'modified',
+  'locked',
+  'disabled',
+  'orig_type',
+))
+->values(array(
+  'type' => 'article',
+  'name' => 'Article',
+  'base' => 'node_content',
+  'module' => 'node',
+  'description' => 'Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.',
+  'help' => '',
+  'has_title' => '1',
+  'title_label' => 'Title',
+  'custom' => '1',
+  'modified' => '1',
+  'locked' => '0',
+  'disabled' => '0',
+  'orig_type' => 'article',
+))
+->values(array(
+  'type' => 'page',
+  'name' => 'Basic page',
+  'base' => 'node_content',
+  'module' => 'node',
+  'description' => "Use <em>basic pages</em> for your static content, such as an 'About us' page.",
+  'help' => '',
+  'has_title' => '1',
+  'title_label' => 'Title',
+  'custom' => '1',
+  'modified' => '1',
+  'locked' => '0',
+  'disabled' => '0',
+  'orig_type' => 'page',
+))
+->execute();
+
+db_create_table('queue', array(
+  'fields' => array(
+    'item_id' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+      'serialize' => TRUE,
+    ),
+    'expire' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'primary key' => array(
+    'item_id',
+  ),
+  'indexes' => array(
+    'name_created' => array(
+      'name',
+      'created',
+    ),
+    'expire' => array(
+      'expire',
+    ),
+  ),
+  'module' => 'system',
+  'name' => 'queue',
+));
+
+db_create_table('rdf_mapping', array(
+  'fields' => array(
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+    ),
+    'mapping' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+      'serialize' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'type',
+    'bundle',
+  ),
+  'module' => 'rdf',
+  'name' => 'rdf_mapping',
+));
+db_insert('rdf_mapping')->fields(array(
+  'type',
+  'bundle',
+  'mapping',
+))
+->values(array(
+  'type' => 'node',
+  'bundle' => 'article',
+  '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";}}',
+))
+->values(array(
+  'type' => 'node',
+  'bundle' => 'page',
+  '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";}}',
+))
+->execute();
+
+db_create_table('registry', array(
+  'fields' => array(
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 9,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'filename' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+    ),
+    'module' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'primary key' => array(
+    'name',
+    'type',
+  ),
+  'indexes' => array(
+    'hook' => array(
+      'type',
+      'weight',
+      'module',
+    ),
+  ),
+  'module' => 'system',
+  'name' => 'registry',
+));
+db_insert('registry')->fields(array(
+  'name',
+  'type',
+  'filename',
+  'module',
+  'weight',
+))
+->values(array(
+  'name' => 'AccessDeniedTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'AdminMetaTagTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ArchiverInterface',
+  'type' => 'interface',
+  'filename' => 'includes/archiver.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ArchiverTar',
+  'type' => 'class',
+  'filename' => 'modules/system/system.archiver.inc',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ArchiverZip',
+  'type' => 'class',
+  'filename' => 'modules/system/system.archiver.inc',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'Archive_Tar',
+  'type' => 'class',
+  'filename' => 'modules/system/system.tar.inc',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BatchMemoryQueue',
+  'type' => 'class',
+  'filename' => 'includes/batch.queue.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BatchQueue',
+  'type' => 'class',
+  'filename' => 'includes/batch.queue.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BlockAdminThemeTestCase',
+  'type' => 'class',
+  'filename' => 'modules/block/block.test',
+  'module' => 'block',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BlockCacheTestCase',
+  'type' => 'class',
+  'filename' => 'modules/block/block.test',
+  'module' => 'block',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BlockHTMLIdTestCase',
+  'type' => 'class',
+  'filename' => 'modules/block/block.test',
+  'module' => 'block',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BlockTemplateSuggestionsUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/block/block.test',
+  'module' => 'block',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BlockTestCase',
+  'type' => 'class',
+  'filename' => 'modules/block/block.test',
+  'module' => 'block',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ColorTestCase',
+  'type' => 'class',
+  'filename' => 'modules/color/color.test',
+  'module' => 'color',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommentActionsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/comment/comment.test',
+  'module' => 'comment',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommentAnonymous',
+  'type' => 'class',
+  'filename' => 'modules/comment/comment.test',
+  'module' => 'comment',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommentApprovalTest',
+  'type' => 'class',
+  'filename' => 'modules/comment/comment.test',
+  'module' => 'comment',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommentBlockFunctionalTest',
+  'type' => 'class',
+  'filename' => 'modules/comment/comment.test',
+  'module' => 'comment',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommentContentRebuild',
+  'type' => 'class',
+  'filename' => 'modules/comment/comment.test',
+  'module' => 'comment',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommentController',
+  'type' => 'class',
+  'filename' => 'modules/comment/comment.module',
+  'module' => 'comment',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommentFieldsTest',
+  'type' => 'class',
+  'filename' => 'modules/comment/comment.test',
+  'module' => 'comment',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommentHelperCase',
+  'type' => 'class',
+  'filename' => 'modules/comment/comment.test',
+  'module' => 'comment',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommentInterfaceTest',
+  'type' => 'class',
+  'filename' => 'modules/comment/comment.test',
+  'module' => 'comment',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommentNodeAccessTest',
+  'type' => 'class',
+  'filename' => 'modules/comment/comment.test',
+  'module' => 'comment',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommentPagerTest',
+  'type' => 'class',
+  'filename' => 'modules/comment/comment.test',
+  'module' => 'comment',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommentPreviewTest',
+  'type' => 'class',
+  'filename' => 'modules/comment/comment.test',
+  'module' => 'comment',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommentRSSUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/comment/comment.test',
+  'module' => 'comment',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommentTokenReplaceTestCase',
+  'type' => 'class',
+  'filename' => 'modules/comment/comment.test',
+  'module' => 'comment',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CronRunTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DashboardBlocksTestCase',
+  'type' => 'class',
+  'filename' => 'modules/dashboard/dashboard.test',
+  'module' => 'dashboard',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'Database',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseCondition',
+  'type' => 'class',
+  'filename' => 'includes/database/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseConnection',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseConnectionNotDefinedException',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseConnection_mysql',
+  'type' => 'class',
+  'filename' => 'includes/database/mysql/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseConnection_pgsql',
+  'type' => 'class',
+  'filename' => 'includes/database/pgsql/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseConnection_sqlite',
+  'type' => 'class',
+  'filename' => 'includes/database/sqlite/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseDriverNotSpecifiedException',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseLog',
+  'type' => 'class',
+  'filename' => 'includes/database/log.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseSchema',
+  'type' => 'class',
+  'filename' => 'includes/database/schema.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseSchemaObjectDoesNotExistException',
+  'type' => 'class',
+  'filename' => 'includes/database/schema.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseSchemaObjectExistsException',
+  'type' => 'class',
+  'filename' => 'includes/database/schema.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseSchema_mysql',
+  'type' => 'class',
+  'filename' => 'includes/database/mysql/schema.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseSchema_pgsql',
+  'type' => 'class',
+  'filename' => 'includes/database/pgsql/schema.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseSchema_sqlite',
+  'type' => 'class',
+  'filename' => 'includes/database/sqlite/schema.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseStatementBase',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseStatementEmpty',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseStatementInterface',
+  'type' => 'interface',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseStatementPrefetch',
+  'type' => 'class',
+  'filename' => 'includes/database/prefetch.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseStatement_sqlite',
+  'type' => 'class',
+  'filename' => 'includes/database/sqlite/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseTaskException',
+  'type' => 'class',
+  'filename' => 'includes/install.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseTasks',
+  'type' => 'class',
+  'filename' => 'includes/install.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseTasks_mysql',
+  'type' => 'class',
+  'filename' => 'includes/database/mysql/install.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseTasks_pgsql',
+  'type' => 'class',
+  'filename' => 'includes/database/pgsql/install.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseTasks_sqlite',
+  'type' => 'class',
+  'filename' => 'includes/database/sqlite/install.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseTransaction',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseTransactionCommitFailedException',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseTransactionExplicitCommitNotAllowedException',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseTransactionNameNonUniqueException',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseTransactionNoActiveException',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseTransactionOutOfOrderException',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DateTimeFunctionalTest',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DBLogTestCase',
+  'type' => 'class',
+  'filename' => 'modules/dblog/dblog.test',
+  'module' => 'dblog',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DefaultMailSystem',
+  'type' => 'class',
+  'filename' => 'modules/system/system.mail.inc',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DeleteQuery',
+  'type' => 'class',
+  'filename' => 'includes/database/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DeleteQuery_sqlite',
+  'type' => 'class',
+  'filename' => 'includes/database/sqlite/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalCacheArray',
+  'type' => 'class',
+  'filename' => 'includes/bootstrap.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalCacheInterface',
+  'type' => 'interface',
+  'filename' => 'includes/cache.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalDatabaseCache',
+  'type' => 'class',
+  'filename' => 'includes/cache.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalDefaultEntityController',
+  'type' => 'class',
+  'filename' => 'includes/entity.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalEntityControllerInterface',
+  'type' => 'interface',
+  'filename' => 'includes/entity.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalFakeCache',
+  'type' => 'class',
+  'filename' => 'includes/cache-install.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalLocalStreamWrapper',
+  'type' => 'class',
+  'filename' => 'includes/stream_wrappers.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalPrivateStreamWrapper',
+  'type' => 'class',
+  'filename' => 'includes/stream_wrappers.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalPublicStreamWrapper',
+  'type' => 'class',
+  'filename' => 'includes/stream_wrappers.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalQueue',
+  'type' => 'class',
+  'filename' => 'modules/system/system.queue.inc',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalQueueInterface',
+  'type' => 'interface',
+  'filename' => 'modules/system/system.queue.inc',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalReliableQueueInterface',
+  'type' => 'interface',
+  'filename' => 'modules/system/system.queue.inc',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalStreamWrapperInterface',
+  'type' => 'interface',
+  'filename' => 'includes/stream_wrappers.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalTemporaryStreamWrapper',
+  'type' => 'class',
+  'filename' => 'includes/stream_wrappers.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalUpdateException',
+  'type' => 'class',
+  'filename' => 'includes/update.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalUpdaterInterface',
+  'type' => 'interface',
+  'filename' => 'includes/updater.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EnableDisableTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityFieldQuery',
+  'type' => 'class',
+  'filename' => 'includes/entity.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityFieldQueryException',
+  'type' => 'class',
+  'filename' => 'includes/entity.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityMalformedException',
+  'type' => 'class',
+  'filename' => 'includes/entity.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityPropertiesTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/tests/field.test',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldAttachOtherTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/tests/field.test',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldAttachStorageTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/tests/field.test',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldAttachTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/tests/field.test',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldBulkDeleteTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/tests/field.test',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldCrudTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/tests/field.test',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldDisplayAPITestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/tests/field.test',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldException',
+  'type' => 'class',
+  'filename' => 'modules/field/field.module',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldFormTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/tests/field.test',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldInfoTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/tests/field.test',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldInstanceCrudTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/tests/field.test',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldsOverlapException',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldSqlStorageTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/modules/field_sql_storage/field_sql_storage.test',
+  'module' => 'field_sql_storage',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/tests/field.test',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldTranslationsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/tests/field.test',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldUIManageDisplayTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field_ui/field_ui.test',
+  'module' => 'field_ui',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldUIManageFieldsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field_ui/field_ui.test',
+  'module' => 'field_ui',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldUITestCase',
+  'type' => 'class',
+  'filename' => 'modules/field_ui/field_ui.test',
+  'module' => 'field_ui',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldUpdateForbiddenException',
+  'type' => 'class',
+  'filename' => 'modules/field/field.module',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldValidationException',
+  'type' => 'class',
+  'filename' => 'modules/field/field.attach.inc',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileFieldDisplayTestCase',
+  'type' => 'class',
+  'filename' => 'modules/file/tests/file.test',
+  'module' => 'file',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileFieldPathTestCase',
+  'type' => 'class',
+  'filename' => 'modules/file/tests/file.test',
+  'module' => 'file',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileFieldRevisionTestCase',
+  'type' => 'class',
+  'filename' => 'modules/file/tests/file.test',
+  'module' => 'file',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileFieldTestCase',
+  'type' => 'class',
+  'filename' => 'modules/file/tests/file.test',
+  'module' => 'file',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileFieldValidateTestCase',
+  'type' => 'class',
+  'filename' => 'modules/file/tests/file.test',
+  'module' => 'file',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileFieldWidgetTestCase',
+  'type' => 'class',
+  'filename' => 'modules/file/tests/file.test',
+  'module' => 'file',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileManagedFileElementTestCase',
+  'type' => 'class',
+  'filename' => 'modules/file/tests/file.test',
+  'module' => 'file',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FilePrivateTestCase',
+  'type' => 'class',
+  'filename' => 'modules/file/tests/file.test',
+  'module' => 'file',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileTokenReplaceTestCase',
+  'type' => 'class',
+  'filename' => 'modules/file/tests/file.test',
+  'module' => 'file',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileTransfer',
+  'type' => 'class',
+  'filename' => 'includes/filetransfer/filetransfer.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileTransferChmodInterface',
+  'type' => 'interface',
+  'filename' => 'includes/filetransfer/filetransfer.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileTransferException',
+  'type' => 'class',
+  'filename' => 'includes/filetransfer/filetransfer.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileTransferFTP',
+  'type' => 'class',
+  'filename' => 'includes/filetransfer/ftp.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileTransferFTPExtension',
+  'type' => 'class',
+  'filename' => 'includes/filetransfer/ftp.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileTransferLocal',
+  'type' => 'class',
+  'filename' => 'includes/filetransfer/local.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileTransferSSH',
+  'type' => 'class',
+  'filename' => 'includes/filetransfer/ssh.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FilterAdminTestCase',
+  'type' => 'class',
+  'filename' => 'modules/filter/filter.test',
+  'module' => 'filter',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FilterCRUDTestCase',
+  'type' => 'class',
+  'filename' => 'modules/filter/filter.test',
+  'module' => 'filter',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FilterDefaultFormatTestCase',
+  'type' => 'class',
+  'filename' => 'modules/filter/filter.test',
+  'module' => 'filter',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FilterFormatAccessTestCase',
+  'type' => 'class',
+  'filename' => 'modules/filter/filter.test',
+  'module' => 'filter',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FilterHooksTestCase',
+  'type' => 'class',
+  'filename' => 'modules/filter/filter.test',
+  'module' => 'filter',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FilterNoFormatTestCase',
+  'type' => 'class',
+  'filename' => 'modules/filter/filter.test',
+  'module' => 'filter',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FilterSecurityTestCase',
+  'type' => 'class',
+  'filename' => 'modules/filter/filter.test',
+  'module' => 'filter',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FilterUnitTestCase',
+  'type' => 'class',
+  'filename' => 'modules/filter/filter.test',
+  'module' => 'filter',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FloodFunctionalTest',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FrontPageTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'HelpTestCase',
+  'type' => 'class',
+  'filename' => 'modules/help/help.test',
+  'module' => 'help',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'HookRequirementsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ImageAdminStylesUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/image/image.test',
+  'module' => 'image',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ImageEffectsUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/image/image.test',
+  'module' => 'image',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ImageFieldDisplayTestCase',
+  'type' => 'class',
+  'filename' => 'modules/image/image.test',
+  'module' => 'image',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ImageFieldTestCase',
+  'type' => 'class',
+  'filename' => 'modules/image/image.test',
+  'module' => 'image',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ImageFieldValidateTestCase',
+  'type' => 'class',
+  'filename' => 'modules/image/image.test',
+  'module' => 'image',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ImageStylesPathAndUrlUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/image/image.test',
+  'module' => 'image',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'InfoFileParserTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'InsertQuery',
+  'type' => 'class',
+  'filename' => 'includes/database/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'InsertQuery_mysql',
+  'type' => 'class',
+  'filename' => 'includes/database/mysql/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'InsertQuery_pgsql',
+  'type' => 'class',
+  'filename' => 'includes/database/pgsql/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'InsertQuery_sqlite',
+  'type' => 'class',
+  'filename' => 'includes/database/sqlite/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'InvalidMergeQueryException',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'IPAddressBlockingTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ListFieldTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/modules/list/tests/list.test',
+  'module' => 'list',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ListFieldUITestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/modules/list/tests/list.test',
+  'module' => 'list',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MailSystemInterface',
+  'type' => 'interface',
+  'filename' => 'includes/mail.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MemoryQueue',
+  'type' => 'class',
+  'filename' => 'modules/system/system.queue.inc',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MenuNodeTestCase',
+  'type' => 'class',
+  'filename' => 'modules/menu/menu.test',
+  'module' => 'menu',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MenuTestCase',
+  'type' => 'class',
+  'filename' => 'modules/menu/menu.test',
+  'module' => 'menu',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MergeQuery',
+  'type' => 'class',
+  'filename' => 'includes/database/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ModuleDependencyTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ModuleRequiredTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ModuleTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ModuleUpdater',
+  'type' => 'class',
+  'filename' => 'modules/system/system.updater.inc',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ModuleVersionTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MultiStepNodeFormBasicOptionsTest',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NewDefaultThemeBlocks',
+  'type' => 'class',
+  'filename' => 'modules/block/block.test',
+  'module' => 'block',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeAccessBaseTableTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeAccessRebuildTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeAccessRecordsUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeAccessUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeAdminTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeBlockFunctionalTest',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeBlockTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeBuildContent',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeController',
+  'type' => 'class',
+  'filename' => 'modules/node/node.module',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeCreationTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeEntityFieldQueryAlter',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeFeedTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeLoadHooksTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeLoadMultipleUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodePostSettingsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeQueryAlter',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeRevisionsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeRSSContentTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeSaveTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeTitleTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeTitleXSSTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeTokenReplaceTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeTypePersistenceTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeTypeTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NoFieldsException',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NoHelpTestCase',
+  'type' => 'class',
+  'filename' => 'modules/help/help.test',
+  'module' => 'help',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NonDefaultBlockAdmin',
+  'type' => 'class',
+  'filename' => 'modules/block/block.test',
+  'module' => 'block',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NumberFieldTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/modules/number/number.test',
+  'module' => 'number',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'OptionsWidgetsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/modules/options/options.test',
+  'module' => 'options',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PageEditTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PageNotFoundTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PagePreviewTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PagerDefault',
+  'type' => 'class',
+  'filename' => 'includes/pager.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PageTitleFiltering',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PageViewTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PathLanguageTestCase',
+  'type' => 'class',
+  'filename' => 'modules/path/path.test',
+  'module' => 'path',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PathLanguageUITestCase',
+  'type' => 'class',
+  'filename' => 'modules/path/path.test',
+  'module' => 'path',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PathMonolingualTestCase',
+  'type' => 'class',
+  'filename' => 'modules/path/path.test',
+  'module' => 'path',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PathTaxonomyTermTestCase',
+  'type' => 'class',
+  'filename' => 'modules/path/path.test',
+  'module' => 'path',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PathTestCase',
+  'type' => 'class',
+  'filename' => 'modules/path/path.test',
+  'module' => 'path',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'Query',
+  'type' => 'class',
+  'filename' => 'includes/database/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'QueryAlterableInterface',
+  'type' => 'interface',
+  'filename' => 'includes/database/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'QueryConditionInterface',
+  'type' => 'interface',
+  'filename' => 'includes/database/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'QueryExtendableInterface',
+  'type' => 'interface',
+  'filename' => 'includes/database/select.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'QueryPlaceholderInterface',
+  'type' => 'interface',
+  'filename' => 'includes/database/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'QueueTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RdfCommentAttributesTestCase',
+  'type' => 'class',
+  'filename' => 'modules/rdf/rdf.test',
+  'module' => 'rdf',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RdfCrudTestCase',
+  'type' => 'class',
+  'filename' => 'modules/rdf/rdf.test',
+  'module' => 'rdf',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RdfGetRdfNamespacesTestCase',
+  'type' => 'class',
+  'filename' => 'modules/rdf/rdf.test',
+  'module' => 'rdf',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RdfMappingDefinitionTestCase',
+  'type' => 'class',
+  'filename' => 'modules/rdf/rdf.test',
+  'module' => 'rdf',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RdfMappingHookTestCase',
+  'type' => 'class',
+  'filename' => 'modules/rdf/rdf.test',
+  'module' => 'rdf',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RdfRdfaMarkupTestCase',
+  'type' => 'class',
+  'filename' => 'modules/rdf/rdf.test',
+  'module' => 'rdf',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RdfTrackerAttributesTestCase',
+  'type' => 'class',
+  'filename' => 'modules/rdf/rdf.test',
+  'module' => 'rdf',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RetrieveFileTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SchemaCache',
+  'type' => 'class',
+  'filename' => 'includes/bootstrap.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchAdvancedSearchForm',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchBlockTestCase',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchCommentCountToggleTestCase',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchCommentTestCase',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchConfigSettingsForm',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchEmbedForm',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchExactTestCase',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchExcerptTestCase',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchExpressionInsertExtractTestCase',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchKeywordsConditions',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchLanguageTestCase',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchMatchTestCase',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchNodeAccessTest',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchNumberMatchingTestCase',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchNumbersTestCase',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchPageOverride',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchPageText',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchQuery',
+  'type' => 'class',
+  'filename' => 'modules/search/search.extender.inc',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchRankingTestCase',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchSimplifyTestCase',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchTokenizerTestCase',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SelectQuery',
+  'type' => 'class',
+  'filename' => 'includes/database/select.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SelectQueryExtender',
+  'type' => 'class',
+  'filename' => 'includes/database/select.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SelectQueryInterface',
+  'type' => 'interface',
+  'filename' => 'includes/database/select.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SelectQuery_pgsql',
+  'type' => 'class',
+  'filename' => 'includes/database/pgsql/select.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SelectQuery_sqlite',
+  'type' => 'class',
+  'filename' => 'includes/database/sqlite/select.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ShortcutLinksTestCase',
+  'type' => 'class',
+  'filename' => 'modules/shortcut/shortcut.test',
+  'module' => 'shortcut',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ShortcutSetsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/shortcut/shortcut.test',
+  'module' => 'shortcut',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ShortcutTestCase',
+  'type' => 'class',
+  'filename' => 'modules/shortcut/shortcut.test',
+  'module' => 'shortcut',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ShutdownFunctionsTest',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SiteMaintenanceTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SkipDotsRecursiveDirectoryIterator',
+  'type' => 'class',
+  'filename' => 'includes/filetransfer/filetransfer.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'StreamWrapperInterface',
+  'type' => 'interface',
+  'filename' => 'includes/stream_wrappers.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SummaryLengthTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SystemAdminTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SystemAuthorizeCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SystemBlockTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SystemIndexPhpTest',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SystemInfoAlterTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SystemMainContentFallback',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SystemQueue',
+  'type' => 'class',
+  'filename' => 'modules/system/system.queue.inc',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SystemThemeFunctionalTest',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TableSort',
+  'type' => 'class',
+  'filename' => 'includes/tablesort.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TaxonomyHooksTestCase',
+  'type' => 'class',
+  'filename' => 'modules/taxonomy/taxonomy.test',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TaxonomyLegacyTestCase',
+  'type' => 'class',
+  'filename' => 'modules/taxonomy/taxonomy.test',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TaxonomyLoadMultipleUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/taxonomy/taxonomy.test',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TaxonomyTermController',
+  'type' => 'class',
+  'filename' => 'modules/taxonomy/taxonomy.module',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TaxonomyTermFieldTestCase',
+  'type' => 'class',
+  'filename' => 'modules/taxonomy/taxonomy.test',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TaxonomyTermTestCase',
+  'type' => 'class',
+  'filename' => 'modules/taxonomy/taxonomy.test',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TaxonomyTermUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/taxonomy/taxonomy.test',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TaxonomyThemeTestCase',
+  'type' => 'class',
+  'filename' => 'modules/taxonomy/taxonomy.test',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TaxonomyTokenReplaceTestCase',
+  'type' => 'class',
+  'filename' => 'modules/taxonomy/taxonomy.test',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TaxonomyVocabularyController',
+  'type' => 'class',
+  'filename' => 'modules/taxonomy/taxonomy.module',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TaxonomyVocabularyFunctionalTest',
+  'type' => 'class',
+  'filename' => 'modules/taxonomy/taxonomy.test',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TaxonomyVocabularyUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/taxonomy/taxonomy.test',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TaxonomyWebTestCase',
+  'type' => 'class',
+  'filename' => 'modules/taxonomy/taxonomy.test',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TestingMailSystem',
+  'type' => 'class',
+  'filename' => 'modules/system/system.mail.inc',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TextFieldTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/modules/text/text.test',
+  'module' => 'text',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TextSummaryTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/modules/text/text.test',
+  'module' => 'text',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TextTranslationTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/modules/text/text.test',
+  'module' => 'text',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ThemeUpdater',
+  'type' => 'class',
+  'filename' => 'modules/system/system.updater.inc',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TokenReplaceTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TruncateQuery',
+  'type' => 'class',
+  'filename' => 'includes/database/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TruncateQuery_mysql',
+  'type' => 'class',
+  'filename' => 'includes/database/mysql/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TruncateQuery_sqlite',
+  'type' => 'class',
+  'filename' => 'includes/database/sqlite/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdateCoreTestCase',
+  'type' => 'class',
+  'filename' => 'modules/update/update.test',
+  'module' => 'update',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdateQuery',
+  'type' => 'class',
+  'filename' => 'includes/database/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdateQuery_pgsql',
+  'type' => 'class',
+  'filename' => 'includes/database/pgsql/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdateQuery_sqlite',
+  'type' => 'class',
+  'filename' => 'includes/database/sqlite/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'Updater',
+  'type' => 'class',
+  'filename' => 'includes/updater.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdaterException',
+  'type' => 'class',
+  'filename' => 'includes/updater.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdaterFileTransferException',
+  'type' => 'class',
+  'filename' => 'includes/updater.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdateScriptFunctionalTest',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdateTestContribCase',
+  'type' => 'class',
+  'filename' => 'modules/update/update.test',
+  'module' => 'update',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdateTestHelper',
+  'type' => 'class',
+  'filename' => 'modules/update/update.test',
+  'module' => 'update',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdateTestUploadCase',
+  'type' => 'class',
+  'filename' => 'modules/update/update.test',
+  'module' => 'update',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserAccountLinksUnitTests',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserAdminTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserAuthmapAssignmentTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserAutocompleteTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserBlocksUnitTests',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserCancelTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserController',
+  'type' => 'class',
+  'filename' => 'modules/user/user.module',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserCreateTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserEditedOwnAccountTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserEditTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserLoginTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserPermissionsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserPictureTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserRegistrationTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserRoleAdminTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserRolesAssignmentTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserSaveTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserSignatureTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserTimeZoneFunctionalTest',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserTokenReplaceTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserUserSearchTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserValidateCurrentPassCustomForm',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserValidationTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->execute();
+
+db_create_table('registry_file', array(
+  'fields' => array(
+    'filename' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+    ),
+    'hash' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'filename',
+  ),
+  'module' => 'system',
+  'name' => 'registry_file',
+));
+db_insert('registry_file')->fields(array(
+  'filename',
+  'hash',
+))
+->values(array(
+  'filename' => 'includes/actions.inc',
+  'hash' => '3e1b89b7dd2465549361915ffc50b713a8f3a568baa703f034e48b24977f83c8',
+))
+->values(array(
+  'filename' => 'includes/ajax.inc',
+  'hash' => 'a6a0847d63032f67c4bd06c3926c639cfafc58f52c17f31f4c8c13fa5699cc6a',
+))
+->values(array(
+  'filename' => 'includes/archiver.inc',
+  'hash' => '097a78f5794237e8242b540649d824b930008027362c1359773e22c2b21cd6e5',
+))
+->values(array(
+  'filename' => 'includes/authorize.inc',
+  'hash' => 'bd85cb5d7bec2906e85be1b7187410680190b568e433fdcff944f74b7e1c616d',
+))
+->values(array(
+  'filename' => 'includes/batch.inc',
+  'hash' => 'f32d52b88dc6bd0b3117fef0057d6084fbe132afb0fbf638daaa42bce7a2a3c5',
+))
+->values(array(
+  'filename' => 'includes/batch.queue.inc',
+  'hash' => '34face1f61857ec26e414712c647b06acbd5ec4437a71abf090e83cbdf691794',
+))
+->values(array(
+  'filename' => 'includes/bootstrap.inc',
+  'hash' => 'faeef91dec3a689471b90199da366756459f70ff9084bb78f94b755cb3b04dd4',
+))
+->values(array(
+  'filename' => 'includes/cache-install.inc',
+  'hash' => '2d223093cf3740d190746d1c348607694a8475c0da91ffd2386454995a17995e',
+))
+->values(array(
+  'filename' => 'includes/cache.inc',
+  'hash' => '5239bd1707257d0abdd5396d6febd34bea08dd6ceb318265f3c9b7b21b38f23f',
+))
+->values(array(
+  'filename' => 'includes/common.inc',
+  'hash' => '3e60fff0c30dea3c0739e52d0cc1f30070b60f2406edcde31e71006139b40bff',
+))
+->values(array(
+  'filename' => 'includes/database/database.inc',
+  'hash' => '6e508386cce4f1f26dba5e897fc99dd7a4b5cbf12f4076e979ff2a6c98137357',
+))
+->values(array(
+  'filename' => 'includes/database/log.inc',
+  'hash' => '4ecbdf9022d8c612310b41af575f10b0d4c041c0fbc41c6dc7e1f2ab6eacce6b',
+))
+->values(array(
+  'filename' => 'includes/database/mysql/database.inc',
+  'hash' => 'b0f19ed69d68e1a43f46e10a5a3bfbf97ce72cf936379c1519ceccfa3b359584',
+))
+->values(array(
+  'filename' => 'includes/database/mysql/install.inc',
+  'hash' => '6ae316941f771732fbbabed7e1d6b4cbb41b1f429dd097d04b3345aa15e461a0',
+))
+->values(array(
+  'filename' => 'includes/database/mysql/query.inc',
+  'hash' => 'e2a5457ec40a8f88f6a822bdc77f74865e4c02206fc733c2945c8897f46093de',
+))
+->values(array(
+  'filename' => 'includes/database/mysql/schema.inc',
+  'hash' => 'f71af9dda287f0f37e7bd0077b801a6d3f38c951a9c2c6ea3b71dff1b69077d3',
+))
+->values(array(
+  'filename' => 'includes/database/pgsql/database.inc',
+  'hash' => 'c2bf3fa2d03583f3a6c6df76dc5ee204f7d44d5c2ee451af500583d4775877e0',
+))
+->values(array(
+  'filename' => 'includes/database/pgsql/install.inc',
+  'hash' => '585b80c5bbd6f134bff60d06397f15154657a577d4da8d1b181858905f09dea5',
+))
+->values(array(
+  'filename' => 'includes/database/pgsql/query.inc',
+  'hash' => 'cb4c84f8f1ffc73098ed71137248dcd078a505a7530e60d979d74b3a3cdaa658',
+))
+->values(array(
+  'filename' => 'includes/database/pgsql/schema.inc',
+  'hash' => '1442123ab5040a55797126cfa1cf9103f7a9df22b3c23b5055c9c27e4f12d262',
+))
+->values(array(
+  'filename' => 'includes/database/pgsql/select.inc',
+  'hash' => 'ce06c4353d4322e519e1c90ca863e6666edc370fb3c12568fedf466334b2e2be',
+))
+->values(array(
+  'filename' => 'includes/database/prefetch.inc',
+  'hash' => '8d39658800c5b648b8aafc253cd36162c22ba54febe543ad14fc50016b02ba93',
+))
+->values(array(
+  'filename' => 'includes/database/query.inc',
+  'hash' => '5c7c960209b84c874e9e6bafdcdc59eeb45651b6969e7f8ba17a460294fa2256',
+))
+->values(array(
+  'filename' => 'includes/database/schema.inc',
+  'hash' => '1996c5e11a984348f29baa6f19e9a995280828bdbbaa3e8c5d747dd28e93d7a2',
+))
+->values(array(
+  'filename' => 'includes/database/select.inc',
+  'hash' => 'f623cc9572f87b76716389d7188884f78a0aa110006e48374151c1aef31b29f0',
+))
+->values(array(
+  'filename' => 'includes/database/sqlite/database.inc',
+  'hash' => '644fe9e0b31303b46b080cbc41fe4c2b3fc972071dcb34f754d7f83f0ce79083',
+))
+->values(array(
+  'filename' => 'includes/database/sqlite/install.inc',
+  'hash' => '381f3db8c59837d961978ba3097bb6443534ed1659fd713aa563963fa0c42cc5',
+))
+->values(array(
+  'filename' => 'includes/database/sqlite/query.inc',
+  'hash' => '61e0459c0c9252ca465b86c475d88e09ea34c8cdb28220eb37a7d44357f5474f',
+))
+->values(array(
+  'filename' => 'includes/database/sqlite/schema.inc',
+  'hash' => 'b43202cce5e8a637432b0d83c90b6250822b722ee033e1b6f7b3d76b92ffc9a7',
+))
+->values(array(
+  'filename' => 'includes/database/sqlite/select.inc',
+  'hash' => '4ecb9d21d2f07237f7603e925519886dde0b8da82f96999b865ff0803438744e',
+))
+->values(array(
+  'filename' => 'includes/date.inc',
+  'hash' => '32124baa81a1411631de23ade5615be0d81bc7c7169ea60d22f9badd333cf284',
+))
+->values(array(
+  'filename' => 'includes/entity.inc',
+  'hash' => '0d3e537e907e9465ef3affe63adaf3a22889673c0618789998c09b831807e8b1',
+))
+->values(array(
+  'filename' => 'includes/errors.inc',
+  'hash' => '2bb3582fbee23850aa480f9a13bf11f886cf81de3fa02545aba64a407facd982',
+))
+->values(array(
+  'filename' => 'includes/file.inc',
+  'hash' => 'cf898bf744766b0ee006da7a5745a8487305ffc777bacbb2cea10bf7ed788a14',
+))
+->values(array(
+  'filename' => 'includes/file.mimetypes.inc',
+  'hash' => 'c6078a196ca29acb4b62a3a3c336e822d2a74cbc2c9df630e539790cb8bcbbbc',
+))
+->values(array(
+  'filename' => 'includes/filetransfer/filetransfer.inc',
+  'hash' => 'ee9393beddc7190f7a161f5563953d1b58e355026fcc2392443a9e6b4c600531',
+))
+->values(array(
+  'filename' => 'includes/filetransfer/ftp.inc',
+  'hash' => '589ebf4b8bd4a2973aa56a156ac1fa83b6c73e703391361fb573167670e0d832',
+))
+->values(array(
+  'filename' => 'includes/filetransfer/local.inc',
+  'hash' => '7cbfdb46abbdf539640db27e66fb30e5265128f31002bd0dfc3af16ae01a9492',
+))
+->values(array(
+  'filename' => 'includes/filetransfer/ssh.inc',
+  'hash' => '002e24a24cac133d12728bd3843868ce378681237d7fad420761af84e6efe5ad',
+))
+->values(array(
+  'filename' => 'includes/form.inc',
+  'hash' => '88d2f1e41bd84dced516a392b2b0428de0e1214d6d4ddee143f473e9c57ff013',
+))
+->values(array(
+  'filename' => 'includes/graph.inc',
+  'hash' => '577a50594521edecd7139fcecd6af3a941e456ea0e0577e38ee14b785422aabb',
+))
+->values(array(
+  'filename' => 'includes/image.inc',
+  'hash' => '2fefbd7e73eb51eece8acd7b374b23bf77a717c1553ad83b321a7be194c9e531',
+))
+->values(array(
+  'filename' => 'includes/install.core.inc',
+  'hash' => 'b230ede834f21c75dc736d5f583b41b02f3c88eef37b1ee9036d294c7f9dbba2',
+))
+->values(array(
+  'filename' => 'includes/install.inc',
+  'hash' => '2dda96a9169cd82e5f49c08c311a1be9decd6c259a385c57b370284072078ec5',
+))
+->values(array(
+  'filename' => 'includes/iso.inc',
+  'hash' => '379c2bd8332ce03a3772787b004e9b1a4468fd23f18d1b9397902fd6d9dbf2d8',
+))
+->values(array(
+  'filename' => 'includes/language.inc',
+  'hash' => '5e0595c6def071694fa500b4636d15d482dafddb612a977201b5406b813be7a6',
+))
+->values(array(
+  'filename' => 'includes/locale.inc',
+  'hash' => '5e6890eaaab5acd3bda2f2d2dc6e3faa9a4a77649ca2cae4225b9d0f24b50fda',
+))
+->values(array(
+  'filename' => 'includes/lock.inc',
+  'hash' => 'daa62e95528f6b986b85680b600a896452bf2ce6f38921242857dcc5a3460a1b',
+))
+->values(array(
+  'filename' => 'includes/mail.inc',
+  'hash' => '673b413f445966854954699ceccd0deae860c1359e2334c3bbe93e31a52dd9b0',
+))
+->values(array(
+  'filename' => 'includes/menu.inc',
+  'hash' => 'd9460911178cc73d72a414f5a048d5b51f754d4f2e987ee97d474dc2102f2671',
+))
+->values(array(
+  'filename' => 'includes/module.inc',
+  'hash' => 'ac27386cf8bfb02192580b8f51ca354a7ea30e444084203d02f2ce9285e85b60',
+))
+->values(array(
+  'filename' => 'includes/pager.inc',
+  'hash' => '48733f9985fd5879b964b91b69215edb63efc30d24a222df0893d35e0096b9e6',
+))
+->values(array(
+  'filename' => 'includes/password.inc',
+  'hash' => 'c3fc2fef03822dfe9981bab502a37893f8865ff529ad34cf9be9a17e86add510',
+))
+->values(array(
+  'filename' => 'includes/path.inc',
+  'hash' => '992d563dbd6e67f58e358176be09eb1fb75f95510a93cb45bf463ce798670bff',
+))
+->values(array(
+  'filename' => 'includes/registry.inc',
+  'hash' => 'ce22f7715c8037095e6b7dfb86594d3f5ca0908e0614862cc60334852ce3b971',
+))
+->values(array(
+  'filename' => 'includes/session.inc',
+  'hash' => '2a904d6eb8f561b5c6b08c6e7528b76b2b8d7f1de34e9738cebe69a1a0b922b2',
+))
+->values(array(
+  'filename' => 'includes/stream_wrappers.inc',
+  'hash' => '2942d0e700d46b8eae25dd72ede0e355de3b3b2ff309447fb6cbe89543370d2e',
+))
+->values(array(
+  'filename' => 'includes/tablesort.inc',
+  'hash' => '3f3cb2820920f7edc0c3d046ffba4fc4e3b73a699a2492780371141cf501aa50',
+))
+->values(array(
+  'filename' => 'includes/theme.inc',
+  'hash' => 'b82fd541fc6b375ebc833f87eb4ee8eef4b31ee51f7fe5c5321ae831df0a73ee',
+))
+->values(array(
+  'filename' => 'includes/theme.maintenance.inc',
+  'hash' => 'd110314b4d943c3e965fcefe452f6873b53cd6a8844154467dfcbb2b6142dc82',
+))
+->values(array(
+  'filename' => 'includes/token.inc',
+  'hash' => '015328d6573ceece0a0712fcbad890719cff8d65a37839ece36bc64e97d63466',
+))
+->values(array(
+  'filename' => 'includes/unicode.entities.inc',
+  'hash' => '2b858138596d961fbaa4c6e3986e409921df7f76b6ee1b109c4af5970f1e0f54',
+))
+->values(array(
+  'filename' => 'includes/unicode.inc',
+  'hash' => '5409227091e55cef4c1b0bb9c159720aecaa07e7bf2683fe7c242691aa1036cc',
+))
+->values(array(
+  'filename' => 'includes/update.inc',
+  'hash' => '11b276443e4eb4515453c47608f0e019a9f90e4354f2f157502eb9258636b4e5',
+))
+->values(array(
+  'filename' => 'includes/updater.inc',
+  'hash' => '1715fbda750de86ecde8abd71d61886423367d3c9a17c31138638361b1c27e51',
+))
+->values(array(
+  'filename' => 'includes/utility.inc',
+  'hash' => '04865d2c973e3df62f673b68631a880dbf39fdc5e22a5935e2e6b86576fa9030',
+))
+->values(array(
+  'filename' => 'includes/xmlrpc.inc',
+  'hash' => '1176a9e5b5990f8219b48c49bb858a2a980f95428aa519acea19282109e27e83',
+))
+->values(array(
+  'filename' => 'includes/xmlrpcs.inc',
+  'hash' => '2df450cf2153959a4581d8e61867c587f61fcdea5dd2653e36c6a6028fc1b395',
+))
+->values(array(
+  'filename' => 'modules/block/block.test',
+  'hash' => '910abf2e1b7d31e5e5330f34cf21d04e8b8d55f24cfdd7ee3e82e38bf572267e',
+))
+->values(array(
+  'filename' => 'modules/color/color.test',
+  'hash' => '5cc2a668dba0b8905ca360a7bfa04e9e501b61b7a8ac88b51ecca688dda1a21e',
+))
+->values(array(
+  'filename' => 'modules/comment/comment.module',
+  'hash' => '9f9d5a7b5e654276c81d3cbe0089bb990f085823e892dc26b90f825aef8faab7',
+))
+->values(array(
+  'filename' => 'modules/comment/comment.test',
+  'hash' => '262c7f7982e3c3d6dea3646ad5bacc6f0611dffaeb2043675b789edc31bb19ec',
+))
+->values(array(
+  'filename' => 'modules/dashboard/dashboard.test',
+  'hash' => '0472cfe50d7f5f90ba6e55003bbb6a79d8cf4791f3d39740e2f1f3df65743d79',
+))
+->values(array(
+  'filename' => 'modules/dblog/dblog.test',
+  'hash' => '8538535f68ac410003a9d0776915b4ca42e61f9fec848b4d65a79dc28a43d49c',
+))
+->values(array(
+  'filename' => 'modules/field/field.attach.inc',
+  'hash' => '65b6f010e3f9d1868098d771963113307b63fd6e6454c01f0086cd4c0de71414',
+))
+->values(array(
+  'filename' => 'modules/field/field.module',
+  'hash' => 'e4b0bab77e29904d0a95077aa3425e54bf15d8d1185bee26969bf5c59ac68698',
+))
+->values(array(
+  'filename' => 'modules/field/modules/field_sql_storage/field_sql_storage.test',
+  'hash' => 'fa8f69ac79f4190a612faa6d1df3075be39571da2e897265c13e219dccf65b1c',
+))
+->values(array(
+  'filename' => 'modules/field/modules/list/tests/list.test',
+  'hash' => '13e32f6e649512897f4e277d88aa0dbead2a605346f581321396464ab8ad0b0c',
+))
+->values(array(
+  'filename' => 'modules/field/modules/number/number.test',
+  'hash' => 'fd05e554b3ec30431d11dadea24e476f1d534cbd0c2d06bb64f003adb8fbff89',
+))
+->values(array(
+  'filename' => 'modules/field/modules/options/options.test',
+  'hash' => '2f2e15ab5e6da04033933af77663df220db3da30d0546327ef757968d628e43a',
+))
+->values(array(
+  'filename' => 'modules/field/modules/text/text.test',
+  'hash' => '9d74c6d039f55dd7d6447a59186da8d48bf20617bfe58424612798f649797586',
+))
+->values(array(
+  'filename' => 'modules/field/tests/field.test',
+  'hash' => '1b8d334223ca9e8b5cf7ebfc0727baf5552e303ee01040986e82c852bda1741a',
+))
+->values(array(
+  'filename' => 'modules/field_ui/field_ui.test',
+  'hash' => '58c6515fd7b3bf1d48dbf7a8f5f414df8e74b6e525af5d3ccc852060e245526a',
+))
+->values(array(
+  'filename' => 'modules/file/tests/file.test',
+  'hash' => '651e17859b7ba69958a72fa5a3b5bbca40dc53c79a7b512eb83076c81da0960d',
+))
+->values(array(
+  'filename' => 'modules/filter/filter.test',
+  'hash' => 'd1c4f5c10917aa93b6cc1dab58a7f3a86fe4530d21d6c8e63a8fe58a7bd7487f',
+))
+->values(array(
+  'filename' => 'modules/help/help.test',
+  'hash' => 'ff6d9f5fc415451951c21a07b125ff749a7cefba879c27e14bb42eb621c58f9d',
+))
+->values(array(
+  'filename' => 'modules/image/image.test',
+  'hash' => '610f7e9f46a18761d53566c14e34d669d5a29b5d0380c89b6c549dec694cfe56',
+))
+->values(array(
+  'filename' => 'modules/menu/menu.test',
+  'hash' => '5d584ef0191c39c11dda474a6a8f6223f6bc82cdbc41ee5742c8fe28f300949a',
+))
+->values(array(
+  'filename' => 'modules/node/node.module',
+  'hash' => 'cc290bd3cf407046025f88feb8d4e353e579128b101713abdb2e2c63ee637f14',
+))
+->values(array(
+  'filename' => 'modules/node/node.test',
+  'hash' => 'e37213792452a8f98cd0cca66396d9de27464dcc53c50c9032d1225fd794f356',
+))
+->values(array(
+  'filename' => 'modules/path/path.test',
+  'hash' => 'bf6a774f0d9b92a48d752eaa270f430ea21ce35e0c09da423442939ac56f9473',
+))
+->values(array(
+  'filename' => 'modules/rdf/rdf.test',
+  'hash' => '358e2ae2069a15c6ba828f3428ab979632ece7aa0ba33a6a5bdbc1d065961373',
+))
+->values(array(
+  'filename' => 'modules/search/search.extender.inc',
+  'hash' => 'a8c42b2cac7863835f7f632c7fbfd77b6fe936d465b3bbff73b1645a99c0c9d3',
+))
+->values(array(
+  'filename' => 'modules/search/search.test',
+  'hash' => '2a7af7339aae041f1ddf3916fefc58635c3101b9397ea865cf712a87034aa963',
+))
+->values(array(
+  'filename' => 'modules/shortcut/shortcut.test',
+  'hash' => '0bbc6b16348442ce0aa5cd610feed80ac2b2b3887c709fc457ba0a913ae01f3b',
+))
+->values(array(
+  'filename' => 'modules/system/system.archiver.inc',
+  'hash' => 'faa849f3e646a910ab82fd6c8bbf0a4e6b8c60725d7ba81ec0556bd716616cd1',
+))
+->values(array(
+  'filename' => 'modules/system/system.mail.inc',
+  'hash' => 'b7ee9ea80059788d8b53823a91db015dfa6c2a66589a6eca6f97b99340e12d6f',
+))
+->values(array(
+  'filename' => 'modules/system/system.queue.inc',
+  'hash' => '4bfc1845db9c888f3df0937a9ff6d783de77880e6301431db9eb2268b9fe572d',
+))
+->values(array(
+  'filename' => 'modules/system/system.tar.inc',
+  'hash' => '743529eab763be74e8169c945e875381fd77d71e336c6d77b7d28e2dfd023a21',
+))
+->values(array(
+  'filename' => 'modules/system/system.test',
+  'hash' => '1bbebd6438335e2b1b6bf4758b6a02c642a2cbe4180bb03fb7dcce2782c3f0cf',
+))
+->values(array(
+  'filename' => 'modules/system/system.updater.inc',
+  'hash' => 'e2eeed65b833a6215f807b113f6fb4cc3cc487e93efcb1402ed87c536d2c9ea6',
+))
+->values(array(
+  'filename' => 'modules/taxonomy/taxonomy.module',
+  'hash' => 'aab96a917f887d5cd09c517316ca3253d94b08b141a0946449f0a40683411401',
+))
+->values(array(
+  'filename' => 'modules/taxonomy/taxonomy.test',
+  'hash' => 'bf998b97d53e036d6f5a0af8a26dc78b0afa1ae37d2f4aefd4aae087a9351f08',
+))
+->values(array(
+  'filename' => 'modules/update/update.test',
+  'hash' => 'c357e4a16e1d96b13706a03aff7a3f30011f4e997087c040c5cf8ec77a132a5f',
+))
+->values(array(
+  'filename' => 'modules/user/user.module',
+  'hash' => 'd4466cdad9273944d42b059607586bc155d52ca2a6b898523295159e2c5b0aa0',
+))
+->values(array(
+  'filename' => 'modules/user/user.test',
+  'hash' => '9b6cc136d3a267ad039069ac040f9ec33481ef43fd1fb888929750a076302c7c',
+))
+->values(array(
+  'filename' => 'profiles/standard/standard.profile',
+  'hash' => '7237f80e54061c9611c6dc4fcf6225951eedba0704694f4d801673693ba11a05',
+))
+->execute();
+
+db_create_table('role', array(
+  'fields' => array(
+    'rid' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+      'default' => '',
+      'translatable' => TRUE,
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'unique keys' => array(
+    'name' => array(
+      'name',
+    ),
+  ),
+  'primary key' => array(
+    'rid',
+  ),
+  'indexes' => array(
+    'name_weight' => array(
+      'name',
+      'weight',
+    ),
+  ),
+  'module' => 'user',
+  'name' => 'role',
+));
+db_insert('role')->fields(array(
+  'rid',
+  'name',
+  'weight',
+))
+->values(array(
+  'rid' => '3',
+  'name' => 'administrator',
+  'weight' => '2',
+))
+->values(array(
+  'rid' => '1',
+  'name' => 'anonymous user',
+  'weight' => '0',
+))
+->values(array(
+  'rid' => '2',
+  'name' => 'authenticated user',
+  'weight' => '1',
+))
+->execute();
+
+db_create_table('role_permission', array(
+  'fields' => array(
+    'rid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'permission' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'module' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+  ),
+  'primary key' => array(
+    'rid',
+    'permission',
+  ),
+  'indexes' => array(
+    'permission' => array(
+      'permission',
+    ),
+  ),
+  'foreign keys' => array(
+    'role' => array(
+      'table' => 'roles',
+      'columns' => array(
+        'rid' => 'rid',
+      ),
+    ),
+  ),
+  'module' => 'user',
+  'name' => 'role_permission',
+));
+db_insert('role_permission')->fields(array(
+  'rid',
+  'permission',
+  'module',
+))
+->values(array(
+  'rid' => '1',
+  'permission' => 'access comments',
+  'module' => 'comment',
+))
+->values(array(
+  'rid' => '1',
+  'permission' => 'access content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '1',
+  'permission' => 'use text format filtered_html',
+  'module' => 'filter',
+))
+->values(array(
+  'rid' => '2',
+  'permission' => 'access comments',
+  'module' => 'comment',
+))
+->values(array(
+  'rid' => '2',
+  'permission' => 'access content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '2',
+  'permission' => 'post comments',
+  'module' => 'comment',
+))
+->values(array(
+  'rid' => '2',
+  'permission' => 'skip comment approval',
+  'module' => 'comment',
+))
+->values(array(
+  'rid' => '2',
+  'permission' => 'use text format filtered_html',
+  'module' => 'filter',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access administration pages',
+  'module' => 'system',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access comments',
+  'module' => 'comment',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access content overview',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access contextual links',
+  'module' => 'contextual',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access dashboard',
+  'module' => 'dashboard',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access overlay',
+  'module' => 'overlay',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access site in maintenance mode',
+  'module' => 'system',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access site reports',
+  'module' => 'system',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access toolbar',
+  'module' => 'toolbar',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access user profiles',
+  'module' => 'user',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer actions',
+  'module' => 'system',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer blocks',
+  'module' => 'block',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer comments',
+  'module' => 'comment',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer content types',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer filters',
+  'module' => 'filter',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer image styles',
+  'module' => 'image',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer menu',
+  'module' => 'menu',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer modules',
+  'module' => 'system',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer nodes',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer permissions',
+  'module' => 'user',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer search',
+  'module' => 'search',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer shortcuts',
+  'module' => 'shortcut',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer site configuration',
+  'module' => 'system',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer software updates',
+  'module' => 'system',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer taxonomy',
+  'module' => 'taxonomy',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer themes',
+  'module' => 'system',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer url aliases',
+  'module' => 'path',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer users',
+  'module' => 'user',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'block IP addresses',
+  'module' => 'system',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'bypass node access',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'cancel account',
+  'module' => 'user',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'change own username',
+  'module' => 'user',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'create article content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'create page content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'create url aliases',
+  'module' => 'path',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'customize shortcut links',
+  'module' => 'shortcut',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'delete any article content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'delete any page content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'delete own article content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'delete own page content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'delete revisions',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'delete terms in 1',
+  'module' => 'taxonomy',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'edit any article content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'edit any page content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'edit own article content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'edit own comments',
+  'module' => 'comment',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'edit own page content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'edit terms in 1',
+  'module' => 'taxonomy',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'post comments',
+  'module' => 'comment',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'revert revisions',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'search content',
+  'module' => 'search',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'select account cancellation method',
+  'module' => 'user',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'skip comment approval',
+  'module' => 'comment',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'switch shortcut sets',
+  'module' => 'shortcut',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'use advanced search',
+  'module' => 'search',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'use text format filtered_html',
+  'module' => 'filter',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'use text format full_html',
+  'module' => 'filter',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'view own unpublished content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'view revisions',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'view the administration theme',
+  'module' => 'system',
+))
+->execute();
+
+db_create_table('search_dataset', array(
+  'fields' => array(
+    'sid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 16,
+      'not null' => TRUE,
+    ),
+    'data' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+      'size' => 'big',
+    ),
+    'reindex' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'primary key' => array(
+    'sid',
+    'type',
+  ),
+  'module' => 'search',
+  'name' => 'search_dataset',
+));
+
+db_create_table('search_index', array(
+  'fields' => array(
+    'word' => array(
+      'type' => 'varchar',
+      'length' => 50,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'sid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 16,
+      'not null' => TRUE,
+    ),
+    'score' => array(
+      'type' => 'float',
+      'not null' => FALSE,
+    ),
+  ),
+  'indexes' => array(
+    'sid_type' => array(
+      'sid',
+      'type',
+    ),
+  ),
+  'foreign keys' => array(
+    'search_dataset' => array(
+      'table' => 'search_dataset',
+      'columns' => array(
+        'sid' => 'sid',
+        'type' => 'type',
+      ),
+    ),
+  ),
+  'primary key' => array(
+    'word',
+    'sid',
+    'type',
+  ),
+  'module' => 'search',
+  'name' => 'search_index',
+));
+
+db_create_table('search_node_links', array(
+  'fields' => array(
+    'sid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 16,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'nid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'caption' => array(
+      'type' => 'text',
+      'size' => 'big',
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'sid',
+    'type',
+    'nid',
+  ),
+  'indexes' => array(
+    'nid' => array(
+      'nid',
+    ),
+  ),
+  'module' => 'search',
+  'name' => 'search_node_links',
+));
+
+db_create_table('search_total', array(
+  'fields' => array(
+    'word' => array(
+      'type' => 'varchar',
+      'length' => 50,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'count' => array(
+      'type' => 'float',
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'word',
+  ),
+  'module' => 'search',
+  'name' => 'search_total',
+));
+
+db_create_table('semaphore', array(
+  'fields' => array(
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'value' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'expire' => array(
+      'type' => 'float',
+      'size' => 'big',
+      'not null' => TRUE,
+    ),
+  ),
+  'indexes' => array(
+    'value' => array(
+      'value',
+    ),
+    'expire' => array(
+      'expire',
+    ),
+  ),
+  'primary key' => array(
+    'name',
+  ),
+  'module' => 'system',
+  'name' => 'semaphore',
+));
+
+db_create_table('sequences', array(
+  'fields' => array(
+    'value' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'value',
+  ),
+  'module' => 'system',
+  'name' => 'sequences',
+));
+db_insert('sequences')->fields(array(
+  'value',
+))
+->values(array(
+  'value' => '1',
+))
+->execute();
+
+db_create_table('sessions', array(
+  'fields' => array(
+    'uid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'sid' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+    ),
+    'ssid' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'hostname' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'timestamp' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'cache' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'session' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+  ),
+  'primary key' => array(
+    'sid',
+    'ssid',
+  ),
+  'indexes' => array(
+    'timestamp' => array(
+      'timestamp',
+    ),
+    'uid' => array(
+      'uid',
+    ),
+    'ssid' => array(
+      'ssid',
+    ),
+  ),
+  'foreign keys' => array(
+    'session_user' => array(
+      'table' => 'users',
+      'columns' => array(
+        'uid' => 'uid',
+      ),
+    ),
+  ),
+  'module' => 'system',
+  'name' => 'sessions',
+));
+
+db_create_table('shortcut_set', array(
+  'fields' => array(
+    'set_name' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'title' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+  ),
+  'primary key' => array(
+    'set_name',
+  ),
+  'foreign keys' => array(
+    'menu_name' => array(
+      'table' => 'menu_links',
+      'columns' => array(
+        'set_name' => 'menu_name',
+      ),
+    ),
+  ),
+  'module' => 'shortcut',
+  'name' => 'shortcut_set',
+));
+db_insert('shortcut_set')->fields(array(
+  'set_name',
+  'title',
+))
+->values(array(
+  'set_name' => 'shortcut-set-1',
+  'title' => 'Default',
+))
+->execute();
+
+db_create_table('shortcut_set_users', array(
+  'fields' => array(
+    'uid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'set_name' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+  ),
+  'primary key' => array(
+    'uid',
+  ),
+  'indexes' => array(
+    'set_name' => array(
+      'set_name',
+    ),
+  ),
+  'foreign keys' => array(
+    'set_user' => array(
+      'table' => 'users',
+      'columns' => array(
+        'uid' => 'uid',
+      ),
+    ),
+    'set_name' => array(
+      'table' => 'shortcut_set',
+      'columns' => array(
+        'set_name' => 'set_name',
+      ),
+    ),
+  ),
+  'module' => 'shortcut',
+  'name' => 'shortcut_set_users',
+));
+
+db_create_table('system', array(
+  'fields' => array(
+    'filename' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 12,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'owner' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'status' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'bootstrap' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'schema_version' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => -1,
+      'size' => 'small',
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'info' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'filename',
+  ),
+  'indexes' => array(
+    'system_list' => array(
+      'status',
+      'bootstrap',
+      'type',
+      'weight',
+      'name',
+    ),
+    'type_name' => array(
+      'type',
+      'name',
+    ),
+  ),
+  'module' => 'system',
+  'name' => 'system',
+));
+db_insert('system')->fields(array(
+  'filename',
+  'name',
+  'type',
+  'owner',
+  'status',
+  'bootstrap',
+  'schema_version',
+  'weight',
+  'info',
+))
+->values(array(
+  'filename' => 'modules/aggregator/aggregator.module',
+  'name' => 'aggregator',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:13:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/aggregator/tests/aggregator_test.module',
+  'name' => 'aggregator_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/block/block.module',
+  'name' => 'block',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7008',
+  'weight' => '-5',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/block/tests/block_test.module',
+  'name' => 'block_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/blog/blog.module',
+  'name' => 'blog',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:11:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/book/book.module',
+  'name' => 'book',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:13:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/color/color.module',
+  'name' => 'color',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7001',
+  'weight' => '0',
+  'info' => 'a:11:{s:4:"name";s:5:"Color";s:11:"description";s:70:"Allows administrators to change the color scheme of compatible themes.";s:7:"package";s:4:"Core";s:7:"version";s:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/comment/comment.module',
+  'name' => 'comment',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7008',
+  'weight' => '0',
+  'info' => 'a:13:{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:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/contact/contact.module',
+  'name' => 'contact',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/contextual/contextual.module',
+  'name' => 'contextual',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:11:{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:3:"7.8";s:4:"core";s:3:"7.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/dashboard/dashboard.module',
+  'name' => 'dashboard',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/dblog/dblog.module',
+  'name' => 'dblog',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '1',
+  'schema_version' => '7001',
+  'weight' => '0',
+  'info' => 'a:11:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/field/field.module',
+  'name' => 'field',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7001',
+  'weight' => '0',
+  'info' => 'a:13:{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:3:"7.8";s:4:"core";s:3:"7.x";s:5:"files";a:3:{i:0;s:12:"field.module";i:1;s:16:"field.attach.inc";i:2;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:"1314817616";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/field/modules/field_sql_storage/field_sql_storage.module',
+  'name' => 'field_sql_storage',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7002',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/field/modules/list/list.module',
+  'name' => 'list',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7002',
+  'weight' => '0',
+  'info' => 'a:11:{s:4:"name";s:4:"List";s:11:"description";s:69:"Defines list field types. Use with Options to create selection lists.";s:7:"package";s:4:"Core";s:7:"version";s:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/field/modules/list/tests/list_test.module',
+  'name' => 'list_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/field/modules/number/number.module',
+  'name' => 'number',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:11:{s:4:"name";s:6:"Number";s:11:"description";s:28:"Defines numeric field types.";s:7:"package";s:4:"Core";s:7:"version";s:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/field/modules/options/options.module',
+  'name' => 'options',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:11:{s:4:"name";s:7:"Options";s:11:"description";s:82:"Defines selection, check box and radio button widgets for text and numeric fields.";s:7:"package";s:4:"Core";s:7:"version";s:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/field/modules/text/text.module',
+  'name' => 'text',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7000',
+  'weight' => '0',
+  'info' => 'a:13:{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:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;s:11:"explanation";s:73:"Field type(s) in use - see <a href="/admin/reports/fields">Field list</a>";}',
+))
+->values(array(
+  'filename' => 'modules/field/tests/field_test.module',
+  'name' => 'field_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/field_ui/field_ui.module',
+  'name' => 'field_ui',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:11:{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:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/file/file.module',
+  'name' => 'file',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:11:{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:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/file/tests/file_module_test.module',
+  'name' => 'file_module_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/filter/filter.module',
+  'name' => 'filter',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7010',
+  'weight' => '0',
+  'info' => 'a:13:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/forum/forum.module',
+  'name' => 'forum',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:13:{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:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/help/help.module',
+  'name' => 'help',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:11:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/image/image.module',
+  'name' => 'image',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7001',
+  'weight' => '0',
+  'info' => 'a:14:{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:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;s:8:"required";b:1;s:11:"explanation";s:73:"Field type(s) in use - see <a href="/admin/reports/fields">Field list</a>";}',
+))
+->values(array(
+  'filename' => 'modules/image/tests/image_module_test.module',
+  'name' => 'image_module_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/locale/locale.module',
+  'name' => 'locale',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/locale/tests/locale_test.module',
+  'name' => 'locale_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/menu/menu.module',
+  'name' => 'menu',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7002',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/node/node.module',
+  'name' => 'node',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7012',
+  'weight' => '0',
+  'info' => 'a:14:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/node/tests/node_access_test.module',
+  'name' => 'node_access_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/node/tests/node_test.module',
+  'name' => 'node_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/node/tests/node_test_exception.module',
+  'name' => 'node_test_exception',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/openid/openid.module',
+  'name' => 'openid',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:11:{s:4:"name";s:6:"OpenID";s:11:"description";s:48:"Allows users to log into your site using OpenID.";s:7:"version";s:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/openid/tests/openid_test.module',
+  'name' => 'openid_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/overlay/overlay.module',
+  'name' => 'overlay',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '1',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:11:{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:3:"7.8";s:4:"core";s:3:"7.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/path/path.module',
+  'name' => 'path',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/php/php.module',
+  'name' => 'php',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:11:{s:4:"name";s:10:"PHP filter";s:11:"description";s:50:"Allows embedded PHP code/snippets to be evaluated.";s:7:"package";s:4:"Core";s:7:"version";s:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/poll/poll.module',
+  'name' => 'poll',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/profile/profile.module',
+  'name' => 'profile',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:13:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/rdf/rdf.module',
+  'name' => 'rdf',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:11:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/rdf/tests/rdf_test.module',
+  'name' => 'rdf_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/search/search.module',
+  'name' => 'search',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7000',
+  'weight' => '0',
+  'info' => 'a:13:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/search/tests/search_embedded_form.module',
+  'name' => 'search_embedded_form',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/search/tests/search_extra_type.module',
+  'name' => 'search_extra_type',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/shortcut/shortcut.module',
+  'name' => 'shortcut',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/simpletest.module',
+  'name' => 'simpletest',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{s:4:"name";s:7:"Testing";s:11:"description";s:53:"Provides a framework for unit and functional testing.";s:7:"package";s:4:"Core";s:7:"version";s:3:"7.8";s:4:"core";s:3:"7.x";s:5:"files";a:42:{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:32:"tests/entity_crud_hook_test.test";i:10;s:23:"tests/entity_query.test";i:11;s:16:"tests/error.test";i:12;s:15:"tests/file.test";i:13;s:23:"tests/filetransfer.test";i:14;s:15:"tests/form.test";i:15;s:16:"tests/graph.test";i:16;s:16:"tests/image.test";i:17;s:15:"tests/lock.test";i:18;s:15:"tests/mail.test";i:19;s:15:"tests/menu.test";i:20;s:17:"tests/module.test";i:21;s:19:"tests/password.test";i:22;s:15:"tests/path.test";i:23;s:19:"tests/registry.test";i:24;s:17:"tests/schema.test";i:25;s:18:"tests/session.test";i:26;s:20:"tests/tablesort.test";i:27;s:16:"tests/theme.test";i:28;s:18:"tests/unicode.test";i:29;s:17:"tests/update.test";i:30;s:17:"tests/xmlrpc.test";i:31;s:26:"tests/upgrade/upgrade.test";i:32;s:34:"tests/upgrade/upgrade.comment.test";i:33;s:33:"tests/upgrade/upgrade.filter.test";i:34;s:32:"tests/upgrade/upgrade.forum.test";i:35;s:33:"tests/upgrade/upgrade.locale.test";i:36;s:31:"tests/upgrade/upgrade.menu.test";i:37;s:31:"tests/upgrade/upgrade.node.test";i:38;s:35:"tests/upgrade/upgrade.taxonomy.test";i:39;s:39:"tests/upgrade/upgrade.translatable.test";i:40;s:33:"tests/upgrade/upgrade.upload.test";i:41;s:31:"tests/upgrade/upgrade.user.test";}s:9:"configure";s:41:"admin/config/development/testing/settings";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/actions_loop_test.module',
+  'name' => 'actions_loop_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/ajax_forms_test.module',
+  'name' => 'ajax_forms_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/ajax_test.module',
+  'name' => 'ajax_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/batch_test.module',
+  'name' => 'batch_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/common_test.module',
+  'name' => 'common_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:13:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/common_test_cron_helper.module',
+  'name' => 'common_test_cron_helper',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/database_test.module',
+  'name' => 'database_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.module',
+  'name' => 'drupal_system_listing_compatible_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.module',
+  'name' => 'drupal_system_listing_incompatible_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/entity_cache_test.module',
+  'name' => 'entity_cache_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/entity_cache_test_dependency.module',
+  'name' => 'entity_cache_test_dependency',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/entity_crud_hook_test.module',
+  'name' => 'entity_crud_hook_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/error_test.module',
+  'name' => 'error_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/file_test.module',
+  'name' => 'file_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/filter_test.module',
+  'name' => 'filter_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/form_test.module',
+  'name' => 'form_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/image_test.module',
+  'name' => 'image_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/menu_test.module',
+  'name' => 'menu_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/module_test.module',
+  'name' => 'module_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/requirements1_test.module',
+  'name' => 'requirements1_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => "a:12:{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:3:\"7.8\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1314817616\";s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}",
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/requirements2_test.module',
+  'name' => 'requirements2_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => "a:12:{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:3:\"7.8\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1314817616\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}",
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/session_test.module',
+  'name' => 'session_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/system_dependencies_test.module',
+  'name' => 'system_dependencies_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/system_test.module',
+  'name' => 'system_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/taxonomy_test.module',
+  'name' => 'taxonomy_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/theme_test.module',
+  'name' => 'theme_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/update_test_1.module',
+  'name' => 'update_test_1',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/update_test_2.module',
+  'name' => 'update_test_2',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/update_test_3.module',
+  'name' => 'update_test_3',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/url_alter_test.module',
+  'name' => 'url_alter_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/xmlrpc_test.module',
+  'name' => 'xmlrpc_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/statistics/statistics.module',
+  'name' => 'statistics',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/syslog/syslog.module',
+  'name' => 'syslog',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:11:{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:3:"7.8";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:11:"syslog.test";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/system/system.module',
+  'name' => 'system',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '1',
+  'schema_version' => '7071',
+  'weight' => '0',
+  'info' => 'a:13:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/taxonomy/taxonomy.module',
+  'name' => 'taxonomy',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7010',
+  'weight' => '0',
+  'info' => 'a:14:{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:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;s:8:"required";b:1;s:11:"explanation";s:73:"Field type(s) in use - see <a href="/admin/reports/fields">Field list</a>";}',
+))
+->values(array(
+  'filename' => 'modules/toolbar/toolbar.module',
+  'name' => 'toolbar',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:11:{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:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/tracker/tracker.module',
+  'name' => 'tracker',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:11:{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:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/translation/tests/translation_test.module',
+  'name' => 'translation_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/translation/translation.module',
+  'name' => 'translation',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:11:{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:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/trigger/tests/trigger_test.module',
+  'name' => 'trigger_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/trigger/trigger.module',
+  'name' => 'trigger',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/update/tests/aaa_update_test.module',
+  'name' => 'aaa_update_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/update/tests/bbb_update_test.module',
+  'name' => 'bbb_update_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/update/tests/ccc_update_test.module',
+  'name' => 'ccc_update_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/update/tests/update_test.module',
+  'name' => 'update_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/update/update.module',
+  'name' => 'update',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7001',
+  'weight' => '0',
+  'info' => 'a:12:{s:4:"name";s:14:"Update manager";s:11:"description";s:104:"Checks for available updates, and can securely install or update modules and themes via a web interface.";s:7:"version";s:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/user/tests/user_form_test.module',
+  'name' => 'user_form_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/user/user.module',
+  'name' => 'user',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7017',
+  'weight' => '0',
+  'info' => 'a:14:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'profiles/standard/standard.profile',
+  'name' => 'standard',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '1000',
+  'info' => 'a:14:{s:4:"name";s:8:"Standard";s:11:"description";s:51:"Install with commonly used features pre-configured.";s:7:"version";s:3:"7.8";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:5:"files";a:1:{i:0;s:16:"standard.profile";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:7:"package";s:5:"Other";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;s:6:"hidden";b:1;s:8:"required";b:1;s:17:"distribution_name";s:6:"Drupal";}',
+))
+->values(array(
+  'filename' => 'themes/bartik/bartik.info',
+  'name' => 'bartik',
+  'type' => 'theme',
+  'owner' => 'themes/engines/phptemplate/phptemplate.engine',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:18:{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:3:"7.8";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:"1314817616";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: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";}}',
+))
+->values(array(
+  'filename' => 'themes/garland/garland.info',
+  'name' => 'garland',
+  'type' => 'theme',
+  'owner' => 'themes/engines/phptemplate/phptemplate.engine',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:18:{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:3:"7.8";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:"1314817616";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: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";}}',
+))
+->values(array(
+  'filename' => 'themes/seven/seven.info',
+  'name' => 'seven',
+  'type' => 'theme',
+  'owner' => 'themes/engines/phptemplate/phptemplate.engine',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:18:{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:3:"7.8";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:"1314817616";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: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";}}',
+))
+->values(array(
+  'filename' => 'themes/stark/stark.info',
+  'name' => 'stark',
+  'type' => 'theme',
+  'owner' => 'themes/engines/phptemplate/phptemplate.engine',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => "a:17:{s:4:\"name\";s:5:\"Stark\";s:11:\"description\";s:208:\"This theme demonstrates Drupal's default HTML markup and CSS styles. To learn how to build your own theme and override Drupal's default code, see the <a href=\"http://drupal.org/theme-guide\">Theming Guide</a>.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:3:\"7.8\";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:\"1314817616\";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: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\";}}",
+))
+->values(array(
+  'filename' => 'themes/tests/test_theme/test_theme.info',
+  'name' => 'test_theme',
+  'type' => 'theme',
+  'owner' => 'themes/engines/phptemplate/phptemplate.engine',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:17:{s:4:"name";s:10:"Test theme";s:11:"description";s:34:"Theme for testing the theme system";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:15:"system.base.css";s:39:"themes/tests/test_theme/system.base.css";}}s:7:"version";s:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";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:38:"themes/tests/test_theme/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}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";}}',
+))
+->values(array(
+  'filename' => 'themes/tests/update_test_basetheme/update_test_basetheme.info',
+  'name' => 'update_test_basetheme',
+  'type' => 'theme',
+  'owner' => 'themes/engines/phptemplate/phptemplate.engine',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:17:{s:4:"name";s:22:"Update test base theme";s:11:"description";s:63:"Test theme which acts as a base theme for other test subthemes.";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"version";s:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";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:49:"themes/tests/update_test_basetheme/screenshot.png";s:3:"php";s:5:"5.2.4";s:11:"stylesheets";a:0:{}s:7:"scripts";a:0:{}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";}}',
+))
+->values(array(
+  'filename' => 'themes/tests/update_test_subtheme/update_test_subtheme.info',
+  'name' => 'update_test_subtheme',
+  'type' => 'theme',
+  'owner' => 'themes/engines/phptemplate/phptemplate.engine',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:18:{s:4:"name";s:20:"Update test subtheme";s:11:"description";s:62:"Test theme which uses update_test_basetheme as the base theme.";s:4:"core";s:3:"7.x";s:10:"base theme";s:21:"update_test_basetheme";s:6:"hidden";b:1;s:7:"version";s:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";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:48:"themes/tests/update_test_subtheme/screenshot.png";s:3:"php";s:5:"5.2.4";s:11:"stylesheets";a:0:{}s:7:"scripts";a:0:{}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";}}',
+))
+->execute();
+
+db_create_table('taxonomy_index', array(
+  'fields' => array(
+    'nid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'sticky' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'term_node' => array(
+      'tid',
+      'sticky',
+      'created',
+    ),
+    'nid' => array(
+      'nid',
+    ),
+  ),
+  'foreign keys' => array(
+    'tracked_node' => array(
+      'table' => 'node',
+      'columns' => array(
+        'nid' => 'nid',
+      ),
+    ),
+    'term' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'taxonomy',
+  'name' => 'taxonomy_index',
+));
+
+db_create_table('taxonomy_term_data', array(
+  'fields' => array(
+    'tid' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'vid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+      'translatable' => TRUE,
+    ),
+    'description' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+      'translatable' => TRUE,
+    ),
+    'format' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => FALSE,
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'primary key' => array(
+    'tid',
+  ),
+  'foreign keys' => array(
+    'vocabulary' => array(
+      'table' => 'taxonomy_vocabulary',
+      'columns' => array(
+        'vid' => 'vid',
+      ),
+    ),
+  ),
+  'indexes' => array(
+    'taxonomy_tree' => array(
+      'vid',
+      'weight',
+      'name',
+    ),
+    'vid_name' => array(
+      'vid',
+      'name',
+    ),
+    'name' => array(
+      'name',
+    ),
+  ),
+  'module' => 'taxonomy',
+  'name' => 'taxonomy_term_data',
+));
+
+db_create_table('taxonomy_term_hierarchy', array(
+  'fields' => array(
+    'tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'parent' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'parent' => array(
+      'parent',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_term_data' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'tid' => 'tid',
+      ),
+    ),
+  ),
+  'primary key' => array(
+    'tid',
+    'parent',
+  ),
+  'module' => 'taxonomy',
+  'name' => 'taxonomy_term_hierarchy',
+));
+
+db_create_table('taxonomy_vocabulary', array(
+  'fields' => array(
+    'vid' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+      'translatable' => TRUE,
+    ),
+    'machine_name' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'description' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+      'translatable' => TRUE,
+    ),
+    'hierarchy' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'module' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'primary key' => array(
+    'vid',
+  ),
+  'indexes' => array(
+    'list' => array(
+      'weight',
+      'name',
+    ),
+  ),
+  'unique keys' => array(
+    'machine_name' => array(
+      'machine_name',
+    ),
+  ),
+  'module' => 'taxonomy',
+  'name' => 'taxonomy_vocabulary',
+));
+db_insert('taxonomy_vocabulary')->fields(array(
+  'vid',
+  'name',
+  'machine_name',
+  'description',
+  'hierarchy',
+  'module',
+  'weight',
+))
+->values(array(
+  'vid' => '1',
+  'name' => 'Tags',
+  'machine_name' => 'tags',
+  'description' => 'Use tags to group articles on similar topics into categories.',
+  'hierarchy' => '0',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->execute();
+
+db_create_table('url_alias', array(
+  'fields' => array(
+    'pid' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'source' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'alias' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 12,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+  ),
+  'primary key' => array(
+    'pid',
+  ),
+  'indexes' => array(
+    'alias_language_pid' => array(
+      'alias',
+      'language',
+      'pid',
+    ),
+    'source_language_pid' => array(
+      'source',
+      'language',
+      'pid',
+    ),
+  ),
+  'module' => 'system',
+  'name' => 'url_alias',
+));
+
+db_create_table('users', array(
+  'fields' => array(
+    'uid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 60,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'pass' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'mail' => array(
+      'type' => 'varchar',
+      'length' => 254,
+      'not null' => FALSE,
+      'default' => '',
+    ),
+    'theme' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'signature' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'signature_format' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => FALSE,
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'access' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'login' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'status' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'timezone' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 12,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'picture' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'init' => array(
+      'type' => 'varchar',
+      'length' => 254,
+      'not null' => FALSE,
+      'default' => '',
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+      'serialize' => TRUE,
+    ),
+  ),
+  'indexes' => array(
+    'access' => array(
+      'access',
+    ),
+    'created' => array(
+      'created',
+    ),
+    'mail' => array(
+      'mail',
+    ),
+  ),
+  'unique keys' => array(
+    'name' => array(
+      'name',
+    ),
+  ),
+  'primary key' => array(
+    'uid',
+  ),
+  'foreign keys' => array(
+    'signature_format' => array(
+      'table' => 'filter_format',
+      'columns' => array(
+        'signature_format' => 'format',
+      ),
+    ),
+  ),
+  'module' => 'user',
+  'name' => 'users',
+));
+db_insert('users')->fields(array(
+  'uid',
+  'name',
+  'pass',
+  'mail',
+  'theme',
+  'signature',
+  'signature_format',
+  'created',
+  'access',
+  'login',
+  'status',
+  'timezone',
+  'language',
+  'picture',
+  'init',
+  'data',
+))
+->values(array(
+  'uid' => '0',
+  'name' => '',
+  'pass' => '',
+  'mail' => '',
+  'theme' => '',
+  'signature' => '',
+  'signature_format' => NULL,
+  'created' => '0',
+  'access' => '0',
+  'login' => '0',
+  'status' => '0',
+  'timezone' => NULL,
+  'language' => '',
+  'picture' => '0',
+  'init' => '',
+  'data' => NULL,
+))
+->values(array(
+  'uid' => '1',
+  'name' => 'drupal',
+  'pass' => '$S$Dd8fQYS0HzAJzTjnOXmJmKpA5C2HRvErY9zFY2w9xbv93D9CMAzC',
+  'mail' => 'drupal@drupal.org',
+  'theme' => '',
+  'signature' => '',
+  'signature_format' => NULL,
+  'created' => '1314996967',
+  'access' => '1314997072',
+  'login' => '1314997072',
+  'status' => '1',
+  'timezone' => NULL,
+  'language' => '',
+  'picture' => '0',
+  'init' => 'drupal@drupal.org',
+  'data' => 'b:0;',
+))
+->execute();
+
+db_create_table('users_roles', array(
+  'fields' => array(
+    'uid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'rid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'primary key' => array(
+    'uid',
+    'rid',
+  ),
+  'indexes' => array(
+    'rid' => array(
+      'rid',
+    ),
+  ),
+  'foreign keys' => array(
+    'user' => array(
+      'table' => 'users',
+      'columns' => array(
+        'uid' => 'uid',
+      ),
+    ),
+    'role' => array(
+      'table' => 'roles',
+      'columns' => array(
+        'rid' => 'rid',
+      ),
+    ),
+  ),
+  'module' => 'user',
+  'name' => 'users_roles',
+));
+db_insert('users_roles')->fields(array(
+  'uid',
+  'rid',
+))
+->values(array(
+  'uid' => '1',
+  'rid' => '3',
+))
+->execute();
+
+db_create_table('variable', array(
+  'fields' => array(
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'value' => array(
+      'type' => 'blob',
+      'not null' => TRUE,
+      'size' => 'big',
+      'translatable' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'name',
+  ),
+  'module' => 'system',
+  'name' => 'variable',
+));
+db_insert('variable')->fields(array(
+  'name',
+  'value',
+))
+->values(array(
+  'name' => 'admin_theme',
+  'value' => 's:5:"seven";',
+))
+->values(array(
+  'name' => 'clean_url',
+  'value' => 's:1:"1";',
+))
+->values(array(
+  'name' => 'comment_page',
+  'value' => 'i:0;',
+))
+->values(array(
+  'name' => 'cron_key',
+  'value' => 's:43:"P9y9ueNXR7abU9Uwj78ytIBHKuyFT-TR0Mr6QCRlS0I";',
+))
+->values(array(
+  'name' => 'cron_last',
+  'value' => 'i:1314997072;',
+))
+->values(array(
+  'name' => 'css_js_query_string',
+  'value' => 's:6:"lqwyjf";',
+))
+->values(array(
+  'name' => 'date_default_timezone',
+  'value' => 's:19:"America/Los_Angeles";',
+))
+->values(array(
+  'name' => 'drupal_private_key',
+  'value' => 's:43:"1Hor8adVgHuJi3JPIxu3N6JLs4hNFsR9w8WLHBnM_a8";',
+))
+->values(array(
+  'name' => 'file_temporary_path',
+  'value' => 's:26:"/Applications/MAMP/tmp/php";',
+))
+->values(array(
+  'name' => 'filter_fallback_format',
+  'value' => 's:10:"plain_text";',
+))
+->values(array(
+  'name' => 'install_profile',
+  'value' => 's:8:"standard";',
+))
+->values(array(
+  'name' => 'install_task',
+  'value' => 's:4:"done";',
+))
+->values(array(
+  'name' => 'install_time',
+  'value' => 'i:1314997072;',
+))
+->values(array(
+  'name' => 'menu_expanded',
+  'value' => 'a:0:{}',
+))
+->values(array(
+  'name' => 'menu_masks',
+  'value' => '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;}',
+))
+->values(array(
+  'name' => 'node_admin_theme',
+  'value' => 's:1:"1";',
+))
+->values(array(
+  'name' => 'node_options_page',
+  'value' => 'a:1:{i:0;s:6:"status";}',
+))
+->values(array(
+  'name' => 'node_submitted_page',
+  'value' => 'b:0;',
+))
+->values(array(
+  'name' => 'path_alias_whitelist',
+  'value' => 'a:0:{}',
+))
+->values(array(
+  'name' => 'site_default_country',
+  'value' => 's:2:"US";',
+))
+->values(array(
+  'name' => 'site_mail',
+  'value' => 's:17:"drupal@drupal.org";',
+))
+->values(array(
+  'name' => 'site_name',
+  'value' => 's:9:"localhost";',
+))
+->values(array(
+  'name' => 'theme_default',
+  'value' => 's:6:"bartik";',
+))
+->values(array(
+  'name' => 'update_last_check',
+  'value' => 'i:1314997074;',
+))
+->values(array(
+  'name' => 'update_notify_emails',
+  'value' => 'a:1:{i:0;s:17:"drupal@drupal.org";}',
+))
+->values(array(
+  'name' => 'user_admin_role',
+  'value' => 's:1:"3";',
+))
+->values(array(
+  'name' => 'user_pictures',
+  'value' => 's:1:"1";',
+))
+->values(array(
+  'name' => 'user_picture_dimensions',
+  'value' => 's:9:"1024x1024";',
+))
+->values(array(
+  'name' => 'user_picture_file_size',
+  'value' => 's:3:"800";',
+))
+->values(array(
+  'name' => 'user_picture_style',
+  'value' => 's:9:"thumbnail";',
+))
+->values(array(
+  'name' => 'user_register',
+  'value' => 'i:2;',
+))
+->execute();
+
+db_create_table('watchdog', array(
+  'fields' => array(
+    'wid' => array(
+      'type' => 'serial',
+      'not null' => TRUE,
+    ),
+    'uid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'message' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+      'size' => 'big',
+    ),
+    'variables' => array(
+      'type' => 'blob',
+      'not null' => TRUE,
+      'size' => 'big',
+    ),
+    'severity' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'link' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => FALSE,
+      'default' => '',
+    ),
+    'location' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+    ),
+    'referer' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+    ),
+    'hostname' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'timestamp' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'primary key' => array(
+    'wid',
+  ),
+  'indexes' => array(
+    'type' => array(
+      'type',
+    ),
+    'uid' => array(
+      'uid',
+    ),
+  ),
+  'module' => 'dblog',
+  'name' => 'watchdog',
+));
diff --git a/modules/simpletest/tests/upgrade/drupal-7.filled.database.php b/modules/simpletest/tests/upgrade/drupal-7.filled.database.php
new file mode 100644
index 0000000..11acda1
--- /dev/null
+++ b/modules/simpletest/tests/upgrade/drupal-7.filled.database.php
@@ -0,0 +1,44077 @@
+<?php
+
+/**
+ * @file
+ * Filled installation of Drupal 7.0, for test purposes.
+ *
+ * This file was generated by the dump-database-d7.sh tool, from an
+ * installation of Drupal 7, filled with data using the generate-d7-content.sh
+ * tool. It has the following modules installed:
+ *  - block
+ *  - color
+ *  - comment
+ *  - contextual
+ *  - dashboard
+ *  - dblog
+ *  - field
+ *  - field_sql_storage
+ *  - field_ui
+ *  - file
+ *  - filter
+ *  - help
+ *  - image
+ *  - list
+ *  - menu
+ *  - node
+ *  - number
+ *  - options
+ *  - overlay
+ *  - path
+ *  - rdf
+ *  - search
+ *  - shortcut
+ *  - system
+ *  - taxonomy
+ *  - text
+ *  - toolbar
+ *  - update
+ *  - user
+ *  - standard
+ */
+
+db_create_table('actions', array(
+  'fields' => array(
+    'aid' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '0',
+    ),
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'callback' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'parameters' => array(
+      'type' => 'blob',
+      'not null' => TRUE,
+      'size' => 'big',
+    ),
+    'label' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '0',
+    ),
+  ),
+  'primary key' => array(
+    'aid',
+  ),
+  'module' => 'system',
+  'name' => 'actions',
+));
+db_insert('actions')->fields(array(
+  'aid',
+  'type',
+  'callback',
+  'parameters',
+  'label',
+))
+->values(array(
+  'aid' => 'comment_publish_action',
+  'type' => 'comment',
+  'callback' => 'comment_publish_action',
+  'parameters' => '',
+  'label' => 'Publish comment',
+))
+->values(array(
+  'aid' => 'comment_save_action',
+  'type' => 'comment',
+  'callback' => 'comment_save_action',
+  'parameters' => '',
+  'label' => 'Save comment',
+))
+->values(array(
+  'aid' => 'comment_unpublish_action',
+  'type' => 'comment',
+  'callback' => 'comment_unpublish_action',
+  'parameters' => '',
+  'label' => 'Unpublish comment',
+))
+->values(array(
+  'aid' => 'node_make_sticky_action',
+  'type' => 'node',
+  'callback' => 'node_make_sticky_action',
+  'parameters' => '',
+  'label' => 'Make content sticky',
+))
+->values(array(
+  'aid' => 'node_make_unsticky_action',
+  'type' => 'node',
+  'callback' => 'node_make_unsticky_action',
+  'parameters' => '',
+  'label' => 'Make content unsticky',
+))
+->values(array(
+  'aid' => 'node_promote_action',
+  'type' => 'node',
+  'callback' => 'node_promote_action',
+  'parameters' => '',
+  'label' => 'Promote content to front page',
+))
+->values(array(
+  'aid' => 'node_publish_action',
+  'type' => 'node',
+  'callback' => 'node_publish_action',
+  'parameters' => '',
+  'label' => 'Publish content',
+))
+->values(array(
+  'aid' => 'node_save_action',
+  'type' => 'node',
+  'callback' => 'node_save_action',
+  'parameters' => '',
+  'label' => 'Save content',
+))
+->values(array(
+  'aid' => 'node_unpromote_action',
+  'type' => 'node',
+  'callback' => 'node_unpromote_action',
+  'parameters' => '',
+  'label' => 'Remove content from front page',
+))
+->values(array(
+  'aid' => 'node_unpublish_action',
+  'type' => 'node',
+  'callback' => 'node_unpublish_action',
+  'parameters' => '',
+  'label' => 'Unpublish content',
+))
+->values(array(
+  'aid' => 'system_block_ip_action',
+  'type' => 'user',
+  'callback' => 'system_block_ip_action',
+  'parameters' => '',
+  'label' => 'Ban IP address of current user',
+))
+->values(array(
+  'aid' => 'user_block_user_action',
+  'type' => 'user',
+  'callback' => 'user_block_user_action',
+  'parameters' => '',
+  'label' => 'Block current user',
+))
+->execute();
+
+db_create_table('authmap', array(
+  'fields' => array(
+    'aid' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'uid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'authname' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'module' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+  ),
+  'unique keys' => array(
+    'authname' => array(
+      'authname',
+    ),
+  ),
+  'primary key' => array(
+    'aid',
+  ),
+  'foreign keys' => array(
+    'user' => array(
+      'table' => 'users',
+      'columns' => array(
+        'uid' => 'uid',
+      ),
+    ),
+  ),
+  'module' => 'user',
+  'name' => 'authmap',
+));
+
+db_create_table('batch', array(
+  'fields' => array(
+    'bid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'token' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+    ),
+    'timestamp' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+    ),
+    'batch' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+  ),
+  'primary key' => array(
+    'bid',
+  ),
+  'indexes' => array(
+    'token' => array(
+      'token',
+    ),
+  ),
+  'module' => 'system',
+  'name' => 'batch',
+));
+
+db_create_table('block', array(
+  'fields' => array(
+    'bid' => array(
+      'type' => 'serial',
+      'not null' => TRUE,
+    ),
+    'module' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '0',
+    ),
+    'theme' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'status' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'region' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'custom' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'visibility' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'pages' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+    ),
+    'title' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+      'default' => '',
+      'translatable' => TRUE,
+    ),
+    'cache' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 1,
+      'size' => 'tiny',
+    ),
+  ),
+  'primary key' => array(
+    'bid',
+  ),
+  'unique keys' => array(
+    'tmd' => array(
+      'theme',
+      'module',
+      'delta',
+    ),
+  ),
+  'indexes' => array(
+    'list' => array(
+      'theme',
+      'status',
+      'region',
+      'weight',
+      'module',
+    ),
+  ),
+  'module' => 'block',
+  'name' => 'block',
+));
+db_insert('block')->fields(array(
+  'bid',
+  'module',
+  'delta',
+  'theme',
+  'status',
+  'weight',
+  'region',
+  'custom',
+  'visibility',
+  'pages',
+  'title',
+  'cache',
+))
+->values(array(
+  'bid' => '1',
+  'module' => 'system',
+  'delta' => 'main',
+  'theme' => 'bartik',
+  'status' => '1',
+  'weight' => '0',
+  'region' => 'content',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '2',
+  'module' => 'search',
+  'delta' => 'form',
+  'theme' => 'bartik',
+  'status' => '1',
+  'weight' => '-1',
+  'region' => 'sidebar_first',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '3',
+  'module' => 'node',
+  'delta' => 'recent',
+  'theme' => 'seven',
+  'status' => '1',
+  'weight' => '10',
+  'region' => 'dashboard_main',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '4',
+  'module' => 'user',
+  'delta' => 'login',
+  'theme' => 'bartik',
+  'status' => '1',
+  'weight' => '0',
+  'region' => 'sidebar_first',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '5',
+  'module' => 'system',
+  'delta' => 'navigation',
+  'theme' => 'bartik',
+  'status' => '1',
+  'weight' => '0',
+  'region' => 'sidebar_first',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '6',
+  'module' => 'system',
+  'delta' => 'powered-by',
+  'theme' => 'bartik',
+  'status' => '1',
+  'weight' => '10',
+  'region' => 'footer',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '7',
+  'module' => 'system',
+  'delta' => 'help',
+  'theme' => 'bartik',
+  'status' => '1',
+  'weight' => '0',
+  'region' => 'help',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '8',
+  'module' => 'system',
+  'delta' => 'main',
+  'theme' => 'seven',
+  'status' => '1',
+  'weight' => '0',
+  'region' => 'content',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '9',
+  'module' => 'system',
+  'delta' => 'help',
+  'theme' => 'seven',
+  'status' => '1',
+  'weight' => '0',
+  'region' => 'help',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '10',
+  'module' => 'user',
+  'delta' => 'login',
+  'theme' => 'seven',
+  'status' => '1',
+  'weight' => '10',
+  'region' => 'content',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '11',
+  'module' => 'user',
+  'delta' => 'new',
+  'theme' => 'seven',
+  'status' => '1',
+  'weight' => '0',
+  'region' => 'dashboard_sidebar',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '12',
+  'module' => 'search',
+  'delta' => 'form',
+  'theme' => 'seven',
+  'status' => '1',
+  'weight' => '-10',
+  'region' => 'dashboard_sidebar',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '13',
+  'module' => 'comment',
+  'delta' => 'recent',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '1',
+))
+->values(array(
+  'bid' => '14',
+  'module' => 'node',
+  'delta' => 'syndicate',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '15',
+  'module' => 'node',
+  'delta' => 'recent',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '1',
+))
+->values(array(
+  'bid' => '16',
+  'module' => 'shortcut',
+  'delta' => 'shortcuts',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '17',
+  'module' => 'system',
+  'delta' => 'management',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '18',
+  'module' => 'system',
+  'delta' => 'user-menu',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '19',
+  'module' => 'system',
+  'delta' => 'main-menu',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '20',
+  'module' => 'user',
+  'delta' => 'new',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '1',
+))
+->values(array(
+  'bid' => '21',
+  'module' => 'user',
+  'delta' => 'online',
+  'theme' => 'bartik',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '22',
+  'module' => 'comment',
+  'delta' => 'recent',
+  'theme' => 'seven',
+  'status' => '1',
+  'weight' => '0',
+  'region' => 'dashboard_inactive',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '1',
+))
+->values(array(
+  'bid' => '23',
+  'module' => 'node',
+  'delta' => 'syndicate',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '24',
+  'module' => 'shortcut',
+  'delta' => 'shortcuts',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '25',
+  'module' => 'system',
+  'delta' => 'powered-by',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '10',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '26',
+  'module' => 'system',
+  'delta' => 'navigation',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '27',
+  'module' => 'system',
+  'delta' => 'management',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '28',
+  'module' => 'system',
+  'delta' => 'user-menu',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '29',
+  'module' => 'system',
+  'delta' => 'main-menu',
+  'theme' => 'seven',
+  'status' => '0',
+  'weight' => '0',
+  'region' => '-1',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->values(array(
+  'bid' => '30',
+  'module' => 'user',
+  'delta' => 'online',
+  'theme' => 'seven',
+  'status' => '1',
+  'weight' => '0',
+  'region' => 'dashboard_inactive',
+  'custom' => '0',
+  'visibility' => '0',
+  'pages' => '',
+  'title' => '',
+  'cache' => '-1',
+))
+->execute();
+
+db_create_table('block_custom', array(
+  'fields' => array(
+    'bid' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'body' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+      'translatable' => TRUE,
+    ),
+    'info' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'format' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => FALSE,
+    ),
+  ),
+  'unique keys' => array(
+    'info' => array(
+      'info',
+    ),
+  ),
+  'primary key' => array(
+    'bid',
+  ),
+  'module' => 'block',
+  'name' => 'block_custom',
+));
+
+db_create_table('block_node_type', array(
+  'fields' => array(
+    'module' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+    ),
+    'delta' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+    ),
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'module',
+    'delta',
+    'type',
+  ),
+  'indexes' => array(
+    'type' => array(
+      'type',
+    ),
+  ),
+  'module' => 'node',
+  'name' => 'block_node_type',
+));
+
+db_create_table('block_role', array(
+  'fields' => array(
+    'module' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+    ),
+    'delta' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+    ),
+    'rid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'module',
+    'delta',
+    'rid',
+  ),
+  'indexes' => array(
+    'rid' => array(
+      'rid',
+    ),
+  ),
+  'module' => 'block',
+  'name' => 'block_role',
+));
+
+db_create_table('blocked_ips', array(
+  'fields' => array(
+    'iid' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'ip' => array(
+      'type' => 'varchar',
+      'length' => 40,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+  ),
+  'indexes' => array(
+    'blocked_ip' => array(
+      'ip',
+    ),
+  ),
+  'primary key' => array(
+    'iid',
+  ),
+  'module' => 'system',
+  'name' => 'blocked_ips',
+));
+
+db_create_table('cache', array(
+  'fields' => array(
+    'cid' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'expire' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'serialized' => array(
+      'type' => 'int',
+      'size' => 'small',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'expire' => array(
+      'expire',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  'module' => 'system',
+  'name' => 'cache',
+));
+
+db_create_table('cache_block', array(
+  'fields' => array(
+    'cid' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'expire' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'serialized' => array(
+      'type' => 'int',
+      'size' => 'small',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'expire' => array(
+      'expire',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  'module' => 'block',
+  'name' => 'cache_block',
+));
+
+db_create_table('cache_bootstrap', array(
+  'fields' => array(
+    'cid' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'expire' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'serialized' => array(
+      'type' => 'int',
+      'size' => 'small',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'expire' => array(
+      'expire',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  'module' => 'system',
+  'name' => 'cache_bootstrap',
+));
+
+db_create_table('cache_field', array(
+  'fields' => array(
+    'cid' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'expire' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'serialized' => array(
+      'type' => 'int',
+      'size' => 'small',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'expire' => array(
+      'expire',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  'module' => 'field',
+  'name' => 'cache_field',
+));
+
+db_create_table('cache_filter', array(
+  'fields' => array(
+    'cid' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'expire' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'serialized' => array(
+      'type' => 'int',
+      'size' => 'small',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'expire' => array(
+      'expire',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  'module' => 'filter',
+  'name' => 'cache_filter',
+));
+
+db_create_table('cache_form', array(
+  'fields' => array(
+    'cid' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'expire' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'serialized' => array(
+      'type' => 'int',
+      'size' => 'small',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'expire' => array(
+      'expire',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  'module' => 'system',
+  'name' => 'cache_form',
+));
+
+db_create_table('cache_image', array(
+  'fields' => array(
+    'cid' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'expire' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'serialized' => array(
+      'type' => 'int',
+      'size' => 'small',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'expire' => array(
+      'expire',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  'module' => 'image',
+  'name' => 'cache_image',
+));
+
+db_create_table('cache_menu', array(
+  'fields' => array(
+    'cid' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'expire' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'serialized' => array(
+      'type' => 'int',
+      'size' => 'small',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'expire' => array(
+      'expire',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  'module' => 'system',
+  'name' => 'cache_menu',
+));
+
+db_create_table('cache_page', array(
+  'fields' => array(
+    'cid' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'expire' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'serialized' => array(
+      'type' => 'int',
+      'size' => 'small',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'expire' => array(
+      'expire',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  'module' => 'system',
+  'name' => 'cache_page',
+));
+
+db_create_table('cache_path', array(
+  'fields' => array(
+    'cid' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'expire' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'serialized' => array(
+      'type' => 'int',
+      'size' => 'small',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'expire' => array(
+      'expire',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  'module' => 'system',
+  'name' => 'cache_path',
+));
+
+db_create_table('cache_update', array(
+  'fields' => array(
+    'cid' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+    'expire' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'serialized' => array(
+      'type' => 'int',
+      'size' => 'small',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'expire' => array(
+      'expire',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  'module' => 'update',
+  'name' => 'cache_update',
+));
+
+db_create_table('comment', array(
+  'fields' => array(
+    'cid' => array(
+      'type' => 'serial',
+      'not null' => TRUE,
+    ),
+    'pid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'nid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'uid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'subject' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'hostname' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'changed' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'status' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 1,
+      'size' => 'tiny',
+    ),
+    'thread' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+    ),
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 60,
+      'not null' => FALSE,
+    ),
+    'mail' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => FALSE,
+    ),
+    'homepage' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 12,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+  ),
+  'indexes' => array(
+    'comment_status_pid' => array(
+      'pid',
+      'status',
+    ),
+    'comment_num_new' => array(
+      'nid',
+      'status',
+      'created',
+      'cid',
+      'thread',
+    ),
+    'comment_uid' => array(
+      'uid',
+    ),
+    'comment_nid_language' => array(
+      'nid',
+      'language',
+    ),
+    'comment_created' => array(
+      'created',
+    ),
+  ),
+  'primary key' => array(
+    'cid',
+  ),
+  'foreign keys' => array(
+    'comment_node' => array(
+      'table' => 'node',
+      'columns' => array(
+        'nid' => 'nid',
+      ),
+    ),
+    'comment_author' => array(
+      'table' => 'users',
+      'columns' => array(
+        'uid' => 'uid',
+      ),
+    ),
+  ),
+  'module' => 'comment',
+  'name' => 'comment',
+));
+
+db_create_table('date_format_locale', array(
+  'fields' => array(
+    'format' => array(
+      'type' => 'varchar',
+      'length' => 100,
+      'not null' => TRUE,
+    ),
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 12,
+      'not null' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'type',
+    'language',
+  ),
+  'module' => 'system',
+  'name' => 'date_format_locale',
+));
+
+db_create_table('date_format_type', array(
+  'fields' => array(
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+    ),
+    'title' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+    ),
+    'locked' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'default' => 0,
+      'not null' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'type',
+  ),
+  'indexes' => array(
+    'title' => array(
+      'title',
+    ),
+  ),
+  'module' => 'system',
+  'name' => 'date_format_type',
+));
+db_insert('date_format_type')->fields(array(
+  'type',
+  'title',
+  'locked',
+))
+->values(array(
+  'type' => 'long',
+  'title' => 'Long',
+  'locked' => '1',
+))
+->values(array(
+  'type' => 'medium',
+  'title' => 'Medium',
+  'locked' => '1',
+))
+->values(array(
+  'type' => 'short',
+  'title' => 'Short',
+  'locked' => '1',
+))
+->execute();
+
+db_create_table('date_formats', array(
+  'fields' => array(
+    'dfid' => array(
+      'type' => 'serial',
+      'not null' => TRUE,
+      'unsigned' => TRUE,
+    ),
+    'format' => array(
+      'type' => 'varchar',
+      'length' => 100,
+      'not null' => TRUE,
+    ),
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+    ),
+    'locked' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'default' => 0,
+      'not null' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'dfid',
+  ),
+  'unique keys' => array(
+    'formats' => array(
+      'format',
+      'type',
+    ),
+  ),
+  'module' => 'system',
+  'name' => 'date_formats',
+));
+db_insert('date_formats')->fields(array(
+  'dfid',
+  'format',
+  'type',
+  'locked',
+))
+->values(array(
+  'dfid' => '1',
+  'format' => 'Y-m-d H:i',
+  'type' => 'short',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '2',
+  'format' => 'm/d/Y - H:i',
+  'type' => 'short',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '3',
+  'format' => 'd/m/Y - H:i',
+  'type' => 'short',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '4',
+  'format' => 'Y/m/d - H:i',
+  'type' => 'short',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '5',
+  'format' => 'd.m.Y - H:i',
+  'type' => 'short',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '6',
+  'format' => 'm/d/Y - g:ia',
+  'type' => 'short',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '7',
+  'format' => 'd/m/Y - g:ia',
+  'type' => 'short',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '8',
+  'format' => 'Y/m/d - g:ia',
+  'type' => 'short',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '9',
+  'format' => 'M j Y - H:i',
+  'type' => 'short',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '10',
+  'format' => 'j M Y - H:i',
+  'type' => 'short',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '11',
+  'format' => 'Y M j - H:i',
+  'type' => 'short',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '12',
+  'format' => 'M j Y - g:ia',
+  'type' => 'short',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '13',
+  'format' => 'j M Y - g:ia',
+  'type' => 'short',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '14',
+  'format' => 'Y M j - g:ia',
+  'type' => 'short',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '15',
+  'format' => 'D, Y-m-d H:i',
+  'type' => 'medium',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '16',
+  'format' => 'D, m/d/Y - H:i',
+  'type' => 'medium',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '17',
+  'format' => 'D, d/m/Y - H:i',
+  'type' => 'medium',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '18',
+  'format' => 'D, Y/m/d - H:i',
+  'type' => 'medium',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '19',
+  'format' => 'F j, Y - H:i',
+  'type' => 'medium',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '20',
+  'format' => 'j F, Y - H:i',
+  'type' => 'medium',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '21',
+  'format' => 'Y, F j - H:i',
+  'type' => 'medium',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '22',
+  'format' => 'D, m/d/Y - g:ia',
+  'type' => 'medium',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '23',
+  'format' => 'D, d/m/Y - g:ia',
+  'type' => 'medium',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '24',
+  'format' => 'D, Y/m/d - g:ia',
+  'type' => 'medium',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '25',
+  'format' => 'F j, Y - g:ia',
+  'type' => 'medium',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '26',
+  'format' => 'j F Y - g:ia',
+  'type' => 'medium',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '27',
+  'format' => 'Y, F j - g:ia',
+  'type' => 'medium',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '28',
+  'format' => 'j. F Y - G:i',
+  'type' => 'medium',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '29',
+  'format' => 'l, F j, Y - H:i',
+  'type' => 'long',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '30',
+  'format' => 'l, j F, Y - H:i',
+  'type' => 'long',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '31',
+  'format' => 'l, Y,  F j - H:i',
+  'type' => 'long',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '32',
+  'format' => 'l, F j, Y - g:ia',
+  'type' => 'long',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '33',
+  'format' => 'l, j F Y - g:ia',
+  'type' => 'long',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '34',
+  'format' => 'l, Y,  F j - g:ia',
+  'type' => 'long',
+  'locked' => '1',
+))
+->values(array(
+  'dfid' => '35',
+  'format' => 'l, j. F Y - G:i',
+  'type' => 'long',
+  'locked' => '1',
+))
+->execute();
+
+db_create_table('field_config', array(
+  'fields' => array(
+    'id' => array(
+      'type' => 'serial',
+      'not null' => TRUE,
+    ),
+    'field_name' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+    ),
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+    ),
+    'module' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'active' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'storage_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+    ),
+    'storage_module' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'storage_active' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'locked' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'size' => 'big',
+      'not null' => TRUE,
+      'serialize' => TRUE,
+    ),
+    'cardinality' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'translatable' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'primary key' => array(
+    'id',
+  ),
+  'indexes' => array(
+    'field_name' => array(
+      'field_name',
+    ),
+    'active' => array(
+      'active',
+    ),
+    'storage_active' => array(
+      'storage_active',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'module' => array(
+      'module',
+    ),
+    'storage_module' => array(
+      'storage_module',
+    ),
+    'type' => array(
+      'type',
+    ),
+    'storage_type' => array(
+      'storage_type',
+    ),
+  ),
+  'module' => 'field',
+  'name' => 'field_config',
+));
+db_insert('field_config')->fields(array(
+  'id',
+  'field_name',
+  'type',
+  'module',
+  'active',
+  'storage_type',
+  'storage_module',
+  'storage_active',
+  'locked',
+  'data',
+  'cardinality',
+  'translatable',
+  'deleted',
+))
+->values(array(
+  'id' => '1',
+  'field_name' => 'comment_body',
+  'type' => 'text_long',
+  'module' => 'text',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => '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";}}}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '2',
+  'field_name' => 'body',
+  'type' => 'text_with_summary',
+  'module' => 'text',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => '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";}}}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '3',
+  'field_name' => 'field_tags',
+  'type' => 'taxonomy_term_reference',
+  'module' => 'taxonomy',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => '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";}}}',
+  'cardinality' => '-1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '4',
+  'field_name' => 'field_image',
+  'type' => 'image',
+  'module' => 'image',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => '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";}}}}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '5',
+  'field_name' => 'taxonomy_vocabulary_1_0',
+  'type' => 'taxonomy_term_reference',
+  'module' => 'taxonomy',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:6:{s:8:"settings";a:2:{s:8:"required";b:0;s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:14:"vocabulary_1_0";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";}}}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '6',
+  'field_name' => 'taxonomy_vocabulary_2_1',
+  'type' => 'taxonomy_term_reference',
+  'module' => 'taxonomy',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:6:{s:8:"settings";a:2:{s:8:"required";b:0;s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:14:"vocabulary_2_1";s:6:"parent";i:0;}}}s:12:"entity_types";a:0:{}s:12:"translatable";b:0;s:7:"storage";a:4:{s:4:"type";s:17:"field_sql_storage";s:8:"settings";a:0:{}s:6:"module";s:17:"field_sql_storage";s:6:"active";i:1;}s: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";}}}',
+  'cardinality' => '-1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '7',
+  'field_name' => 'taxonomy_vocabulary_3_2',
+  'type' => 'taxonomy_term_reference',
+  'module' => 'taxonomy',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:6:{s:8:"settings";a:2:{s:8:"required";b:0;s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:14:"vocabulary_3_2";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";}}}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '8',
+  'field_name' => 'taxonomy_vocabulary_4_3',
+  'type' => 'taxonomy_term_reference',
+  'module' => 'taxonomy',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:6:{s:8:"settings";a:2:{s:8:"required";b:0;s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:14:"vocabulary_4_3";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";}}}',
+  'cardinality' => '-1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '9',
+  'field_name' => 'taxonomy_vocabulary_5_4',
+  'type' => 'taxonomy_term_reference',
+  'module' => 'taxonomy',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:6:{s:8:"settings";a:2:{s:8:"required";b:0;s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:14:"vocabulary_5_4";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";}}}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '10',
+  'field_name' => 'taxonomy_vocabulary_6_5',
+  'type' => 'taxonomy_term_reference',
+  'module' => 'taxonomy',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:6:{s:8:"settings";a:2:{s:8:"required";b:0;s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:14:"vocabulary_6_5";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";}}}',
+  'cardinality' => '-1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '11',
+  'field_name' => 'taxonomy_vocabulary_7_6',
+  'type' => 'taxonomy_term_reference',
+  'module' => 'taxonomy',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:6:{s:8:"settings";a:2:{s:8:"required";b:1;s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:14:"vocabulary_7_6";s:6:"parent";i:0;}}}s:12:"entity_types";a:0:{}s:12:"translatable";b:0;s:7:"storage";a:4:{s:4:"type";s:17:"field_sql_storage";s:8:"settings";a:0:{}s:6:"module";s:17:"field_sql_storage";s:6:"active";i:1;}s: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";}}}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '12',
+  'field_name' => 'taxonomy_vocabulary_8_7',
+  'type' => 'taxonomy_term_reference',
+  'module' => 'taxonomy',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:6:{s:8:"settings";a:2:{s:8:"required";b:1;s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:14:"vocabulary_8_7";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";}}}',
+  'cardinality' => '-1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '13',
+  'field_name' => 'taxonomy_vocabulary_9_8',
+  'type' => 'taxonomy_term_reference',
+  'module' => 'taxonomy',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:6:{s:8:"settings";a:2:{s:8:"required";b:1;s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:14:"vocabulary_9_8";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";}}}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '14',
+  'field_name' => 'taxonomy_vocabulary_10_9',
+  'type' => 'taxonomy_term_reference',
+  'module' => 'taxonomy',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:6:{s:8:"settings";a:2:{s:8:"required";b:1;s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:15:"vocabulary_10_9";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";}}}',
+  'cardinality' => '-1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '15',
+  'field_name' => 'taxonomy_vocabulary_11_10',
+  'type' => 'taxonomy_term_reference',
+  'module' => 'taxonomy',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:6:{s:8:"settings";a:2:{s:8:"required";b:1;s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:16:"vocabulary_11_10";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";}}}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '16',
+  'field_name' => 'taxonomy_vocabulary_12_11',
+  'type' => 'taxonomy_term_reference',
+  'module' => 'taxonomy',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:6:{s:8:"settings";a:2:{s:8:"required";b:1;s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:16:"vocabulary_12_11";s:6:"parent";i:0;}}}s:12:"entity_types";a:0:{}s:12:"translatable";b:0;s:7:"storage";a:4:{s:4:"type";s:17:"field_sql_storage";s:8:"settings";a:0:{}s:6:"module";s:17:"field_sql_storage";s:6:"active";i:1;}s: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";}}}',
+  'cardinality' => '-1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '17',
+  'field_name' => 'taxonomy_vocabulary_13_12',
+  'type' => 'taxonomy_term_reference',
+  'module' => 'taxonomy',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:6:{s:8:"settings";a:2:{s:8:"required";b:0;s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:16:"vocabulary_13_12";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";}}}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '18',
+  'field_name' => 'taxonomy_vocabulary_14_13',
+  'type' => 'taxonomy_term_reference',
+  'module' => 'taxonomy',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:6:{s:8:"settings";a:2:{s:8:"required";b:0;s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:16:"vocabulary_14_13";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";}}}',
+  'cardinality' => '-1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '19',
+  'field_name' => 'taxonomy_vocabulary_15_14',
+  'type' => 'taxonomy_term_reference',
+  'module' => 'taxonomy',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:6:{s:8:"settings";a:2:{s:8:"required";b:0;s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:16:"vocabulary_15_14";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";}}}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '20',
+  'field_name' => 'taxonomy_vocabulary_16_15',
+  'type' => 'taxonomy_term_reference',
+  'module' => 'taxonomy',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:6:{s:8:"settings";a:2:{s:8:"required";b:0;s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:16:"vocabulary_16_15";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";}}}',
+  'cardinality' => '-1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '21',
+  'field_name' => 'taxonomy_vocabulary_17_16',
+  'type' => 'taxonomy_term_reference',
+  'module' => 'taxonomy',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:6:{s:8:"settings";a:2:{s:8:"required";b:0;s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:16:"vocabulary_17_16";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";}}}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '22',
+  'field_name' => 'taxonomy_vocabulary_18_17',
+  'type' => 'taxonomy_term_reference',
+  'module' => 'taxonomy',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:6:{s:8:"settings";a:2:{s:8:"required";b:0;s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:16:"vocabulary_18_17";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";}}}',
+  'cardinality' => '-1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '23',
+  'field_name' => 'taxonomy_vocabulary_19_18',
+  'type' => 'taxonomy_term_reference',
+  'module' => 'taxonomy',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:6:{s:8:"settings";a:2:{s:8:"required";b:1;s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:16:"vocabulary_19_18";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";}}}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '24',
+  'field_name' => 'taxonomy_vocabulary_20_19',
+  'type' => 'taxonomy_term_reference',
+  'module' => 'taxonomy',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:6:{s:8:"settings";a:2:{s:8:"required";b:1;s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:16:"vocabulary_20_19";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";}}}',
+  'cardinality' => '-1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '25',
+  'field_name' => 'taxonomy_vocabulary_21_20',
+  'type' => 'taxonomy_term_reference',
+  'module' => 'taxonomy',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:6:{s:8:"settings";a:2:{s:8:"required";b:1;s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:16:"vocabulary_21_20";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";}}}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '26',
+  'field_name' => 'taxonomy_vocabulary_22_21',
+  'type' => 'taxonomy_term_reference',
+  'module' => 'taxonomy',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:6:{s:8:"settings";a:2:{s:8:"required";b:1;s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:16:"vocabulary_22_21";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";}}}',
+  'cardinality' => '-1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '27',
+  'field_name' => 'taxonomy_vocabulary_23_22',
+  'type' => 'taxonomy_term_reference',
+  'module' => 'taxonomy',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:6:{s:8:"settings";a:2:{s:8:"required";b:1;s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:16:"vocabulary_23_22";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";}}}',
+  'cardinality' => '1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '28',
+  'field_name' => 'taxonomy_vocabulary_24_23',
+  'type' => 'taxonomy_term_reference',
+  'module' => 'taxonomy',
+  'active' => '1',
+  'storage_type' => 'field_sql_storage',
+  'storage_module' => 'field_sql_storage',
+  'storage_active' => '1',
+  'locked' => '0',
+  'data' => 'a:6:{s:8:"settings";a:2:{s:8:"required";b:1;s:14:"allowed_values";a:1:{i:0;a:2:{s:10:"vocabulary";s:16:"vocabulary_24_23";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";}}}',
+  'cardinality' => '-1',
+  'translatable' => '0',
+  'deleted' => '0',
+))
+->execute();
+
+db_create_table('field_config_instance', array(
+  'fields' => array(
+    'id' => array(
+      'type' => 'serial',
+      'not null' => TRUE,
+    ),
+    'field_id' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+    ),
+    'field_name' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'size' => 'big',
+      'not null' => TRUE,
+      'serialize' => TRUE,
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'primary key' => array(
+    'id',
+  ),
+  'indexes' => array(
+    'field_name_bundle' => array(
+      'field_name',
+      'entity_type',
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+  ),
+  'module' => 'field',
+  'name' => 'field_config_instance',
+));
+db_insert('field_config_instance')->fields(array(
+  'id',
+  'field_id',
+  'field_name',
+  'entity_type',
+  'bundle',
+  'data',
+  'deleted',
+))
+->values(array(
+  'id' => '1',
+  'field_id' => '1',
+  'field_name' => 'comment_body',
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_page',
+  'data' => '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:"";}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '2',
+  'field_id' => '2',
+  'field_name' => 'body',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => '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:"";}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '3',
+  'field_id' => '1',
+  'field_name' => 'comment_body',
+  'entity_type' => 'comment',
+  'bundle' => 'comment_node_article',
+  'data' => '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:"";}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '4',
+  'field_id' => '2',
+  'field_name' => 'body',
+  'entity_type' => 'node',
+  'bundle' => 'broken',
+  'data' => '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:"";}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '5',
+  'field_id' => '3',
+  'field_name' => 'field_tags',
+  'entity_type' => 'node',
+  'bundle' => 'broken',
+  'data' => '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;}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '6',
+  'field_id' => '4',
+  'field_name' => 'field_image',
+  'entity_type' => 'node',
+  'bundle' => 'broken',
+  'data' => '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:8:{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: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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '7',
+  'field_id' => '5',
+  'field_name' => 'taxonomy_vocabulary_1_0',
+  'entity_type' => 'node',
+  'bundle' => 'broken',
+  'data' => 'a:6:{s:5:"label";s:18:"vocabulary 1 (i=0)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:0;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:0;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '8',
+  'field_id' => '5',
+  'field_name' => 'taxonomy_vocabulary_1_0',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:6:{s:5:"label";s:18:"vocabulary 1 (i=0)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:0;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:-3;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '9',
+  'field_id' => '6',
+  'field_name' => 'taxonomy_vocabulary_2_1',
+  'entity_type' => 'node',
+  'bundle' => 'broken',
+  'data' => 'a:6:{s:5:"label";s:18:"vocabulary 2 (i=1)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:0;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:1;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '10',
+  'field_id' => '6',
+  'field_name' => 'taxonomy_vocabulary_2_1',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:6:{s:5:"label";s:18:"vocabulary 2 (i=1)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:0;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:-2;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '11',
+  'field_id' => '7',
+  'field_name' => 'taxonomy_vocabulary_3_2',
+  'entity_type' => 'node',
+  'bundle' => 'broken',
+  'data' => 'a:6:{s:5:"label";s:18:"vocabulary 3 (i=2)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:0;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:2;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '12',
+  'field_id' => '7',
+  'field_name' => 'taxonomy_vocabulary_3_2',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:6:{s:5:"label";s:18:"vocabulary 3 (i=2)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:0;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:-1;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '13',
+  'field_id' => '8',
+  'field_name' => 'taxonomy_vocabulary_4_3',
+  'entity_type' => 'node',
+  'bundle' => 'broken',
+  'data' => 'a:6:{s:5:"label";s:18:"vocabulary 4 (i=3)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:0;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:3;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '14',
+  'field_id' => '8',
+  'field_name' => 'taxonomy_vocabulary_4_3',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:6:{s:5:"label";s:18:"vocabulary 4 (i=3)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:0;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:0;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '15',
+  'field_id' => '9',
+  'field_name' => 'taxonomy_vocabulary_5_4',
+  'entity_type' => 'node',
+  'bundle' => 'broken',
+  'data' => 'a:6:{s:5:"label";s:18:"vocabulary 5 (i=4)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:0;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:4;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '16',
+  'field_id' => '9',
+  'field_name' => 'taxonomy_vocabulary_5_4',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:6:{s:5:"label";s:18:"vocabulary 5 (i=4)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:0;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:1;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '17',
+  'field_id' => '10',
+  'field_name' => 'taxonomy_vocabulary_6_5',
+  'entity_type' => 'node',
+  'bundle' => 'broken',
+  'data' => 'a:6:{s:5:"label";s:18:"vocabulary 6 (i=5)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:0;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:5;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '18',
+  'field_id' => '10',
+  'field_name' => 'taxonomy_vocabulary_6_5',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:6:{s:5:"label";s:18:"vocabulary 6 (i=5)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:0;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:2;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '19',
+  'field_id' => '11',
+  'field_name' => 'taxonomy_vocabulary_7_6',
+  'entity_type' => 'node',
+  'bundle' => 'broken',
+  'data' => 'a:6:{s:5:"label";s:18:"vocabulary 7 (i=6)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:1;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:6;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '20',
+  'field_id' => '11',
+  'field_name' => 'taxonomy_vocabulary_7_6',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:6:{s:5:"label";s:18:"vocabulary 7 (i=6)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:1;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:3;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '21',
+  'field_id' => '12',
+  'field_name' => 'taxonomy_vocabulary_8_7',
+  'entity_type' => 'node',
+  'bundle' => 'broken',
+  'data' => 'a:6:{s:5:"label";s:18:"vocabulary 8 (i=7)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:1;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:7;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '22',
+  'field_id' => '12',
+  'field_name' => 'taxonomy_vocabulary_8_7',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:6:{s:5:"label";s:18:"vocabulary 8 (i=7)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:1;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:4;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '23',
+  'field_id' => '13',
+  'field_name' => 'taxonomy_vocabulary_9_8',
+  'entity_type' => 'node',
+  'bundle' => 'broken',
+  'data' => 'a:6:{s:5:"label";s:18:"vocabulary 9 (i=8)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:1;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:8;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '24',
+  'field_id' => '13',
+  'field_name' => 'taxonomy_vocabulary_9_8',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:6:{s:5:"label";s:18:"vocabulary 9 (i=8)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:1;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:5;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '25',
+  'field_id' => '14',
+  'field_name' => 'taxonomy_vocabulary_10_9',
+  'entity_type' => 'node',
+  'bundle' => 'broken',
+  'data' => 'a:6:{s:5:"label";s:19:"vocabulary 10 (i=9)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:1;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:9;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '26',
+  'field_id' => '14',
+  'field_name' => 'taxonomy_vocabulary_10_9',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:6:{s:5:"label";s:19:"vocabulary 10 (i=9)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:1;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:6;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '27',
+  'field_id' => '15',
+  'field_name' => 'taxonomy_vocabulary_11_10',
+  'entity_type' => 'node',
+  'bundle' => 'broken',
+  'data' => 'a:6:{s:5:"label";s:20:"vocabulary 11 (i=10)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:1;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:10;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '28',
+  'field_id' => '15',
+  'field_name' => 'taxonomy_vocabulary_11_10',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:6:{s:5:"label";s:20:"vocabulary 11 (i=10)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:1;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:7;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '29',
+  'field_id' => '16',
+  'field_name' => 'taxonomy_vocabulary_12_11',
+  'entity_type' => 'node',
+  'bundle' => 'broken',
+  'data' => 'a:6:{s:5:"label";s:20:"vocabulary 12 (i=11)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:1;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:11;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '30',
+  'field_id' => '16',
+  'field_name' => 'taxonomy_vocabulary_12_11',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:6:{s:5:"label";s:20:"vocabulary 12 (i=11)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:1;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:8;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '31',
+  'field_id' => '17',
+  'field_name' => 'taxonomy_vocabulary_13_12',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:6:{s:5:"label";s:20:"vocabulary 13 (i=12)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:0;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:9;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '32',
+  'field_id' => '18',
+  'field_name' => 'taxonomy_vocabulary_14_13',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:6:{s:5:"label";s:20:"vocabulary 14 (i=13)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:0;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:10;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '33',
+  'field_id' => '19',
+  'field_name' => 'taxonomy_vocabulary_15_14',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:6:{s:5:"label";s:20:"vocabulary 15 (i=14)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:0;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:11;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '34',
+  'field_id' => '20',
+  'field_name' => 'taxonomy_vocabulary_16_15',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:6:{s:5:"label";s:20:"vocabulary 16 (i=15)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:0;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:12;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '35',
+  'field_id' => '21',
+  'field_name' => 'taxonomy_vocabulary_17_16',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:6:{s:5:"label";s:20:"vocabulary 17 (i=16)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:0;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:13;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '36',
+  'field_id' => '22',
+  'field_name' => 'taxonomy_vocabulary_18_17',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:6:{s:5:"label";s:20:"vocabulary 18 (i=17)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:0;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:14;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '37',
+  'field_id' => '23',
+  'field_name' => 'taxonomy_vocabulary_19_18',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:6:{s:5:"label";s:20:"vocabulary 19 (i=18)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:1;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:15;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '38',
+  'field_id' => '24',
+  'field_name' => 'taxonomy_vocabulary_20_19',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:6:{s:5:"label";s:20:"vocabulary 20 (i=19)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:1;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:16;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '39',
+  'field_id' => '25',
+  'field_name' => 'taxonomy_vocabulary_21_20',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:6:{s:5:"label";s:20:"vocabulary 21 (i=20)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:1;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:17;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '40',
+  'field_id' => '26',
+  'field_name' => 'taxonomy_vocabulary_22_21',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:6:{s:5:"label";s:20:"vocabulary 22 (i=21)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:1;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:18;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '41',
+  'field_id' => '27',
+  'field_name' => 'taxonomy_vocabulary_23_22',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:6:{s:5:"label";s:20:"vocabulary 23 (i=22)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:1;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:19;}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";}}}',
+  'deleted' => '0',
+))
+->values(array(
+  'id' => '42',
+  'field_id' => '28',
+  'field_name' => 'taxonomy_vocabulary_24_23',
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'data' => 'a:6:{s:5:"label";s:20:"vocabulary 24 (i=23)";s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:11:"description";N;s:8:"required";i:1;s:6:"widget";a:4:{s:4:"type";s:6:"select";s:6:"module";N;s:8:"settings";a:0:{}s:6:"weight";i:20;}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";}}}',
+  'deleted' => '0',
+))
+->execute();
+
+db_create_table('field_data_body', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'body_value' => array(
+      'type' => 'text',
+      'size' => 'big',
+      'not null' => FALSE,
+    ),
+    'body_summary' => array(
+      'type' => 'text',
+      'size' => 'big',
+      'not null' => FALSE,
+    ),
+    'body_format' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'body_format' => array(
+      'body_format',
+    ),
+  ),
+  'foreign keys' => array(
+    'body_format' => array(
+      'table' => 'filter_format',
+      'columns' => array(
+        'body_format' => 'format',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_body',
+));
+db_insert('field_data_body')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'body_value',
+  'body_summary',
+  'body_format',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0',
+  'body_summary' => 'node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1',
+  'body_summary' => 'node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2',
+  'body_summary' => 'node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3',
+  'body_summary' => 'node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4',
+  'body_summary' => 'node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5',
+  'body_summary' => 'node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6',
+  'body_summary' => 'node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7',
+  'body_summary' => 'node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8',
+  'body_summary' => 'node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9',
+  'body_summary' => 'node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10',
+  'body_summary' => 'node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11',
+  'body_summary' => 'node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'broken',
+  'deleted' => '0',
+  'entity_id' => '37',
+  'revision_id' => '49',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37',
+  'body_summary' => 'node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37no',
+  'body_format' => 'filtered_html',
+))
+->execute();
+
+db_create_table('field_data_comment_body', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'comment_body_value' => array(
+      'type' => 'text',
+      'size' => 'big',
+      'not null' => FALSE,
+    ),
+    'comment_body_format' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'comment_body_format' => array(
+      'comment_body_format',
+    ),
+  ),
+  'foreign keys' => array(
+    'comment_body_format' => array(
+      'table' => 'filter_format',
+      'columns' => array(
+        'comment_body_format' => 'format',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_comment_body',
+));
+
+db_create_table('field_data_field_image', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'field_image_fid' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'unsigned' => TRUE,
+    ),
+    'field_image_alt' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => FALSE,
+    ),
+    'field_image_title' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'field_image_fid' => array(
+      'field_image_fid',
+    ),
+  ),
+  'foreign keys' => array(
+    'field_image_fid' => array(
+      'table' => 'file_managed',
+      'columns' => array(
+        'field_image_fid' => 'fid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_field_image',
+));
+
+db_create_table('field_data_field_tags', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'field_tags_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'field_tags_tid' => array(
+      'field_tags_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'field_tags_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'field_tags_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_field_tags',
+));
+
+db_create_table('field_data_taxonomy_vocabulary_10_9', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_10_9_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_10_9_tid' => array(
+      'taxonomy_vocabulary_10_9_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_10_9_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_10_9_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_taxonomy_vocabulary_10_9',
+));
+db_insert('field_data_taxonomy_vocabulary_10_9')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_10_9_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_10_9_tid' => '19',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_10_9_tid' => '19',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_10_9_tid' => '19',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_10_9_tid' => '19',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_10_9_tid' => '19',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_10_9_tid' => '19',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_10_9_tid' => '19',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_10_9_tid' => '19',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_10_9_tid' => '19',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_10_9_tid' => '19',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_10_9_tid' => '19',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_10_9_tid' => '19',
+))
+->execute();
+
+db_create_table('field_data_taxonomy_vocabulary_11_10', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_11_10_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_11_10_tid' => array(
+      'taxonomy_vocabulary_11_10_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_11_10_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_11_10_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_taxonomy_vocabulary_11_10',
+));
+db_insert('field_data_taxonomy_vocabulary_11_10')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_11_10_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_11_10_tid' => '20',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_11_10_tid' => '20',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_11_10_tid' => '20',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_11_10_tid' => '20',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_11_10_tid' => '20',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_11_10_tid' => '20',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_11_10_tid' => '20',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_11_10_tid' => '20',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_11_10_tid' => '20',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_11_10_tid' => '20',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_11_10_tid' => '20',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_11_10_tid' => '20',
+))
+->execute();
+
+db_create_table('field_data_taxonomy_vocabulary_12_11', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_12_11_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_12_11_tid' => array(
+      'taxonomy_vocabulary_12_11_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_12_11_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_12_11_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_taxonomy_vocabulary_12_11',
+));
+db_insert('field_data_taxonomy_vocabulary_12_11')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_12_11_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_12_11_tid' => '22',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_12_11_tid' => '23',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_12_11_tid' => '24',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_12_11_tid' => '22',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_12_11_tid' => '23',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_12_11_tid' => '24',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_12_11_tid' => '22',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_12_11_tid' => '23',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_12_11_tid' => '24',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_12_11_tid' => '22',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_12_11_tid' => '23',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_12_11_tid' => '24',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_12_11_tid' => '22',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_12_11_tid' => '23',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_12_11_tid' => '24',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_12_11_tid' => '22',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_12_11_tid' => '23',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_12_11_tid' => '24',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_12_11_tid' => '22',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_12_11_tid' => '23',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_12_11_tid' => '24',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_12_11_tid' => '22',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_12_11_tid' => '23',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_12_11_tid' => '24',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_12_11_tid' => '22',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_12_11_tid' => '23',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_12_11_tid' => '24',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_12_11_tid' => '22',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_12_11_tid' => '23',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_12_11_tid' => '24',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_12_11_tid' => '22',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_12_11_tid' => '23',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_12_11_tid' => '24',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_12_11_tid' => '22',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_12_11_tid' => '23',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_12_11_tid' => '24',
+))
+->execute();
+
+db_create_table('field_data_taxonomy_vocabulary_13_12', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_13_12_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_13_12_tid' => array(
+      'taxonomy_vocabulary_13_12_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_13_12_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_13_12_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_taxonomy_vocabulary_13_12',
+));
+db_insert('field_data_taxonomy_vocabulary_13_12')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_13_12_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_13_12_tid' => '25',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_13_12_tid' => '25',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_13_12_tid' => '25',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_13_12_tid' => '25',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_13_12_tid' => '25',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_13_12_tid' => '25',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_13_12_tid' => '25',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_13_12_tid' => '25',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_13_12_tid' => '25',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_13_12_tid' => '25',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_13_12_tid' => '25',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_13_12_tid' => '25',
+))
+->execute();
+
+db_create_table('field_data_taxonomy_vocabulary_14_13', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_14_13_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_14_13_tid' => array(
+      'taxonomy_vocabulary_14_13_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_14_13_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_14_13_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_taxonomy_vocabulary_14_13',
+));
+db_insert('field_data_taxonomy_vocabulary_14_13')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_14_13_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_14_13_tid' => '26',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_14_13_tid' => '27',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_14_13_tid' => '26',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_14_13_tid' => '27',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_14_13_tid' => '26',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_14_13_tid' => '27',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_14_13_tid' => '26',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_14_13_tid' => '27',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_14_13_tid' => '26',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_14_13_tid' => '27',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_14_13_tid' => '26',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_14_13_tid' => '27',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_14_13_tid' => '26',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_14_13_tid' => '27',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_14_13_tid' => '26',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_14_13_tid' => '27',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_14_13_tid' => '26',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_14_13_tid' => '27',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_14_13_tid' => '26',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_14_13_tid' => '27',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_14_13_tid' => '26',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_14_13_tid' => '27',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_14_13_tid' => '26',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_14_13_tid' => '27',
+))
+->execute();
+
+db_create_table('field_data_taxonomy_vocabulary_15_14', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_15_14_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_15_14_tid' => array(
+      'taxonomy_vocabulary_15_14_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_15_14_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_15_14_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_taxonomy_vocabulary_15_14',
+));
+db_insert('field_data_taxonomy_vocabulary_15_14')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_15_14_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_15_14_tid' => '28',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_15_14_tid' => '28',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_15_14_tid' => '28',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_15_14_tid' => '28',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_15_14_tid' => '28',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_15_14_tid' => '28',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_15_14_tid' => '28',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_15_14_tid' => '28',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_15_14_tid' => '28',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_15_14_tid' => '28',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_15_14_tid' => '28',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_15_14_tid' => '28',
+))
+->execute();
+
+db_create_table('field_data_taxonomy_vocabulary_16_15', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_16_15_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_16_15_tid' => array(
+      'taxonomy_vocabulary_16_15_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_16_15_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_16_15_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_taxonomy_vocabulary_16_15',
+));
+db_insert('field_data_taxonomy_vocabulary_16_15')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_16_15_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_16_15_tid' => '31',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_16_15_tid' => '31',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_16_15_tid' => '31',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_16_15_tid' => '31',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_16_15_tid' => '31',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_16_15_tid' => '31',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_16_15_tid' => '31',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_16_15_tid' => '31',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_16_15_tid' => '31',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_16_15_tid' => '31',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_16_15_tid' => '31',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_16_15_tid' => '31',
+))
+->execute();
+
+db_create_table('field_data_taxonomy_vocabulary_17_16', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_17_16_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_17_16_tid' => array(
+      'taxonomy_vocabulary_17_16_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_17_16_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_17_16_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_taxonomy_vocabulary_17_16',
+));
+db_insert('field_data_taxonomy_vocabulary_17_16')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_17_16_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_17_16_tid' => '32',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_17_16_tid' => '32',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_17_16_tid' => '32',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_17_16_tid' => '32',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_17_16_tid' => '32',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_17_16_tid' => '32',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_17_16_tid' => '32',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_17_16_tid' => '32',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_17_16_tid' => '32',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_17_16_tid' => '32',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_17_16_tid' => '32',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_17_16_tid' => '32',
+))
+->execute();
+
+db_create_table('field_data_taxonomy_vocabulary_18_17', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_18_17_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_18_17_tid' => array(
+      'taxonomy_vocabulary_18_17_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_18_17_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_18_17_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_taxonomy_vocabulary_18_17',
+));
+db_insert('field_data_taxonomy_vocabulary_18_17')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_18_17_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_18_17_tid' => '34',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_18_17_tid' => '35',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_18_17_tid' => '36',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_18_17_tid' => '34',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_18_17_tid' => '35',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_18_17_tid' => '36',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_18_17_tid' => '34',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_18_17_tid' => '35',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_18_17_tid' => '36',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_18_17_tid' => '34',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_18_17_tid' => '35',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_18_17_tid' => '36',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_18_17_tid' => '34',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_18_17_tid' => '35',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_18_17_tid' => '36',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_18_17_tid' => '34',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_18_17_tid' => '35',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_18_17_tid' => '36',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_18_17_tid' => '34',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_18_17_tid' => '35',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_18_17_tid' => '36',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_18_17_tid' => '34',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_18_17_tid' => '35',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_18_17_tid' => '36',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_18_17_tid' => '34',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_18_17_tid' => '35',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_18_17_tid' => '36',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_18_17_tid' => '34',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_18_17_tid' => '35',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_18_17_tid' => '36',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_18_17_tid' => '34',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_18_17_tid' => '35',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_18_17_tid' => '36',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_18_17_tid' => '34',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_18_17_tid' => '35',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_18_17_tid' => '36',
+))
+->execute();
+
+db_create_table('field_data_taxonomy_vocabulary_19_18', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_19_18_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_19_18_tid' => array(
+      'taxonomy_vocabulary_19_18_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_19_18_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_19_18_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_taxonomy_vocabulary_19_18',
+));
+db_insert('field_data_taxonomy_vocabulary_19_18')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_19_18_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_19_18_tid' => '37',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_19_18_tid' => '37',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_19_18_tid' => '37',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_19_18_tid' => '37',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_19_18_tid' => '37',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_19_18_tid' => '37',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_19_18_tid' => '37',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_19_18_tid' => '37',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_19_18_tid' => '37',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_19_18_tid' => '37',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_19_18_tid' => '37',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_19_18_tid' => '37',
+))
+->execute();
+
+db_create_table('field_data_taxonomy_vocabulary_1_0', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_1_0_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_1_0_tid' => array(
+      'taxonomy_vocabulary_1_0_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_1_0_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_1_0_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_taxonomy_vocabulary_1_0',
+));
+db_insert('field_data_taxonomy_vocabulary_1_0')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_1_0_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_1_0_tid' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_1_0_tid' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_1_0_tid' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_1_0_tid' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_1_0_tid' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_1_0_tid' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_1_0_tid' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_1_0_tid' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_1_0_tid' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_1_0_tid' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_1_0_tid' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_1_0_tid' => '1',
+))
+->execute();
+
+db_create_table('field_data_taxonomy_vocabulary_20_19', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_20_19_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_20_19_tid' => array(
+      'taxonomy_vocabulary_20_19_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_20_19_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_20_19_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_taxonomy_vocabulary_20_19',
+));
+db_insert('field_data_taxonomy_vocabulary_20_19')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_20_19_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_20_19_tid' => '38',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_20_19_tid' => '39',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_20_19_tid' => '38',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_20_19_tid' => '39',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_20_19_tid' => '38',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_20_19_tid' => '39',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_20_19_tid' => '38',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_20_19_tid' => '39',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_20_19_tid' => '38',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_20_19_tid' => '39',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_20_19_tid' => '38',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_20_19_tid' => '39',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_20_19_tid' => '38',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_20_19_tid' => '39',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_20_19_tid' => '38',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_20_19_tid' => '39',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_20_19_tid' => '38',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_20_19_tid' => '39',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_20_19_tid' => '39',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_20_19_tid' => '38',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_20_19_tid' => '38',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_20_19_tid' => '39',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_20_19_tid' => '38',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_20_19_tid' => '39',
+))
+->execute();
+
+db_create_table('field_data_taxonomy_vocabulary_21_20', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_21_20_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_21_20_tid' => array(
+      'taxonomy_vocabulary_21_20_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_21_20_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_21_20_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_taxonomy_vocabulary_21_20',
+));
+db_insert('field_data_taxonomy_vocabulary_21_20')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_21_20_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_21_20_tid' => '40',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_21_20_tid' => '40',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_21_20_tid' => '40',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_21_20_tid' => '40',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_21_20_tid' => '40',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_21_20_tid' => '40',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_21_20_tid' => '42',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_21_20_tid' => '41',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_21_20_tid' => '40',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_21_20_tid' => '40',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_21_20_tid' => '40',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_21_20_tid' => '40',
+))
+->execute();
+
+db_create_table('field_data_taxonomy_vocabulary_22_21', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_22_21_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_22_21_tid' => array(
+      'taxonomy_vocabulary_22_21_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_22_21_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_22_21_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_taxonomy_vocabulary_22_21',
+));
+db_insert('field_data_taxonomy_vocabulary_22_21')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_22_21_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_22_21_tid' => '43',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_22_21_tid' => '43',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_22_21_tid' => '43',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_22_21_tid' => '43',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_22_21_tid' => '43',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_22_21_tid' => '43',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_22_21_tid' => '43',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_22_21_tid' => '43',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_22_21_tid' => '43',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_22_21_tid' => '43',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_22_21_tid' => '43',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_22_21_tid' => '43',
+))
+->execute();
+
+db_create_table('field_data_taxonomy_vocabulary_23_22', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_23_22_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_23_22_tid' => array(
+      'taxonomy_vocabulary_23_22_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_23_22_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_23_22_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_taxonomy_vocabulary_23_22',
+));
+db_insert('field_data_taxonomy_vocabulary_23_22')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_23_22_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_23_22_tid' => '44',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_23_22_tid' => '44',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_23_22_tid' => '44',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_23_22_tid' => '45',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_23_22_tid' => '44',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_23_22_tid' => '44',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_23_22_tid' => '44',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_23_22_tid' => '44',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_23_22_tid' => '44',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_23_22_tid' => '44',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_23_22_tid' => '44',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_23_22_tid' => '44',
+))
+->execute();
+
+db_create_table('field_data_taxonomy_vocabulary_24_23', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_24_23_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_24_23_tid' => array(
+      'taxonomy_vocabulary_24_23_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_24_23_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_24_23_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_taxonomy_vocabulary_24_23',
+));
+db_insert('field_data_taxonomy_vocabulary_24_23')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_24_23_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_24_23_tid' => '48',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_24_23_tid' => '46',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_24_23_tid' => '47',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_24_23_tid' => '47',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_24_23_tid' => '46',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_24_23_tid' => '48',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_24_23_tid' => '46',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_24_23_tid' => '47',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_24_23_tid' => '48',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_24_23_tid' => '46',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_24_23_tid' => '47',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_24_23_tid' => '48',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_24_23_tid' => '46',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_24_23_tid' => '47',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_24_23_tid' => '48',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_24_23_tid' => '46',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_24_23_tid' => '47',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_24_23_tid' => '48',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_24_23_tid' => '46',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_24_23_tid' => '47',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_24_23_tid' => '48',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_24_23_tid' => '46',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_24_23_tid' => '47',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_24_23_tid' => '48',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_24_23_tid' => '46',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_24_23_tid' => '47',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_24_23_tid' => '48',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_24_23_tid' => '46',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_24_23_tid' => '47',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_24_23_tid' => '48',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_24_23_tid' => '46',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_24_23_tid' => '47',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_24_23_tid' => '48',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_24_23_tid' => '46',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_24_23_tid' => '47',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_24_23_tid' => '48',
+))
+->execute();
+
+db_create_table('field_data_taxonomy_vocabulary_2_1', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_2_1_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_2_1_tid' => array(
+      'taxonomy_vocabulary_2_1_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_2_1_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_2_1_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_taxonomy_vocabulary_2_1',
+));
+db_insert('field_data_taxonomy_vocabulary_2_1')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_2_1_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_2_1_tid' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_2_1_tid' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_2_1_tid' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_2_1_tid' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_2_1_tid' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_2_1_tid' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_2_1_tid' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_2_1_tid' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_2_1_tid' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_2_1_tid' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_2_1_tid' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_2_1_tid' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_2_1_tid' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_2_1_tid' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_2_1_tid' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_2_1_tid' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_2_1_tid' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_2_1_tid' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_2_1_tid' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_2_1_tid' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_2_1_tid' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_2_1_tid' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_2_1_tid' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_2_1_tid' => '3',
+))
+->execute();
+
+db_create_table('field_data_taxonomy_vocabulary_3_2', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_3_2_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_3_2_tid' => array(
+      'taxonomy_vocabulary_3_2_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_3_2_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_3_2_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_taxonomy_vocabulary_3_2',
+));
+db_insert('field_data_taxonomy_vocabulary_3_2')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_3_2_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_3_2_tid' => '4',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_3_2_tid' => '4',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_3_2_tid' => '4',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_3_2_tid' => '4',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_3_2_tid' => '5',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_3_2_tid' => '6',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_3_2_tid' => '4',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_3_2_tid' => '4',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_3_2_tid' => '4',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_3_2_tid' => '4',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_3_2_tid' => '4',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_3_2_tid' => '4',
+))
+->execute();
+
+db_create_table('field_data_taxonomy_vocabulary_4_3', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_4_3_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_4_3_tid' => array(
+      'taxonomy_vocabulary_4_3_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_4_3_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_4_3_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_taxonomy_vocabulary_4_3',
+));
+db_insert('field_data_taxonomy_vocabulary_4_3')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_4_3_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_4_3_tid' => '7',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_4_3_tid' => '7',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_4_3_tid' => '7',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_4_3_tid' => '7',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_4_3_tid' => '7',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_4_3_tid' => '7',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_4_3_tid' => '7',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_4_3_tid' => '7',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_4_3_tid' => '7',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_4_3_tid' => '7',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_4_3_tid' => '7',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_4_3_tid' => '7',
+))
+->execute();
+
+db_create_table('field_data_taxonomy_vocabulary_5_4', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_5_4_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_5_4_tid' => array(
+      'taxonomy_vocabulary_5_4_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_5_4_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_5_4_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_taxonomy_vocabulary_5_4',
+));
+db_insert('field_data_taxonomy_vocabulary_5_4')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_5_4_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_5_4_tid' => '8',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_5_4_tid' => '8',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_5_4_tid' => '8',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_5_4_tid' => '8',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_5_4_tid' => '8',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_5_4_tid' => '8',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_5_4_tid' => '8',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_5_4_tid' => '8',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_5_4_tid' => '9',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_5_4_tid' => '8',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_5_4_tid' => '8',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_5_4_tid' => '8',
+))
+->execute();
+
+db_create_table('field_data_taxonomy_vocabulary_6_5', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_6_5_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_6_5_tid' => array(
+      'taxonomy_vocabulary_6_5_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_6_5_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_6_5_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_taxonomy_vocabulary_6_5',
+));
+db_insert('field_data_taxonomy_vocabulary_6_5')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_6_5_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_6_5_tid' => '10',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_6_5_tid' => '11',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_6_5_tid' => '12',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_6_5_tid' => '10',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_6_5_tid' => '11',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_6_5_tid' => '12',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_6_5_tid' => '10',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_6_5_tid' => '11',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_6_5_tid' => '12',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_6_5_tid' => '10',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_6_5_tid' => '11',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_6_5_tid' => '12',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_6_5_tid' => '10',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_6_5_tid' => '11',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_6_5_tid' => '12',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_6_5_tid' => '10',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_6_5_tid' => '11',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_6_5_tid' => '12',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_6_5_tid' => '10',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_6_5_tid' => '11',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_6_5_tid' => '12',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_6_5_tid' => '10',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_6_5_tid' => '11',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_6_5_tid' => '12',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_6_5_tid' => '10',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_6_5_tid' => '11',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_6_5_tid' => '12',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_6_5_tid' => '10',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_6_5_tid' => '11',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_6_5_tid' => '12',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_6_5_tid' => '11',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_6_5_tid' => '10',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_6_5_tid' => '12',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_6_5_tid' => '12',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_6_5_tid' => '10',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_6_5_tid' => '11',
+))
+->execute();
+
+db_create_table('field_data_taxonomy_vocabulary_7_6', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_7_6_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_7_6_tid' => array(
+      'taxonomy_vocabulary_7_6_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_7_6_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_7_6_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_taxonomy_vocabulary_7_6',
+));
+db_insert('field_data_taxonomy_vocabulary_7_6')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_7_6_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_7_6_tid' => '13',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_7_6_tid' => '13',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_7_6_tid' => '13',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_7_6_tid' => '13',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_7_6_tid' => '13',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_7_6_tid' => '13',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_7_6_tid' => '13',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_7_6_tid' => '13',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_7_6_tid' => '13',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_7_6_tid' => '13',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_7_6_tid' => '13',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_7_6_tid' => '13',
+))
+->execute();
+
+db_create_table('field_data_taxonomy_vocabulary_8_7', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_8_7_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_8_7_tid' => array(
+      'taxonomy_vocabulary_8_7_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_8_7_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_8_7_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_taxonomy_vocabulary_8_7',
+));
+db_insert('field_data_taxonomy_vocabulary_8_7')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_8_7_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_8_7_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_8_7_tid' => '15',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_8_7_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_8_7_tid' => '15',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_8_7_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_8_7_tid' => '15',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_8_7_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_8_7_tid' => '15',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_8_7_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_8_7_tid' => '15',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_8_7_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_8_7_tid' => '15',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_8_7_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_8_7_tid' => '15',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_8_7_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_8_7_tid' => '15',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_8_7_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_8_7_tid' => '15',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_8_7_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_8_7_tid' => '15',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_8_7_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_8_7_tid' => '15',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_8_7_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_8_7_tid' => '15',
+))
+->execute();
+
+db_create_table('field_data_taxonomy_vocabulary_9_8', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_9_8_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_9_8_tid' => array(
+      'taxonomy_vocabulary_9_8_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_9_8_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_9_8_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_data_taxonomy_vocabulary_9_8',
+));
+db_insert('field_data_taxonomy_vocabulary_9_8')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_9_8_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_9_8_tid' => '16',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_9_8_tid' => '16',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_9_8_tid' => '16',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_9_8_tid' => '16',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_9_8_tid' => '16',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_9_8_tid' => '16',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_9_8_tid' => '16',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_9_8_tid' => '16',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_9_8_tid' => '16',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_9_8_tid' => '16',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_9_8_tid' => '16',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_9_8_tid' => '16',
+))
+->execute();
+
+db_create_table('field_revision_body', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'body_value' => array(
+      'type' => 'text',
+      'size' => 'big',
+      'not null' => FALSE,
+    ),
+    'body_summary' => array(
+      'type' => 'text',
+      'size' => 'big',
+      'not null' => FALSE,
+    ),
+    'body_format' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'body_format' => array(
+      'body_format',
+    ),
+  ),
+  'foreign keys' => array(
+    'body_format' => array(
+      'table' => 'filter_format',
+      'columns' => array(
+        'body_format' => 'format',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_body',
+));
+db_insert('field_revision_body')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'body_value',
+  'body_summary',
+  'body_format',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0',
+  'body_summary' => 'node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0',
+  'body_summary' => 'node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '3',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1',
+  'body_summary' => 'node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1',
+  'body_summary' => 'node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '5',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2',
+  'body_summary' => 'node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2',
+  'body_summary' => 'node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '7',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3',
+  'body_summary' => 'node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3',
+  'body_summary' => 'node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '9',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4',
+  'body_summary' => 'node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4',
+  'body_summary' => 'node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5',
+  'body_summary' => 'node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5',
+  'body_summary' => 'node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '13',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6',
+  'body_summary' => 'node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6',
+  'body_summary' => 'node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '15',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7',
+  'body_summary' => 'node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7',
+  'body_summary' => 'node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '17',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8',
+  'body_summary' => 'node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8',
+  'body_summary' => 'node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '19',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9',
+  'body_summary' => 'node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9',
+  'body_summary' => 'node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '21',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10',
+  'body_summary' => 'node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (p',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10',
+  'body_summary' => 'node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '23',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11',
+  'body_summary' => 'node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (p',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11',
+  'body_summary' => 'node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11',
+  'body_format' => 'filtered_html',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'broken',
+  'deleted' => '0',
+  'entity_id' => '37',
+  'revision_id' => '49',
+  'language' => 'und',
+  'delta' => '0',
+  'body_value' => 'node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37',
+  'body_summary' => 'node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37no',
+  'body_format' => 'filtered_html',
+))
+->execute();
+
+db_create_table('field_revision_comment_body', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'comment_body_value' => array(
+      'type' => 'text',
+      'size' => 'big',
+      'not null' => FALSE,
+    ),
+    'comment_body_format' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'comment_body_format' => array(
+      'comment_body_format',
+    ),
+  ),
+  'foreign keys' => array(
+    'comment_body_format' => array(
+      'table' => 'filter_format',
+      'columns' => array(
+        'comment_body_format' => 'format',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_comment_body',
+));
+
+db_create_table('field_revision_field_image', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'field_image_fid' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'unsigned' => TRUE,
+    ),
+    'field_image_alt' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => FALSE,
+    ),
+    'field_image_title' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'field_image_fid' => array(
+      'field_image_fid',
+    ),
+  ),
+  'foreign keys' => array(
+    'field_image_fid' => array(
+      'table' => 'file_managed',
+      'columns' => array(
+        'field_image_fid' => 'fid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_field_image',
+));
+
+db_create_table('field_revision_field_tags', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'field_tags_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'field_tags_tid' => array(
+      'field_tags_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'field_tags_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'field_tags_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_field_tags',
+));
+
+db_create_table('field_revision_taxonomy_vocabulary_10_9', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_10_9_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_10_9_tid' => array(
+      'taxonomy_vocabulary_10_9_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_10_9_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_10_9_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_taxonomy_vocabulary_10_9',
+));
+db_insert('field_revision_taxonomy_vocabulary_10_9')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_10_9_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_10_9_tid' => '19',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_10_9_tid' => '19',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_10_9_tid' => '19',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_10_9_tid' => '19',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_10_9_tid' => '19',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_10_9_tid' => '19',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_10_9_tid' => '19',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_10_9_tid' => '19',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_10_9_tid' => '19',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_10_9_tid' => '19',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_10_9_tid' => '19',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_10_9_tid' => '19',
+))
+->execute();
+
+db_create_table('field_revision_taxonomy_vocabulary_11_10', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_11_10_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_11_10_tid' => array(
+      'taxonomy_vocabulary_11_10_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_11_10_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_11_10_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_taxonomy_vocabulary_11_10',
+));
+db_insert('field_revision_taxonomy_vocabulary_11_10')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_11_10_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_11_10_tid' => '20',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_11_10_tid' => '20',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_11_10_tid' => '20',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_11_10_tid' => '20',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_11_10_tid' => '20',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_11_10_tid' => '20',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_11_10_tid' => '20',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_11_10_tid' => '20',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_11_10_tid' => '20',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_11_10_tid' => '20',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_11_10_tid' => '20',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_11_10_tid' => '20',
+))
+->execute();
+
+db_create_table('field_revision_taxonomy_vocabulary_12_11', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_12_11_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_12_11_tid' => array(
+      'taxonomy_vocabulary_12_11_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_12_11_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_12_11_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_taxonomy_vocabulary_12_11',
+));
+db_insert('field_revision_taxonomy_vocabulary_12_11')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_12_11_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_12_11_tid' => '22',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_12_11_tid' => '23',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_12_11_tid' => '24',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_12_11_tid' => '22',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_12_11_tid' => '23',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_12_11_tid' => '24',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_12_11_tid' => '22',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_12_11_tid' => '23',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_12_11_tid' => '24',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_12_11_tid' => '22',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_12_11_tid' => '23',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_12_11_tid' => '24',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_12_11_tid' => '22',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_12_11_tid' => '23',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_12_11_tid' => '24',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_12_11_tid' => '22',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_12_11_tid' => '23',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_12_11_tid' => '24',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_12_11_tid' => '22',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_12_11_tid' => '23',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_12_11_tid' => '24',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_12_11_tid' => '22',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_12_11_tid' => '23',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_12_11_tid' => '24',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_12_11_tid' => '22',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_12_11_tid' => '23',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_12_11_tid' => '24',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_12_11_tid' => '22',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_12_11_tid' => '23',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_12_11_tid' => '24',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_12_11_tid' => '22',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_12_11_tid' => '23',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_12_11_tid' => '24',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_12_11_tid' => '22',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_12_11_tid' => '23',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_12_11_tid' => '24',
+))
+->execute();
+
+db_create_table('field_revision_taxonomy_vocabulary_13_12', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_13_12_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_13_12_tid' => array(
+      'taxonomy_vocabulary_13_12_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_13_12_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_13_12_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_taxonomy_vocabulary_13_12',
+));
+db_insert('field_revision_taxonomy_vocabulary_13_12')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_13_12_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_13_12_tid' => '25',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_13_12_tid' => '25',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_13_12_tid' => '25',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_13_12_tid' => '25',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_13_12_tid' => '25',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_13_12_tid' => '25',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_13_12_tid' => '25',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_13_12_tid' => '25',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_13_12_tid' => '25',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_13_12_tid' => '25',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_13_12_tid' => '25',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_13_12_tid' => '25',
+))
+->execute();
+
+db_create_table('field_revision_taxonomy_vocabulary_14_13', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_14_13_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_14_13_tid' => array(
+      'taxonomy_vocabulary_14_13_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_14_13_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_14_13_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_taxonomy_vocabulary_14_13',
+));
+db_insert('field_revision_taxonomy_vocabulary_14_13')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_14_13_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_14_13_tid' => '26',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_14_13_tid' => '27',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_14_13_tid' => '26',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_14_13_tid' => '27',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_14_13_tid' => '26',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_14_13_tid' => '27',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_14_13_tid' => '26',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_14_13_tid' => '27',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_14_13_tid' => '26',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_14_13_tid' => '27',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_14_13_tid' => '26',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_14_13_tid' => '27',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_14_13_tid' => '26',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_14_13_tid' => '27',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_14_13_tid' => '26',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_14_13_tid' => '27',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_14_13_tid' => '26',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_14_13_tid' => '27',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_14_13_tid' => '26',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_14_13_tid' => '27',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_14_13_tid' => '26',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_14_13_tid' => '27',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_14_13_tid' => '26',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_14_13_tid' => '27',
+))
+->execute();
+
+db_create_table('field_revision_taxonomy_vocabulary_15_14', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_15_14_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_15_14_tid' => array(
+      'taxonomy_vocabulary_15_14_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_15_14_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_15_14_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_taxonomy_vocabulary_15_14',
+));
+db_insert('field_revision_taxonomy_vocabulary_15_14')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_15_14_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_15_14_tid' => '28',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_15_14_tid' => '28',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_15_14_tid' => '28',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_15_14_tid' => '28',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_15_14_tid' => '28',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_15_14_tid' => '28',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_15_14_tid' => '28',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_15_14_tid' => '28',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_15_14_tid' => '28',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_15_14_tid' => '28',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_15_14_tid' => '28',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_15_14_tid' => '28',
+))
+->execute();
+
+db_create_table('field_revision_taxonomy_vocabulary_16_15', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_16_15_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_16_15_tid' => array(
+      'taxonomy_vocabulary_16_15_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_16_15_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_16_15_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_taxonomy_vocabulary_16_15',
+));
+db_insert('field_revision_taxonomy_vocabulary_16_15')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_16_15_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_16_15_tid' => '31',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_16_15_tid' => '31',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_16_15_tid' => '31',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_16_15_tid' => '31',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_16_15_tid' => '31',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_16_15_tid' => '31',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_16_15_tid' => '31',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_16_15_tid' => '31',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_16_15_tid' => '31',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_16_15_tid' => '31',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_16_15_tid' => '31',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_16_15_tid' => '31',
+))
+->execute();
+
+db_create_table('field_revision_taxonomy_vocabulary_17_16', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_17_16_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_17_16_tid' => array(
+      'taxonomy_vocabulary_17_16_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_17_16_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_17_16_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_taxonomy_vocabulary_17_16',
+));
+db_insert('field_revision_taxonomy_vocabulary_17_16')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_17_16_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_17_16_tid' => '32',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_17_16_tid' => '32',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_17_16_tid' => '32',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_17_16_tid' => '32',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_17_16_tid' => '32',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_17_16_tid' => '32',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_17_16_tid' => '32',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_17_16_tid' => '32',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_17_16_tid' => '32',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_17_16_tid' => '32',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_17_16_tid' => '32',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_17_16_tid' => '32',
+))
+->execute();
+
+db_create_table('field_revision_taxonomy_vocabulary_18_17', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_18_17_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_18_17_tid' => array(
+      'taxonomy_vocabulary_18_17_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_18_17_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_18_17_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_taxonomy_vocabulary_18_17',
+));
+db_insert('field_revision_taxonomy_vocabulary_18_17')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_18_17_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_18_17_tid' => '34',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_18_17_tid' => '35',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_18_17_tid' => '36',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_18_17_tid' => '34',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_18_17_tid' => '35',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_18_17_tid' => '36',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_18_17_tid' => '34',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_18_17_tid' => '35',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_18_17_tid' => '36',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_18_17_tid' => '34',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_18_17_tid' => '35',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_18_17_tid' => '36',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_18_17_tid' => '34',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_18_17_tid' => '35',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_18_17_tid' => '36',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_18_17_tid' => '34',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_18_17_tid' => '35',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_18_17_tid' => '36',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_18_17_tid' => '34',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_18_17_tid' => '35',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_18_17_tid' => '36',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_18_17_tid' => '34',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_18_17_tid' => '35',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_18_17_tid' => '36',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_18_17_tid' => '34',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_18_17_tid' => '35',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_18_17_tid' => '36',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_18_17_tid' => '34',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_18_17_tid' => '35',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_18_17_tid' => '36',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_18_17_tid' => '34',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_18_17_tid' => '35',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_18_17_tid' => '36',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_18_17_tid' => '34',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_18_17_tid' => '35',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_18_17_tid' => '36',
+))
+->execute();
+
+db_create_table('field_revision_taxonomy_vocabulary_19_18', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_19_18_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_19_18_tid' => array(
+      'taxonomy_vocabulary_19_18_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_19_18_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_19_18_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_taxonomy_vocabulary_19_18',
+));
+db_insert('field_revision_taxonomy_vocabulary_19_18')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_19_18_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_19_18_tid' => '37',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_19_18_tid' => '37',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_19_18_tid' => '37',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_19_18_tid' => '37',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_19_18_tid' => '37',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_19_18_tid' => '37',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_19_18_tid' => '37',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_19_18_tid' => '37',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_19_18_tid' => '37',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_19_18_tid' => '37',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_19_18_tid' => '37',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '23',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_19_18_tid' => '37',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_19_18_tid' => '37',
+))
+->execute();
+
+db_create_table('field_revision_taxonomy_vocabulary_1_0', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_1_0_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_1_0_tid' => array(
+      'taxonomy_vocabulary_1_0_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_1_0_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_1_0_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_taxonomy_vocabulary_1_0',
+));
+db_insert('field_revision_taxonomy_vocabulary_1_0')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_1_0_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_1_0_tid' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_1_0_tid' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_1_0_tid' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_1_0_tid' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_1_0_tid' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_1_0_tid' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_1_0_tid' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_1_0_tid' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_1_0_tid' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_1_0_tid' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_1_0_tid' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_1_0_tid' => '1',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_1_0_tid' => '1',
+))
+->execute();
+
+db_create_table('field_revision_taxonomy_vocabulary_20_19', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_20_19_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_20_19_tid' => array(
+      'taxonomy_vocabulary_20_19_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_20_19_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_20_19_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_taxonomy_vocabulary_20_19',
+));
+db_insert('field_revision_taxonomy_vocabulary_20_19')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_20_19_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_20_19_tid' => '38',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_20_19_tid' => '39',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_20_19_tid' => '38',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_20_19_tid' => '39',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_20_19_tid' => '38',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_20_19_tid' => '39',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_20_19_tid' => '38',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_20_19_tid' => '39',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_20_19_tid' => '38',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_20_19_tid' => '39',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_20_19_tid' => '38',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_20_19_tid' => '39',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_20_19_tid' => '38',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_20_19_tid' => '39',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_20_19_tid' => '38',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_20_19_tid' => '39',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_20_19_tid' => '38',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_20_19_tid' => '39',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '19',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_20_19_tid' => '39',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_20_19_tid' => '39',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_20_19_tid' => '38',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '21',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_20_19_tid' => '38',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_20_19_tid' => '38',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_20_19_tid' => '39',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_20_19_tid' => '38',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_20_19_tid' => '39',
+))
+->execute();
+
+db_create_table('field_revision_taxonomy_vocabulary_21_20', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_21_20_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_21_20_tid' => array(
+      'taxonomy_vocabulary_21_20_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_21_20_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_21_20_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_taxonomy_vocabulary_21_20',
+));
+db_insert('field_revision_taxonomy_vocabulary_21_20')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_21_20_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_21_20_tid' => '40',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_21_20_tid' => '40',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_21_20_tid' => '40',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_21_20_tid' => '40',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_21_20_tid' => '40',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_21_20_tid' => '40',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '13',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_21_20_tid' => '42',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_21_20_tid' => '42',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '15',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_21_20_tid' => '41',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_21_20_tid' => '41',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '17',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_21_20_tid' => '40',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_21_20_tid' => '40',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_21_20_tid' => '40',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_21_20_tid' => '40',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_21_20_tid' => '40',
+))
+->execute();
+
+db_create_table('field_revision_taxonomy_vocabulary_22_21', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_22_21_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_22_21_tid' => array(
+      'taxonomy_vocabulary_22_21_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_22_21_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_22_21_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_taxonomy_vocabulary_22_21',
+));
+db_insert('field_revision_taxonomy_vocabulary_22_21')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_22_21_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_22_21_tid' => '43',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_22_21_tid' => '43',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_22_21_tid' => '43',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_22_21_tid' => '43',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_22_21_tid' => '43',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_22_21_tid' => '43',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_22_21_tid' => '43',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_22_21_tid' => '43',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_22_21_tid' => '43',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_22_21_tid' => '43',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_22_21_tid' => '43',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_22_21_tid' => '43',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_22_21_tid' => '43',
+))
+->execute();
+
+db_create_table('field_revision_taxonomy_vocabulary_23_22', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_23_22_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_23_22_tid' => array(
+      'taxonomy_vocabulary_23_22_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_23_22_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_23_22_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_taxonomy_vocabulary_23_22',
+));
+db_insert('field_revision_taxonomy_vocabulary_23_22')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_23_22_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_23_22_tid' => '44',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_23_22_tid' => '44',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_23_22_tid' => '44',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '7',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_23_22_tid' => '45',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_23_22_tid' => '45',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '9',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_23_22_tid' => '44',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_23_22_tid' => '44',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_23_22_tid' => '44',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_23_22_tid' => '44',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_23_22_tid' => '44',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_23_22_tid' => '44',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_23_22_tid' => '44',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_23_22_tid' => '44',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_23_22_tid' => '44',
+))
+->execute();
+
+db_create_table('field_revision_taxonomy_vocabulary_24_23', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_24_23_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_24_23_tid' => array(
+      'taxonomy_vocabulary_24_23_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_24_23_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_24_23_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_taxonomy_vocabulary_24_23',
+));
+db_insert('field_revision_taxonomy_vocabulary_24_23')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_24_23_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '1',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_24_23_tid' => '48',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_24_23_tid' => '48',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_24_23_tid' => '46',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_24_23_tid' => '47',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '3',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_24_23_tid' => '47',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_24_23_tid' => '47',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_24_23_tid' => '46',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_24_23_tid' => '48',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '5',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_24_23_tid' => '46',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_24_23_tid' => '46',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_24_23_tid' => '47',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_24_23_tid' => '48',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_24_23_tid' => '46',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_24_23_tid' => '47',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_24_23_tid' => '48',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_24_23_tid' => '46',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_24_23_tid' => '47',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_24_23_tid' => '48',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_24_23_tid' => '46',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_24_23_tid' => '47',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_24_23_tid' => '48',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_24_23_tid' => '46',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_24_23_tid' => '47',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_24_23_tid' => '48',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_24_23_tid' => '46',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_24_23_tid' => '47',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_24_23_tid' => '48',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_24_23_tid' => '46',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_24_23_tid' => '47',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_24_23_tid' => '48',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_24_23_tid' => '46',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_24_23_tid' => '47',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_24_23_tid' => '48',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_24_23_tid' => '46',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_24_23_tid' => '47',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_24_23_tid' => '48',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_24_23_tid' => '46',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_24_23_tid' => '47',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_24_23_tid' => '48',
+))
+->execute();
+
+db_create_table('field_revision_taxonomy_vocabulary_2_1', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_2_1_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_2_1_tid' => array(
+      'taxonomy_vocabulary_2_1_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_2_1_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_2_1_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_taxonomy_vocabulary_2_1',
+));
+db_insert('field_revision_taxonomy_vocabulary_2_1')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_2_1_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_2_1_tid' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_2_1_tid' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '3',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_2_1_tid' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_2_1_tid' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_2_1_tid' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '5',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_2_1_tid' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_2_1_tid' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_2_1_tid' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_2_1_tid' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_2_1_tid' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_2_1_tid' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_2_1_tid' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_2_1_tid' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_2_1_tid' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_2_1_tid' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_2_1_tid' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_2_1_tid' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_2_1_tid' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_2_1_tid' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_2_1_tid' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_2_1_tid' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_2_1_tid' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_2_1_tid' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_2_1_tid' => '3',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_2_1_tid' => '2',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_2_1_tid' => '3',
+))
+->execute();
+
+db_create_table('field_revision_taxonomy_vocabulary_3_2', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_3_2_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_3_2_tid' => array(
+      'taxonomy_vocabulary_3_2_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_3_2_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_3_2_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_taxonomy_vocabulary_3_2',
+));
+db_insert('field_revision_taxonomy_vocabulary_3_2')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_3_2_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_3_2_tid' => '4',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_3_2_tid' => '4',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_3_2_tid' => '4',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '7',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_3_2_tid' => '4',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_3_2_tid' => '4',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '9',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_3_2_tid' => '5',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_3_2_tid' => '5',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '11',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_3_2_tid' => '6',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_3_2_tid' => '6',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_3_2_tid' => '4',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_3_2_tid' => '4',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_3_2_tid' => '4',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_3_2_tid' => '4',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_3_2_tid' => '4',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_3_2_tid' => '4',
+))
+->execute();
+
+db_create_table('field_revision_taxonomy_vocabulary_4_3', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_4_3_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_4_3_tid' => array(
+      'taxonomy_vocabulary_4_3_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_4_3_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_4_3_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_taxonomy_vocabulary_4_3',
+));
+db_insert('field_revision_taxonomy_vocabulary_4_3')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_4_3_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_4_3_tid' => '7',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_4_3_tid' => '7',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_4_3_tid' => '7',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_4_3_tid' => '7',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_4_3_tid' => '7',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_4_3_tid' => '7',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '13',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_4_3_tid' => '7',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_4_3_tid' => '7',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_4_3_tid' => '7',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_4_3_tid' => '7',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_4_3_tid' => '7',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_4_3_tid' => '7',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_4_3_tid' => '7',
+))
+->execute();
+
+db_create_table('field_revision_taxonomy_vocabulary_5_4', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_5_4_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_5_4_tid' => array(
+      'taxonomy_vocabulary_5_4_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_5_4_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_5_4_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_taxonomy_vocabulary_5_4',
+));
+db_insert('field_revision_taxonomy_vocabulary_5_4')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_5_4_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_5_4_tid' => '8',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_5_4_tid' => '8',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_5_4_tid' => '8',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_5_4_tid' => '8',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_5_4_tid' => '8',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_5_4_tid' => '8',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_5_4_tid' => '8',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '15',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_5_4_tid' => '8',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_5_4_tid' => '8',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '17',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_5_4_tid' => '9',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_5_4_tid' => '9',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_5_4_tid' => '8',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_5_4_tid' => '8',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_5_4_tid' => '8',
+))
+->execute();
+
+db_create_table('field_revision_taxonomy_vocabulary_6_5', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_6_5_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_6_5_tid' => array(
+      'taxonomy_vocabulary_6_5_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_6_5_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_6_5_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_taxonomy_vocabulary_6_5',
+));
+db_insert('field_revision_taxonomy_vocabulary_6_5')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_6_5_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_6_5_tid' => '10',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_6_5_tid' => '11',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_6_5_tid' => '12',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_6_5_tid' => '10',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_6_5_tid' => '11',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_6_5_tid' => '12',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_6_5_tid' => '10',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_6_5_tid' => '11',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_6_5_tid' => '12',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_6_5_tid' => '10',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_6_5_tid' => '11',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_6_5_tid' => '12',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_6_5_tid' => '10',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_6_5_tid' => '11',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_6_5_tid' => '12',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_6_5_tid' => '10',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_6_5_tid' => '11',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_6_5_tid' => '12',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_6_5_tid' => '10',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_6_5_tid' => '11',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_6_5_tid' => '12',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_6_5_tid' => '10',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_6_5_tid' => '11',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_6_5_tid' => '12',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_6_5_tid' => '10',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_6_5_tid' => '11',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_6_5_tid' => '12',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '19',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_6_5_tid' => '10',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_6_5_tid' => '10',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_6_5_tid' => '11',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_6_5_tid' => '12',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '21',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_6_5_tid' => '11',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_6_5_tid' => '11',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_6_5_tid' => '10',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_6_5_tid' => '12',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '23',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_6_5_tid' => '12',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_6_5_tid' => '12',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_6_5_tid' => '10',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '2',
+  'taxonomy_vocabulary_6_5_tid' => '11',
+))
+->execute();
+
+db_create_table('field_revision_taxonomy_vocabulary_7_6', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_7_6_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_7_6_tid' => array(
+      'taxonomy_vocabulary_7_6_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_7_6_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_7_6_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_taxonomy_vocabulary_7_6',
+));
+db_insert('field_revision_taxonomy_vocabulary_7_6')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_7_6_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_7_6_tid' => '13',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_7_6_tid' => '13',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_7_6_tid' => '13',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_7_6_tid' => '13',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_7_6_tid' => '13',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_7_6_tid' => '13',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_7_6_tid' => '13',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_7_6_tid' => '13',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_7_6_tid' => '13',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_7_6_tid' => '13',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_7_6_tid' => '13',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_7_6_tid' => '13',
+))
+->execute();
+
+db_create_table('field_revision_taxonomy_vocabulary_8_7', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_8_7_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_8_7_tid' => array(
+      'taxonomy_vocabulary_8_7_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_8_7_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_8_7_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_taxonomy_vocabulary_8_7',
+));
+db_insert('field_revision_taxonomy_vocabulary_8_7')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_8_7_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_8_7_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_8_7_tid' => '15',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_8_7_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_8_7_tid' => '15',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_8_7_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_8_7_tid' => '15',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_8_7_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_8_7_tid' => '15',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_8_7_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_8_7_tid' => '15',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_8_7_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_8_7_tid' => '15',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_8_7_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_8_7_tid' => '15',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_8_7_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_8_7_tid' => '15',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_8_7_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_8_7_tid' => '15',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_8_7_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_8_7_tid' => '15',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_8_7_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_8_7_tid' => '15',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_8_7_tid' => '14',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '1',
+  'taxonomy_vocabulary_8_7_tid' => '15',
+))
+->execute();
+
+db_create_table('field_revision_taxonomy_vocabulary_9_8', array(
+  'fields' => array(
+    'entity_type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'deleted' => array(
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'entity_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'revision_id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'delta' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'taxonomy_vocabulary_9_8_tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'entity_type',
+    'entity_id',
+    'revision_id',
+    'deleted',
+    'delta',
+    'language',
+  ),
+  'indexes' => array(
+    'entity_type' => array(
+      'entity_type',
+    ),
+    'bundle' => array(
+      'bundle',
+    ),
+    'deleted' => array(
+      'deleted',
+    ),
+    'entity_id' => array(
+      'entity_id',
+    ),
+    'revision_id' => array(
+      'revision_id',
+    ),
+    'language' => array(
+      'language',
+    ),
+    'taxonomy_vocabulary_9_8_tid' => array(
+      'taxonomy_vocabulary_9_8_tid',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_vocabulary_9_8_tid' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'taxonomy_vocabulary_9_8_tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'field_sql_storage',
+  'name' => 'field_revision_taxonomy_vocabulary_9_8',
+));
+db_insert('field_revision_taxonomy_vocabulary_9_8')->fields(array(
+  'entity_type',
+  'bundle',
+  'deleted',
+  'entity_id',
+  'revision_id',
+  'language',
+  'delta',
+  'taxonomy_vocabulary_9_8_tid',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '1',
+  'revision_id' => '2',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_9_8_tid' => '16',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '2',
+  'revision_id' => '4',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_9_8_tid' => '16',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '3',
+  'revision_id' => '6',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_9_8_tid' => '16',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '4',
+  'revision_id' => '8',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_9_8_tid' => '16',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '5',
+  'revision_id' => '10',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_9_8_tid' => '16',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '6',
+  'revision_id' => '12',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_9_8_tid' => '16',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '7',
+  'revision_id' => '14',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_9_8_tid' => '16',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '8',
+  'revision_id' => '16',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_9_8_tid' => '16',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '9',
+  'revision_id' => '18',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_9_8_tid' => '16',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '10',
+  'revision_id' => '20',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_9_8_tid' => '16',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '11',
+  'revision_id' => '22',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_9_8_tid' => '16',
+))
+->values(array(
+  'entity_type' => 'node',
+  'bundle' => 'page',
+  'deleted' => '0',
+  'entity_id' => '12',
+  'revision_id' => '24',
+  'language' => 'und',
+  'delta' => '0',
+  'taxonomy_vocabulary_9_8_tid' => '16',
+))
+->execute();
+
+db_create_table('file_managed', array(
+  'fields' => array(
+    'fid' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'uid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'filename' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'uri' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'filemime' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'filesize' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'status' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'timestamp' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'uid' => array(
+      'uid',
+    ),
+    'status' => array(
+      'status',
+    ),
+    'timestamp' => array(
+      'timestamp',
+    ),
+  ),
+  'unique keys' => array(
+    'uri' => array(
+      'uri',
+    ),
+  ),
+  'primary key' => array(
+    'fid',
+  ),
+  'foreign keys' => array(
+    'file_owner' => array(
+      'table' => 'users',
+      'columns' => array(
+        'uid' => 'uid',
+      ),
+    ),
+  ),
+  'module' => 'system',
+  'name' => 'file_managed',
+));
+
+db_create_table('file_usage', array(
+  'fields' => array(
+    'fid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'module' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'id' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'count' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'primary key' => array(
+    'fid',
+    'type',
+    'id',
+    'module',
+  ),
+  'indexes' => array(
+    'type_id' => array(
+      'type',
+      'id',
+    ),
+    'fid_count' => array(
+      'fid',
+      'count',
+    ),
+    'fid_module' => array(
+      'fid',
+      'module',
+    ),
+  ),
+  'module' => 'system',
+  'name' => 'file_usage',
+));
+
+db_create_table('filter', array(
+  'fields' => array(
+    'format' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+    ),
+    'module' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'status' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'settings' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+      'serialize' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'format',
+    'name',
+  ),
+  'indexes' => array(
+    'list' => array(
+      'weight',
+      'module',
+      'name',
+    ),
+  ),
+  'module' => 'filter',
+  'name' => 'filter',
+));
+db_insert('filter')->fields(array(
+  'format',
+  'module',
+  'name',
+  'weight',
+  'status',
+  'settings',
+))
+->values(array(
+  'format' => 'filtered_html',
+  'module' => 'filter',
+  'name' => 'filter_autop',
+  'weight' => '2',
+  'status' => '1',
+  'settings' => 'a:0:{}',
+))
+->values(array(
+  'format' => 'filtered_html',
+  'module' => 'filter',
+  'name' => 'filter_html',
+  'weight' => '1',
+  'status' => '1',
+  'settings' => 'a:3:{s:12:"allowed_html";s:74:"<a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd>";s:16:"filter_html_help";i:1;s:20:"filter_html_nofollow";i:0;}',
+))
+->values(array(
+  'format' => 'filtered_html',
+  'module' => 'filter',
+  'name' => 'filter_htmlcorrector',
+  'weight' => '10',
+  'status' => '1',
+  'settings' => 'a:0:{}',
+))
+->values(array(
+  'format' => 'filtered_html',
+  'module' => 'filter',
+  'name' => 'filter_html_escape',
+  'weight' => '10',
+  'status' => '0',
+  'settings' => 'a:0:{}',
+))
+->values(array(
+  'format' => 'filtered_html',
+  'module' => 'filter',
+  'name' => 'filter_url',
+  'weight' => '0',
+  'status' => '1',
+  'settings' => 'a:1:{s:17:"filter_url_length";i:72;}',
+))
+->values(array(
+  'format' => 'full_html',
+  'module' => 'filter',
+  'name' => 'filter_autop',
+  'weight' => '1',
+  'status' => '1',
+  'settings' => 'a:0:{}',
+))
+->values(array(
+  'format' => 'full_html',
+  'module' => 'filter',
+  'name' => 'filter_html',
+  'weight' => '10',
+  'status' => '0',
+  'settings' => 'a:3:{s:12:"allowed_html";s:74:"<a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd>";s:16:"filter_html_help";i:1;s:20:"filter_html_nofollow";i:0;}',
+))
+->values(array(
+  'format' => 'full_html',
+  'module' => 'filter',
+  'name' => 'filter_htmlcorrector',
+  'weight' => '10',
+  'status' => '1',
+  'settings' => 'a:0:{}',
+))
+->values(array(
+  'format' => 'full_html',
+  'module' => 'filter',
+  'name' => 'filter_html_escape',
+  'weight' => '10',
+  'status' => '0',
+  'settings' => 'a:0:{}',
+))
+->values(array(
+  'format' => 'full_html',
+  'module' => 'filter',
+  'name' => 'filter_url',
+  'weight' => '0',
+  'status' => '1',
+  'settings' => 'a:1:{s:17:"filter_url_length";i:72;}',
+))
+->values(array(
+  'format' => 'plain_text',
+  'module' => 'filter',
+  'name' => 'filter_autop',
+  'weight' => '2',
+  'status' => '1',
+  'settings' => 'a:0:{}',
+))
+->values(array(
+  'format' => 'plain_text',
+  'module' => 'filter',
+  'name' => 'filter_html',
+  'weight' => '10',
+  'status' => '0',
+  'settings' => 'a:3:{s:12:"allowed_html";s:74:"<a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd>";s:16:"filter_html_help";i:1;s:20:"filter_html_nofollow";i:0;}',
+))
+->values(array(
+  'format' => 'plain_text',
+  'module' => 'filter',
+  'name' => 'filter_htmlcorrector',
+  'weight' => '10',
+  'status' => '0',
+  'settings' => 'a:0:{}',
+))
+->values(array(
+  'format' => 'plain_text',
+  'module' => 'filter',
+  'name' => 'filter_html_escape',
+  'weight' => '0',
+  'status' => '1',
+  'settings' => 'a:0:{}',
+))
+->values(array(
+  'format' => 'plain_text',
+  'module' => 'filter',
+  'name' => 'filter_url',
+  'weight' => '1',
+  'status' => '1',
+  'settings' => 'a:1:{s:17:"filter_url_length";i:72;}',
+))
+->execute();
+
+db_create_table('filter_format', array(
+  'fields' => array(
+    'format' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+    ),
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+      'translatable' => TRUE,
+    ),
+    'cache' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'status' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 1,
+      'size' => 'tiny',
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'primary key' => array(
+    'format',
+  ),
+  'unique keys' => array(
+    'name' => array(
+      'name',
+    ),
+  ),
+  'indexes' => array(
+    'status_weight' => array(
+      'status',
+      'weight',
+    ),
+  ),
+  'module' => 'filter',
+  'name' => 'filter_format',
+));
+db_insert('filter_format')->fields(array(
+  'format',
+  'name',
+  'cache',
+  'status',
+  'weight',
+))
+->values(array(
+  'format' => 'filtered_html',
+  'name' => 'Filtered HTML',
+  'cache' => '1',
+  'status' => '1',
+  'weight' => '0',
+))
+->values(array(
+  'format' => 'full_html',
+  'name' => 'Full HTML',
+  'cache' => '1',
+  'status' => '1',
+  'weight' => '1',
+))
+->values(array(
+  'format' => 'plain_text',
+  'name' => 'Plain text',
+  'cache' => '1',
+  'status' => '1',
+  'weight' => '10',
+))
+->execute();
+
+db_create_table('flood', array(
+  'fields' => array(
+    'fid' => array(
+      'type' => 'serial',
+      'not null' => TRUE,
+    ),
+    'event' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'identifier' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'timestamp' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'expiration' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'primary key' => array(
+    'fid',
+  ),
+  'indexes' => array(
+    'allow' => array(
+      'event',
+      'identifier',
+      'timestamp',
+    ),
+    'purge' => array(
+      'expiration',
+    ),
+  ),
+  'module' => 'system',
+  'name' => 'flood',
+));
+
+db_create_table('history', array(
+  'fields' => array(
+    'uid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'nid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'timestamp' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'primary key' => array(
+    'uid',
+    'nid',
+  ),
+  'indexes' => array(
+    'nid' => array(
+      'nid',
+    ),
+  ),
+  'module' => 'node',
+  'name' => 'history',
+));
+
+db_create_table('image_effects', array(
+  'fields' => array(
+    'ieid' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'isid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'unsigned' => FALSE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => TRUE,
+      'size' => 'big',
+      'serialize' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'ieid',
+  ),
+  'indexes' => array(
+    'isid' => array(
+      'isid',
+    ),
+    'weight' => array(
+      'weight',
+    ),
+  ),
+  'foreign keys' => array(
+    'image_style' => array(
+      'table' => 'image_styles',
+      'columns' => array(
+        'isid' => 'isid',
+      ),
+    ),
+  ),
+  'module' => 'image',
+  'name' => 'image_effects',
+));
+
+db_create_table('image_styles', array(
+  'fields' => array(
+    'isid' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'isid',
+  ),
+  'unique keys' => array(
+    'name' => array(
+      'name',
+    ),
+  ),
+  'module' => 'image',
+  'name' => 'image_styles',
+));
+
+db_create_table('menu_custom', array(
+  'fields' => array(
+    'menu_name' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'title' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+      'translatable' => TRUE,
+    ),
+    'description' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'translatable' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'menu_name',
+  ),
+  'module' => 'menu',
+  'name' => 'menu_custom',
+));
+db_insert('menu_custom')->fields(array(
+  'menu_name',
+  'title',
+  'description',
+))
+->values(array(
+  'menu_name' => 'main-menu',
+  'title' => 'Main menu',
+  'description' => 'The <em>Main</em> menu is used on many sites to show the major sections of the site, often in a top navigation bar.',
+))
+->values(array(
+  'menu_name' => 'management',
+  'title' => 'Management',
+  'description' => 'The <em>Management</em> menu contains links for administrative tasks.',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'title' => 'Navigation',
+  'description' => 'The <em>Navigation</em> menu contains links intended for site visitors. Links are added to the <em>Navigation</em> menu automatically by some modules.',
+))
+->values(array(
+  'menu_name' => 'user-menu',
+  'title' => 'User menu',
+  'description' => "The <em>User</em> menu contains links related to the user's account, as well as the 'Log out' link.",
+))
+->execute();
+
+db_create_table('menu_links', array(
+  'fields' => array(
+    'menu_name' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'mlid' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'plid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'link_path' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'router_path' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'link_title' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+      'translatable' => TRUE,
+    ),
+    'options' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'translatable' => TRUE,
+    ),
+    'module' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => 'system',
+    ),
+    'hidden' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'small',
+    ),
+    'external' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'small',
+    ),
+    'has_children' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'small',
+    ),
+    'expanded' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'small',
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'depth' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'small',
+    ),
+    'customized' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'small',
+    ),
+    'p1' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'p2' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'p3' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'p4' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'p5' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'p6' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'p7' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'p8' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'p9' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'updated' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'small',
+    ),
+  ),
+  'indexes' => array(
+    'path_menu' => array(
+      array(
+        'link_path',
+        128,
+      ),
+      'menu_name',
+    ),
+    'menu_plid_expand_child' => array(
+      'menu_name',
+      'plid',
+      'expanded',
+      'has_children',
+    ),
+    'menu_parents' => array(
+      'menu_name',
+      'p1',
+      'p2',
+      'p3',
+      'p4',
+      'p5',
+      'p6',
+      'p7',
+      'p8',
+      'p9',
+    ),
+    'router_path' => array(
+      array(
+        'router_path',
+        128,
+      ),
+    ),
+  ),
+  'primary key' => array(
+    'mlid',
+  ),
+  'module' => 'system',
+  'name' => 'menu_links',
+));
+db_insert('menu_links')->fields(array(
+  'menu_name',
+  'mlid',
+  'plid',
+  'link_path',
+  'router_path',
+  'link_title',
+  'options',
+  'module',
+  'hidden',
+  'external',
+  'has_children',
+  'expanded',
+  'weight',
+  'depth',
+  'customized',
+  'p1',
+  'p2',
+  'p3',
+  'p4',
+  'p5',
+  'p6',
+  'p7',
+  'p8',
+  'p9',
+  'updated',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '1',
+  'plid' => '0',
+  'link_path' => 'admin',
+  'router_path' => 'admin',
+  'link_title' => 'Administration',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '9',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'user-menu',
+  'mlid' => '2',
+  'plid' => '0',
+  'link_path' => 'user',
+  'router_path' => 'user',
+  'link_title' => 'User account',
+  'options' => 'a:1:{s:5:"alter";b:1;}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '2',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '3',
+  'plid' => '0',
+  'link_path' => 'comment/%',
+  'router_path' => 'comment/%',
+  'link_title' => 'Comment permalink',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '3',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '4',
+  'plid' => '0',
+  'link_path' => 'filter/tips',
+  'router_path' => 'filter/tips',
+  'link_title' => 'Compose tips',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '4',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '5',
+  'plid' => '0',
+  'link_path' => 'node/%',
+  'router_path' => 'node/%',
+  'link_title' => '',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '5',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '6',
+  'plid' => '0',
+  'link_path' => 'node/add',
+  'router_path' => 'node/add',
+  'link_title' => 'Add content',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '6',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '7',
+  'plid' => '1',
+  'link_path' => 'admin/appearance',
+  'router_path' => 'admin/appearance',
+  'link_title' => 'Appearance',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:33:"Select and configure your themes.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-6',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '7',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '8',
+  'plid' => '1',
+  'link_path' => 'admin/config',
+  'router_path' => 'admin/config',
+  'link_title' => 'Configuration',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:20:"Administer settings.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '9',
+  'plid' => '1',
+  'link_path' => 'admin/content',
+  'router_path' => 'admin/content',
+  'link_title' => 'Content',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:32:"Administer content and comments.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '9',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'user-menu',
+  'mlid' => '10',
+  'plid' => '2',
+  'link_path' => 'user/register',
+  'router_path' => 'user/register',
+  'link_title' => 'Create new account',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '2',
+  'p2' => '10',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '11',
+  'plid' => '1',
+  'link_path' => 'admin/dashboard',
+  'router_path' => 'admin/dashboard',
+  'link_title' => 'Dashboard',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:34:"View and customize your dashboard.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-15',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '11',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '12',
+  'plid' => '1',
+  'link_path' => 'admin/help',
+  'router_path' => 'admin/help',
+  'link_title' => 'Help',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:48:"Reference for usage, configuration, and modules.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '9',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '13',
+  'plid' => '1',
+  'link_path' => 'admin/index',
+  'router_path' => 'admin/index',
+  'link_title' => 'Index',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-18',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '13',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'user-menu',
+  'mlid' => '14',
+  'plid' => '2',
+  'link_path' => 'user/login',
+  'router_path' => 'user/login',
+  'link_title' => 'Log in',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '2',
+  'p2' => '14',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'user-menu',
+  'mlid' => '15',
+  'plid' => '0',
+  'link_path' => 'user/logout',
+  'router_path' => 'user/logout',
+  'link_title' => 'Log out',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '10',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '15',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '16',
+  'plid' => '1',
+  'link_path' => 'admin/modules',
+  'router_path' => 'admin/modules',
+  'link_title' => 'Modules',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:26:"Extend site functionality.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-2',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '16',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '17',
+  'plid' => '0',
+  'link_path' => 'user/%',
+  'router_path' => 'user/%',
+  'link_title' => 'My account',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '17',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '18',
+  'plid' => '1',
+  'link_path' => 'admin/people',
+  'router_path' => 'admin/people',
+  'link_title' => 'People',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:45:"Manage user accounts, roles, and permissions.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-4',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '19',
+  'plid' => '1',
+  'link_path' => 'admin/reports',
+  'router_path' => 'admin/reports',
+  'link_title' => 'Reports',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:34:"View reports, updates, and errors.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '5',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '19',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'user-menu',
+  'mlid' => '20',
+  'plid' => '2',
+  'link_path' => 'user/password',
+  'router_path' => 'user/password',
+  'link_title' => 'Request new password',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '2',
+  'p2' => '20',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '21',
+  'plid' => '1',
+  'link_path' => 'admin/structure',
+  'router_path' => 'admin/structure',
+  'link_title' => 'Structure',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:45:"Administer blocks, content types, menus, etc.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-8',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '22',
+  'plid' => '1',
+  'link_path' => 'admin/tasks',
+  'router_path' => 'admin/tasks',
+  'link_title' => 'Tasks',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-20',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '22',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '23',
+  'plid' => '0',
+  'link_path' => 'comment/reply/%',
+  'router_path' => 'comment/reply/%',
+  'link_title' => 'Add new comment',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '23',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '24',
+  'plid' => '3',
+  'link_path' => 'comment/%/approve',
+  'router_path' => 'comment/%/approve',
+  'link_title' => 'Approve',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '1',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '3',
+  'p2' => '24',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '25',
+  'plid' => '3',
+  'link_path' => 'comment/%/delete',
+  'router_path' => 'comment/%/delete',
+  'link_title' => 'Delete',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '2',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '3',
+  'p2' => '25',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '26',
+  'plid' => '3',
+  'link_path' => 'comment/%/edit',
+  'router_path' => 'comment/%/edit',
+  'link_title' => 'Edit',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '3',
+  'p2' => '26',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '27',
+  'plid' => '0',
+  'link_path' => 'taxonomy/term/%',
+  'router_path' => 'taxonomy/term/%',
+  'link_title' => 'Taxonomy term',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '27',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '28',
+  'plid' => '3',
+  'link_path' => 'comment/%/view',
+  'router_path' => 'comment/%/view',
+  'link_title' => 'View comment',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '3',
+  'p2' => '28',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '29',
+  'plid' => '18',
+  'link_path' => 'admin/people/create',
+  'router_path' => 'admin/people/create',
+  'link_title' => 'Add user',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '29',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '30',
+  'plid' => '21',
+  'link_path' => 'admin/structure/block',
+  'router_path' => 'admin/structure/block',
+  'link_title' => 'Blocks',
+  'options' => "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.\";}}",
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '31',
+  'plid' => '17',
+  'link_path' => 'user/%/cancel',
+  'router_path' => 'user/%/cancel',
+  'link_title' => 'Cancel account',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '17',
+  'p2' => '31',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '32',
+  'plid' => '9',
+  'link_path' => 'admin/content/comment',
+  'router_path' => 'admin/content/comment',
+  'link_title' => 'Comments',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:59:"List and edit site comments and the comment approval queue.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '9',
+  'p3' => '32',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '33',
+  'plid' => '11',
+  'link_path' => 'admin/dashboard/configure',
+  'router_path' => 'admin/dashboard/configure',
+  'link_title' => 'Configure available dashboard blocks',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:53:"Configure which blocks can be shown on the dashboard.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '11',
+  'p3' => '33',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '34',
+  'plid' => '9',
+  'link_path' => 'admin/content/node',
+  'router_path' => 'admin/content/node',
+  'link_title' => 'Content',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '9',
+  'p3' => '34',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '35',
+  'plid' => '8',
+  'link_path' => 'admin/config/content',
+  'router_path' => 'admin/config/content',
+  'link_title' => 'Content authoring',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:53:"Settings related to formatting and authoring content.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-15',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '35',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '36',
+  'plid' => '21',
+  'link_path' => 'admin/structure/types',
+  'router_path' => 'admin/structure/types',
+  'link_title' => 'Content types',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:92:"Manage content types, including default status, front page promotion, comment settings, etc.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '37',
+  'plid' => '11',
+  'link_path' => 'admin/dashboard/customize',
+  'router_path' => 'admin/dashboard/customize',
+  'link_title' => 'Customize dashboard',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:25:"Customize your dashboard.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '11',
+  'p3' => '37',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '38',
+  'plid' => '5',
+  'link_path' => 'node/%/delete',
+  'router_path' => 'node/%/delete',
+  'link_title' => 'Delete',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '1',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '5',
+  'p2' => '38',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '39',
+  'plid' => '8',
+  'link_path' => 'admin/config/development',
+  'router_path' => 'admin/config/development',
+  'link_title' => 'Development',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:18:"Development tools.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '39',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '40',
+  'plid' => '17',
+  'link_path' => 'user/%/edit',
+  'router_path' => 'user/%/edit',
+  'link_title' => 'Edit',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '17',
+  'p2' => '40',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '41',
+  'plid' => '5',
+  'link_path' => 'node/%/edit',
+  'router_path' => 'node/%/edit',
+  'link_title' => 'Edit',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '5',
+  'p2' => '41',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '42',
+  'plid' => '19',
+  'link_path' => 'admin/reports/fields',
+  'router_path' => 'admin/reports/fields',
+  'link_title' => 'Field list',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:39:"Overview of fields on all entity types.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '19',
+  'p3' => '42',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '43',
+  'plid' => '7',
+  'link_path' => 'admin/appearance/list',
+  'router_path' => 'admin/appearance/list',
+  'link_title' => 'List',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:31:"Select and configure your theme";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-1',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '7',
+  'p3' => '43',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '44',
+  'plid' => '16',
+  'link_path' => 'admin/modules/list',
+  'router_path' => 'admin/modules/list',
+  'link_title' => 'List',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '16',
+  'p3' => '44',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '45',
+  'plid' => '18',
+  'link_path' => 'admin/people/people',
+  'router_path' => 'admin/people/people',
+  'link_title' => 'List',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:50:"Find and manage people interacting with your site.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '45',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '46',
+  'plid' => '8',
+  'link_path' => 'admin/config/media',
+  'router_path' => 'admin/config/media',
+  'link_title' => 'Media',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:12:"Media tools.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '46',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '47',
+  'plid' => '21',
+  'link_path' => 'admin/structure/menu',
+  'router_path' => 'admin/structure/menu',
+  'link_title' => 'Menus',
+  'options' => '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.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '48',
+  'plid' => '8',
+  'link_path' => 'admin/config/people',
+  'router_path' => 'admin/config/people',
+  'link_title' => 'People',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:24:"Configure user accounts.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-20',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '48',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '49',
+  'plid' => '18',
+  'link_path' => 'admin/people/permissions',
+  'router_path' => 'admin/people/permissions',
+  'link_title' => 'Permissions',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:64:"Determine access to features by selecting permissions for roles.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '49',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '50',
+  'plid' => '19',
+  'link_path' => 'admin/reports/dblog',
+  'router_path' => 'admin/reports/dblog',
+  'link_title' => 'Recent log messages',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"View events that have recently been logged.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-1',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '19',
+  'p3' => '50',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '51',
+  'plid' => '8',
+  'link_path' => 'admin/config/regional',
+  'router_path' => 'admin/config/regional',
+  'link_title' => 'Regional and language',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:48:"Regional settings, localization and translation.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-5',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '51',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '52',
+  'plid' => '5',
+  'link_path' => 'node/%/revisions',
+  'router_path' => 'node/%/revisions',
+  'link_title' => 'Revisions',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '2',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '5',
+  'p2' => '52',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '53',
+  'plid' => '8',
+  'link_path' => 'admin/config/search',
+  'router_path' => 'admin/config/search',
+  'link_title' => 'Search and metadata',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:36:"Local site search, metadata and SEO.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '53',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '54',
+  'plid' => '7',
+  'link_path' => 'admin/appearance/settings',
+  'router_path' => 'admin/appearance/settings',
+  'link_title' => 'Settings',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:46:"Configure default and theme specific settings.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '20',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '7',
+  'p3' => '54',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '55',
+  'plid' => '19',
+  'link_path' => 'admin/reports/status',
+  'router_path' => 'admin/reports/status',
+  'link_title' => 'Status report',
+  'options' => "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.\";}}",
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-60',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '19',
+  'p3' => '55',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '56',
+  'plid' => '8',
+  'link_path' => 'admin/config/system',
+  'router_path' => 'admin/config/system',
+  'link_title' => 'System',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:37:"General system related configuration.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-20',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '56',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '57',
+  'plid' => '21',
+  'link_path' => 'admin/structure/taxonomy',
+  'router_path' => 'admin/structure/taxonomy',
+  'link_title' => 'Taxonomy',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:67:"Manage tagging, categorization, and classification of your content.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '58',
+  'plid' => '19',
+  'link_path' => 'admin/reports/access-denied',
+  'router_path' => 'admin/reports/access-denied',
+  'link_title' => "Top 'access denied' errors",
+  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:35:\"View 'access denied' errors (403s).\";}}",
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '19',
+  'p3' => '58',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '59',
+  'plid' => '19',
+  'link_path' => 'admin/reports/page-not-found',
+  'router_path' => 'admin/reports/page-not-found',
+  'link_title' => "Top 'page not found' errors",
+  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"View 'page not found' errors (404s).\";}}",
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '19',
+  'p3' => '59',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '60',
+  'plid' => '16',
+  'link_path' => 'admin/modules/uninstall',
+  'router_path' => 'admin/modules/uninstall',
+  'link_title' => 'Uninstall',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '20',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '16',
+  'p3' => '60',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '61',
+  'plid' => '8',
+  'link_path' => 'admin/config/user-interface',
+  'router_path' => 'admin/config/user-interface',
+  'link_title' => 'User interface',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:38:"Tools that enhance the user interface.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-15',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '61',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '62',
+  'plid' => '5',
+  'link_path' => 'node/%/view',
+  'router_path' => 'node/%/view',
+  'link_title' => 'View',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '5',
+  'p2' => '62',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '63',
+  'plid' => '17',
+  'link_path' => 'user/%/view',
+  'router_path' => 'user/%/view',
+  'link_title' => 'View',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '17',
+  'p2' => '63',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '64',
+  'plid' => '8',
+  'link_path' => 'admin/config/services',
+  'router_path' => 'admin/config/services',
+  'link_title' => 'Web services',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:30:"Tools related to web services.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '64',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '65',
+  'plid' => '8',
+  'link_path' => 'admin/config/workflow',
+  'router_path' => 'admin/config/workflow',
+  'link_title' => 'Workflow',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"Content workflow, editorial workflow tools.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '5',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '65',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '66',
+  'plid' => '12',
+  'link_path' => 'admin/help/block',
+  'router_path' => 'admin/help/block',
+  'link_title' => 'block',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '66',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '67',
+  'plid' => '12',
+  'link_path' => 'admin/help/color',
+  'router_path' => 'admin/help/color',
+  'link_title' => 'color',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '67',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '68',
+  'plid' => '12',
+  'link_path' => 'admin/help/comment',
+  'router_path' => 'admin/help/comment',
+  'link_title' => 'comment',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '68',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '69',
+  'plid' => '12',
+  'link_path' => 'admin/help/contextual',
+  'router_path' => 'admin/help/contextual',
+  'link_title' => 'contextual',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '69',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '70',
+  'plid' => '12',
+  'link_path' => 'admin/help/dashboard',
+  'router_path' => 'admin/help/dashboard',
+  'link_title' => 'dashboard',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '70',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '71',
+  'plid' => '12',
+  'link_path' => 'admin/help/dblog',
+  'router_path' => 'admin/help/dblog',
+  'link_title' => 'dblog',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '71',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '72',
+  'plid' => '12',
+  'link_path' => 'admin/help/field',
+  'router_path' => 'admin/help/field',
+  'link_title' => 'field',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '72',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '73',
+  'plid' => '12',
+  'link_path' => 'admin/help/field_sql_storage',
+  'router_path' => 'admin/help/field_sql_storage',
+  'link_title' => 'field_sql_storage',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '73',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '74',
+  'plid' => '12',
+  'link_path' => 'admin/help/field_ui',
+  'router_path' => 'admin/help/field_ui',
+  'link_title' => 'field_ui',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '74',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '75',
+  'plid' => '12',
+  'link_path' => 'admin/help/file',
+  'router_path' => 'admin/help/file',
+  'link_title' => 'file',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '75',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '76',
+  'plid' => '12',
+  'link_path' => 'admin/help/filter',
+  'router_path' => 'admin/help/filter',
+  'link_title' => 'filter',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '76',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '77',
+  'plid' => '12',
+  'link_path' => 'admin/help/help',
+  'router_path' => 'admin/help/help',
+  'link_title' => 'help',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '77',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '78',
+  'plid' => '12',
+  'link_path' => 'admin/help/image',
+  'router_path' => 'admin/help/image',
+  'link_title' => 'image',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '78',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '79',
+  'plid' => '12',
+  'link_path' => 'admin/help/list',
+  'router_path' => 'admin/help/list',
+  'link_title' => 'list',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '79',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '80',
+  'plid' => '12',
+  'link_path' => 'admin/help/menu',
+  'router_path' => 'admin/help/menu',
+  'link_title' => 'menu',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '80',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '81',
+  'plid' => '12',
+  'link_path' => 'admin/help/node',
+  'router_path' => 'admin/help/node',
+  'link_title' => 'node',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '81',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '82',
+  'plid' => '12',
+  'link_path' => 'admin/help/options',
+  'router_path' => 'admin/help/options',
+  'link_title' => 'options',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '82',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '83',
+  'plid' => '12',
+  'link_path' => 'admin/help/system',
+  'router_path' => 'admin/help/system',
+  'link_title' => 'system',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '83',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '84',
+  'plid' => '12',
+  'link_path' => 'admin/help/taxonomy',
+  'router_path' => 'admin/help/taxonomy',
+  'link_title' => 'taxonomy',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '84',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '85',
+  'plid' => '12',
+  'link_path' => 'admin/help/text',
+  'router_path' => 'admin/help/text',
+  'link_title' => 'text',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '85',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '86',
+  'plid' => '12',
+  'link_path' => 'admin/help/user',
+  'router_path' => 'admin/help/user',
+  'link_title' => 'user',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '86',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '87',
+  'plid' => '27',
+  'link_path' => 'taxonomy/term/%/edit',
+  'router_path' => 'taxonomy/term/%/edit',
+  'link_title' => 'Edit',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '10',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '27',
+  'p2' => '87',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '88',
+  'plid' => '27',
+  'link_path' => 'taxonomy/term/%/view',
+  'router_path' => 'taxonomy/term/%/view',
+  'link_title' => 'View',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '27',
+  'p2' => '88',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '89',
+  'plid' => '48',
+  'link_path' => 'admin/config/people/accounts',
+  'router_path' => 'admin/config/people/accounts',
+  'link_title' => 'Account settings',
+  'options' => '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.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '48',
+  'p4' => '89',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '90',
+  'plid' => '56',
+  'link_path' => 'admin/config/system/actions',
+  'router_path' => 'admin/config/system/actions',
+  'link_title' => 'Actions',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:41:"Manage the actions defined for your site.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '56',
+  'p4' => '90',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '91',
+  'plid' => '30',
+  'link_path' => 'admin/structure/block/add',
+  'router_path' => 'admin/structure/block/add',
+  'link_title' => 'Add block',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '91',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '92',
+  'plid' => '36',
+  'link_path' => 'admin/structure/types/add',
+  'router_path' => 'admin/structure/types/add',
+  'link_title' => 'Add content type',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '92',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '93',
+  'plid' => '47',
+  'link_path' => 'admin/structure/menu/add',
+  'router_path' => 'admin/structure/menu/add',
+  'link_title' => 'Add menu',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '93',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '94',
+  'plid' => '57',
+  'link_path' => 'admin/structure/taxonomy/add',
+  'router_path' => 'admin/structure/taxonomy/add',
+  'link_title' => 'Add vocabulary',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '94',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '95',
+  'plid' => '54',
+  'link_path' => 'admin/appearance/settings/bartik',
+  'router_path' => 'admin/appearance/settings/bartik',
+  'link_title' => 'Bartik',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '7',
+  'p3' => '54',
+  'p4' => '95',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '96',
+  'plid' => '53',
+  'link_path' => 'admin/config/search/clean-urls',
+  'router_path' => 'admin/config/search/clean-urls',
+  'link_title' => 'Clean URLs',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"Enable or disable clean URLs for your site.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '5',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '53',
+  'p4' => '96',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '97',
+  'plid' => '56',
+  'link_path' => 'admin/config/system/cron',
+  'router_path' => 'admin/config/system/cron',
+  'link_title' => 'Cron',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:40:"Manage automatic site maintenance tasks.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '20',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '56',
+  'p4' => '97',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '98',
+  'plid' => '51',
+  'link_path' => 'admin/config/regional/date-time',
+  'router_path' => 'admin/config/regional/date-time',
+  'link_title' => 'Date and time',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:44:"Configure display formats for date and time.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-15',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '51',
+  'p4' => '98',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '99',
+  'plid' => '19',
+  'link_path' => 'admin/reports/event/%',
+  'router_path' => 'admin/reports/event/%',
+  'link_title' => 'Details',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '19',
+  'p3' => '99',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '100',
+  'plid' => '46',
+  'link_path' => 'admin/config/media/file-system',
+  'router_path' => 'admin/config/media/file-system',
+  'link_title' => 'File system',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:68:"Tell Drupal where to store uploaded files and how they are accessed.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '46',
+  'p4' => '100',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '101',
+  'plid' => '54',
+  'link_path' => 'admin/appearance/settings/garland',
+  'router_path' => 'admin/appearance/settings/garland',
+  'link_title' => 'Garland',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '7',
+  'p3' => '54',
+  'p4' => '101',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '102',
+  'plid' => '54',
+  'link_path' => 'admin/appearance/settings/global',
+  'router_path' => 'admin/appearance/settings/global',
+  'link_title' => 'Global settings',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-1',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '7',
+  'p3' => '54',
+  'p4' => '102',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '103',
+  'plid' => '48',
+  'link_path' => 'admin/config/people/ip-blocking',
+  'router_path' => 'admin/config/people/ip-blocking',
+  'link_title' => 'IP address blocking',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:28:"Manage blocked IP addresses.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '10',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '48',
+  'p4' => '103',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '104',
+  'plid' => '46',
+  'link_path' => 'admin/config/media/image-styles',
+  'router_path' => 'admin/config/media/image-styles',
+  'link_title' => 'Image styles',
+  'options' => '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.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '46',
+  'p4' => '104',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '105',
+  'plid' => '46',
+  'link_path' => 'admin/config/media/image-toolkit',
+  'router_path' => 'admin/config/media/image-toolkit',
+  'link_title' => 'Image toolkit',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:74:"Choose which image toolkit to use if you have installed optional toolkits.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '20',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '46',
+  'p4' => '105',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '106',
+  'plid' => '44',
+  'link_path' => 'admin/modules/list/confirm',
+  'router_path' => 'admin/modules/list/confirm',
+  'link_title' => 'List',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '16',
+  'p3' => '44',
+  'p4' => '106',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '107',
+  'plid' => '36',
+  'link_path' => 'admin/structure/types/list',
+  'router_path' => 'admin/structure/types/list',
+  'link_title' => 'List',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '107',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '108',
+  'plid' => '57',
+  'link_path' => 'admin/structure/taxonomy/list',
+  'router_path' => 'admin/structure/taxonomy/list',
+  'link_title' => 'List',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '108',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '109',
+  'plid' => '47',
+  'link_path' => 'admin/structure/menu/list',
+  'router_path' => 'admin/structure/menu/list',
+  'link_title' => 'List menus',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '109',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '110',
+  'plid' => '39',
+  'link_path' => 'admin/config/development/logging',
+  'router_path' => 'admin/config/development/logging',
+  'link_title' => 'Logging and errors',
+  'options' => "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.\";}}",
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-15',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '39',
+  'p4' => '110',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '111',
+  'plid' => '39',
+  'link_path' => 'admin/config/development/maintenance',
+  'router_path' => 'admin/config/development/maintenance',
+  'link_title' => 'Maintenance mode',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:62:"Take the site offline for maintenance or bring it back online.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '39',
+  'p4' => '111',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '112',
+  'plid' => '39',
+  'link_path' => 'admin/config/development/performance',
+  'router_path' => 'admin/config/development/performance',
+  'link_title' => 'Performance',
+  'options' => '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.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-20',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '39',
+  'p4' => '112',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '113',
+  'plid' => '49',
+  'link_path' => 'admin/people/permissions/list',
+  'router_path' => 'admin/people/permissions/list',
+  'link_title' => 'Permissions',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:64:"Determine access to features by selecting permissions for roles.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-8',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '49',
+  'p4' => '113',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '114',
+  'plid' => '32',
+  'link_path' => 'admin/content/comment/new',
+  'router_path' => 'admin/content/comment/new',
+  'link_title' => 'Published comments',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '9',
+  'p3' => '32',
+  'p4' => '114',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '115',
+  'plid' => '64',
+  'link_path' => 'admin/config/services/rss-publishing',
+  'router_path' => 'admin/config/services/rss-publishing',
+  'link_title' => 'RSS publishing',
+  'options' => '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.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '64',
+  'p4' => '115',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '116',
+  'plid' => '51',
+  'link_path' => 'admin/config/regional/settings',
+  'router_path' => 'admin/config/regional/settings',
+  'link_title' => 'Regional settings',
+  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:54:\"Settings for the site's default time zone and country.\";}}",
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-20',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '51',
+  'p4' => '116',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '117',
+  'plid' => '49',
+  'link_path' => 'admin/people/permissions/roles',
+  'router_path' => 'admin/people/permissions/roles',
+  'link_title' => 'Roles',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:30:"List, edit, or add user roles.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-5',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '49',
+  'p4' => '117',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '118',
+  'plid' => '47',
+  'link_path' => 'admin/structure/menu/settings',
+  'router_path' => 'admin/structure/menu/settings',
+  'link_title' => 'Settings',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '5',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '118',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '119',
+  'plid' => '54',
+  'link_path' => 'admin/appearance/settings/seven',
+  'router_path' => 'admin/appearance/settings/seven',
+  'link_title' => 'Seven',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '7',
+  'p3' => '54',
+  'p4' => '119',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '120',
+  'plid' => '56',
+  'link_path' => 'admin/config/system/site-information',
+  'router_path' => 'admin/config/system/site-information',
+  'link_title' => 'Site information',
+  'options' => '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.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-20',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '56',
+  'p4' => '120',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '121',
+  'plid' => '54',
+  'link_path' => 'admin/appearance/settings/stark',
+  'router_path' => 'admin/appearance/settings/stark',
+  'link_title' => 'Stark',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '7',
+  'p3' => '54',
+  'p4' => '121',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '122',
+  'plid' => '54',
+  'link_path' => 'admin/appearance/settings/test_theme',
+  'router_path' => 'admin/appearance/settings/test_theme',
+  'link_title' => 'Test theme',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '7',
+  'p3' => '54',
+  'p4' => '122',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '123',
+  'plid' => '35',
+  'link_path' => 'admin/config/content/formats',
+  'router_path' => 'admin/config/content/formats',
+  'link_title' => 'Text formats',
+  'options' => '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.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '35',
+  'p4' => '123',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '124',
+  'plid' => '32',
+  'link_path' => 'admin/content/comment/approval',
+  'router_path' => 'admin/content/comment/approval',
+  'link_title' => 'Unapproved comments',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '9',
+  'p3' => '32',
+  'p4' => '124',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '125',
+  'plid' => '60',
+  'link_path' => 'admin/modules/uninstall/confirm',
+  'router_path' => 'admin/modules/uninstall/confirm',
+  'link_title' => 'Uninstall',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '16',
+  'p3' => '60',
+  'p4' => '125',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '126',
+  'plid' => '54',
+  'link_path' => 'admin/appearance/settings/update_test_basetheme',
+  'router_path' => 'admin/appearance/settings/update_test_basetheme',
+  'link_title' => 'Update test base theme',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '7',
+  'p3' => '54',
+  'p4' => '126',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '127',
+  'plid' => '57',
+  'link_path' => 'admin/structure/taxonomy/%',
+  'router_path' => 'admin/structure/taxonomy/%',
+  'link_title' => '',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '127',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '128',
+  'plid' => '54',
+  'link_path' => 'admin/appearance/settings/update_test_subtheme',
+  'router_path' => 'admin/appearance/settings/update_test_subtheme',
+  'link_title' => 'Update test subtheme',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '7',
+  'p3' => '54',
+  'p4' => '128',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '129',
+  'plid' => '40',
+  'link_path' => 'user/%/edit/account',
+  'router_path' => 'user/%/edit/account',
+  'link_title' => 'Account',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '17',
+  'p2' => '40',
+  'p3' => '129',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '130',
+  'plid' => '123',
+  'link_path' => 'admin/config/content/formats/%',
+  'router_path' => 'admin/config/content/formats/%',
+  'link_title' => '',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '35',
+  'p4' => '123',
+  'p5' => '130',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '131',
+  'plid' => '104',
+  'link_path' => 'admin/config/media/image-styles/add',
+  'router_path' => 'admin/config/media/image-styles/add',
+  'link_title' => 'Add style',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:22:"Add a new image style.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '2',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '46',
+  'p4' => '104',
+  'p5' => '131',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '132',
+  'plid' => '127',
+  'link_path' => 'admin/structure/taxonomy/%/add',
+  'router_path' => 'admin/structure/taxonomy/%/add',
+  'link_title' => 'Add term',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '127',
+  'p5' => '132',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '133',
+  'plid' => '123',
+  'link_path' => 'admin/config/content/formats/add',
+  'router_path' => 'admin/config/content/formats/add',
+  'link_title' => 'Add text format',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '1',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '35',
+  'p4' => '123',
+  'p5' => '133',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '134',
+  'plid' => '30',
+  'link_path' => 'admin/structure/block/list/bartik',
+  'router_path' => 'admin/structure/block/list/bartik',
+  'link_title' => 'Bartik',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '134',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '135',
+  'plid' => '90',
+  'link_path' => 'admin/config/system/actions/configure',
+  'router_path' => 'admin/config/system/actions/configure',
+  'link_title' => 'Configure an advanced action',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '56',
+  'p4' => '90',
+  'p5' => '135',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '136',
+  'plid' => '47',
+  'link_path' => 'admin/structure/menu/manage/%',
+  'router_path' => 'admin/structure/menu/manage/%',
+  'link_title' => 'Customize menu',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '136',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '137',
+  'plid' => '127',
+  'link_path' => 'admin/structure/taxonomy/%/edit',
+  'router_path' => 'admin/structure/taxonomy/%/edit',
+  'link_title' => 'Edit',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '127',
+  'p5' => '137',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '138',
+  'plid' => '36',
+  'link_path' => 'admin/structure/types/manage/%',
+  'router_path' => 'admin/structure/types/manage/%',
+  'link_title' => 'Edit content type',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '139',
+  'plid' => '98',
+  'link_path' => 'admin/config/regional/date-time/formats',
+  'router_path' => 'admin/config/regional/date-time/formats',
+  'link_title' => 'Formats',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:51:"Configure display format strings for date and time.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-9',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '51',
+  'p4' => '98',
+  'p5' => '139',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '140',
+  'plid' => '30',
+  'link_path' => 'admin/structure/block/list/garland',
+  'router_path' => 'admin/structure/block/list/garland',
+  'link_title' => 'Garland',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '140',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '141',
+  'plid' => '123',
+  'link_path' => 'admin/config/content/formats/list',
+  'router_path' => 'admin/config/content/formats/list',
+  'link_title' => 'List',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '35',
+  'p4' => '123',
+  'p5' => '141',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '142',
+  'plid' => '127',
+  'link_path' => 'admin/structure/taxonomy/%/list',
+  'router_path' => 'admin/structure/taxonomy/%/list',
+  'link_title' => 'List',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-20',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '127',
+  'p5' => '142',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '143',
+  'plid' => '104',
+  'link_path' => 'admin/config/media/image-styles/list',
+  'router_path' => 'admin/config/media/image-styles/list',
+  'link_title' => 'List',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:42:"List the current image styles on the site.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '1',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '46',
+  'p4' => '104',
+  'p5' => '143',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '144',
+  'plid' => '90',
+  'link_path' => 'admin/config/system/actions/manage',
+  'router_path' => 'admin/config/system/actions/manage',
+  'link_title' => 'Manage actions',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:41:"Manage the actions defined for your site.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-2',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '56',
+  'p4' => '90',
+  'p5' => '144',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '145',
+  'plid' => '89',
+  'link_path' => 'admin/config/people/accounts/settings',
+  'router_path' => 'admin/config/people/accounts/settings',
+  'link_title' => 'Settings',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '48',
+  'p4' => '89',
+  'p5' => '145',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '146',
+  'plid' => '30',
+  'link_path' => 'admin/structure/block/list/seven',
+  'router_path' => 'admin/structure/block/list/seven',
+  'link_title' => 'Seven',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '146',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '147',
+  'plid' => '30',
+  'link_path' => 'admin/structure/block/list/stark',
+  'router_path' => 'admin/structure/block/list/stark',
+  'link_title' => 'Stark',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '147',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '148',
+  'plid' => '30',
+  'link_path' => 'admin/structure/block/list/test_theme',
+  'router_path' => 'admin/structure/block/list/test_theme',
+  'link_title' => 'Test theme',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '148',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '149',
+  'plid' => '98',
+  'link_path' => 'admin/config/regional/date-time/types',
+  'router_path' => 'admin/config/regional/date-time/types',
+  'link_title' => 'Types',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:44:"Configure display formats for date and time.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '51',
+  'p4' => '98',
+  'p5' => '149',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '150',
+  'plid' => '30',
+  'link_path' => 'admin/structure/block/list/update_test_basetheme',
+  'router_path' => 'admin/structure/block/list/update_test_basetheme',
+  'link_title' => 'Update test base theme',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '150',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '151',
+  'plid' => '30',
+  'link_path' => 'admin/structure/block/list/update_test_subtheme',
+  'router_path' => 'admin/structure/block/list/update_test_subtheme',
+  'link_title' => 'Update test subtheme',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '151',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '152',
+  'plid' => '52',
+  'link_path' => 'node/%/revisions/%/delete',
+  'router_path' => 'node/%/revisions/%/delete',
+  'link_title' => 'Delete earlier revision',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '5',
+  'p2' => '52',
+  'p3' => '152',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '153',
+  'plid' => '52',
+  'link_path' => 'node/%/revisions/%/revert',
+  'router_path' => 'node/%/revisions/%/revert',
+  'link_title' => 'Revert to earlier revision',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '5',
+  'p2' => '52',
+  'p3' => '153',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '154',
+  'plid' => '52',
+  'link_path' => 'node/%/revisions/%/view',
+  'router_path' => 'node/%/revisions/%/view',
+  'link_title' => 'Revisions',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '5',
+  'p2' => '52',
+  'p3' => '154',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '155',
+  'plid' => '140',
+  'link_path' => 'admin/structure/block/list/garland/add',
+  'router_path' => 'admin/structure/block/list/garland/add',
+  'link_title' => 'Add block',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '140',
+  'p5' => '155',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '156',
+  'plid' => '146',
+  'link_path' => 'admin/structure/block/list/seven/add',
+  'router_path' => 'admin/structure/block/list/seven/add',
+  'link_title' => 'Add block',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '146',
+  'p5' => '156',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '157',
+  'plid' => '147',
+  'link_path' => 'admin/structure/block/list/stark/add',
+  'router_path' => 'admin/structure/block/list/stark/add',
+  'link_title' => 'Add block',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '147',
+  'p5' => '157',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '158',
+  'plid' => '148',
+  'link_path' => 'admin/structure/block/list/test_theme/add',
+  'router_path' => 'admin/structure/block/list/test_theme/add',
+  'link_title' => 'Add block',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '148',
+  'p5' => '158',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '159',
+  'plid' => '150',
+  'link_path' => 'admin/structure/block/list/update_test_basetheme/add',
+  'router_path' => 'admin/structure/block/list/update_test_basetheme/add',
+  'link_title' => 'Add block',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '150',
+  'p5' => '159',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '160',
+  'plid' => '151',
+  'link_path' => 'admin/structure/block/list/update_test_subtheme/add',
+  'router_path' => 'admin/structure/block/list/update_test_subtheme/add',
+  'link_title' => 'Add block',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '151',
+  'p5' => '160',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '161',
+  'plid' => '149',
+  'link_path' => 'admin/config/regional/date-time/types/add',
+  'router_path' => 'admin/config/regional/date-time/types/add',
+  'link_title' => 'Add date type',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:18:"Add new date type.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '51',
+  'p4' => '98',
+  'p5' => '149',
+  'p6' => '161',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '162',
+  'plid' => '139',
+  'link_path' => 'admin/config/regional/date-time/formats/add',
+  'router_path' => 'admin/config/regional/date-time/formats/add',
+  'link_title' => 'Add format',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"Allow users to add additional date formats.";}}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '51',
+  'p4' => '98',
+  'p5' => '139',
+  'p6' => '162',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '163',
+  'plid' => '136',
+  'link_path' => 'admin/structure/menu/manage/%/add',
+  'router_path' => 'admin/structure/menu/manage/%/add',
+  'link_title' => 'Add link',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '136',
+  'p5' => '163',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '164',
+  'plid' => '30',
+  'link_path' => 'admin/structure/block/manage/%/%',
+  'router_path' => 'admin/structure/block/manage/%/%',
+  'link_title' => 'Configure block',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '164',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '165',
+  'plid' => '31',
+  'link_path' => 'user/%/cancel/confirm/%/%',
+  'router_path' => 'user/%/cancel/confirm/%/%',
+  'link_title' => 'Confirm account cancellation',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '17',
+  'p2' => '31',
+  'p3' => '165',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '166',
+  'plid' => '138',
+  'link_path' => 'admin/structure/types/manage/%/delete',
+  'router_path' => 'admin/structure/types/manage/%/delete',
+  'link_title' => 'Delete',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '166',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '167',
+  'plid' => '103',
+  'link_path' => 'admin/config/people/ip-blocking/delete/%',
+  'router_path' => 'admin/config/people/ip-blocking/delete/%',
+  'link_title' => 'Delete IP address',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '48',
+  'p4' => '103',
+  'p5' => '167',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '168',
+  'plid' => '90',
+  'link_path' => 'admin/config/system/actions/delete/%',
+  'router_path' => 'admin/config/system/actions/delete/%',
+  'link_title' => 'Delete action',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:17:"Delete an action.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '56',
+  'p4' => '90',
+  'p5' => '168',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '169',
+  'plid' => '136',
+  'link_path' => 'admin/structure/menu/manage/%/delete',
+  'router_path' => 'admin/structure/menu/manage/%/delete',
+  'link_title' => 'Delete menu',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '136',
+  'p5' => '169',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '170',
+  'plid' => '47',
+  'link_path' => 'admin/structure/menu/item/%/delete',
+  'router_path' => 'admin/structure/menu/item/%/delete',
+  'link_title' => 'Delete menu link',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '170',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '171',
+  'plid' => '117',
+  'link_path' => 'admin/people/permissions/roles/delete/%',
+  'router_path' => 'admin/people/permissions/roles/delete/%',
+  'link_title' => 'Delete role',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '49',
+  'p4' => '117',
+  'p5' => '171',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '172',
+  'plid' => '130',
+  'link_path' => 'admin/config/content/formats/%/disable',
+  'router_path' => 'admin/config/content/formats/%/disable',
+  'link_title' => 'Disable text format',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '35',
+  'p4' => '123',
+  'p5' => '130',
+  'p6' => '172',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '173',
+  'plid' => '138',
+  'link_path' => 'admin/structure/types/manage/%/edit',
+  'router_path' => 'admin/structure/types/manage/%/edit',
+  'link_title' => 'Edit',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '173',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '174',
+  'plid' => '136',
+  'link_path' => 'admin/structure/menu/manage/%/edit',
+  'router_path' => 'admin/structure/menu/manage/%/edit',
+  'link_title' => 'Edit menu',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '136',
+  'p5' => '174',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '175',
+  'plid' => '47',
+  'link_path' => 'admin/structure/menu/item/%/edit',
+  'router_path' => 'admin/structure/menu/item/%/edit',
+  'link_title' => 'Edit menu link',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '175',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '176',
+  'plid' => '117',
+  'link_path' => 'admin/people/permissions/roles/edit/%',
+  'router_path' => 'admin/people/permissions/roles/edit/%',
+  'link_title' => 'Edit role',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '18',
+  'p3' => '49',
+  'p4' => '117',
+  'p5' => '176',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '177',
+  'plid' => '104',
+  'link_path' => 'admin/config/media/image-styles/edit/%',
+  'router_path' => 'admin/config/media/image-styles/edit/%',
+  'link_title' => 'Edit style',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:25:"Configure an image style.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '46',
+  'p4' => '104',
+  'p5' => '177',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '178',
+  'plid' => '136',
+  'link_path' => 'admin/structure/menu/manage/%/list',
+  'router_path' => 'admin/structure/menu/manage/%/list',
+  'link_title' => 'List links',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '136',
+  'p5' => '178',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '179',
+  'plid' => '47',
+  'link_path' => 'admin/structure/menu/item/%/reset',
+  'router_path' => 'admin/structure/menu/item/%/reset',
+  'link_title' => 'Reset menu link',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '179',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '180',
+  'plid' => '104',
+  'link_path' => 'admin/config/media/image-styles/delete/%',
+  'router_path' => 'admin/config/media/image-styles/delete/%',
+  'link_title' => 'Delete style',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:22:"Delete an image style.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '46',
+  'p4' => '104',
+  'p5' => '180',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '181',
+  'plid' => '104',
+  'link_path' => 'admin/config/media/image-styles/revert/%',
+  'router_path' => 'admin/config/media/image-styles/revert/%',
+  'link_title' => 'Revert style',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:22:"Revert an image style.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '46',
+  'p4' => '104',
+  'p5' => '181',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '182',
+  'plid' => '138',
+  'link_path' => 'admin/structure/types/manage/%/comment/display',
+  'router_path' => 'admin/structure/types/manage/%/comment/display',
+  'link_title' => 'Comment display',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '4',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '182',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '183',
+  'plid' => '138',
+  'link_path' => 'admin/structure/types/manage/%/comment/fields',
+  'router_path' => 'admin/structure/types/manage/%/comment/fields',
+  'link_title' => 'Comment fields',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '3',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '183',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '184',
+  'plid' => '164',
+  'link_path' => 'admin/structure/block/manage/%/%/configure',
+  'router_path' => 'admin/structure/block/manage/%/%/configure',
+  'link_title' => 'Configure block',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '164',
+  'p5' => '184',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '185',
+  'plid' => '164',
+  'link_path' => 'admin/structure/block/manage/%/%/delete',
+  'router_path' => 'admin/structure/block/manage/%/%/delete',
+  'link_title' => 'Delete block',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '30',
+  'p4' => '164',
+  'p5' => '185',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '186',
+  'plid' => '139',
+  'link_path' => 'admin/config/regional/date-time/formats/%/delete',
+  'router_path' => 'admin/config/regional/date-time/formats/%/delete',
+  'link_title' => 'Delete date format',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:47:"Allow users to delete a configured date format.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '51',
+  'p4' => '98',
+  'p5' => '139',
+  'p6' => '186',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '187',
+  'plid' => '149',
+  'link_path' => 'admin/config/regional/date-time/types/%/delete',
+  'router_path' => 'admin/config/regional/date-time/types/%/delete',
+  'link_title' => 'Delete date type',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:45:"Allow users to delete a configured date type.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '51',
+  'p4' => '98',
+  'p5' => '149',
+  'p6' => '187',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '188',
+  'plid' => '139',
+  'link_path' => 'admin/config/regional/date-time/formats/%/edit',
+  'router_path' => 'admin/config/regional/date-time/formats/%/edit',
+  'link_title' => 'Edit date format',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:45:"Allow users to edit a configured date format.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '51',
+  'p4' => '98',
+  'p5' => '139',
+  'p6' => '188',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '189',
+  'plid' => '177',
+  'link_path' => 'admin/config/media/image-styles/edit/%/add/%',
+  'router_path' => 'admin/config/media/image-styles/edit/%/add/%',
+  'link_title' => 'Add image effect',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:28:"Add a new effect to a style.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '46',
+  'p4' => '104',
+  'p5' => '177',
+  'p6' => '189',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '190',
+  'plid' => '177',
+  'link_path' => 'admin/config/media/image-styles/edit/%/effects/%',
+  'router_path' => 'admin/config/media/image-styles/edit/%/effects/%',
+  'link_title' => 'Edit image effect',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:39:"Edit an existing effect within a style.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '46',
+  'p4' => '104',
+  'p5' => '177',
+  'p6' => '190',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '191',
+  'plid' => '190',
+  'link_path' => 'admin/config/media/image-styles/edit/%/effects/%/delete',
+  'router_path' => 'admin/config/media/image-styles/edit/%/effects/%/delete',
+  'link_title' => 'Delete image effect',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:39:"Delete an existing effect from a style.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '46',
+  'p4' => '104',
+  'p5' => '177',
+  'p6' => '190',
+  'p7' => '191',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '192',
+  'plid' => '47',
+  'link_path' => 'admin/structure/menu/manage/main-menu',
+  'router_path' => 'admin/structure/menu/manage/%',
+  'link_title' => 'Main menu',
+  'options' => 'a:0:{}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '192',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '193',
+  'plid' => '47',
+  'link_path' => 'admin/structure/menu/manage/management',
+  'router_path' => 'admin/structure/menu/manage/%',
+  'link_title' => 'Management',
+  'options' => 'a:0:{}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '193',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '194',
+  'plid' => '47',
+  'link_path' => 'admin/structure/menu/manage/navigation',
+  'router_path' => 'admin/structure/menu/manage/%',
+  'link_title' => 'Navigation',
+  'options' => 'a:0:{}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '194',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '195',
+  'plid' => '47',
+  'link_path' => 'admin/structure/menu/manage/user-menu',
+  'router_path' => 'admin/structure/menu/manage/%',
+  'link_title' => 'User menu',
+  'options' => 'a:0:{}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '47',
+  'p4' => '195',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '196',
+  'plid' => '0',
+  'link_path' => 'search',
+  'router_path' => 'search',
+  'link_title' => 'Search',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '196',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '197',
+  'plid' => '196',
+  'link_path' => 'search/node',
+  'router_path' => 'search/node',
+  'link_title' => 'Content',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '196',
+  'p2' => '197',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '198',
+  'plid' => '196',
+  'link_path' => 'search/user',
+  'router_path' => 'search/user',
+  'link_title' => 'Users',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '196',
+  'p2' => '198',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '199',
+  'plid' => '197',
+  'link_path' => 'search/node/%',
+  'router_path' => 'search/node/%',
+  'link_title' => 'Content',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '196',
+  'p2' => '197',
+  'p3' => '199',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '200',
+  'plid' => '17',
+  'link_path' => 'user/%/shortcuts',
+  'router_path' => 'user/%/shortcuts',
+  'link_title' => 'Shortcuts',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '17',
+  'p2' => '200',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '201',
+  'plid' => '19',
+  'link_path' => 'admin/reports/search',
+  'router_path' => 'admin/reports/search',
+  'link_title' => 'Top search phrases',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:33:"View most popular search phrases.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '19',
+  'p3' => '201',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '202',
+  'plid' => '198',
+  'link_path' => 'search/user/%',
+  'router_path' => 'search/user/%',
+  'link_title' => 'Users',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '196',
+  'p2' => '198',
+  'p3' => '202',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '203',
+  'plid' => '12',
+  'link_path' => 'admin/help/number',
+  'router_path' => 'admin/help/number',
+  'link_title' => 'number',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '203',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '204',
+  'plid' => '12',
+  'link_path' => 'admin/help/overlay',
+  'router_path' => 'admin/help/overlay',
+  'link_title' => 'overlay',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '204',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '205',
+  'plid' => '12',
+  'link_path' => 'admin/help/path',
+  'router_path' => 'admin/help/path',
+  'link_title' => 'path',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '205',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '206',
+  'plid' => '12',
+  'link_path' => 'admin/help/rdf',
+  'router_path' => 'admin/help/rdf',
+  'link_title' => 'rdf',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '206',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '207',
+  'plid' => '12',
+  'link_path' => 'admin/help/search',
+  'router_path' => 'admin/help/search',
+  'link_title' => 'search',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '207',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '208',
+  'plid' => '12',
+  'link_path' => 'admin/help/shortcut',
+  'router_path' => 'admin/help/shortcut',
+  'link_title' => 'shortcut',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '208',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '209',
+  'plid' => '53',
+  'link_path' => 'admin/config/search/settings',
+  'router_path' => 'admin/config/search/settings',
+  'link_title' => 'Search settings',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:67:"Configure relevance settings for search and other indexing options.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '53',
+  'p4' => '209',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '210',
+  'plid' => '61',
+  'link_path' => 'admin/config/user-interface/shortcut',
+  'router_path' => 'admin/config/user-interface/shortcut',
+  'link_title' => 'Shortcuts',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:29:"Add and modify shortcut sets.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '61',
+  'p4' => '210',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '211',
+  'plid' => '53',
+  'link_path' => 'admin/config/search/path',
+  'router_path' => 'admin/config/search/path',
+  'link_title' => 'URL aliases',
+  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:46:\"Change your site's URL paths by aliasing them.\";}}",
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '-5',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '53',
+  'p4' => '211',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '212',
+  'plid' => '211',
+  'link_path' => 'admin/config/search/path/add',
+  'router_path' => 'admin/config/search/path/add',
+  'link_title' => 'Add alias',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '53',
+  'p4' => '211',
+  'p5' => '212',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '213',
+  'plid' => '210',
+  'link_path' => 'admin/config/user-interface/shortcut/add-set',
+  'router_path' => 'admin/config/user-interface/shortcut/add-set',
+  'link_title' => 'Add shortcut set',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '61',
+  'p4' => '210',
+  'p5' => '213',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '214',
+  'plid' => '209',
+  'link_path' => 'admin/config/search/settings/reindex',
+  'router_path' => 'admin/config/search/settings/reindex',
+  'link_title' => 'Clear index',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '53',
+  'p4' => '209',
+  'p5' => '214',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '215',
+  'plid' => '210',
+  'link_path' => 'admin/config/user-interface/shortcut/%',
+  'router_path' => 'admin/config/user-interface/shortcut/%',
+  'link_title' => 'Edit shortcuts',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '61',
+  'p4' => '210',
+  'p5' => '215',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '216',
+  'plid' => '211',
+  'link_path' => 'admin/config/search/path/list',
+  'router_path' => 'admin/config/search/path/list',
+  'link_title' => 'List',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '53',
+  'p4' => '211',
+  'p5' => '216',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '217',
+  'plid' => '215',
+  'link_path' => 'admin/config/user-interface/shortcut/%/add-link',
+  'router_path' => 'admin/config/user-interface/shortcut/%/add-link',
+  'link_title' => 'Add shortcut',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '61',
+  'p4' => '210',
+  'p5' => '215',
+  'p6' => '217',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '218',
+  'plid' => '211',
+  'link_path' => 'admin/config/search/path/delete/%',
+  'router_path' => 'admin/config/search/path/delete/%',
+  'link_title' => 'Delete alias',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '53',
+  'p4' => '211',
+  'p5' => '218',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '219',
+  'plid' => '215',
+  'link_path' => 'admin/config/user-interface/shortcut/%/delete',
+  'router_path' => 'admin/config/user-interface/shortcut/%/delete',
+  'link_title' => 'Delete shortcut set',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '61',
+  'p4' => '210',
+  'p5' => '215',
+  'p6' => '219',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '220',
+  'plid' => '211',
+  'link_path' => 'admin/config/search/path/edit/%',
+  'router_path' => 'admin/config/search/path/edit/%',
+  'link_title' => 'Edit alias',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '53',
+  'p4' => '211',
+  'p5' => '220',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '221',
+  'plid' => '215',
+  'link_path' => 'admin/config/user-interface/shortcut/%/edit',
+  'router_path' => 'admin/config/user-interface/shortcut/%/edit',
+  'link_title' => 'Edit set name',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '10',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '61',
+  'p4' => '210',
+  'p5' => '215',
+  'p6' => '221',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '222',
+  'plid' => '210',
+  'link_path' => 'admin/config/user-interface/shortcut/link/%',
+  'router_path' => 'admin/config/user-interface/shortcut/link/%',
+  'link_title' => 'Edit shortcut',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '61',
+  'p4' => '210',
+  'p5' => '222',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '223',
+  'plid' => '215',
+  'link_path' => 'admin/config/user-interface/shortcut/%/links',
+  'router_path' => 'admin/config/user-interface/shortcut/%/links',
+  'link_title' => 'List links',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '61',
+  'p4' => '210',
+  'p5' => '215',
+  'p6' => '223',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '224',
+  'plid' => '222',
+  'link_path' => 'admin/config/user-interface/shortcut/link/%/delete',
+  'router_path' => 'admin/config/user-interface/shortcut/link/%/delete',
+  'link_title' => 'Delete shortcut',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '61',
+  'p4' => '210',
+  'p5' => '222',
+  'p6' => '224',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'shortcut-set-1',
+  'mlid' => '225',
+  'plid' => '0',
+  'link_path' => 'node/add',
+  'router_path' => 'node/add',
+  'link_title' => 'Add content',
+  'options' => 'a:0:{}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-20',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '225',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'shortcut-set-1',
+  'mlid' => '226',
+  'plid' => '0',
+  'link_path' => 'admin/content',
+  'router_path' => 'admin/content',
+  'link_title' => 'Find content',
+  'options' => 'a:0:{}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-19',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '226',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'main-menu',
+  'mlid' => '227',
+  'plid' => '0',
+  'link_path' => '<front>',
+  'router_path' => '',
+  'link_title' => 'Home',
+  'options' => 'a:0:{}',
+  'module' => 'menu',
+  'hidden' => '0',
+  'external' => '1',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '1',
+  'customized' => '0',
+  'p1' => '227',
+  'p2' => '0',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '228',
+  'plid' => '6',
+  'link_path' => 'node/add/article',
+  'router_path' => 'node/add/article',
+  'link_title' => 'Article',
+  'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:89:"Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '6',
+  'p2' => '228',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'navigation',
+  'mlid' => '229',
+  'plid' => '6',
+  'link_path' => 'node/add/page',
+  'router_path' => 'node/add/page',
+  'link_title' => 'Basic page',
+  'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:77:\"Use <em>basic pages</em> for your static content, such as an 'About us' page.\";}}",
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '2',
+  'customized' => '0',
+  'p1' => '6',
+  'p2' => '229',
+  'p3' => '0',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '230',
+  'plid' => '12',
+  'link_path' => 'admin/help/toolbar',
+  'router_path' => 'admin/help/toolbar',
+  'link_title' => 'toolbar',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '230',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '269',
+  'plid' => '19',
+  'link_path' => 'admin/reports/updates',
+  'router_path' => 'admin/reports/updates',
+  'link_title' => 'Available updates',
+  'options' => '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.";}}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-50',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '19',
+  'p3' => '269',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '270',
+  'plid' => '16',
+  'link_path' => 'admin/modules/install',
+  'router_path' => 'admin/modules/install',
+  'link_title' => 'Install new module',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '25',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '16',
+  'p3' => '270',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '271',
+  'plid' => '7',
+  'link_path' => 'admin/appearance/install',
+  'router_path' => 'admin/appearance/install',
+  'link_title' => 'Install new theme',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '25',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '7',
+  'p3' => '271',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '272',
+  'plid' => '16',
+  'link_path' => 'admin/modules/update',
+  'router_path' => 'admin/modules/update',
+  'link_title' => 'Update',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '10',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '16',
+  'p3' => '272',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '273',
+  'plid' => '7',
+  'link_path' => 'admin/appearance/update',
+  'router_path' => 'admin/appearance/update',
+  'link_title' => 'Update',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '10',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '7',
+  'p3' => '273',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '274',
+  'plid' => '12',
+  'link_path' => 'admin/help/update',
+  'router_path' => 'admin/help/update',
+  'link_title' => 'update',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '3',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '12',
+  'p3' => '274',
+  'p4' => '0',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '275',
+  'plid' => '269',
+  'link_path' => 'admin/reports/updates/install',
+  'router_path' => 'admin/reports/updates/install',
+  'link_title' => 'Install new module or theme',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '25',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '19',
+  'p3' => '269',
+  'p4' => '275',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '276',
+  'plid' => '269',
+  'link_path' => 'admin/reports/updates/update',
+  'router_path' => 'admin/reports/updates/update',
+  'link_title' => 'Update',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '10',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '19',
+  'p3' => '269',
+  'p4' => '276',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '277',
+  'plid' => '269',
+  'link_path' => 'admin/reports/updates/list',
+  'router_path' => 'admin/reports/updates/list',
+  'link_title' => 'List',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '19',
+  'p3' => '269',
+  'p4' => '277',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '278',
+  'plid' => '269',
+  'link_path' => 'admin/reports/updates/settings',
+  'router_path' => 'admin/reports/updates/settings',
+  'link_title' => 'Settings',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '50',
+  'depth' => '4',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '19',
+  'p3' => '269',
+  'p4' => '278',
+  'p5' => '0',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '279',
+  'plid' => '127',
+  'link_path' => 'admin/structure/taxonomy/%/display',
+  'router_path' => 'admin/structure/taxonomy/%/display',
+  'link_title' => 'Manage display',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '2',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '127',
+  'p5' => '279',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '280',
+  'plid' => '89',
+  'link_path' => 'admin/config/people/accounts/display',
+  'router_path' => 'admin/config/people/accounts/display',
+  'link_title' => 'Manage display',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '2',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '48',
+  'p4' => '89',
+  'p5' => '280',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '281',
+  'plid' => '127',
+  'link_path' => 'admin/structure/taxonomy/%/fields',
+  'router_path' => 'admin/structure/taxonomy/%/fields',
+  'link_title' => 'Manage fields',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '1',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '127',
+  'p5' => '281',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '282',
+  'plid' => '89',
+  'link_path' => 'admin/config/people/accounts/fields',
+  'router_path' => 'admin/config/people/accounts/fields',
+  'link_title' => 'Manage fields',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '1',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '48',
+  'p4' => '89',
+  'p5' => '282',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '283',
+  'plid' => '279',
+  'link_path' => 'admin/structure/taxonomy/%/display/default',
+  'router_path' => 'admin/structure/taxonomy/%/display/default',
+  'link_title' => 'Default',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '127',
+  'p5' => '279',
+  'p6' => '283',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '284',
+  'plid' => '280',
+  'link_path' => 'admin/config/people/accounts/display/default',
+  'router_path' => 'admin/config/people/accounts/display/default',
+  'link_title' => 'Default',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '48',
+  'p4' => '89',
+  'p5' => '280',
+  'p6' => '284',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '285',
+  'plid' => '138',
+  'link_path' => 'admin/structure/types/manage/%/display',
+  'router_path' => 'admin/structure/types/manage/%/display',
+  'link_title' => 'Manage display',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '2',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '285',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '286',
+  'plid' => '138',
+  'link_path' => 'admin/structure/types/manage/%/fields',
+  'router_path' => 'admin/structure/types/manage/%/fields',
+  'link_title' => 'Manage fields',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '1',
+  'expanded' => '0',
+  'weight' => '1',
+  'depth' => '5',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '286',
+  'p6' => '0',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '287',
+  'plid' => '279',
+  'link_path' => 'admin/structure/taxonomy/%/display/full',
+  'router_path' => 'admin/structure/taxonomy/%/display/full',
+  'link_title' => 'Taxonomy term page',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '127',
+  'p5' => '279',
+  'p6' => '287',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '288',
+  'plid' => '280',
+  'link_path' => 'admin/config/people/accounts/display/full',
+  'router_path' => 'admin/config/people/accounts/display/full',
+  'link_title' => 'User account',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '48',
+  'p4' => '89',
+  'p5' => '280',
+  'p6' => '288',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '289',
+  'plid' => '281',
+  'link_path' => 'admin/structure/taxonomy/%/fields/%',
+  'router_path' => 'admin/structure/taxonomy/%/fields/%',
+  'link_title' => '',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '127',
+  'p5' => '281',
+  'p6' => '289',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '290',
+  'plid' => '282',
+  'link_path' => 'admin/config/people/accounts/fields/%',
+  'router_path' => 'admin/config/people/accounts/fields/%',
+  'link_title' => '',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '48',
+  'p4' => '89',
+  'p5' => '282',
+  'p6' => '290',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '291',
+  'plid' => '285',
+  'link_path' => 'admin/structure/types/manage/%/display/default',
+  'router_path' => 'admin/structure/types/manage/%/display/default',
+  'link_title' => 'Default',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '285',
+  'p6' => '291',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '292',
+  'plid' => '285',
+  'link_path' => 'admin/structure/types/manage/%/display/full',
+  'router_path' => 'admin/structure/types/manage/%/display/full',
+  'link_title' => 'Full content',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '285',
+  'p6' => '292',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '293',
+  'plid' => '285',
+  'link_path' => 'admin/structure/types/manage/%/display/rss',
+  'router_path' => 'admin/structure/types/manage/%/display/rss',
+  'link_title' => 'RSS',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '2',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '285',
+  'p6' => '293',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '294',
+  'plid' => '285',
+  'link_path' => 'admin/structure/types/manage/%/display/search_index',
+  'router_path' => 'admin/structure/types/manage/%/display/search_index',
+  'link_title' => 'Search index',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '3',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '285',
+  'p6' => '294',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '295',
+  'plid' => '285',
+  'link_path' => 'admin/structure/types/manage/%/display/search_result',
+  'router_path' => 'admin/structure/types/manage/%/display/search_result',
+  'link_title' => 'Search result',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '4',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '285',
+  'p6' => '295',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '296',
+  'plid' => '285',
+  'link_path' => 'admin/structure/types/manage/%/display/teaser',
+  'router_path' => 'admin/structure/types/manage/%/display/teaser',
+  'link_title' => 'Teaser',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '1',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '285',
+  'p6' => '296',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '297',
+  'plid' => '286',
+  'link_path' => 'admin/structure/types/manage/%/fields/%',
+  'router_path' => 'admin/structure/types/manage/%/fields/%',
+  'link_title' => '',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '286',
+  'p6' => '297',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '298',
+  'plid' => '289',
+  'link_path' => 'admin/structure/taxonomy/%/fields/%/delete',
+  'router_path' => 'admin/structure/taxonomy/%/fields/%/delete',
+  'link_title' => 'Delete',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '10',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '127',
+  'p5' => '281',
+  'p6' => '289',
+  'p7' => '298',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '299',
+  'plid' => '289',
+  'link_path' => 'admin/structure/taxonomy/%/fields/%/edit',
+  'router_path' => 'admin/structure/taxonomy/%/fields/%/edit',
+  'link_title' => 'Edit',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '127',
+  'p5' => '281',
+  'p6' => '289',
+  'p7' => '299',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '300',
+  'plid' => '289',
+  'link_path' => 'admin/structure/taxonomy/%/fields/%/field-settings',
+  'router_path' => 'admin/structure/taxonomy/%/fields/%/field-settings',
+  'link_title' => 'Field settings',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '127',
+  'p5' => '281',
+  'p6' => '289',
+  'p7' => '300',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '301',
+  'plid' => '289',
+  'link_path' => 'admin/structure/taxonomy/%/fields/%/widget-type',
+  'router_path' => 'admin/structure/taxonomy/%/fields/%/widget-type',
+  'link_title' => 'Widget type',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '57',
+  'p4' => '127',
+  'p5' => '281',
+  'p6' => '289',
+  'p7' => '301',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '302',
+  'plid' => '290',
+  'link_path' => 'admin/config/people/accounts/fields/%/delete',
+  'router_path' => 'admin/config/people/accounts/fields/%/delete',
+  'link_title' => 'Delete',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '10',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '48',
+  'p4' => '89',
+  'p5' => '282',
+  'p6' => '290',
+  'p7' => '302',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '303',
+  'plid' => '290',
+  'link_path' => 'admin/config/people/accounts/fields/%/edit',
+  'router_path' => 'admin/config/people/accounts/fields/%/edit',
+  'link_title' => 'Edit',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '48',
+  'p4' => '89',
+  'p5' => '282',
+  'p6' => '290',
+  'p7' => '303',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '304',
+  'plid' => '290',
+  'link_path' => 'admin/config/people/accounts/fields/%/field-settings',
+  'router_path' => 'admin/config/people/accounts/fields/%/field-settings',
+  'link_title' => 'Field settings',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '48',
+  'p4' => '89',
+  'p5' => '282',
+  'p6' => '290',
+  'p7' => '304',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '305',
+  'plid' => '290',
+  'link_path' => 'admin/config/people/accounts/fields/%/widget-type',
+  'router_path' => 'admin/config/people/accounts/fields/%/widget-type',
+  'link_title' => 'Widget type',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '8',
+  'p3' => '48',
+  'p4' => '89',
+  'p5' => '282',
+  'p6' => '290',
+  'p7' => '305',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '306',
+  'plid' => '182',
+  'link_path' => 'admin/structure/types/manage/%/comment/display/default',
+  'router_path' => 'admin/structure/types/manage/%/comment/display/default',
+  'link_title' => 'Default',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '-10',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '182',
+  'p6' => '306',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '307',
+  'plid' => '182',
+  'link_path' => 'admin/structure/types/manage/%/comment/display/full',
+  'router_path' => 'admin/structure/types/manage/%/comment/display/full',
+  'link_title' => 'Full comment',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '182',
+  'p6' => '307',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '308',
+  'plid' => '183',
+  'link_path' => 'admin/structure/types/manage/%/comment/fields/%',
+  'router_path' => 'admin/structure/types/manage/%/comment/fields/%',
+  'link_title' => '',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '0',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '6',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '183',
+  'p6' => '308',
+  'p7' => '0',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '309',
+  'plid' => '297',
+  'link_path' => 'admin/structure/types/manage/%/fields/%/edit',
+  'router_path' => 'admin/structure/types/manage/%/fields/%/edit',
+  'link_title' => 'Edit',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '286',
+  'p6' => '297',
+  'p7' => '309',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '310',
+  'plid' => '297',
+  'link_path' => 'admin/structure/types/manage/%/fields/%/delete',
+  'router_path' => 'admin/structure/types/manage/%/fields/%/delete',
+  'link_title' => 'Delete',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '10',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '286',
+  'p6' => '297',
+  'p7' => '310',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '311',
+  'plid' => '297',
+  'link_path' => 'admin/structure/types/manage/%/fields/%/field-settings',
+  'router_path' => 'admin/structure/types/manage/%/fields/%/field-settings',
+  'link_title' => 'Field settings',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '286',
+  'p6' => '297',
+  'p7' => '311',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '312',
+  'plid' => '297',
+  'link_path' => 'admin/structure/types/manage/%/fields/%/widget-type',
+  'router_path' => 'admin/structure/types/manage/%/fields/%/widget-type',
+  'link_title' => 'Widget type',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '286',
+  'p6' => '297',
+  'p7' => '312',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '313',
+  'plid' => '308',
+  'link_path' => 'admin/structure/types/manage/%/comment/fields/%/delete',
+  'router_path' => 'admin/structure/types/manage/%/comment/fields/%/delete',
+  'link_title' => 'Delete',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '10',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '183',
+  'p6' => '308',
+  'p7' => '313',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '314',
+  'plid' => '308',
+  'link_path' => 'admin/structure/types/manage/%/comment/fields/%/edit',
+  'router_path' => 'admin/structure/types/manage/%/comment/fields/%/edit',
+  'link_title' => 'Edit',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '183',
+  'p6' => '308',
+  'p7' => '314',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '315',
+  'plid' => '308',
+  'link_path' => 'admin/structure/types/manage/%/comment/fields/%/field-settings',
+  'router_path' => 'admin/structure/types/manage/%/comment/fields/%/field-settings',
+  'link_title' => 'Field settings',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '183',
+  'p6' => '308',
+  'p7' => '315',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->values(array(
+  'menu_name' => 'management',
+  'mlid' => '316',
+  'plid' => '308',
+  'link_path' => 'admin/structure/types/manage/%/comment/fields/%/widget-type',
+  'router_path' => 'admin/structure/types/manage/%/comment/fields/%/widget-type',
+  'link_title' => 'Widget type',
+  'options' => 'a:0:{}',
+  'module' => 'system',
+  'hidden' => '-1',
+  'external' => '0',
+  'has_children' => '0',
+  'expanded' => '0',
+  'weight' => '0',
+  'depth' => '7',
+  'customized' => '0',
+  'p1' => '1',
+  'p2' => '21',
+  'p3' => '36',
+  'p4' => '138',
+  'p5' => '183',
+  'p6' => '308',
+  'p7' => '316',
+  'p8' => '0',
+  'p9' => '0',
+  'updated' => '0',
+))
+->execute();
+
+db_create_table('menu_router', array(
+  'fields' => array(
+    'path' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'load_functions' => array(
+      'type' => 'blob',
+      'not null' => TRUE,
+    ),
+    'to_arg_functions' => array(
+      'type' => 'blob',
+      'not null' => TRUE,
+    ),
+    'access_callback' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'access_arguments' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+    ),
+    'page_callback' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'page_arguments' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+    ),
+    'delivery_callback' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'fit' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'number_parts' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'small',
+    ),
+    'context' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'tab_parent' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'tab_root' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'title' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'title_callback' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'title_arguments' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'theme_callback' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'theme_arguments' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'type' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'description' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+    ),
+    'position' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'include_file' => array(
+      'type' => 'text',
+      'size' => 'medium',
+    ),
+  ),
+  'indexes' => array(
+    'fit' => array(
+      'fit',
+    ),
+    'tab_parent' => array(
+      array(
+        'tab_parent',
+        64,
+      ),
+      'weight',
+      'title',
+    ),
+    'tab_root_weight_title' => array(
+      array(
+        'tab_root',
+        64,
+      ),
+      'weight',
+      'title',
+    ),
+  ),
+  'primary key' => array(
+    'path',
+  ),
+  'module' => 'system',
+  'name' => 'menu_router',
+));
+db_insert('menu_router')->fields(array(
+  'path',
+  'load_functions',
+  'to_arg_functions',
+  'access_callback',
+  'access_arguments',
+  'page_callback',
+  'page_arguments',
+  'delivery_callback',
+  'fit',
+  'number_parts',
+  'context',
+  'tab_parent',
+  'tab_root',
+  'title',
+  'title_callback',
+  'title_arguments',
+  'theme_callback',
+  'theme_arguments',
+  'type',
+  'description',
+  'position',
+  'weight',
+  'include_file',
+))
+->values(array(
+  'path' => 'admin',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_menu_block_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '1',
+  'number_parts' => '1',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin',
+  'title' => 'Administration',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '9',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}',
+  'page_callback' => 'system_themes_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/appearance',
+  'title' => 'Appearance',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Select and configure your themes.',
+  'position' => 'left',
+  'weight' => '-6',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/default',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}',
+  'page_callback' => 'system_theme_default',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/appearance/default',
+  'title' => 'Set default theme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/disable',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}',
+  'page_callback' => 'system_theme_disable',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/appearance/disable',
+  'title' => 'Disable theme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/enable',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}',
+  'page_callback' => 'system_theme_enable',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/appearance/enable',
+  'title' => 'Enable theme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/install',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'update_manager_access',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:27:"update_manager_install_form";i:1;s:5:"theme";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/appearance',
+  'tab_root' => 'admin/appearance',
+  'title' => 'Install new theme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '25',
+  'include_file' => 'modules/update/update.manager.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}',
+  'page_callback' => 'system_themes_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/appearance',
+  'tab_root' => 'admin/appearance',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => 'Select and configure your theme',
+  'position' => '',
+  'weight' => '-1',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/settings',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:21:"system_theme_settings";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/appearance',
+  'tab_root' => 'admin/appearance',
+  'title' => 'Settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => 'Configure default and theme specific settings.',
+  'position' => '',
+  'weight' => '20',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/settings/bartik',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_system_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:25:"themes/bartik/bartik.info";s:4:"name";s:6:"bartik";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"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:6:"Bartik";s:11:"description";s:48:"A flexible, recolorable theme with many regions.";s:7:"package";s:4:"Core";s:7:"version";s:3:"7.8";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:"1314817616";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: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: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";}}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:6:"bartik";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/appearance/settings',
+  'tab_root' => 'admin/appearance',
+  'title' => 'Bartik',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/settings/garland',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_system_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:27:"themes/garland/garland.info";s:4:"name";s:7:"garland";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:18:{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:3:"7.8";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:"1314817616";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: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: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";}}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:7:"garland";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/appearance/settings',
+  'tab_root' => 'admin/appearance',
+  'title' => 'Garland',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/settings/global',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:21:"system_theme_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/appearance/settings',
+  'tab_root' => 'admin/appearance',
+  'title' => 'Global settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-1',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/settings/seven',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_system_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:23:"themes/seven/seven.info";s:4:"name";s:5:"seven";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:18:{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:3:"7.8";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:"1314817616";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: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: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";}}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:5:"seven";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/appearance/settings',
+  'tab_root' => 'admin/appearance',
+  'title' => 'Seven',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/settings/stark',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_system_themes_access',
+  'access_arguments' => "a:1:{i:0;O:8:\"stdClass\":11:{s:8:\"filename\";s:23:\"themes/stark/stark.info\";s:4:\"name\";s:5:\"stark\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:17:{s:4:\"name\";s:5:\"Stark\";s:11:\"description\";s:208:\"This theme demonstrates Drupal's default HTML markup and CSS styles. To learn how to build your own theme and override Drupal's default code, see the <a href=\"http://drupal.org/theme-guide\">Theming Guide</a>.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:3:\"7.8\";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:\"1314817616\";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: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: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\";}}",
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:5:"stark";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/appearance/settings',
+  'tab_root' => 'admin/appearance',
+  'title' => 'Stark',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/settings/test_theme',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_system_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:39:"themes/tests/test_theme/test_theme.info";s:4:"name";s:10:"test_theme";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:17:{s:4:"name";s:10:"Test theme";s:11:"description";s:34:"Theme for testing the theme system";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:15:"system.base.css";s:39:"themes/tests/test_theme/system.base.css";}}s:7:"version";s:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";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:38:"themes/tests/test_theme/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}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:11:"stylesheets";a:1:{s:3:"all";a:1:{s:15:"system.base.css";s:39:"themes/tests/test_theme/system.base.css";}}s:6:"engine";s:11:"phptemplate";}}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:10:"test_theme";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/appearance/settings',
+  'tab_root' => 'admin/appearance',
+  'title' => 'Test theme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/settings/update_test_basetheme',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_system_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":10:{s:8:"filename";s:61:"themes/tests/update_test_basetheme/update_test_basetheme.info";s:4:"name";s:21:"update_test_basetheme";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:17:{s:4:"name";s:22:"Update test base theme";s:11:"description";s:63:"Test theme which acts as a base theme for other test subthemes.";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"version";s:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";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:49:"themes/tests/update_test_basetheme/screenshot.png";s:3:"php";s:5:"5.2.4";s:11:"stylesheets";a:0:{}s:7:"scripts";a:0:{}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:"engine";s:11:"phptemplate";}}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:21:"update_test_basetheme";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/appearance/settings',
+  'tab_root' => 'admin/appearance',
+  'title' => 'Update test base theme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/settings/update_test_subtheme',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_system_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:59:"themes/tests/update_test_subtheme/update_test_subtheme.info";s:4:"name";s:20:"update_test_subtheme";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:18:{s:4:"name";s:20:"Update test subtheme";s:11:"description";s:62:"Test theme which uses update_test_basetheme as the base theme.";s:4:"core";s:3:"7.x";s:10:"base theme";s:21:"update_test_basetheme";s:6:"hidden";b:1;s:7:"version";s:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";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:48:"themes/tests/update_test_subtheme/screenshot.png";s:3:"php";s:5:"5.2.4";s:11:"stylesheets";a:0:{}s:7:"scripts";a:0:{}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:"engine";s:11:"phptemplate";s:10:"base_theme";s:21:"update_test_basetheme";}}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:20:"update_test_subtheme";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/appearance/settings',
+  'tab_root' => 'admin/appearance',
+  'title' => 'Update test subtheme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/appearance/update',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'update_manager_access',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:26:"update_manager_update_form";i:1;s:5:"theme";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/appearance',
+  'tab_root' => 'admin/appearance',
+  'title' => 'Update',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '10',
+  'include_file' => 'modules/update/update.manager.inc',
+))
+->values(array(
+  'path' => 'admin/compact',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_compact_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/compact',
+  'title' => 'Compact mode',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_config_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config',
+  'title' => 'Configuration',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Administer settings.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/content',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_menu_block_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/content',
+  'title' => 'Content authoring',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Settings related to formatting and authoring content.',
+  'position' => 'left',
+  'weight' => '-15',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/content/formats',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:21:"filter_admin_overview";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/content/formats',
+  'title' => 'Text formats',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/filter/filter.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/content/formats/%',
+  'load_functions' => 'a:1:{i:4;s:18:"filter_format_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
+  'page_callback' => 'filter_admin_format_page',
+  'page_arguments' => 'a:1:{i:0;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '30',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/content/formats/%',
+  'title' => '',
+  'title_callback' => 'filter_admin_format_title',
+  'title_arguments' => 'a:1:{i:0;i:4;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/filter/filter.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/content/formats/%/disable',
+  'load_functions' => 'a:1:{i:4;s:18:"filter_format_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_filter_disable_format_access',
+  'access_arguments' => 'a:1:{i:0;i:4;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:20:"filter_admin_disable";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/content/formats/%/disable',
+  'title' => 'Disable text format',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/filter/filter.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/content/formats/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
+  'page_callback' => 'filter_admin_format_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/content/formats',
+  'tab_root' => 'admin/config/content/formats',
+  'title' => 'Add text format',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '1',
+  'include_file' => 'modules/filter/filter.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/content/formats/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:21:"filter_admin_overview";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/content/formats',
+  'tab_root' => 'admin/config/content/formats',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/filter/filter.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/development',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_menu_block_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/development',
+  'title' => 'Development',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Development tools.',
+  'position' => 'right',
+  'weight' => '-10',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/development/logging',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:23:"system_logging_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/development/logging',
+  'title' => 'Logging and errors',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => "Settings for logging and alerts modules. Various modules can route Drupal's system events to different destinations, such as syslog, database, email, etc.",
+  'position' => '',
+  'weight' => '-15',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/development/maintenance',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:28:"system_site_maintenance_mode";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/development/maintenance',
+  'title' => 'Maintenance mode',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Take the site offline for maintenance or bring it back online.',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/development/performance',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:27:"system_performance_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/development/performance',
+  'title' => 'Performance',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.',
+  'position' => '',
+  'weight' => '-20',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/media',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_menu_block_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/media',
+  'title' => 'Media',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Media tools.',
+  'position' => 'left',
+  'weight' => '-10',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/media/file-system',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:27:"system_file_system_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/media/file-system',
+  'title' => 'File system',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Tell Drupal where to store uploaded files and how they are accessed.',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/media/image-styles',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}',
+  'page_callback' => 'image_style_list',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/media/image-styles',
+  'title' => 'Image styles',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Configure styles that can be used for resizing or adjusting images on display.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/image/image.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/media/image-styles/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:20:"image_style_add_form";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/media/image-styles',
+  'tab_root' => 'admin/config/media/image-styles',
+  'title' => 'Add style',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => 'Add a new image style.',
+  'position' => '',
+  'weight' => '2',
+  'include_file' => 'modules/image/image.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/media/image-styles/delete/%',
+  'load_functions' => 'a:1:{i:5;a:1:{s:16:"image_style_load";a:2:{i:0;N;i:1;s:1:"1";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:23:"image_style_delete_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '62',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/media/image-styles/delete/%',
+  'title' => 'Delete style',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Delete an image style.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/image/image.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/media/image-styles/edit/%',
+  'load_functions' => 'a:1:{i:5;s:16:"image_style_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:16:"image_style_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '62',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/media/image-styles/edit/%',
+  'title' => 'Edit style',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Configure an image style.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/image/image.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/media/image-styles/edit/%/add/%',
+  'load_functions' => '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;}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:3:{i:0;s:17:"image_effect_form";i:1;i:5;i:2;i:7;}',
+  'delivery_callback' => '',
+  'fit' => '250',
+  'number_parts' => '8',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/media/image-styles/edit/%/add/%',
+  'title' => 'Add image effect',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Add a new effect to a style.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/image/image.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/media/image-styles/edit/%/effects/%',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:3:{i:0;s:17:"image_effect_form";i:1;i:5;i:2;i:7;}',
+  'delivery_callback' => '',
+  'fit' => '250',
+  'number_parts' => '8',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/media/image-styles/edit/%/effects/%',
+  'title' => 'Edit image effect',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Edit an existing effect within a style.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/image/image.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/media/image-styles/edit/%/effects/%/delete',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:3:{i:0;s:24:"image_effect_delete_form";i:1;i:5;i:2;i:7;}',
+  'delivery_callback' => '',
+  'fit' => '501',
+  'number_parts' => '9',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/media/image-styles/edit/%/effects/%/delete',
+  'title' => 'Delete image effect',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Delete an existing effect from a style.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/image/image.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/media/image-styles/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}',
+  'page_callback' => 'image_style_list',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/media/image-styles',
+  'tab_root' => 'admin/config/media/image-styles',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => 'List the current image styles on the site.',
+  'position' => '',
+  'weight' => '1',
+  'include_file' => 'modules/image/image.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/media/image-styles/revert/%',
+  'load_functions' => 'a:1:{i:5;a:1:{s:16:"image_style_load";a:2:{i:0;N;i:1;s:1:"2";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:23:"image_style_revert_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '62',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/media/image-styles/revert/%',
+  'title' => 'Revert style',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Revert an image style.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/image/image.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/media/image-toolkit',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:29:"system_image_toolkit_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/media/image-toolkit',
+  'title' => 'Image toolkit',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Choose which image toolkit to use if you have installed optional toolkits.',
+  'position' => '',
+  'weight' => '20',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/people',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_menu_block_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/people',
+  'title' => 'People',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Configure user accounts.',
+  'position' => 'left',
+  'weight' => '-20',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/people/accounts',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:19:"user_admin_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/people/accounts',
+  'title' => 'Account settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Configure default behavior of users, including registration requirements, e-mails, fields, and user pictures.',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/user/user.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/people/accounts/display',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/people/accounts',
+  'tab_root' => 'admin/config/people/accounts',
+  'title' => 'Manage display',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '2',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/people/accounts/display/default',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_field_ui_view_mode_menu_access',
+  'access_arguments' => '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";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '63',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/config/people/accounts/display',
+  'tab_root' => 'admin/config/people/accounts',
+  'title' => 'Default',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/people/accounts/display/full',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_field_ui_view_mode_menu_access',
+  'access_arguments' => '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";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '63',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/config/people/accounts/display',
+  'tab_root' => 'admin/config/people/accounts',
+  'title' => 'User account',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/people/accounts/fields',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:3:{i:0;s:28:"field_ui_field_overview_form";i:1;s:4:"user";i:2;s:4:"user";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/people/accounts',
+  'tab_root' => 'admin/config/people/accounts',
+  'title' => 'Manage fields',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '1',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/people/accounts/fields/%',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '62',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/people/accounts/fields/%',
+  'title' => '',
+  'title_callback' => 'field_ui_menu_title',
+  'title_arguments' => 'a:1:{i:0;i:5;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/people/accounts/fields/%/delete',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:26:"field_ui_field_delete_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '125',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/config/people/accounts/fields/%',
+  'tab_root' => 'admin/config/people/accounts/fields/%',
+  'title' => 'Delete',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '10',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/people/accounts/fields/%/edit',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '125',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/config/people/accounts/fields/%',
+  'tab_root' => 'admin/config/people/accounts/fields/%',
+  'title' => 'Edit',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/people/accounts/fields/%/field-settings',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:28:"field_ui_field_settings_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '125',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/config/people/accounts/fields/%',
+  'tab_root' => 'admin/config/people/accounts/fields/%',
+  'title' => 'Field settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/people/accounts/fields/%/widget-type',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:25:"field_ui_widget_type_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '125',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/config/people/accounts/fields/%',
+  'tab_root' => 'admin/config/people/accounts/fields/%',
+  'title' => 'Widget type',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/people/accounts/settings',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:19:"user_admin_settings";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/people/accounts',
+  'tab_root' => 'admin/config/people/accounts',
+  'title' => 'Settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/user/user.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/people/ip-blocking',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"block IP addresses";}',
+  'page_callback' => 'system_ip_blocking',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/people/ip-blocking',
+  'title' => 'IP address blocking',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Manage blocked IP addresses.',
+  'position' => '',
+  'weight' => '10',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/people/ip-blocking/delete/%',
+  'load_functions' => 'a:1:{i:5;s:15:"blocked_ip_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"block IP addresses";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:25:"system_ip_blocking_delete";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '62',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/people/ip-blocking/delete/%',
+  'title' => 'Delete IP address',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/regional',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_menu_block_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/regional',
+  'title' => 'Regional and language',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Regional settings, localization and translation.',
+  'position' => 'left',
+  'weight' => '-5',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/regional/date-time',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:25:"system_date_time_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/regional/date-time',
+  'title' => 'Date and time',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Configure display formats for date and time.',
+  'position' => '',
+  'weight' => '-15',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/regional/date-time/formats',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'system_date_time_formats',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/regional/date-time',
+  'tab_root' => 'admin/config/regional/date-time',
+  'title' => 'Formats',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => 'Configure display format strings for date and time.',
+  'position' => '',
+  'weight' => '-9',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/regional/date-time/formats/%/delete',
+  'load_functions' => 'a:1:{i:5;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:30:"system_date_delete_format_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '125',
+  'number_parts' => '7',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/regional/date-time/formats/%/delete',
+  'title' => 'Delete date format',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Allow users to delete a configured date format.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/regional/date-time/formats/%/edit',
+  'load_functions' => 'a:1:{i:5;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:34:"system_configure_date_formats_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '125',
+  'number_parts' => '7',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/regional/date-time/formats/%/edit',
+  'title' => 'Edit date format',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Allow users to edit a configured date format.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/regional/date-time/formats/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:34:"system_configure_date_formats_form";}',
+  'delivery_callback' => '',
+  'fit' => '63',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/config/regional/date-time/formats',
+  'tab_root' => 'admin/config/regional/date-time',
+  'title' => 'Add format',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => 'Allow users to add additional date formats.',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/regional/date-time/formats/lookup',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'system_date_time_lookup',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '63',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/regional/date-time/formats/lookup',
+  'title' => 'Date and time lookup',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/regional/date-time/types',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:25:"system_date_time_settings";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/regional/date-time',
+  'tab_root' => 'admin/config/regional/date-time',
+  'title' => 'Types',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => 'Configure display formats for date and time.',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/regional/date-time/types/%/delete',
+  'load_functions' => 'a:1:{i:5;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:35:"system_delete_date_format_type_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '125',
+  'number_parts' => '7',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/regional/date-time/types/%/delete',
+  'title' => 'Delete date type',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Allow users to delete a configured date type.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/regional/date-time/types/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:32:"system_add_date_format_type_form";}',
+  'delivery_callback' => '',
+  'fit' => '63',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/config/regional/date-time/types',
+  'tab_root' => 'admin/config/regional/date-time',
+  'title' => 'Add date type',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => 'Add new date type.',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/regional/settings',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:24:"system_regional_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/regional/settings',
+  'title' => 'Regional settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => "Settings for the site's default time zone and country.",
+  'position' => '',
+  'weight' => '-20',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/search',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_menu_block_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/search',
+  'title' => 'Search and metadata',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Local site search, metadata and SEO.',
+  'position' => 'left',
+  'weight' => '-10',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/search/clean-urls',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:25:"system_clean_url_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/search/clean-urls',
+  'title' => 'Clean URLs',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Enable or disable clean URLs for your site.',
+  'position' => '',
+  'weight' => '5',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/search/clean-urls/check',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '1',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_json_output',
+  'page_arguments' => 'a:1:{i:0;a:1:{s:6:"status";b:1;}}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/search/clean-urls/check',
+  'title' => 'Clean URL check',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/search/path',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
+  'page_callback' => 'path_admin_overview',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/search/path',
+  'title' => 'URL aliases',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => "Change your site's URL paths by aliasing them.",
+  'position' => '',
+  'weight' => '-5',
+  'include_file' => 'modules/path/path.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/search/path/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
+  'page_callback' => 'path_admin_edit',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/search/path',
+  'tab_root' => 'admin/config/search/path',
+  'title' => 'Add alias',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/path/path.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/search/path/delete/%',
+  'load_functions' => 'a:1:{i:5;s:9:"path_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:25:"path_admin_delete_confirm";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '62',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/search/path/delete/%',
+  'title' => 'Delete alias',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/path/path.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/search/path/edit/%',
+  'load_functions' => 'a:1:{i:5;s:9:"path_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
+  'page_callback' => 'path_admin_edit',
+  'page_arguments' => 'a:1:{i:0;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '62',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/search/path/edit/%',
+  'title' => 'Edit alias',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/path/path.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/search/path/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
+  'page_callback' => 'path_admin_overview',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/search/path',
+  'tab_root' => 'admin/config/search/path',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/path/path.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/search/settings',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer search";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:21:"search_admin_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/search/settings',
+  'title' => 'Search settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Configure relevance settings for search and other indexing options.',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/search/search.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/search/settings/reindex',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer search";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:22:"search_reindex_confirm";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/search/settings/reindex',
+  'title' => 'Clear index',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/search/search.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/services',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_menu_block_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/services',
+  'title' => 'Web services',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Tools related to web services.',
+  'position' => 'right',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/services/rss-publishing',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:25:"system_rss_feeds_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/services/rss-publishing',
+  'title' => 'RSS publishing',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Configure the site description, the number of items per feed and whether feeds should be titles/teasers/full-text.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/system',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_menu_block_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/system',
+  'title' => 'System',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'General system related configuration.',
+  'position' => 'right',
+  'weight' => '-20',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/system/actions',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
+  'page_callback' => 'system_actions_manage',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/system/actions',
+  'title' => 'Actions',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Manage the actions defined for your site.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/system/actions/configure',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:24:"system_actions_configure";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/system/actions/configure',
+  'title' => 'Configure an advanced action',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/system/actions/delete/%',
+  'load_functions' => 'a:1:{i:5;s:12:"actions_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:26:"system_actions_delete_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '62',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/system/actions/delete/%',
+  'title' => 'Delete action',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Delete an action.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/system/actions/manage',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
+  'page_callback' => 'system_actions_manage',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/system/actions',
+  'tab_root' => 'admin/config/system/actions',
+  'title' => 'Manage actions',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => 'Manage the actions defined for your site.',
+  'position' => '',
+  'weight' => '-2',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/system/actions/orphan',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
+  'page_callback' => 'system_actions_remove_orphans',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/system/actions/orphan',
+  'title' => 'Remove orphans',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/system/cron',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:20:"system_cron_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/system/cron',
+  'title' => 'Cron',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Manage automatic site maintenance tasks.',
+  'position' => '',
+  'weight' => '20',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/system/site-information',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:32:"system_site_information_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/system/site-information',
+  'title' => 'Site information',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Change site name, e-mail address, slogan, default front page, and number of posts per page, error pages.',
+  'position' => '',
+  'weight' => '-20',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_menu_block_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/user-interface',
+  'title' => 'User interface',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Tools that enhance the user interface.',
+  'position' => 'right',
+  'weight' => '-15',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:20:"administer shortcuts";}',
+  'page_callback' => 'shortcut_set_admin',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/user-interface/shortcut',
+  'title' => 'Shortcuts',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Add and modify shortcut sets.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut/%',
+  'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'shortcut_set_edit_access',
+  'access_arguments' => 'a:1:{i:0;i:4;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:22:"shortcut_set_customize";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '30',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/user-interface/shortcut/%',
+  'title' => 'Edit shortcuts',
+  'title_callback' => 'shortcut_set_title',
+  'title_arguments' => 'a:1:{i:0;i:4;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut/%/add-link',
+  'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'shortcut_set_edit_access',
+  'access_arguments' => 'a:1:{i:0;i:4;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:17:"shortcut_link_add";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/config/user-interface/shortcut/%',
+  'tab_root' => 'admin/config/user-interface/shortcut/%',
+  'title' => 'Add shortcut',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut/%/add-link-inline',
+  'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'shortcut_set_edit_access',
+  'access_arguments' => 'a:1:{i:0;i:4;}',
+  'page_callback' => 'shortcut_link_add_inline',
+  'page_arguments' => 'a:1:{i:0;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/user-interface/shortcut/%/add-link-inline',
+  'title' => 'Add shortcut',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut/%/delete',
+  'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'shortcut_set_delete_access',
+  'access_arguments' => 'a:1:{i:0;i:4;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"shortcut_set_delete_form";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/user-interface/shortcut/%/delete',
+  'title' => 'Delete shortcut set',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut/%/edit',
+  'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'shortcut_set_edit_access',
+  'access_arguments' => 'a:1:{i:0;i:4;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:22:"shortcut_set_edit_form";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/config/user-interface/shortcut/%',
+  'tab_root' => 'admin/config/user-interface/shortcut/%',
+  'title' => 'Edit set name',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '10',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut/%/links',
+  'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'shortcut_set_edit_access',
+  'access_arguments' => 'a:1:{i:0;i:4;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:22:"shortcut_set_customize";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/config/user-interface/shortcut/%',
+  'tab_root' => 'admin/config/user-interface/shortcut/%',
+  'title' => 'List links',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut/add-set',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:20:"administer shortcuts";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:21:"shortcut_set_add_form";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/config/user-interface/shortcut',
+  'tab_root' => 'admin/config/user-interface/shortcut',
+  'title' => 'Add shortcut set',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut/link/%',
+  'load_functions' => 'a:1:{i:5;s:14:"menu_link_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'shortcut_link_access',
+  'access_arguments' => 'a:1:{i:0;i:5;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:18:"shortcut_link_edit";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '62',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/user-interface/shortcut/link/%',
+  'title' => 'Edit shortcut',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/user-interface/shortcut/link/%/delete',
+  'load_functions' => 'a:1:{i:5;s:14:"menu_link_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'shortcut_link_access',
+  'access_arguments' => 'a:1:{i:0;i:5;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:20:"shortcut_link_delete";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '125',
+  'number_parts' => '7',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/user-interface/shortcut/link/%/delete',
+  'title' => 'Delete shortcut',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'admin/config/workflow',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_menu_block_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/config/workflow',
+  'title' => 'Workflow',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Content workflow, editorial workflow tools.',
+  'position' => 'right',
+  'weight' => '5',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/content',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:23:"access content overview";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/content',
+  'title' => 'Content',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Administer content and comments.',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/node/node.admin.inc',
+))
+->values(array(
+  'path' => 'admin/content/comment',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
+  'page_callback' => 'comment_admin',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/content',
+  'tab_root' => 'admin/content',
+  'title' => 'Comments',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '134',
+  'description' => 'List and edit site comments and the comment approval queue.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/comment/comment.admin.inc',
+))
+->values(array(
+  'path' => 'admin/content/comment/approval',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
+  'page_callback' => 'comment_admin',
+  'page_arguments' => 'a:1:{i:0;s:8:"approval";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/content/comment',
+  'tab_root' => 'admin/content',
+  'title' => 'Unapproved comments',
+  'title_callback' => 'comment_count_unpublished',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/comment/comment.admin.inc',
+))
+->values(array(
+  'path' => 'admin/content/comment/new',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
+  'page_callback' => 'comment_admin',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/content/comment',
+  'tab_root' => 'admin/content',
+  'title' => 'Published comments',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/comment/comment.admin.inc',
+))
+->values(array(
+  'path' => 'admin/content/node',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:23:"access content overview";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/content',
+  'tab_root' => 'admin/content',
+  'title' => 'Content',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/node/node.admin.inc',
+))
+->values(array(
+  'path' => 'admin/dashboard',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"access dashboard";}',
+  'page_callback' => 'dashboard_admin',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/dashboard',
+  'title' => 'Dashboard',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'View and customize your dashboard.',
+  'position' => '',
+  'weight' => '-15',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'admin/dashboard/block-content/%/%',
+  'load_functions' => 'a:2:{i:3;N;i:4;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'dashboard_show_block_content',
+  'page_arguments' => 'a:2:{i:0;i:3;i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '28',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/dashboard/block-content/%/%',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'admin/dashboard/configure',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'dashboard_admin_blocks',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/dashboard/configure',
+  'title' => 'Configure available dashboard blocks',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => 'Configure which blocks can be shown on the dashboard.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'admin/dashboard/customize',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"access dashboard";}',
+  'page_callback' => 'dashboard_admin',
+  'page_arguments' => 'a:1:{i:0;b:1;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/dashboard/customize',
+  'title' => 'Customize dashboard',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => 'Customize your dashboard.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'admin/dashboard/drawer',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'dashboard_show_disabled',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/dashboard/drawer',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'admin/dashboard/update',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'dashboard_update',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/dashboard/update',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'admin/help',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_main',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help',
+  'title' => 'Help',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Reference for usage, configuration, and modules.',
+  'position' => '',
+  'weight' => '9',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/block',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/block',
+  'title' => 'block',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/color',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/color',
+  'title' => 'color',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/comment',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/comment',
+  'title' => 'comment',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/contextual',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/contextual',
+  'title' => 'contextual',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/dashboard',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/dashboard',
+  'title' => 'dashboard',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/dblog',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/dblog',
+  'title' => 'dblog',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/field',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/field',
+  'title' => 'field',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/field_sql_storage',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/field_sql_storage',
+  'title' => 'field_sql_storage',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/field_ui',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/field_ui',
+  'title' => 'field_ui',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/file',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/file',
+  'title' => 'file',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/filter',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/filter',
+  'title' => 'filter',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/help',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/help',
+  'title' => 'help',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/image',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/image',
+  'title' => 'image',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/list',
+  'title' => 'list',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/menu',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/menu',
+  'title' => 'menu',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/node',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/node',
+  'title' => 'node',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/number',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/number',
+  'title' => 'number',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/options',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/options',
+  'title' => 'options',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/overlay',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/overlay',
+  'title' => 'overlay',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/path',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/path',
+  'title' => 'path',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/rdf',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/rdf',
+  'title' => 'rdf',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/search',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/search',
+  'title' => 'search',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/shortcut',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/shortcut',
+  'title' => 'shortcut',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/system',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/system',
+  'title' => 'system',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/taxonomy',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/taxonomy',
+  'title' => 'taxonomy',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/text',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/text',
+  'title' => 'text',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/toolbar',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/toolbar',
+  'title' => 'toolbar',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/update',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/update',
+  'title' => 'update',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/help/user',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'help_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/help/user',
+  'title' => 'user',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/help/help.admin.inc',
+))
+->values(array(
+  'path' => 'admin/index',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_index',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '1',
+  'tab_parent' => 'admin',
+  'tab_root' => 'admin',
+  'title' => 'Index',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '-18',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/modules',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer modules";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/modules',
+  'title' => 'Modules',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Extend site functionality.',
+  'position' => '',
+  'weight' => '-2',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/modules/install',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'update_manager_access',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:27:"update_manager_install_form";i:1;s:6:"module";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/modules',
+  'tab_root' => 'admin/modules',
+  'title' => 'Install new module',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '25',
+  'include_file' => 'modules/update/update.manager.inc',
+))
+->values(array(
+  'path' => 'admin/modules/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer modules";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/modules',
+  'tab_root' => 'admin/modules',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/modules/list/confirm',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer modules";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/modules/list/confirm',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/modules/uninstall',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer modules";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:24:"system_modules_uninstall";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/modules',
+  'tab_root' => 'admin/modules',
+  'title' => 'Uninstall',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '20',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/modules/uninstall/confirm',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:18:"administer modules";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:24:"system_modules_uninstall";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/modules/uninstall/confirm',
+  'title' => 'Uninstall',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '4',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/modules/update',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'update_manager_access',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:26:"update_manager_update_form";i:1;s:6:"module";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/modules',
+  'tab_root' => 'admin/modules',
+  'title' => 'Update',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '10',
+  'include_file' => 'modules/update/update.manager.inc',
+))
+->values(array(
+  'path' => 'admin/people',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+  'page_callback' => 'user_admin',
+  'page_arguments' => 'a:1:{i:0;s:4:"list";}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/people',
+  'title' => 'People',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Manage user accounts, roles, and permissions.',
+  'position' => 'left',
+  'weight' => '-4',
+  'include_file' => 'modules/user/user.admin.inc',
+))
+->values(array(
+  'path' => 'admin/people/create',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+  'page_callback' => 'user_admin',
+  'page_arguments' => 'a:1:{i:0;s:6:"create";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/people',
+  'tab_root' => 'admin/people',
+  'title' => 'Add user',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/user/user.admin.inc',
+))
+->values(array(
+  'path' => 'admin/people/people',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+  'page_callback' => 'user_admin',
+  'page_arguments' => 'a:1:{i:0;s:4:"list";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/people',
+  'tab_root' => 'admin/people',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => 'Find and manage people interacting with your site.',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/user/user.admin.inc',
+))
+->values(array(
+  'path' => 'admin/people/permissions',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:22:"user_admin_permissions";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'admin/people',
+  'tab_root' => 'admin/people',
+  'title' => 'Permissions',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => 'Determine access to features by selecting permissions for roles.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/user/user.admin.inc',
+))
+->values(array(
+  'path' => 'admin/people/permissions/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:22:"user_admin_permissions";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/people/permissions',
+  'tab_root' => 'admin/people',
+  'title' => 'Permissions',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => 'Determine access to features by selecting permissions for roles.',
+  'position' => '',
+  'weight' => '-8',
+  'include_file' => 'modules/user/user.admin.inc',
+))
+->values(array(
+  'path' => 'admin/people/permissions/roles',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:16:"user_admin_roles";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/people/permissions',
+  'tab_root' => 'admin/people',
+  'title' => 'Roles',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => 'List, edit, or add user roles.',
+  'position' => '',
+  'weight' => '-5',
+  'include_file' => 'modules/user/user.admin.inc',
+))
+->values(array(
+  'path' => 'admin/people/permissions/roles/delete/%',
+  'load_functions' => 'a:1:{i:5;s:14:"user_role_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_role_edit_access',
+  'access_arguments' => 'a:1:{i:0;i:5;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:30:"user_admin_role_delete_confirm";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '62',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/people/permissions/roles/delete/%',
+  'title' => 'Delete role',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/user/user.admin.inc',
+))
+->values(array(
+  'path' => 'admin/people/permissions/roles/edit/%',
+  'load_functions' => 'a:1:{i:5;s:14:"user_role_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_role_edit_access',
+  'access_arguments' => 'a:1:{i:0;i:5;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:15:"user_admin_role";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '62',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/people/permissions/roles/edit/%',
+  'title' => 'Edit role',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/user/user.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
+  'page_callback' => 'system_admin_menu_block_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports',
+  'title' => 'Reports',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'View reports, updates, and errors.',
+  'position' => 'left',
+  'weight' => '5',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/access-denied',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
+  'page_callback' => 'dblog_top',
+  'page_arguments' => 'a:1:{i:0;s:13:"access denied";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/access-denied',
+  'title' => "Top 'access denied' errors",
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => "View 'access denied' errors (403s).",
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/dblog/dblog.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/dblog',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
+  'page_callback' => 'dblog_overview',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/dblog',
+  'title' => 'Recent log messages',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'View events that have recently been logged.',
+  'position' => '',
+  'weight' => '-1',
+  'include_file' => 'modules/dblog/dblog.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/event/%',
+  'load_functions' => 'a:1:{i:3;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
+  'page_callback' => 'dblog_event',
+  'page_arguments' => 'a:1:{i:0;i:3;}',
+  'delivery_callback' => '',
+  'fit' => '14',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/event/%',
+  'title' => 'Details',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/dblog/dblog.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/fields',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'field_ui_fields_list',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/fields',
+  'title' => 'Field list',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Overview of fields on all entity types.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/page-not-found',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
+  'page_callback' => 'dblog_top',
+  'page_arguments' => 'a:1:{i:0;s:14:"page not found";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/page-not-found',
+  'title' => "Top 'page not found' errors",
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => "View 'page not found' errors (404s).",
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/dblog/dblog.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/search',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
+  'page_callback' => 'dblog_top',
+  'page_arguments' => 'a:1:{i:0;s:6:"search";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/search',
+  'title' => 'Top search phrases',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'View most popular search phrases.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/dblog/dblog.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/status',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'system_status',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/status',
+  'title' => 'Status report',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => "Get a status report about your site's operation and any detected problems.",
+  'position' => '',
+  'weight' => '-60',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/status/php',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'system_php',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/status/php',
+  'title' => 'PHP',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/status/rebuild',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:30:"node_configure_rebuild_confirm";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/status/rebuild',
+  'title' => 'Rebuild permissions',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/node/node.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/status/run-cron',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'system_run_cron',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/status/run-cron',
+  'title' => 'Run cron',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/reports/updates',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'update_status',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/updates',
+  'title' => 'Available updates',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Get a status report about available updates for your installed modules and themes.',
+  'position' => '',
+  'weight' => '-50',
+  'include_file' => 'modules/update/update.report.inc',
+))
+->values(array(
+  'path' => 'admin/reports/updates/check',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'update_manual_status',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/reports/updates/check',
+  'title' => 'Manual update check',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/update/update.fetch.inc',
+))
+->values(array(
+  'path' => 'admin/reports/updates/install',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'update_manager_access',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:27:"update_manager_install_form";i:1;s:6:"report";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/reports/updates',
+  'tab_root' => 'admin/reports/updates',
+  'title' => 'Install new module or theme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '25',
+  'include_file' => 'modules/update/update.manager.inc',
+))
+->values(array(
+  'path' => 'admin/reports/updates/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'update_status',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/reports/updates',
+  'tab_root' => 'admin/reports/updates',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/update/update.report.inc',
+))
+->values(array(
+  'path' => 'admin/reports/updates/settings',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:15:"update_settings";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/reports/updates',
+  'tab_root' => 'admin/reports/updates',
+  'title' => 'Settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '50',
+  'include_file' => 'modules/update/update.settings.inc',
+))
+->values(array(
+  'path' => 'admin/reports/updates/update',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'update_manager_access',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:26:"update_manager_update_form";i:1;s:6:"report";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/reports/updates',
+  'tab_root' => 'admin/reports/updates',
+  'title' => 'Update',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '10',
+  'include_file' => 'modules/update/update.manager.inc',
+))
+->values(array(
+  'path' => 'admin/structure',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_menu_block_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure',
+  'title' => 'Structure',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Administer blocks, content types, menus, etc.',
+  'position' => 'right',
+  'weight' => '-8',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'block_admin_display',
+  'page_arguments' => 'a:1:{i:0;s:6:"bartik";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Blocks',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => "Configure what block content appears in your site's sidebars and other regions.",
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/block',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Add block',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/demo/bartik',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_block_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:25:"themes/bartik/bartik.info";s:4:"name";s:6:"bartik";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"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:6:"Bartik";s:11:"description";s:48:"A flexible, recolorable theme with many regions.";s:7:"package";s:4:"Core";s:7:"version";s:3:"7.8";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:"1314817616";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: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: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";}}',
+  'page_callback' => 'block_admin_demo',
+  'page_arguments' => 'a:1:{i:0;s:6:"bartik";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/block/demo/bartik',
+  'title' => 'Bartik',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '_block_custom_theme',
+  'theme_arguments' => 'a:1:{i:0;s:6:"bartik";}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/demo/garland',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_block_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:27:"themes/garland/garland.info";s:4:"name";s:7:"garland";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:18:{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:3:"7.8";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:"1314817616";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: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: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";}}',
+  'page_callback' => 'block_admin_demo',
+  'page_arguments' => 'a:1:{i:0;s:7:"garland";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/block/demo/garland',
+  'title' => 'Garland',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '_block_custom_theme',
+  'theme_arguments' => 'a:1:{i:0;s:7:"garland";}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/demo/seven',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_block_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:23:"themes/seven/seven.info";s:4:"name";s:5:"seven";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:18:{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:3:"7.8";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:"1314817616";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: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: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";}}',
+  'page_callback' => 'block_admin_demo',
+  'page_arguments' => 'a:1:{i:0;s:5:"seven";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/block/demo/seven',
+  'title' => 'Seven',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '_block_custom_theme',
+  'theme_arguments' => 'a:1:{i:0;s:5:"seven";}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/demo/stark',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_block_themes_access',
+  'access_arguments' => "a:1:{i:0;O:8:\"stdClass\":11:{s:8:\"filename\";s:23:\"themes/stark/stark.info\";s:4:\"name\";s:5:\"stark\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:17:{s:4:\"name\";s:5:\"Stark\";s:11:\"description\";s:208:\"This theme demonstrates Drupal's default HTML markup and CSS styles. To learn how to build your own theme and override Drupal's default code, see the <a href=\"http://drupal.org/theme-guide\">Theming Guide</a>.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:3:\"7.8\";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:\"1314817616\";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: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: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\";}}",
+  'page_callback' => 'block_admin_demo',
+  'page_arguments' => 'a:1:{i:0;s:5:"stark";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/block/demo/stark',
+  'title' => 'Stark',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '_block_custom_theme',
+  'theme_arguments' => 'a:1:{i:0;s:5:"stark";}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/demo/test_theme',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_block_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:39:"themes/tests/test_theme/test_theme.info";s:4:"name";s:10:"test_theme";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:17:{s:4:"name";s:10:"Test theme";s:11:"description";s:34:"Theme for testing the theme system";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:15:"system.base.css";s:39:"themes/tests/test_theme/system.base.css";}}s:7:"version";s:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";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:38:"themes/tests/test_theme/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}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:11:"stylesheets";a:1:{s:3:"all";a:1:{s:15:"system.base.css";s:39:"themes/tests/test_theme/system.base.css";}}s:6:"engine";s:11:"phptemplate";}}',
+  'page_callback' => 'block_admin_demo',
+  'page_arguments' => 'a:1:{i:0;s:10:"test_theme";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/block/demo/test_theme',
+  'title' => 'Test theme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '_block_custom_theme',
+  'theme_arguments' => 'a:1:{i:0;s:10:"test_theme";}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/demo/update_test_basetheme',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_block_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":10:{s:8:"filename";s:61:"themes/tests/update_test_basetheme/update_test_basetheme.info";s:4:"name";s:21:"update_test_basetheme";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:17:{s:4:"name";s:22:"Update test base theme";s:11:"description";s:63:"Test theme which acts as a base theme for other test subthemes.";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"version";s:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";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:49:"themes/tests/update_test_basetheme/screenshot.png";s:3:"php";s:5:"5.2.4";s:11:"stylesheets";a:0:{}s:7:"scripts";a:0:{}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:"engine";s:11:"phptemplate";}}',
+  'page_callback' => 'block_admin_demo',
+  'page_arguments' => 'a:1:{i:0;s:21:"update_test_basetheme";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/block/demo/update_test_basetheme',
+  'title' => 'Update test base theme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '_block_custom_theme',
+  'theme_arguments' => 'a:1:{i:0;s:21:"update_test_basetheme";}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/demo/update_test_subtheme',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_block_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:59:"themes/tests/update_test_subtheme/update_test_subtheme.info";s:4:"name";s:20:"update_test_subtheme";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:18:{s:4:"name";s:20:"Update test subtheme";s:11:"description";s:62:"Test theme which uses update_test_basetheme as the base theme.";s:4:"core";s:3:"7.x";s:10:"base theme";s:21:"update_test_basetheme";s:6:"hidden";b:1;s:7:"version";s:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";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:48:"themes/tests/update_test_subtheme/screenshot.png";s:3:"php";s:5:"5.2.4";s:11:"stylesheets";a:0:{}s:7:"scripts";a:0:{}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:"engine";s:11:"phptemplate";s:10:"base_theme";s:21:"update_test_basetheme";}}',
+  'page_callback' => 'block_admin_demo',
+  'page_arguments' => 'a:1:{i:0;s:20:"update_test_subtheme";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/block/demo/update_test_subtheme',
+  'title' => 'Update test subtheme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '_block_custom_theme',
+  'theme_arguments' => 'a:1:{i:0;s:20:"update_test_subtheme";}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/list/bartik',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_block_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:25:"themes/bartik/bartik.info";s:4:"name";s:6:"bartik";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"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:6:"Bartik";s:11:"description";s:48:"A flexible, recolorable theme with many regions.";s:7:"package";s:4:"Core";s:7:"version";s:3:"7.8";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:"1314817616";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: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: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";}}',
+  'page_callback' => 'block_admin_display',
+  'page_arguments' => 'a:1:{i:0;s:6:"bartik";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/block',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Bartik',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/list/garland',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_block_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:27:"themes/garland/garland.info";s:4:"name";s:7:"garland";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:18:{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:3:"7.8";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:"1314817616";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: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: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";}}',
+  'page_callback' => 'block_admin_display',
+  'page_arguments' => 'a:1:{i:0;s:7:"garland";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/block',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Garland',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/list/garland/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}',
+  'delivery_callback' => '',
+  'fit' => '63',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/block/list/garland',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Add block',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/list/seven',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_block_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:23:"themes/seven/seven.info";s:4:"name";s:5:"seven";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:18:{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:3:"7.8";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:"1314817616";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: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: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";}}',
+  'page_callback' => 'block_admin_display',
+  'page_arguments' => 'a:1:{i:0;s:5:"seven";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/block',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Seven',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/list/seven/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}',
+  'delivery_callback' => '',
+  'fit' => '63',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/block/list/seven',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Add block',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/list/stark',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_block_themes_access',
+  'access_arguments' => "a:1:{i:0;O:8:\"stdClass\":11:{s:8:\"filename\";s:23:\"themes/stark/stark.info\";s:4:\"name\";s:5:\"stark\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:17:{s:4:\"name\";s:5:\"Stark\";s:11:\"description\";s:208:\"This theme demonstrates Drupal's default HTML markup and CSS styles. To learn how to build your own theme and override Drupal's default code, see the <a href=\"http://drupal.org/theme-guide\">Theming Guide</a>.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:3:\"7.8\";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:\"1314817616\";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: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: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\";}}",
+  'page_callback' => 'block_admin_display',
+  'page_arguments' => 'a:1:{i:0;s:5:"stark";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/block',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Stark',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/list/stark/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}',
+  'delivery_callback' => '',
+  'fit' => '63',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/block/list/stark',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Add block',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/list/test_theme',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_block_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:39:"themes/tests/test_theme/test_theme.info";s:4:"name";s:10:"test_theme";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:17:{s:4:"name";s:10:"Test theme";s:11:"description";s:34:"Theme for testing the theme system";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:15:"system.base.css";s:39:"themes/tests/test_theme/system.base.css";}}s:7:"version";s:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";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:38:"themes/tests/test_theme/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}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:11:"stylesheets";a:1:{s:3:"all";a:1:{s:15:"system.base.css";s:39:"themes/tests/test_theme/system.base.css";}}s:6:"engine";s:11:"phptemplate";}}',
+  'page_callback' => 'block_admin_display',
+  'page_arguments' => 'a:1:{i:0;s:10:"test_theme";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/block',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Test theme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/list/test_theme/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}',
+  'delivery_callback' => '',
+  'fit' => '63',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/block/list/test_theme',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Add block',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/list/update_test_basetheme',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_block_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":10:{s:8:"filename";s:61:"themes/tests/update_test_basetheme/update_test_basetheme.info";s:4:"name";s:21:"update_test_basetheme";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:17:{s:4:"name";s:22:"Update test base theme";s:11:"description";s:63:"Test theme which acts as a base theme for other test subthemes.";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"version";s:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";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:49:"themes/tests/update_test_basetheme/screenshot.png";s:3:"php";s:5:"5.2.4";s:11:"stylesheets";a:0:{}s:7:"scripts";a:0:{}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:"engine";s:11:"phptemplate";}}',
+  'page_callback' => 'block_admin_display',
+  'page_arguments' => 'a:1:{i:0;s:21:"update_test_basetheme";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/block',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Update test base theme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/list/update_test_basetheme/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}',
+  'delivery_callback' => '',
+  'fit' => '63',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/block/list/update_test_basetheme',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Add block',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/list/update_test_subtheme',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_block_themes_access',
+  'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:59:"themes/tests/update_test_subtheme/update_test_subtheme.info";s:4:"name";s:20:"update_test_subtheme";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:18:{s:4:"name";s:20:"Update test subtheme";s:11:"description";s:62:"Test theme which uses update_test_basetheme as the base theme.";s:4:"core";s:3:"7.x";s:10:"base theme";s:21:"update_test_basetheme";s:6:"hidden";b:1;s:7:"version";s:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";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:48:"themes/tests/update_test_subtheme/screenshot.png";s:3:"php";s:5:"5.2.4";s:11:"stylesheets";a:0:{}s:7:"scripts";a:0:{}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:"engine";s:11:"phptemplate";s:10:"base_theme";s:21:"update_test_basetheme";}}',
+  'page_callback' => 'block_admin_display',
+  'page_arguments' => 'a:1:{i:0;s:20:"update_test_subtheme";}',
+  'delivery_callback' => '',
+  'fit' => '31',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/block',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Update test subtheme',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/list/update_test_subtheme/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}',
+  'delivery_callback' => '',
+  'fit' => '63',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/block/list/update_test_subtheme',
+  'tab_root' => 'admin/structure/block',
+  'title' => 'Add block',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/manage/%/%',
+  'load_functions' => 'a:2:{i:4;N;i:5;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:3:{i:0;s:21:"block_admin_configure";i:1;i:4;i:2;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '60',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/block/manage/%/%',
+  'title' => 'Configure block',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/manage/%/%/configure',
+  'load_functions' => 'a:2:{i:4;N;i:5;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:3:{i:0;s:21:"block_admin_configure";i:1;i:4;i:2;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '121',
+  'number_parts' => '7',
+  'context' => '2',
+  'tab_parent' => 'admin/structure/block/manage/%/%',
+  'tab_root' => 'admin/structure/block/manage/%/%',
+  'title' => 'Configure block',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/block/manage/%/%/delete',
+  'load_functions' => 'a:2:{i:4;N;i:5;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:3:{i:0;s:25:"block_custom_block_delete";i:1;i:4;i:2;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '121',
+  'number_parts' => '7',
+  'context' => '0',
+  'tab_parent' => 'admin/structure/block/manage/%/%',
+  'tab_root' => 'admin/structure/block/manage/%/%',
+  'title' => 'Delete block',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/block/block.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/menu',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+  'page_callback' => 'menu_overview_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/menu',
+  'title' => 'Menus',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Add new menus to your site, edit existing menus, and rename and reorganize menu links.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/menu/menu.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/menu/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:14:"menu_edit_menu";i:1;s:3:"add";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/menu',
+  'tab_root' => 'admin/structure/menu',
+  'title' => 'Add menu',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/menu/menu.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/menu/item/%/delete',
+  'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+  'page_callback' => 'menu_item_delete_page',
+  'page_arguments' => 'a:1:{i:0;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/menu/item/%/delete',
+  'title' => 'Delete menu link',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/menu/menu.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/menu/item/%/edit',
+  'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:4:{i:0;s:14:"menu_edit_item";i:1;s:4:"edit";i:2;i:4;i:3;N;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/menu/item/%/edit',
+  'title' => 'Edit menu link',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/menu/menu.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/menu/item/%/reset',
+  'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:23:"menu_reset_item_confirm";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/menu/item/%/reset',
+  'title' => 'Reset menu link',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/menu/menu.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/menu/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+  'page_callback' => 'menu_overview_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/menu',
+  'tab_root' => 'admin/structure/menu',
+  'title' => 'List menus',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/menu/menu.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/menu/manage/%',
+  'load_functions' => 'a:1:{i:4;s:9:"menu_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:18:"menu_overview_form";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '30',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/menu/manage/%',
+  'title' => 'Customize menu',
+  'title_callback' => 'menu_overview_title',
+  'title_arguments' => 'a:1:{i:0;i:4;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/menu/menu.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/menu/manage/%/add',
+  'load_functions' => 'a:1:{i:4;s:9:"menu_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:4:{i:0;s:14:"menu_edit_item";i:1;s:3:"add";i:2;N;i:3;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/menu/manage/%',
+  'tab_root' => 'admin/structure/menu/manage/%',
+  'title' => 'Add link',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/menu/menu.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/menu/manage/%/delete',
+  'load_functions' => 'a:1:{i:4;s:9:"menu_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+  'page_callback' => 'menu_delete_menu_page',
+  'page_arguments' => 'a:1:{i:0;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/menu/manage/%/delete',
+  'title' => 'Delete menu',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/menu/menu.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/menu/manage/%/edit',
+  'load_functions' => 'a:1:{i:4;s:9:"menu_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:3:{i:0;s:14:"menu_edit_menu";i:1;s:4:"edit";i:2;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '3',
+  'tab_parent' => 'admin/structure/menu/manage/%',
+  'tab_root' => 'admin/structure/menu/manage/%',
+  'title' => 'Edit menu',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/menu/menu.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/menu/manage/%/list',
+  'load_functions' => 'a:1:{i:4;s:9:"menu_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:18:"menu_overview_form";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '3',
+  'tab_parent' => 'admin/structure/menu/manage/%',
+  'tab_root' => 'admin/structure/menu/manage/%',
+  'title' => 'List links',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/menu/menu.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/menu/parents',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;b:1;}',
+  'page_callback' => 'menu_parent_options_js',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/menu/parents',
+  'title' => 'Parent menu items',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'admin/structure/menu/settings',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:14:"menu_configure";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/menu',
+  'tab_root' => 'admin/structure/menu',
+  'title' => 'Settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '5',
+  'include_file' => 'modules/menu/menu.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:30:"taxonomy_overview_vocabularies";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/taxonomy',
+  'title' => 'Taxonomy',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Manage tagging, categorization, and classification of your content.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/taxonomy/taxonomy.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/%',
+  'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:23:"taxonomy_overview_terms";i:1;i:3;}',
+  'delivery_callback' => '',
+  'fit' => '14',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/taxonomy/%',
+  'title' => '',
+  'title_callback' => 'taxonomy_admin_vocabulary_title_callback',
+  'title_arguments' => 'a:1:{i:0;i:3;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/taxonomy/taxonomy.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/%/add',
+  'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:3:{i:0;s:18:"taxonomy_form_term";i:1;a:0:{}i:2;i:3;}',
+  'delivery_callback' => '',
+  'fit' => '29',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/taxonomy/%',
+  'tab_root' => 'admin/structure/taxonomy/%',
+  'title' => 'Add term',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/taxonomy/taxonomy.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/%/display',
+  'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '29',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/taxonomy/%',
+  'tab_root' => 'admin/structure/taxonomy/%',
+  'title' => 'Manage display',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '2',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/%/display/default',
+  'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_field_ui_view_mode_menu_access',
+  'access_arguments' => '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";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '59',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/taxonomy/%/display',
+  'tab_root' => 'admin/structure/taxonomy/%',
+  'title' => 'Default',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/%/display/full',
+  'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_field_ui_view_mode_menu_access',
+  'access_arguments' => '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";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '59',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/taxonomy/%/display',
+  'tab_root' => 'admin/structure/taxonomy/%',
+  'title' => 'Taxonomy term page',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/%/edit',
+  'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"taxonomy_form_vocabulary";i:1;i:3;}',
+  'delivery_callback' => '',
+  'fit' => '29',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/taxonomy/%',
+  'tab_root' => 'admin/structure/taxonomy/%',
+  'title' => 'Edit',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/taxonomy/taxonomy.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/%/fields',
+  'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:3:{i:0;s:28:"field_ui_field_overview_form";i:1;s:13:"taxonomy_term";i:2;i:3;}',
+  'delivery_callback' => '',
+  'fit' => '29',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/taxonomy/%',
+  'tab_root' => 'admin/structure/taxonomy/%',
+  'title' => 'Manage fields',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '1',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/%/fields/%',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '58',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/taxonomy/%/fields/%',
+  'title' => '',
+  'title_callback' => 'field_ui_menu_title',
+  'title_arguments' => 'a:1:{i:0;i:5;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/%/fields/%/delete',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:26:"field_ui_field_delete_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '117',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/taxonomy/%/fields/%',
+  'tab_root' => 'admin/structure/taxonomy/%/fields/%',
+  'title' => 'Delete',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '10',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/%/fields/%/edit',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '117',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/taxonomy/%/fields/%',
+  'tab_root' => 'admin/structure/taxonomy/%/fields/%',
+  'title' => 'Edit',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/%/fields/%/field-settings',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:28:"field_ui_field_settings_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '117',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/taxonomy/%/fields/%',
+  'tab_root' => 'admin/structure/taxonomy/%/fields/%',
+  'title' => 'Field settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/%/fields/%/widget-type',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:25:"field_ui_widget_type_form";i:1;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '117',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/taxonomy/%/fields/%',
+  'tab_root' => 'admin/structure/taxonomy/%/fields/%',
+  'title' => 'Widget type',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/%/list',
+  'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:23:"taxonomy_overview_terms";i:1;i:3;}',
+  'delivery_callback' => '',
+  'fit' => '29',
+  'number_parts' => '5',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/taxonomy/%',
+  'tab_root' => 'admin/structure/taxonomy/%',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-20',
+  'include_file' => 'modules/taxonomy/taxonomy.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:24:"taxonomy_form_vocabulary";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/taxonomy',
+  'tab_root' => 'admin/structure/taxonomy',
+  'title' => 'Add vocabulary',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/taxonomy/taxonomy.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/taxonomy/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:30:"taxonomy_overview_vocabularies";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/taxonomy',
+  'tab_root' => 'admin/structure/taxonomy',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/taxonomy/taxonomy.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'node_overview_types',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/types',
+  'title' => 'Content types',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Manage content types, including default status, front page promotion, comment settings, etc.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/node/content_types.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:14:"node_type_form";}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types',
+  'tab_root' => 'admin/structure/types',
+  'title' => 'Add content type',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '388',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/node/content_types.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/list',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'node_overview_types',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '15',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types',
+  'tab_root' => 'admin/structure/types',
+  'title' => 'List',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/node/content_types.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%',
+  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '30',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'Edit content type',
+  'title_callback' => 'node_type_page_title',
+  'title_arguments' => 'a:1:{i:0;i:4;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/node/content_types.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/comment/display',
+  'load_functions' => 'a:1:{i:4;s:22:"comment_node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '123',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'Comment display',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '4',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/comment/display/default',
+  'load_functions' => 'a:1:{i:4;s:22:"comment_node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_field_ui_view_mode_menu_access',
+  'access_arguments' => '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";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '247',
+  'number_parts' => '8',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/comment/display',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'Default',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/comment/display/full',
+  'load_functions' => 'a:1:{i:4;s:22:"comment_node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_field_ui_view_mode_menu_access',
+  'access_arguments' => '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";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '247',
+  'number_parts' => '8',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/comment/display',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'Full comment',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/comment/fields',
+  'load_functions' => 'a:1:{i:4;s:22:"comment_node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:3:{i:0;s:28:"field_ui_field_overview_form";i:1;s:7:"comment";i:2;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '123',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'Comment fields',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '3',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/comment/fields/%',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:7;}',
+  'delivery_callback' => '',
+  'fit' => '246',
+  'number_parts' => '8',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/types/manage/%/comment/fields/%',
+  'title' => '',
+  'title_callback' => 'field_ui_menu_title',
+  'title_arguments' => 'a:1:{i:0;i:7;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/comment/fields/%/delete',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:26:"field_ui_field_delete_form";i:1;i:7;}',
+  'delivery_callback' => '',
+  'fit' => '493',
+  'number_parts' => '9',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/comment/fields/%',
+  'tab_root' => 'admin/structure/types/manage/%/comment/fields/%',
+  'title' => 'Delete',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '10',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/comment/fields/%/edit',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:7;}',
+  'delivery_callback' => '',
+  'fit' => '493',
+  'number_parts' => '9',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/comment/fields/%',
+  'tab_root' => 'admin/structure/types/manage/%/comment/fields/%',
+  'title' => 'Edit',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/comment/fields/%/field-settings',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:28:"field_ui_field_settings_form";i:1;i:7;}',
+  'delivery_callback' => '',
+  'fit' => '493',
+  'number_parts' => '9',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/comment/fields/%',
+  'tab_root' => 'admin/structure/types/manage/%/comment/fields/%',
+  'title' => 'Field settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/comment/fields/%/widget-type',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:25:"field_ui_widget_type_form";i:1;i:7;}',
+  'delivery_callback' => '',
+  'fit' => '493',
+  'number_parts' => '9',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/comment/fields/%',
+  'tab_root' => 'admin/structure/types/manage/%/comment/fields/%',
+  'title' => 'Widget type',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/delete',
+  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"node_type_delete_confirm";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/types/manage/%/delete',
+  'title' => 'Delete',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/node/content_types.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/display',
+  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'Manage display',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '2',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/display/default',
+  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_field_ui_view_mode_menu_access',
+  'access_arguments' => '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";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '123',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/display',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'Default',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/display/full',
+  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_field_ui_view_mode_menu_access',
+  'access_arguments' => '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";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '123',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/display',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'Full content',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/display/rss',
+  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_field_ui_view_mode_menu_access',
+  'access_arguments' => '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";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '123',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/display',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'RSS',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '2',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/display/search_index',
+  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_field_ui_view_mode_menu_access',
+  'access_arguments' => '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";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '123',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/display',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'Search index',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '3',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/display/search_result',
+  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_field_ui_view_mode_menu_access',
+  'access_arguments' => '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";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '123',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/display',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'Search result',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '4',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/display/teaser',
+  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_field_ui_view_mode_menu_access',
+  'access_arguments' => '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";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => '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";}',
+  'delivery_callback' => '',
+  'fit' => '123',
+  'number_parts' => '7',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/display',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'Teaser',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '1',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/edit',
+  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'Edit',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/node/content_types.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/fields',
+  'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:3:{i:0;s:28:"field_ui_field_overview_form";i:1;s:4:"node";i:2;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '61',
+  'number_parts' => '6',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%',
+  'tab_root' => 'admin/structure/types/manage/%',
+  'title' => 'Manage fields',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '1',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/fields/%',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:6;}',
+  'delivery_callback' => '',
+  'fit' => '122',
+  'number_parts' => '7',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/structure/types/manage/%/fields/%',
+  'title' => '',
+  'title_callback' => 'field_ui_menu_title',
+  'title_arguments' => 'a:1:{i:0;i:6;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/fields/%/delete',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:26:"field_ui_field_delete_form";i:1;i:6;}',
+  'delivery_callback' => '',
+  'fit' => '245',
+  'number_parts' => '8',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/fields/%',
+  'tab_root' => 'admin/structure/types/manage/%/fields/%',
+  'title' => 'Delete',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '10',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/fields/%/edit',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:6;}',
+  'delivery_callback' => '',
+  'fit' => '245',
+  'number_parts' => '8',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/fields/%',
+  'tab_root' => 'admin/structure/types/manage/%/fields/%',
+  'title' => 'Edit',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/fields/%/field-settings',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:28:"field_ui_field_settings_form";i:1;i:6;}',
+  'delivery_callback' => '',
+  'fit' => '245',
+  'number_parts' => '8',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/fields/%',
+  'tab_root' => 'admin/structure/types/manage/%/fields/%',
+  'title' => 'Field settings',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/structure/types/manage/%/fields/%/widget-type',
+  'load_functions' => '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";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:25:"field_ui_widget_type_form";i:1;i:6;}',
+  'delivery_callback' => '',
+  'fit' => '245',
+  'number_parts' => '8',
+  'context' => '1',
+  'tab_parent' => 'admin/structure/types/manage/%/fields/%',
+  'tab_root' => 'admin/structure/types/manage/%/fields/%',
+  'title' => 'Widget type',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/field_ui/field_ui.admin.inc',
+))
+->values(array(
+  'path' => 'admin/tasks',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+  'page_callback' => 'system_admin_menu_block_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '1',
+  'tab_parent' => 'admin',
+  'tab_root' => 'admin',
+  'title' => 'Tasks',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-20',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'admin/update/ready',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'update_manager_access',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:32:"update_manager_update_ready_form";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'admin/update/ready',
+  'title' => 'Ready to update',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/update/update.manager.inc',
+))
+->values(array(
+  'path' => 'batch',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '1',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'system_batch_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '1',
+  'number_parts' => '1',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'batch',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '_system_batch_theme',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'comment/%',
+  'load_functions' => 'a:1:{i:1;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:15:"access comments";}',
+  'page_callback' => 'comment_permalink',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '2',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'comment/%',
+  'title' => 'Comment permalink',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'comment/%/approve',
+  'load_functions' => 'a:1:{i:1;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
+  'page_callback' => 'comment_approve',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'comment/%/approve',
+  'title' => 'Approve',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '1',
+  'include_file' => 'modules/comment/comment.pages.inc',
+))
+->values(array(
+  'path' => 'comment/%/delete',
+  'load_functions' => 'a:1:{i:1;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
+  'page_callback' => 'comment_confirm_delete_page',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'comment/%',
+  'tab_root' => 'comment/%',
+  'title' => 'Delete',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '2',
+  'include_file' => 'modules/comment/comment.admin.inc',
+))
+->values(array(
+  'path' => 'comment/%/edit',
+  'load_functions' => 'a:1:{i:1;s:12:"comment_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'comment_access',
+  'access_arguments' => 'a:2:{i:0;s:4:"edit";i:1;i:1;}',
+  'page_callback' => 'comment_edit_page',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'comment/%',
+  'tab_root' => 'comment/%',
+  'title' => 'Edit',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'comment/%/view',
+  'load_functions' => 'a:1:{i:1;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:15:"access comments";}',
+  'page_callback' => 'comment_permalink',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'comment/%',
+  'tab_root' => 'comment/%',
+  'title' => 'View comment',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'comment/reply/%',
+  'load_functions' => 'a:1:{i:2;s:9:"node_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'node_access',
+  'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:2;}',
+  'page_callback' => 'comment_reply',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '6',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'comment/reply/%',
+  'title' => 'Add new comment',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/comment/comment.pages.inc',
+))
+->values(array(
+  'path' => 'file/ajax',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'file_ajax_upload',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => 'ajax_deliver',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'file/ajax',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => 'ajax_base_page_theme',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'file/progress',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'file_ajax_progress',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => 'ajax_deliver',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'file/progress',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => 'ajax_base_page_theme',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'filter/tips',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '1',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'filter_tips_long',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'filter/tips',
+  'title' => 'Compose tips',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '20',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/filter/filter.pages.inc',
+))
+->values(array(
+  'path' => 'node',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'node_page_default',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '1',
+  'number_parts' => '1',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'node',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'node/%',
+  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'node_access',
+  'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}',
+  'page_callback' => 'node_page_view',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '2',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'node/%',
+  'title' => '',
+  'title_callback' => 'node_page_title',
+  'title_arguments' => 'a:1:{i:0;i:1;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'node/%/delete',
+  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'node_access',
+  'access_arguments' => 'a:2:{i:0;s:6:"delete";i:1;i:1;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:19:"node_delete_confirm";i:1;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '2',
+  'tab_parent' => 'node/%',
+  'tab_root' => 'node/%',
+  'title' => 'Delete',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '1',
+  'include_file' => 'modules/node/node.pages.inc',
+))
+->values(array(
+  'path' => 'node/%/edit',
+  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'node_access',
+  'access_arguments' => 'a:2:{i:0;s:6:"update";i:1;i:1;}',
+  'page_callback' => 'node_page_edit',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '3',
+  'tab_parent' => 'node/%',
+  'tab_root' => 'node/%',
+  'title' => 'Edit',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/node/node.pages.inc',
+))
+->values(array(
+  'path' => 'node/%/revisions',
+  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '_node_revision_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'node_revision_overview',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'node/%',
+  'tab_root' => 'node/%',
+  'title' => 'Revisions',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '2',
+  'include_file' => 'modules/node/node.pages.inc',
+))
+->values(array(
+  'path' => 'node/%/revisions/%/delete',
+  'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => '_node_revision_access',
+  'access_arguments' => 'a:2:{i:0;i:1;i:1;s:6:"delete";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:28:"node_revision_delete_confirm";i:1;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '21',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'node/%/revisions/%/delete',
+  'title' => 'Delete earlier revision',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/node/node.pages.inc',
+))
+->values(array(
+  'path' => 'node/%/revisions/%/revert',
+  'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => '_node_revision_access',
+  'access_arguments' => 'a:2:{i:0;i:1;i:1;s:6:"update";}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:28:"node_revision_revert_confirm";i:1;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '21',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'node/%/revisions/%/revert',
+  'title' => 'Revert to earlier revision',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/node/node.pages.inc',
+))
+->values(array(
+  'path' => 'node/%/revisions/%/view',
+  'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => '_node_revision_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'node_show',
+  'page_arguments' => 'a:2:{i:0;i:1;i:1;b:1;}',
+  'delivery_callback' => '',
+  'fit' => '21',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'node/%/revisions/%/view',
+  'title' => 'Revisions',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'node/%/view',
+  'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'node_access',
+  'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}',
+  'page_callback' => 'node_page_view',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'node/%',
+  'tab_root' => 'node/%',
+  'title' => 'View',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'node/add',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_node_add_access',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'node_add_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'node/add',
+  'title' => 'Add content',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/node/node.pages.inc',
+))
+->values(array(
+  'path' => 'node/add/article',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'node_access',
+  'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:7:"article";}',
+  'page_callback' => 'node_add',
+  'page_arguments' => 'a:1:{i:0;s:7:"article";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'node/add/article',
+  'title' => 'Article',
+  'title_callback' => 'check_plain',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => 'Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/node/node.pages.inc',
+))
+->values(array(
+  'path' => 'node/add/page',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'node_access',
+  'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:4:"page";}',
+  'page_callback' => 'node_add',
+  'page_arguments' => 'a:1:{i:0;s:4:"page";}',
+  'delivery_callback' => '',
+  'fit' => '7',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'node/add/page',
+  'title' => 'Basic page',
+  'title_callback' => 'check_plain',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => "Use <em>basic pages</em> for your static content, such as an 'About us' page.",
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/node/node.pages.inc',
+))
+->values(array(
+  'path' => 'overlay-ajax/%',
+  'load_functions' => 'a:1:{i:1;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access overlay";}',
+  'page_callback' => 'overlay_ajax_render_region',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '2',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'overlay-ajax/%',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'overlay/dismiss-message',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access overlay";}',
+  'page_callback' => 'overlay_user_dismiss_message',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'overlay/dismiss-message',
+  'title' => '',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'rss.xml',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'node_feed',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '1',
+  'number_parts' => '1',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'rss.xml',
+  'title' => 'RSS feed',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'search',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'search_is_active',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'search_view',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '1',
+  'number_parts' => '1',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'search',
+  'title' => 'Search',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '20',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/search/search.pages.inc',
+))
+->values(array(
+  'path' => 'search/node',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_search_menu_access',
+  'access_arguments' => 'a:1:{i:0;s:4:"node";}',
+  'page_callback' => 'search_view',
+  'page_arguments' => 'a:2:{i:0;s:4:"node";i:1;s:0:"";}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '1',
+  'tab_parent' => 'search',
+  'tab_root' => 'search',
+  'title' => 'Content',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/search/search.pages.inc',
+))
+->values(array(
+  'path' => 'search/node/%',
+  'load_functions' => 'a:1:{i:2;a:1:{s:14:"menu_tail_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}',
+  'to_arg_functions' => 'a:1:{i:2;s:16:"menu_tail_to_arg";}',
+  'access_callback' => '_search_menu_access',
+  'access_arguments' => 'a:1:{i:0;s:4:"node";}',
+  'page_callback' => 'search_view',
+  'page_arguments' => 'a:2:{i:0;s:4:"node";i:1;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '6',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'search/node',
+  'tab_root' => 'search/node/%',
+  'title' => 'Content',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/search/search.pages.inc',
+))
+->values(array(
+  'path' => 'search/user',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '_search_menu_access',
+  'access_arguments' => 'a:1:{i:0;s:4:"user";}',
+  'page_callback' => 'search_view',
+  'page_arguments' => 'a:2:{i:0;s:4:"user";i:1;s:0:"";}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '1',
+  'tab_parent' => 'search',
+  'tab_root' => 'search',
+  'title' => 'Users',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/search/search.pages.inc',
+))
+->values(array(
+  'path' => 'search/user/%',
+  'load_functions' => 'a:1:{i:2;a:1:{s:14:"menu_tail_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}',
+  'to_arg_functions' => 'a:1:{i:2;s:16:"menu_tail_to_arg";}',
+  'access_callback' => '_search_menu_access',
+  'access_arguments' => 'a:1:{i:0;s:4:"user";}',
+  'page_callback' => 'search_view',
+  'page_arguments' => 'a:2:{i:0;s:4:"user";i:1;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '6',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'search/node',
+  'tab_root' => 'search/node/%',
+  'title' => 'Users',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/search/search.pages.inc',
+))
+->values(array(
+  'path' => 'sites/default/files/styles/%',
+  'load_functions' => 'a:1:{i:4;s:16:"image_style_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '1',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'image_style_deliver',
+  'page_arguments' => 'a:1:{i:0;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '30',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'sites/default/files/styles/%',
+  'title' => 'Generate image style',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'system/ajax',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '1',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'ajax_form_callback',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => 'ajax_deliver',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'system/ajax',
+  'title' => 'AHAH callback',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => 'ajax_base_page_theme',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'includes/form.inc',
+))
+->values(array(
+  'path' => 'system/files',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '1',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'file_download',
+  'page_arguments' => 'a:1:{i:0;s:7:"private";}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'system/files',
+  'title' => 'File download',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'system/files/styles/%',
+  'load_functions' => 'a:1:{i:3;s:16:"image_style_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => '1',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'image_style_deliver',
+  'page_arguments' => 'a:1:{i:0;i:3;}',
+  'delivery_callback' => '',
+  'fit' => '14',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'system/files/styles/%',
+  'title' => 'Generate image style',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'system/temporary',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '1',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'file_download',
+  'page_arguments' => 'a:1:{i:0;s:9:"temporary";}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'system/temporary',
+  'title' => 'Temporary files',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'system/timezone',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '1',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'system_timezone',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'system/timezone',
+  'title' => 'Time zone',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/system/system.admin.inc',
+))
+->values(array(
+  'path' => 'taxonomy/autocomplete',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'taxonomy_autocomplete',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'taxonomy/autocomplete',
+  'title' => 'Autocomplete taxonomy',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/taxonomy/taxonomy.pages.inc',
+))
+->values(array(
+  'path' => 'taxonomy/term/%',
+  'load_functions' => 'a:1:{i:2;s:18:"taxonomy_term_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'taxonomy_term_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '6',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'taxonomy/term/%',
+  'title' => 'Taxonomy term',
+  'title_callback' => 'taxonomy_term_title',
+  'title_arguments' => 'a:1:{i:0;i:2;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/taxonomy/taxonomy.pages.inc',
+))
+->values(array(
+  'path' => 'taxonomy/term/%/edit',
+  'load_functions' => 'a:1:{i:2;s:18:"taxonomy_term_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'taxonomy_term_edit_access',
+  'access_arguments' => 'a:1:{i:0;i:2;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:18:"taxonomy_form_term";i:1;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '13',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'taxonomy/term/%',
+  'tab_root' => 'taxonomy/term/%',
+  'title' => 'Edit',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '10',
+  'include_file' => 'modules/taxonomy/taxonomy.admin.inc',
+))
+->values(array(
+  'path' => 'taxonomy/term/%/feed',
+  'load_functions' => 'a:1:{i:2;s:18:"taxonomy_term_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'taxonomy_term_feed',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '13',
+  'number_parts' => '4',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'taxonomy/term/%/feed',
+  'title' => 'Taxonomy term',
+  'title_callback' => 'taxonomy_term_title',
+  'title_arguments' => 'a:1:{i:0;i:2;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/taxonomy/taxonomy.pages.inc',
+))
+->values(array(
+  'path' => 'taxonomy/term/%/view',
+  'load_functions' => 'a:1:{i:2;s:18:"taxonomy_term_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+  'page_callback' => 'taxonomy_term_page',
+  'page_arguments' => 'a:1:{i:0;i:2;}',
+  'delivery_callback' => '',
+  'fit' => '13',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'taxonomy/term/%',
+  'tab_root' => 'taxonomy/term/%',
+  'title' => 'View',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/taxonomy/taxonomy.pages.inc',
+))
+->values(array(
+  'path' => 'toolbar/toggle',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:14:"access toolbar";}',
+  'page_callback' => 'toolbar_toggle_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'toolbar/toggle',
+  'title' => 'Toggle drawer visibility',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'user',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '1',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'user_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '1',
+  'number_parts' => '1',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'user',
+  'title' => 'User account',
+  'title_callback' => 'user_menu_title',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => 'modules/user/user.pages.inc',
+))
+->values(array(
+  'path' => 'user/%',
+  'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_view_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'user_view_page',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '2',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'user/%',
+  'title' => 'My account',
+  'title_callback' => 'user_page_title',
+  'title_arguments' => 'a:1:{i:0;i:1;}',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'user/%/cancel',
+  'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_cancel_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:24:"user_cancel_confirm_form";i:1;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'user/%/cancel',
+  'title' => 'Cancel account',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/user/user.pages.inc',
+))
+->values(array(
+  'path' => 'user/%/cancel/confirm/%/%',
+  'load_functions' => 'a:3:{i:1;s:9:"user_load";i:4;N;i:5;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_cancel_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'user_cancel_confirm',
+  'page_arguments' => 'a:3:{i:0;i:1;i:1;i:4;i:2;i:5;}',
+  'delivery_callback' => '',
+  'fit' => '44',
+  'number_parts' => '6',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'user/%/cancel/confirm/%/%',
+  'title' => 'Confirm account cancellation',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/user/user.pages.inc',
+))
+->values(array(
+  'path' => 'user/%/edit',
+  'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_edit_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:17:"user_profile_form";i:1;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'user/%',
+  'tab_root' => 'user/%',
+  'title' => 'Edit',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/user/user.pages.inc',
+))
+->values(array(
+  'path' => 'user/%/edit/account',
+  'load_functions' => 'a:1:{i:1;a:1:{s:18:"user_category_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_edit_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:17:"user_profile_form";i:1;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '11',
+  'number_parts' => '4',
+  'context' => '1',
+  'tab_parent' => 'user/%/edit',
+  'tab_root' => 'user/%',
+  'title' => 'Account',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/user/user.pages.inc',
+))
+->values(array(
+  'path' => 'user/%/shortcuts',
+  'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'shortcut_set_switch_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:2:{i:0;s:19:"shortcut_set_switch";i:1;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'user/%',
+  'tab_root' => 'user/%',
+  'title' => 'Shortcuts',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/shortcut/shortcut.admin.inc',
+))
+->values(array(
+  'path' => 'user/%/view',
+  'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_view_access',
+  'access_arguments' => 'a:1:{i:0;i:1;}',
+  'page_callback' => 'user_view_page',
+  'page_arguments' => 'a:1:{i:0;i:1;}',
+  'delivery_callback' => '',
+  'fit' => '5',
+  'number_parts' => '3',
+  'context' => '1',
+  'tab_parent' => 'user/%',
+  'tab_root' => 'user/%',
+  'title' => 'View',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '-10',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'user/autocomplete',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_access',
+  'access_arguments' => 'a:1:{i:0;s:20:"access user profiles";}',
+  'page_callback' => 'user_autocomplete',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'user/autocomplete',
+  'title' => 'User autocomplete',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/user/user.pages.inc',
+))
+->values(array(
+  'path' => 'user/login',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_is_anonymous',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'user_page',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '1',
+  'tab_parent' => 'user',
+  'tab_root' => 'user',
+  'title' => 'Log in',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '140',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/user/user.pages.inc',
+))
+->values(array(
+  'path' => 'user/logout',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_is_logged_in',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'user_logout',
+  'page_arguments' => 'a:0:{}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'user/logout',
+  'title' => 'Log out',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '6',
+  'description' => '',
+  'position' => '',
+  'weight' => '10',
+  'include_file' => 'modules/user/user.pages.inc',
+))
+->values(array(
+  'path' => 'user/password',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => '1',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:9:"user_pass";}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '1',
+  'tab_parent' => 'user',
+  'tab_root' => 'user',
+  'title' => 'Request new password',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/user/user.pages.inc',
+))
+->values(array(
+  'path' => 'user/register',
+  'load_functions' => '',
+  'to_arg_functions' => '',
+  'access_callback' => 'user_register_access',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:1:{i:0;s:18:"user_register_form";}',
+  'delivery_callback' => '',
+  'fit' => '3',
+  'number_parts' => '2',
+  'context' => '1',
+  'tab_parent' => 'user',
+  'tab_root' => 'user',
+  'title' => 'Create new account',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '132',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => '',
+))
+->values(array(
+  'path' => 'user/reset/%/%/%',
+  'load_functions' => 'a:3:{i:2;N;i:3;N;i:4;N;}',
+  'to_arg_functions' => '',
+  'access_callback' => '1',
+  'access_arguments' => 'a:0:{}',
+  'page_callback' => 'drupal_get_form',
+  'page_arguments' => 'a:4:{i:0;s:15:"user_pass_reset";i:1;i:2;i:2;i:3;i:3;i:4;}',
+  'delivery_callback' => '',
+  'fit' => '24',
+  'number_parts' => '5',
+  'context' => '0',
+  'tab_parent' => '',
+  'tab_root' => 'user/reset/%/%/%',
+  'title' => 'Reset password',
+  'title_callback' => 't',
+  'title_arguments' => '',
+  'theme_callback' => '',
+  'theme_arguments' => 'a:0:{}',
+  'type' => '0',
+  'description' => '',
+  'position' => '',
+  'weight' => '0',
+  'include_file' => 'modules/user/user.pages.inc',
+))
+->execute();
+
+db_create_table('node', array(
+  'fields' => array(
+    'nid' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'vid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 12,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'title' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'uid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'status' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 1,
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'changed' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'comment' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'promote' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'sticky' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'tnid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'translate' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'node_changed' => array(
+      'changed',
+    ),
+    'node_created' => array(
+      'created',
+    ),
+    'node_frontpage' => array(
+      'promote',
+      'status',
+      'sticky',
+      'created',
+    ),
+    'node_status_type' => array(
+      'status',
+      'type',
+      'nid',
+    ),
+    'node_title_type' => array(
+      'title',
+      array(
+        'type',
+        4,
+      ),
+    ),
+    'node_type' => array(
+      array(
+        'type',
+        4,
+      ),
+    ),
+    'uid' => array(
+      'uid',
+    ),
+    'tnid' => array(
+      'tnid',
+    ),
+    'translate' => array(
+      'translate',
+    ),
+  ),
+  'unique keys' => array(
+    'vid' => array(
+      'vid',
+    ),
+  ),
+  'foreign keys' => array(
+    'node_revision' => array(
+      'table' => 'node_revision',
+      'columns' => array(
+        'vid' => 'vid',
+      ),
+    ),
+    'node_author' => array(
+      'table' => 'users',
+      'columns' => array(
+        'uid' => 'uid',
+      ),
+    ),
+  ),
+  'primary key' => array(
+    'nid',
+  ),
+  'module' => 'node',
+  'name' => 'node',
+));
+db_insert('node')->fields(array(
+  'nid',
+  'vid',
+  'type',
+  'language',
+  'title',
+  'uid',
+  'status',
+  'created',
+  'changed',
+  'comment',
+  'promote',
+  'sticky',
+  'tnid',
+  'translate',
+))
+->values(array(
+  'nid' => '1',
+  'vid' => '2',
+  'type' => 'page',
+  'language' => 'und',
+  'title' => 'node title 1 rev 1 (i=0) rev2 2',
+  'uid' => '3',
+  'status' => '0',
+  'created' => '1262764800',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '2',
+  'vid' => '4',
+  'type' => 'page',
+  'language' => 'und',
+  'title' => 'node title 2 rev 3 (i=1) rev2 4',
+  'uid' => '3',
+  'status' => '0',
+  'created' => '1262851200',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '3',
+  'vid' => '6',
+  'type' => 'page',
+  'language' => 'und',
+  'title' => 'node title 3 rev 5 (i=2) rev2 6',
+  'uid' => '3',
+  'status' => '0',
+  'created' => '1262937600',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '4',
+  'vid' => '8',
+  'type' => 'page',
+  'language' => 'und',
+  'title' => 'node title 4 rev 7 (i=3) rev2 8',
+  'uid' => '3',
+  'status' => '0',
+  'created' => '1263024000',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '5',
+  'vid' => '10',
+  'type' => 'page',
+  'language' => 'und',
+  'title' => 'node title 5 rev 9 (i=4) rev2 10',
+  'uid' => '3',
+  'status' => '1',
+  'created' => '1263110400',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '6',
+  'vid' => '12',
+  'type' => 'page',
+  'language' => 'und',
+  'title' => 'node title 6 rev 11 (i=5) rev2 12',
+  'uid' => '3',
+  'status' => '1',
+  'created' => '1263196800',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '7',
+  'vid' => '14',
+  'type' => 'page',
+  'language' => 'und',
+  'title' => 'node title 7 rev 13 (i=6) rev2 14',
+  'uid' => '3',
+  'status' => '1',
+  'created' => '1263283200',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '8',
+  'vid' => '16',
+  'type' => 'page',
+  'language' => 'und',
+  'title' => 'node title 8 rev 15 (i=7) rev2 16',
+  'uid' => '3',
+  'status' => '1',
+  'created' => '1263369600',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '9',
+  'vid' => '18',
+  'type' => 'page',
+  'language' => 'und',
+  'title' => 'node title 9 rev 17 (i=8) rev2 18',
+  'uid' => '4',
+  'status' => '0',
+  'created' => '1263456000',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '10',
+  'vid' => '20',
+  'type' => 'page',
+  'language' => 'und',
+  'title' => 'node title 10 rev 19 (i=9) rev2 20',
+  'uid' => '4',
+  'status' => '0',
+  'created' => '1263542400',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '11',
+  'vid' => '22',
+  'type' => 'page',
+  'language' => 'und',
+  'title' => 'node title 11 rev 21 (i=10) rev2 22',
+  'uid' => '4',
+  'status' => '0',
+  'created' => '1263628800',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '12',
+  'vid' => '24',
+  'type' => 'page',
+  'language' => 'und',
+  'title' => 'node title 12 rev 23 (i=11) rev2 24',
+  'uid' => '4',
+  'status' => '0',
+  'created' => '1263715200',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '13',
+  'vid' => '25',
+  'type' => 'story',
+  'language' => 'und',
+  'title' => 'node title 13 rev 25 (i=12)',
+  'uid' => '4',
+  'status' => '1',
+  'created' => '1263801600',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '14',
+  'vid' => '26',
+  'type' => 'story',
+  'language' => 'und',
+  'title' => 'node title 14 rev 26 (i=13)',
+  'uid' => '4',
+  'status' => '1',
+  'created' => '1263888000',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '15',
+  'vid' => '27',
+  'type' => 'story',
+  'language' => 'und',
+  'title' => 'node title 15 rev 27 (i=14)',
+  'uid' => '4',
+  'status' => '1',
+  'created' => '1263974400',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '16',
+  'vid' => '28',
+  'type' => 'story',
+  'language' => 'und',
+  'title' => 'node title 16 rev 28 (i=15)',
+  'uid' => '4',
+  'status' => '1',
+  'created' => '1264060800',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '17',
+  'vid' => '29',
+  'type' => 'story',
+  'language' => 'und',
+  'title' => 'node title 17 rev 29 (i=16)',
+  'uid' => '5',
+  'status' => '0',
+  'created' => '1264147200',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '18',
+  'vid' => '30',
+  'type' => 'story',
+  'language' => 'und',
+  'title' => 'node title 18 rev 30 (i=17)',
+  'uid' => '5',
+  'status' => '0',
+  'created' => '1264233600',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '19',
+  'vid' => '31',
+  'type' => 'story',
+  'language' => 'und',
+  'title' => 'node title 19 rev 31 (i=18)',
+  'uid' => '5',
+  'status' => '0',
+  'created' => '1264320000',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '20',
+  'vid' => '32',
+  'type' => 'story',
+  'language' => 'und',
+  'title' => 'node title 20 rev 32 (i=19)',
+  'uid' => '5',
+  'status' => '0',
+  'created' => '1264406400',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '21',
+  'vid' => '33',
+  'type' => 'story',
+  'language' => 'und',
+  'title' => 'node title 21 rev 33 (i=20)',
+  'uid' => '5',
+  'status' => '1',
+  'created' => '1264492800',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '22',
+  'vid' => '34',
+  'type' => 'story',
+  'language' => 'und',
+  'title' => 'node title 22 rev 34 (i=21)',
+  'uid' => '5',
+  'status' => '1',
+  'created' => '1264579200',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '23',
+  'vid' => '35',
+  'type' => 'story',
+  'language' => 'und',
+  'title' => 'node title 23 rev 35 (i=22)',
+  'uid' => '5',
+  'status' => '1',
+  'created' => '1264665600',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '24',
+  'vid' => '36',
+  'type' => 'story',
+  'language' => 'und',
+  'title' => 'node title 24 rev 36 (i=23)',
+  'uid' => '5',
+  'status' => '1',
+  'created' => '1264752000',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '25',
+  'vid' => '37',
+  'type' => 'poll',
+  'language' => 'und',
+  'title' => 'poll title 0',
+  'uid' => '3',
+  'status' => '0',
+  'created' => '1314997642',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '26',
+  'vid' => '38',
+  'type' => 'poll',
+  'language' => 'und',
+  'title' => 'poll title 1',
+  'uid' => '3',
+  'status' => '0',
+  'created' => '1315040842',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '27',
+  'vid' => '39',
+  'type' => 'poll',
+  'language' => 'und',
+  'title' => 'poll title 2',
+  'uid' => '3',
+  'status' => '1',
+  'created' => '1315084042',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '28',
+  'vid' => '40',
+  'type' => 'poll',
+  'language' => 'und',
+  'title' => 'poll title 3',
+  'uid' => '3',
+  'status' => '1',
+  'created' => '1315127242',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '29',
+  'vid' => '41',
+  'type' => 'poll',
+  'language' => 'und',
+  'title' => 'poll title 4',
+  'uid' => '4',
+  'status' => '0',
+  'created' => '1315170442',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '30',
+  'vid' => '42',
+  'type' => 'poll',
+  'language' => 'und',
+  'title' => 'poll title 5',
+  'uid' => '4',
+  'status' => '0',
+  'created' => '1315213642',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '31',
+  'vid' => '43',
+  'type' => 'poll',
+  'language' => 'und',
+  'title' => 'poll title 6',
+  'uid' => '4',
+  'status' => '1',
+  'created' => '1315256842',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '32',
+  'vid' => '44',
+  'type' => 'poll',
+  'language' => 'und',
+  'title' => 'poll title 7',
+  'uid' => '4',
+  'status' => '1',
+  'created' => '1315300042',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '33',
+  'vid' => '45',
+  'type' => 'poll',
+  'language' => 'und',
+  'title' => 'poll title 8',
+  'uid' => '5',
+  'status' => '0',
+  'created' => '1315343242',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '34',
+  'vid' => '46',
+  'type' => 'poll',
+  'language' => 'und',
+  'title' => 'poll title 9',
+  'uid' => '5',
+  'status' => '0',
+  'created' => '1315386442',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '35',
+  'vid' => '47',
+  'type' => 'poll',
+  'language' => 'und',
+  'title' => 'poll title 10',
+  'uid' => '5',
+  'status' => '1',
+  'created' => '1315429642',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '36',
+  'vid' => '48',
+  'type' => 'poll',
+  'language' => 'und',
+  'title' => 'poll title 11',
+  'uid' => '5',
+  'status' => '1',
+  'created' => '1315472842',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->values(array(
+  'nid' => '37',
+  'vid' => '49',
+  'type' => 'broken',
+  'language' => 'und',
+  'title' => 'node title 24',
+  'uid' => '6',
+  'status' => '1',
+  'created' => '1263769200',
+  'changed' => '1314997642',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+  'tnid' => '0',
+  'translate' => '0',
+))
+->execute();
+
+db_create_table('node_access', array(
+  'fields' => array(
+    'nid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'gid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'realm' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'grant_view' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'grant_update' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'grant_delete' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+  ),
+  'primary key' => array(
+    'nid',
+    'gid',
+    'realm',
+  ),
+  'foreign keys' => array(
+    'affected_node' => array(
+      'table' => 'node',
+      'columns' => array(
+        'nid' => 'nid',
+      ),
+    ),
+  ),
+  'module' => 'node',
+  'name' => 'node_access',
+));
+db_insert('node_access')->fields(array(
+  'nid',
+  'gid',
+  'realm',
+  'grant_view',
+  'grant_update',
+  'grant_delete',
+))
+->values(array(
+  'nid' => '0',
+  'gid' => '0',
+  'realm' => 'all',
+  'grant_view' => '1',
+  'grant_update' => '0',
+  'grant_delete' => '0',
+))
+->execute();
+
+db_create_table('node_comment_statistics', array(
+  'fields' => array(
+    'nid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'cid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'last_comment_timestamp' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'last_comment_name' => array(
+      'type' => 'varchar',
+      'length' => 60,
+      'not null' => FALSE,
+    ),
+    'last_comment_uid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'comment_count' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'primary key' => array(
+    'nid',
+  ),
+  'indexes' => array(
+    'node_comment_timestamp' => array(
+      'last_comment_timestamp',
+    ),
+    'comment_count' => array(
+      'comment_count',
+    ),
+    'last_comment_uid' => array(
+      'last_comment_uid',
+    ),
+  ),
+  'foreign keys' => array(
+    'statistics_node' => array(
+      'table' => 'node',
+      'columns' => array(
+        'nid' => 'nid',
+      ),
+    ),
+    'last_comment_author' => array(
+      'table' => 'users',
+      'columns' => array(
+        'last_comment_uid' => 'uid',
+      ),
+    ),
+  ),
+  'module' => 'comment',
+  'name' => 'node_comment_statistics',
+));
+db_insert('node_comment_statistics')->fields(array(
+  'nid',
+  'cid',
+  'last_comment_timestamp',
+  'last_comment_name',
+  'last_comment_uid',
+  'comment_count',
+))
+->values(array(
+  'nid' => '1',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '3',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '2',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '3',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '3',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '3',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '4',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '3',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '5',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '3',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '6',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '3',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '7',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '3',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '8',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '3',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '9',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '4',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '10',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '4',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '11',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '4',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '12',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '4',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '13',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '4',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '14',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '4',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '15',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '4',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '16',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '4',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '17',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '5',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '18',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '5',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '19',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '5',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '20',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '5',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '21',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '5',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '22',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '5',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '23',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '5',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '24',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '5',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '25',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '3',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '26',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '3',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '27',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '3',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '28',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '3',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '29',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '4',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '30',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '4',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '31',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '4',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '32',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '4',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '33',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '5',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '34',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '5',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '35',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '5',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '36',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '5',
+  'comment_count' => '0',
+))
+->values(array(
+  'nid' => '37',
+  'cid' => '0',
+  'last_comment_timestamp' => '1314997642',
+  'last_comment_name' => NULL,
+  'last_comment_uid' => '6',
+  'comment_count' => '0',
+))
+->execute();
+
+db_create_table('node_revision', array(
+  'fields' => array(
+    'nid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'vid' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'uid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'title' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'log' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+      'size' => 'big',
+    ),
+    'timestamp' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'status' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 1,
+    ),
+    'comment' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'promote' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'sticky' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'nid' => array(
+      'nid',
+    ),
+    'uid' => array(
+      'uid',
+    ),
+  ),
+  'primary key' => array(
+    'vid',
+  ),
+  'foreign keys' => array(
+    'versioned_node' => array(
+      'table' => 'node',
+      'columns' => array(
+        'nid' => 'nid',
+      ),
+    ),
+    'version_author' => array(
+      'table' => 'users',
+      'columns' => array(
+        'uid' => 'uid',
+      ),
+    ),
+  ),
+  'module' => 'node',
+  'name' => 'node_revision',
+));
+db_insert('node_revision')->fields(array(
+  'nid',
+  'vid',
+  'uid',
+  'title',
+  'log',
+  'timestamp',
+  'status',
+  'comment',
+  'promote',
+  'sticky',
+))
+->values(array(
+  'nid' => '1',
+  'vid' => '1',
+  'uid' => '3',
+  'title' => 'node title 1 rev 1 (i=0)',
+  'log' => 'added 0 node',
+  'timestamp' => '1314997642',
+  'status' => '0',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '1',
+  'vid' => '2',
+  'uid' => '6',
+  'title' => 'node title 1 rev 1 (i=0) rev2 2',
+  'log' => 'added 0 revision',
+  'timestamp' => '1314997642',
+  'status' => '0',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '2',
+  'vid' => '3',
+  'uid' => '3',
+  'title' => 'node title 2 rev 3 (i=1)',
+  'log' => 'added 1 node',
+  'timestamp' => '1314997642',
+  'status' => '0',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '2',
+  'vid' => '4',
+  'uid' => '6',
+  'title' => 'node title 2 rev 3 (i=1) rev2 4',
+  'log' => 'added 1 revision',
+  'timestamp' => '1314997642',
+  'status' => '0',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '3',
+  'vid' => '5',
+  'uid' => '3',
+  'title' => 'node title 3 rev 5 (i=2)',
+  'log' => 'added 2 node',
+  'timestamp' => '1314997642',
+  'status' => '0',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '3',
+  'vid' => '6',
+  'uid' => '6',
+  'title' => 'node title 3 rev 5 (i=2) rev2 6',
+  'log' => 'added 2 revision',
+  'timestamp' => '1314997642',
+  'status' => '0',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '4',
+  'vid' => '7',
+  'uid' => '3',
+  'title' => 'node title 4 rev 7 (i=3)',
+  'log' => 'added 3 node',
+  'timestamp' => '1314997642',
+  'status' => '0',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '4',
+  'vid' => '8',
+  'uid' => '6',
+  'title' => 'node title 4 rev 7 (i=3) rev2 8',
+  'log' => 'added 3 revision',
+  'timestamp' => '1314997642',
+  'status' => '0',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '5',
+  'vid' => '9',
+  'uid' => '3',
+  'title' => 'node title 5 rev 9 (i=4)',
+  'log' => 'added 4 node',
+  'timestamp' => '1314997642',
+  'status' => '1',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '5',
+  'vid' => '10',
+  'uid' => '6',
+  'title' => 'node title 5 rev 9 (i=4) rev2 10',
+  'log' => 'added 4 revision',
+  'timestamp' => '1314997642',
+  'status' => '1',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '6',
+  'vid' => '11',
+  'uid' => '3',
+  'title' => 'node title 6 rev 11 (i=5)',
+  'log' => 'added 5 node',
+  'timestamp' => '1314997642',
+  'status' => '1',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '6',
+  'vid' => '12',
+  'uid' => '6',
+  'title' => 'node title 6 rev 11 (i=5) rev2 12',
+  'log' => 'added 5 revision',
+  'timestamp' => '1314997642',
+  'status' => '1',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '7',
+  'vid' => '13',
+  'uid' => '3',
+  'title' => 'node title 7 rev 13 (i=6)',
+  'log' => 'added 6 node',
+  'timestamp' => '1314997642',
+  'status' => '1',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '7',
+  'vid' => '14',
+  'uid' => '6',
+  'title' => 'node title 7 rev 13 (i=6) rev2 14',
+  'log' => 'added 6 revision',
+  'timestamp' => '1314997642',
+  'status' => '1',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '8',
+  'vid' => '15',
+  'uid' => '3',
+  'title' => 'node title 8 rev 15 (i=7)',
+  'log' => 'added 7 node',
+  'timestamp' => '1314997642',
+  'status' => '1',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '8',
+  'vid' => '16',
+  'uid' => '6',
+  'title' => 'node title 8 rev 15 (i=7) rev2 16',
+  'log' => 'added 7 revision',
+  'timestamp' => '1314997642',
+  'status' => '1',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '9',
+  'vid' => '17',
+  'uid' => '4',
+  'title' => 'node title 9 rev 17 (i=8)',
+  'log' => 'added 8 node',
+  'timestamp' => '1314997642',
+  'status' => '0',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '9',
+  'vid' => '18',
+  'uid' => '7',
+  'title' => 'node title 9 rev 17 (i=8) rev2 18',
+  'log' => 'added 8 revision',
+  'timestamp' => '1314997642',
+  'status' => '0',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '10',
+  'vid' => '19',
+  'uid' => '4',
+  'title' => 'node title 10 rev 19 (i=9)',
+  'log' => 'added 9 node',
+  'timestamp' => '1314997642',
+  'status' => '0',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '10',
+  'vid' => '20',
+  'uid' => '7',
+  'title' => 'node title 10 rev 19 (i=9) rev2 20',
+  'log' => 'added 9 revision',
+  'timestamp' => '1314997642',
+  'status' => '0',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '11',
+  'vid' => '21',
+  'uid' => '4',
+  'title' => 'node title 11 rev 21 (i=10)',
+  'log' => 'added 10 node',
+  'timestamp' => '1314997642',
+  'status' => '0',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '11',
+  'vid' => '22',
+  'uid' => '7',
+  'title' => 'node title 11 rev 21 (i=10) rev2 22',
+  'log' => 'added 10 revision',
+  'timestamp' => '1314997642',
+  'status' => '0',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '12',
+  'vid' => '23',
+  'uid' => '4',
+  'title' => 'node title 12 rev 23 (i=11)',
+  'log' => 'added 11 node',
+  'timestamp' => '1314997642',
+  'status' => '0',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '12',
+  'vid' => '24',
+  'uid' => '7',
+  'title' => 'node title 12 rev 23 (i=11) rev2 24',
+  'log' => 'added 11 revision',
+  'timestamp' => '1314997642',
+  'status' => '0',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '13',
+  'vid' => '25',
+  'uid' => '4',
+  'title' => 'node title 13 rev 25 (i=12)',
+  'log' => 'added 12 node',
+  'timestamp' => '1314997642',
+  'status' => '1',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '14',
+  'vid' => '26',
+  'uid' => '4',
+  'title' => 'node title 14 rev 26 (i=13)',
+  'log' => 'added 13 node',
+  'timestamp' => '1314997642',
+  'status' => '1',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '15',
+  'vid' => '27',
+  'uid' => '4',
+  'title' => 'node title 15 rev 27 (i=14)',
+  'log' => 'added 14 node',
+  'timestamp' => '1314997642',
+  'status' => '1',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '16',
+  'vid' => '28',
+  'uid' => '4',
+  'title' => 'node title 16 rev 28 (i=15)',
+  'log' => 'added 15 node',
+  'timestamp' => '1314997642',
+  'status' => '1',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '17',
+  'vid' => '29',
+  'uid' => '5',
+  'title' => 'node title 17 rev 29 (i=16)',
+  'log' => 'added 16 node',
+  'timestamp' => '1314997642',
+  'status' => '0',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '18',
+  'vid' => '30',
+  'uid' => '5',
+  'title' => 'node title 18 rev 30 (i=17)',
+  'log' => 'added 17 node',
+  'timestamp' => '1314997642',
+  'status' => '0',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '19',
+  'vid' => '31',
+  'uid' => '5',
+  'title' => 'node title 19 rev 31 (i=18)',
+  'log' => 'added 18 node',
+  'timestamp' => '1314997642',
+  'status' => '0',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '20',
+  'vid' => '32',
+  'uid' => '5',
+  'title' => 'node title 20 rev 32 (i=19)',
+  'log' => 'added 19 node',
+  'timestamp' => '1314997642',
+  'status' => '0',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '21',
+  'vid' => '33',
+  'uid' => '5',
+  'title' => 'node title 21 rev 33 (i=20)',
+  'log' => 'added 20 node',
+  'timestamp' => '1314997642',
+  'status' => '1',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '22',
+  'vid' => '34',
+  'uid' => '5',
+  'title' => 'node title 22 rev 34 (i=21)',
+  'log' => 'added 21 node',
+  'timestamp' => '1314997642',
+  'status' => '1',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '23',
+  'vid' => '35',
+  'uid' => '5',
+  'title' => 'node title 23 rev 35 (i=22)',
+  'log' => 'added 22 node',
+  'timestamp' => '1314997642',
+  'status' => '1',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '24',
+  'vid' => '36',
+  'uid' => '5',
+  'title' => 'node title 24 rev 36 (i=23)',
+  'log' => 'added 23 node',
+  'timestamp' => '1314997642',
+  'status' => '1',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '25',
+  'vid' => '37',
+  'uid' => '3',
+  'title' => 'poll title 0',
+  'log' => 'added 0 poll',
+  'timestamp' => '1314997642',
+  'status' => '0',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '26',
+  'vid' => '38',
+  'uid' => '3',
+  'title' => 'poll title 1',
+  'log' => 'added 1 poll',
+  'timestamp' => '1314997642',
+  'status' => '0',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '27',
+  'vid' => '39',
+  'uid' => '3',
+  'title' => 'poll title 2',
+  'log' => 'added 2 poll',
+  'timestamp' => '1314997642',
+  'status' => '1',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '28',
+  'vid' => '40',
+  'uid' => '3',
+  'title' => 'poll title 3',
+  'log' => 'added 3 poll',
+  'timestamp' => '1314997642',
+  'status' => '1',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '29',
+  'vid' => '41',
+  'uid' => '4',
+  'title' => 'poll title 4',
+  'log' => 'added 4 poll',
+  'timestamp' => '1314997642',
+  'status' => '0',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '30',
+  'vid' => '42',
+  'uid' => '4',
+  'title' => 'poll title 5',
+  'log' => 'added 5 poll',
+  'timestamp' => '1314997642',
+  'status' => '0',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '31',
+  'vid' => '43',
+  'uid' => '4',
+  'title' => 'poll title 6',
+  'log' => 'added 6 poll',
+  'timestamp' => '1314997642',
+  'status' => '1',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '32',
+  'vid' => '44',
+  'uid' => '4',
+  'title' => 'poll title 7',
+  'log' => 'added 7 poll',
+  'timestamp' => '1314997642',
+  'status' => '1',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '33',
+  'vid' => '45',
+  'uid' => '5',
+  'title' => 'poll title 8',
+  'log' => 'added 8 poll',
+  'timestamp' => '1314997642',
+  'status' => '0',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '34',
+  'vid' => '46',
+  'uid' => '5',
+  'title' => 'poll title 9',
+  'log' => 'added 9 poll',
+  'timestamp' => '1314997642',
+  'status' => '0',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '35',
+  'vid' => '47',
+  'uid' => '5',
+  'title' => 'poll title 10',
+  'log' => 'added 10 poll',
+  'timestamp' => '1314997642',
+  'status' => '1',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '36',
+  'vid' => '48',
+  'uid' => '5',
+  'title' => 'poll title 11',
+  'log' => 'added 11 poll',
+  'timestamp' => '1314997642',
+  'status' => '1',
+  'comment' => '0',
+  'promote' => '1',
+  'sticky' => '0',
+))
+->values(array(
+  'nid' => '37',
+  'vid' => '49',
+  'uid' => '6',
+  'title' => 'node title 24',
+  'log' => 'added a broken node',
+  'timestamp' => '1314997642',
+  'status' => '1',
+  'comment' => '0',
+  'promote' => '0',
+  'sticky' => '0',
+))
+->execute();
+
+db_create_table('node_type', array(
+  'fields' => array(
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+    ),
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+      'translatable' => TRUE,
+    ),
+    'base' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+    ),
+    'module' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+    ),
+    'description' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+      'size' => 'medium',
+      'translatable' => TRUE,
+    ),
+    'help' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+      'size' => 'medium',
+      'translatable' => TRUE,
+    ),
+    'has_title' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'size' => 'tiny',
+    ),
+    'title_label' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+      'translatable' => TRUE,
+    ),
+    'custom' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'modified' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'locked' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'disabled' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'orig_type' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+  ),
+  'primary key' => array(
+    'type',
+  ),
+  'module' => 'node',
+  'name' => 'node_type',
+));
+db_insert('node_type')->fields(array(
+  'type',
+  'name',
+  'base',
+  'module',
+  'description',
+  'help',
+  'has_title',
+  'title_label',
+  'custom',
+  'modified',
+  'locked',
+  'disabled',
+  'orig_type',
+))
+->values(array(
+  'type' => 'article',
+  'name' => 'Article',
+  'base' => 'node_content',
+  'module' => 'node',
+  'description' => 'Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.',
+  'help' => '',
+  'has_title' => '1',
+  'title_label' => 'Title',
+  'custom' => '1',
+  'modified' => '1',
+  'locked' => '0',
+  'disabled' => '0',
+  'orig_type' => 'article',
+))
+->values(array(
+  'type' => 'page',
+  'name' => 'Basic page',
+  'base' => 'node_content',
+  'module' => 'node',
+  'description' => "Use <em>basic pages</em> for your static content, such as an 'About us' page.",
+  'help' => '',
+  'has_title' => '1',
+  'title_label' => 'Title',
+  'custom' => '1',
+  'modified' => '1',
+  'locked' => '0',
+  'disabled' => '0',
+  'orig_type' => 'page',
+))
+->execute();
+
+db_create_table('queue', array(
+  'fields' => array(
+    'item_id' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+      'serialize' => TRUE,
+    ),
+    'expire' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'primary key' => array(
+    'item_id',
+  ),
+  'indexes' => array(
+    'name_created' => array(
+      'name',
+      'created',
+    ),
+    'expire' => array(
+      'expire',
+    ),
+  ),
+  'module' => 'system',
+  'name' => 'queue',
+));
+
+db_create_table('rdf_mapping', array(
+  'fields' => array(
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+    ),
+    'bundle' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+    ),
+    'mapping' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+      'serialize' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'type',
+    'bundle',
+  ),
+  'module' => 'rdf',
+  'name' => 'rdf_mapping',
+));
+db_insert('rdf_mapping')->fields(array(
+  'type',
+  'bundle',
+  'mapping',
+))
+->values(array(
+  'type' => 'node',
+  'bundle' => 'article',
+  '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";}}',
+))
+->values(array(
+  'type' => 'node',
+  'bundle' => 'page',
+  '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";}}',
+))
+->execute();
+
+db_create_table('registry', array(
+  'fields' => array(
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 9,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'filename' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+    ),
+    'module' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'primary key' => array(
+    'name',
+    'type',
+  ),
+  'indexes' => array(
+    'hook' => array(
+      'type',
+      'weight',
+      'module',
+    ),
+  ),
+  'module' => 'system',
+  'name' => 'registry',
+));
+db_insert('registry')->fields(array(
+  'name',
+  'type',
+  'filename',
+  'module',
+  'weight',
+))
+->values(array(
+  'name' => 'AccessDeniedTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'AdminMetaTagTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ArchiverInterface',
+  'type' => 'interface',
+  'filename' => 'includes/archiver.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ArchiverTar',
+  'type' => 'class',
+  'filename' => 'modules/system/system.archiver.inc',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ArchiverZip',
+  'type' => 'class',
+  'filename' => 'modules/system/system.archiver.inc',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'Archive_Tar',
+  'type' => 'class',
+  'filename' => 'modules/system/system.tar.inc',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BatchMemoryQueue',
+  'type' => 'class',
+  'filename' => 'includes/batch.queue.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BatchQueue',
+  'type' => 'class',
+  'filename' => 'includes/batch.queue.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BlockAdminThemeTestCase',
+  'type' => 'class',
+  'filename' => 'modules/block/block.test',
+  'module' => 'block',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BlockCacheTestCase',
+  'type' => 'class',
+  'filename' => 'modules/block/block.test',
+  'module' => 'block',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BlockHTMLIdTestCase',
+  'type' => 'class',
+  'filename' => 'modules/block/block.test',
+  'module' => 'block',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BlockTemplateSuggestionsUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/block/block.test',
+  'module' => 'block',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'BlockTestCase',
+  'type' => 'class',
+  'filename' => 'modules/block/block.test',
+  'module' => 'block',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ColorTestCase',
+  'type' => 'class',
+  'filename' => 'modules/color/color.test',
+  'module' => 'color',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommentActionsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/comment/comment.test',
+  'module' => 'comment',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommentAnonymous',
+  'type' => 'class',
+  'filename' => 'modules/comment/comment.test',
+  'module' => 'comment',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommentApprovalTest',
+  'type' => 'class',
+  'filename' => 'modules/comment/comment.test',
+  'module' => 'comment',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommentBlockFunctionalTest',
+  'type' => 'class',
+  'filename' => 'modules/comment/comment.test',
+  'module' => 'comment',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommentContentRebuild',
+  'type' => 'class',
+  'filename' => 'modules/comment/comment.test',
+  'module' => 'comment',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommentController',
+  'type' => 'class',
+  'filename' => 'modules/comment/comment.module',
+  'module' => 'comment',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommentFieldsTest',
+  'type' => 'class',
+  'filename' => 'modules/comment/comment.test',
+  'module' => 'comment',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommentHelperCase',
+  'type' => 'class',
+  'filename' => 'modules/comment/comment.test',
+  'module' => 'comment',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommentInterfaceTest',
+  'type' => 'class',
+  'filename' => 'modules/comment/comment.test',
+  'module' => 'comment',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommentNodeAccessTest',
+  'type' => 'class',
+  'filename' => 'modules/comment/comment.test',
+  'module' => 'comment',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommentPagerTest',
+  'type' => 'class',
+  'filename' => 'modules/comment/comment.test',
+  'module' => 'comment',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommentPreviewTest',
+  'type' => 'class',
+  'filename' => 'modules/comment/comment.test',
+  'module' => 'comment',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommentRSSUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/comment/comment.test',
+  'module' => 'comment',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CommentTokenReplaceTestCase',
+  'type' => 'class',
+  'filename' => 'modules/comment/comment.test',
+  'module' => 'comment',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'CronRunTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DashboardBlocksTestCase',
+  'type' => 'class',
+  'filename' => 'modules/dashboard/dashboard.test',
+  'module' => 'dashboard',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'Database',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseCondition',
+  'type' => 'class',
+  'filename' => 'includes/database/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseConnection',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseConnectionNotDefinedException',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseConnection_mysql',
+  'type' => 'class',
+  'filename' => 'includes/database/mysql/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseConnection_pgsql',
+  'type' => 'class',
+  'filename' => 'includes/database/pgsql/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseConnection_sqlite',
+  'type' => 'class',
+  'filename' => 'includes/database/sqlite/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseDriverNotSpecifiedException',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseLog',
+  'type' => 'class',
+  'filename' => 'includes/database/log.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseSchema',
+  'type' => 'class',
+  'filename' => 'includes/database/schema.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseSchemaObjectDoesNotExistException',
+  'type' => 'class',
+  'filename' => 'includes/database/schema.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseSchemaObjectExistsException',
+  'type' => 'class',
+  'filename' => 'includes/database/schema.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseSchema_mysql',
+  'type' => 'class',
+  'filename' => 'includes/database/mysql/schema.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseSchema_pgsql',
+  'type' => 'class',
+  'filename' => 'includes/database/pgsql/schema.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseSchema_sqlite',
+  'type' => 'class',
+  'filename' => 'includes/database/sqlite/schema.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseStatementBase',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseStatementEmpty',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseStatementInterface',
+  'type' => 'interface',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseStatementPrefetch',
+  'type' => 'class',
+  'filename' => 'includes/database/prefetch.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseStatement_sqlite',
+  'type' => 'class',
+  'filename' => 'includes/database/sqlite/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseTaskException',
+  'type' => 'class',
+  'filename' => 'includes/install.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseTasks',
+  'type' => 'class',
+  'filename' => 'includes/install.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseTasks_mysql',
+  'type' => 'class',
+  'filename' => 'includes/database/mysql/install.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseTasks_pgsql',
+  'type' => 'class',
+  'filename' => 'includes/database/pgsql/install.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseTasks_sqlite',
+  'type' => 'class',
+  'filename' => 'includes/database/sqlite/install.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseTransaction',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseTransactionCommitFailedException',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseTransactionExplicitCommitNotAllowedException',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseTransactionNameNonUniqueException',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseTransactionNoActiveException',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DatabaseTransactionOutOfOrderException',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DateTimeFunctionalTest',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DBLogTestCase',
+  'type' => 'class',
+  'filename' => 'modules/dblog/dblog.test',
+  'module' => 'dblog',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DefaultMailSystem',
+  'type' => 'class',
+  'filename' => 'modules/system/system.mail.inc',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DeleteQuery',
+  'type' => 'class',
+  'filename' => 'includes/database/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DeleteQuery_sqlite',
+  'type' => 'class',
+  'filename' => 'includes/database/sqlite/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalCacheArray',
+  'type' => 'class',
+  'filename' => 'includes/bootstrap.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalCacheInterface',
+  'type' => 'interface',
+  'filename' => 'includes/cache.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalDatabaseCache',
+  'type' => 'class',
+  'filename' => 'includes/cache.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalDefaultEntityController',
+  'type' => 'class',
+  'filename' => 'includes/entity.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalEntityControllerInterface',
+  'type' => 'interface',
+  'filename' => 'includes/entity.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalFakeCache',
+  'type' => 'class',
+  'filename' => 'includes/cache-install.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalLocalStreamWrapper',
+  'type' => 'class',
+  'filename' => 'includes/stream_wrappers.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalPrivateStreamWrapper',
+  'type' => 'class',
+  'filename' => 'includes/stream_wrappers.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalPublicStreamWrapper',
+  'type' => 'class',
+  'filename' => 'includes/stream_wrappers.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalQueue',
+  'type' => 'class',
+  'filename' => 'modules/system/system.queue.inc',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalQueueInterface',
+  'type' => 'interface',
+  'filename' => 'modules/system/system.queue.inc',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalReliableQueueInterface',
+  'type' => 'interface',
+  'filename' => 'modules/system/system.queue.inc',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalStreamWrapperInterface',
+  'type' => 'interface',
+  'filename' => 'includes/stream_wrappers.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalTemporaryStreamWrapper',
+  'type' => 'class',
+  'filename' => 'includes/stream_wrappers.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalUpdateException',
+  'type' => 'class',
+  'filename' => 'includes/update.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'DrupalUpdaterInterface',
+  'type' => 'interface',
+  'filename' => 'includes/updater.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EnableDisableTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityFieldQuery',
+  'type' => 'class',
+  'filename' => 'includes/entity.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityFieldQueryException',
+  'type' => 'class',
+  'filename' => 'includes/entity.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityMalformedException',
+  'type' => 'class',
+  'filename' => 'includes/entity.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'EntityPropertiesTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/tests/field.test',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldAttachOtherTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/tests/field.test',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldAttachStorageTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/tests/field.test',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldAttachTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/tests/field.test',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldBulkDeleteTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/tests/field.test',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldCrudTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/tests/field.test',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldDisplayAPITestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/tests/field.test',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldException',
+  'type' => 'class',
+  'filename' => 'modules/field/field.module',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldFormTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/tests/field.test',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldInfoTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/tests/field.test',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldInstanceCrudTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/tests/field.test',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldsOverlapException',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldSqlStorageTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/modules/field_sql_storage/field_sql_storage.test',
+  'module' => 'field_sql_storage',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/tests/field.test',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldTranslationsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/tests/field.test',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldUIManageDisplayTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field_ui/field_ui.test',
+  'module' => 'field_ui',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldUIManageFieldsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field_ui/field_ui.test',
+  'module' => 'field_ui',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldUITestCase',
+  'type' => 'class',
+  'filename' => 'modules/field_ui/field_ui.test',
+  'module' => 'field_ui',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldUpdateForbiddenException',
+  'type' => 'class',
+  'filename' => 'modules/field/field.module',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FieldValidationException',
+  'type' => 'class',
+  'filename' => 'modules/field/field.attach.inc',
+  'module' => 'field',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileFieldDisplayTestCase',
+  'type' => 'class',
+  'filename' => 'modules/file/tests/file.test',
+  'module' => 'file',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileFieldPathTestCase',
+  'type' => 'class',
+  'filename' => 'modules/file/tests/file.test',
+  'module' => 'file',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileFieldRevisionTestCase',
+  'type' => 'class',
+  'filename' => 'modules/file/tests/file.test',
+  'module' => 'file',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileFieldTestCase',
+  'type' => 'class',
+  'filename' => 'modules/file/tests/file.test',
+  'module' => 'file',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileFieldValidateTestCase',
+  'type' => 'class',
+  'filename' => 'modules/file/tests/file.test',
+  'module' => 'file',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileFieldWidgetTestCase',
+  'type' => 'class',
+  'filename' => 'modules/file/tests/file.test',
+  'module' => 'file',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileManagedFileElementTestCase',
+  'type' => 'class',
+  'filename' => 'modules/file/tests/file.test',
+  'module' => 'file',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FilePrivateTestCase',
+  'type' => 'class',
+  'filename' => 'modules/file/tests/file.test',
+  'module' => 'file',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileTokenReplaceTestCase',
+  'type' => 'class',
+  'filename' => 'modules/file/tests/file.test',
+  'module' => 'file',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileTransfer',
+  'type' => 'class',
+  'filename' => 'includes/filetransfer/filetransfer.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileTransferChmodInterface',
+  'type' => 'interface',
+  'filename' => 'includes/filetransfer/filetransfer.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileTransferException',
+  'type' => 'class',
+  'filename' => 'includes/filetransfer/filetransfer.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileTransferFTP',
+  'type' => 'class',
+  'filename' => 'includes/filetransfer/ftp.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileTransferFTPExtension',
+  'type' => 'class',
+  'filename' => 'includes/filetransfer/ftp.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileTransferLocal',
+  'type' => 'class',
+  'filename' => 'includes/filetransfer/local.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FileTransferSSH',
+  'type' => 'class',
+  'filename' => 'includes/filetransfer/ssh.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FilterAdminTestCase',
+  'type' => 'class',
+  'filename' => 'modules/filter/filter.test',
+  'module' => 'filter',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FilterCRUDTestCase',
+  'type' => 'class',
+  'filename' => 'modules/filter/filter.test',
+  'module' => 'filter',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FilterDefaultFormatTestCase',
+  'type' => 'class',
+  'filename' => 'modules/filter/filter.test',
+  'module' => 'filter',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FilterFormatAccessTestCase',
+  'type' => 'class',
+  'filename' => 'modules/filter/filter.test',
+  'module' => 'filter',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FilterHooksTestCase',
+  'type' => 'class',
+  'filename' => 'modules/filter/filter.test',
+  'module' => 'filter',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FilterNoFormatTestCase',
+  'type' => 'class',
+  'filename' => 'modules/filter/filter.test',
+  'module' => 'filter',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FilterSecurityTestCase',
+  'type' => 'class',
+  'filename' => 'modules/filter/filter.test',
+  'module' => 'filter',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FilterUnitTestCase',
+  'type' => 'class',
+  'filename' => 'modules/filter/filter.test',
+  'module' => 'filter',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FloodFunctionalTest',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'FrontPageTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'HelpTestCase',
+  'type' => 'class',
+  'filename' => 'modules/help/help.test',
+  'module' => 'help',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'HookRequirementsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ImageAdminStylesUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/image/image.test',
+  'module' => 'image',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ImageEffectsUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/image/image.test',
+  'module' => 'image',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ImageFieldDisplayTestCase',
+  'type' => 'class',
+  'filename' => 'modules/image/image.test',
+  'module' => 'image',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ImageFieldTestCase',
+  'type' => 'class',
+  'filename' => 'modules/image/image.test',
+  'module' => 'image',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ImageFieldValidateTestCase',
+  'type' => 'class',
+  'filename' => 'modules/image/image.test',
+  'module' => 'image',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ImageStylesPathAndUrlUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/image/image.test',
+  'module' => 'image',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'InfoFileParserTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'InsertQuery',
+  'type' => 'class',
+  'filename' => 'includes/database/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'InsertQuery_mysql',
+  'type' => 'class',
+  'filename' => 'includes/database/mysql/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'InsertQuery_pgsql',
+  'type' => 'class',
+  'filename' => 'includes/database/pgsql/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'InsertQuery_sqlite',
+  'type' => 'class',
+  'filename' => 'includes/database/sqlite/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'InvalidMergeQueryException',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'IPAddressBlockingTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ListFieldTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/modules/list/tests/list.test',
+  'module' => 'list',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ListFieldUITestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/modules/list/tests/list.test',
+  'module' => 'list',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MailSystemInterface',
+  'type' => 'interface',
+  'filename' => 'includes/mail.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MemoryQueue',
+  'type' => 'class',
+  'filename' => 'modules/system/system.queue.inc',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MenuNodeTestCase',
+  'type' => 'class',
+  'filename' => 'modules/menu/menu.test',
+  'module' => 'menu',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MenuTestCase',
+  'type' => 'class',
+  'filename' => 'modules/menu/menu.test',
+  'module' => 'menu',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MergeQuery',
+  'type' => 'class',
+  'filename' => 'includes/database/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ModuleDependencyTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ModuleRequiredTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ModuleTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ModuleUpdater',
+  'type' => 'class',
+  'filename' => 'modules/system/system.updater.inc',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ModuleVersionTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'MultiStepNodeFormBasicOptionsTest',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NewDefaultThemeBlocks',
+  'type' => 'class',
+  'filename' => 'modules/block/block.test',
+  'module' => 'block',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeAccessBaseTableTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeAccessRebuildTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeAccessRecordsUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeAccessUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeAdminTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeBlockFunctionalTest',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeBlockTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeBuildContent',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeController',
+  'type' => 'class',
+  'filename' => 'modules/node/node.module',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeCreationTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeEntityFieldQueryAlter',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeFeedTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeLoadHooksTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeLoadMultipleUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodePostSettingsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeQueryAlter',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeRevisionsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeRSSContentTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeSaveTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeTitleTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeTitleXSSTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeTokenReplaceTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeTypePersistenceTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NodeTypeTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NoFieldsException',
+  'type' => 'class',
+  'filename' => 'includes/database/database.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NoHelpTestCase',
+  'type' => 'class',
+  'filename' => 'modules/help/help.test',
+  'module' => 'help',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NonDefaultBlockAdmin',
+  'type' => 'class',
+  'filename' => 'modules/block/block.test',
+  'module' => 'block',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'NumberFieldTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/modules/number/number.test',
+  'module' => 'number',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'OptionsWidgetsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/modules/options/options.test',
+  'module' => 'options',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PageEditTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PageNotFoundTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PagePreviewTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PagerDefault',
+  'type' => 'class',
+  'filename' => 'includes/pager.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PageTitleFiltering',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PageViewTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PathLanguageTestCase',
+  'type' => 'class',
+  'filename' => 'modules/path/path.test',
+  'module' => 'path',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PathLanguageUITestCase',
+  'type' => 'class',
+  'filename' => 'modules/path/path.test',
+  'module' => 'path',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PathMonolingualTestCase',
+  'type' => 'class',
+  'filename' => 'modules/path/path.test',
+  'module' => 'path',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PathTaxonomyTermTestCase',
+  'type' => 'class',
+  'filename' => 'modules/path/path.test',
+  'module' => 'path',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'PathTestCase',
+  'type' => 'class',
+  'filename' => 'modules/path/path.test',
+  'module' => 'path',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'Query',
+  'type' => 'class',
+  'filename' => 'includes/database/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'QueryAlterableInterface',
+  'type' => 'interface',
+  'filename' => 'includes/database/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'QueryConditionInterface',
+  'type' => 'interface',
+  'filename' => 'includes/database/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'QueryExtendableInterface',
+  'type' => 'interface',
+  'filename' => 'includes/database/select.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'QueryPlaceholderInterface',
+  'type' => 'interface',
+  'filename' => 'includes/database/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'QueueTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RdfCommentAttributesTestCase',
+  'type' => 'class',
+  'filename' => 'modules/rdf/rdf.test',
+  'module' => 'rdf',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RdfCrudTestCase',
+  'type' => 'class',
+  'filename' => 'modules/rdf/rdf.test',
+  'module' => 'rdf',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RdfGetRdfNamespacesTestCase',
+  'type' => 'class',
+  'filename' => 'modules/rdf/rdf.test',
+  'module' => 'rdf',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RdfMappingDefinitionTestCase',
+  'type' => 'class',
+  'filename' => 'modules/rdf/rdf.test',
+  'module' => 'rdf',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RdfMappingHookTestCase',
+  'type' => 'class',
+  'filename' => 'modules/rdf/rdf.test',
+  'module' => 'rdf',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RdfRdfaMarkupTestCase',
+  'type' => 'class',
+  'filename' => 'modules/rdf/rdf.test',
+  'module' => 'rdf',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RdfTrackerAttributesTestCase',
+  'type' => 'class',
+  'filename' => 'modules/rdf/rdf.test',
+  'module' => 'rdf',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'RetrieveFileTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SchemaCache',
+  'type' => 'class',
+  'filename' => 'includes/bootstrap.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchAdvancedSearchForm',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchBlockTestCase',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchCommentCountToggleTestCase',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchCommentTestCase',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchConfigSettingsForm',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchEmbedForm',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchExactTestCase',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchExcerptTestCase',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchExpressionInsertExtractTestCase',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchKeywordsConditions',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchLanguageTestCase',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchMatchTestCase',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchNodeAccessTest',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchNumberMatchingTestCase',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchNumbersTestCase',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchPageOverride',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchPageText',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchQuery',
+  'type' => 'class',
+  'filename' => 'modules/search/search.extender.inc',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchRankingTestCase',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchSimplifyTestCase',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SearchTokenizerTestCase',
+  'type' => 'class',
+  'filename' => 'modules/search/search.test',
+  'module' => 'search',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SelectQuery',
+  'type' => 'class',
+  'filename' => 'includes/database/select.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SelectQueryExtender',
+  'type' => 'class',
+  'filename' => 'includes/database/select.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SelectQueryInterface',
+  'type' => 'interface',
+  'filename' => 'includes/database/select.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SelectQuery_pgsql',
+  'type' => 'class',
+  'filename' => 'includes/database/pgsql/select.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SelectQuery_sqlite',
+  'type' => 'class',
+  'filename' => 'includes/database/sqlite/select.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ShortcutLinksTestCase',
+  'type' => 'class',
+  'filename' => 'modules/shortcut/shortcut.test',
+  'module' => 'shortcut',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ShortcutSetsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/shortcut/shortcut.test',
+  'module' => 'shortcut',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ShortcutTestCase',
+  'type' => 'class',
+  'filename' => 'modules/shortcut/shortcut.test',
+  'module' => 'shortcut',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ShutdownFunctionsTest',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SiteMaintenanceTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SkipDotsRecursiveDirectoryIterator',
+  'type' => 'class',
+  'filename' => 'includes/filetransfer/filetransfer.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'StreamWrapperInterface',
+  'type' => 'interface',
+  'filename' => 'includes/stream_wrappers.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SummaryLengthTestCase',
+  'type' => 'class',
+  'filename' => 'modules/node/node.test',
+  'module' => 'node',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SystemAdminTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SystemAuthorizeCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SystemBlockTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SystemIndexPhpTest',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SystemInfoAlterTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SystemMainContentFallback',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SystemQueue',
+  'type' => 'class',
+  'filename' => 'modules/system/system.queue.inc',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'SystemThemeFunctionalTest',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TableSort',
+  'type' => 'class',
+  'filename' => 'includes/tablesort.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TaxonomyHooksTestCase',
+  'type' => 'class',
+  'filename' => 'modules/taxonomy/taxonomy.test',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TaxonomyLegacyTestCase',
+  'type' => 'class',
+  'filename' => 'modules/taxonomy/taxonomy.test',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TaxonomyLoadMultipleUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/taxonomy/taxonomy.test',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TaxonomyTermController',
+  'type' => 'class',
+  'filename' => 'modules/taxonomy/taxonomy.module',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TaxonomyTermFieldTestCase',
+  'type' => 'class',
+  'filename' => 'modules/taxonomy/taxonomy.test',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TaxonomyTermTestCase',
+  'type' => 'class',
+  'filename' => 'modules/taxonomy/taxonomy.test',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TaxonomyTermUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/taxonomy/taxonomy.test',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TaxonomyThemeTestCase',
+  'type' => 'class',
+  'filename' => 'modules/taxonomy/taxonomy.test',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TaxonomyTokenReplaceTestCase',
+  'type' => 'class',
+  'filename' => 'modules/taxonomy/taxonomy.test',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TaxonomyVocabularyController',
+  'type' => 'class',
+  'filename' => 'modules/taxonomy/taxonomy.module',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TaxonomyVocabularyFunctionalTest',
+  'type' => 'class',
+  'filename' => 'modules/taxonomy/taxonomy.test',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TaxonomyVocabularyUnitTest',
+  'type' => 'class',
+  'filename' => 'modules/taxonomy/taxonomy.test',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TaxonomyWebTestCase',
+  'type' => 'class',
+  'filename' => 'modules/taxonomy/taxonomy.test',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TestingMailSystem',
+  'type' => 'class',
+  'filename' => 'modules/system/system.mail.inc',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TextFieldTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/modules/text/text.test',
+  'module' => 'text',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TextSummaryTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/modules/text/text.test',
+  'module' => 'text',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TextTranslationTestCase',
+  'type' => 'class',
+  'filename' => 'modules/field/modules/text/text.test',
+  'module' => 'text',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'ThemeUpdater',
+  'type' => 'class',
+  'filename' => 'modules/system/system.updater.inc',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TokenReplaceTestCase',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TruncateQuery',
+  'type' => 'class',
+  'filename' => 'includes/database/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TruncateQuery_mysql',
+  'type' => 'class',
+  'filename' => 'includes/database/mysql/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'TruncateQuery_sqlite',
+  'type' => 'class',
+  'filename' => 'includes/database/sqlite/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdateCoreTestCase',
+  'type' => 'class',
+  'filename' => 'modules/update/update.test',
+  'module' => 'update',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdateQuery',
+  'type' => 'class',
+  'filename' => 'includes/database/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdateQuery_pgsql',
+  'type' => 'class',
+  'filename' => 'includes/database/pgsql/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdateQuery_sqlite',
+  'type' => 'class',
+  'filename' => 'includes/database/sqlite/query.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'Updater',
+  'type' => 'class',
+  'filename' => 'includes/updater.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdaterException',
+  'type' => 'class',
+  'filename' => 'includes/updater.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdaterFileTransferException',
+  'type' => 'class',
+  'filename' => 'includes/updater.inc',
+  'module' => '',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdateScriptFunctionalTest',
+  'type' => 'class',
+  'filename' => 'modules/system/system.test',
+  'module' => 'system',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdateTestContribCase',
+  'type' => 'class',
+  'filename' => 'modules/update/update.test',
+  'module' => 'update',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdateTestHelper',
+  'type' => 'class',
+  'filename' => 'modules/update/update.test',
+  'module' => 'update',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UpdateTestUploadCase',
+  'type' => 'class',
+  'filename' => 'modules/update/update.test',
+  'module' => 'update',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserAccountLinksUnitTests',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserAdminTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserAuthmapAssignmentTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserAutocompleteTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserBlocksUnitTests',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserCancelTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserController',
+  'type' => 'class',
+  'filename' => 'modules/user/user.module',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserCreateTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserEditedOwnAccountTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserEditTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserLoginTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserPermissionsTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserPictureTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserRegistrationTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserRoleAdminTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserRolesAssignmentTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserSaveTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserSignatureTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserTimeZoneFunctionalTest',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserTokenReplaceTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserUserSearchTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserValidateCurrentPassCustomForm',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->values(array(
+  'name' => 'UserValidationTestCase',
+  'type' => 'class',
+  'filename' => 'modules/user/user.test',
+  'module' => 'user',
+  'weight' => '0',
+))
+->execute();
+
+db_create_table('registry_file', array(
+  'fields' => array(
+    'filename' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+    ),
+    'hash' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'filename',
+  ),
+  'module' => 'system',
+  'name' => 'registry_file',
+));
+db_insert('registry_file')->fields(array(
+  'filename',
+  'hash',
+))
+->values(array(
+  'filename' => 'includes/actions.inc',
+  'hash' => '3e1b89b7dd2465549361915ffc50b713a8f3a568baa703f034e48b24977f83c8',
+))
+->values(array(
+  'filename' => 'includes/ajax.inc',
+  'hash' => 'a6a0847d63032f67c4bd06c3926c639cfafc58f52c17f31f4c8c13fa5699cc6a',
+))
+->values(array(
+  'filename' => 'includes/archiver.inc',
+  'hash' => '097a78f5794237e8242b540649d824b930008027362c1359773e22c2b21cd6e5',
+))
+->values(array(
+  'filename' => 'includes/authorize.inc',
+  'hash' => 'bd85cb5d7bec2906e85be1b7187410680190b568e433fdcff944f74b7e1c616d',
+))
+->values(array(
+  'filename' => 'includes/batch.inc',
+  'hash' => 'f32d52b88dc6bd0b3117fef0057d6084fbe132afb0fbf638daaa42bce7a2a3c5',
+))
+->values(array(
+  'filename' => 'includes/batch.queue.inc',
+  'hash' => '34face1f61857ec26e414712c647b06acbd5ec4437a71abf090e83cbdf691794',
+))
+->values(array(
+  'filename' => 'includes/bootstrap.inc',
+  'hash' => 'faeef91dec3a689471b90199da366756459f70ff9084bb78f94b755cb3b04dd4',
+))
+->values(array(
+  'filename' => 'includes/cache-install.inc',
+  'hash' => '2d223093cf3740d190746d1c348607694a8475c0da91ffd2386454995a17995e',
+))
+->values(array(
+  'filename' => 'includes/cache.inc',
+  'hash' => '5239bd1707257d0abdd5396d6febd34bea08dd6ceb318265f3c9b7b21b38f23f',
+))
+->values(array(
+  'filename' => 'includes/common.inc',
+  'hash' => '3e60fff0c30dea3c0739e52d0cc1f30070b60f2406edcde31e71006139b40bff',
+))
+->values(array(
+  'filename' => 'includes/database/database.inc',
+  'hash' => '6e508386cce4f1f26dba5e897fc99dd7a4b5cbf12f4076e979ff2a6c98137357',
+))
+->values(array(
+  'filename' => 'includes/database/log.inc',
+  'hash' => '4ecbdf9022d8c612310b41af575f10b0d4c041c0fbc41c6dc7e1f2ab6eacce6b',
+))
+->values(array(
+  'filename' => 'includes/database/mysql/database.inc',
+  'hash' => 'b0f19ed69d68e1a43f46e10a5a3bfbf97ce72cf936379c1519ceccfa3b359584',
+))
+->values(array(
+  'filename' => 'includes/database/mysql/install.inc',
+  'hash' => '6ae316941f771732fbbabed7e1d6b4cbb41b1f429dd097d04b3345aa15e461a0',
+))
+->values(array(
+  'filename' => 'includes/database/mysql/query.inc',
+  'hash' => 'e2a5457ec40a8f88f6a822bdc77f74865e4c02206fc733c2945c8897f46093de',
+))
+->values(array(
+  'filename' => 'includes/database/mysql/schema.inc',
+  'hash' => 'f71af9dda287f0f37e7bd0077b801a6d3f38c951a9c2c6ea3b71dff1b69077d3',
+))
+->values(array(
+  'filename' => 'includes/database/pgsql/database.inc',
+  'hash' => 'c2bf3fa2d03583f3a6c6df76dc5ee204f7d44d5c2ee451af500583d4775877e0',
+))
+->values(array(
+  'filename' => 'includes/database/pgsql/install.inc',
+  'hash' => '585b80c5bbd6f134bff60d06397f15154657a577d4da8d1b181858905f09dea5',
+))
+->values(array(
+  'filename' => 'includes/database/pgsql/query.inc',
+  'hash' => 'cb4c84f8f1ffc73098ed71137248dcd078a505a7530e60d979d74b3a3cdaa658',
+))
+->values(array(
+  'filename' => 'includes/database/pgsql/schema.inc',
+  'hash' => '1442123ab5040a55797126cfa1cf9103f7a9df22b3c23b5055c9c27e4f12d262',
+))
+->values(array(
+  'filename' => 'includes/database/pgsql/select.inc',
+  'hash' => 'ce06c4353d4322e519e1c90ca863e6666edc370fb3c12568fedf466334b2e2be',
+))
+->values(array(
+  'filename' => 'includes/database/prefetch.inc',
+  'hash' => '8d39658800c5b648b8aafc253cd36162c22ba54febe543ad14fc50016b02ba93',
+))
+->values(array(
+  'filename' => 'includes/database/query.inc',
+  'hash' => '5c7c960209b84c874e9e6bafdcdc59eeb45651b6969e7f8ba17a460294fa2256',
+))
+->values(array(
+  'filename' => 'includes/database/schema.inc',
+  'hash' => '1996c5e11a984348f29baa6f19e9a995280828bdbbaa3e8c5d747dd28e93d7a2',
+))
+->values(array(
+  'filename' => 'includes/database/select.inc',
+  'hash' => 'f623cc9572f87b76716389d7188884f78a0aa110006e48374151c1aef31b29f0',
+))
+->values(array(
+  'filename' => 'includes/database/sqlite/database.inc',
+  'hash' => '644fe9e0b31303b46b080cbc41fe4c2b3fc972071dcb34f754d7f83f0ce79083',
+))
+->values(array(
+  'filename' => 'includes/database/sqlite/install.inc',
+  'hash' => '381f3db8c59837d961978ba3097bb6443534ed1659fd713aa563963fa0c42cc5',
+))
+->values(array(
+  'filename' => 'includes/database/sqlite/query.inc',
+  'hash' => '61e0459c0c9252ca465b86c475d88e09ea34c8cdb28220eb37a7d44357f5474f',
+))
+->values(array(
+  'filename' => 'includes/database/sqlite/schema.inc',
+  'hash' => 'b43202cce5e8a637432b0d83c90b6250822b722ee033e1b6f7b3d76b92ffc9a7',
+))
+->values(array(
+  'filename' => 'includes/database/sqlite/select.inc',
+  'hash' => '4ecb9d21d2f07237f7603e925519886dde0b8da82f96999b865ff0803438744e',
+))
+->values(array(
+  'filename' => 'includes/date.inc',
+  'hash' => '32124baa81a1411631de23ade5615be0d81bc7c7169ea60d22f9badd333cf284',
+))
+->values(array(
+  'filename' => 'includes/entity.inc',
+  'hash' => '0d3e537e907e9465ef3affe63adaf3a22889673c0618789998c09b831807e8b1',
+))
+->values(array(
+  'filename' => 'includes/errors.inc',
+  'hash' => '2bb3582fbee23850aa480f9a13bf11f886cf81de3fa02545aba64a407facd982',
+))
+->values(array(
+  'filename' => 'includes/file.inc',
+  'hash' => 'cf898bf744766b0ee006da7a5745a8487305ffc777bacbb2cea10bf7ed788a14',
+))
+->values(array(
+  'filename' => 'includes/file.mimetypes.inc',
+  'hash' => 'c6078a196ca29acb4b62a3a3c336e822d2a74cbc2c9df630e539790cb8bcbbbc',
+))
+->values(array(
+  'filename' => 'includes/filetransfer/filetransfer.inc',
+  'hash' => 'ee9393beddc7190f7a161f5563953d1b58e355026fcc2392443a9e6b4c600531',
+))
+->values(array(
+  'filename' => 'includes/filetransfer/ftp.inc',
+  'hash' => '589ebf4b8bd4a2973aa56a156ac1fa83b6c73e703391361fb573167670e0d832',
+))
+->values(array(
+  'filename' => 'includes/filetransfer/local.inc',
+  'hash' => '7cbfdb46abbdf539640db27e66fb30e5265128f31002bd0dfc3af16ae01a9492',
+))
+->values(array(
+  'filename' => 'includes/filetransfer/ssh.inc',
+  'hash' => '002e24a24cac133d12728bd3843868ce378681237d7fad420761af84e6efe5ad',
+))
+->values(array(
+  'filename' => 'includes/form.inc',
+  'hash' => '88d2f1e41bd84dced516a392b2b0428de0e1214d6d4ddee143f473e9c57ff013',
+))
+->values(array(
+  'filename' => 'includes/graph.inc',
+  'hash' => '577a50594521edecd7139fcecd6af3a941e456ea0e0577e38ee14b785422aabb',
+))
+->values(array(
+  'filename' => 'includes/image.inc',
+  'hash' => '2fefbd7e73eb51eece8acd7b374b23bf77a717c1553ad83b321a7be194c9e531',
+))
+->values(array(
+  'filename' => 'includes/install.core.inc',
+  'hash' => 'b230ede834f21c75dc736d5f583b41b02f3c88eef37b1ee9036d294c7f9dbba2',
+))
+->values(array(
+  'filename' => 'includes/install.inc',
+  'hash' => '2dda96a9169cd82e5f49c08c311a1be9decd6c259a385c57b370284072078ec5',
+))
+->values(array(
+  'filename' => 'includes/iso.inc',
+  'hash' => '379c2bd8332ce03a3772787b004e9b1a4468fd23f18d1b9397902fd6d9dbf2d8',
+))
+->values(array(
+  'filename' => 'includes/language.inc',
+  'hash' => '5e0595c6def071694fa500b4636d15d482dafddb612a977201b5406b813be7a6',
+))
+->values(array(
+  'filename' => 'includes/locale.inc',
+  'hash' => '5e6890eaaab5acd3bda2f2d2dc6e3faa9a4a77649ca2cae4225b9d0f24b50fda',
+))
+->values(array(
+  'filename' => 'includes/lock.inc',
+  'hash' => 'daa62e95528f6b986b85680b600a896452bf2ce6f38921242857dcc5a3460a1b',
+))
+->values(array(
+  'filename' => 'includes/mail.inc',
+  'hash' => '673b413f445966854954699ceccd0deae860c1359e2334c3bbe93e31a52dd9b0',
+))
+->values(array(
+  'filename' => 'includes/menu.inc',
+  'hash' => 'd9460911178cc73d72a414f5a048d5b51f754d4f2e987ee97d474dc2102f2671',
+))
+->values(array(
+  'filename' => 'includes/module.inc',
+  'hash' => 'ac27386cf8bfb02192580b8f51ca354a7ea30e444084203d02f2ce9285e85b60',
+))
+->values(array(
+  'filename' => 'includes/pager.inc',
+  'hash' => '48733f9985fd5879b964b91b69215edb63efc30d24a222df0893d35e0096b9e6',
+))
+->values(array(
+  'filename' => 'includes/password.inc',
+  'hash' => 'c3fc2fef03822dfe9981bab502a37893f8865ff529ad34cf9be9a17e86add510',
+))
+->values(array(
+  'filename' => 'includes/path.inc',
+  'hash' => '992d563dbd6e67f58e358176be09eb1fb75f95510a93cb45bf463ce798670bff',
+))
+->values(array(
+  'filename' => 'includes/registry.inc',
+  'hash' => 'ce22f7715c8037095e6b7dfb86594d3f5ca0908e0614862cc60334852ce3b971',
+))
+->values(array(
+  'filename' => 'includes/session.inc',
+  'hash' => '2a904d6eb8f561b5c6b08c6e7528b76b2b8d7f1de34e9738cebe69a1a0b922b2',
+))
+->values(array(
+  'filename' => 'includes/stream_wrappers.inc',
+  'hash' => '2942d0e700d46b8eae25dd72ede0e355de3b3b2ff309447fb6cbe89543370d2e',
+))
+->values(array(
+  'filename' => 'includes/tablesort.inc',
+  'hash' => '3f3cb2820920f7edc0c3d046ffba4fc4e3b73a699a2492780371141cf501aa50',
+))
+->values(array(
+  'filename' => 'includes/theme.inc',
+  'hash' => 'b82fd541fc6b375ebc833f87eb4ee8eef4b31ee51f7fe5c5321ae831df0a73ee',
+))
+->values(array(
+  'filename' => 'includes/theme.maintenance.inc',
+  'hash' => 'd110314b4d943c3e965fcefe452f6873b53cd6a8844154467dfcbb2b6142dc82',
+))
+->values(array(
+  'filename' => 'includes/token.inc',
+  'hash' => '015328d6573ceece0a0712fcbad890719cff8d65a37839ece36bc64e97d63466',
+))
+->values(array(
+  'filename' => 'includes/unicode.entities.inc',
+  'hash' => '2b858138596d961fbaa4c6e3986e409921df7f76b6ee1b109c4af5970f1e0f54',
+))
+->values(array(
+  'filename' => 'includes/unicode.inc',
+  'hash' => '5409227091e55cef4c1b0bb9c159720aecaa07e7bf2683fe7c242691aa1036cc',
+))
+->values(array(
+  'filename' => 'includes/update.inc',
+  'hash' => '11b276443e4eb4515453c47608f0e019a9f90e4354f2f157502eb9258636b4e5',
+))
+->values(array(
+  'filename' => 'includes/updater.inc',
+  'hash' => '1715fbda750de86ecde8abd71d61886423367d3c9a17c31138638361b1c27e51',
+))
+->values(array(
+  'filename' => 'includes/utility.inc',
+  'hash' => '04865d2c973e3df62f673b68631a880dbf39fdc5e22a5935e2e6b86576fa9030',
+))
+->values(array(
+  'filename' => 'includes/xmlrpc.inc',
+  'hash' => '1176a9e5b5990f8219b48c49bb858a2a980f95428aa519acea19282109e27e83',
+))
+->values(array(
+  'filename' => 'includes/xmlrpcs.inc',
+  'hash' => '2df450cf2153959a4581d8e61867c587f61fcdea5dd2653e36c6a6028fc1b395',
+))
+->values(array(
+  'filename' => 'modules/block/block.test',
+  'hash' => '910abf2e1b7d31e5e5330f34cf21d04e8b8d55f24cfdd7ee3e82e38bf572267e',
+))
+->values(array(
+  'filename' => 'modules/color/color.test',
+  'hash' => '5cc2a668dba0b8905ca360a7bfa04e9e501b61b7a8ac88b51ecca688dda1a21e',
+))
+->values(array(
+  'filename' => 'modules/comment/comment.module',
+  'hash' => '9f9d5a7b5e654276c81d3cbe0089bb990f085823e892dc26b90f825aef8faab7',
+))
+->values(array(
+  'filename' => 'modules/comment/comment.test',
+  'hash' => '262c7f7982e3c3d6dea3646ad5bacc6f0611dffaeb2043675b789edc31bb19ec',
+))
+->values(array(
+  'filename' => 'modules/dashboard/dashboard.test',
+  'hash' => '0472cfe50d7f5f90ba6e55003bbb6a79d8cf4791f3d39740e2f1f3df65743d79',
+))
+->values(array(
+  'filename' => 'modules/dblog/dblog.test',
+  'hash' => '8538535f68ac410003a9d0776915b4ca42e61f9fec848b4d65a79dc28a43d49c',
+))
+->values(array(
+  'filename' => 'modules/field/field.attach.inc',
+  'hash' => '65b6f010e3f9d1868098d771963113307b63fd6e6454c01f0086cd4c0de71414',
+))
+->values(array(
+  'filename' => 'modules/field/field.module',
+  'hash' => 'e4b0bab77e29904d0a95077aa3425e54bf15d8d1185bee26969bf5c59ac68698',
+))
+->values(array(
+  'filename' => 'modules/field/modules/field_sql_storage/field_sql_storage.test',
+  'hash' => 'fa8f69ac79f4190a612faa6d1df3075be39571da2e897265c13e219dccf65b1c',
+))
+->values(array(
+  'filename' => 'modules/field/modules/list/tests/list.test',
+  'hash' => '13e32f6e649512897f4e277d88aa0dbead2a605346f581321396464ab8ad0b0c',
+))
+->values(array(
+  'filename' => 'modules/field/modules/number/number.test',
+  'hash' => 'fd05e554b3ec30431d11dadea24e476f1d534cbd0c2d06bb64f003adb8fbff89',
+))
+->values(array(
+  'filename' => 'modules/field/modules/options/options.test',
+  'hash' => '2f2e15ab5e6da04033933af77663df220db3da30d0546327ef757968d628e43a',
+))
+->values(array(
+  'filename' => 'modules/field/modules/text/text.test',
+  'hash' => '9d74c6d039f55dd7d6447a59186da8d48bf20617bfe58424612798f649797586',
+))
+->values(array(
+  'filename' => 'modules/field/tests/field.test',
+  'hash' => '1b8d334223ca9e8b5cf7ebfc0727baf5552e303ee01040986e82c852bda1741a',
+))
+->values(array(
+  'filename' => 'modules/field_ui/field_ui.test',
+  'hash' => '58c6515fd7b3bf1d48dbf7a8f5f414df8e74b6e525af5d3ccc852060e245526a',
+))
+->values(array(
+  'filename' => 'modules/file/tests/file.test',
+  'hash' => '651e17859b7ba69958a72fa5a3b5bbca40dc53c79a7b512eb83076c81da0960d',
+))
+->values(array(
+  'filename' => 'modules/filter/filter.test',
+  'hash' => 'd1c4f5c10917aa93b6cc1dab58a7f3a86fe4530d21d6c8e63a8fe58a7bd7487f',
+))
+->values(array(
+  'filename' => 'modules/help/help.test',
+  'hash' => 'ff6d9f5fc415451951c21a07b125ff749a7cefba879c27e14bb42eb621c58f9d',
+))
+->values(array(
+  'filename' => 'modules/image/image.test',
+  'hash' => '610f7e9f46a18761d53566c14e34d669d5a29b5d0380c89b6c549dec694cfe56',
+))
+->values(array(
+  'filename' => 'modules/menu/menu.test',
+  'hash' => '5d584ef0191c39c11dda474a6a8f6223f6bc82cdbc41ee5742c8fe28f300949a',
+))
+->values(array(
+  'filename' => 'modules/node/node.module',
+  'hash' => 'cc290bd3cf407046025f88feb8d4e353e579128b101713abdb2e2c63ee637f14',
+))
+->values(array(
+  'filename' => 'modules/node/node.test',
+  'hash' => 'e37213792452a8f98cd0cca66396d9de27464dcc53c50c9032d1225fd794f356',
+))
+->values(array(
+  'filename' => 'modules/path/path.test',
+  'hash' => 'bf6a774f0d9b92a48d752eaa270f430ea21ce35e0c09da423442939ac56f9473',
+))
+->values(array(
+  'filename' => 'modules/rdf/rdf.test',
+  'hash' => '358e2ae2069a15c6ba828f3428ab979632ece7aa0ba33a6a5bdbc1d065961373',
+))
+->values(array(
+  'filename' => 'modules/search/search.extender.inc',
+  'hash' => 'a8c42b2cac7863835f7f632c7fbfd77b6fe936d465b3bbff73b1645a99c0c9d3',
+))
+->values(array(
+  'filename' => 'modules/search/search.test',
+  'hash' => '2a7af7339aae041f1ddf3916fefc58635c3101b9397ea865cf712a87034aa963',
+))
+->values(array(
+  'filename' => 'modules/shortcut/shortcut.test',
+  'hash' => '0bbc6b16348442ce0aa5cd610feed80ac2b2b3887c709fc457ba0a913ae01f3b',
+))
+->values(array(
+  'filename' => 'modules/system/system.archiver.inc',
+  'hash' => 'faa849f3e646a910ab82fd6c8bbf0a4e6b8c60725d7ba81ec0556bd716616cd1',
+))
+->values(array(
+  'filename' => 'modules/system/system.mail.inc',
+  'hash' => 'b7ee9ea80059788d8b53823a91db015dfa6c2a66589a6eca6f97b99340e12d6f',
+))
+->values(array(
+  'filename' => 'modules/system/system.queue.inc',
+  'hash' => '4bfc1845db9c888f3df0937a9ff6d783de77880e6301431db9eb2268b9fe572d',
+))
+->values(array(
+  'filename' => 'modules/system/system.tar.inc',
+  'hash' => '743529eab763be74e8169c945e875381fd77d71e336c6d77b7d28e2dfd023a21',
+))
+->values(array(
+  'filename' => 'modules/system/system.test',
+  'hash' => '1bbebd6438335e2b1b6bf4758b6a02c642a2cbe4180bb03fb7dcce2782c3f0cf',
+))
+->values(array(
+  'filename' => 'modules/system/system.updater.inc',
+  'hash' => 'e2eeed65b833a6215f807b113f6fb4cc3cc487e93efcb1402ed87c536d2c9ea6',
+))
+->values(array(
+  'filename' => 'modules/taxonomy/taxonomy.module',
+  'hash' => 'aab96a917f887d5cd09c517316ca3253d94b08b141a0946449f0a40683411401',
+))
+->values(array(
+  'filename' => 'modules/taxonomy/taxonomy.test',
+  'hash' => 'bf998b97d53e036d6f5a0af8a26dc78b0afa1ae37d2f4aefd4aae087a9351f08',
+))
+->values(array(
+  'filename' => 'modules/update/update.test',
+  'hash' => 'c357e4a16e1d96b13706a03aff7a3f30011f4e997087c040c5cf8ec77a132a5f',
+))
+->values(array(
+  'filename' => 'modules/user/user.module',
+  'hash' => 'd4466cdad9273944d42b059607586bc155d52ca2a6b898523295159e2c5b0aa0',
+))
+->values(array(
+  'filename' => 'modules/user/user.test',
+  'hash' => '9b6cc136d3a267ad039069ac040f9ec33481ef43fd1fb888929750a076302c7c',
+))
+->values(array(
+  'filename' => 'profiles/standard/standard.profile',
+  'hash' => '7237f80e54061c9611c6dc4fcf6225951eedba0704694f4d801673693ba11a05',
+))
+->execute();
+
+db_create_table('role', array(
+  'fields' => array(
+    'rid' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+      'default' => '',
+      'translatable' => TRUE,
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'unique keys' => array(
+    'name' => array(
+      'name',
+    ),
+  ),
+  'primary key' => array(
+    'rid',
+  ),
+  'indexes' => array(
+    'name_weight' => array(
+      'name',
+      'weight',
+    ),
+  ),
+  'module' => 'user',
+  'name' => 'role',
+));
+db_insert('role')->fields(array(
+  'rid',
+  'name',
+  'weight',
+))
+->values(array(
+  'rid' => '3',
+  'name' => 'administrator',
+  'weight' => '2',
+))
+->values(array(
+  'rid' => '1',
+  'name' => 'anonymous user',
+  'weight' => '0',
+))
+->values(array(
+  'rid' => '2',
+  'name' => 'authenticated user',
+  'weight' => '1',
+))
+->execute();
+
+db_create_table('role_permission', array(
+  'fields' => array(
+    'rid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'permission' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'module' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+  ),
+  'primary key' => array(
+    'rid',
+    'permission',
+  ),
+  'indexes' => array(
+    'permission' => array(
+      'permission',
+    ),
+  ),
+  'foreign keys' => array(
+    'role' => array(
+      'table' => 'roles',
+      'columns' => array(
+        'rid' => 'rid',
+      ),
+    ),
+  ),
+  'module' => 'user',
+  'name' => 'role_permission',
+));
+db_insert('role_permission')->fields(array(
+  'rid',
+  'permission',
+  'module',
+))
+->values(array(
+  'rid' => '1',
+  'permission' => 'access comments',
+  'module' => 'comment',
+))
+->values(array(
+  'rid' => '1',
+  'permission' => 'access content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '1',
+  'permission' => 'use text format filtered_html',
+  'module' => 'filter',
+))
+->values(array(
+  'rid' => '2',
+  'permission' => 'access comments',
+  'module' => 'comment',
+))
+->values(array(
+  'rid' => '2',
+  'permission' => 'access content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '2',
+  'permission' => 'post comments',
+  'module' => 'comment',
+))
+->values(array(
+  'rid' => '2',
+  'permission' => 'skip comment approval',
+  'module' => 'comment',
+))
+->values(array(
+  'rid' => '2',
+  'permission' => 'use text format filtered_html',
+  'module' => 'filter',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access administration pages',
+  'module' => 'system',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access comments',
+  'module' => 'comment',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access content overview',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access contextual links',
+  'module' => 'contextual',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access dashboard',
+  'module' => 'dashboard',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access overlay',
+  'module' => 'overlay',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access site in maintenance mode',
+  'module' => 'system',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access site reports',
+  'module' => 'system',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access toolbar',
+  'module' => 'toolbar',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'access user profiles',
+  'module' => 'user',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer actions',
+  'module' => 'system',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer blocks',
+  'module' => 'block',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer comments',
+  'module' => 'comment',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer content types',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer filters',
+  'module' => 'filter',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer image styles',
+  'module' => 'image',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer menu',
+  'module' => 'menu',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer modules',
+  'module' => 'system',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer nodes',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer permissions',
+  'module' => 'user',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer search',
+  'module' => 'search',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer shortcuts',
+  'module' => 'shortcut',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer site configuration',
+  'module' => 'system',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer software updates',
+  'module' => 'system',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer taxonomy',
+  'module' => 'taxonomy',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer themes',
+  'module' => 'system',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer url aliases',
+  'module' => 'path',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'administer users',
+  'module' => 'user',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'block IP addresses',
+  'module' => 'system',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'bypass node access',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'cancel account',
+  'module' => 'user',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'change own username',
+  'module' => 'user',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'create article content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'create page content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'create url aliases',
+  'module' => 'path',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'customize shortcut links',
+  'module' => 'shortcut',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'delete any article content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'delete any page content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'delete own article content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'delete own page content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'delete revisions',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'delete terms in 1',
+  'module' => 'taxonomy',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'edit any article content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'edit any page content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'edit own article content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'edit own comments',
+  'module' => 'comment',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'edit own page content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'edit terms in 1',
+  'module' => 'taxonomy',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'post comments',
+  'module' => 'comment',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'revert revisions',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'search content',
+  'module' => 'search',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'select account cancellation method',
+  'module' => 'user',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'skip comment approval',
+  'module' => 'comment',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'switch shortcut sets',
+  'module' => 'shortcut',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'use advanced search',
+  'module' => 'search',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'use text format filtered_html',
+  'module' => 'filter',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'use text format full_html',
+  'module' => 'filter',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'view own unpublished content',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'view revisions',
+  'module' => 'node',
+))
+->values(array(
+  'rid' => '3',
+  'permission' => 'view the administration theme',
+  'module' => 'system',
+))
+->execute();
+
+db_create_table('search_dataset', array(
+  'fields' => array(
+    'sid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 16,
+      'not null' => TRUE,
+    ),
+    'data' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+      'size' => 'big',
+    ),
+    'reindex' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'primary key' => array(
+    'sid',
+    'type',
+  ),
+  'module' => 'search',
+  'name' => 'search_dataset',
+));
+
+db_create_table('search_index', array(
+  'fields' => array(
+    'word' => array(
+      'type' => 'varchar',
+      'length' => 50,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'sid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 16,
+      'not null' => TRUE,
+    ),
+    'score' => array(
+      'type' => 'float',
+      'not null' => FALSE,
+    ),
+  ),
+  'indexes' => array(
+    'sid_type' => array(
+      'sid',
+      'type',
+    ),
+  ),
+  'foreign keys' => array(
+    'search_dataset' => array(
+      'table' => 'search_dataset',
+      'columns' => array(
+        'sid' => 'sid',
+        'type' => 'type',
+      ),
+    ),
+  ),
+  'primary key' => array(
+    'word',
+    'sid',
+    'type',
+  ),
+  'module' => 'search',
+  'name' => 'search_index',
+));
+
+db_create_table('search_node_links', array(
+  'fields' => array(
+    'sid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 16,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'nid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'caption' => array(
+      'type' => 'text',
+      'size' => 'big',
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'sid',
+    'type',
+    'nid',
+  ),
+  'indexes' => array(
+    'nid' => array(
+      'nid',
+    ),
+  ),
+  'module' => 'search',
+  'name' => 'search_node_links',
+));
+
+db_create_table('search_total', array(
+  'fields' => array(
+    'word' => array(
+      'type' => 'varchar',
+      'length' => 50,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'count' => array(
+      'type' => 'float',
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'word',
+  ),
+  'module' => 'search',
+  'name' => 'search_total',
+));
+
+db_create_table('semaphore', array(
+  'fields' => array(
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'value' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'expire' => array(
+      'type' => 'float',
+      'size' => 'big',
+      'not null' => TRUE,
+    ),
+  ),
+  'indexes' => array(
+    'value' => array(
+      'value',
+    ),
+    'expire' => array(
+      'expire',
+    ),
+  ),
+  'primary key' => array(
+    'name',
+  ),
+  'module' => 'system',
+  'name' => 'semaphore',
+));
+
+db_create_table('sequences', array(
+  'fields' => array(
+    'value' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'value',
+  ),
+  'module' => 'system',
+  'name' => 'sequences',
+));
+db_insert('sequences')->fields(array(
+  'value',
+))
+->values(array(
+  'value' => '7',
+))
+->execute();
+
+db_create_table('sessions', array(
+  'fields' => array(
+    'uid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'sid' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+    ),
+    'ssid' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'hostname' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'timestamp' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'cache' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'session' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+    ),
+  ),
+  'primary key' => array(
+    'sid',
+    'ssid',
+  ),
+  'indexes' => array(
+    'timestamp' => array(
+      'timestamp',
+    ),
+    'uid' => array(
+      'uid',
+    ),
+    'ssid' => array(
+      'ssid',
+    ),
+  ),
+  'foreign keys' => array(
+    'session_user' => array(
+      'table' => 'users',
+      'columns' => array(
+        'uid' => 'uid',
+      ),
+    ),
+  ),
+  'module' => 'system',
+  'name' => 'sessions',
+));
+
+db_create_table('shortcut_set', array(
+  'fields' => array(
+    'set_name' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'title' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+  ),
+  'primary key' => array(
+    'set_name',
+  ),
+  'foreign keys' => array(
+    'menu_name' => array(
+      'table' => 'menu_links',
+      'columns' => array(
+        'set_name' => 'menu_name',
+      ),
+    ),
+  ),
+  'module' => 'shortcut',
+  'name' => 'shortcut_set',
+));
+db_insert('shortcut_set')->fields(array(
+  'set_name',
+  'title',
+))
+->values(array(
+  'set_name' => 'shortcut-set-1',
+  'title' => 'Default',
+))
+->execute();
+
+db_create_table('shortcut_set_users', array(
+  'fields' => array(
+    'uid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'set_name' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+  ),
+  'primary key' => array(
+    'uid',
+  ),
+  'indexes' => array(
+    'set_name' => array(
+      'set_name',
+    ),
+  ),
+  'foreign keys' => array(
+    'set_user' => array(
+      'table' => 'users',
+      'columns' => array(
+        'uid' => 'uid',
+      ),
+    ),
+    'set_name' => array(
+      'table' => 'shortcut_set',
+      'columns' => array(
+        'set_name' => 'set_name',
+      ),
+    ),
+  ),
+  'module' => 'shortcut',
+  'name' => 'shortcut_set_users',
+));
+
+db_create_table('system', array(
+  'fields' => array(
+    'filename' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 12,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'owner' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'status' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'bootstrap' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'schema_version' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => -1,
+      'size' => 'small',
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'info' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+    ),
+  ),
+  'primary key' => array(
+    'filename',
+  ),
+  'indexes' => array(
+    'system_list' => array(
+      'status',
+      'bootstrap',
+      'type',
+      'weight',
+      'name',
+    ),
+    'type_name' => array(
+      'type',
+      'name',
+    ),
+  ),
+  'module' => 'system',
+  'name' => 'system',
+));
+db_insert('system')->fields(array(
+  'filename',
+  'name',
+  'type',
+  'owner',
+  'status',
+  'bootstrap',
+  'schema_version',
+  'weight',
+  'info',
+))
+->values(array(
+  'filename' => 'modules/aggregator/aggregator.module',
+  'name' => 'aggregator',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:13:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/aggregator/tests/aggregator_test.module',
+  'name' => 'aggregator_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/block/block.module',
+  'name' => 'block',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7008',
+  'weight' => '-5',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/block/tests/block_test.module',
+  'name' => 'block_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/blog/blog.module',
+  'name' => 'blog',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:11:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/book/book.module',
+  'name' => 'book',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:13:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/color/color.module',
+  'name' => 'color',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7001',
+  'weight' => '0',
+  'info' => 'a:11:{s:4:"name";s:5:"Color";s:11:"description";s:70:"Allows administrators to change the color scheme of compatible themes.";s:7:"package";s:4:"Core";s:7:"version";s:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/comment/comment.module',
+  'name' => 'comment',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7008',
+  'weight' => '0',
+  'info' => 'a:13:{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:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/contact/contact.module',
+  'name' => 'contact',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/contextual/contextual.module',
+  'name' => 'contextual',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:11:{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:3:"7.8";s:4:"core";s:3:"7.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/dashboard/dashboard.module',
+  'name' => 'dashboard',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/dblog/dblog.module',
+  'name' => 'dblog',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '1',
+  'schema_version' => '7001',
+  'weight' => '0',
+  'info' => 'a:11:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/field/field.module',
+  'name' => 'field',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7001',
+  'weight' => '0',
+  'info' => 'a:13:{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:3:"7.8";s:4:"core";s:3:"7.x";s:5:"files";a:3:{i:0;s:12:"field.module";i:1;s:16:"field.attach.inc";i:2;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:"1314817616";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/field/modules/field_sql_storage/field_sql_storage.module',
+  'name' => 'field_sql_storage',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7002',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/field/modules/list/list.module',
+  'name' => 'list',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7002',
+  'weight' => '0',
+  'info' => 'a:11:{s:4:"name";s:4:"List";s:11:"description";s:69:"Defines list field types. Use with Options to create selection lists.";s:7:"package";s:4:"Core";s:7:"version";s:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/field/modules/list/tests/list_test.module',
+  'name' => 'list_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/field/modules/number/number.module',
+  'name' => 'number',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:11:{s:4:"name";s:6:"Number";s:11:"description";s:28:"Defines numeric field types.";s:7:"package";s:4:"Core";s:7:"version";s:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/field/modules/options/options.module',
+  'name' => 'options',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:11:{s:4:"name";s:7:"Options";s:11:"description";s:82:"Defines selection, check box and radio button widgets for text and numeric fields.";s:7:"package";s:4:"Core";s:7:"version";s:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/field/modules/text/text.module',
+  'name' => 'text',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7000',
+  'weight' => '0',
+  'info' => 'a:13:{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:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;s:11:"explanation";s:80:"Field type(s) in use - see <a href="scripts/admin/reports/fields">Field list</a>";}',
+))
+->values(array(
+  'filename' => 'modules/field/tests/field_test.module',
+  'name' => 'field_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/field_ui/field_ui.module',
+  'name' => 'field_ui',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:11:{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:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/file/file.module',
+  'name' => 'file',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:11:{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:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/file/tests/file_module_test.module',
+  'name' => 'file_module_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/filter/filter.module',
+  'name' => 'filter',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7010',
+  'weight' => '0',
+  'info' => 'a:13:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/forum/forum.module',
+  'name' => 'forum',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:13:{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:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/help/help.module',
+  'name' => 'help',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:11:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/image/image.module',
+  'name' => 'image',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7001',
+  'weight' => '0',
+  'info' => 'a:14:{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:3:"7.8";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:"1314817616";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 <a href="scripts/admin/reports/fields">Field list</a>";}',
+))
+->values(array(
+  'filename' => 'modules/image/tests/image_module_test.module',
+  'name' => 'image_module_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/locale/locale.module',
+  'name' => 'locale',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/locale/tests/locale_test.module',
+  'name' => 'locale_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/menu/menu.module',
+  'name' => 'menu',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7002',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/node/node.module',
+  'name' => 'node',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7012',
+  'weight' => '0',
+  'info' => 'a:14:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/node/tests/node_access_test.module',
+  'name' => 'node_access_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/node/tests/node_test.module',
+  'name' => 'node_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/node/tests/node_test_exception.module',
+  'name' => 'node_test_exception',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/openid/openid.module',
+  'name' => 'openid',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:11:{s:4:"name";s:6:"OpenID";s:11:"description";s:48:"Allows users to log into your site using OpenID.";s:7:"version";s:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/openid/tests/openid_test.module',
+  'name' => 'openid_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/overlay/overlay.module',
+  'name' => 'overlay',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '1',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:11:{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:3:"7.8";s:4:"core";s:3:"7.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/path/path.module',
+  'name' => 'path',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/php/php.module',
+  'name' => 'php',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:11:{s:4:"name";s:10:"PHP filter";s:11:"description";s:50:"Allows embedded PHP code/snippets to be evaluated.";s:7:"package";s:4:"Core";s:7:"version";s:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/poll/poll.module',
+  'name' => 'poll',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/profile/profile.module',
+  'name' => 'profile',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:13:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/rdf/rdf.module',
+  'name' => 'rdf',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:11:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/rdf/tests/rdf_test.module',
+  'name' => 'rdf_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/search/search.module',
+  'name' => 'search',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7000',
+  'weight' => '0',
+  'info' => 'a:13:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/search/tests/search_embedded_form.module',
+  'name' => 'search_embedded_form',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/search/tests/search_extra_type.module',
+  'name' => 'search_extra_type',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/shortcut/shortcut.module',
+  'name' => 'shortcut',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/simpletest.module',
+  'name' => 'simpletest',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{s:4:"name";s:7:"Testing";s:11:"description";s:53:"Provides a framework for unit and functional testing.";s:7:"package";s:4:"Core";s:7:"version";s:3:"7.8";s:4:"core";s:3:"7.x";s:5:"files";a:42:{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:32:"tests/entity_crud_hook_test.test";i:10;s:23:"tests/entity_query.test";i:11;s:16:"tests/error.test";i:12;s:15:"tests/file.test";i:13;s:23:"tests/filetransfer.test";i:14;s:15:"tests/form.test";i:15;s:16:"tests/graph.test";i:16;s:16:"tests/image.test";i:17;s:15:"tests/lock.test";i:18;s:15:"tests/mail.test";i:19;s:15:"tests/menu.test";i:20;s:17:"tests/module.test";i:21;s:19:"tests/password.test";i:22;s:15:"tests/path.test";i:23;s:19:"tests/registry.test";i:24;s:17:"tests/schema.test";i:25;s:18:"tests/session.test";i:26;s:20:"tests/tablesort.test";i:27;s:16:"tests/theme.test";i:28;s:18:"tests/unicode.test";i:29;s:17:"tests/update.test";i:30;s:17:"tests/xmlrpc.test";i:31;s:26:"tests/upgrade/upgrade.test";i:32;s:34:"tests/upgrade/upgrade.comment.test";i:33;s:33:"tests/upgrade/upgrade.filter.test";i:34;s:32:"tests/upgrade/upgrade.forum.test";i:35;s:33:"tests/upgrade/upgrade.locale.test";i:36;s:31:"tests/upgrade/upgrade.menu.test";i:37;s:31:"tests/upgrade/upgrade.node.test";i:38;s:35:"tests/upgrade/upgrade.taxonomy.test";i:39;s:39:"tests/upgrade/upgrade.translatable.test";i:40;s:33:"tests/upgrade/upgrade.upload.test";i:41;s:31:"tests/upgrade/upgrade.user.test";}s:9:"configure";s:41:"admin/config/development/testing/settings";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/actions_loop_test.module',
+  'name' => 'actions_loop_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/ajax_forms_test.module',
+  'name' => 'ajax_forms_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/ajax_test.module',
+  'name' => 'ajax_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/batch_test.module',
+  'name' => 'batch_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/common_test.module',
+  'name' => 'common_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:13:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/common_test_cron_helper.module',
+  'name' => 'common_test_cron_helper',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/database_test.module',
+  'name' => 'database_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.module',
+  'name' => 'drupal_system_listing_compatible_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.module',
+  'name' => 'drupal_system_listing_incompatible_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/entity_cache_test.module',
+  'name' => 'entity_cache_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/entity_cache_test_dependency.module',
+  'name' => 'entity_cache_test_dependency',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/entity_crud_hook_test.module',
+  'name' => 'entity_crud_hook_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/error_test.module',
+  'name' => 'error_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/file_test.module',
+  'name' => 'file_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/filter_test.module',
+  'name' => 'filter_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/form_test.module',
+  'name' => 'form_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/image_test.module',
+  'name' => 'image_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/menu_test.module',
+  'name' => 'menu_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/module_test.module',
+  'name' => 'module_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/requirements1_test.module',
+  'name' => 'requirements1_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => "a:12:{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:3:\"7.8\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1314817616\";s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}",
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/requirements2_test.module',
+  'name' => 'requirements2_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => "a:12:{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:3:\"7.8\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1314817616\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}",
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/session_test.module',
+  'name' => 'session_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/system_dependencies_test.module',
+  'name' => 'system_dependencies_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/system_test.module',
+  'name' => 'system_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/taxonomy_test.module',
+  'name' => 'taxonomy_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/theme_test.module',
+  'name' => 'theme_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/update_test_1.module',
+  'name' => 'update_test_1',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/update_test_2.module',
+  'name' => 'update_test_2',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/update_test_3.module',
+  'name' => 'update_test_3',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/url_alter_test.module',
+  'name' => 'url_alter_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/simpletest/tests/xmlrpc_test.module',
+  'name' => 'xmlrpc_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/statistics/statistics.module',
+  'name' => 'statistics',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/syslog/syslog.module',
+  'name' => 'syslog',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:11:{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:3:"7.8";s:4:"core";s:3:"7.x";s:5:"files";a:1:{i:0;s:11:"syslog.test";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/system/system.module',
+  'name' => 'system',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '1',
+  'schema_version' => '7071',
+  'weight' => '0',
+  'info' => 'a:13:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/taxonomy/taxonomy.module',
+  'name' => 'taxonomy',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7010',
+  'weight' => '0',
+  'info' => 'a:14:{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:3:"7.8";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:"1314817616";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 <a href="scripts/admin/reports/fields">Field list</a>";}',
+))
+->values(array(
+  'filename' => 'modules/toolbar/toolbar.module',
+  'name' => 'toolbar',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '0',
+  'info' => 'a:11:{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:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/tracker/tracker.module',
+  'name' => 'tracker',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:11:{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:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/translation/tests/translation_test.module',
+  'name' => 'translation_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/translation/translation.module',
+  'name' => 'translation',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:11:{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:3:"7.8";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:"1314817616";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/trigger/tests/trigger_test.module',
+  'name' => 'trigger_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/trigger/trigger.module',
+  'name' => 'trigger',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/update/tests/aaa_update_test.module',
+  'name' => 'aaa_update_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/update/tests/bbb_update_test.module',
+  'name' => 'bbb_update_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/update/tests/ccc_update_test.module',
+  'name' => 'ccc_update_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/update/tests/update_test.module',
+  'name' => 'update_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/update/update.module',
+  'name' => 'update',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7001',
+  'weight' => '0',
+  'info' => 'a:12:{s:4:"name";s:14:"Update manager";s:11:"description";s:104:"Checks for available updates, and can securely install or update modules and themes via a web interface.";s:7:"version";s:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/user/tests/user_form_test.module',
+  'name' => 'user_form_test',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:12:{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:3:"7.8";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'modules/user/user.module',
+  'name' => 'user',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '7017',
+  'weight' => '0',
+  'info' => 'a:14:{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:3:"7.8";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:"1314817616";s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}',
+))
+->values(array(
+  'filename' => 'profiles/standard/standard.profile',
+  'name' => 'standard',
+  'type' => 'module',
+  'owner' => '',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '0',
+  'weight' => '1000',
+  'info' => 'a:14:{s:4:"name";s:8:"Standard";s:11:"description";s:51:"Install with commonly used features pre-configured.";s:7:"version";s:3:"7.8";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:5:"files";a:1:{i:0;s:16:"standard.profile";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";s:7:"package";s:5:"Other";s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;s:6:"hidden";b:1;s:8:"required";b:1;s:17:"distribution_name";s:6:"Drupal";}',
+))
+->values(array(
+  'filename' => 'themes/bartik/bartik.info',
+  'name' => 'bartik',
+  'type' => 'theme',
+  'owner' => 'themes/engines/phptemplate/phptemplate.engine',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:18:{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:3:"7.8";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:"1314817616";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: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";}}',
+))
+->values(array(
+  'filename' => 'themes/garland/garland.info',
+  'name' => 'garland',
+  'type' => 'theme',
+  'owner' => 'themes/engines/phptemplate/phptemplate.engine',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:18:{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:3:"7.8";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:"1314817616";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: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";}}',
+))
+->values(array(
+  'filename' => 'themes/seven/seven.info',
+  'name' => 'seven',
+  'type' => 'theme',
+  'owner' => 'themes/engines/phptemplate/phptemplate.engine',
+  'status' => '1',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:18:{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:3:"7.8";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:"1314817616";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: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";}}',
+))
+->values(array(
+  'filename' => 'themes/stark/stark.info',
+  'name' => 'stark',
+  'type' => 'theme',
+  'owner' => 'themes/engines/phptemplate/phptemplate.engine',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => "a:17:{s:4:\"name\";s:5:\"Stark\";s:11:\"description\";s:208:\"This theme demonstrates Drupal's default HTML markup and CSS styles. To learn how to build your own theme and override Drupal's default code, see the <a href=\"http://drupal.org/theme-guide\">Theming Guide</a>.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:3:\"7.8\";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:\"1314817616\";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: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\";}}",
+))
+->values(array(
+  'filename' => 'themes/tests/test_theme/test_theme.info',
+  'name' => 'test_theme',
+  'type' => 'theme',
+  'owner' => 'themes/engines/phptemplate/phptemplate.engine',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:17:{s:4:"name";s:10:"Test theme";s:11:"description";s:34:"Theme for testing the theme system";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:15:"system.base.css";s:39:"themes/tests/test_theme/system.base.css";}}s:7:"version";s:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";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:38:"themes/tests/test_theme/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}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";}}',
+))
+->values(array(
+  'filename' => 'themes/tests/update_test_basetheme/update_test_basetheme.info',
+  'name' => 'update_test_basetheme',
+  'type' => 'theme',
+  'owner' => 'themes/engines/phptemplate/phptemplate.engine',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:17:{s:4:"name";s:22:"Update test base theme";s:11:"description";s:63:"Test theme which acts as a base theme for other test subthemes.";s:4:"core";s:3:"7.x";s:6:"hidden";b:1;s:7:"version";s:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";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:49:"themes/tests/update_test_basetheme/screenshot.png";s:3:"php";s:5:"5.2.4";s:11:"stylesheets";a:0:{}s:7:"scripts";a:0:{}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";}}',
+))
+->values(array(
+  'filename' => 'themes/tests/update_test_subtheme/update_test_subtheme.info',
+  'name' => 'update_test_subtheme',
+  'type' => 'theme',
+  'owner' => 'themes/engines/phptemplate/phptemplate.engine',
+  'status' => '0',
+  'bootstrap' => '0',
+  'schema_version' => '-1',
+  'weight' => '0',
+  'info' => 'a:18:{s:4:"name";s:20:"Update test subtheme";s:11:"description";s:62:"Test theme which uses update_test_basetheme as the base theme.";s:4:"core";s:3:"7.x";s:10:"base theme";s:21:"update_test_basetheme";s:6:"hidden";b:1;s:7:"version";s:3:"7.8";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1314817616";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:48:"themes/tests/update_test_subtheme/screenshot.png";s:3:"php";s:5:"5.2.4";s:11:"stylesheets";a:0:{}s:7:"scripts";a:0:{}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";}}',
+))
+->execute();
+
+db_create_table('taxonomy_index', array(
+  'fields' => array(
+    'nid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'sticky' => array(
+      'type' => 'int',
+      'not null' => FALSE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'term_node' => array(
+      'tid',
+      'sticky',
+      'created',
+    ),
+    'nid' => array(
+      'nid',
+    ),
+  ),
+  'foreign keys' => array(
+    'tracked_node' => array(
+      'table' => 'node',
+      'columns' => array(
+        'nid' => 'nid',
+      ),
+    ),
+    'term' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'tid' => 'tid',
+      ),
+    ),
+  ),
+  'module' => 'taxonomy',
+  'name' => 'taxonomy_index',
+));
+db_insert('taxonomy_index')->fields(array(
+  'nid',
+  'tid',
+  'sticky',
+  'created',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '1',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '2',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '3',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '5',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '4',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '6',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '7',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '8',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '9',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '10',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '11',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '12',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '13',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '14',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '15',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '16',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '17',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '18',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '19',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '20',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '21',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '22',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '23',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '24',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '25',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '26',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '27',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '28',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '29',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '30',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '31',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '32',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '33',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '34',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '35',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '36',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '37',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '38',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '39',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '40',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '41',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '42',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '43',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '44',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '45',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '46',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '47',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '5',
+  'tid' => '48',
+  'sticky' => '0',
+  'created' => '1263110400',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '1',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '2',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '3',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '6',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '4',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '5',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '7',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '8',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '9',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '10',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '11',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '12',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '13',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '14',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '15',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '16',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '17',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '18',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '19',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '20',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '21',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '22',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '23',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '24',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '25',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '26',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '27',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '28',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '29',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '30',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '31',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '32',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '33',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '34',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '35',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '36',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '37',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '38',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '39',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '40',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '41',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '42',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '43',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '44',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '45',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '46',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '47',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '6',
+  'tid' => '48',
+  'sticky' => '0',
+  'created' => '1263196800',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '1',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '2',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '3',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '4',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '5',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '6',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '7',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '8',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '9',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '10',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '11',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '12',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '13',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '14',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '15',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '16',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '17',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '18',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '19',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '20',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '21',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '22',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '23',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '24',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '25',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '26',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '27',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '28',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '29',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '30',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '31',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '32',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '33',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '34',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '35',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '36',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '37',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '38',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '39',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '42',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '40',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '41',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '43',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '44',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '45',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '46',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '47',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '7',
+  'tid' => '48',
+  'sticky' => '0',
+  'created' => '1263283200',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '1',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '2',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '3',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '4',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '5',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '6',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '7',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '8',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '9',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '10',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '11',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '12',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '13',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '14',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '15',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '16',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '17',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '18',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '19',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '20',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '21',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '22',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '23',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '24',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '25',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '26',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '27',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '28',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '29',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '30',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '31',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '32',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '33',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '34',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '35',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '36',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '37',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '38',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '39',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '41',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '40',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '42',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '43',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '44',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '45',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '46',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '47',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->values(array(
+  'nid' => '8',
+  'tid' => '48',
+  'sticky' => '0',
+  'created' => '1263369600',
+))
+->execute();
+
+db_create_table('taxonomy_term_data', array(
+  'fields' => array(
+    'tid' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'vid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+      'translatable' => TRUE,
+    ),
+    'description' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+      'translatable' => TRUE,
+    ),
+    'format' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => FALSE,
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'primary key' => array(
+    'tid',
+  ),
+  'foreign keys' => array(
+    'vocabulary' => array(
+      'table' => 'taxonomy_vocabulary',
+      'columns' => array(
+        'vid' => 'vid',
+      ),
+    ),
+  ),
+  'indexes' => array(
+    'taxonomy_tree' => array(
+      'vid',
+      'weight',
+      'name',
+    ),
+    'vid_name' => array(
+      'vid',
+      'name',
+    ),
+    'name' => array(
+      'name',
+    ),
+  ),
+  'module' => 'taxonomy',
+  'name' => 'taxonomy_term_data',
+));
+db_insert('taxonomy_term_data')->fields(array(
+  'tid',
+  'vid',
+  'name',
+  'description',
+  'format',
+  'weight',
+))
+->values(array(
+  'tid' => '1',
+  'vid' => '0',
+  'name' => 'term 1 of vocabulary 1 (j=0)',
+  'description' => 'description of term 1 of vocabulary 1 (j=0)',
+  'format' => 'filtered_html',
+  'weight' => '0',
+))
+->values(array(
+  'tid' => '2',
+  'vid' => '0',
+  'name' => 'term 2 of vocabulary 2 (j=0)',
+  'description' => 'description of term 2 of vocabulary 2 (j=0)',
+  'format' => 'filtered_html',
+  'weight' => '3',
+))
+->values(array(
+  'tid' => '3',
+  'vid' => '0',
+  'name' => 'term 3 of vocabulary 2 (j=1)',
+  'description' => 'description of term 3 of vocabulary 2 (j=1)',
+  'format' => 'filtered_html',
+  'weight' => '4',
+))
+->values(array(
+  'tid' => '4',
+  'vid' => '0',
+  'name' => 'term 4 of vocabulary 3 (j=0)',
+  'description' => 'description of term 4 of vocabulary 3 (j=0)',
+  'format' => 'filtered_html',
+  'weight' => '6',
+))
+->values(array(
+  'tid' => '5',
+  'vid' => '0',
+  'name' => 'term 5 of vocabulary 3 (j=1)',
+  'description' => 'description of term 5 of vocabulary 3 (j=1)',
+  'format' => 'filtered_html',
+  'weight' => '7',
+))
+->values(array(
+  'tid' => '6',
+  'vid' => '0',
+  'name' => 'term 6 of vocabulary 3 (j=2)',
+  'description' => 'description of term 6 of vocabulary 3 (j=2)',
+  'format' => 'filtered_html',
+  'weight' => '8',
+))
+->values(array(
+  'tid' => '7',
+  'vid' => '0',
+  'name' => 'term 7 of vocabulary 4 (j=0)',
+  'description' => 'description of term 7 of vocabulary 4 (j=0)',
+  'format' => 'filtered_html',
+  'weight' => '9',
+))
+->values(array(
+  'tid' => '8',
+  'vid' => '0',
+  'name' => 'term 8 of vocabulary 5 (j=0)',
+  'description' => 'description of term 8 of vocabulary 5 (j=0)',
+  'format' => 'filtered_html',
+  'weight' => '12',
+))
+->values(array(
+  'tid' => '9',
+  'vid' => '0',
+  'name' => 'term 9 of vocabulary 5 (j=1)',
+  'description' => 'description of term 9 of vocabulary 5 (j=1)',
+  'format' => 'filtered_html',
+  'weight' => '13',
+))
+->values(array(
+  'tid' => '10',
+  'vid' => '0',
+  'name' => 'term 10 of vocabulary 6 (j=0)',
+  'description' => 'description of term 10 of vocabulary 6 (j=0)',
+  'format' => 'filtered_html',
+  'weight' => '15',
+))
+->values(array(
+  'tid' => '11',
+  'vid' => '0',
+  'name' => 'term 11 of vocabulary 6 (j=1)',
+  'description' => 'description of term 11 of vocabulary 6 (j=1)',
+  'format' => 'filtered_html',
+  'weight' => '16',
+))
+->values(array(
+  'tid' => '12',
+  'vid' => '0',
+  'name' => 'term 12 of vocabulary 6 (j=2)',
+  'description' => 'description of term 12 of vocabulary 6 (j=2)',
+  'format' => 'filtered_html',
+  'weight' => '17',
+))
+->values(array(
+  'tid' => '13',
+  'vid' => '0',
+  'name' => 'term 13 of vocabulary 7 (j=0)',
+  'description' => 'description of term 13 of vocabulary 7 (j=0)',
+  'format' => 'filtered_html',
+  'weight' => '18',
+))
+->values(array(
+  'tid' => '14',
+  'vid' => '0',
+  'name' => 'term 14 of vocabulary 8 (j=0)',
+  'description' => 'description of term 14 of vocabulary 8 (j=0)',
+  'format' => 'filtered_html',
+  'weight' => '21',
+))
+->values(array(
+  'tid' => '15',
+  'vid' => '0',
+  'name' => 'term 15 of vocabulary 8 (j=1)',
+  'description' => 'description of term 15 of vocabulary 8 (j=1)',
+  'format' => 'filtered_html',
+  'weight' => '22',
+))
+->values(array(
+  'tid' => '16',
+  'vid' => '0',
+  'name' => 'term 16 of vocabulary 9 (j=0)',
+  'description' => 'description of term 16 of vocabulary 9 (j=0)',
+  'format' => 'filtered_html',
+  'weight' => '24',
+))
+->values(array(
+  'tid' => '17',
+  'vid' => '0',
+  'name' => 'term 17 of vocabulary 9 (j=1)',
+  'description' => 'description of term 17 of vocabulary 9 (j=1)',
+  'format' => 'filtered_html',
+  'weight' => '25',
+))
+->values(array(
+  'tid' => '18',
+  'vid' => '0',
+  'name' => 'term 18 of vocabulary 9 (j=2)',
+  'description' => 'description of term 18 of vocabulary 9 (j=2)',
+  'format' => 'filtered_html',
+  'weight' => '26',
+))
+->values(array(
+  'tid' => '19',
+  'vid' => '0',
+  'name' => 'term 19 of vocabulary 10 (j=0)',
+  'description' => 'description of term 19 of vocabulary 10 (j=0)',
+  'format' => 'filtered_html',
+  'weight' => '27',
+))
+->values(array(
+  'tid' => '20',
+  'vid' => '0',
+  'name' => 'term 20 of vocabulary 11 (j=0)',
+  'description' => 'description of term 20 of vocabulary 11 (j=0)',
+  'format' => 'filtered_html',
+  'weight' => '30',
+))
+->values(array(
+  'tid' => '21',
+  'vid' => '0',
+  'name' => 'term 21 of vocabulary 11 (j=1)',
+  'description' => 'description of term 21 of vocabulary 11 (j=1)',
+  'format' => 'filtered_html',
+  'weight' => '31',
+))
+->values(array(
+  'tid' => '22',
+  'vid' => '0',
+  'name' => 'term 22 of vocabulary 12 (j=0)',
+  'description' => 'description of term 22 of vocabulary 12 (j=0)',
+  'format' => 'filtered_html',
+  'weight' => '33',
+))
+->values(array(
+  'tid' => '23',
+  'vid' => '0',
+  'name' => 'term 23 of vocabulary 12 (j=1)',
+  'description' => 'description of term 23 of vocabulary 12 (j=1)',
+  'format' => 'filtered_html',
+  'weight' => '34',
+))
+->values(array(
+  'tid' => '24',
+  'vid' => '0',
+  'name' => 'term 24 of vocabulary 12 (j=2)',
+  'description' => 'description of term 24 of vocabulary 12 (j=2)',
+  'format' => 'filtered_html',
+  'weight' => '35',
+))
+->values(array(
+  'tid' => '25',
+  'vid' => '0',
+  'name' => 'term 25 of vocabulary 13 (j=0)',
+  'description' => 'description of term 25 of vocabulary 13 (j=0)',
+  'format' => 'filtered_html',
+  'weight' => '36',
+))
+->values(array(
+  'tid' => '26',
+  'vid' => '0',
+  'name' => 'term 26 of vocabulary 14 (j=0)',
+  'description' => 'description of term 26 of vocabulary 14 (j=0)',
+  'format' => 'filtered_html',
+  'weight' => '39',
+))
+->values(array(
+  'tid' => '27',
+  'vid' => '0',
+  'name' => 'term 27 of vocabulary 14 (j=1)',
+  'description' => 'description of term 27 of vocabulary 14 (j=1)',
+  'format' => 'filtered_html',
+  'weight' => '40',
+))
+->values(array(
+  'tid' => '28',
+  'vid' => '0',
+  'name' => 'term 28 of vocabulary 15 (j=0)',
+  'description' => 'description of term 28 of vocabulary 15 (j=0)',
+  'format' => 'filtered_html',
+  'weight' => '42',
+))
+->values(array(
+  'tid' => '29',
+  'vid' => '0',
+  'name' => 'term 29 of vocabulary 15 (j=1)',
+  'description' => 'description of term 29 of vocabulary 15 (j=1)',
+  'format' => 'filtered_html',
+  'weight' => '43',
+))
+->values(array(
+  'tid' => '30',
+  'vid' => '0',
+  'name' => 'term 30 of vocabulary 15 (j=2)',
+  'description' => 'description of term 30 of vocabulary 15 (j=2)',
+  'format' => 'filtered_html',
+  'weight' => '44',
+))
+->values(array(
+  'tid' => '31',
+  'vid' => '0',
+  'name' => 'term 31 of vocabulary 16 (j=0)',
+  'description' => 'description of term 31 of vocabulary 16 (j=0)',
+  'format' => 'filtered_html',
+  'weight' => '45',
+))
+->values(array(
+  'tid' => '32',
+  'vid' => '0',
+  'name' => 'term 32 of vocabulary 17 (j=0)',
+  'description' => 'description of term 32 of vocabulary 17 (j=0)',
+  'format' => 'filtered_html',
+  'weight' => '48',
+))
+->values(array(
+  'tid' => '33',
+  'vid' => '0',
+  'name' => 'term 33 of vocabulary 17 (j=1)',
+  'description' => 'description of term 33 of vocabulary 17 (j=1)',
+  'format' => 'filtered_html',
+  'weight' => '49',
+))
+->values(array(
+  'tid' => '34',
+  'vid' => '0',
+  'name' => 'term 34 of vocabulary 18 (j=0)',
+  'description' => 'description of term 34 of vocabulary 18 (j=0)',
+  'format' => 'filtered_html',
+  'weight' => '51',
+))
+->values(array(
+  'tid' => '35',
+  'vid' => '0',
+  'name' => 'term 35 of vocabulary 18 (j=1)',
+  'description' => 'description of term 35 of vocabulary 18 (j=1)',
+  'format' => 'filtered_html',
+  'weight' => '52',
+))
+->values(array(
+  'tid' => '36',
+  'vid' => '0',
+  'name' => 'term 36 of vocabulary 18 (j=2)',
+  'description' => 'description of term 36 of vocabulary 18 (j=2)',
+  'format' => 'filtered_html',
+  'weight' => '53',
+))
+->values(array(
+  'tid' => '37',
+  'vid' => '0',
+  'name' => 'term 37 of vocabulary 19 (j=0)',
+  'description' => 'description of term 37 of vocabulary 19 (j=0)',
+  'format' => 'filtered_html',
+  'weight' => '54',
+))
+->values(array(
+  'tid' => '38',
+  'vid' => '0',
+  'name' => 'term 38 of vocabulary 20 (j=0)',
+  'description' => 'description of term 38 of vocabulary 20 (j=0)',
+  'format' => 'filtered_html',
+  'weight' => '57',
+))
+->values(array(
+  'tid' => '39',
+  'vid' => '0',
+  'name' => 'term 39 of vocabulary 20 (j=1)',
+  'description' => 'description of term 39 of vocabulary 20 (j=1)',
+  'format' => 'filtered_html',
+  'weight' => '58',
+))
+->values(array(
+  'tid' => '40',
+  'vid' => '0',
+  'name' => 'term 40 of vocabulary 21 (j=0)',
+  'description' => 'description of term 40 of vocabulary 21 (j=0)',
+  'format' => 'filtered_html',
+  'weight' => '60',
+))
+->values(array(
+  'tid' => '41',
+  'vid' => '0',
+  'name' => 'term 41 of vocabulary 21 (j=1)',
+  'description' => 'description of term 41 of vocabulary 21 (j=1)',
+  'format' => 'filtered_html',
+  'weight' => '61',
+))
+->values(array(
+  'tid' => '42',
+  'vid' => '0',
+  'name' => 'term 42 of vocabulary 21 (j=2)',
+  'description' => 'description of term 42 of vocabulary 21 (j=2)',
+  'format' => 'filtered_html',
+  'weight' => '62',
+))
+->values(array(
+  'tid' => '43',
+  'vid' => '0',
+  'name' => 'term 43 of vocabulary 22 (j=0)',
+  'description' => 'description of term 43 of vocabulary 22 (j=0)',
+  'format' => 'filtered_html',
+  'weight' => '63',
+))
+->values(array(
+  'tid' => '44',
+  'vid' => '0',
+  'name' => 'term 44 of vocabulary 23 (j=0)',
+  'description' => 'description of term 44 of vocabulary 23 (j=0)',
+  'format' => 'filtered_html',
+  'weight' => '66',
+))
+->values(array(
+  'tid' => '45',
+  'vid' => '0',
+  'name' => 'term 45 of vocabulary 23 (j=1)',
+  'description' => 'description of term 45 of vocabulary 23 (j=1)',
+  'format' => 'filtered_html',
+  'weight' => '67',
+))
+->values(array(
+  'tid' => '46',
+  'vid' => '0',
+  'name' => 'term 46 of vocabulary 24 (j=0)',
+  'description' => 'description of term 46 of vocabulary 24 (j=0)',
+  'format' => 'filtered_html',
+  'weight' => '69',
+))
+->values(array(
+  'tid' => '47',
+  'vid' => '0',
+  'name' => 'term 47 of vocabulary 24 (j=1)',
+  'description' => 'description of term 47 of vocabulary 24 (j=1)',
+  'format' => 'filtered_html',
+  'weight' => '70',
+))
+->values(array(
+  'tid' => '48',
+  'vid' => '0',
+  'name' => 'term 48 of vocabulary 24 (j=2)',
+  'description' => 'description of term 48 of vocabulary 24 (j=2)',
+  'format' => 'filtered_html',
+  'weight' => '71',
+))
+->execute();
+
+db_create_table('taxonomy_term_hierarchy', array(
+  'fields' => array(
+    'tid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'parent' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'indexes' => array(
+    'parent' => array(
+      'parent',
+    ),
+  ),
+  'foreign keys' => array(
+    'taxonomy_term_data' => array(
+      'table' => 'taxonomy_term_data',
+      'columns' => array(
+        'tid' => 'tid',
+      ),
+    ),
+  ),
+  'primary key' => array(
+    'tid',
+    'parent',
+  ),
+  'module' => 'taxonomy',
+  'name' => 'taxonomy_term_hierarchy',
+));
+db_insert('taxonomy_term_hierarchy')->fields(array(
+  'tid',
+  'parent',
+))
+->values(array(
+  'tid' => '3',
+  'parent' => '2',
+))
+->values(array(
+  'tid' => '5',
+  'parent' => '4',
+))
+->values(array(
+  'tid' => '6',
+  'parent' => '4',
+))
+->values(array(
+  'tid' => '6',
+  'parent' => '5',
+))
+->values(array(
+  'tid' => '9',
+  'parent' => '8',
+))
+->values(array(
+  'tid' => '11',
+  'parent' => '10',
+))
+->values(array(
+  'tid' => '12',
+  'parent' => '10',
+))
+->values(array(
+  'tid' => '12',
+  'parent' => '11',
+))
+->values(array(
+  'tid' => '15',
+  'parent' => '14',
+))
+->values(array(
+  'tid' => '17',
+  'parent' => '16',
+))
+->values(array(
+  'tid' => '18',
+  'parent' => '16',
+))
+->values(array(
+  'tid' => '18',
+  'parent' => '17',
+))
+->values(array(
+  'tid' => '21',
+  'parent' => '20',
+))
+->values(array(
+  'tid' => '23',
+  'parent' => '22',
+))
+->values(array(
+  'tid' => '24',
+  'parent' => '22',
+))
+->values(array(
+  'tid' => '24',
+  'parent' => '23',
+))
+->values(array(
+  'tid' => '27',
+  'parent' => '26',
+))
+->values(array(
+  'tid' => '29',
+  'parent' => '28',
+))
+->values(array(
+  'tid' => '30',
+  'parent' => '28',
+))
+->values(array(
+  'tid' => '30',
+  'parent' => '29',
+))
+->values(array(
+  'tid' => '33',
+  'parent' => '32',
+))
+->values(array(
+  'tid' => '35',
+  'parent' => '34',
+))
+->values(array(
+  'tid' => '36',
+  'parent' => '34',
+))
+->values(array(
+  'tid' => '36',
+  'parent' => '35',
+))
+->values(array(
+  'tid' => '39',
+  'parent' => '38',
+))
+->values(array(
+  'tid' => '41',
+  'parent' => '40',
+))
+->values(array(
+  'tid' => '42',
+  'parent' => '40',
+))
+->values(array(
+  'tid' => '42',
+  'parent' => '41',
+))
+->values(array(
+  'tid' => '45',
+  'parent' => '44',
+))
+->values(array(
+  'tid' => '47',
+  'parent' => '46',
+))
+->values(array(
+  'tid' => '48',
+  'parent' => '46',
+))
+->values(array(
+  'tid' => '48',
+  'parent' => '47',
+))
+->execute();
+
+db_create_table('taxonomy_vocabulary', array(
+  'fields' => array(
+    'vid' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+      'translatable' => TRUE,
+    ),
+    'machine_name' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'description' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+      'size' => 'big',
+      'translatable' => TRUE,
+    ),
+    'hierarchy' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'module' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'weight' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'primary key' => array(
+    'vid',
+  ),
+  'indexes' => array(
+    'list' => array(
+      'weight',
+      'name',
+    ),
+  ),
+  'unique keys' => array(
+    'machine_name' => array(
+      'machine_name',
+    ),
+  ),
+  'module' => 'taxonomy',
+  'name' => 'taxonomy_vocabulary',
+));
+db_insert('taxonomy_vocabulary')->fields(array(
+  'vid',
+  'name',
+  'machine_name',
+  'description',
+  'hierarchy',
+  'module',
+  'weight',
+))
+->values(array(
+  'vid' => '1',
+  'name' => 'Tags',
+  'machine_name' => 'tags',
+  'description' => 'Use tags to group articles on similar topics into categories.',
+  'hierarchy' => '0',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->values(array(
+  'vid' => '2',
+  'name' => 'vocabulary 1 (i=0)',
+  'machine_name' => 'vocabulary_1_0',
+  'description' => 'description of vocabulary 1 (i=0)',
+  'hierarchy' => '0',
+  'module' => 'taxonomy',
+  'weight' => '0',
+))
+->values(array(
+  'vid' => '3',
+  'name' => 'vocabulary 2 (i=1)',
+  'machine_name' => 'vocabulary_2_1',
+  'description' => 'description of vocabulary 2 (i=1)',
+  'hierarchy' => '1',
+  'module' => 'taxonomy',
+  'weight' => '1',
+))
+->values(array(
+  'vid' => '4',
+  'name' => 'vocabulary 3 (i=2)',
+  'machine_name' => 'vocabulary_3_2',
+  'description' => 'description of vocabulary 3 (i=2)',
+  'hierarchy' => '2',
+  'module' => 'taxonomy',
+  'weight' => '2',
+))
+->values(array(
+  'vid' => '5',
+  'name' => 'vocabulary 4 (i=3)',
+  'machine_name' => 'vocabulary_4_3',
+  'description' => 'description of vocabulary 4 (i=3)',
+  'hierarchy' => '0',
+  'module' => 'taxonomy',
+  'weight' => '3',
+))
+->values(array(
+  'vid' => '6',
+  'name' => 'vocabulary 5 (i=4)',
+  'machine_name' => 'vocabulary_5_4',
+  'description' => 'description of vocabulary 5 (i=4)',
+  'hierarchy' => '1',
+  'module' => 'taxonomy',
+  'weight' => '4',
+))
+->values(array(
+  'vid' => '7',
+  'name' => 'vocabulary 6 (i=5)',
+  'machine_name' => 'vocabulary_6_5',
+  'description' => 'description of vocabulary 6 (i=5)',
+  'hierarchy' => '2',
+  'module' => 'taxonomy',
+  'weight' => '5',
+))
+->values(array(
+  'vid' => '8',
+  'name' => 'vocabulary 7 (i=6)',
+  'machine_name' => 'vocabulary_7_6',
+  'description' => 'description of vocabulary 7 (i=6)',
+  'hierarchy' => '0',
+  'module' => 'taxonomy',
+  'weight' => '6',
+))
+->values(array(
+  'vid' => '9',
+  'name' => 'vocabulary 8 (i=7)',
+  'machine_name' => 'vocabulary_8_7',
+  'description' => 'description of vocabulary 8 (i=7)',
+  'hierarchy' => '1',
+  'module' => 'taxonomy',
+  'weight' => '7',
+))
+->values(array(
+  'vid' => '10',
+  'name' => 'vocabulary 9 (i=8)',
+  'machine_name' => 'vocabulary_9_8',
+  'description' => 'description of vocabulary 9 (i=8)',
+  'hierarchy' => '2',
+  'module' => 'taxonomy',
+  'weight' => '8',
+))
+->values(array(
+  'vid' => '11',
+  'name' => 'vocabulary 10 (i=9)',
+  'machine_name' => 'vocabulary_10_9',
+  'description' => 'description of vocabulary 10 (i=9)',
+  'hierarchy' => '0',
+  'module' => 'taxonomy',
+  'weight' => '9',
+))
+->values(array(
+  'vid' => '12',
+  'name' => 'vocabulary 11 (i=10)',
+  'machine_name' => 'vocabulary_11_10',
+  'description' => 'description of vocabulary 11 (i=10)',
+  'hierarchy' => '1',
+  'module' => 'taxonomy',
+  'weight' => '10',
+))
+->values(array(
+  'vid' => '13',
+  'name' => 'vocabulary 12 (i=11)',
+  'machine_name' => 'vocabulary_12_11',
+  'description' => 'description of vocabulary 12 (i=11)',
+  'hierarchy' => '2',
+  'module' => 'taxonomy',
+  'weight' => '11',
+))
+->values(array(
+  'vid' => '14',
+  'name' => 'vocabulary 13 (i=12)',
+  'machine_name' => 'vocabulary_13_12',
+  'description' => 'description of vocabulary 13 (i=12)',
+  'hierarchy' => '0',
+  'module' => 'taxonomy',
+  'weight' => '12',
+))
+->values(array(
+  'vid' => '15',
+  'name' => 'vocabulary 14 (i=13)',
+  'machine_name' => 'vocabulary_14_13',
+  'description' => 'description of vocabulary 14 (i=13)',
+  'hierarchy' => '1',
+  'module' => 'taxonomy',
+  'weight' => '13',
+))
+->values(array(
+  'vid' => '16',
+  'name' => 'vocabulary 15 (i=14)',
+  'machine_name' => 'vocabulary_15_14',
+  'description' => 'description of vocabulary 15 (i=14)',
+  'hierarchy' => '2',
+  'module' => 'taxonomy',
+  'weight' => '14',
+))
+->values(array(
+  'vid' => '17',
+  'name' => 'vocabulary 16 (i=15)',
+  'machine_name' => 'vocabulary_16_15',
+  'description' => 'description of vocabulary 16 (i=15)',
+  'hierarchy' => '0',
+  'module' => 'taxonomy',
+  'weight' => '15',
+))
+->values(array(
+  'vid' => '18',
+  'name' => 'vocabulary 17 (i=16)',
+  'machine_name' => 'vocabulary_17_16',
+  'description' => 'description of vocabulary 17 (i=16)',
+  'hierarchy' => '1',
+  'module' => 'taxonomy',
+  'weight' => '16',
+))
+->values(array(
+  'vid' => '19',
+  'name' => 'vocabulary 18 (i=17)',
+  'machine_name' => 'vocabulary_18_17',
+  'description' => 'description of vocabulary 18 (i=17)',
+  'hierarchy' => '2',
+  'module' => 'taxonomy',
+  'weight' => '17',
+))
+->values(array(
+  'vid' => '20',
+  'name' => 'vocabulary 19 (i=18)',
+  'machine_name' => 'vocabulary_19_18',
+  'description' => 'description of vocabulary 19 (i=18)',
+  'hierarchy' => '0',
+  'module' => 'taxonomy',
+  'weight' => '18',
+))
+->values(array(
+  'vid' => '21',
+  'name' => 'vocabulary 20 (i=19)',
+  'machine_name' => 'vocabulary_20_19',
+  'description' => 'description of vocabulary 20 (i=19)',
+  'hierarchy' => '1',
+  'module' => 'taxonomy',
+  'weight' => '19',
+))
+->values(array(
+  'vid' => '22',
+  'name' => 'vocabulary 21 (i=20)',
+  'machine_name' => 'vocabulary_21_20',
+  'description' => 'description of vocabulary 21 (i=20)',
+  'hierarchy' => '2',
+  'module' => 'taxonomy',
+  'weight' => '20',
+))
+->values(array(
+  'vid' => '23',
+  'name' => 'vocabulary 22 (i=21)',
+  'machine_name' => 'vocabulary_22_21',
+  'description' => 'description of vocabulary 22 (i=21)',
+  'hierarchy' => '0',
+  'module' => 'taxonomy',
+  'weight' => '21',
+))
+->values(array(
+  'vid' => '24',
+  'name' => 'vocabulary 23 (i=22)',
+  'machine_name' => 'vocabulary_23_22',
+  'description' => 'description of vocabulary 23 (i=22)',
+  'hierarchy' => '1',
+  'module' => 'taxonomy',
+  'weight' => '22',
+))
+->values(array(
+  'vid' => '25',
+  'name' => 'vocabulary 24 (i=23)',
+  'machine_name' => 'vocabulary_24_23',
+  'description' => 'description of vocabulary 24 (i=23)',
+  'hierarchy' => '2',
+  'module' => 'taxonomy',
+  'weight' => '23',
+))
+->execute();
+
+db_create_table('url_alias', array(
+  'fields' => array(
+    'pid' => array(
+      'type' => 'serial',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+    ),
+    'source' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'alias' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 12,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+  ),
+  'primary key' => array(
+    'pid',
+  ),
+  'indexes' => array(
+    'alias_language_pid' => array(
+      'alias',
+      'language',
+      'pid',
+    ),
+    'source_language_pid' => array(
+      'source',
+      'language',
+      'pid',
+    ),
+  ),
+  'module' => 'system',
+  'name' => 'url_alias',
+));
+db_insert('url_alias')->fields(array(
+  'pid',
+  'source',
+  'alias',
+  'language',
+))
+->values(array(
+  'pid' => '1',
+  'source' => 'node/1',
+  'alias' => 'content/1262764800',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '2',
+  'source' => 'node/1',
+  'alias' => 'content/1262764800',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '3',
+  'source' => 'node/2',
+  'alias' => 'content/1262851200',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '4',
+  'source' => 'node/2',
+  'alias' => 'content/1262851200',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '5',
+  'source' => 'node/3',
+  'alias' => 'content/1262937600',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '6',
+  'source' => 'node/3',
+  'alias' => 'content/1262937600',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '7',
+  'source' => 'node/4',
+  'alias' => 'content/1263024000',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '8',
+  'source' => 'node/4',
+  'alias' => 'content/1263024000',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '9',
+  'source' => 'node/5',
+  'alias' => 'content/1263110400',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '10',
+  'source' => 'node/5',
+  'alias' => 'content/1263110400',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '11',
+  'source' => 'node/6',
+  'alias' => 'content/1263196800',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '12',
+  'source' => 'node/6',
+  'alias' => 'content/1263196800',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '13',
+  'source' => 'node/7',
+  'alias' => 'content/1263283200',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '14',
+  'source' => 'node/7',
+  'alias' => 'content/1263283200',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '15',
+  'source' => 'node/8',
+  'alias' => 'content/1263369600',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '16',
+  'source' => 'node/8',
+  'alias' => 'content/1263369600',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '17',
+  'source' => 'node/9',
+  'alias' => 'content/1263456000',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '18',
+  'source' => 'node/9',
+  'alias' => 'content/1263456000',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '19',
+  'source' => 'node/10',
+  'alias' => 'content/1263542400',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '20',
+  'source' => 'node/10',
+  'alias' => 'content/1263542400',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '21',
+  'source' => 'node/11',
+  'alias' => 'content/1263628800',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '22',
+  'source' => 'node/11',
+  'alias' => 'content/1263628800',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '23',
+  'source' => 'node/12',
+  'alias' => 'content/1263715200',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '24',
+  'source' => 'node/12',
+  'alias' => 'content/1263715200',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '25',
+  'source' => 'node/13',
+  'alias' => 'content/1263801600',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '26',
+  'source' => 'node/14',
+  'alias' => 'content/1263888000',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '27',
+  'source' => 'node/15',
+  'alias' => 'content/1263974400',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '28',
+  'source' => 'node/16',
+  'alias' => 'content/1264060800',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '29',
+  'source' => 'node/17',
+  'alias' => 'content/1264147200',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '30',
+  'source' => 'node/18',
+  'alias' => 'content/1264233600',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '31',
+  'source' => 'node/19',
+  'alias' => 'content/1264320000',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '32',
+  'source' => 'node/20',
+  'alias' => 'content/1264406400',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '33',
+  'source' => 'node/21',
+  'alias' => 'content/1264492800',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '34',
+  'source' => 'node/22',
+  'alias' => 'content/1264579200',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '35',
+  'source' => 'node/23',
+  'alias' => 'content/1264665600',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '36',
+  'source' => 'node/24',
+  'alias' => 'content/1264752000',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '37',
+  'source' => 'node/25',
+  'alias' => 'content/poll/0',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '38',
+  'source' => 'node/25/results',
+  'alias' => 'content/poll/0/results',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '39',
+  'source' => 'node/26',
+  'alias' => 'content/poll/1',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '40',
+  'source' => 'node/26/results',
+  'alias' => 'content/poll/1/results',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '41',
+  'source' => 'node/27',
+  'alias' => 'content/poll/2',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '42',
+  'source' => 'node/27/results',
+  'alias' => 'content/poll/2/results',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '43',
+  'source' => 'node/28',
+  'alias' => 'content/poll/3',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '44',
+  'source' => 'node/28/results',
+  'alias' => 'content/poll/3/results',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '45',
+  'source' => 'node/29',
+  'alias' => 'content/poll/4',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '46',
+  'source' => 'node/29/results',
+  'alias' => 'content/poll/4/results',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '47',
+  'source' => 'node/30',
+  'alias' => 'content/poll/5',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '48',
+  'source' => 'node/30/results',
+  'alias' => 'content/poll/5/results',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '49',
+  'source' => 'node/31',
+  'alias' => 'content/poll/6',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '50',
+  'source' => 'node/31/results',
+  'alias' => 'content/poll/6/results',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '51',
+  'source' => 'node/32',
+  'alias' => 'content/poll/7',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '52',
+  'source' => 'node/32/results',
+  'alias' => 'content/poll/7/results',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '53',
+  'source' => 'node/33',
+  'alias' => 'content/poll/8',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '54',
+  'source' => 'node/33/results',
+  'alias' => 'content/poll/8/results',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '55',
+  'source' => 'node/34',
+  'alias' => 'content/poll/9',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '56',
+  'source' => 'node/34/results',
+  'alias' => 'content/poll/9/results',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '57',
+  'source' => 'node/35',
+  'alias' => 'content/poll/10',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '58',
+  'source' => 'node/35/results',
+  'alias' => 'content/poll/10/results',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '59',
+  'source' => 'node/36',
+  'alias' => 'content/poll/11',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '60',
+  'source' => 'node/36/results',
+  'alias' => 'content/poll/11/results',
+  'language' => 'und',
+))
+->values(array(
+  'pid' => '61',
+  'source' => 'node/37',
+  'alias' => 'content/1263769200',
+  'language' => 'und',
+))
+->execute();
+
+db_create_table('users', array(
+  'fields' => array(
+    'uid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 60,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'pass' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'mail' => array(
+      'type' => 'varchar',
+      'length' => 254,
+      'not null' => FALSE,
+      'default' => '',
+    ),
+    'theme' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'signature' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'signature_format' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => FALSE,
+    ),
+    'created' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'access' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'login' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'status' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'timezone' => array(
+      'type' => 'varchar',
+      'length' => 32,
+      'not null' => FALSE,
+    ),
+    'language' => array(
+      'type' => 'varchar',
+      'length' => 12,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'picture' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'init' => array(
+      'type' => 'varchar',
+      'length' => 254,
+      'not null' => FALSE,
+      'default' => '',
+    ),
+    'data' => array(
+      'type' => 'blob',
+      'not null' => FALSE,
+      'size' => 'big',
+      'serialize' => TRUE,
+    ),
+  ),
+  'indexes' => array(
+    'access' => array(
+      'access',
+    ),
+    'created' => array(
+      'created',
+    ),
+    'mail' => array(
+      'mail',
+    ),
+  ),
+  'unique keys' => array(
+    'name' => array(
+      'name',
+    ),
+  ),
+  'primary key' => array(
+    'uid',
+  ),
+  'foreign keys' => array(
+    'signature_format' => array(
+      'table' => 'filter_format',
+      'columns' => array(
+        'signature_format' => 'format',
+      ),
+    ),
+  ),
+  'module' => 'user',
+  'name' => 'users',
+));
+db_insert('users')->fields(array(
+  'uid',
+  'name',
+  'pass',
+  'mail',
+  'theme',
+  'signature',
+  'signature_format',
+  'created',
+  'access',
+  'login',
+  'status',
+  'timezone',
+  'language',
+  'picture',
+  'init',
+  'data',
+))
+->values(array(
+  'uid' => '0',
+  'name' => '',
+  'pass' => '',
+  'mail' => '',
+  'theme' => '',
+  'signature' => '',
+  'signature_format' => NULL,
+  'created' => '0',
+  'access' => '0',
+  'login' => '0',
+  'status' => '0',
+  'timezone' => NULL,
+  'language' => '',
+  'picture' => '0',
+  'init' => '',
+  'data' => NULL,
+))
+->values(array(
+  'uid' => '1',
+  'name' => 'drupal',
+  'pass' => '$S$Dd8fQYS0HzAJzTjnOXmJmKpA5C2HRvErY9zFY2w9xbv93D9CMAzC',
+  'mail' => 'drupal@drupal.org',
+  'theme' => '',
+  'signature' => '',
+  'signature_format' => NULL,
+  'created' => '1314996967',
+  'access' => '1314997072',
+  'login' => '1314997072',
+  'status' => '1',
+  'timezone' => NULL,
+  'language' => '',
+  'picture' => '0',
+  'init' => 'drupal@drupal.org',
+  'data' => 'b:0;',
+))
+->values(array(
+  'uid' => '2',
+  'name' => 'test user 0',
+  'pass' => '$S$D0WFybzFpV/WY4sF9cbIlMuekDGzLvN9kEV63j34coFfs4fLi1wW',
+  'mail' => 'test0@example.com',
+  'theme' => '',
+  'signature' => '',
+  'signature_format' => NULL,
+  'created' => '1262332800',
+  'access' => '1262332800',
+  'login' => '0',
+  'status' => '1',
+  'timezone' => NULL,
+  'language' => '',
+  'picture' => '0',
+  'init' => '',
+  'data' => NULL,
+))
+->values(array(
+  'uid' => '3',
+  'name' => 'test user 1',
+  'pass' => '$S$DVzqhccOJVPl6ZlhWxL43Opzm/8kDY6GnTYfK33E472YVBX0IrVT',
+  'mail' => 'test1@example.com',
+  'theme' => '',
+  'signature' => '',
+  'signature_format' => NULL,
+  'created' => '1262419200',
+  'access' => '1262419200',
+  'login' => '0',
+  'status' => '1',
+  'timezone' => NULL,
+  'language' => '',
+  'picture' => '0',
+  'init' => '',
+  'data' => NULL,
+))
+->values(array(
+  'uid' => '4',
+  'name' => 'test user 2',
+  'pass' => '$S$DsdI71aC6QDV1S0Xey06FMYrsFJcksSjzVXlO32DiDUa6MA/3YSz',
+  'mail' => 'test2@example.com',
+  'theme' => '',
+  'signature' => '',
+  'signature_format' => NULL,
+  'created' => '1262505600',
+  'access' => '1262505600',
+  'login' => '0',
+  'status' => '1',
+  'timezone' => NULL,
+  'language' => '',
+  'picture' => '0',
+  'init' => '',
+  'data' => NULL,
+))
+->values(array(
+  'uid' => '5',
+  'name' => 'test user 3',
+  'pass' => '$S$DmfKNV5/G9DVPyisW451npYoDU9qVZ/zIBQUOunamUTjTIWIv52S',
+  'mail' => 'test3@example.com',
+  'theme' => '',
+  'signature' => '',
+  'signature_format' => NULL,
+  'created' => '1262592000',
+  'access' => '1262592000',
+  'login' => '0',
+  'status' => '1',
+  'timezone' => NULL,
+  'language' => '',
+  'picture' => '0',
+  'init' => '',
+  'data' => NULL,
+))
+->values(array(
+  'uid' => '6',
+  'name' => 'test user 4',
+  'pass' => '$S$D5IQTie9gHY4LfrTDX.UoR3llrhjZklee/0zuYxa4DnO.GHPiYDE',
+  'mail' => 'test4@example.com',
+  'theme' => '',
+  'signature' => '',
+  'signature_format' => NULL,
+  'created' => '1262678400',
+  'access' => '1262678400',
+  'login' => '0',
+  'status' => '1',
+  'timezone' => NULL,
+  'language' => '',
+  'picture' => '0',
+  'init' => '',
+  'data' => NULL,
+))
+->values(array(
+  'uid' => '7',
+  'name' => 'test user 5',
+  'pass' => '$S$DplrolaidqpEauiv8/DpMgimEpW0Bw6YfWOE3vYgy/7REWgADrqW',
+  'mail' => 'test5@example.com',
+  'theme' => '',
+  'signature' => '',
+  'signature_format' => NULL,
+  'created' => '1262764800',
+  'access' => '1262764800',
+  'login' => '0',
+  'status' => '1',
+  'timezone' => NULL,
+  'language' => '',
+  'picture' => '0',
+  'init' => '',
+  'data' => NULL,
+))
+->execute();
+
+db_create_table('users_roles', array(
+  'fields' => array(
+    'uid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'rid' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'primary key' => array(
+    'uid',
+    'rid',
+  ),
+  'indexes' => array(
+    'rid' => array(
+      'rid',
+    ),
+  ),
+  'foreign keys' => array(
+    'user' => array(
+      'table' => 'users',
+      'columns' => array(
+        'uid' => 'uid',
+      ),
+    ),
+    'role' => array(
+      'table' => 'roles',
+      'columns' => array(
+        'rid' => 'rid',
+      ),
+    ),
+  ),
+  'module' => 'user',
+  'name' => 'users_roles',
+));
+db_insert('users_roles')->fields(array(
+  'uid',
+  'rid',
+))
+->values(array(
+  'uid' => '1',
+  'rid' => '3',
+))
+->execute();
+
+db_create_table('variable', array(
+  'fields' => array(
+    'name' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'value' => array(
+      'type' => 'blob',
+      'not null' => TRUE,
+      'size' => 'big',
+      'translatable' => TRUE,
+    ),
+  ),
+  'primary key' => array(
+    'name',
+  ),
+  'module' => 'system',
+  'name' => 'variable',
+));
+db_insert('variable')->fields(array(
+  'name',
+  'value',
+))
+->values(array(
+  'name' => 'admin_theme',
+  'value' => 's:5:"seven";',
+))
+->values(array(
+  'name' => 'clean_url',
+  'value' => 's:1:"1";',
+))
+->values(array(
+  'name' => 'comment_page',
+  'value' => 'i:0;',
+))
+->values(array(
+  'name' => 'cron_key',
+  'value' => 's:43:"P9y9ueNXR7abU9Uwj78ytIBHKuyFT-TR0Mr6QCRlS0I";',
+))
+->values(array(
+  'name' => 'cron_last',
+  'value' => 'i:1314997642;',
+))
+->values(array(
+  'name' => 'css_js_query_string',
+  'value' => 's:6:"lqwyjf";',
+))
+->values(array(
+  'name' => 'date_default_timezone',
+  'value' => 's:19:"America/Los_Angeles";',
+))
+->values(array(
+  'name' => 'drupal_private_key',
+  'value' => 's:43:"1Hor8adVgHuJi3JPIxu3N6JLs4hNFsR9w8WLHBnM_a8";',
+))
+->values(array(
+  'name' => 'file_temporary_path',
+  'value' => 's:26:"/Applications/MAMP/tmp/php";',
+))
+->values(array(
+  'name' => 'filter_fallback_format',
+  'value' => 's:10:"plain_text";',
+))
+->values(array(
+  'name' => 'install_profile',
+  'value' => 's:8:"standard";',
+))
+->values(array(
+  'name' => 'install_task',
+  'value' => 's:4:"done";',
+))
+->values(array(
+  'name' => 'install_time',
+  'value' => 'i:1314997072;',
+))
+->values(array(
+  'name' => 'menu_expanded',
+  'value' => 'a:0:{}',
+))
+->values(array(
+  'name' => 'menu_masks',
+  'value' => '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;}',
+))
+->values(array(
+  'name' => 'node_admin_theme',
+  'value' => 's:1:"1";',
+))
+->values(array(
+  'name' => 'node_options_page',
+  'value' => 'a:1:{i:0;s:6:"status";}',
+))
+->values(array(
+  'name' => 'node_submitted_page',
+  'value' => 'b:0;',
+))
+->values(array(
+  'name' => 'path_alias_whitelist',
+  'value' => 'a:1:{s:4:"node";b:1;}',
+))
+->values(array(
+  'name' => 'site_default_country',
+  'value' => 's:2:"US";',
+))
+->values(array(
+  'name' => 'site_mail',
+  'value' => 's:17:"drupal@drupal.org";',
+))
+->values(array(
+  'name' => 'site_name',
+  'value' => 's:9:"localhost";',
+))
+->values(array(
+  'name' => 'theme_default',
+  'value' => 's:6:"bartik";',
+))
+->values(array(
+  'name' => 'update_last_check',
+  'value' => 'i:1314997074;',
+))
+->values(array(
+  'name' => 'update_notify_emails',
+  'value' => 'a:1:{i:0;s:17:"drupal@drupal.org";}',
+))
+->values(array(
+  'name' => 'user_admin_role',
+  'value' => 's:1:"3";',
+))
+->values(array(
+  'name' => 'user_pictures',
+  'value' => 's:1:"1";',
+))
+->values(array(
+  'name' => 'user_picture_dimensions',
+  'value' => 's:9:"1024x1024";',
+))
+->values(array(
+  'name' => 'user_picture_file_size',
+  'value' => 's:3:"800";',
+))
+->values(array(
+  'name' => 'user_picture_style',
+  'value' => 's:9:"thumbnail";',
+))
+->values(array(
+  'name' => 'user_register',
+  'value' => 'i:2;',
+))
+->execute();
+
+db_create_table('watchdog', array(
+  'fields' => array(
+    'wid' => array(
+      'type' => 'serial',
+      'not null' => TRUE,
+    ),
+    'uid' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+    'type' => array(
+      'type' => 'varchar',
+      'length' => 64,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'message' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+      'size' => 'big',
+    ),
+    'variables' => array(
+      'type' => 'blob',
+      'not null' => TRUE,
+      'size' => 'big',
+    ),
+    'severity' => array(
+      'type' => 'int',
+      'unsigned' => TRUE,
+      'not null' => TRUE,
+      'default' => 0,
+      'size' => 'tiny',
+    ),
+    'link' => array(
+      'type' => 'varchar',
+      'length' => 255,
+      'not null' => FALSE,
+      'default' => '',
+    ),
+    'location' => array(
+      'type' => 'text',
+      'not null' => TRUE,
+    ),
+    'referer' => array(
+      'type' => 'text',
+      'not null' => FALSE,
+    ),
+    'hostname' => array(
+      'type' => 'varchar',
+      'length' => 128,
+      'not null' => TRUE,
+      'default' => '',
+    ),
+    'timestamp' => array(
+      'type' => 'int',
+      'not null' => TRUE,
+      'default' => 0,
+    ),
+  ),
+  'primary key' => array(
+    'wid',
+  ),
+  'indexes' => array(
+    'type' => array(
+      'type',
+    ),
+    'uid' => array(
+      'uid',
+    ),
+  ),
+  'module' => 'dblog',
+  'name' => 'watchdog',
+));
diff --git a/modules/simpletest/tests/upgrade/upgrade_bare.test b/modules/simpletest/tests/upgrade/upgrade_bare.test
new file mode 100644
index 0000000..7fb107c
--- /dev/null
+++ b/modules/simpletest/tests/upgrade/upgrade_bare.test
@@ -0,0 +1,31 @@
+<?php
+
+/**
+ * Upgrade test for the bare database..
+ *
+ * Load an empty installation of Drupal 7 and run the upgrade process on it.
+ */
+class BareUpgradePathTestCase extends UpgradePathTestCase {
+  public static function getInfo() {
+    return array(
+      'name'  => 'Bare upgrade test',
+      'description'  => 'Bare upgrade test.',
+      'group' => 'Upgrade path',
+    );
+  }
+
+  public function setUp() {
+    // Path to the database dump.
+    $this->databaseDumpFiles = array(
+      drupal_get_path('module', 'simpletest') . '/tests/upgrade/drupal-7.bare.database.php',
+    );
+    parent::setUp();
+  }
+
+  /**
+   * Test a successful upgrade.
+   */
+  public function testBareUpgrade() {
+    $this->assertTrue($this->performUpgrade(), t('The upgrade was completed successfully.'));
+  }
+}
diff --git a/modules/simpletest/tests/upgrade/upgrade_filled.test b/modules/simpletest/tests/upgrade/upgrade_filled.test
new file mode 100644
index 0000000..ff58a6e
--- /dev/null
+++ b/modules/simpletest/tests/upgrade/upgrade_filled.test
@@ -0,0 +1,31 @@
+<?php
+
+/**
+ * Upgrade test for the filled database..
+ *
+ * Load a filled installation of Drupal 7 and run the upgrade process on it.
+ */
+class FilledUpgradePathTestCase extends UpgradePathTestCase {
+  public static function getInfo() {
+    return array(
+      'name'  => 'Filled upgrade test',
+      'description'  => 'Filled upgrade test.',
+      'group' => 'Upgrade path',
+    );
+  }
+
+  public function setUp() {
+    // Path to the database dump.
+    $this->databaseDumpFiles = array(
+      drupal_get_path('module', 'simpletest') . '/tests/upgrade/drupal-7.filled.database.php',
+    );
+    parent::setUp();
+  }
+
+  /**
+   * Test a successful upgrade.
+   */
+  public function testFilledUpgrade() {
+    $this->assertTrue($this->performUpgrade(), t('The upgrade was completed successfully.'));
+  }
+}
