-- phpMyAdmin SQL Dump
-- version 3.3.10
-- http://www.phpmyadmin.net
--
-- Host: herzog
-- Generation Time: Nov 22, 2013 at 01:54 PM
-- Server version: 5.1.49
-- PHP Version: 5.2.17

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;

--
-- Database: `books_acm_ee`
--

-- --------------------------------------------------------

--
-- Table structure for table `exp_accessories`
--

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

--
-- Dumping data for table `exp_accessories`
--

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

-- --------------------------------------------------------

--
-- Table structure for table `exp_actions`
--

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

--
-- Dumping data for table `exp_actions`
--

INSERT INTO `exp_actions` (`action_id`, `class`, `method`, `csrf_exempt`) VALUES
(1, 'Comment', 'insert_new_comment', 0),
(2, 'Comment_mcp', 'delete_comment_notification', 0),
(3, 'Comment', 'comment_subscribe', 0),
(4, 'Comment', 'edit_comment', 0),
(5, 'Email', 'send_email', 0),
(6, 'Channel', 'submit_entry', 0),
(7, 'Channel', 'combo_loader', 0),
(8, 'Search', 'do_search', 0),
(9, 'Channel', 'submit_entry', 0),
(10, 'Channel', 'filemanager_endpoint', 0),
(11, 'Channel', 'smiley_pop', 0),
(12, 'Member', 'registration_form', 0),
(13, 'Member', 'register_member', 0),
(14, 'Member', 'activate_member', 0),
(15, 'Member', 'member_login', 0),
(16, 'Member', 'member_logout', 0),
(17, 'Member', 'send_reset_token', 0),
(18, 'Member', 'process_reset_password', 0),
(19, 'Member', 'send_member_email', 0),
(20, 'Member', 'update_un_pw', 0),
(21, 'Member', 'member_search', 0),
(22, 'Member', 'member_delete', 0),
(23, 'Rte', 'get_js', 0),
(24, 'M62_backup', 'cron', 0),
(25, 'Channel_files', 'channel_files_router', 0),
(26, 'Channel_files', 'upload_file', 0),
(27, 'Channel_files', 'simple_file_url', 0),
(28, 'Channel_files', 'locked_file_url', 0),
(29, 'Channel_images', 'channel_images_router', 0),
(30, 'Channel_images', 'locked_image_url', 0),
(31, 'Channel_images', 'simple_image_url', 0),
(32, 'Channel_polls', 'channel_polls_router', 0),
(33, 'Channel_polls', 'add_vote', 0),
(34, 'Channel_ratings', 'channel_ratings_router', 0),
(35, 'Channel_ratings', 'insert_rating', 0),
(36, 'Channel_ratings', 'insert_like', 0),
(37, 'Channel_ratings', 'bayesian', 0),
(38, 'Editor', 'ACT_file_upload', 0),
(39, 'Ee_debug_toolbar', 'act', 0),
(40, 'Export_it', 'api', 0),
(41, 'Flag_master', 'proc_flag', 0),
(42, 'Forms', 'ACT_general_router', 0),
(43, 'Forms', 'ACT_form_submission', 0),
(44, 'Securitee', 'file_monitor', 0),
(45, 'Securitee', 'allow_ip_access', 0),
(46, 'Updater', 'actionGeneralRouter', 0),
(47, 'Vmg_chosen_member', 'get_results', 0),
(48, 'Automatee', 'cron', 0),
(49, 'Automatee', 'test_cron', 0),
(50, 'Automatee', 'image_bug', 0);

-- --------------------------------------------------------

--
-- Table structure for table `exp_automatee_crons`
--

DROP TABLE IF EXISTS `exp_automatee_crons`;
CREATE TABLE IF NOT EXISTS `exp_automatee_crons` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL DEFAULT '',
  `description` text NOT NULL,
  `active` tinyint(1) DEFAULT '0',
  `schedule` varchar(100) NOT NULL DEFAULT '',
  `type` varchar(100) NOT NULL DEFAULT '',
  `command` text NOT NULL,
  `cron_plugin` varchar(100) NOT NULL DEFAULT '',
  `cron_module` varchar(100) NOT NULL DEFAULT '',
  `cron_method` varchar(100) NOT NULL DEFAULT '',
  `ran_at` int(11) NOT NULL DEFAULT '0',
  `total_runs` int(10) NOT NULL DEFAULT '0',
  `last_run_status` int(1) NOT NULL DEFAULT '0',
  `last_modified` datetime DEFAULT NULL,
  `created_date` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;

--
-- Dumping data for table `exp_automatee_crons`
--

INSERT INTO `exp_automatee_crons` (`id`, `name`, `description`, `active`, `schedule`, `type`, `command`, `cron_plugin`, `cron_module`, `cron_method`, `ran_at`, `total_runs`, `last_run_status`, `last_modified`, `created_date`) VALUES
(1, 'Example Module Cron', '', 0, '0,30 * * * *', 'module', '', '', 'automatee', 'example', 1377866765, 0, 0, '2013-08-30 12:46:05', '2013-08-30 12:46:05'),
(2, 'Example CLI and Custom Schedule', '', 0, '3 3,21-23,10 * * *', 'cli', '/path/to/shell/script.sh', '', '', '', 1377866765, 0, 0, '2013-08-30 12:46:05', '2013-08-30 12:46:05'),
(3, 'Example Get URL', '', 0, '0,30 * * * *', 'url', 'http://google.com', '', '', '', 1377866765, 0, 0, '2013-08-30 12:46:05', '2013-08-30 12:46:05'),
(4, 'Backup Pro (Database Backup)', '', 0, '0 0 * * *', 'url', 'http://eric.ee_bootstrap.com/?ACT=24&type=db', '', '', '', 1377866765, 0, 0, '2013-08-30 12:46:05', '2013-08-30 12:46:05'),
(5, 'Backup Pro (File Backup)', '', 0, '0 0 * * 0', 'url', 'http://eric.ee_bootstrap.com/?ACT=24&type=file', '', '', '', 1377866765, 0, 0, '2013-08-30 12:46:05', '2013-08-30 12:46:05'),
(6, 'Securit:ee File Monitor', '', 0, '0 0 * * *', 'module', '', '', 'securitee', 'file_monitor', 1377866765, 0, 0, '2013-08-30 12:46:05', '2013-08-30 12:46:05');

-- --------------------------------------------------------

--
-- Table structure for table `exp_automatee_settings`
--

DROP TABLE IF EXISTS `exp_automatee_settings`;
CREATE TABLE IF NOT EXISTS `exp_automatee_settings` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `setting_key` varchar(30) NOT NULL DEFAULT '',
  `setting_value` text NOT NULL,
  `serialized` int(1) DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `exp_automatee_settings`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_bad_behavior`
--

DROP TABLE IF EXISTS `exp_bad_behavior`;
CREATE TABLE IF NOT EXISTS `exp_bad_behavior` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ip` text NOT NULL,
  `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `request_method` text NOT NULL,
  `request_uri` text NOT NULL,
  `server_protocol` text NOT NULL,
  `http_headers` text NOT NULL,
  `user_agent` text NOT NULL,
  `request_entity` text NOT NULL,
  `key` text NOT NULL,
  PRIMARY KEY (`id`),
  KEY `ip` (`ip`(15)),
  KEY `user_agent` (`user_agent`(10))
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `exp_bad_behavior`
--

INSERT INTO `exp_bad_behavior` (`id`, `ip`, `date`, `request_method`, `request_uri`, `server_protocol`, `http_headers`, `user_agent`, `request_entity`, `key`) VALUES
(1, '74.217.148.74', '2013-11-20 07:33:36', 'GET', '/internet_explorer_10.exe', 'HTTP/1.1', 'GET /internet_explorer_10.exe HTTP/1.1\nUser-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; GTB6.6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; MAMD; .NET4.0C; Windows Live Messenger 15.4.3508.1109)\nHost: books-acm.minla.net\nConnection: Keep-Alive\n', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; GTB6.6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; MAMD; .NET4.0C; Windows Live Messenger 15.4.3508.1109)', '', '17566707');

-- --------------------------------------------------------

--
-- Table structure for table `exp_captcha`
--

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

--
-- Dumping data for table `exp_captcha`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_categories`
--

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

--
-- Dumping data for table `exp_categories`
--

INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES
(6, 1, 1, 0, 'Bioinformatics', 'bioinformatics', 'Bioinformatics, Computational Biology, and Biomedical Informatics, including Genomics and Evolution; Protein and RNA Structure, Protein Function, and Proteomics; Computational Systems Biology; Next Generation Sequencing Data; Medical Informatics and Translational Bioinformatics; Cross-Cutting Computational Methods; Bioinformatics Infrastructure; Immunoinformatics and Computational Immunology; Computational Epidemiology; Image Analysis; Knowledge Representation and Inference; Integration of Biomedical Data; Databases, Ontologies; and Text Mining and Natural Language Processing', '', 1),
(2, 1, 2, 0, 'Purchase Via ACM/M&C Directly', 'purchase-via-acm-mc-directly', '<p>For general questions regarding ACM Books or to make a purchase via ACM or Morgan & Claypool directly, please contact:</p>', '', 4),
(3, 1, 2, 0, 'Local Academic Library Consortium', 'local-academic-library-consortium', '<p>For questions regarding ACM Books or to purchase via your Academic Library Consortium, please contact:</p>', '', 2),
(4, 1, 2, 0, 'Local Subscription Agent', 'local-subscription-agent', '<p>For sales questions regarding ACM Books or to purchase via a Local Subscription Agent, please contact:</p>', '', 3),
(5, 1, 2, 0, 'Authors Contact', 'authors-contact', '', '', 1),
(7, 1, 1, 0, 'Cloud Computing', 'cloud-computing', 'Software as a service, Virtualization, and Scalable  Cloud Data  Services , including  Management, Data Privacy, Data Services Architectures, Distributed and Parallel Query Processing,  Energy Management, Distributed and Cloud Networking, Availability and Reliability, Infrastructure Technologies, Large-Scale Applications, Multi-Tenancy, Programming Models, Provisioning and Metering, Resource Management, Scientific Data Management, Security of Services, Service Level Agreements, Storage Architectures, Transactional Models, Virtualization Technologies\n\n\n', '', 2),
(8, 1, 1, 0, 'Computer Graphics', 'computer-graphics', 'Graphical modeling, Animation, Rendering, Imaging, Human-computer Interaction, Computer game design and programming and entertainment computing, scientific visualization, information visualization, virtual reality, computer-aided design, computer vision, audio, robotics, and fabrication.\n', '', 3),
(9, 1, 1, 0, 'Data Management', 'data-management', 'Including query languages, database system architectures, transaction management, data warehousing, XML and databases, data stream systems, wide scale data distribution, multimedia data management, data mining, spatial data management, and related subjects.', '', 4),
(10, 1, 1, 0, 'History of Computing', 'history-of-computing', 'History of Computing, and Ethical and Social Impact of Computing.', '', 6),
(11, 1, 1, 0, 'Human-Centered Computing', 'human-centered-computing', 'Design, Engineering, User Experience, Usability, Digital Arts, Games and Entertainment,  Health, Sustainability, CSCW, Social Computing, HCI & Socioeconomic Development (HCI4D).', '', 7),
(12, 1, 1, 0, 'Machine Learning & Data Mining ', 'machine-learning-data-mining', 'Theory, Algorithms, Approaches and Techniques, Best  Practices, Case Studies, and Applications', '', 9),
(13, 1, 1, 0, 'Mobile Computing', 'mobile-computing', 'Wireless LANs, cellular data networks, mobile social networks, delay-tolerant networks, sensor networks, personal area networks, vehicular networks, wireless mesh networks, and mobile ad hoc networks.\n', '', 10),
(14, 1, 1, 0, 'Multimedia Systems', 'multimedia-systems', 'Art, Entertainment, and Culture; Authoring and Collaboration; Crowdsourcing; Media Transport and Delivery; Mobile & Multi-device; Multi-media Analysis; Multimedia HCI; Music & Audio; Search, Browsing, and Discovery', '', 11),
(15, 1, 1, 0, 'Parallel Computing', 'parallel-computing', 'Massively parallel machines; Embedded parallel and distributed systems; Multi- and many-core systems; GPU and FPGA based parallel systems; Parallel I/O; memory organisation;  Distributed and network-based computing; Models and tools; Systems and architectures; Algorithms and applications.  \n', '', 12),
(16, 1, 1, 0, 'Programming Languages', 'programming-languages', 'Language design for sequential and parallel programming, Programming language implementation; Programming language semantics; Compilers and interpreters; Runtime systems for program execution; Storage allocation and garbage collection; Languages and methods for writing program specifications; Languages and methods for secure and reliable programs; Testing and verification of programs\n', '', 13),
(17, 1, 1, 0, 'Social Computing', 'social-computing', '<p><strong>Applications</strong>, including Social provenance, Sociotechnical systems, including applications such as healthcare and smart cities,  Participatory decision-making in communities,  Business processes,  Services,  Software engineering; <strong>Paradigms</strong>, including: Contracts, Argumentation, Collaboration and teamwork, Social networks, Crowdsourcing, Collective intelligence;  <strong>Models</strong>, including: Social expectations and norms; Social relationships, Culture, Regulations, Protocols; <strong>Realization</strong>, including: Social middleware, Distributed knowledge bases, Social software, Social sensing, Cloud Computing;  <strong>Challenges</strong>, including: Identity, Trust, Compliance and accountability, Privacy, Security, Governance;</p>', '', 15),
(18, 1, 1, 0, 'Security & Privacy', 'security-privacy', '<p><strong>Information and Systems Security</strong>, including: security technologies, secure systems, security applications, and security policies. Security technologies include access control, assurance, authentication, cryptography, intrusion detection, penetration techniques, risk analysis, and secure protocols. Security systems include security in operating systems, database systems, networks and distributed systems, and middleware. Representative security applications areas are information systems, workflow systems, electronic commerce, electronic cash, copyright and intellectual property protection, telecommunications systems, and healthcare. Security policies encompass confidentiality, integrity, availability, privacy, and survivability policies, including tradeoff and conflicts amongst these.</p>', '', 14),
(19, 1, 1, 0, 'Software Engineering', 'software-engineering', '<p>Agile software development, Architecture and design, Aspect-orientation, Autonomic computing, Cloud computing, Component-based software engineering, Configuration management and deployment, Crowdsourcing, Debugging, Dependability, safety, and reliability, Development tools and environments, Embedded software, Empirical software engineering, End-user software engineering, Feature/goal modeling and analysis, Formal methods, Generative programming, Green technologies, Human-computer interaction/human factors, Mobile applications, Model-driven engineering, Parallel/distributed systems, Patterns and frameworks; Performance, Program comprehension, Programming languages, Refactoring, Requirements engineering, Reverse engineering, Search-based software engineering, Security, (Self-)adaptive systems, Software economics and metrics, Software evolution and maintenance, Software processes and workflows, Software reuse, Software services, Software testing and analysis, Software visualization, Traceability, Ubiquitous/pervasive software systems, Validation and verification, Web-based software</p>', '', 16),
(20, 1, 1, 0, 'Information Retrieval & Digital Libraries', 'information-retrieval-digital-libraries', 'Document Representation and Content Analysis, Queries and Query Analysis, Retrieval Models and Ranking, Search Engine Architectures and Scalability, Users and Interactive IR, Filtering and Recommending, Evaluation, Web IR and Social Media Search, IR and Structured Data, Multimedia IR, Digital Libraries, and their applications.\n', '', 8),
(21, 1, 1, 0, 'Web Engineering', 'web-engineering', '<p>Web application engineering, Processes and methods for Web application development, Conceptual modeling of Web applications, Model-driven Web application development, Domain-specific languages for Web application development, Component-based Web application development, Web application architectures and frameworks, Rich Internet Applications, Mashup development and end user Web programming, Patterns for Web application development and pattern mining, Web content management and data-intensive Web applications, Web usability and accessibility, I18N of Web applications and multi-lingual development, Testing and evaluation of Web applications, Deployment and usage analysis of Web applications, Performance modeling, monitoring, and evaluation, Empirical Web engineering, Web quality and Web metrics, Adaptive, contextualized and personalized Web applications, Mobile Web applications and device-independent delivery, Web service engineering, Web service engineering methodologies, Web Service-oriented Architectures, Semantic Web services, Web service-based architectures and applications, Quality of service and its metrics for Web applications,  Inter-organizational Web applications, Ubiquity and pervasiveness, Web data engineering, Semantic Web engineering, Web 2.0 technologies, Social Web applications, Web mining and information extraction, Linked Data, Web data linking, fusion; Information quality assessment, Data repair strategies, Dataset dynamics, Dataset introspection; Linked Data consumption, visualization and exploration; Deep Web; Web science and Future Internet applications.</p>', '', 17),
(23, 1, 3, 0, 'Authors - Main Page', 'authors-main-page', '', '', 1),
(24, 1, 3, 0, 'Authors - Publishing Process', 'authors-publishing-process', '', '', 3),
(25, 1, 3, 0, 'Authors - Promotions & Sales', 'authors-promotions-sales', '', '', 2);

-- --------------------------------------------------------

--
-- Table structure for table `exp_category_fields`
--

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

--
-- Dumping data for table `exp_category_fields`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_category_field_data`
--

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

--
-- Dumping data for table `exp_category_field_data`
--

INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES
(6, 1, 1),
(2, 1, 2),
(3, 1, 2),
(4, 1, 2),
(5, 1, 2),
(7, 1, 1),
(8, 1, 1),
(9, 1, 1),
(10, 1, 1),
(11, 1, 1),
(12, 1, 1),
(13, 1, 1),
(14, 1, 1),
(15, 1, 1),
(16, 1, 1),
(17, 1, 1),
(18, 1, 1),
(19, 1, 1),
(20, 1, 1),
(21, 1, 1),
(23, 1, 3),
(24, 1, 3),
(25, 1, 3);

-- --------------------------------------------------------

--
-- Table structure for table `exp_category_groups`
--

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

--
-- Dumping data for table `exp_category_groups`
--

INSERT INTO `exp_category_groups` (`group_id`, `site_id`, `group_name`, `sort_order`, `exclude_group`, `field_html_formatting`, `can_edit_categories`, `can_delete_categories`) VALUES
(1, 1, 'Board', 'a', 0, 'all', '', ''),
(2, 1, 'Contact', 'a', 0, 'all', '', ''),
(3, 1, 'Authors', 'a', 0, 'all', '', '');

-- --------------------------------------------------------

--
-- Table structure for table `exp_category_posts`
--

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

--
-- Dumping data for table `exp_category_posts`
--

INSERT INTO `exp_category_posts` (`entry_id`, `cat_id`) VALUES
(4, 19),
(5, 14),
(6, 3),
(7, 3),
(8, 3),
(9, 3),
(10, 3),
(11, 17),
(12, 20),
(13, 16),
(14, 11),
(15, 3),
(16, 3),
(17, 10),
(18, 3),
(20, 3),
(21, 3),
(22, 13),
(23, 3),
(24, 3),
(26, 3),
(28, 9),
(29, 3),
(30, 3),
(31, 3),
(32, 3),
(33, 6),
(35, 21),
(36, 3),
(37, 8),
(38, 3),
(39, 7),
(40, 3),
(41, 3),
(42, 3),
(43, 3),
(44, 3),
(45, 3),
(46, 3),
(47, 3),
(48, 3),
(50, 3),
(51, 12),
(52, 3),
(53, 18),
(54, 15),
(56, 3),
(57, 3),
(58, 3),
(59, 3),
(60, 3),
(61, 3),
(62, 3),
(63, 3),
(64, 3),
(65, 3),
(67, 3),
(68, 3),
(69, 3),
(70, 3),
(71, 3),
(72, 3),
(74, 3),
(76, 3),
(78, 3),
(81, 3),
(82, 3),
(84, 3),
(85, 3),
(86, 3),
(87, 3),
(88, 3),
(90, 3),
(91, 3),
(92, 3),
(93, 23),
(94, 3),
(95, 3),
(96, 3),
(97, 3),
(98, 3),
(99, 3),
(100, 3),
(101, 3),
(102, 3),
(103, 3),
(104, 3),
(105, 3),
(106, 3),
(107, 3),
(108, 3),
(110, 23),
(111, 23),
(112, 23),
(113, 23),
(114, 23),
(115, 23),
(117, 3),
(118, 3),
(119, 3),
(120, 3),
(121, 3),
(122, 3),
(124, 3),
(125, 4),
(127, 3),
(128, 3),
(129, 3),
(130, 3),
(131, 3),
(132, 3),
(133, 3),
(135, 3),
(136, 3),
(138, 3),
(139, 4),
(140, 3),
(142, 5),
(143, 5),
(144, 3),
(145, 3),
(163, 24),
(165, 24),
(166, 24),
(167, 24),
(168, 24),
(170, 3),
(173, 25),
(174, 25),
(175, 3),
(176, 3),
(177, 3),
(178, 3),
(179, 3),
(180, 3),
(181, 3),
(182, 3);

-- --------------------------------------------------------

--
-- Table structure for table `exp_channels`
--

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

--
-- Dumping data for table `exp_channels`
--

INSERT INTO `exp_channels` (`channel_id`, `site_id`, `channel_name`, `channel_title`, `channel_url`, `channel_description`, `channel_lang`, `total_entries`, `total_comments`, `last_entry_date`, `last_comment_date`, `cat_group`, `status_group`, `deft_status`, `field_group`, `search_excerpt`, `deft_category`, `deft_comments`, `channel_require_membership`, `channel_max_chars`, `channel_html_formatting`, `channel_allow_img_urls`, `channel_auto_link_urls`, `channel_notify`, `channel_notify_emails`, `comment_url`, `comment_system_enabled`, `comment_require_membership`, `comment_use_captcha`, `comment_moderate`, `comment_max_chars`, `comment_timelock`, `comment_require_email`, `comment_text_formatting`, `comment_html_formatting`, `comment_allow_img_urls`, `comment_auto_link_urls`, `comment_notify`, `comment_notify_authors`, `comment_notify_emails`, `comment_expiration`, `search_results_url`, `show_button_cluster`, `rss_url`, `enable_versioning`, `max_revisions`, `default_entry_title`, `url_title_prefix`, `live_look_template`) VALUES
(1, 1, 'about', 'About', 'http://books-acm.minla.net/', NULL, 'en', 5, 0, 1384322640, 0, '', NULL, 'open', 1, NULL, NULL, 'y', 'y', NULL, 'all', 'y', 'n', 'n', NULL, NULL, 'y', 'n', 'n', 'n', 5000, 0, 'y', 'xhtml', 'safe', 'n', 'y', 'n', 'n', NULL, 0, NULL, 'y', NULL, 'n', 10, '', '', 0),
(2, 1, 'board', 'Board', 'http://books-acm.minla.net/', NULL, 'en', 17, 0, 1383953040, 0, '1', NULL, 'open', 2, NULL, NULL, 'y', 'y', NULL, 'all', 'y', 'n', 'n', NULL, NULL, 'y', 'n', 'n', 'n', 5000, 0, 'y', 'xhtml', 'safe', 'n', 'y', 'n', 'n', NULL, 0, NULL, 'y', NULL, 'n', 10, '', '', 0),
(3, 1, 'contact', 'Contact', 'http://books-acm.minla.net/', NULL, 'en', 124, 0, 1385140380, 0, '2', NULL, 'open', 3, NULL, NULL, 'y', 'y', NULL, 'all', 'y', 'n', 'n', NULL, NULL, 'y', 'n', 'n', 'n', 5000, 0, 'y', 'xhtml', 'safe', 'n', 'y', 'n', 'n', NULL, 0, NULL, 'y', NULL, 'n', 10, '', '', 0),
(4, 1, 'authors', 'Authors', 'http://books-acm.minla.net/', NULL, 'en', 18, 0, 1385064360, 0, '3', NULL, 'open', 1, NULL, NULL, 'y', 'y', NULL, 'all', 'y', 'n', 'n', NULL, NULL, 'y', 'n', 'n', 'n', 5000, 0, 'y', 'xhtml', 'safe', 'n', 'y', 'n', 'n', NULL, 0, NULL, 'y', NULL, 'n', 10, '', '', 0),
(5, 1, 'readers', 'Readers', 'http://books-acm.minla.net/', '', 'en', 5, 0, 1385064120, 0, '', NULL, 'open', 1, 1, '', 'y', 'y', NULL, 'all', 'y', 'n', 'n', '', '', 'y', 'n', 'n', 'n', 5000, 0, 'y', 'xhtml', 'safe', 'n', 'y', 'n', 'n', '', 0, '', 'y', '', 'n', 10, '', '', 0),
(7, 1, 'libraries', 'Libraries', 'http://books-acm.minla.net/', NULL, 'en', 8, 0, 1384886400, 0, '', NULL, 'open', 1, NULL, NULL, 'y', 'y', NULL, 'all', 'y', 'n', 'n', NULL, NULL, 'y', 'n', 'n', 'n', 5000, 0, 'y', 'xhtml', 'safe', 'n', 'y', 'n', 'n', NULL, 0, NULL, 'y', NULL, 'n', 10, '', '', 0);

-- --------------------------------------------------------

--
-- Table structure for table `exp_channel_data`
--

DROP TABLE IF EXISTS `exp_channel_data`;
CREATE TABLE IF NOT EXISTS `exp_channel_data` (
  `entry_id` int(10) unsigned NOT NULL,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `channel_id` int(4) unsigned NOT NULL,
  `field_id_1` text,
  `field_ft_1` tinytext,
  `field_id_2` text,
  `field_ft_2` tinytext,
  `field_id_3` text,
  `field_ft_3` tinytext,
  `field_id_4` text,
  `field_ft_4` tinytext,
  `field_id_5` text,
  `field_ft_5` tinytext,
  `field_id_6` text,
  `field_ft_6` tinytext,
  `field_id_7` text,
  `field_ft_7` tinytext,
  `field_id_8` text,
  `field_ft_8` tinytext,
  `field_id_9` text,
  `field_ft_9` tinytext,
  `field_id_10` text,
  `field_ft_10` tinytext,
  `field_id_11` text,
  `field_ft_11` tinytext,
  `field_id_12` text,
  `field_ft_12` tinytext,
  `field_id_13` text,
  `field_ft_13` tinytext,
  `field_id_14` text,
  `field_ft_14` tinytext,
  `field_id_15` text,
  `field_ft_15` tinytext,
  `field_id_16` text,
  `field_ft_16` tinytext,
  `field_id_17` text,
  `field_ft_17` tinytext,
  `field_id_18` text,
  `field_ft_18` tinytext,
  `field_id_19` text,
  `field_ft_19` tinytext,
  `field_id_20` text,
  `field_ft_20` tinytext,
  `field_id_21` text,
  `field_ft_21` tinytext,
  `field_id_22` text,
  `field_ft_22` tinytext,
  `field_id_23` text,
  `field_ft_23` tinytext,
  `field_id_24` text,
  `field_ft_24` tinytext,
  PRIMARY KEY (`entry_id`),
  KEY `channel_id` (`channel_id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `exp_channel_data`
--

INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_7`, `field_ft_7`, `field_id_8`, `field_ft_8`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`, `field_id_14`, `field_ft_14`, `field_id_15`, `field_ft_15`, `field_id_16`, `field_ft_16`, `field_id_17`, `field_ft_17`, `field_id_18`, `field_ft_18`, `field_id_19`, `field_ft_19`, `field_id_20`, `field_ft_20`, `field_id_21`, `field_ft_21`, `field_id_22`, `field_ft_22`, `field_id_23`, `field_ft_23`, `field_id_24`, `field_ft_24`) VALUES
(1, 1, 1, '<p>The series will include books from across the entire spectrum of computer science subject matter and will appeal to computing practitioners, researchers, educators, and students.  The series will initially focus on four kinds of books: graduate level textbooks; research monographs that provide an overview of established and emerging fields; practitioner level professional books; and books devoted to the history and social impact of computing.  ACM Books will be attractively published as ebooks and print volumes at affordable prices.  They will be widely distributed in both print and digital formats through booksellers and to  libraries (and library consortia) and individual ACM members via the ACM Digital Library platform.</p><h2>For Authors, Readers, and Libraries ACM Books will remain faithful to ACM’s longstanding tradition of:</h2><ul>\n<li>Quality</li><li>Scholarship</li><li>Technical Breadth & Depth</li><li>Affordability</li><li>Innovation</li></ul>', 'xhtml', '', 'none', '', 'xhtml', '', 'none', '', 'none', '', 'none', '', 'xhtml', '', 'xhtml', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(4, 1, 2, '', NULL, '', NULL, '', NULL, 'Bashar Nuseibeh', 'none', 'The Open University, UK', 'none', 'Software Engineering', 'none', '<p>Bashar Nuseibeh is professor of computing at The Open University, UK, where he served as Director of Research in Computing (2002-2008), and a professor of software engineering at Lero - The Irish Software Engineering Research Centre, where he served as its Chief Scientist (2009-2012). He is also a visiting professor at Imperial College London and the National Institute of Informatics, Japan. His research interests in software engineering include the relationship between requirements and design, security and privacy, and technology transfer. He holds a European Research Council Advanced Grant (2012-2017) and a Royal Society-Wolfson Merit Award (2013-2018), both focusing on "Adaptive Security and Privacy". His past research has been recognised through various awards including a Philip Leverhume Prize (2002), an ICSE Most Influential Paper (2003), a Senior Research Fellowship of the Royal Academy of Engineering (2005), an Automated Software Engineering Fellowship (2007), a Microsoft Research Award (2011), and a collection of "best" papers, posters, videos and software tools. Professionally he has served as Chair of the steering committee of the ACM/IEEE International Conference on Software Engineering, Chair of IFIP Working Group 2.9 (on requirements engineering), and is currently Editor-in-Chief of IEEE Transactions on Software Engineering and Editor Emeritus of the Automated Software Engineering Journal.</p>', 'xhtml', 'ChannelImages', 'xhtml', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'B.Nuseibeh@open.ac.uk', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(5, 1, 2, '', NULL, '', NULL, '', NULL, 'Shih-Fu Chang', 'none', 'Columbia University', 'none', 'Multimedia Systems', 'none', '<p>Shih-Fu Chang is the Richard Dicker Professor and Director of the Digital Video and Multimedia Lab at Columbia University. He is an active researcher leading development of innovative technologies for multimedia information extraction and retrieval, while contributing to fundamental advances of machine learning, computer vision, and signal processing. </p><p>Recognized by paper awards and citation impacts, his scholarly work set trends in several important areas, such as content-based visual search, compressed-domain video manipulation, image authentication, large-scale high-dimensional data indexing, and semantic video search. He co-led the ADVENT university-industry research consortium with participation of more than 25 industry sponsors. He has received ACM SIG Multimedia Technical Achievement Award, IEEE Signal Processing Society Technical Achievement Award, IEEE Kiyo Tomiyasu Award, Service Recognition Awards from IEEE and ACM, and the Great Teacher Award from the Society of Columbia Graduates. He serves as the Chair of ACM Special Interest Group in Multimedia (SIGMM, 2013-date), Senior Vice Dean of Columbia Engineering School (2012-date), Editor-in-Chief of the IEEE Signal Processing Magazine (2006-8), Chairman of Columbia Electrical Engineering Department (2007-2010), and advisor for several companies and research institutes. His research has been broadly supported by government agencies as well as many industry sponsors. He is a Fellow of IEEE and the American Association for the Advancement of Science.</p>', 'xhtml', 'ChannelImages', 'xhtml', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'sfchang@ee.columbia.edu', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(6, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Teldan Information Systems', 'none', 'B.S.R. Tower #1 Ben-Gurion 2', 'none', 'Ramat-Gan ISRAEL', 'none', '972-(0)3-6117500', 'none', '72-(0)3-6117501', 'none', 'joelg@teldan.com', 'none', 'http://www.teldan.com/Teldan08/Templates/ShowPage.asp?DBID=1&LNGID=1&TMID=10002&FID=547', 'none', 'Israel', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(7, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Wisconsin Library Services WiLS', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'USA', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(8, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'African Open Consortium', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Namibia', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(9, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'AMICAL Consortium', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'http://www.amicalnet.org/contact', 'none', 'Beirut', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'http://www.amicalnet.org/contact', 'none', '', 'none', '', 'xhtml'),
(10, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'ANKOS Consortium', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Turkey', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(11, 1, 2, '', NULL, '', NULL, '', NULL, 'Ramesh Jain', 'none', 'University of California, Irvine', 'none', 'Social Computing', 'none', '<p>Ramesh Jain is an entrepreneur, researcher, and educator.    He is currently a Donald Bren Professor in Information & Computer Sciences at University of California, Irvine where he is doing research in Event Web and experiential computing.  Earlier he served on faculty of Georgia Tech, University of California at San Diego, The university of Michigan, Ann Arbor, Wayne State University, and Indian Institute of Technology, Kharagpur.  He is a Fellow of ACM, IEEE, AAAI, IAPR, and SPIE.  His current research interests are in processing massive number of geo-spatial heterogeneous data streams for building Smart Social System.  He is the recipient of several awards including the ACM SIGMM Technical Achievement Award 2010.  Ramesh co-founded several companies, managed them in initial stages, and then turned them over to professional management.  These companies include PRAJA, Virage, and ImageWare.  Currently he is involved in Stikco Studio.  He has also been advisor to several other companies including some of the largest companies in media and search space.</p>', 'xhtml', 'ChannelImages', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'jain@ics.uci.edu', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(12, 1, 2, '', NULL, '', NULL, '', NULL, 'Edward Fox', 'none', 'Virginia Tech', 'none', 'Subject Area Goes Here', 'none', '<p>Ed Fox holds a Ph.D. and M.S. in Computer Science from Cornell (working with Gerry Salton), and a B.S. from M.I.T. (working with J.C.R. Licklider). Since 1983 he has been at Virginia Tech, where he directs the Digital Library Research Laboratory. He is Executive Director and Founder of the Networked Digital Library of Theses and Dissertations and was a member of the CRA Board. He was chair of ACM SIGIR and of the IEEE Technical Committee on Digital Libraries, and is chair of the steering committee for JCDL. He has been (co-)Principal Investigator on over 113 research grants/ contracts. He has been involved in about 1000 publications or presentations, related to all aspects of digital information.</p>', 'xhtml', 'ChannelImages', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'fox@vt.edu', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(13, 1, 2, '', NULL, '', NULL, '', NULL, 'Laurie Hendren', 'none', 'McGill University', 'none', 'Programming Languages', 'none', '<p>Laurie Hendren is a Professor at McGill University, Montreal, Canada.   Her research group focuses on new compiler tools and techniques.  Their past projects have focused on pointer analysis and advanced compiler frameworks for Java (Soot) and AspectJ (abc).  Her group currently focuses on compilers for dynamic languages, with a specific focus on numerical languages like MATLAB.     She is a Fellow of the ACM,   a Fellow of the Royal Society of Canada,   and she holds a Canada Research Chair.</p>', 'xhtml', 'ChannelImages', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'hendren@cs.mcgill.ca', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(14, 1, 2, '', NULL, '', NULL, '', NULL, 'Michel Beaudouin-Lafon', 'none', 'Université Paris-Sud', 'none', 'Human-Centered Computing', 'none', '<p>Michel Beaudouin-Lafon is Professor of Computer Science at Université Paris-Sud (France) and a senior member of Institut Universitaire de France. He was director of LRI, the laboratory for computer science at Université Paris-Sud (280 faculty, staff, and PhD students) for eight years, then spent two years as visiting professor at Stanford University. Michel has worked in human-computer interaction (HCI) for over 20 years and was elected to the ACM SIGCHI Academy in 2006. His research interests include fundamental aspects of interaction, engineering of interactive systems, computer-supported cooperative work and novel interaction techniques. He works in the In Situ group, a joint lab between LRI and INRIA (<a href="http://insitu.lri.fr">http://insitu.lri.fr</a>), and is directing the 22M€ Digiscope project. Michel has advised twenty Ph.D. students, sits on several journal editorial boards and on many program committees. He was the technical co-chair for the ACM CHI  2013 conference in Paris. He founded AFIHM, the Francophone association for human-computer interaction. He is a member of the ACM Europe Council and was a member of the ACM Council and the ACM Publications Board.</p><p><strong>Web:</strong> <a href="http://www.lri.fr/~mbl">http://www.lri.fr/~mbl</a></p>', 'xhtml', 'ChannelImages', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'mbl@lri.fr', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(15, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Amigos Library Services, Inc', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'USA', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(16, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Arabian Advance Systems	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Saudi Arabia', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(17, 1, 2, '', NULL, '', NULL, '', NULL, 'Thomas J. Misa', 'none', 'University of Minnesota', 'none', 'History of Computing', 'none', '<p>Thomas J. Misa directs the Charles Babbage Institute at the University of Minnesota, where he is a faculty member in the Department of Electrical and Computer Engineering and in the Program for the History of Science, Technology, and Medicine.  His recent books include _Gender Codes: Why Women Are Leaving Computing_ (Wiley 2010) and _Digital State: The Story of Minnesota''s Computing Industry_ (Minnesota 2013).</p>', 'xhtml', 'ChannelImages', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'tmisa@umn.edu', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(18, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'B-On Consortium of Portugal (FCCN)	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Portugal', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(19, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'C3 - Czech CompSci Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Czech Republic', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(20, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'CAPES Coordenação de Aperfeiçoamento de Pessoal de Nível Superior	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'http://www.capes.gov.br/faleconosco', 'none', 'Brazil', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(21, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'California Digital Library	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'USA', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(22, 1, 2, '', NULL, '', NULL, '', NULL, 'Mohamed F. Mokbel', 'none', 'University of Minnesota', 'none', 'Mobile Computing', 'none', '<p>Mohamed F. Mokbel (Ph.D., Purdue University, MS, B.Sc., Alexandria University) is an associate professor in the Department of Computer Science and Engineering, University of Minnesota. His current research interests focus on providing database and platform support for spatio-temporal data, location based services, personalization, and recommender systems. His research work has been recognized by four best paper awards at IEEE MASS 2008, IEEE MDM 2009, SSTD 2011, and ACM MobiGIS Workshop 2012, and by the NSF CAREER award 2010. Mohamed is/was general co-chair of SSTD 2011, program co-chair of ACM SIGSPAITAL GIS 2008-2010, and MDM 2014, 2011. He has served in the editorial board of IEEE Data Engineering Bulletin, Distributed and Parallel Databases Journal, and Journal of Spatial Information Science. Mohamed is an ACM and IEEE member and a founding member of ACM SIGSPATIAL. For more information, please visit: <a href="www.cs.umn.edu/~mokbel">www.cs.umn.edu/~mokbel</a></p>', 'xhtml', 'ChannelImages', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'mokbel@cs.umn.edu', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(23, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'California State University	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'USA', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(24, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'CAUL/ Australia	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'http://www.caul.edu.au/contact-caul', 'none', 'Australia', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(25, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Chile Consrtium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Chile', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(26, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'CILEA Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Italy', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(27, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Colombia Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Colombia', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(28, 1, 2, '', NULL, '', NULL, '', NULL, 'Gerhard Weikum', 'none', 'Max Planck Institute for Informatics', 'none', 'Data Management', 'none', '<p>Gerhard Weikum is a Scientific Director at the Max Planck Institute for Informatics in Saarbruecken,  Germany, and also an Adjunct Professor at Saarland University. He graduated from the University of Darmstadt, Germany. Weikum''s research spans  transactional and distributed systems, self-tuning database systems, DB&IR integration, and automatic knowledge harvesting from Web and text sources. He co-authored a comprehensive textbook on transactional systems, received the VLDB Test-of-Time Award for his work on automatic DB tuning, and is one of the creators of the YAGO knowledge base. Weikum is an ACM Fellow, a Fellow of the German Computer Society, and a member of the German Academy of Science and Engineering and the Academia Europaea. He has served on various editorial boards, including ACM TODS, ACM TWEB, and Communications of the ACM, and as program committee chair of conferences like ACM SIGMOD, Data Engineering, and CIDR. From 2003 through 2009 he was president of the VLDB Endowment. He currently serves on Germany''s Council of Science and Humanities. Weikum received a Google Focused Research Award in 2010, and is the recipient of the ACM SIGMOD Contributions Award 2011.</p>', 'xhtml', 'ChannelImages', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'weikum@mpi-inf.mpg.de', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(29, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Consortia Canada	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'http://www.concan.ca/contacts/index.php', 'none', 'Canada', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(30, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Consortium Luxembourg	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Luxembourg', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(31, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Consortium of Academic and Research Libraries in Illinois	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'USA', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(32, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Consortium of the Swiss Academic Libraries	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Switzerland', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(33, 1, 2, '', NULL, '', NULL, '', NULL, 'Limsoon Wong', 'none', 'National University of Singapore', 'none', 'Bioinformatics', 'none', '<p>Limsoon Wong is KITHCT Professor of Computer Science and Professor of Pathology at the National University of Singapore. He currently works mainly on knowledge discovery technologies their application to biomedicine. He serves/served on the editorial boards of Information Systems, <a href="http://www.worldscientific.com/worldscinet/jbcb">Journal of Bioinformatics and Computational Biology</a>, Bioinformatics, Biology Direct, IEEE/ACM Transactions on Computational Biology and Bioinformatics, Drug Discovery Today, Journal of Biomedical Semantics, and Methods. He received his BSc(Eng) in 1988 from Imperial College London and his PhD in 1994 from University of Pennsylvania.</p>', 'xhtml', 'ChannelImages', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'wongls@comp.nus.edu.sg', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(34, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Costa Rica Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Costa Rica', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(35, 1, 2, '', NULL, '', NULL, '', NULL, 'Ricardo Baeza-Yates', 'none', 'Universitat Pompeu Fabra - Barcelona, Spain', 'none', 'Web Engineering', 'none', '<p>Ricardo Baeza-Yates is VP of Yahoo! Labs for Europe and Latin America, leading the labs at Barcelona, Spain and Santiago, Chile, since 2006. Between 2008 and 2012 he also oversaw the Haifa lab. He is also part time Professor at the Dept. of Information and Communication Technologies of the Universitat Pompeu Fabra in Barcelona, Spain. During 2005 he was an ICREA research professor at the same university. Until 2004 he was Professor and Director of the Center for Web Research at the Dept. of Computing Science of the University of Chile (in leave of absence until today). He obtained a Ph.D. from the University of Waterloo, Canada, in 1989. Before he obtained two masters (M.Sc. CS & M.Eng. EE) and the electrical engineering degree from the University of Chile in Santiago. He is co-author of the best-seller Modern Information Retrieval textbook, published in 1999 by Addison-Wesley with a second enlarged edition in 2011, that won the ASIST 2012 Book of the Year award. He is also co-author of the 2nd edition of the Handbook of Algorithms and Data Structures, Addison-Wesley, 1991; and co-editor of Information Retrieval: Algorithms and Data Structures, Prentice-Hall, 1992, among more than 500 other publications. From 2002 to 2004 he was elected to the board of governors of the IEEE Computer Society and in 2012 he was elected for the ACM Council. He has received the Organization of American States award for young researchers in exact sciences (1993), the Graham Medal for innovation in computing given by the University of Waterloo to distinguished ex-alumni (2007), the CLEI Latin American distinction for contributions to CS in the region (2009), and the National Award of the Chilean Association of Engineers (2010), among other distinctions. In 2003 he was the first computer scientist to be elected to the Chilean Academy of Sciences and since 2010 is a founding member of the Chilean Academy of Engineering. In 2009 he was named ACM Fellow and in 2011 IEEE Fellow. </p>', 'xhtml', 'ChannelImages', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'rbaeza@acm.org', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(36, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'CONRICyT (Mexican National Consortium)	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Mexico', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(37, 1, 2, '', NULL, '', NULL, '', NULL, 'John C. Hart', 'none', 'University of Illinois', 'none', 'Computer Graphics', 'none', '<p>John C. Hart is a Professor in the Department of Computer Science at the University of Illinois, Urbana-Champaign where he studies computer graphics and computational topology. His research in computer graphics has been supported by Adobe, DARPA, Intel, Microsoft, NSF, Nokia and NVidia. He is a past Editor-in-Chief of ACM Transactions on Graphics, a co-author of "Real-Time Shading" and a contributing author for "Texturing and Modeling: A Procedural Approach." He served from 1994-9 on the ACM SIGGRAPH Executive Committee, and is an Executive Producer of its documentary "The Story of Computer Graphics." Prof. Hart received his B.S. from Aurora University in 1987, and an M.S. (1989) and Ph.D. (1991) from the Electronic Visualization Laboratory at the University of Illinois at Chicago.</p>', 'xhtml', 'ChannelImages', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'jch@illinois.edu', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(38, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'CVTI - Slovakia Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Slovakia', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(39, 1, 2, '', NULL, '', NULL, '', NULL, 'Dr. Divyakant Agrawal', 'none', 'University of California, Santa Barbara', 'none', 'Cloud Computing', 'none', '<p>Dr. Divyakant Agrawal is a Professor of Computer Science and the Director of Engineering Computing Infrastructure at the University of California at Santa Barbara. His research expertise is in the areas of database systems, distributed computing, data warehousing, and large-scale information systems. From January 2006 through December 2007, Dr. Agrawal served as VP of Data Solutions and Advertising Systems at the Internet Search Company ASK.com. Dr. Agrawal has also served as a Visiting Senior Research Scientist at the NEC Laboratories of America in Cupertino, CA from 1997 to 2009.  He has also had visiting appointments at the School of Computing, National University of Singapore, as the William Mong Fellow at the Hong Kong University, and at IBM Almaden Research Center. During 2013-14, Dr. Agrawal will be spending his sabbatical leave as a Visiting Scientist at Google Inc. in Mountain View, California. During his professional career, Dr. Agrawal has served on numerous Program Committees of International Conferences, Symposia, and Workshops and served as an editor of the journal of Distributed and Parallel Databases (1993-2008), and the VLDB journal (2003-2008). He currently serves as the Editor-in-Chief of Distributed and Parallel Databases and is on the editorial boards of the ACM Transactions on Database Systems, ACM Transactions on Spatial Algorithms and Systems, and IEEE Transactions of Knowledge and Data Engineering. He has recently been elected to the Board of Trustees of the VLDB Endowment and elected to serve on the Executive Committee of ACM Special Interest Group SIGSPATIAL. Dr. Agrawal''s research philosophy is to develop data management solutions that are theoretically sound and are relevant in practice. He has published more than 350 research manuscripts in prestigious forums (journals, conferences, symposia, and workshops) on wide range of topics related to data management and distributed systems and has advised more than 35 Doctoral students during his academic career. He received the 2011 Outstanding Graduate Mentor Award from the Academic Senate at UC Santa Barbara. Dr. Agrawal has been recognized as an Association of Computing Machinery (ACM) Distinguished Scientist in 2010 and was inducted as an ACM Fellow in 2012. He has also been inducted as a Fellow of IEEE in 2012. His current interests are in the area of scalable data management and data analysis in Cloud Computing environments, security and privacy of data in the cloud, and scalable analytics over social networks data and social media. </p>', 'xhtml', 'ChannelImages', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'agrawal@cs.ucsb.edu', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(40, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Couperin/CNRS/INRIA	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'France', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(41, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Daneshyar Network	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'United Arab Emirates', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(42, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Danish Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Denmark', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(43, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'DRAA (China) Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'http://www.libconsortia.edu.cn/Spage/view.action?pagecode=jrlm', 'none', 'China', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(44, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'EBSCO Latin America	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Mexico, Colombia, Chile', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(45, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'EBSCO North America	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'USA', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(46, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'EBSCO Ireland 	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Ireland', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(47, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'EBSCO Latvia	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Latvia', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(48, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'EBSCO Poland	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'http://www2.ebsco.com/en-us/offices/Pages/Contact.aspx?T=Poland', 'none', 'Poland', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(49, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Ecuador Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Ecuador', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(50, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Federation of Kentucky Academic Libraries (FOKAL)	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'USA', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(51, 1, 2, '', NULL, '', NULL, '', NULL, 'Bernard Scholkopf', 'none', 'JMLR', 'none', 'Machine Learning & Data Mining', 'none', '<p>My scientific interests are in the field of inference from empirical data, in particular machine learning and perception (<a href="http://www.is.tuebingen.mpg.de/research/dep/bs.html">Department of Empirical Inference</a>). In particular, I study kernel methods for extracting regularities from possibly high-dimensional data. These regularities are usually statistical ones, however, in recent years I have also become interested in methods for finding causal regularities.</p><p>To learn more about our work, you may want to take a look at the <a href="http://www.is.tuebingen.mpg.de/research/dep/bs.html">Department Overview</a>.</p><p>Many of the papers can downloaded if you click on the tab "publications;" the older ones usually from <a href="http://www.kernel-machines.org/">http://www.kernel-machines.org/</a>. A starting point is the first chapter of our book Learning with Kernels, available online. If your interest in machine learning is a mathematical one, you might prefer our review paper in the Annals of Statistics (<a href="http://arxiv.org/PS_cache/math/pdf/0701/0701907v3.pdf">arXiv link</a>). For a general audience, I wrote a short high-level introduction in German that appeared in the Jahrbuch of the Max Planck Society.</p><p>Click <a href="http://www.is.tuebingen.mpg.de/fileadmin/user_upload/files/Research/Departments/Empirical_Inference/Orion_15.12.04_04h42m.jpg">here</a> for a photograph of a beautiful northern light, which I took a few years ago from the plane on the way home from NIPS.</p><p>If you''d like to contact me, please consider these two notes:<br>1. I just became co-editor-in-chief of JMLR. I work for <a href="http://jmlr.org/">JMLR</a> because I believe in its open access model, but it takes a lot of time. During my JMLR term, please don''t convince me to do other journal or grant reviewing duties.<br>2. I am not very organized with my e-mail -- so if you want to apply for a position in my lab, please send your application only to <a href="mailto:Sekretariat-Schoelkopf@tuebingen.mpg.de">Sekretariat-Schoelkopf@tuebingen.mpg.de</a>. Note that we do not respond to non-personalized applications that look like they are being sent to a large number of places simultaneously.</p>', 'xhtml', 'ChannelImages', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'bernhard.schoelkopf@tuebingen.mpg.de', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(52, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Finland Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'http://www.nationallibrary.fi/libraries/finelib/yhteystiedot.html', 'none', 'Finland', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(53, 1, 2, '', NULL, '', NULL, '', NULL, 'Dr. Ahmad-Reza Sadeghi', 'none', ' Technische Universität Darmstadt, Germany', 'none', 'Security & Privacy', 'none', '<p>Dr. Ahmad-Reza Sadeghi	 				is a full professor of Computer Science at Technische Universität Darmstadt, Germany. He is the head of the System Security Lab at the Center for Advanced Security Research Darmstadt (CASED), and the Director of the Intel Collaborative Research Institute for Secure Computing (ICRI-SC) at TU-Darmstadt. He holds a Ph.D. in Computer Science from the University of Saarland in Saarbrücken, Germany. Prior to academia, he worked in Research and Development of Telecommunications enterprises, amongst others Ericsson Telecommunications. He is on the Editorial Board of the ACM Transactions on Information and System Security. Currently his research focuses on mobile security and privacy, cyber physical systems security and hardware-based security. Dr. Sadeghi has been awarded with the renowned German “Karl Heinz Beckurts” prize for his research on Trusted and Trustworthy Computing technology and its transfer to industrial practice. The award honors excellent scientific achievements with high impact on industrial innovations in Germany.</p>', 'xhtml', 'ChannelImages', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'ahmad.sadeghi@trust.cased.de', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(54, 1, 2, '', NULL, '', NULL, '', NULL, 'Vivek Sarkar', 'none', 'Rice University', 'none', 'Parallel Computing', 'none', '<p>Prof. Vivek Sarkar conducts research in multiple aspects of parallel software including programming languages, program analysis, compiler optimizations and runtime systems for parallel and high performance computer systems.  He leads the Habanero Multicore Software Research project at Rice University, and also serves as Associate Director for the multi-university NSF Expeditions Center for Domain-Specific Computing (CDSC). Prior to joining Rice in July 2007, Prof. Sarkar was Senior Manager of Programming Technologies at IBM Research.  His responsibilities at IBM included leading IBM''s research efforts in programming model, tools, and productivity in the PERCS project during 2002- 2007 as part of the DARPA High Productivity Computing System program.  His past projects include the X10 programming language, the Jikes Research Virtual Machine for the Java language, the MIT RAW multicore project, the ASTI optimizer used in IBM''s XL Fortran product compilers, the PTRAN automatic parallelization system, and profile-directed partitioning and scheduling of Sisal programs.</p><p>Prof. Sarkar holds a B.Tech. degree from the Indian Institute of Technology, Kanpur, an M.S. degree from University of Wisconsin-Madison, and a Ph.D. from Stanford University.  He became a member of the IBM Academy of Technology in 1995, the E.D. Butcher Chair in Engineering at Rice University in 2007, and was inducted as an ACM Fellow in 2008.  Prof. Sarkar has been serving as a member of the US Department of Energy''s Advanced Scientific Computing Advisory Committee (ASCAC) since 2009.  He become the chair of the Computer Science Department at Rice University in 2013.</p>', 'xhtml', 'ChannelImages', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'vsarkar@RICE.EDU', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '15', 'xhtml'),
(55, 1, 2, '', NULL, '', NULL, '', NULL, 'M. Tamer Özsu', 'none', 'University of Waterloo', 'none', '', 'none', '<p>M. Tamer Özsu is Professor of Computer Science at the David R. Cheriton School of Computer Science of the University of Waterloo. He was the Director of the Cheriton School from January 2007 to June 2010. Previously he was with the Department of Computing Science of the University of Alberta (1984 - 2000).  His PhD is from the Ohio State University.</p><p>Dr. Özsu''s research is on data management following two threads: large-scale data distribution, and management of non-traditional data (i.e., non-relational data). Currently, his research focus is on graph data and RDF data. Previously his research focus was on object systems, image, video, XML data, and their management in a distributed environment.</p><p>He is the co-author (with Patrick Valduriez) of the classical book Principles of Distributed Database Systems, which is now in its third edition. He has also edited, with Ling Liu, the Encyclopedia of Database Systems.</p><p>Dr. Özsu is a Fellow of the Association for Computing Machinery (ACM), and of the Institute of Electrical and Electronics Engineers (IEEE), and a member of Sigma Xi.  He currently holds a Cheriton Faculty Fellowhsip. He has been an ACM Distinguished Lecturer since 2007. He has held a University Research Chair (2004-2011) and a Faculty Research Fellowship (2000 - 2003) at the University of Waterloo, and a McCalla Research Professorship (1993-1994) at the University of Alberta. He was awarded the ACM SIGMOD Contributions Award in 2006, and The Ohio State University College of Engineering Distinguished Alumnus Award in 2008.</p><p>He serves on the Association for Computing Machinery’s (ACM) Publications Board as Vice Chair for New Publications. Previously, he was the Chair of ACM Special Interest Group on Management of Data (SIGMOD; 2001-2005) and a trustee of the VLDB Endowment (1996-2002). He is the Series Editor of Synthesis Lectures on Data Management (Morgan & Claypool) and is on the editorial boards of three journals, and a book Series. He also serves on a number of boards including the International Advisory Board of National Institute of Informatics (NII) of Japan, Advisory Committee of School of Engineering of Hong Kong University of Science and Technology, and Advisory Committee of the Department of Computer Science and Engineering of Hong Kong University of Science and Technology. He has served as the Program Chair and General Chair of a number of international conferences including SIGMOD, VLDB, and ICDE.</p>', 'xhtml', 'ChannelImages', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'tamer.ozsu@uwaterloo.ca', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(56, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Greater Western Library Alliance (GWLA)	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'USA', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(57, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Higher Education Commission, Pakistan	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'http://www.hec.gov.pk/Pages/ContactUs.aspx', 'none', 'Pakistan', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(58, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'HeBIS', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'http://www.hebis.de/de/1kontakt/kontakt_index.php', 'none', 'Germany', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(69, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Kungl. Biblioteket /National Library of Sweden	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Sweden', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(59, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Hellenic Academic Libraries Link	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'http://www.heal-link.gr/enh/', 'none', 'Greece', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(60, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Hong Kong	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Hong Kong', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(61, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Hungary Consortium (EISZ)	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Hungary', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(62, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'INDEST (India) Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'India', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(63, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'IReL Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Ireland', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(64, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Japan National University Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Japan', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(65, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Japan Academic Open Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Japan', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(66, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'KERIS', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Republic of Korea', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(67, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Kooperation E-Medien Österreich	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'https://www.konsortien.at/ssl/about.asp', 'none', 'Austria', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(68, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Iraqi Virtual Science Library', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Iraq	', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(70, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'LOBBI Netherlands Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Netherlands', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(71, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Lithuanian Research Academic Library Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Lithuania', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(72, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'LYRASIS Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'USA', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(73, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Latin American Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Colombia, Chile, Peru, Mexico, Uruguay, Argentina, Ecuador, Costa Rica', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(74, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'MALMAD - Israel Center for Digital Information Services	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Israel', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(75, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Malaysia Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Malaysia', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(76, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Maryland Digital Library	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'USA', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(77, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Mexico Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Mexico', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_7`, `field_ft_7`, `field_id_8`, `field_ft_8`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`, `field_id_14`, `field_ft_14`, `field_id_15`, `field_ft_15`, `field_id_16`, `field_ft_16`, `field_id_17`, `field_ft_17`, `field_id_18`, `field_ft_18`, `field_id_19`, `field_ft_19`, `field_id_20`, `field_ft_20`, `field_id_21`, `field_ft_21`, `field_id_22`, `field_ft_22`, `field_id_23`, `field_ft_23`, `field_id_24`, `field_ft_24`) VALUES
(78, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Midwest Collaborative for Library Services (MCLS)	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'USA', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(79, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Middle East Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'United Arab Emirates', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(80, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Midwest Collaborative for Library (MCLS)	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'USA', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(81, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'MINCyT (Argentina) Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'http://www.mincyt.gob.ar/contacto', 'none', 'Argentina', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(82, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Minitex', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'USA', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(83, 1, 4, '<p>Scholarly book publishing has changed dramatically over the past decade, both in terms of the business models and consumption formats and the choice of publishers now available to scholars looking to disseminate their work. </p><p>On the commercial side, there are currently only a small handful of large publishing conglomerates now publishing high quality information for global audiences. </p><p>On the non-profit side, many of the most respected university presses and associations have either stopped publishing or significantly reduced the number of titles they can manage each year.</p><p>Increasingly, selling individual book titles to individuals has been replaced or supplanted by selling collections of titles to institutional buyers, who in turn provide access to those titles via large-scale online distribution platforms. The importance and commercial viability of print has diminished in recent years, although the latest print-on-demand technology coupled with sophisticated supply-chain management has enabled many of the most specialized publishers to thrive with selling both digital and print books.</p><p>ACM believes strongly that the new dynamics in the book publishing industry favor those publishers that remain focused on quality above all other considerations, although there are many publishers out there with enough size and scale to offer a compelling sales pitch to institutions looking to buy large quantities of book content in bulk even with a mixed bag in relation to quality. </p><p>That has never been ACM''s approach, although because of ACM''s longevity and reputation, the size and scale of ACM''s overall publication program has grown to become one of the largest and most respected collections of scholarly information anywhere in the world. </p><p>This combination of quality and scale offers ACM Books authors a unique opportunity to position their work as part of the world''s most respected CS Publisher, and to have a great publishing experience in the process.</p>', 'xhtml', 'Authors', 'none', '<p>Scholarly book publishing has changed dramatically over the past \ndecade, both in terms of the business models and consumption formats and\n the choice of publishers now available to scholars looking to \ndisseminate their work. </p><p>On the commercial side, there are \ncurrently only a small handful of large publishing conglomerates now \npublishing high quality information for global audiences. </p><p>On the \nnon-profit side, many of the most respected university presses and \nassociations have either stopped publishing or significantly reduced the\n number of titles they can manage each year.</p><p>Increasingly, selling\n individual book titles to individuals has been replaced or supplanted \nby selling collections of titles to institutional buyers, who in turn \nprovide access to those titles via large-scale online distribution \nplatforms. The importance and commercial viability of print has \ndiminished in recent years, although the latest print-on-demand \ntechnology coupled with sophisticated supply-chain management has \nenabled many of the most specialized publishers to thrive with selling \nboth digital and print books.</p><p>ACM believes strongly that the new \ndynamics in the book publishing industry favor those publishers that \nremain focused on quality above all other considerations, although there\n are many publishers out there with enough size and scale to offer a \ncompelling sales pitch to institutions looking to buy large quantities \nof book content in bulk even with a mixed bag in relation to quality. </p><p>That\n has never been ACM''s approach, although because of ACM''s longevity and \nreputation, the size and scale of ACM''s overall publication program has \ngrown to become one of the largest and most respected collections of \nscholarly information anywhere in the world. </p><p>This combination of \nquality and scale offers ACM Books authors a unique opportunity to \nposition their work as part of the world''s most respected CS Publisher, \nand to have a great publishing experience in the process.</p>', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(84, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'NEICON', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Russian Federation', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(85, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'NERL Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'USA', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(86, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Norwegian Consortium of Academic Libraries	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Norway', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(87, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'OhioLINK', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'USA', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(88, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'PALCI - Pennsylvania Academic Library Consortium, Inc.	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'USA', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(89, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Peru Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Peru', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(90, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Publiciencia Ltda	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'http://www.publiciencia.com/contactenos.php?id_pais=peru', 'none', 'Peru', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(91, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Robert W. Woodruff Library Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'USA', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(92, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Russian Open Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Russian Federation', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(93, 1, 4, '<p>\n	ACM Books is managed by the ACM Books Editorial Board, led by \nEditor-In–Chief Tamer Ӧzsu of the University of Waterloo.  The Board \nconsists of an impressive roster of well known and distinguished Area \nEditors who represent many of the major areas within computer science. \nOver time, additional subject areas and Area Editors will be appointed \nto the Board.</p><p>\n	Area Editors are responsible for inviting members of\n the community to submit book publication proposals, evaluating invited \nand unsolicited proposals and manuscripts in their areas, including peer\n review, and making final publication recommendations to the \nEditor-In-Chief.  See here for a current list of \n	<a href="http://books-acm.minla.net/board" target="">Area Editors</a>.</p>', 'xhtml', 'Editorial Selection and Management', 'none', '<p>ACM Books is managed by the ACM Books Editorial Board, led by Editor-In–Chief Tamer Ӧzsu of the University of Waterloo.  The Board consists of an impressive roster of well known and distinguished Area Editors who represent many of the major areas within computer science. Over time, additional subject areas and Area Editors will be appointed to the Board.</p><p>Area Editors are responsible for inviting members of the community to submit book publication proposals, evaluating invited and unsolicited proposals and manuscripts in their areas, including peer review, and making final publication recommendations to the Editor-In-Chief.  See here for a current list of <a href="http://books-acm.minla.net/board" target="">Area Editors</a>.</p>', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(94, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'SANLic', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'South Africa', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(95, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'SENAC (Brazil)	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'http://www.sp.senac.br/jsp/default.jsp?template=976.dwt&testeira=1461&unit=CNAL', 'none', 'Brazil', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(96, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Singapore Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Singapore', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(97, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Spain Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Spain', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(98, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Statewide California Electronic Library Consortium (SCELC)	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'USA', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(99, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'SWETS Africa	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'NIgeria', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(100, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Taiwan Consortium - A.S.	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Taiwan', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(101, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'CHE Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Thailand', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(102, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'UGC Digital Library Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'http://www.inflibnet.ac.in/econ/contact.php', 'none', 'Bangladesh', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(103, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'UK Higher Education Institutions (UK HEI)	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'United Kingdom', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(104, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'University of Puerto Rico Libraries	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'USA', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(105, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'University of the West Indies Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Trin and Tobgo', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(106, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'VIP Consortium	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Philippines', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(107, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'VIVA', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'USA', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(108, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Westchester Academic Library Directors Association (WALDO)	', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'USA', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(110, 1, 4, '', 'xhtml', 'High Quality Production', 'none', '<p>Production of ACM Books will be managed by Morgan & Claypool with a fast and high quality collaborative process.  Accepted authors will receive their choice of LaTeX or Word macros incorporating the standard series design.  Upon submission of final files, the book manuscript will be edited, formatted, and submitted by M&C to the author for final sign-off.  In addition to editing and formatting services, M&C will provide assistance with graphics & art preparation.  ACM Books will be published in several digital formats including downloadable pdfs, reflowable ebook formats, including EPUB, Kindle, and HTML,  and as printed books utilizing the most cutting edge digital print-on-demand technology available.</p>', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(111, 1, 4, '', 'xhtml', 'Global Distribution', 'none', '<p>\n	ACM Books will be widely distributed to an international readership through the joint efforts of ACM and M&C working together.  ACM Books will be offered as an additional purchase option for ACM’s more than 2,800 academic and corporate libraries worldwide that currently subscribe to the ACM Digital Library, as well as to thousands of additional academic, government, and corporate institutions interested in the computing domain.</p><p>\n	For academic libraries, consortia, and corporate institutions, ACM Books will be sold as Collections, with the first collection consisting of approximately 25 titles, publishing as from 2014.  ACM Books licensed by an institutional library are free to all students and patrons within the institution’s IP range for course and individual use, and ACM will make such titles available to institutional users via mobile devices utilizing its unique Remote Access Tools & Services.  ACM Books will also be offered to ACM’s 110,000+ individual members from over 100 countries around the world as an additional option to their annual membership dues and individual ACM Digital Library access charge.</p><p>\n	For those preferring to purchase individual titles from the Series, individual titles will be made available for sale from the major global print and ebook retailers worldwide,  including <a href="http://amazon.com" target="">Amazon.com</a> and <a href="http://www.barnesandnoble.com/" target="">Barnes & Noble</a>.</p>', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(112, 1, 4, '', 'xhtml', 'Affordability', 'none', '<p>The primary goal of the ACM Books series is to provide a broad distribution outlet for book authors in the computing community. Pricing the series so that it is affordable to ACM members and institutions around the world is a priority for ACM Books. ACM has a longstanding reputation for pricing its publications affordably, and this Series will follow in that tradition.</p>', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(115, 1, 4, '', 'xhtml', '​Marketing', 'none', '<p>ACM Books will be actively marketed to the computing community through various channels including advertising in ACM magazines, via ACM’s network of Special Interest Groups (SIGs), in dozens of ACM Web Sites targeting various segments of the computing community, and ACM sponsored conferences taking place around the world each year.<br><br>In addition, ACM Books will take advantage of ACM’s extensive international sales & marketing network of subscription agents, operating in over 80 countries on ACM’s behalf. This offers widespread visibility and reach for all titles in the Series on par with marketing & sales efforts offered by many of the large for-profit commercial publishers, while retaining ACM’s more “community-centric” business model and fair pricing approach.<br><br>ACM Books will receive personalized attention by leveraging the extensive and comprehensive ACM Special Interest Group (SIG) network of niche communities within the computing domain. Individual title publication will be announced on appropriate ACM subscribed lists and will be searchable via Google, Google Scholar, and the major search engines.</p><p>Lastly, individual titles in the Series will be available through the major online retail channels, such as <a href="http://amazon.com/" target="">Amazon.com</a> and <a href="http://www.barnesandnoble.com/" target="">Barnes & Noble.com</a>.</p>', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(113, 1, 4, '', 'xhtml', 'Royalties', 'none', '<p>ACM Books authors will be compensated for their work and the successful sales of their titles. All ACM Books authors will receive a royalty of 10% of the amount received from the sales of their books, in all media and all markets around the world, including all print and digital channels.</p>', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(114, 1, 4, '', 'xhtml', 'Copyright', 'none', '<p>\n	Consistent with ACM’s general Publishing Policy, most recently updated on April 2, 2013, all ACM Books authors shall be given the option of signing a copyright transfer Agreement or an exclusive license to publish Agreement, as part of their Author Publishing Agreement with ACM Books.</p><p>\n	For more detailed information about ACM’s general, please visit ACM’s Author Rights site at:\n<br>\n	<a href="http://authors.acm.org/main.html">http://authors.acm.org/main.html</a></p>', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(116, 1, 4, '<p>ACM has among the most liberal publishing policies of any scholarly publisher today. Over the years, our policies have evolved and been adapted to maintain this reputation as a forward thinking publisher. This policy reflects ACM’s non-profit and mission-based approach to publishing high quality information for the computing community, with an emphasis on wide-spread distribution and access.</p><p>Consistent with ACM’s general Publishing Policy, most recently updated on April 2, 2013, all ACM Books authors shall be given the option of signing a copyright transfer Agreement or an exclusive license to publish Agreement, as part of their Author Publishing Agreement with ACM Books.</p><p>Authors of ACM Books will be given the option of signing a Publication Agreement that includes a "Transfer of Copyright" provision or a version that includes an “Exclusive Right to Publish” provision instead of transferring copyright to the Publisher. Authors should consider both options and discuss them with either ACM or M&C if they have questions regarding the relative benefits of either version of the Publishing Agreement.</p><p>For more detailed information about ACM’s general publishing policies or author rights, please visit the following websites:<br><a href="http://authors.acm.org/main.html">http://authors.acm.org/main.html</a><br><a href="http://www.acm.org/publications/policies/copyright_policy">http://www.acm.org/publications/policies/copyright_policy</a></p>', 'xhtml', '', 'none', '', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(117, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'TSP Diffusion', 'none', 'Editions Scientifiques et Techniques', 'none', '14 Place des Victoires', 'none', '33 (0)1 40 86 41 50', 'none', '33(0)1 47 93 50 13', 'none', 'info@tsp-diffusion.com', 'none', 'www.tsp-diffusion.com', 'none', 'France', 'none', '2600 Asnieres, FRANCE', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(118, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Systems Link International', 'none', '13313 North West 47 Avenue', 'none', 'Opa-Locka, Florida 33054', 'none', '1-305-826-6191', 'none', '1-305-826-6195', 'none', 'biblioteca@systemsint.info ', 'none', 'http://systemsint.info/en/contact-us', 'none', 'Argentina', 'none', 'UNITED STATES', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(119, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'SWETS United Kingdom', 'none', 'Swan House, Wyndyke Furlong ', 'none', 'Abingdon Business Park,', 'none', '44-1235-857-500', 'none', '44-1235-857-501 ', 'none', 'info@uk.swets.com', 'none', 'http://www.swets.com/offices', 'none', 'United Kingdom', 'none', 'Abingdon Oxfordshire OX14 1UQ, UNITED KINGDOM ', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(120, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'SWETS Spain', 'none', 'C/Nàpols 227 2a planta ', 'none', '08013 Barcelona, SPAIN ', 'none', '34 93 208 19 70  ', 'none', '34 93 208 19 71', 'none', 'info@es.swets.com ', 'none', 'http://www.swets.com/offices', 'none', 'Spain', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(121, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'SWETS South Africa', 'none', 'Lords Office Estates, Unit 14 ', 'none', '276 West Avenue  ', 'none', '27-12-663-1924 ', 'none', '27-12-663-2285  ', 'none', 'info@sa.swets.com', 'none', 'http://www.swets.com/offices', 'none', 'AFRICA', 'none', 'Centurion 0157, SOUTH AFRICA', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(122, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Shinwon Datanet Inc.', 'none', '200-20, Dongkyo-dong, Mapo-gu', 'none', 'Seoul, 121-819, KOREA', 'none', '82-2-326-3535 ', 'none', '82-2-326-0219', 'none', 'info@shinwon.co.kr', 'none', 'http://www.shinwon.co.kr/index.asp', 'none', 'Republic of Korea', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(123, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Revistas Técnicas Ltda', 'none', 'Calle 49 B No. 63-21     ', 'none', 'Edificio Camacol, of.100', 'none', '57-4-44459 03', 'none', '', 'none', 'rtfinanciero@une.net.co', 'none', 'http://www.revistastecnicassas.com/', 'none', 'Colombia', 'none', 'Medellín – COLOMBIA, S.A ', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(124, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Publiciencia Ltda', 'none', 'Carrera 5 No. 67- 68 Bogota     ', 'none', 'COLOMBIA', 'none', '57 1 317 0080', 'none', '57 1 317 5710 ', 'none', 'comercial@publiciencia.com ', 'none', 'http://www.publiciencia.com/contactenos.php?id_pais=colombia', 'none', 'Colombia', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(125, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Mondesic TechKnowledge FZLLC', 'none', 'Block 11, First Floor, Office 6    ', 'none', 'Knowledge Village ', 'none', '971-4-364-4844  ', 'none', '971-4-366-1043', 'none', 'E-mail:sales@techknowledgeUAE.com', 'none', 'www.techknowledgeUAE.com', 'none', '', 'none', 'Dubai, UNITED ARAB EMIRATES', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(126, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'LYRASIS ', 'none', '1438 West Peachtree St. NW    ', 'none', 'Suite 200, Dorothy Station', 'none', '404-592-4806', 'none', 'Fax:404-592-4969  ', 'none', 'amie.sabourin@lyrasis.org', 'none', ' www.lyrasis.org', 'none', '', 'none', 'Atlanta, GA, UNITED STATES ', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(127, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Kinokuniya Company Ltd.', 'none', '3-7-10 Shimomeguro   ', 'none', 'Meguro-ku, Tokyo ', 'none', '81-3-6910-0532', 'none', '81-3-6420-1363  ', 'none', 'journal@kinokuniya.co.jp', 'none', 'http://www.kinokuniya.co.jp/contents/en/dsales.html', 'none', 'Japan', 'none', '153-8504, JAPAN', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(128, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'InfoHost Pte Ltd', 'none', '31 Kaki Bukit Road 3 ', 'none', '#06-07 Techlink  ', 'none', '65-6741-8422 ', 'none', '65-6741-8821 ', 'none', 'info.sg@igroupnet.com ', 'none', 'http://www.igroupnet.com/?page_id=272', 'none', 'Singapore', 'none', '417818, SINGAPORE', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(129, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'InfoAccess & Distribution (HK) Ltd', 'none', 'Causeway Bay Plaza One, Suite 2003A, 20/F.,', 'none', '489 Hennessey Road,', 'none', '852-2572-7228 ', 'none', '852-2575-8822 ', 'none', 'info.hk@igroupnet.com ', 'none', 'http://www.igroupnet.com/?page_id=260', 'none', 'Hong Kong', 'none', 'Causeway Bay, HONG KONG', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(137, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'EBSCO Poland ', 'none', 'Krakowskie Przedmiescie 79    ', 'none', 'Warszawa 00-079, POLAND', 'none', '48 22 7451105', 'none', '48 22 6961773', 'none', 'polska@ebsco.com ', 'none', 'www.ebsco.com', 'none', '', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(130, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'iGroup Taiwan', 'none', '8F., No.72, Sec. 2     ', 'none', 'Nanjing East Rd.  ', 'none', '886-2-2571-3369', 'none', '886-2-2571-3119 ', 'none', 'service@igrouptaiwan.com ', 'none', 'http://www.viservices.com.tw/?page_id=743', 'none', 'Taiwan', 'none', 'Zhongshan Dristrict Taipei City', 'none', '', NULL, '104 TAIWAN (R.O.C.)', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(131, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'iGroup China', 'none', 'Room 1213, Zhichun Lu 1   ', 'none', 'Beijing 100083, CHINA', 'none', '86-10-82331971', 'none', '86-10-82331961 ', 'none', 'info@igroup.com.cn ', 'none', 'http://www.igroupnet.com/?page_id=258', 'none', 'China', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(132, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Grupo Difusion Cientifica ', 'none', 'Av. Emiliano Zapata 285     ', 'none', 'Col. Santa Cruz Atoyac ', 'none', '52 (55) 5090 2800', 'none', '', 'none', 'vmoreno@difusion.com.mx', 'none', 'http://www.difusion.com.mx/difusion/contacto.html', 'none', 'Mexico', 'none', 'Del. Benito Juárez', 'none', '', NULL, 'C.P. 03310, MEXICO D.F.  ', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(133, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Global Information Systems Technology Pvt. Ltd.', 'none', '877 Udyog Vihar, Phase V ', 'none', 'Gurgaon-122016, INDIA   ', 'none', '0124-4614000', 'none', '0124-4052913  ', 'none', 'gistdel@gist.in', 'none', 'http://www.gist.in/aboutus.php', 'none', 'India', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(134, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'EBSCO UK', 'none', '4th Floor, Kingmaker House,    ', 'none', 'Station Road New Barnet,    ', 'none', '44-20-8447-4200', 'none', '44-20-8440-2205', 'none', 'mailuk@ebsco.com', 'none', 'www.ebsco.com', 'none', '', 'none', 'EN5 1NZ, ENGLAND ', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(135, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'EBSCO Turkey ', 'none', 'Rabindranath Tagore Caddesi       ', 'none', 'Yildiz 4. Cadde - No: 65 / 5', 'none', '90-312-441-7344', 'none', '90-312-441-7347 ', 'none', 'ebscotr@ebsco.com', 'none', 'http://www2.ebsco.com/en-us/offices/Pages/Contact.aspx?T=Turkey', 'none', 'Turkey', 'none', 'YILDIZ - CANKAYA', 'none', '', NULL, 'Ankara, 06550, TURKEY', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(136, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'EBSCO Spain and Portugal', 'none', 'Avenida de Bruselas,        ', 'none', '7 - Arroyo de la Vega', 'none', '34-91-490-24-80', 'none', '34-91-490-23-25', 'none', 'mailesp@ebsco.com', 'none', 'http://www2.ebsco.com/en-us/offices/pages/Contact.aspx?T=Spain', 'none', 'Spain', 'none', '28108 Alcobendas ', 'none', '', NULL, 'Madrid, SPAIN', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(138, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'EBSCO Mexico ', 'none', 'Benjamin Hill #188       ', 'none', 'Col Hipodromo Condesa C.P', 'none', '52 55 5273 1585', 'none', '52 55 5273 5550', 'none', 'eismexico@ebsco.com', 'none', 'http://www2.ebsco.com/en-us/offices/pages/Contact.aspx?T=Mexico', 'none', 'Mexico', 'none', 'D.F. 06170 MEXICO, D.F.', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(139, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'EBSCO Brasil ', 'none', 'Av. Rio Branco 109 GR 703     ', 'none', '20.040-004 Rio de Janeiro-RJ, BRASIL', 'none', '55-21-2224-0190', 'none', '55-21-2224-0190', 'none', 'ebsco@ebsco.com.br ', 'none', 'www.ebsco.com/home/brasil', 'none', '', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(140, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Book Promotion & Svc. Co., Ltd. ', 'none', '8 Soi Krungtepkreetha  ', 'none', '8 Yaek 8 Huamark,    ', 'none', '662-769-3888', 'none', '662-379-5182', 'none', 'info@book.co.th', 'none', 'http://www.book.co.th/', 'none', 'Thailand', 'none', 'Bangkapi, Bangkok  ', 'none', '', NULL, '10240, THAILAND  ', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(141, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Arabian Advanced Systems ', 'none', 'PO Box 20129 Riyadh    ', 'none', '11455 SAUDI ARABIA', 'none', '966 1 4770477', 'none', '966 1 4783512', 'none', 'info@aas.com.sa ', 'none', 'www.aas.com.sa', 'none', '', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(142, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Diane Cerra', 'none', '', 'none', '', 'none', '239-405-7336', 'none', '', 'none', 'cerra@morganclaypool.com', 'none', '', 'none', '', 'none', '', 'none', '', NULL, '', 'none', 'Executive Editor', 'none', 'Morgan & Claypool', 'none', '', 'none', '', 'none', '', 'xhtml'),
(143, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Scott Delman', 'none', '2 Penn Plaza, Suite 701', 'none', 'New York, New York 10121-0701', 'none', '+1-212-626-0659', 'none', '+1-212-869-0481', 'none', 'scott.delman@hq.acm.org', 'none', '', 'none', '', 'none', '', 'none', '', NULL, '', 'none', 'ACM Director of Group Publishing', 'none', 'Assoc. Computing Machinery', 'none', '+1-212-729-7515', 'none', 'scott.delman', 'none', '', 'xhtml'),
(144, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Albertina icome Praha s.r.o. ', 'none', 'Stepanska 16     ', 'none', '110 00 Praha 1, CZECH REPUBLIC ', 'none', '420-222-231-212', 'none', '420-222-231-313', 'none', 'aip@aip.cz', 'none', 'http://www.aip.cz/kontakty.php', 'none', 'Czech Republic ', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(145, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Access Dunia Sdn Bhd ', 'none', 'No.12 Jalan Pemberita U1/49,    ', 'none', 'Glenmarie Seksyen U1, Shah Alam', 'none', '603-5569 1379  ', 'none', '603-55691459 ', 'none', 'sales@accessdunia.com.my', 'none', 'www.accessdunia.com.my', 'none', 'Malaysia', 'none', '40150 Selangor, MALAYSIA', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(154, 1, 7, '<p>For over sixty years the ACM has been the world’s leading computing society, having maintained this reputation by providing an international community of scientists, practitioners, educators, and students with the highest quality publications, conferences, and knowledge resources available and a commitment to serving the needs of this community and advancing the fields of computer science and information technology above all else.</p><p>Today, ACM is the world’s largest educational and scientific computing society uniting the world''s computing educators, researchers and professionals to inspire dialogue, share resources and address the field''s challenges. ACM strengthens the profession''s collective voice through strong leadership, promotion of the highest standards, and recognition of technical excellence. ACM supports the professional growth of its members by providing opportunities for life-long learning, career development, and professional networking. ACM is widely recognized as the premier membership organization for computing professionals, delivering resources that advance computing as a science and a profession; enable professional development; and promote policies and research that benefit society.</p><p>ACM carries out its mission through conferences, publications, educational programs, public awareness activities, and special interest groups. It sponsors over 170 conferences annually, for professionals working in computer graphics (SIGGRAPH); data communications (SIGCOMM); mobile computing (SIGMOBILE); knowledge discovery and data mining (KDD); software engineering (SIGSOFT); high performance computing (SC); human computer interaction (SIGCHI); object-oriented programming (SPLASH); computer and communications security (CCS), and approximately 25 other areas within the broader computer science community.</p><p>In addition to this new series of advanced level books, ACM publishes, distributes and archives more than 50 periodicals that provide original research and first-hand perspectives from the world''s leading thinkers in computing and information technologies. Many of these publications are considered the leading publications in their respective disciplines, as a result of the impact they have had on the field over an extended period of time.</p>', 'xhtml', '', 'none', '', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(146, 1, 5, '<p>ACM Books is managed by Editor-In–Chief Tamer Ӧzsu, of the University of Waterloo, and a world renowned editorial board of distinguished Area Editors, collectively representing many of the major areas within computer science. Over time, additional subject areas and Area Editors will be appointed to the Board to complete the Series'' coverage of the field.</p><p>Area Editors are responsible for inviting members of the community to submit book publication proposals, evaluating invited and unsolicited proposals and manuscripts in their areas, managing and overseeing peer review, and making final publication recommendations to the Editor-In-Chief. For an up-to-date list of all current Area Editors, please click <a href="http://books-acm.minla.net/board">here</a>.</p>', 'xhtml', 'Editorial Quality', 'none', '<p>ACM Books is managed by Editor-In–Chief Tamer Ӧzsu, of the University\n of Waterloo, and a world renowned editorial board of distinguished Area\n Editors, collectively representing many of the major areas within \ncomputer science. Over time, additional subject areas and Area Editors \nwill be appointed to the Board to complete the Series'' coverage of the \nfield.</p><p>Area Editors are responsible for inviting members of the \ncommunity to submit book publication proposals, evaluating invited and \nunsolicited proposals and manuscripts in their areas, managing and \noverseeing peer review, and making final publication recommendations to \nthe Editor-In-Chief. For an up-to-date list of all current Area Editors,\n please click <a href="http://books-acm.minla.net/board">here</a>.</p>', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(147, 1, 5, '<p>\n	ACM Books will be produced by Morgan & Claypool to high quality standards on timely schedules.  Manuscripts will be professionally edited and formatted using LaTeX and other modern formatters incorporating attractive series designs for interiors and covers. ACM Books will be published in several digital formats including downloadable pdfs, reflowable ebook formats and html.  Volumes will also be published in economical, attractive print form using cutting edge print-on-demand technology.</p>', 'xhtml', 'Publication Formats', 'none', '<p>ACM Books will be produced by Morgan & Claypool to high quality standards on timely schedules. Manuscripts will be professionally edited and formatted using LaTeX and other modern formatters incorporating attractive series designs for interiors and covers. ACM Books will be published in several digital formats including downloadable pdfs, reflowable ebook formats and html. Volumes will also be published in economical, attractive print form using cutting edge print-on-demand technology.</p>', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(148, 1, 5, '<p>\n	ACM Books will be actively marketed to the computing community through multiple vehicles including advertising in ACM magazines, on dozens of ACM Web Sites targeting various segments of the computing community, and at a wide variety of ACM sponsored conferences.  ACM Books will receive personalized attention by leveraging the extensive and comprehensive ACM Special Interest Group (SIG) network of niche communities within the computing domain. Individual title publication will be announced on appropriate ACM subscribed lists.   The full text of ACM Books will be available for indexing by major search engines to enhance discoverability.  MARC records will be produced for inclusion in library catalogs.</p><p>\n	ACM Books will be widely distributed through the joint efforts of ACM and Morgan & Claypool working together.  ACM Books will be offered as an additional purchase option for ACM’s more than 2,800 academic and corporate libraries worldwide that currently subscribe to the ACM Digital Library, as well as to the hundreds of academic, government, and corporate institutions interested in the computing domain. ACM Books will also be offered to ACM’s 110,000+ individual members from over 100 countries around the world as an additional option to their annual membership dues and individual ACM Digital Library access charge.</p><p>\n	Individual titles in print and digital form will be made available for sale from major global print and ebook retailers worldwide, including <a href="http://www.amazon.com/" target="">Amazon.com</a> and <a href="http://www.barnesandnoble.com/" target="">Barnes & Noble</a>.</p>', 'xhtml', 'Discoverability', 'none', '<p>ACM Books will be actively marketed to the computing community through multiple vehicles including advertising in ACM magazines, on dozens of ACM Web Sites targeting various segments of the computing community, and at a wide variety of ACM sponsored conferences. ACM Books will receive personalized attention by leveraging the extensive and comprehensive ACM Special Interest Group (SIG) network of niche communities within the computing domain. Individual title publication will be announced on appropriate ACM subscribed lists. The full text of ACM Books will be available for indexing by major search engines to enhance discoverability. MARC records will be produced for inclusion in library catalogs.</p><p>ACM Books will be widely distributed through the joint efforts of ACM and Morgan & Claypool working together. ACM Books will be offered as an additional purchase option for ACM’s more than 2,800 academic and corporate libraries worldwide that currently subscribe to the ACM Digital Library, as well as to the hundreds of academic, government, and corporate institutions interested in the computing domain. ACM Books will also be offered to ACM’s 110,000+ individual members from over 100 countries around the world as an additional option to their annual membership dues and individual ACM Digital Library access charge.</p><p>Individual titles in print and digital form will be made available for sale from major global print and ebook retailers worldwide, including <a href="http://www.amazon.com/" target="">Amazon.com</a> and <a href="http://www.barnesandnoble.com/" target="">Barnes & Noble</a>.</p>', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL);
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_7`, `field_ft_7`, `field_id_8`, `field_ft_8`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`, `field_id_14`, `field_ft_14`, `field_id_15`, `field_ft_15`, `field_id_16`, `field_ft_16`, `field_id_17`, `field_ft_17`, `field_id_18`, `field_ft_18`, `field_id_19`, `field_ft_19`, `field_id_20`, `field_ft_20`, `field_id_21`, `field_ft_21`, `field_id_22`, `field_ft_22`, `field_id_23`, `field_ft_23`, `field_id_24`, `field_ft_24`) VALUES
(149, 1, 5, '<p>\n	The primary goal of the ACM Books series is to provide a broad distribution outlet for book authors in the computing community. Pricing the series so that it is affordable to ACM members and institutions around the world is a priority for ACM Books. ACM has a longstanding reputation for pricing its publications affordably, and this Series will follow in that tradition. While individual titles in the series will be available for purchase through the most popular online book retailers, such as <a href="http://www.amazon.com/" target="">Amazon.com</a>, <a href="http://www.barnesandnoble.com/" target="">Barnes & Noble.com</a>, and Apple iBooks, the most affordable way for individual readers in the computing community to get access to all of the books published in the series is either through the heavily discounted ACM Membership pricing option ($29 annual price for professional members and $10 annual price for student members). Another option is to make a purchase recommendation to your institution. Bundled pricing for academic, government, and corporate institutions makes it possible for all individual users within their institutions to have free and unrestricted access to all titles published in the ACM Books series. To make such a recommendation, please contact your institution’s librarian or information manager.</p>', 'xhtml', 'Access', 'none', '<p>The primary goal of the ACM Books series is to provide a broad distribution outlet for book authors in the computing community. Pricing the series so that it is affordable to ACM members and institutions around the world is a priority for ACM Books. ACM has a longstanding reputation for pricing its publications affordably, and this Series will follow in that tradition. While individual titles in the series will be available for purchase through the most popular online book retailers, such as <a href="http://www.amazon.com/" target="">Amazon.com</a>, <a href="http://www.barnesandnoble.com/" target="">Barnes & Noble.com</a>, and Apple iBooks, the most affordable way for individual readers in the computing community to get access to all of the books published in the series is either through the heavily discounted ACM Membership pricing option ($29 annual price for professional members and $10 annual price for student members). Another option is to make a purchase recommendation to your institution. Bundled pricing for academic, government, and corporate institutions makes it possible for all individual users within their institutions to have free and unrestricted access to all titles published in the ACM Books series. To make such a recommendation, please contact your institution’s librarian or information manager.</p>', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(150, 1, 1, '<p>The academic and technical publishing landscape has changed dramatically over the past decade. Following what has been a period of massive consolidation in the scientific, technical, and medical publishing industry (STM), there are now only a handful of commercial houses publishing computer science research, and their attention to computer science books, and in particular to graduate textbooks and research monographs, which have modest sales in comparison to the undergraduate market, has dwindled. There are certainly exceptions, and university presses have filled some of the gap, but this is the general environment that exists today, and it is entirely accurate to say that a considerable vacuum now exists in scholarly computer science book publishing. </p><p>As a result, ACM has decided to play a significant role in filling some of this void as a service to the community, with the launch of a new book program called ACM Books, that will enhance its already rich journal and conference publication portfolio as from early 2014.</p><p>ACM Books will fill a unique space in the publishing domain. The series will include books from across the entire spectrum of computer science subject matter. The series will initially focus on four kinds of books:  graduate level textbooks, deep research monographs that provide an overview of established and emerging fields, practitioner level professional books, and books devoted to the history and social impact of computing. This publishing program will address the information needs of various members of the computing community, including researchers, practitioners, educators, and students and in general will expose the rich history of computing and the substantial global impact this field continues to have. </p><p>Consistent with ACM''s overall publishing strategy, ACM Books will continually re-evaluate the needs of the community, and adjust the series accordingly.</p>', 'xhtml', '', 'none', '', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(151, 1, 1, '<p>For many of our future readers, the ACM Digital Library will be the primary channel from which to search, browse, and download complete copies or individual chapters of ACM Books. Libraries and library consortia around the world will make buying decisions on behalf of their faculty and students, as well as corporate libraries on behalf of their employees, and as a result end users will have “unrestricted” and “essentially” free access to all books published in the series. At present, there are approximately 1,500,000 members of the computing community with access to the ACM Digital Library from over 2,800 academic, government, and corporate libraries worldwide that subscribe to the ACM Digital Library (journals, conferences, magazines, etc.) and we expect that over time many of these institutions will purchase the ACM Books collections. Pricing for institutions will be made affordable by ACM, in keeping with our longstanding tradition and non-profit approach to selling the ACM Digital Library.</p><p>For individual professional and student members of ACM, the series will be available at a low “add-on” price to their current ACM Membership ($29 annually for professionals and $10 annually for students) and for all other individuals interested in purchasing single print or digital copies, there will be an option to do so through the largest online booksellers, such as <a href="http://www.amazon.com/" target="">Amazon.com</a> and <a href="http://www.barnesandnoble.com/" target="">Barnes & Noble.com</a>. At present, there are approximately 110,000 professional and student members of ACM  eligible for this special membership pricing for access to the ACM Books series.</p><p>In addition to our own goals for the Series itself, one positive side effect of ACM Books will be to address the soaring costs of textbooks produced by commercial publishers. If ACM Books can place pressure on the few large commercial publishers operating in the computer science market, then we will view this as a positive development.</p>', 'xhtml', '', 'none', '', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(152, 1, 1, '<p>In an effort to accelerate our development of ACM Books, ACM has partnered with a very high quality and well-respected book publisher, based in San Francisco, called Morgan & Claypool Publishers. Many in the computing community will be familiar with M&C as a result of their highly successful series in computing called the Synthesis Lectures, which publishes concise volumes across a range of computer science subjects. </p><p>Some will know Morgan & Claypool publisher Diane Cerra and founder Michael Morgan from their publishing at Morgan Kaufmann. </p><p>Partnering with M&C provides ACM Books with a number of advantages, such as excellent editorial support, fast digital book production experience, and wider distribution. </p>', 'xhtml', '', 'none', '', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(153, 1, 1, '<p>We invite you to give us your feedback, ideas and to become involved as authors, reviewers and readers.  Please contact us at <a href="mailto:acmbooks-feedback@acm.org" target="">acmbooks-feedback@acm.org</a>.</p>', 'xhtml', '', 'none', '', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(155, 1, 7, '<h2>The ACM Digital Library Platform</h2>\n<p>The primary publication and distribution platform for ACM Books will be the ACM Digital Library, the most comprehensive collection of full-text articles and bibliographic records in existence today covering the fields of computing and information technology. The full-text database includes the complete collection of ACM''s publications, including journals, conference proceedings, magazines, newsletters, and multimedia titles and currently consists of:  \n<ul>\n<li>400,000 Full-text articles</li>\n<li>2,200,000 Pages of full-text articles</li>\n<li>18,000+ New full-text articles added each year</li>\n<li>44+ High Impact Journals with 2-3 new journals being launched each year</li>\n<li>450+ Conference Proceedings Volumes added each year</li>\n<li>2,500+ Proceedings Volumes in the DL Archive</li>\n<li>8 Magazines (including the flagship Communications of the ACM, the most heavily cited publication in the field of computing according to Thomson-Reuters)</li>\n<li>37 Technical Newsletters from ACM''s Special Interest Groups (SIGs)</li>\n<li>6,000+ Video files</li>\n<li>600+ Audio files</li>\n</ul>\n</p>\n<p>In addition to the full-text database, the ACM Digital Library is heavily integrated with and includes unrestricted access to the Guide to Computing Literature, the Guide to Computing Literature bibliography.</p>\n<p>The ACM Digital Library includes reference linking though CrossRef, integration with the ACM Computing Reviews database, index terms using ACM''s 2012 Computing Classification Scheme (CCS), alerting and TOC services, and all export formats including BibTex, Endnote, and ACM Ref, as well as OpenURL compliance, and COUNTER III and SUSHI Compliant usage statistics.</p?', 'xhtml', '', 'none', '', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(156, 1, 7, '<p>ACM Books will be priced affordably for institutions to maximize the accessibility of all titles published in the series. All pricing is based on an “ownership model” that provides “archival rights” for customers purchasing the entire collection of ACM Books with the ability to locally host individual titles for internal use, at the discretion of the purchasing institution. </p><p>In 2014, ACM Books will launch Collection I, which will consist of 25 books published across a wide range of topics in computer science. When an institution purchases Collection I, access will be turned on in the ACM Digital library for all books published as of that date in Collection I. Institutions purchasing Collection I will also have the option of accessing books published in the Series from Morgan & Claypool’s platform at no additional charge. As new titles are published inside the ACM Digital Library, those titles will be accessible to all users within the institution’s IP authenticated domain. </p><p><strong>For Academic Institutions, pricing is based on several factors, including:</strong></p><ul><li>Annual list pricing for each collection in the ACM Books series</li><li>ACM DL Tiering based on size and number of students and faculty at participating institutions</li><li>Participation in various academic library consortia</li><li>Economic discounts based on the 2012 World Bank List of Economies</li><li>Pre-publication discounts based on orders received prior to January 1, 2014</li></ul><p>Pricing for ACM Books is global pricing and all prices are in US Dollars:<br>\n<strong>Tier 1 = </strong>$1,500<br>\n<strong>Tier 2 = </strong>$2,500<br>\n<strong>Tier 3 = </strong>$4,000<br>\n* To determine which tier your institution is classified as by ACM, please contact ACM at <a href="mailto:info@acmbooks.org">info@acmbooks.org</a>.</p><p><strong>For Government Institutions, pricing is based on several factors, including:</strong></p><ul><li>Annual list pricing for each collection in the ACM Books series</li><li>Number of sites with access to the ACM Books series</li><li>Economic discounts based on the 2012 World Bank List of Economies</li><li>Pre-publication discounts based on orders received prior to January 1, 2014</li></ul><p>Government List Price = $2,500 per site with discounts available for multi-site purchases</p><p><strong>For Corporations, pricing is based on several factors, including:</strong></p><ul><li>Annual list pricing for each collection in the ACM Books series</li><li>Single or multi-site pricing</li><li>Size of Corporation based on revenues and number of R&D staff</li><li>Pre-publication discounts based on orders received prior to January 1, 2014</li></ul><p><strong>Tier 1 = </strong>$2,500 per site with discounts available for multi-site purchases<br>\n<strong>Tier 2 = </strong>$3,500 per site with discounts available for multi-site purchases<br>\n<strong>Tier 3 = </strong>$4,500 per site with discounts available for multi-site purchases<br>\n* Corporate tiering is based on annual revenues for the purchasing corporation. Tier 1 is for all corporations with $0-$99m in annual revenues. Tier 2 is for all corporations with $100m-$500m in annual revenues. Tier 3 is for all corporations with over $500m in annual revenues. </p>', 'xhtml', '', 'none', '', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(157, 1, 7, '', 'xhtml', 'Indexes', 'none', '<p>The ACM Digital Library is currently indexed by Google, Google Scholar, Microsoft Academic Search, Bing, Yahoo!, IET Inspec, Thomson Reuters Web of Knowledge, Engineering Information, Scopus, Ebsco Discovery Service, National Institute of Informatics, Northern Light, Worldcat, Summon, OhioLink, Exlibris Primo, Technical University of Denmark (DTU), CiteSeer, Computing Research Repository (CoRR), IEEE Xplore, MathSciNet, Odysci, deepdyve, CNKI, DBLP, Knimbus, and Suweco. This long list of general search engines and more specialized discovery services guarantees that all ACM Books published in the ACM Digital Library will be immediately discoverable by a wide audience of individual and institutional users in and out of the library environment.</p>', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(158, 1, 7, '', 'xhtml', '​Access', 'none', '<p>For libraries, access to ACM Books inside the ACM Digital Library will be handled through IP authentication in the same way that institutions currently have access to all other content inside the ACM DL. </p><p>In addition, ACM now offers a "Remote Access" service that makes it possible for end users to access Library-purchased content from the ACM Digital Library using username and password authentication, connected to your institution''s IP authenticated account. </p><p>If your institution currently subscribes to the ACM DL, turning on access for ACM Books is a simple and straightforward process. Simply contact ACM directly at &lt;<a href="mailto:acmbooks-info@acm.org" target="">acmbooks-info@acm.org</a>&gt; and they will turn access on and provide you with the necessary documentation to complete your order.</p>', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(159, 1, 7, '', 'xhtml', '​Marc21 Records', 'none', '<p>Machine Readable Cataloging (MARC) Records will be provided to all institutional customers of ACM Books for all books published in the ACM Books series upon request.</p>', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(160, 1, 7, '', 'xhtml', '​Individual Title Purchases', 'none', '<p>While ACM will sell the ACM Books series utilizing a digital-first “collections” model, individual “a la carte” title purchases will be available from the major library ebook and print book vendors. </p>', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(163, 1, 4, '', 'xhtml', 'Proposal and Selection Process', 'none', '<p>ACM Books is managed by Editor-in-Chief, Tamer Özsu, of the University of Waterloo, and an international editorial board comprised of world renowned subject-matter experts, each responsible for a specific area within the field of computer science. </p><p>Each proposal received will be reviewed by the appropriate editor, who will manage and oversee the peer review process for each submission, often with the help of additional reviewers enlisted from the community. Both accepted and rejected proposals will receive feedback from the editor responsible for their submission and for those submissions offered a publication contract feedback will be geared toward helping the author to refine and improve the overall quality of their finished manuscript prior to publication.</p><p>Upon acceptance, a representative of ACM Books will discuss scheduling, reviewing, and other details of the process with the author. As with all ACM Publications, authors will have a choice of either an exclusive License to Publish or a Transfer of Copyright Agreement. Authors wishing to discuss the relative merits of either Agreement should contact ACM to have such a discussion. Once the schedule is agreed and the author selects the version of the Agreement they prefer, the author will receive the appropriate Publishing Agreement for signature, along with LaTeX style files and samples.</p><p>For all books in the series, timing is critical. It is our goal to provide a superior author experience for those working with ACM Books and doing so requires expeditious decision making on both sides to move from initial proposal, to review and acceptance, to contract, and finally to the manuscript development phase within approximately one month''s time.</p>', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(161, 1, 7, '<p>Since 1954, ACM has been the leading publisher of high-quality scholarship, in the form of journals, technical magazines, conference proceedings, newsletters, and bibliographic databases for the computer science community. During this time, ACM has established a close working relationship with the international library community based on mutual trust, respect, and understanding of ACM''s unique mission-based approach to publishing scholarly information. </p><p>Our focus on "quality over quantity" and "service over profit" has driven our editorial-need-based approach to launching new journals and to pricing the ACM Digital Library below prices offered by nearly all other scholarly publishers existing today, regardless of their for-profit or non-profit status. </p><p>ACM Publications are respected for their high impact on the communities they serve and are regarded by many in those communities as the most prestigious outlets for their best work. Publishing with ACM is considered a high honor and for many in the community the pinnacle of their scholarly careers.</p><p>ACM is an active partner to the international library community, participating in dozens of library meetings around the world, serving on panels, committees, and boards of organizations like Portico, CrossRef, and ORCID, providing valuable feedback and training on the use of our products and working to ensure that the ACM Digital Library, ACM''s flagship publication platform, is Open URL, SFX, and Shibboleth and Athens compliant, and that our licensing terms take into account best practices and ethical codes of conduct from the library community.</p><p>ACM Books is a new series of high quality monographs and graduate level textbooks, but the model for ACM Books is based on a longstanding tradition of excellence and a well established technology platform and publishing infrastructure that has the international library community front and center in its thinking about eBook distribution and licensing terms, pricing, digital preservation, and access.</p><p>In order to learn more about ACM Publications in general and our close relationship to the library community, please visit our Librarian Resource Website at &lt;<a href="http://librarians.acm.org" target="">http://librarians.acm.org</a>&gt;.</p>', 'xhtml', '', 'none', '', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(162, 1, 4, '<p>The publishing model for ACM Books was developed jointly by the ACM Publications Board and Morgan & Claypool Publishers. This page outlines the publication process from the proposal stage through peer review, decision making, author contracts, manuscript development, and publication. The marketing and selling of ACM Books is covered under the Marketing & Sales section of the site. Feedback is welcome from all prospective authors.</p>', 'xhtml', '', 'none', '', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(165, 1, 4, '', 'xhtml', 'Manuscript Development and Review Process', 'none', '<p>The subject area editor and a representative from ACM Books are available to work with the author throughout the development process, and during that time authors may also communicate with the compositor, either a LaTeX  Guru or Word expert, or ACM Books'' copyediting chief, as needed.</p><p>One goal for this period is to select a small team of reviewers for the manuscript. Reviews will be arranged for well in advance of the manuscript''s completion, whenever possible, in order to reserve time with the reviewers to avoid potential delays to the publication process. </p><p>For longer manuscripts, the area editor and reviewers may decide that reviewing the manuscript in parts over time, rather than as a whole, is more efficient. If authors have particular questions or opinions to ask of reviewers, those will be included in the initial request.</p><p>Once the reviews are completed, the author and subject area editor may, at their discretion, discuss any issues raised during that process and decide on the best course of action to move forward. At that time, the author(s) and area editor will schedule the necessary amount of time to complete any revisions or corrections, and work toward that goal. </p><p>The final stage of the above process is the author''s delivery of the following, which comprises the completed manuscript: </p><ul>\n<li>the final manuscript files</li><li>an abstract</li><li>a detailed list of keywords</li><li>a preface</li><li>author acknowledgements</li><li>text and illustrations</li><li>an author biography </li><li>a bibliography</li><li>an index </li></ul>', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(169, 1, 4, '<p>\n	Publishing your manuscript with ACM Books offers the potential for widespread visibility and reach. As the world''s largest international association and publisher in the field of computing, ACM has the ability to promote your work to a global audience of readers in your subject area and to reach virtually every peer and student anywhere in the world interested in your work.\n</p>\n<p>\n	At present, over 1,500,000 students, researchers, educators, and practitioners from over 2,800 institutions from academia, government, and industry regularly download journal, conference, and magazine content from the ACM Digital Library, one of the world''s leading online platforms for scholarly information.\n</p>\n<p>\n	All ACM Books will be included in the ACM Digital Library for discovery, sale, and consumption, and this offers our authors an incredibly powerful platform to showcase their work to achieve the maximum level of impact on the field. In addition, by partnering with Morgan & Claypool, ACM Books has access to an even wider network of distributors and promotional channels, which will result in even greater penetration and accessibility of every book published in the ACM Books series.\n</p>\n<p>\n	ACM Books will be marketed and sold to both individuals and institutions.\n</p>', 'xhtml', '', 'none', '', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(166, 1, 4, '', 'xhtml', 'ILLUSTRATIONS', 'none', '<p>It is our expectation that all illustration files will be of high quality. Authors are requested to save all image files, individual illustrations as separate files. </p>', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(167, 1, 4, '', 'xhtml', 'PERMISSIONS', 'none', '<p>ACM takes copyright and the proper attribution of intellectual property \nvery seriously. ACM also takes the process of obtaining permissions for \nthe inclusion of copyrighted materials in all ACM Publications very \nseriously. Obtaining permissions to include materials from third parties is often a complicated and time consuming process. </p><p>With this said, it is ACM''s goal to simplify this process for the author of ACM Books, wherever possible. Towards this end, permissions should be treated as belonging to one of two categories, those requests made directly to ACM as the copyright holder of materials the author wishes to include in his or her manuscript and those requests to be made of third parties for materials who''s rights are not held by ACM. See below.</p><p><strong>ACM Copyrighted Materials</strong></p><p>For authors of ACM Books who wish to use illustrations or small portions of text previously published in an ACM journal, conference, or magazine, permissions for those items shall be subject to the ACM Copyright and Permissions requirements posted at &lt;<a href="http://authors.acm.org/main.html" target="">http://authors.acm.org/main.html&gt;</a>. </p><p>ACM shall take a liberal approach to granting such permissions without any associated fees, although it is necessary for all authors to follow the official ACM procedures for obtaining such permissions.</p><p><strong>Non ACM Copyrighted Materials</strong></p><p>For authors of ACM Books who wish to use illustrations or small portions of text from works of their own or others copyrighted elsewhere, ACM Books will assist with copyright permissions, although it is ultimately the responsibility of the author to obtain these permissions prior to submission of the final manuscript for publication.</p>', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(168, 1, 4, '', 'xhtml', 'MANUSCRIPT PRODUCTION', 'none', '<p>High quality production and rapid publication are important components of the value proposition ACM and Morgan & Claypool offer to those wishing to publish their manuscripts with ACM Books. One way to insure this for multiple-authored books is for co-authors to select a “responsible author” who will be responsible as the main point of contact for ACM Books staff and volunteer editors from the very beginning stages of the proposal through final manuscript delivery. </p><p>Once final manuscript files are received from the "responsible author", production will start immediately, sometimes even the same day as files are received. </p><p>For LaTeX files, this includes <strong>final formatting of the manuscript and tables</strong>, <strong>re-drawing line illustrations</strong>, if needed, and <strong>copy editing</strong>. \nOnce those three initial tasks are complete, authors will receive formatted, copy edited page proofs for review and approval. This final review should be brief, with a quick check to insure that the author''s previously requested changes were made correctly.  It is expected that unless there is a serious issue prohibiting a fast \nturnaround, authors will provide this final sign-off within approximately 10 \ndays or less. </p><p>When author approval is received, final files will be prepared for publication, including relinking any broken links, adding DOIs to references, and preparing various ebook and print publication files. At that point, publication is just a day or two away. </p><p>Once published, authors will be alerted and given the published file link, so that they can download and advise students and colleagues to do the same. </p><p>At that time author’s print copies are ordered, and the marketing manager and author will start to discuss promotional plans for their book, if they have not already been in communication up to that point. </p><p>Authors generally ask how long this production process takes. For ACM Books, the following is our targeted goal:</p><ul><li>For shorter books, up to 150 or so pages, from receipt of final files to online publication can take less than a month. </li><li>For longer books, up to 350 pages, the goal is to publish online within two months. </li><li>Print-on-Demand takes approximately two weeks for set up, printing, and delivery, which means that <a href="http://www.amazon.com/" target="">Amazon.com </a>or <a href="http://www.barnesandnoble.com/" target="">Barnes & Noble</a> will publish print copies within a couple weeks, and Kindle or Nook versions within a month.</li></ul>', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(175, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Systems Link International', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'Chile', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', NULL),
(176, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Systems Link International', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'http://systemsint.info/en/contact-us', 'none', 'Colombia', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', NULL),
(177, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Systems Link International', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'http://systemsint.info/en/contact-us', 'none', 'Costa Rica', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', NULL),
(178, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Systems Link International', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'http://systemsint.info/en/contact-us', 'none', 'Ecuador', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', NULL),
(179, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Systems Link International', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'http://systemsint.info/en/contact-us', 'none', 'Mexico', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', NULL),
(180, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'CRIStin Norway', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'http://www.cristin.no/english/about/staff/', 'none', 'Norway', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', NULL),
(181, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'AMICAL Consortium', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'http://www.amicalnet.org/contact', 'none', 'Lebanon', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', NULL),
(182, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'AMICAL Consortium', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'http://www.amicalnet.org/contact', 'none', 'Nigeria', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', NULL),
(170, 1, 3, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'CAUL/ New Zealand', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', 'http://www.caul.edu.au/contact-caul', 'none', 'New Zealand', 'none', '', 'none', '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', NULL),
(174, 1, 4, '', 'xhtml', 'Promotion to institutions will include the following:', 'none', '<ul>\n<li>Marketing via the ACM Digital Library, for which access is currently licensed to over 2,700 institutions in over 80 countries around the world with an effective reach of over 1,500,000 end users annually</li><li>Promotion on ACM''s librarian resource website, which is currently accessed by over 65,000 individuals from over 179 countries over the past year</li><li>Continuous promotion to ACM''s network of over 90 academic library consortia customers, 100 large and mid-sized industry customers, and 100 large and mid-sized government institutions</li><li>Continuous promotion to ACM''s network of over 30 subscription agencies operating in over 80 countries around the world, responsible for selling the ACM Digital Library to international library markets</li><li>Promotion at any one of the dozens of annual library conferences and events ACM attends each year</li><li>Inclusion of all titles in ACM Books in the world''s largest curated bibliographic database, the <em>ACM Guide to Computing Literature</em></li><li>Inclusion of all titles in the ACM Digital Library Mobile Application</li></ul>', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(172, 1, 5, '<p>Readers Intro</p>', 'xhtml', '', 'none', '', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(173, 1, 4, '', 'xhtml', 'Promotion to individuals will include the following:', 'none', '<ul><li>Marketing via the ACM Digital Library, for which access is currently licensed to over 2,700 institutions in over 80 countries around the world with an effective reach of over 1,500,000 end users annually</li><li>Special discounted pricing to the entire collection of ACM Books for ACM Members. ACM Professional Members will have the ability to purchase annual access to the entire collection of ACM Books via the ACM DL for $29 per year and ACM Student Members will have the ability to purchase access for $10 per year</li><li>Promotion at any of the hundreds of small, medium, and large international conferences and workshops sponsored by ACM each year, including for example ACM SIGGRAPH, ACM SIGCHI, ACM SuperComputing, ACM Design Automation Conference, etc.</li><li>Print and digital marketing in ACM''s prestigious technical magazines, including the <em>Communications of the ACM</em>, <em>ACM Queue, XRDS student magazine, eLearn Magazine, Computers in Entertainment magazine, ACM Interactions magazine, ACM InRoads magazine, </em>and<em> ACM Ubiquity magazine</em></li><li>Digital marketing in <em>ACM TechNews</em>, which is currently distributed to over 108,000 ACM Members three times each week</li><li>Promotion in ACM''s Learning Center. See <<a href="http://learning.acm.org" target="">ACM Learning Center</a>> for more information</li><li>Promotion in various ACM Member publications, such as ACM MemberNet and ACM Member Bulletins</li><li>Inclusion of individual titles in ACM Books in the major online book retailers, including Amazon, B&N, and Apple iBooks</li><li>Inclusion of all titles in the ACM Digital Library Mobile Application</li></ul>', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `exp_channel_entries_autosave`
--

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

--
-- Dumping data for table `exp_channel_entries_autosave`
--

INSERT INTO `exp_channel_entries_autosave` (`entry_id`, `original_entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`, `entry_data`) VALUES
(57, 0, 1, 3, 6, NULL, '24.246.110.94', 'AMICAL Consortium', 'amical-consortium1', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1385138760, '2013', '11', '22', 0, 0, 20131122164749, 0, 0, 'a:31:{s:8:"entry_id";i:57;s:10:"channel_id";s:1:"3";s:7:"site_id";s:1:"1";s:10:"field_id_9";s:17:"AMICAL Consortium";s:11:"field_id_20";s:0:"";s:11:"field_id_21";s:0:"";s:11:"field_id_10";s:0:"";s:11:"field_id_11";s:0:"";s:11:"field_id_17";s:0:"";s:11:"field_id_19";s:0:"";s:11:"field_id_12";s:0:"";s:11:"field_id_13";s:0:"";s:11:"field_id_14";s:0:"";s:11:"field_id_15";s:32:"http://www.amicalnet.org/contact";s:11:"field_id_16";s:7:"Lebanon";s:11:"field_id_22";s:0:"";s:11:"field_id_23";s:0:"";s:10:"field_id_1";s:0:"";s:10:"field_id_2";s:0:"";s:10:"field_id_3";s:0:"";s:10:"field_id_4";s:0:"";s:10:"field_id_5";s:0:"";s:10:"field_id_6";s:0:"";s:10:"field_id_7";s:0:"";s:10:"field_id_8";s:0:"";s:11:"field_id_18";s:0:"";s:11:"field_id_24";s:0:"";s:17:"original_entry_id";i:0;s:24:"seo_lite__seo_lite_title";s:0:"";s:27:"seo_lite__seo_lite_keywords";s:0:"";s:30:"seo_lite__seo_lite_description";s:0:"";}');

-- --------------------------------------------------------

--
-- Table structure for table `exp_channel_fields`
--

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

--
-- Dumping data for table `exp_channel_fields`
--

INSERT INTO `exp_channel_fields` (`field_id`, `site_id`, `group_id`, `field_name`, `field_label`, `field_instructions`, `field_type`, `field_list_items`, `field_pre_populate`, `field_pre_channel_id`, `field_pre_field_id`, `field_ta_rows`, `field_maxl`, `field_required`, `field_text_direction`, `field_search`, `field_is_hidden`, `field_fmt`, `field_show_fmt`, `field_order`, `field_content_type`, `field_settings`) VALUES
(1, 1, 1, 'about_content', 'About - Content', '', 'editor', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'y', 'n', 'xhtml', 'n', 10, 'any', 'YTo3OntzOjY6ImVkaXRvciI7YTozMDp7czoxNToiZWRpdG9yX3NldHRpbmdzIjtzOjEwOiJwcmVkZWZpbmVkIjtzOjE0OiJ1cGxvYWRfc2VydmljZSI7czo1OiJsb2NhbCI7czoyMDoiZmlsZV91cGxvYWRfbG9jYXRpb24iO3M6MToiMCI7czoyMToiaW1hZ2VfdXBsb2FkX2xvY2F0aW9uIjtzOjE6IjAiO3M6MTQ6ImltYWdlX2Jyb3dzaW5nIjtzOjM6InllcyI7czoxMjoiaW1hZ2Vfc3ViZGlyIjtzOjM6InllcyI7czoyOiJzMyI7YTo0OntzOjQ6ImZpbGUiO2E6MTp7czo2OiJidWNrZXQiO3M6MDoiIjt9czo1OiJpbWFnZSI7YToxOntzOjY6ImJ1Y2tldCI7czowOiIiO31zOjE0OiJhd3NfYWNjZXNzX2tleSI7czowOiIiO3M6MTQ6ImF3c19zZWNyZXRfa2V5IjtzOjA6IiI7fXM6NjoiaGVpZ2h0IjtzOjM6IjIwMCI7czo5OiJkaXJlY3Rpb24iO3M6MzoibHRyIjtzOjc6InRvb2xiYXIiO3M6MzoieWVzIjtzOjY6InNvdXJjZSI7czozOiJ5ZXMiO3M6NToiZm9jdXMiO3M6Mjoibm8iO3M6MTA6ImF1dG9yZXNpemUiO3M6MzoieWVzIjtzOjU6ImZpeGVkIjtzOjI6Im5vIjtzOjEyOiJjb252ZXJ0bGlua3MiO3M6MzoieWVzIjtzOjExOiJjb252ZXJ0ZGl2cyI7czozOiJ5ZXMiO3M6Nzoib3ZlcmxheSI7czozOiJ5ZXMiO3M6MTM6Im9ic2VydmVpbWFnZXMiO3M6MzoieWVzIjtzOjk6InNob3J0Y3V0cyI7czozOiJ5ZXMiO3M6MzoiYWlyIjtzOjI6Im5vIjtzOjM6Ind5bSI7czoyOiJubyI7czo4OiJwcm90b2NvbCI7czozOiJ5ZXMiO3M6MTg6ImFsbG93ZWR0YWdzX29wdGlvbiI7czo3OiJkZWZhdWx0IjtzOjExOiJhbGxvd2VkdGFncyI7YTowOnt9czoxNDoiZm9ybWF0dGluZ3RhZ3MiO2E6Nzp7aTowO3M6MToicCI7aToxO3M6MTA6ImJsb2NrcXVvdGUiO2k6MjtzOjM6InByZSI7aTozO3M6MjoiaDEiO2k6NDtzOjI6ImgyIjtpOjU7czoyOiJoMyI7aTo2O3M6MjoiaDQiO31zOjg6Imxhbmd1YWdlIjtzOjI6ImVuIjtzOjg6ImNzc19maWxlIjtzOjA6IiI7czo3OiJwbHVnaW5zIjthOjA6e31zOjk6ImNhbGxiYWNrcyI7YToxNzp7czo0OiJpbml0IjtzOjA6IiI7czo1OiJlbnRlciI7czowOiIiO3M6NjoiY2hhbmdlIjtzOjA6IiI7czoxMToicGFzdGVCZWZvcmUiO3M6MDoiIjtzOjEwOiJwYXN0ZUFmdGVyIjtzOjA6IiI7czo1OiJmb2N1cyI7czowOiIiO3M6NDoiYmx1ciI7czowOiIiO3M6NToia2V5dXAiO3M6MDoiIjtzOjc6ImtleWRvd24iO3M6MDoiIjtzOjE1OiJ0ZXh0YXJlYUtleWRvd24iO3M6MDoiIjtzOjEwOiJzeW5jQmVmb3JlIjtzOjA6IiI7czo5OiJzeW5jQWZ0ZXIiO3M6MDoiIjtzOjg6ImF1dG9zYXZlIjtzOjA6IiI7czoxMToiaW1hZ2VVcGxvYWQiO3M6MDoiIjtzOjE2OiJpbWFnZVVwbG9hZEVycm9yIjtzOjA6IiI7czoxMDoiZmlsZVVwbG9hZCI7czowOiIiO3M6MTU6ImZpbGVVcGxvYWRFcnJvciI7czowOiIiO31zOjExOiJlZGl0b3JfY29uZiI7czoxOiIzIjt9czoxODoiZmllbGRfc2hvd19zbWlsZXlzIjtzOjE6Im4iO3M6MTk6ImZpZWxkX3Nob3dfZ2xvc3NhcnkiO3M6MToibiI7czoyMToiZmllbGRfc2hvd19zcGVsbGNoZWNrIjtzOjE6Im4iO3M6MjY6ImZpZWxkX3Nob3dfZm9ybWF0dGluZ19idG5zIjtzOjE6Im4iO3M6MjQ6ImZpZWxkX3Nob3dfZmlsZV9zZWxlY3RvciI7czoxOiJuIjtzOjIwOiJmaWVsZF9zaG93X3dyaXRlbW9kZSI7czoxOiJuIjt9'),
(2, 1, 1, 'about_question', 'About - Question', '', 'text', '', '0', 0, 0, 6, 512, 'n', 'ltr', 'y', 'n', 'none', 'n', 20, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(3, 1, 1, 'about_answer', 'About - Answer', '', 'editor', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'y', 'n', 'xhtml', 'n', 30, 'any', 'YTo3OntzOjY6ImVkaXRvciI7YTozMTp7czoxNToiZWRpdG9yX3NldHRpbmdzIjtzOjEwOiJwcmVkZWZpbmVkIjtzOjc6ImJ1dHRvbnMiO2E6Nzp7aTowO3M6MTA6ImZvcm1hdHRpbmciO2k6MTtzOjE6InwiO2k6MjtzOjQ6ImJvbGQiO2k6MztzOjY6Iml0YWxpYyI7aTo0O3M6MToifCI7aTo1O3M6NDoibGluayI7aTo2O3M6MToifCI7fXM6MTQ6InVwbG9hZF9zZXJ2aWNlIjtzOjU6ImxvY2FsIjtzOjIwOiJmaWxlX3VwbG9hZF9sb2NhdGlvbiI7czoxOiIwIjtzOjIxOiJpbWFnZV91cGxvYWRfbG9jYXRpb24iO3M6MToiMCI7czoxNDoiaW1hZ2VfYnJvd3NpbmciO3M6MzoieWVzIjtzOjEyOiJpbWFnZV9zdWJkaXIiO3M6MzoieWVzIjtzOjI6InMzIjthOjQ6e3M6NDoiZmlsZSI7YToxOntzOjY6ImJ1Y2tldCI7czowOiIiO31zOjU6ImltYWdlIjthOjE6e3M6NjoiYnVja2V0IjtzOjA6IiI7fXM6MTQ6ImF3c19hY2Nlc3Nfa2V5IjtzOjA6IiI7czoxNDoiYXdzX3NlY3JldF9rZXkiO3M6MDoiIjt9czo2OiJoZWlnaHQiO3M6MzoiMjAwIjtzOjk6ImRpcmVjdGlvbiI7czozOiJsdHIiO3M6NzoidG9vbGJhciI7czozOiJ5ZXMiO3M6Njoic291cmNlIjtzOjM6InllcyI7czo1OiJmb2N1cyI7czoyOiJubyI7czoxMDoiYXV0b3Jlc2l6ZSI7czozOiJ5ZXMiO3M6NToiZml4ZWQiO3M6Mjoibm8iO3M6MTI6ImNvbnZlcnRsaW5rcyI7czozOiJ5ZXMiO3M6MTE6ImNvbnZlcnRkaXZzIjtzOjM6InllcyI7czo3OiJvdmVybGF5IjtzOjM6InllcyI7czoxMzoib2JzZXJ2ZWltYWdlcyI7czozOiJ5ZXMiO3M6OToic2hvcnRjdXRzIjtzOjM6InllcyI7czozOiJhaXIiO3M6Mjoibm8iO3M6Mzoid3ltIjtzOjI6Im5vIjtzOjg6InByb3RvY29sIjtzOjM6InllcyI7czoxODoiYWxsb3dlZHRhZ3Nfb3B0aW9uIjtzOjc6ImRlZmF1bHQiO3M6MTE6ImFsbG93ZWR0YWdzIjthOjA6e31zOjE0OiJmb3JtYXR0aW5ndGFncyI7YTo3OntpOjA7czoxOiJwIjtpOjE7czoxMDoiYmxvY2txdW90ZSI7aToyO3M6MzoicHJlIjtpOjM7czoyOiJoMSI7aTo0O3M6MjoiaDIiO2k6NTtzOjI6ImgzIjtpOjY7czoyOiJoNCI7fXM6ODoibGFuZ3VhZ2UiO3M6MjoiZW4iO3M6ODoiY3NzX2ZpbGUiO3M6MDoiIjtzOjc6InBsdWdpbnMiO2E6MDp7fXM6OToiY2FsbGJhY2tzIjthOjE3OntzOjQ6ImluaXQiO3M6MDoiIjtzOjU6ImVudGVyIjtzOjA6IiI7czo2OiJjaGFuZ2UiO3M6MDoiIjtzOjExOiJwYXN0ZUJlZm9yZSI7czowOiIiO3M6MTA6InBhc3RlQWZ0ZXIiO3M6MDoiIjtzOjU6ImZvY3VzIjtzOjA6IiI7czo0OiJibHVyIjtzOjA6IiI7czo1OiJrZXl1cCI7czowOiIiO3M6Nzoia2V5ZG93biI7czowOiIiO3M6MTU6InRleHRhcmVhS2V5ZG93biI7czowOiIiO3M6MTA6InN5bmNCZWZvcmUiO3M6MDoiIjtzOjk6InN5bmNBZnRlciI7czowOiIiO3M6ODoiYXV0b3NhdmUiO3M6MDoiIjtzOjExOiJpbWFnZVVwbG9hZCI7czowOiIiO3M6MTY6ImltYWdlVXBsb2FkRXJyb3IiO3M6MDoiIjtzOjEwOiJmaWxlVXBsb2FkIjtzOjA6IiI7czoxNToiZmlsZVVwbG9hZEVycm9yIjtzOjA6IiI7fXM6MTE6ImVkaXRvcl9jb25mIjtzOjE6IjMiO31zOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(4, 1, 2, 'board_name', 'Board - Name', '', 'text', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'y', 'n', 'none', 'n', 10, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(5, 1, 2, 'board_institution', 'Board - Institution', '', 'text', '', '0', 0, 0, 6, 256, 'n', 'ltr', 'y', 'n', 'none', 'n', 20, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(6, 1, 2, 'board_subject_area', 'Board - Subject Area', '', 'text', '', '0', 0, 0, 6, 256, 'n', 'ltr', 'y', 'n', 'none', 'n', 30, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(7, 1, 2, 'board_bio', 'Board - Bio', '', 'editor', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'y', 'n', 'xhtml', 'n', 40, 'any', 'YTo3OntzOjY6ImVkaXRvciI7YTozMTp7czoxNToiZWRpdG9yX3NldHRpbmdzIjtzOjY6ImN1c3RvbSI7czo3OiJidXR0b25zIjthOjMwOntpOjA7czo0OiJodG1sIjtpOjE7czoxOiJ8IjtpOjI7czoxMDoiZm9ybWF0dGluZyI7aTozO3M6MToifCI7aTo0O3M6NDoiYm9sZCI7aTo1O3M6NjoiaXRhbGljIjtpOjY7czo3OiJkZWxldGVkIjtpOjc7czoxOiJ8IjtpOjg7czoxMzoidW5vcmRlcmVkbGlzdCI7aTo5O3M6MTE6Im9yZGVyZWRsaXN0IjtpOjEwO3M6Nzoib3V0ZGVudCI7aToxMTtzOjY6ImluZGVudCI7aToxMjtzOjE6InwiO2k6MTM7czo0OiJsaW5rIjtpOjE0O3M6NToiaW1hZ2UiO2k6MTU7czo1OiJ2aWRlbyI7aToxNjtzOjQ6ImZpbGUiO2k6MTc7czo1OiJ0YWJsZSI7aToxODtzOjE6InwiO2k6MTk7czo5OiJmb250Y29sb3IiO2k6MjA7czo5OiJiYWNrY29sb3IiO2k6MjE7czoxOiJ8IjtpOjIyO3M6OToiYWxpZ25sZWZ0IjtpOjIzO3M6MTE6ImFsaWduY2VudGVyIjtpOjI0O3M6MTA6ImFsaWducmlnaHQiO2k6MjU7czo3OiJqdXN0aWZ5IjtpOjI2O3M6MToifCI7aToyNztzOjE0OiJob3Jpem9udGFscnVsZSI7aToyODtzOjExOiJwYXN0ZV9wbGFpbiI7aToyOTtzOjE6InwiO31zOjE0OiJ1cGxvYWRfc2VydmljZSI7czo1OiJsb2NhbCI7czoyMDoiZmlsZV91cGxvYWRfbG9jYXRpb24iO3M6MToiMCI7czoyMToiaW1hZ2VfdXBsb2FkX2xvY2F0aW9uIjtzOjE6IjAiO3M6MTQ6ImltYWdlX2Jyb3dzaW5nIjtzOjM6InllcyI7czoxMjoiaW1hZ2Vfc3ViZGlyIjtzOjM6InllcyI7czoyOiJzMyI7YTo0OntzOjQ6ImZpbGUiO2E6MTp7czo2OiJidWNrZXQiO3M6MDoiIjt9czo1OiJpbWFnZSI7YToxOntzOjY6ImJ1Y2tldCI7czowOiIiO31zOjE0OiJhd3NfYWNjZXNzX2tleSI7czowOiIiO3M6MTQ6ImF3c19zZWNyZXRfa2V5IjtzOjA6IiI7fXM6NjoiaGVpZ2h0IjtzOjM6IjIwMCI7czo5OiJkaXJlY3Rpb24iO3M6MzoibHRyIjtzOjc6InRvb2xiYXIiO3M6MzoieWVzIjtzOjY6InNvdXJjZSI7czozOiJ5ZXMiO3M6NToiZm9jdXMiO3M6Mjoibm8iO3M6MTA6ImF1dG9yZXNpemUiO3M6MzoieWVzIjtzOjU6ImZpeGVkIjtzOjI6Im5vIjtzOjEyOiJjb252ZXJ0bGlua3MiO3M6MzoieWVzIjtzOjExOiJjb252ZXJ0ZGl2cyI7czozOiJ5ZXMiO3M6Nzoib3ZlcmxheSI7czozOiJ5ZXMiO3M6MTM6Im9ic2VydmVpbWFnZXMiO3M6MzoieWVzIjtzOjk6InNob3J0Y3V0cyI7czozOiJ5ZXMiO3M6MzoiYWlyIjtzOjI6Im5vIjtzOjM6Ind5bSI7czoyOiJubyI7czo4OiJwcm90b2NvbCI7czozOiJ5ZXMiO3M6MTg6ImFsbG93ZWR0YWdzX29wdGlvbiI7czo3OiJkZWZhdWx0IjtzOjExOiJhbGxvd2VkdGFncyI7YTowOnt9czoxNDoiZm9ybWF0dGluZ3RhZ3MiO2E6Nzp7aTowO3M6MToicCI7aToxO3M6MTA6ImJsb2NrcXVvdGUiO2k6MjtzOjM6InByZSI7aTozO3M6MjoiaDEiO2k6NDtzOjI6ImgyIjtpOjU7czoyOiJoMyI7aTo2O3M6MjoiaDQiO31zOjg6Imxhbmd1YWdlIjtzOjI6ImVuIjtzOjg6ImNzc19maWxlIjtzOjA6IiI7czo3OiJwbHVnaW5zIjthOjA6e31zOjk6ImNhbGxiYWNrcyI7YToxNzp7czo0OiJpbml0IjtzOjA6IiI7czo1OiJlbnRlciI7czowOiIiO3M6NjoiY2hhbmdlIjtzOjA6IiI7czoxMToicGFzdGVCZWZvcmUiO3M6MDoiIjtzOjEwOiJwYXN0ZUFmdGVyIjtzOjA6IiI7czo1OiJmb2N1cyI7czowOiIiO3M6NDoiYmx1ciI7czowOiIiO3M6NToia2V5dXAiO3M6MDoiIjtzOjc6ImtleWRvd24iO3M6MDoiIjtzOjE1OiJ0ZXh0YXJlYUtleWRvd24iO3M6MDoiIjtzOjEwOiJzeW5jQmVmb3JlIjtzOjA6IiI7czo5OiJzeW5jQWZ0ZXIiO3M6MDoiIjtzOjg6ImF1dG9zYXZlIjtzOjA6IiI7czoxMToiaW1hZ2VVcGxvYWQiO3M6MDoiIjtzOjE2OiJpbWFnZVVwbG9hZEVycm9yIjtzOjA6IiI7czoxMDoiZmlsZVVwbG9hZCI7czowOiIiO3M6MTU6ImZpbGVVcGxvYWRFcnJvciI7czowOiIiO31zOjExOiJlZGl0b3JfY29uZiI7czoxOiIzIjt9czoxODoiZmllbGRfc2hvd19zbWlsZXlzIjtzOjE6Im4iO3M6MTk6ImZpZWxkX3Nob3dfZ2xvc3NhcnkiO3M6MToibiI7czoyMToiZmllbGRfc2hvd19zcGVsbGNoZWNrIjtzOjE6Im4iO3M6MjY6ImZpZWxkX3Nob3dfZm9ybWF0dGluZ19idG5zIjtzOjE6Im4iO3M6MjQ6ImZpZWxkX3Nob3dfZmlsZV9zZWxlY3RvciI7czoxOiJuIjtzOjIwOiJmaWVsZF9zaG93X3dyaXRlbW9kZSI7czoxOiJuIjt9'),
(8, 1, 2, 'board_photo', 'Board - Photo', '', 'channel_images', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'n', 'n', 'xhtml', 'n', 50, 'any', 'YTo3OntzOjE0OiJjaGFubmVsX2ltYWdlcyI7YTozMDp7czo5OiJ2aWV3X21vZGUiO3M6NToidGlsZXMiO3M6MTM6ImFjdGlvbl9ncm91cHMiO2E6Mzp7aToxO2E6NTp7czoxMDoiZ3JvdXBfbmFtZSI7czo1OiJzbWFsbCI7czo3OiJ3eXNpd3lnIjtzOjM6InllcyI7czo3OiJhY3Rpb25zIjthOjE6e3M6MTU6InJlc2l6ZV9hZGFwdGl2ZSI7YTo1OntzOjU6IndpZHRoIjtzOjM6IjIxMCI7czo2OiJoZWlnaHQiO3M6MzoiMjEwIjtzOjc6InF1YWxpdHkiO3M6MjoiODAiO3M6ODoidXBzaXppbmciO3M6Mjoibm8iO3M6NDoic3RlcCI7czoxOiIxIjt9fXM6MTA6ImZpbmFsX3NpemUiO2E6NTp7czo1OiJ3aWR0aCI7czozOiIyMTAiO3M6NjoiaGVpZ2h0IjtzOjM6IjIxMCI7czo3OiJxdWFsaXR5IjtzOjI6IjgwIjtzOjg6InVwc2l6aW5nIjtzOjI6Im5vIjtzOjQ6InN0ZXAiO3M6MToiMSI7fXM6ODoiZWRpdGFibGUiO3M6Mjoibm8iO31pOjI7YTo1OntzOjEwOiJncm91cF9uYW1lIjtzOjY6Im1lZGl1bSI7czo3OiJ3eXNpd3lnIjtzOjM6InllcyI7czo3OiJhY3Rpb25zIjthOjE6e3M6MTU6InJlc2l6ZV9hZGFwdGl2ZSI7YTo1OntzOjU6IndpZHRoIjtzOjM6IjQ1MCI7czo2OiJoZWlnaHQiO3M6MzoiMzAwIjtzOjc6InF1YWxpdHkiO3M6MjoiNzUiO3M6ODoidXBzaXppbmciO3M6Mjoibm8iO3M6NDoic3RlcCI7czoxOiIxIjt9fXM6MTA6ImZpbmFsX3NpemUiO2E6NTp7czo1OiJ3aWR0aCI7czozOiI0NTAiO3M6NjoiaGVpZ2h0IjtzOjM6IjMwMCI7czo3OiJxdWFsaXR5IjtzOjI6Ijc1IjtzOjg6InVwc2l6aW5nIjtzOjI6Im5vIjtzOjQ6InN0ZXAiO3M6MToiMSI7fXM6ODoiZWRpdGFibGUiO3M6Mjoibm8iO31pOjM7YTo1OntzOjEwOiJncm91cF9uYW1lIjtzOjU6ImxhcmdlIjtzOjc6Ind5c2l3eWciO3M6MzoieWVzIjtzOjc6ImFjdGlvbnMiO2E6MTp7czoxNToicmVzaXplX2FkYXB0aXZlIjthOjU6e3M6NToid2lkdGgiO3M6MzoiODAwIjtzOjY6ImhlaWdodCI7czozOiI2MDAiO3M6NzoicXVhbGl0eSI7czoyOiI3NSI7czo4OiJ1cHNpemluZyI7czoyOiJubyI7czo0OiJzdGVwIjtzOjE6IjEiO319czoxMDoiZmluYWxfc2l6ZSI7YTo1OntzOjU6IndpZHRoIjtzOjM6IjgwMCI7czo2OiJoZWlnaHQiO3M6MzoiNjAwIjtzOjc6InF1YWxpdHkiO3M6MjoiNzUiO3M6ODoidXBzaXppbmciO3M6Mjoibm8iO3M6NDoic3RlcCI7czoxOiIxIjt9czo4OiJlZGl0YWJsZSI7czoyOiJubyI7fX1zOjEzOiJzbWFsbF9wcmV2aWV3IjtzOjU6InNtYWxsIjtzOjExOiJiaWdfcHJldmlldyI7czo1OiJzbWFsbCI7czoxMzoia2VlcF9vcmlnaW5hbCI7czozOiJ5ZXMiO3M6MTU6InVwbG9hZF9sb2NhdGlvbiI7czo1OiJsb2NhbCI7czo5OiJsb2NhdGlvbnMiO2E6Mzp7czo1OiJsb2NhbCI7YToxOntzOjg6ImxvY2F0aW9uIjtzOjE6IjEiO31zOjI6InMzIjthOjg6e3M6Mzoia2V5IjtzOjA6IiI7czoxMDoic2VjcmV0X2tleSI7czowOiIiO3M6NjoiYnVja2V0IjtzOjA6IiI7czo2OiJyZWdpb24iO3M6OToidXMtZWFzdC0xIjtzOjM6ImFjbCI7czoxMToicHVibGljLXJlYWQiO3M6Nzoic3RvcmFnZSI7czo4OiJzdGFuZGFyZCI7czo5OiJkaXJlY3RvcnkiO3M6MDoiIjtzOjE3OiJjbG91ZGZyb250X2RvbWFpbiI7czowOiIiO31zOjEwOiJjbG91ZGZpbGVzIjthOjU6e3M6ODoidXNlcm5hbWUiO3M6MDoiIjtzOjM6ImFwaSI7czowOiIiO3M6OToiY29udGFpbmVyIjtzOjA6IiI7czo2OiJyZWdpb24iO3M6MjoidXMiO3M6NzoiY2RuX3VyaSI7czowOiIiO319czoxMDoiY2F0ZWdvcmllcyI7YTowOnt9czoxNjoiZGVmYXVsdF9jYXRlZ29yeSI7czowOiIiO3M6MTg6InNob3dfc3RvcmVkX2ltYWdlcyI7czoyOiJubyI7czoyMzoic3RvcmVkX2ltYWdlc19ieV9hdXRob3IiO3M6Mjoibm8iO3M6MjU6InN0b3JlZF9pbWFnZXNfc2VhcmNoX3R5cGUiO3M6NToiZW50cnkiO3M6MTc6InNob3dfaW1wb3J0X2ZpbGVzIjtzOjI6Im5vIjtzOjExOiJpbXBvcnRfcGF0aCI7czoxOiIvIjtzOjE1OiJzaG93X2ltYWdlX2VkaXQiO3M6MzoieWVzIjtzOjE4OiJzaG93X2ltYWdlX3JlcGxhY2UiO3M6MzoieWVzIjtzOjIyOiJhbGxvd19wZXJfaW1hZ2VfYWN0aW9uIjtzOjI6Im5vIjtzOjExOiJpbWFnZV9saW1pdCI7czowOiIiO3M6MTM6Imh5YnJpZF91cGxvYWQiO3M6MzoieWVzIjtzOjE2OiJwcm9ncmVzc2l2ZV9qcGVnIjtzOjI6Im5vIjtzOjE2OiJ3eXNpd3lnX29yaWdpbmFsIjtzOjM6InllcyI7czoxODoic2F2ZV9kYXRhX2luX2ZpZWxkIjtzOjI6Im5vIjtzOjEzOiJkaXNhYmxlX2NvdmVyIjtzOjI6Im5vIjtzOjExOiJjb252ZXJ0X2pwZyI7czoyOiJubyI7czoxMToiY292ZXJfZmlyc3QiO3M6MzoieWVzIjtzOjE0OiJ3eXNpd3lnX291dHB1dCI7czo5OiJpbWFnZV91cmwiO3M6MTA6InBhcnNlX2lwdGMiO3M6Mjoibm8iO3M6MTA6InBhcnNlX2V4aWYiO3M6Mjoibm8iO3M6OToicGFyc2VfeG1wIjtzOjI6Im5vIjtzOjc6ImNvbHVtbnMiO2E6MTM6e3M6Nzoicm93X251bSI7czoxOiIjIjtzOjI6ImlkIjtzOjI6IklEIjtzOjU6ImltYWdlIjtzOjU6IkltYWdlIjtzOjg6ImZpbGVuYW1lIjtzOjA6IiI7czo1OiJ0aXRsZSI7czo1OiJUaXRsZSI7czo5OiJ1cmxfdGl0bGUiO3M6MDoiIjtzOjQ6ImRlc2MiO3M6MTE6IkRlc2NyaXB0aW9uIjtzOjg6ImNhdGVnb3J5IjtzOjA6IiI7czo5OiJjaWZpZWxkXzEiO3M6MDoiIjtzOjk6ImNpZmllbGRfMiI7czowOiIiO3M6OToiY2lmaWVsZF8zIjtzOjA6IiI7czo5OiJjaWZpZWxkXzQiO3M6MDoiIjtzOjk6ImNpZmllbGRfNSI7czowOiIiO319czoxODoiZmllbGRfc2hvd19zbWlsZXlzIjtzOjE6Im4iO3M6MTk6ImZpZWxkX3Nob3dfZ2xvc3NhcnkiO3M6MToibiI7czoyMToiZmllbGRfc2hvd19zcGVsbGNoZWNrIjtzOjE6Im4iO3M6MjY6ImZpZWxkX3Nob3dfZm9ybWF0dGluZ19idG5zIjtzOjE6Im4iO3M6MjQ6ImZpZWxkX3Nob3dfZmlsZV9zZWxlY3RvciI7czoxOiJuIjtzOjIwOiJmaWVsZF9zaG93X3dyaXRlbW9kZSI7czoxOiJuIjt9'),
(9, 1, 3, 'contact_name', 'Contact Name', '', 'text', '', '0', 0, 0, 6, 256, 'n', 'ltr', 'y', 'n', 'none', 'n', 1, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(10, 1, 3, 'contact_address', 'Contact Address', '', 'text', '', '0', 0, 0, 6, 256, 'n', 'ltr', 'y', 'n', 'none', 'n', 2, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(11, 1, 3, 'contact_address_2', 'Contact Address 2', '', 'text', '', '0', 0, 0, 6, 256, 'n', 'ltr', 'y', 'n', 'none', 'n', 3, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(12, 1, 3, 'contact_tel', 'Contact - Tel', '', 'text', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'n', 'n', 'none', 'n', 4, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(13, 1, 3, 'contact_fax', 'Contact - Fax', '', 'text', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'y', 'n', 'none', 'n', 5, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(14, 1, 3, 'contact_email', 'Contact - Email', '', 'text', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'n', 'n', 'none', 'n', 6, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(15, 1, 3, 'contact_url', 'Contact - URL', '', 'text', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'n', 'n', 'none', 'n', 7, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(16, 1, 3, 'contact_country', 'Contact Country', '', 'text', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'n', 'n', 'none', 'n', 8, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(17, 1, 3, 'contact_address_3', 'Contact Address 3', '', 'text', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'y', 'n', 'none', 'n', 3, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(18, 1, 2, 'board_email', 'Board - Email', '', 'text', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'n', 'n', 'none', 'n', 35, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(19, 1, 3, 'contact_address_4', 'Contact Address 4', '', 'text', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'y', 'n', 'none', 'n', 3, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(20, 1, 3, 'contact_position', 'Contact - Position', '', 'text', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'y', 'n', 'none', 'n', 1, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(21, 1, 3, 'contact_company', 'Contact - Company', '', 'text', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'n', 'n', 'none', 'n', 1, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(22, 1, 3, 'contact_mobile', 'Contact - Mobile', '', 'text', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'n', 'n', 'none', 'n', 13, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(23, 1, 3, 'contact_skype', 'Contact Skype', '', 'text', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'n', 'n', 'none', 'n', 14, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(24, 1, 2, 'board_subject', 'Board Subject', '', 'wb_category_select', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'n', 'n', 'xhtml', 'n', 7, 'any', 'YTo4OntzOjE1OiJjYXRlZ29yeV9ncm91cHMiO2E6MTp7aTowO3M6MToiMSI7fXM6NToibXVsdGkiO3M6MToieSI7czoxODoiZmllbGRfc2hvd19zbWlsZXlzIjtzOjE6Im4iO3M6MTk6ImZpZWxkX3Nob3dfZ2xvc3NhcnkiO3M6MToibiI7czoyMToiZmllbGRfc2hvd19zcGVsbGNoZWNrIjtzOjE6Im4iO3M6MjY6ImZpZWxkX3Nob3dfZm9ybWF0dGluZ19idG5zIjtzOjE6Im4iO3M6MjQ6ImZpZWxkX3Nob3dfZmlsZV9zZWxlY3RvciI7czoxOiJuIjtzOjIwOiJmaWVsZF9zaG93X3dyaXRlbW9kZSI7czoxOiJuIjt9');

-- --------------------------------------------------------

--
-- Table structure for table `exp_channel_files`
--

DROP TABLE IF EXISTS `exp_channel_files`;
CREATE TABLE IF NOT EXISTS `exp_channel_files` (
  `file_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` tinyint(3) unsigned DEFAULT '1',
  `entry_id` int(10) unsigned DEFAULT '0',
  `field_id` mediumint(8) unsigned DEFAULT '0',
  `channel_id` tinyint(3) unsigned DEFAULT '0',
  `member_id` int(10) unsigned DEFAULT '0',
  `is_draft` tinyint(3) unsigned DEFAULT '0',
  `link_file_id` int(10) unsigned DEFAULT '0',
  `link_entry_id` int(10) unsigned DEFAULT '0',
  `link_channel_id` tinyint(3) unsigned DEFAULT '0',
  `link_field_id` int(10) unsigned DEFAULT '0',
  `filename` varchar(250) DEFAULT '',
  `extension` varchar(20) DEFAULT '',
  `mime` varchar(100) DEFAULT '',
  `upload_service` varchar(50) DEFAULT '',
  `title` varchar(250) DEFAULT '',
  `url_title` varchar(250) DEFAULT '',
  `description` varchar(250) DEFAULT '',
  `category` varchar(250) DEFAULT '',
  `cffield_1` varchar(250) DEFAULT '',
  `cffield_2` varchar(250) DEFAULT '',
  `cffield_3` varchar(250) DEFAULT '',
  `cffield_4` varchar(250) DEFAULT '',
  `cffield_5` varchar(250) DEFAULT '',
  `filesize` int(10) unsigned DEFAULT '0',
  `md5` varchar(250) DEFAULT '',
  `file_primary` tinyint(1) unsigned DEFAULT '0',
  `file_order` smallint(5) unsigned DEFAULT '1',
  `date` int(10) unsigned DEFAULT '0',
  `downloads` int(10) unsigned DEFAULT '0',
  PRIMARY KEY (`file_id`),
  KEY `entry_id` (`entry_id`),
  KEY `field_id` (`field_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `exp_channel_files`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_channel_files_download_log`
--

DROP TABLE IF EXISTS `exp_channel_files_download_log`;
CREATE TABLE IF NOT EXISTS `exp_channel_files_download_log` (
  `log_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` tinyint(3) unsigned DEFAULT '1',
  `file_id` int(10) unsigned DEFAULT '0',
  `entry_id` int(10) unsigned DEFAULT '0',
  `member_id` int(10) unsigned DEFAULT '0',
  `ip_address` int(10) unsigned DEFAULT '0',
  `date` int(10) unsigned DEFAULT '0',
  PRIMARY KEY (`log_id`),
  KEY `file_id` (`file_id`),
  KEY `member_id` (`member_id`),
  KEY `entry_id` (`entry_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `exp_channel_files_download_log`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_channel_form_settings`
--

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

--
-- Dumping data for table `exp_channel_form_settings`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_channel_images`
--

DROP TABLE IF EXISTS `exp_channel_images`;
CREATE TABLE IF NOT EXISTS `exp_channel_images` (
  `image_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` tinyint(3) unsigned DEFAULT '1',
  `entry_id` int(10) unsigned DEFAULT '0',
  `field_id` mediumint(8) unsigned DEFAULT '0',
  `channel_id` tinyint(3) unsigned DEFAULT '0',
  `member_id` int(10) unsigned DEFAULT '0',
  `is_draft` tinyint(3) unsigned DEFAULT '0',
  `link_image_id` int(10) unsigned DEFAULT '0',
  `link_entry_id` int(10) unsigned DEFAULT '0',
  `link_channel_id` int(10) unsigned DEFAULT '0',
  `link_field_id` int(10) unsigned DEFAULT '0',
  `upload_date` int(10) unsigned DEFAULT '0',
  `cover` tinyint(1) unsigned DEFAULT '0',
  `image_order` smallint(5) unsigned DEFAULT '1',
  `filename` varchar(250) DEFAULT '',
  `extension` varchar(20) DEFAULT '',
  `filesize` int(10) unsigned DEFAULT '0',
  `mime` varchar(20) DEFAULT '',
  `width` smallint(6) DEFAULT '0',
  `height` smallint(6) DEFAULT '0',
  `title` varchar(250) DEFAULT '',
  `url_title` varchar(250) DEFAULT '',
  `description` varchar(250) DEFAULT '',
  `category` varchar(250) DEFAULT '',
  `cifield_1` varchar(250) DEFAULT '',
  `cifield_2` varchar(250) DEFAULT '',
  `cifield_3` varchar(250) DEFAULT '',
  `cifield_4` varchar(250) DEFAULT '',
  `cifield_5` varchar(250) DEFAULT '',
  `sizes_metadata` varchar(250) DEFAULT '',
  `iptc` text,
  `exif` text,
  `xmp` text,
  PRIMARY KEY (`image_id`),
  KEY `entry_id` (`entry_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=19 ;

--
-- Dumping data for table `exp_channel_images`
--

INSERT INTO `exp_channel_images` (`image_id`, `site_id`, `entry_id`, `field_id`, `channel_id`, `member_id`, `is_draft`, `link_image_id`, `link_entry_id`, `link_channel_id`, `link_field_id`, `upload_date`, `cover`, `image_order`, `filename`, `extension`, `filesize`, `mime`, `width`, `height`, `title`, `url_title`, `description`, `category`, `cifield_1`, `cifield_2`, `cifield_3`, `cifield_4`, `cifield_5`, `sizes_metadata`, `iptc`, `exif`, `xmp`) VALUES
(1, 1, 4, 8, 2, 2, 0, 0, 0, 0, 0, 1383946601, 0, 0, 'img2.jpg', 'jpg', 10599, 'image/jpeg', 210, 210, 'Img2', 'img2', '', '', '', '', '', '', '', 'small|210|210|9091/medium|210|210|7974/large|210|210|7974/', 'YTowOnt9', 'YTowOnt9', ''),
(2, 1, 5, 8, 2, 2, 0, 0, 0, 0, 0, 1383947207, 0, 0, 'img3.jpg', 'jpg', 9599, 'image/jpeg', 210, 210, 'Img3', 'img3', '', '', '', '', '', '', '', 'small|210|210|8072/medium|210|210|7227/large|210|210|7227/', 'YTowOnt9', 'YTowOnt9', ''),
(3, 1, 11, 8, 2, 2, 0, 0, 0, 0, 0, 1383951422, 0, 0, 'img4.jpg', 'jpg', 7535, 'image/jpeg', 210, 210, 'Img4', 'img4', '', '', '', '', '', '', '', 'small|210|210|6362/medium|210|210|5792/large|210|210|5792/', 'YTowOnt9', 'YTowOnt9', ''),
(4, 1, 12, 8, 2, 2, 0, 0, 0, 0, 0, 1383951494, 0, 0, 'img5.jpg', 'jpg', 13313, 'image/jpeg', 210, 210, 'Img5', 'img5', '', '', '', '', '', '', '', 'small|210|210|11063/medium|210|210|9694/large|210|210|9694/', 'YTowOnt9', 'YTowOnt9', ''),
(5, 1, 13, 8, 2, 2, 0, 0, 0, 0, 0, 1383951579, 0, 0, 'img6.jpg', 'jpg', 8828, 'image/jpeg', 210, 210, 'Img6', 'img6', '', '', '', '', '', '', '', 'small|210|210|7665/medium|210|210|6805/large|210|210|6805/', 'YTowOnt9', 'YTowOnt9', ''),
(6, 1, 14, 8, 2, 2, 0, 0, 0, 0, 0, 1383951720, 0, 0, 'img7.jpg', 'jpg', 8260, 'image/jpeg', 210, 210, 'Img7', 'img7', '', '', '', '', '', '', '', 'small|210|210|7096/medium|210|210|6316/large|210|210|6316/', 'YTowOnt9', 'YTowOnt9', ''),
(7, 1, 17, 8, 2, 2, 0, 0, 0, 0, 0, 1383951832, 0, 0, 'img8.jpg', 'jpg', 11337, 'image/jpeg', 210, 210, 'Img8', 'img8', '', '', '', '', '', '', '', 'small|210|210|9500/medium|210|210|8370/large|210|210|8370/', 'YTowOnt9', 'YTowOnt9', ''),
(8, 1, 22, 8, 2, 2, 0, 0, 0, 0, 0, 1383951926, 0, 0, 'img9.jpg', 'jpg', 12292, 'image/jpeg', 210, 210, 'Img9', 'img9', '', '', '', '', '', '', '', 'small|210|210|10491/medium|210|210|9327/large|210|210|9327/', 'YTowOnt9', 'YTowOnt9', ''),
(9, 1, 28, 8, 2, 2, 0, 0, 0, 0, 0, 1383952046, 0, 0, 'img10.jpg', 'jpg', 14501, 'image/jpeg', 210, 210, 'Img10', 'img10', '', '', '', '', '', '', '', 'small|210|210|12242/medium|210|210|10402/large|210|210|10402/', 'YTowOnt9', 'YTowOnt9', ''),
(10, 1, 33, 8, 2, 2, 0, 0, 0, 0, 0, 1383952174, 0, 0, 'img11.jpg', 'jpg', 10185, 'image/jpeg', 210, 210, 'Img11', 'img11', '', '', '', '', '', '', '', 'small|210|210|8304/medium|210|210|7297/large|210|210|7297/', 'YTowOnt9', 'YTowOnt9', ''),
(11, 1, 35, 8, 2, 2, 0, 0, 0, 0, 0, 1383952315, 0, 0, 'rbaeza-mayo-2012.jpg', 'jpg', 1628391, 'image/jpeg', 2269, 3083, 'Rbaeza-mayo-2012', 'rbaeza-mayo-2012', '', '', '', '', '', '', '', 'small|210|210|9583/medium|450|300|19321/large|800|600|59040/', 'YTowOnt9', 'YTowOnt9', ''),
(12, 1, 37, 8, 2, 2, 0, 0, 0, 0, 0, 1383952390, 0, 0, 'hart.jpg', 'jpg', 20638, 'image/jpeg', 223, 308, 'Hart', 'hart', '', '', '', '', '', '', '', 'small|210|210|7770/medium|223|300|9043/large|223|308|10194/', 'YTowOnt9', 'YTowOnt9', ''),
(13, 1, 39, 8, 2, 2, 0, 0, 0, 0, 0, 1383952496, 0, 0, 'divy.jpg', 'jpg', 24561, 'image/jpeg', 252, 290, 'Divy', 'divy', '', '', '', '', '', '', '', 'small|210|210|8368/medium|252|290|11990/large|252|290|11990/', 'YTowOnt9', 'YTowOnt9', ''),
(14, 1, 51, 8, 2, 2, 0, 0, 0, 0, 0, 1383952845, 0, 0, 'de303f8659.jpg', 'jpg', 30310, 'image/jpeg', 123, 150, 'De303f8659', 'de303f8659', '', '', '', '', '', '', '', 'small|123|150|5529/medium|123|150|4887/large|123|150|4887/', 'YTowOnt9', 'YTowOnt9', ''),
(15, 1, 53, 8, 2, 2, 0, 0, 0, 0, 0, 1383952986, 0, 0, 'ahmad.jpg', 'jpg', 16335, 'image/jpeg', 165, 252, 'Ahmad', 'ahmad', '', '', '', '', '', '', '', 'small|165|210|7948/medium|165|252|8396/large|165|252|8396/', 'YTowOnt9', 'YTowOnt9', ''),
(16, 1, 54, 8, 2, 2, 0, 0, 0, 0, 0, 1383953151, 0, 0, 'sarkar-rice-2008-2.jpg', 'jpg', 64806, 'image/jpeg', 210, 210, 'Sarkar-rice-2008-2', 'sarkar-rice-2008-2', '', '', '', '', '', '', '', 'small|210|210|10392/medium|210|210|9190/large|210|210|9190/', 'YTowOnt9', 'YTowOnt9', ''),
(18, 1, 55, 8, 2, 2, 0, 0, 0, 0, 0, 1384892849, 0, 1, 'tamer.jpg', 'jpg', 30628, 'image/jpeg', 210, 210, 'Tamer', 'tamer', '', '', '', '', '', '', '', 'small|210|210|7310/medium|210|210|6403/large|210|210|6403/', 'YTowOnt9', 'YTowOnt9', '');

-- --------------------------------------------------------

--
-- Table structure for table `exp_channel_member_groups`
--

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

--
-- Dumping data for table `exp_channel_member_groups`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_channel_polls`
--

DROP TABLE IF EXISTS `exp_channel_polls`;
CREATE TABLE IF NOT EXISTS `exp_channel_polls` (
  `poll_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` tinyint(3) unsigned DEFAULT '1',
  `entry_id` int(10) unsigned DEFAULT '0',
  `channel_id` tinyint(3) unsigned DEFAULT '0',
  `field_id` mediumint(8) unsigned DEFAULT '0',
  `member_id` int(10) unsigned DEFAULT '0',
  `poll_status` tinyint(3) unsigned DEFAULT '1',
  `poll_end_date` int(10) unsigned DEFAULT '0',
  `total_votes` int(10) unsigned DEFAULT '0',
  `last_vote_date` int(10) unsigned DEFAULT '0',
  `allow_multiple` tinyint(3) unsigned DEFAULT '0',
  `allow_multiple_answers` tinyint(3) unsigned DEFAULT '0',
  `member_groups` varchar(250) DEFAULT '',
  `result_order` varchar(50) DEFAULT '',
  `show_results` varchar(50) DEFAULT '',
  `chart_type` varchar(50) DEFAULT '',
  `chart_width` varchar(20) DEFAULT '',
  `chart_height` varchar(20) DEFAULT '',
  `chart_bg` varchar(100) DEFAULT '',
  PRIMARY KEY (`poll_id`),
  KEY `entry_id` (`entry_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `exp_channel_polls`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_channel_polls_answers`
--

DROP TABLE IF EXISTS `exp_channel_polls_answers`;
CREATE TABLE IF NOT EXISTS `exp_channel_polls_answers` (
  `answer_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `poll_id` int(10) unsigned DEFAULT '0',
  `answer` varchar(250) DEFAULT '',
  `color` varchar(10) DEFAULT '',
  `total_votes` int(10) unsigned DEFAULT '0',
  `answer_order` tinyint(3) unsigned DEFAULT '1',
  PRIMARY KEY (`answer_id`),
  KEY `poll_id` (`poll_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `exp_channel_polls_answers`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_channel_polls_formparams`
--

DROP TABLE IF EXISTS `exp_channel_polls_formparams`;
CREATE TABLE IF NOT EXISTS `exp_channel_polls_formparams` (
  `fp_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `xid` varchar(250) DEFAULT '',
  `ip_address` int(10) unsigned DEFAULT '0',
  `date` int(10) unsigned DEFAULT '0',
  `form_data` text,
  PRIMARY KEY (`fp_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `exp_channel_polls_formparams`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_channel_polls_votes`
--

DROP TABLE IF EXISTS `exp_channel_polls_votes`;
CREATE TABLE IF NOT EXISTS `exp_channel_polls_votes` (
  `vote_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` tinyint(3) unsigned DEFAULT '1',
  `poll_id` int(10) unsigned DEFAULT '0',
  `answer_id` int(10) unsigned DEFAULT '0',
  `member_id` int(10) unsigned DEFAULT '0',
  `ip_address` int(10) unsigned DEFAULT '0',
  `nation` varchar(10) DEFAULT '',
  `date` int(10) unsigned DEFAULT '0',
  PRIMARY KEY (`vote_id`),
  KEY `poll_id` (`poll_id`),
  KEY `answer_id` (`answer_id`),
  KEY `member_id` (`member_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `exp_channel_polls_votes`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_channel_ratings`
--

DROP TABLE IF EXISTS `exp_channel_ratings`;
CREATE TABLE IF NOT EXISTS `exp_channel_ratings` (
  `rating_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` tinyint(3) unsigned DEFAULT '1',
  `entry_id` int(10) unsigned DEFAULT '0',
  `item_id` int(10) unsigned DEFAULT '0',
  `channel_id` tinyint(3) unsigned DEFAULT '0',
  `field_id` tinyint(3) unsigned DEFAULT '0',
  `ip_address` int(10) unsigned DEFAULT '0',
  `collection_id` tinyint(3) unsigned DEFAULT '1',
  `rating` float unsigned DEFAULT '0',
  `rating_author_id` int(10) unsigned DEFAULT '0',
  `rating_date` int(10) unsigned DEFAULT '0',
  `rating_type` tinyint(3) unsigned DEFAULT '0',
  `rating_status` tinyint(3) unsigned DEFAULT '1',
  PRIMARY KEY (`rating_id`),
  KEY `entry_id` (`entry_id`),
  KEY `item_id` (`item_id`),
  KEY `rating_author_id` (`rating_author_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `exp_channel_ratings`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_channel_ratings_collections`
--

DROP TABLE IF EXISTS `exp_channel_ratings_collections`;
CREATE TABLE IF NOT EXISTS `exp_channel_ratings_collections` (
  `collection_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` tinyint(3) unsigned DEFAULT '1',
  `collection_label` varchar(250) DEFAULT '',
  `collection_name` varchar(250) DEFAULT '',
  `default` tinyint(3) unsigned DEFAULT '0',
  PRIMARY KEY (`collection_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `exp_channel_ratings_collections`
--

INSERT INTO `exp_channel_ratings_collections` (`collection_id`, `site_id`, `collection_label`, `collection_name`, `default`) VALUES
(1, 1, 'Default', 'default', 1);

-- --------------------------------------------------------

--
-- Table structure for table `exp_channel_ratings_fields`
--

DROP TABLE IF EXISTS `exp_channel_ratings_fields`;
CREATE TABLE IF NOT EXISTS `exp_channel_ratings_fields` (
  `field_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` tinyint(3) unsigned DEFAULT '1',
  `title` varchar(250) DEFAULT '',
  `short_name` varchar(250) DEFAULT '',
  `collection_id` tinyint(3) unsigned DEFAULT '1',
  `required` tinyint(3) unsigned DEFAULT '1',
  PRIMARY KEY (`field_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `exp_channel_ratings_fields`
--

INSERT INTO `exp_channel_ratings_fields` (`field_id`, `site_id`, `title`, `short_name`, `collection_id`, `required`) VALUES
(1, 1, 'Default Rating Field', 'default', 1, 1);

-- --------------------------------------------------------

--
-- Table structure for table `exp_channel_ratings_likes`
--

DROP TABLE IF EXISTS `exp_channel_ratings_likes`;
CREATE TABLE IF NOT EXISTS `exp_channel_ratings_likes` (
  `rlike_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` tinyint(3) unsigned DEFAULT '1',
  `entry_id` int(10) unsigned DEFAULT '0',
  `item_id` int(10) unsigned DEFAULT '0',
  `channel_id` tinyint(3) unsigned DEFAULT '0',
  `collection_id` tinyint(3) unsigned DEFAULT '1',
  `liked` int(10) unsigned DEFAULT '0',
  `disliked` int(10) unsigned DEFAULT '0',
  `ip_address` int(10) unsigned DEFAULT '0',
  `like_author_id` int(10) unsigned DEFAULT '0',
  `like_date` int(10) unsigned DEFAULT '0',
  `like_type` tinyint(3) unsigned DEFAULT '0',
  `like_bayesian` float unsigned DEFAULT '0',
  `stats_row` tinyint(3) unsigned DEFAULT '0',
  PRIMARY KEY (`rlike_id`),
  KEY `entry_id` (`entry_id`),
  KEY `item_id` (`item_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `exp_channel_ratings_likes`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_channel_ratings_stats`
--

DROP TABLE IF EXISTS `exp_channel_ratings_stats`;
CREATE TABLE IF NOT EXISTS `exp_channel_ratings_stats` (
  `rstat_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` tinyint(3) unsigned DEFAULT '1',
  `entry_id` int(10) unsigned DEFAULT '0',
  `item_id` int(10) unsigned DEFAULT '0',
  `field_id` tinyint(3) unsigned DEFAULT '0',
  `channel_id` tinyint(3) unsigned DEFAULT '0',
  `collection_id` tinyint(3) unsigned DEFAULT '1',
  `rating_avg` float unsigned DEFAULT '0',
  `rating_last_date` int(10) unsigned DEFAULT '0',
  `rating_sum` float unsigned DEFAULT '0',
  `rating_total` int(10) unsigned DEFAULT '0',
  `rating_bayesian` float unsigned DEFAULT '0',
  `rating_bayesian_overall` float unsigned DEFAULT '0',
  `rating_type` tinyint(3) unsigned DEFAULT '0',
  PRIMARY KEY (`rstat_id`),
  KEY `entry_id` (`entry_id`),
  KEY `item_id` (`item_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `exp_channel_ratings_stats`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_channel_titles`
--

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

--
-- Dumping data for table `exp_channel_titles`
--

INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES
(1, 1, 1, 2, NULL, '66.214.191.82', 'About', 'about', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383944520, '2013', '11', '08', 0, 0, 20131113200939, 0, 0),
(155, 1, 7, 2, NULL, '71.119.155.204', 'Discoverability & Access', 'discoverability-access', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1384325340, '2013', '11', '12', 0, 0, 20131113065139, 0, 0),
(154, 1, 7, 2, NULL, '24.246.110.94', 'The ACM Brand', 'the-acm-brand', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1384324980, '2013', '11', '12', 0, 0, 20131120115718, 0, 0),
(4, 1, 2, 2, NULL, '66.214.191.82', 'Bashar Nuseibeh', 'bashar-nuseibeh', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383946380, '2013', '11', '08', 0, 0, 20131112224633, 0, 0),
(5, 1, 2, 2, NULL, '66.214.191.82', 'Shih-Fu Chang', 'shih-fu-chang', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383947040, '2013', '11', '08', 0, 0, 20131112224618, 0, 0),
(6, 1, 3, 2, NULL, '24.246.110.94', 'Teldan Information Systems', 'teldan-information-systems', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383950160, '2013', '11', '08', 0, 0, 20131122182728, 0, 0),
(7, 1, 3, 2, NULL, '66.214.191.82', 'Wisconsin Library Services WiLS', 'wisconsin-library-services-wils', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383950460, '2013', '11', '08', 0, 0, 20131120204951, 0, 0),
(8, 1, 3, 3, NULL, '66.214.191.82', 'African Open Consortium', 'african-open-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383950820, '2013', '11', '08', 0, 0, 20131108225007, 0, 0),
(9, 1, 3, 3, NULL, '24.246.110.94', 'AMICAL Consortium', 'amical-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383951000, '2013', '11', '08', 0, 0, 20131122171417, 0, 0),
(10, 1, 3, 3, NULL, '66.214.191.82', 'ANKOS Consortium', 'ankos-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383951000, '2013', '11', '08', 0, 0, 20131108225113, 0, 0),
(11, 1, 2, 2, NULL, '66.214.191.82', 'Ramesh Jain', 'ramesh-jain', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383951360, '2013', '11', '08', 0, 0, 20131112224602, 0, 0),
(12, 1, 2, 2, NULL, '66.214.191.82', 'Edward Fox', 'edward-fox', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383951420, '2013', '11', '08', 0, 0, 20131112224548, 0, 0),
(13, 1, 2, 2, NULL, '66.214.191.82', 'Laurie Hendren', 'laurie-hendren', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383951480, '2013', '11', '08', 0, 0, 20131112224458, 0, 0),
(14, 1, 2, 2, NULL, '66.214.191.82', 'Michel Beaudouin-Lafon', 'michel-beaudouin-lafon', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383951600, '2013', '11', '08', 0, 0, 20131112224438, 0, 0),
(15, 1, 3, 3, NULL, '66.214.191.82', 'Amigos Library Services, Inc', 'amigos-library-services-inc', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383951060, '2013', '11', '08', 0, 0, 20131108230255, 0, 0),
(16, 1, 3, 3, NULL, '66.214.191.82', 'Arabian Advance Systems', 'arabian-advance-systems', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383951720, '2013', '11', '08', 0, 0, 20131108230336, 0, 0),
(17, 1, 2, 2, NULL, '66.214.191.82', 'Thomas J. Misa', 'thomas-j.-misa', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383951720, '2013', '11', '08', 0, 0, 20131115210639, 0, 0),
(18, 1, 3, 3, NULL, '66.214.191.82', 'B-On Consortium of Portugal (FCCN)', 'b-on-consortium-of-portugal-fccn', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383951780, '2013', '11', '08', 0, 0, 20131108230359, 0, 0),
(19, 1, 3, 3, NULL, '24.246.110.94', 'C3 - Czech CompSci Consortium', 'c3-czech-compsci-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383951840, '2013', '11', '08', 0, 0, 20131122171505, 0, 0),
(20, 1, 3, 3, NULL, '24.246.110.94', 'CAPES Coordenação de Aperfeiçoamento de Pessoal de Nível Superior', 'capes-coordenacaeo-de-aperfeicoamento-de-pessoal-de-nivel-superior', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383951840, '2013', '11', '08', 0, 0, 20131121200701, 0, 0),
(21, 1, 3, 3, NULL, '66.214.191.82', 'California Digital Library', 'california-digital-library', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383951840, '2013', '11', '08', 0, 0, 20131108230506, 0, 0),
(22, 1, 2, 2, NULL, '66.214.191.82', 'Mohamed F. Mokbel', 'mohamed-f.-mokbel', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383951780, '2013', '11', '08', 0, 0, 20131112224417, 0, 0),
(23, 1, 3, 3, NULL, '66.214.191.82', 'California State University', 'california-state-university', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383951900, '2013', '11', '08', 0, 0, 20131108230532, 0, 0),
(24, 1, 3, 3, NULL, '24.246.110.94', 'CAUL/ Australia', 'caul-australia', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383951900, '2013', '11', '08', 0, 0, 20131121194839, 0, 0),
(25, 1, 3, 3, NULL, '24.246.110.94', 'Chile Consrtium', 'chile-consrtium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383951900, '2013', '11', '08', 0, 0, 20131121201323, 0, 0),
(26, 1, 3, 3, NULL, '66.214.191.82', 'CILEA Consortium', 'cilea-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383951960, '2013', '11', '08', 0, 0, 20131108230653, 0, 0),
(27, 1, 3, 3, NULL, '24.246.110.94', 'Colombia Consortium', 'colombia-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383951960, '2013', '11', '08', 0, 0, 20131121201842, 0, 0),
(28, 1, 2, 2, NULL, '66.214.191.82', 'Gerhard Weikum', 'gerhard-weikum', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383951900, '2013', '11', '08', 0, 0, 20131112224404, 0, 0),
(29, 1, 3, 3, NULL, '24.246.110.94', 'Consortia Canada', 'consortia-canada', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383952020, '2013', '11', '08', 0, 0, 20131121200808, 0, 0),
(30, 1, 3, 3, NULL, '66.214.191.82', 'Consortium Luxembourg', 'consortium-luxembourg', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383952080, '2013', '11', '08', 0, 0, 20131108230826, 0, 0),
(31, 1, 3, 3, NULL, '66.214.191.82', 'Consortium of Academic and Research Libraries in Illinois', 'consortium-of-academic-and-research-libraries-in-illinois', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383952080, '2013', '11', '08', 0, 0, 20131108230854, 0, 0),
(32, 1, 3, 3, NULL, '66.214.191.82', 'Consortium of the Swiss Academic Libraries', 'consortium-of-the-swiss-academic-libraries', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383952140, '2013', '11', '08', 0, 0, 20131108230918, 0, 0),
(33, 1, 2, 2, NULL, '66.214.191.82', 'Limsoon Wong', 'limsoon-wong', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383952080, '2013', '11', '08', 0, 0, 20131112224322, 0, 0),
(34, 1, 3, 3, NULL, '24.246.110.94', 'Costa Rica Consortium', 'costa-rica-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383952140, '2013', '11', '08', 0, 0, 20131121202318, 0, 0),
(35, 1, 2, 2, NULL, '66.214.191.82', 'Ricardo Baeza-Yates', 'ricardo-baeza-yates', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383952140, '2013', '11', '08', 0, 0, 20131112224310, 0, 0),
(36, 1, 3, 3, NULL, '66.214.191.82', 'CONRICyT (Mexican National Consortium)', 'conricyt-mexican-national-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383952140, '2013', '11', '08', 0, 0, 20131108231202, 0, 0),
(37, 1, 2, 2, NULL, '66.214.191.82', 'John C. Hart', 'john-c.-hart', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383952320, '2013', '11', '08', 0, 0, 20131112224257, 0, 0),
(38, 1, 3, 3, NULL, '66.214.191.82', 'CVTI - Slovakia Consortium', 'cvti-slovakia-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383952440, '2013', '11', '08', 0, 0, 20131108231451, 0, 0),
(39, 1, 2, 2, NULL, '66.214.191.82', 'Dr. Divyakant Agrawal', 'dr.-divyakant-agrawal', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383952440, '2013', '11', '08', 0, 0, 20131112224246, 0, 0),
(40, 1, 3, 3, NULL, '66.214.191.82', 'Couperin/CNRS/INRIA', 'couperin-cnrs-inria', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383952440, '2013', '11', '08', 0, 0, 20131108231513, 0, 0),
(41, 1, 3, 3, NULL, '66.214.191.82', 'Daneshyar Network', 'daneshyar-network', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383952500, '2013', '11', '08', 0, 0, 20131108231534, 0, 0),
(42, 1, 3, 3, NULL, '66.214.191.82', 'Danish Consortium', 'danish-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383952500, '2013', '11', '08', 0, 0, 20131108231554, 0, 0),
(43, 1, 3, 3, NULL, '24.246.110.94', 'DRAA (China) Consortium', 'draa-china-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383952560, '2013', '11', '08', 0, 0, 20131121201742, 0, 0),
(44, 1, 3, 3, NULL, '66.214.191.82', 'EBSCO Latin America', 'ebsco-latin-america', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383952560, '2013', '11', '08', 0, 0, 20131108231656, 0, 0),
(45, 1, 3, 3, NULL, '66.214.191.82', 'EBSCO North America', 'ebsco-north-america', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383952620, '2013', '11', '08', 0, 0, 20131108231717, 0, 0),
(46, 1, 3, 3, NULL, '66.214.191.82', 'EBSCO Ireland', 'ebsco-ireland', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383952620, '2013', '11', '08', 0, 0, 20131108231734, 0, 0),
(47, 1, 3, 3, NULL, '66.214.191.82', 'EBSCO Latvia', 'ebsco-latvia', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383952680, '2013', '11', '08', 0, 0, 20131108231822, 0, 0),
(48, 1, 3, 3, NULL, '24.246.110.94', 'EBSCO Poland', 'ebsco-poland', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383952680, '2013', '11', '08', 0, 0, 20131122180733, 0, 0),
(49, 1, 3, 3, NULL, '24.246.110.94', 'Ecuador Consortium', 'ecuador-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383952680, '2013', '11', '08', 0, 0, 20131121204351, 0, 0),
(50, 1, 3, 3, NULL, '66.214.191.82', 'Federation of Kentucky Academic Libraries (FOKAL)', 'federation-of-kentucky-academic-libraries-fokal', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383952740, '2013', '11', '08', 0, 0, 20131108232025, 0, 0),
(51, 1, 2, 2, NULL, '66.214.191.82', 'Bernard Scholkopf', 'bernard-scholkopf', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383952500, '2013', '11', '08', 0, 0, 20131112224225, 0, 0),
(52, 1, 3, 3, NULL, '24.246.110.94', 'Finland Consortium', 'finland-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383952800, '2013', '11', '08', 0, 0, 20131122172514, 0, 0),
(53, 1, 2, 2, NULL, '66.214.191.82', 'Dr. Ahmad-Reza Sadeghi', 'dr.-ahmad-reza-sadeghi', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383952860, '2013', '11', '08', 0, 0, 20131112224213, 0, 0),
(54, 1, 2, 2, NULL, '66.214.191.82', 'Vivek Sarkar', 'vivek-sarkar', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383953040, '2013', '11', '08', 0, 0, 20131113013104, 0, 0),
(55, 1, 2, 2, NULL, '66.214.191.82', 'M. Tamer Özsu', 'm.-tamer-oezsu', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383867060, '2013', '11', '07', 0, 0, 20131119202729, 0, 0),
(56, 1, 3, 3, NULL, '66.214.191.82', 'Greater Western Library Alliance (GWLA)', 'greater-western-library-alliance-gwla', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383952800, '2013', '11', '08', 0, 0, 20131108233441, 0, 0),
(57, 1, 3, 3, NULL, '24.246.110.94', 'Higher Education Commission, Pakistan', 'higher-education-commission-pakistan', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383953760, '2013', '11', '08', 0, 0, 20131122173454, 0, 0),
(58, 1, 3, 3, NULL, '24.246.110.94', 'HeBIS', 'hebis', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383953820, '2013', '11', '08', 0, 0, 20131122172621, 0, 0),
(59, 1, 3, 3, NULL, '24.246.110.94', 'Hellenic Academic Libraries Link', 'hellenic-academic-libraries-link', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383953820, '2013', '11', '08', 0, 0, 20131122172904, 0, 0),
(60, 1, 3, 3, NULL, '66.214.191.82', 'Hong Kong', 'hong-kong', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383953880, '2013', '11', '08', 0, 0, 20131108233814, 0, 0),
(61, 1, 3, 3, NULL, '66.214.191.82', 'Hungary Consortium (EISZ)', 'hungary-consortium-eisz', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383953880, '2013', '11', '08', 0, 0, 20131108233836, 0, 0),
(62, 1, 3, 3, NULL, '66.214.191.82', 'INDEST (India) Consortium', 'indest-india-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383953880, '2013', '11', '08', 0, 0, 20131108233855, 0, 0),
(63, 1, 3, 3, NULL, '66.214.191.82', 'IReL Consortium', 'irel-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383953880, '2013', '11', '08', 0, 0, 20131108234758, 0, 0),
(64, 1, 3, 3, NULL, '66.214.191.82', 'Japan National University Consortium', 'japan-national-university-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383953940, '2013', '11', '08', 0, 0, 20131108234112, 0, 0),
(65, 1, 3, 3, NULL, '66.214.191.82', 'Japan Academic Open Consortium', 'japan-academic-open-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383953940, '2013', '11', '08', 0, 0, 20131108234116, 0, 0),
(66, 1, 3, 3, NULL, '24.246.110.94', 'KERIS', 'keris', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383953940, '2013', '11', '08', 0, 0, 20131122173307, 0, 0),
(67, 1, 3, 3, NULL, '24.246.110.94', 'Kooperation E-Medien Österreich', 'kooperation-e-medien-oesterreich', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383954000, '2013', '11', '08', 0, 0, 20131121195118, 0, 0),
(68, 1, 3, 3, NULL, '66.214.191.82', 'Iraqi Virtual Science Library', 'iraqi-virtual-science-library', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383953880, '2013', '11', '08', 0, 0, 20131108234726, 0, 0),
(69, 1, 3, 3, NULL, '66.214.191.82', 'Kungl. Biblioteket /National Library of Sweden', 'kungl.-biblioteket-national-library-of-sweden', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383954480, '2013', '11', '08', 0, 0, 20131108234921, 0, 0),
(70, 1, 3, 3, NULL, '66.214.191.82', 'LOBBI Netherlands Consortium', 'lobbi-netherlands-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383954600, '2013', '11', '08', 0, 0, 20131108235041, 0, 0),
(71, 1, 3, 3, NULL, '66.214.191.82', 'Lithuanian Research Academic Library Consortium', 'lithuanian-research-academic-library-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383954540, '2013', '11', '08', 0, 0, 20131108234957, 0, 0),
(72, 1, 3, 3, NULL, '66.214.191.82', 'LYRASIS Consortium', 'lyrasis-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383954600, '2013', '11', '08', 0, 0, 20131108235215, 0, 0),
(73, 1, 3, 3, NULL, '24.246.110.94', 'Latin American Consortium', 'latin-american-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383954600, '2013', '11', '08', 0, 0, 20131121201210, 0, 0),
(74, 1, 3, 3, NULL, '66.214.191.82', 'MALMAD - Israel Center for Digital Information Services', 'malmad-israel-center-for-digital-information-services', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383954720, '2013', '11', '08', 0, 0, 20131108235231, 0, 0),
(75, 1, 3, 3, NULL, '24.246.110.94', 'Malaysia Consortium', 'malaysia-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383954720, '2013', '11', '08', 0, 0, 20131121204626, 0, 0),
(76, 1, 3, 3, NULL, '66.214.191.82', 'Maryland Digital Library', 'maryland-digital-library', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383954720, '2013', '11', '08', 0, 0, 20131108235252, 0, 0),
(77, 1, 3, 3, NULL, '24.246.110.94', 'Mexico Consortium', 'mexico-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383954780, '2013', '11', '08', 0, 0, 20131121205325, 0, 0),
(78, 1, 3, 3, NULL, '66.214.191.82', 'Midwest Collaborative for Library Services (MCLS)', 'midwest-collaborative-for-library-services-mcls', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383954780, '2013', '11', '08', 0, 0, 20131108235459, 0, 0),
(79, 1, 3, 3, NULL, '24.246.110.94', 'Middle East Consortium', 'middle-east-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383954780, '2013', '11', '08', 0, 0, 20131121210857, 0, 0),
(80, 1, 3, 3, NULL, '24.246.110.94', 'Midwest Collaborative for Library (MCLS)', 'midwest-collaborative-for-library-mcls', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383954780, '2013', '11', '08', 0, 0, 20131122181402, 0, 0),
(81, 1, 3, 3, NULL, '24.246.110.94', 'MINCyT (Argentina) Consortium', 'mincyt-argentina-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383954780, '2013', '11', '08', 0, 0, 20131121194652, 0, 0),
(82, 1, 3, 3, NULL, '66.214.191.82', 'Minitex', 'minitex', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383954840, '2013', '11', '08', 0, 0, 20131109001532, 0, 0),
(83, 1, 4, 2, NULL, '24.246.110.94', 'Authors', 'authors', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383954840, '2013', '11', '08', 0, 0, 20131121162824, 0, 0),
(84, 1, 3, 3, NULL, '66.214.191.82', 'NEICON', 'neicon', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383954840, '2013', '11', '08', 0, 0, 20131109001413, 0, 0),
(85, 1, 3, 3, NULL, '66.214.191.82', 'NERL Consortium', 'nerl-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383954900, '2013', '11', '08', 0, 0, 20131108235711, 0, 0),
(86, 1, 3, 3, NULL, '66.214.191.82', 'Norwegian Consortium of Academic Libraries', 'norwegian-consortium-of-academic-libraries', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383954900, '2013', '11', '08', 0, 0, 20131109001706, 0, 0),
(87, 1, 3, 3, NULL, '66.214.191.82', 'OhioLINK', 'ohiolink', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383954900, '2013', '11', '08', 0, 0, 20131108235717, 0, 0),
(88, 1, 3, 3, NULL, '66.214.191.82', 'PALCI - Pennsylvania Academic Library Consortium, Inc.', 'palci-pennsylvania-academic-library-consortium-inc', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383954900, '2013', '11', '08', 0, 0, 20131109001219, 0, 0),
(89, 1, 3, 3, NULL, '24.246.110.94', 'Peru Consortium', 'peru-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383954960, '2013', '11', '08', 0, 0, 20131122161531, 0, 0),
(90, 1, 3, 3, NULL, '24.246.110.94', 'Publiciencia Ltda', 'publiciencia-ltda', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383954960, '2013', '11', '08', 0, 0, 20131122172312, 0, 0),
(91, 1, 3, 3, NULL, '66.214.191.82', 'Robert W. Woodruff Library Consortium', 'robert-w.-woodruff-library-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383954960, '2013', '11', '08', 0, 0, 20131109001101, 0, 0),
(92, 1, 3, 3, NULL, '66.214.191.82', 'Russian Open Consortium', 'russian-open-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383955020, '2013', '11', '08', 0, 0, 20131108235911, 0, 0),
(93, 1, 4, 2, NULL, '66.214.191.82', 'Editorial Selection and Management', 'editorial-selection-and-management', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383955140, '2013', '11', '08', 0, 0, 20131119200529, 0, 0),
(94, 1, 3, 3, NULL, '66.214.191.82', 'SANLic', 'sanlic', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383955140, '2013', '11', '08', 0, 0, 20131109000038, 0, 0),
(95, 1, 3, 3, NULL, '24.246.110.94', 'SENAC (Brazil)', 'senac-brazil', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383955140, '2013', '11', '08', 0, 0, 20131122174852, 0, 0),
(96, 1, 3, 3, NULL, '66.214.191.82', 'Singapore Consortium', 'singapore-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383955140, '2013', '11', '08', 0, 0, 20131109000045, 0, 0),
(97, 1, 3, 3, NULL, '66.214.191.82', 'Spain Consortium', 'spain-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383955140, '2013', '11', '08', 0, 0, 20131109000048, 0, 0),
(98, 1, 3, 3, NULL, '66.214.191.82', 'Statewide California Electronic Library Consortium (SCELC)', 'statewide-california-electronic-library-consortium-scelc', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383955140, '2013', '11', '08', 0, 0, 20131109000051, 0, 0),
(99, 1, 3, 3, NULL, '66.214.191.82', 'SWETS Africa', 'swets-africa', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383955260, '2013', '11', '08', 0, 0, 20131109000229, 0, 0),
(100, 1, 3, 3, NULL, '66.214.191.82', 'Taiwan Consortium - A.S.', 'taiwan-consortium-a.s', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383955260, '2013', '11', '08', 0, 0, 20131109000233, 0, 0),
(101, 1, 3, 3, NULL, '66.214.191.82', 'CHE Consortium', 'che-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383955260, '2013', '11', '08', 0, 0, 20131109000235, 0, 0),
(102, 1, 3, 3, NULL, '24.246.110.94', 'UGC Digital Library Consortium', 'ugc-digital-library-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383955260, '2013', '11', '08', 0, 0, 20131121195208, 0, 0),
(103, 1, 3, 3, NULL, '66.214.191.82', 'UK Higher Education Institutions (UK HEI)', 'uk-higher-education-institutions-uk-hei', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383955260, '2013', '11', '08', 0, 0, 20131109000242, 0, 0),
(104, 1, 3, 3, NULL, '66.214.191.82', 'University of Puerto Rico Libraries', 'university-of-puerto-rico-libraries', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383955320, '2013', '11', '08', 0, 0, 20131109000404, 0, 0),
(105, 1, 3, 3, NULL, '66.214.191.82', 'University of the West Indies Consortium', 'university-of-the-west-indies-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383955320, '2013', '11', '08', 0, 0, 20131109000407, 0, 0),
(106, 1, 3, 3, NULL, '66.214.191.82', 'VIP Consortium', 'vip-consortium', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383955320, '2013', '11', '08', 0, 0, 20131109000410, 0, 0),
(107, 1, 3, 3, NULL, '66.214.191.82', 'VIVA', 'viva', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383955320, '2013', '11', '08', 0, 0, 20131109000413, 0, 0),
(108, 1, 3, 3, NULL, '66.214.191.82', 'Westchester Academic Library Directors Association (WALDO)', 'westchester-academic-library-directors-association-waldo', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383955320, '2013', '11', '08', 0, 0, 20131109000416, 0, 0),
(170, 1, 3, 6, NULL, '24.246.110.94', 'CAUL/ New Zealand', 'caul-new-zealand', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1385063280, '2013', '11', '21', 0, 0, 20131121195025, 0, 0),
(110, 1, 4, 2, NULL, '66.214.191.82', 'High Quality Production', 'high-quality-production', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383955500, '2013', '11', '08', 0, 0, 20131119200535, 0, 0),
(111, 1, 4, 2, NULL, '66.214.191.82', 'Global Distribution', 'global-distribution', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383955620, '2013', '11', '08', 0, 0, 20131119200540, 0, 0),
(112, 1, 4, 2, NULL, '66.214.191.82', 'Affordability', 'affordability', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383955680, '2013', '11', '08', 0, 0, 20131119200711, 0, 0),
(113, 1, 4, 2, NULL, '66.214.191.82', 'Royalties', 'royalties', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383955680, '2013', '11', '08', 0, 0, 20131119200546, 0, 0),
(114, 1, 4, 2, NULL, '66.214.191.82', 'Copyright', 'copyright', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383955740, '2013', '11', '08', 0, 0, 20131119200554, 0, 0),
(115, 1, 4, 2, NULL, '66.214.191.82', '​Marketing', 'marketing', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383955680, '2013', '11', '08', 0, 0, 20131119200550, 0, 0),
(116, 1, 4, 2, NULL, '24.246.110.94', 'Publishing Policies', 'publishing-policies', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383955980, '2013', '11', '08', 0, 0, 20131120193810, 0, 0),
(117, 1, 3, 3, NULL, '24.246.110.94', 'TSP Diffusion', 'tsp-diffusion', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383956580, '2013', '11', '08', 0, 0, 20131122175207, 0, 0),
(118, 1, 3, 3, NULL, '24.246.110.94', 'Systems Link International', 'systems-link-international', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383956940, '2013', '11', '08', 0, 0, 20131122161350, 0, 0),
(119, 1, 3, 3, NULL, '24.246.110.94', 'SWETS United Kingdom', 'swets-united-kingdom', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383957060, '2013', '11', '08', 0, 0, 20131122182332, 0, 0),
(120, 1, 3, 3, NULL, '24.246.110.94', 'SWETS Spain', 'swets-spain', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383957120, '2013', '11', '08', 0, 0, 20131122183143, 0, 0),
(121, 1, 3, 3, NULL, '24.246.110.94', 'SWETS South Africa', 'swets-south-africa', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383957360, '2013', '11', '08', 0, 0, 20131122174207, 0, 0),
(122, 1, 3, 3, NULL, '24.246.110.94', 'Shinwon Datanet Inc.', 'shinwon-datanet-inc', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383957480, '2013', '11', '08', 0, 0, 20131122173219, 0, 0),
(123, 1, 3, 3, NULL, '24.246.110.94', 'Revistas Técnicas Ltda', 'revistas-tecnicas-ltda', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383957600, '2013', '11', '08', 0, 0, 20131122183340, 0, 0),
(124, 1, 3, 3, NULL, '24.246.110.94', 'Publiciencia Ltda', 'publiciencia-ltda1', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383957780, '2013', '11', '08', 0, 0, 20131122172410, 0, 0),
(125, 1, 3, 3, NULL, '66.214.191.82', 'Mondesic TechKnowledge FZLLC', 'mondesic-techknowledge-fzllc', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383957900, '2013', '11', '08', 0, 0, 20131109004629, 0, 0),
(126, 1, 3, 3, NULL, '24.246.110.94', 'LYRASIS', 'lyrasis', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383958020, '2013', '11', '08', 0, 0, 20131122172006, 0, 0),
(127, 1, 3, 3, NULL, '24.246.110.94', 'Kinokuniya Company Ltd.', 'kinokuniya-company-ltd', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383958020, '2013', '11', '08', 0, 0, 20131122162641, 0, 0),
(128, 1, 3, 3, NULL, '24.246.110.94', 'InfoHost Pte Ltd', 'infohost-pte-ltd', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383958140, '2013', '11', '08', 0, 0, 20131122171805, 0, 0),
(129, 1, 3, 3, NULL, '24.246.110.94', 'InfoAccess & Distribution (HK) Ltd', 'infoaccess-distribution-hk-ltd', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383958200, '2013', '11', '08', 0, 0, 20131122174515, 0, 0),
(130, 1, 3, 3, NULL, '24.246.110.94', 'iGroup Taiwan', 'group-taiwan', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383958680, '2013', '11', '08', 0, 0, 20131122162352, 0, 0),
(131, 1, 3, 3, NULL, '24.246.110.94', 'iGroup China', 'igroup-china', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383958740, '2013', '11', '08', 0, 0, 20131122173014, 0, 0),
(132, 1, 3, 3, NULL, '24.246.110.94', 'Grupo Difusion Cientifica', 'grupo-difusion-cientifica', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383958860, '2013', '11', '08', 0, 0, 20131122175014, 0, 0),
(133, 1, 3, 3, NULL, '24.246.110.94', 'Global Information Systems Technology Pvt. Ltd.', 'global-information-systems-technology-pvt.-ltd', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383958920, '2013', '11', '08', 0, 0, 20131122161746, 0, 0),
(134, 1, 3, 3, NULL, '24.246.110.94', 'EBSCO UK', 'ebsco-uk', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383959040, '2013', '11', '08', 0, 0, 20131122182128, 0, 0),
(135, 1, 3, 3, NULL, '24.246.110.94', 'EBSCO Turkey', 'ebsco-turkey', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383959040, '2013', '11', '08', 0, 0, 20131122181817, 0, 0),
(136, 1, 3, 3, NULL, '24.246.110.94', 'EBSCO Spain and Portugal', 'ebsco-spain-and-portugal', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383959100, '2013', '11', '08', 0, 0, 20131122181958, 0, 0),
(137, 1, 3, 3, NULL, '24.246.110.94', 'EBSCO Poland', 'ebsco', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383959160, '2013', '11', '08', 0, 0, 20131122180521, 0, 0),
(138, 1, 3, 3, NULL, '24.246.110.94', 'EBSCO Mexico', 'ebsco-mexico', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383959340, '2013', '11', '08', 0, 0, 20131122181525, 0, 0),
(139, 1, 3, 3, NULL, '66.214.191.82', 'EBSCO Brasil', 'ebsco-brasil', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383959340, '2013', '11', '08', 0, 0, 20131109011204, 0, 0),
(140, 1, 3, 3, NULL, '24.246.110.94', 'Book Promotion & Svc. Co., Ltd.', 'book-promotion-svc.-co.-ltd', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383959520, '2013', '11', '08', 0, 0, 20131122171633, 0, 0),
(141, 1, 3, 3, NULL, '24.246.110.94', 'Arabian Advanced Systems', 'arabian-advanced-systems', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383959520, '2013', '11', '08', 0, 0, 20131122162805, 0, 0),
(142, 1, 3, 2, NULL, '66.214.191.82', 'Diane Cerra', 'diane-cerra', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383959640, '2013', '11', '08', 0, 0, 20131109011726, 0, 0),
(143, 1, 3, 2, NULL, '66.214.191.82', 'Scott Delman', 'scott-delman', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383959700, '2013', '11', '08', 0, 0, 20131109011711, 0, 0),
(144, 1, 3, 3, NULL, '24.246.110.94', 'Albertina icome Praha s.r.o.', 'albertina-icome-praha-s.r.o', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383959700, '2013', '11', '08', 0, 0, 20131122161251, 0, 0),
(145, 1, 3, 3, NULL, '24.246.110.94', 'Access Dunia Sdn Bhd', 'access-dunia-sdn-bhd', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383959760, '2013', '11', '08', 0, 0, 20131121192548, 0, 0),
(146, 1, 5, 2, NULL, '184.152.11.15', 'Editorial Quality', 'editorial-quality', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1384308540, '2013', '11', '12', 0, 0, 20131121015911, 0, 0),
(147, 1, 5, 2, NULL, '24.246.110.94', 'Publication Formats', 'publication-formats', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1384308600, '2013', '11', '12', 0, 0, 20131120124212, 0, 0),
(148, 1, 5, 2, NULL, '24.246.110.94', 'Discoverability', 'discoverability', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1384308660, '2013', '11', '12', 0, 0, 20131120124130, 0, 0),
(165, 1, 4, 5, NULL, '184.152.11.15', 'Manuscript Development and Review Process', 'manuscript-development-and-review-process', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1384953000, '2013', '11', '20', 0, 0, 20131121012700, 0, 0),
(149, 1, 5, 2, NULL, '66.214.191.82', 'Access', 'access', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1384308720, '2013', '11', '12', 0, 0, 20131119201628, 0, 0),
(150, 1, 1, 2, NULL, '184.152.11.15', 'Rationale for Series', 'rationale-for-series', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1384322160, '2013', '11', '12', 0, 0, 20131121015053, 0, 0),
(151, 1, 1, 2, NULL, '24.246.110.94', 'ACM’s Wide Reach', 'acms-wide-reach', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1384322520, '2013', '11', '12', 0, 0, 20131119164937, 0, 0),
(152, 1, 1, 2, NULL, '184.152.11.15', 'Morgan & Claypool', 'morgan-claypool', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1384322580, '2013', '11', '12', 0, 0, 20131121011235, 0, 0),
(153, 1, 1, 2, NULL, '24.246.110.94', 'Provide Feedback', 'provide-feedback', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1384322640, '2013', '11', '12', 0, 0, 20131120115916, 0, 0),
(156, 1, 7, 2, NULL, '24.246.110.94', 'How to Purchase', 'how-to-purchase', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1384325700, '2013', '11', '12', 0, 0, 20131119151106, 0, 0),
(157, 1, 7, 2, NULL, '71.119.155.204', 'Indexes', 'indexes', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1384326240, '2013', '11', '12', 0, 0, 20131113071333, 0, 0),
(158, 1, 7, 2, NULL, '24.246.110.94', 'Access', 'access', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1384327380, '2013', '11', '12', 0, 0, 20131120212215, 0, 0),
(159, 1, 7, 2, NULL, '71.119.155.204', '​Marc21 Records', 'marc21-records', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1384327440, '2013', '11', '12', 0, 0, 20131113072502, 0, 0),
(160, 1, 7, 2, NULL, '66.214.191.82', '​Individual Title Purchases', 'individual-title-purchases', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1384326000, '2013', '11', '12', 0, 0, 20131119202905, 0, 0),
(161, 1, 7, 2, NULL, '24.246.110.94', 'Libraries', 'libraries', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1384886400, '2013', '11', '19', 0, 0, 20131120220111, 0, 0),
(162, 1, 4, 2, NULL, '24.246.110.94', 'The Publishing Process', 'the-publishing-process', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1384886820, '2013', '11', '19', 0, 0, 20131120220635, 0, 0),
(163, 1, 4, 2, NULL, '24.246.110.94', 'Proposal and Selection Process', 'proposal-and-selection-process', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1384891680, '2013', '11', '19', 0, 0, 20131120222353, 0, 0),
(166, 1, 4, 5, NULL, '24.246.110.94', 'ILLUSTRATIONS', 'illustrations', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1384953240, '2013', '11', '20', 0, 0, 20131120131912, 0, 0),
(167, 1, 4, 5, NULL, '24.246.110.94', 'PERMISSIONS', 'permissions', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1384953660, '2013', '11', '20', 0, 0, 20131120224928, 0, 0),
(168, 1, 4, 5, NULL, '24.246.110.94', 'MANUSCRIPT PRODUCTION', 'manuscript-production', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1384953720, '2013', '11', '20', 0, 0, 20131120230648, 0, 0),
(169, 1, 4, 2, NULL, '66.214.191.82', 'Promotion & Sales', 'marketing-sales', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1383849360, '2013', '11', '07', 0, 0, 20131121201832, 0, 0),
(174, 1, 4, 2, NULL, '66.214.191.82', 'Promotion to institutions will include the following:', 'promotion-to-institutions-will-include-the-following', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1385064360, '2013', '11', '21', 0, 0, 20131121200754, 0, 0),
(172, 1, 5, 2, NULL, '66.214.191.82', 'Readers', 'readers', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1385064120, '2013', '11', '21', 0, 0, 20131121200301, 0, 0),
(173, 1, 4, 2, NULL, '66.214.191.82', 'Promotion to individuals will include the following:', 'promotion-to-individuals-will-include-the-following', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1385064240, '2013', '11', '21', 0, 0, 20131121200739, 0, 0),
(175, 1, 3, 2, NULL, '66.214.191.82', 'Systems Link International', 'systems-link-international1', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1385066220, '2013', '11', '21', 0, 0, 20131121203833, 0, 0),
(176, 1, 3, 6, NULL, '24.246.110.94', 'Systems Link International', 'systems-link-international2', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1385066400, '2013', '11', '21', 0, 0, 20131121204046, 0, 0),
(177, 1, 3, 6, NULL, '24.246.110.94', 'Systems Link International', 'systems-link-international3', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1385066460, '2013', '11', '21', 0, 0, 20131121204149, 0, 0),
(178, 1, 3, 6, NULL, '24.246.110.94', 'Systems Link International', 'systems-link-international4', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1385066520, '2013', '11', '21', 0, 0, 20131121204307, 0, 0),
(179, 1, 3, 6, NULL, '24.246.110.94', 'Systems Link International', 'systems-link-international5', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1385066640, '2013', '11', '21', 0, 0, 20131121204447, 0, 0),
(180, 1, 3, 6, NULL, '24.246.110.94', 'CRIStin Norway', 'cristin-norway', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1385067300, '2013', '11', '21', 0, 0, 20131121205626, 0, 0),
(181, 1, 3, 6, NULL, '24.246.110.94', 'AMICAL Consortium', 'amical-consortium1', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1385139660, '2013', '11', '22', 0, 0, 20131122171253, 0, 0),
(182, 1, 3, 6, NULL, '24.246.110.94', 'AMICAL Consortium', 'amical-consortium2', 'open', 'y', 0, 0, 0, 0, 'y', 'n', 1385140380, '2013', '11', '22', 0, 0, 20131122171339, 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `exp_comments`
--

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

--
-- Dumping data for table `exp_comments`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_comment_subscriptions`
--

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

--
-- Dumping data for table `exp_comment_subscriptions`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_content_types`
--

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

--
-- Dumping data for table `exp_content_types`
--

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

-- --------------------------------------------------------

--
-- Table structure for table `exp_cp_log`
--

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

--
-- Dumping data for table `exp_cp_log`
--

INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES
(1, 1, 1, 'mithra62', '127.0.0.1', 1367011836, 'Logged in'),
(2, 1, 1, 'mithra62', '127.0.0.1', 1367014115, 'Member profile created:&nbsp;&nbsp;MineralAdmin'),
(3, 1, 1, 'mithra62', '127.0.0.1', 1367015063, 'log_settings_updated'),
(4, 1, 1, 'mithra62', '127.0.0.1', 1367015079, 'log_settings_updated'),
(5, 1, 1, 'mithra62', '127.0.0.1', 1377865870, 'Logged in'),
(6, 1, 1, 'mithra62', '127.0.0.1', 1377866078, 'Database backup taken.'),
(7, 1, 1, 'mithra62', '127.0.0.1', 1377866095, 'Backup downloaded.'),
(8, 1, 1, 'mithra62', '127.0.0.1', 1383872508, 'Logged in'),
(9, 1, 1, 'mithra62', '127.0.0.1', 1383872827, 'Logged in'),
(10, 1, 1, 'mithra62', '127.0.0.1', 1383876580, 'Logged out'),
(11, 1, 1, 'mithra62', '127.0.0.1', 1383926683, 'Logged in'),
(12, 1, 1, 'mithra62', '24.165.84.30', 1383936653, 'Logged in'),
(13, 1, 1, 'mithra62', '24.165.84.30', 1383936948, 'Email was changed to:&nbsp;&nbsp;cknowles@mineralstudios.com'),
(14, 1, 2, 'MineralAdmin', '66.214.191.82', 1383939667, 'Logged in'),
(15, 1, 1, 'mithra62', '24.165.84.30', 1383940499, 'Logged out'),
(16, 1, 2, 'MineralAdmin', '66.214.191.82', 1383940575, 'Channel Created:&nbsp;&nbsp;About'),
(17, 1, 2, 'MineralAdmin', '66.214.191.82', 1383940587, 'Field Group Created:&nbsp;About'),
(18, 1, 2, 'MineralAdmin', '66.214.191.82', 1383943180, 'Logged out'),
(19, 1, 2, 'MineralAdmin', '66.214.191.82', 1383943965, 'Logged in'),
(20, 1, 2, 'MineralAdmin', '66.214.191.82', 1383945804, 'Channel Created:&nbsp;&nbsp;Board'),
(21, 1, 2, 'MineralAdmin', '66.214.191.82', 1383945816, 'Field Group Created:&nbsp;Board'),
(22, 1, 2, 'MineralAdmin', '66.214.191.82', 1383947433, 'Category Group Created:&nbsp;&nbsp;Board - Editor and Chief'),
(23, 1, 2, 'MineralAdmin', '66.214.191.82', 1383949817, 'Channel Created:&nbsp;&nbsp;Contact'),
(24, 1, 2, 'MineralAdmin', '66.214.191.82', 1383949832, 'Field Group Created:&nbsp;Contact'),
(25, 1, 2, 'MineralAdmin', '66.214.191.82', 1383949981, 'Category Group Created:&nbsp;&nbsp;Contact'),
(26, 1, 2, 'MineralAdmin', '66.214.191.82', 1383950613, 'Member profile created:&nbsp;&nbsp;jshields'),
(27, 1, 3, 'jshields', '66.214.191.82', 1383950811, 'Logged in'),
(28, 1, 2, 'MineralAdmin', '66.214.191.82', 1383954877, 'Channel Created:&nbsp;&nbsp;Authors'),
(29, 1, 2, 'MineralAdmin', '66.214.191.82', 1383962984, 'Logged out'),
(30, 1, 2, 'MineralAdmin', '66.214.191.82', 1383962984, 'Logged out'),
(31, 1, 2, 'MineralAdmin', '66.214.191.82', 1384293881, 'Logged in'),
(32, 1, 2, 'MineralAdmin', '66.214.191.82', 1384303131, 'Logged out'),
(33, 1, 2, 'MineralAdmin', '66.214.191.82', 1384305090, 'Logged in'),
(34, 1, 2, 'MineralAdmin', '66.214.191.82', 1384307466, 'Logged out'),
(35, 1, 2, 'MineralAdmin', '66.214.191.82', 1384308492, 'Logged in'),
(36, 1, 2, 'MineralAdmin', '66.214.191.82', 1384308514, 'Channel Created:&nbsp;&nbsp;Libraries'),
(37, 1, 2, 'MineralAdmin', '66.214.191.82', 1384311589, 'Logged out'),
(38, 1, 2, 'MineralAdmin', '71.119.155.204', 1384319162, 'Logged in'),
(39, 1, 2, 'MineralAdmin', '71.119.155.204', 1384322168, 'Channel Created:&nbsp;&nbsp;Why ACM Books'),
(40, 1, 2, 'MineralAdmin', '71.119.155.204', 1384322187, 'Channel Deleted:&nbsp;&nbsp;Why ACM Books'),
(41, 1, 2, 'MineralAdmin', '71.119.155.204', 1384324112, 'Logged out'),
(42, 1, 2, 'MineralAdmin', '71.119.155.204', 1384324457, 'Logged in'),
(43, 1, 2, 'MineralAdmin', '71.119.155.204', 1384324997, 'Channel Created:&nbsp;&nbsp;Libraries'),
(44, 1, 2, 'MineralAdmin', '71.119.155.204', 1384332130, 'Logged out'),
(45, 1, 1, 'mithra62', '24.165.84.30', 1384370223, 'Logged in'),
(46, 1, 1, 'mithra62', '24.165.84.30', 1384370414, 'log_settings_updated'),
(47, 1, 1, 'mithra62', '24.165.84.30', 1384370428, 'log_settings_updated'),
(48, 1, 2, 'MineralAdmin', '66.214.191.82', 1384370744, 'Logged in'),
(49, 1, 1, 'mithra62', '24.165.84.30', 1384374838, 'Logged in'),
(50, 1, 2, 'MineralAdmin', '66.214.191.82', 1384453085, 'Logged in'),
(51, 1, 2, 'MineralAdmin', '66.214.191.82', 1384453812, 'Member profile created:&nbsp;&nbsp;sdelman'),
(52, 1, 2, 'MineralAdmin', '66.214.191.82', 1384549556, 'Logged in'),
(53, 1, 2, 'MineralAdmin', '66.214.191.82', 1384550801, 'Logged out'),
(54, 1, 2, 'MineralAdmin', '66.214.191.82', 1384796879, 'Logged in'),
(55, 1, 2, 'MineralAdmin', '66.214.191.82', 1384796967, 'Member profile created:&nbsp;&nbsp;sdelman'),
(56, 1, 2, 'MineralAdmin', '66.214.191.82', 1384799475, 'Logged out'),
(57, 1, 2, 'MineralAdmin', '66.214.191.82', 1384800910, 'Logged in'),
(58, 1, 5, 'sdelman', '24.246.110.94', 1384801178, 'Logged in'),
(59, 1, 5, 'sdelman', '24.246.110.94', 1384803135, 'Logged in'),
(60, 1, 2, 'MineralAdmin', '66.214.191.82', 1384804362, 'Logged out'),
(61, 1, 5, 'sdelman', '24.246.110.94', 1384807884, 'Logged in'),
(62, 1, 2, 'MineralAdmin', '66.214.191.82', 1384809003, 'Logged in'),
(63, 1, 2, 'MineralAdmin', '66.214.191.82', 1384811606, 'Logged out'),
(64, 1, 5, 'sdelman', '24.246.110.94', 1384872428, 'Logged in'),
(65, 1, 5, 'sdelman', '24.246.110.94', 1384872653, 'Logged in'),
(66, 1, 5, 'sdelman', '24.246.110.94', 1384873452, 'Logged in'),
(67, 1, 2, 'MineralAdmin', '66.214.191.82', 1384884574, 'Logged in'),
(68, 1, 2, 'MineralAdmin', '66.214.191.82', 1384891029, 'Category Group Created:&nbsp;&nbsp;Authors'),
(69, 1, 2, 'MineralAdmin', '66.214.191.82', 1384896555, 'Logged out'),
(70, 1, 5, 'sdelman', '24.246.110.94', 1384897181, 'Logged out'),
(71, 1, 5, 'sdelman', '24.246.110.94', 1384947244, 'Logged in'),
(72, 1, 5, 'sdelman', '24.246.110.94', 1384948325, 'Logged in'),
(73, 1, 5, 'sdelman', '24.246.110.94', 1384959978, 'Logged in'),
(74, 1, 5, 'sdelman', '24.246.110.94', 1384963069, 'Logged out'),
(75, 1, 5, 'sdelman', '24.246.110.94', 1384965384, 'Logged in'),
(76, 1, 2, 'MineralAdmin', '66.214.191.82', 1384972586, 'Logged in'),
(77, 1, 5, 'sdelman', '24.246.110.94', 1384973128, 'Logged out'),
(78, 1, 5, 'sdelman', '24.246.110.94', 1384976103, 'Logged in'),
(79, 1, 2, 'MineralAdmin', '66.214.191.82', 1384976266, 'Logged out'),
(80, 1, 5, 'sdelman', '24.246.110.94', 1384979102, 'Logged out'),
(81, 1, 2, 'MineralAdmin', '66.214.191.82', 1384979753, 'Logged in'),
(82, 1, 2, 'MineralAdmin', '66.214.191.82', 1384979807, 'Member profile created:&nbsp;&nbsp;ewilliams'),
(83, 1, 6, 'ewilliams', '24.246.110.94', 1384979980, 'Logged in'),
(84, 1, 5, 'sdelman', '24.246.110.94', 1384982158, 'Logged in'),
(85, 1, 6, 'ewilliams', '24.246.110.94', 1384982963, 'Logged out'),
(86, 1, 2, 'MineralAdmin', '66.214.191.82', 1384983605, 'Logged out'),
(87, 1, 5, 'sdelman', '184.152.11.15', 1384995497, 'Logged in'),
(88, 1, 6, 'ewilliams', '24.246.110.94', 1385033672, 'Logged in'),
(89, 1, 6, 'ewilliams', '24.246.110.94', 1385036335, 'Logged out'),
(90, 1, 5, 'sdelman', '24.246.110.94', 1385045193, 'Logged in'),
(91, 1, 6, 'ewilliams', '24.246.110.94', 1385046650, 'Logged in'),
(92, 1, 6, 'ewilliams', '24.246.110.94', 1385052706, 'Logged in'),
(93, 1, 2, 'MineralAdmin', '66.214.191.82', 1385060490, 'Logged in'),
(94, 1, 6, 'ewilliams', '24.246.110.94', 1385068354, 'Logged out'),
(95, 1, 2, 'MineralAdmin', '66.214.191.82', 1385068721, 'Logged out'),
(96, 1, 6, 'ewilliams', '24.246.110.94', 1385136410, 'Logged in'),
(97, 1, 6, 'ewilliams', '24.246.110.94', 1385138117, 'Logged out'),
(98, 1, 6, 'ewilliams', '24.246.110.94', 1385138651, 'Logged in'),
(99, 1, 6, 'ewilliams', '24.246.110.94', 1385138980, 'Logged out'),
(100, 1, 6, 'ewilliams', '24.246.110.94', 1385139677, 'Logged in'),
(101, 1, 6, 'ewilliams', '24.246.110.94', 1385142757, 'Logged out'),
(102, 1, 6, 'ewilliams', '24.246.110.94', 1385143379, 'Logged in'),
(103, 1, 6, 'ewilliams', '24.246.110.94', 1385145890, 'Logged out');

-- --------------------------------------------------------

--
-- Table structure for table `exp_cp_search_index`
--

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

--
-- Dumping data for table `exp_cp_search_index`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_developer_log`
--

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

--
-- Dumping data for table `exp_developer_log`
--

INSERT INTO `exp_developer_log` (`log_id`, `timestamp`, `viewed`, `description`, `function`, `line`, `file`, `deprecated_since`, `use_instead`, `template_id`, `template_name`, `template_group`, `addon_module`, `addon_method`, `snippets`, `hash`) VALUES
(1, 1383872508, 'n', NULL, 'generate_json()', 375, 'C:\\ProjectFiles\\Mineral\\ee_bootstrap\\ee_system\\expressionengine\\third_party\\devotee\\acc.devotee.php', '2.6', 'the native JSON extension (json_encode())', 0, NULL, NULL, NULL, NULL, NULL, '57fb0dc1f11f67cf1cb9a0148c42947f'),
(2, 1383872508, 'n', NULL, 'generate_json()', 797, 'C:\\ProjectFiles\\Mineral\\ee_bootstrap\\ee_system\\codeigniter\\system\\libraries\\Javascript.php', '2.6', 'the native JSON extension (json_encode())', 0, NULL, NULL, NULL, NULL, NULL, '095588ae1b7ad4d2d61b884f92f1279f'),
(3, 1377866077, 'n', NULL, 'generate_json()', 729, 'C:\\ProjectFiles\\Mineral\\ee_bootstrap\\ee_system\\expressionengine\\third_party\\m62_backup\\libraries\\M62_backup_lib.php', '2.6', 'the native JSON extension (json_encode())', 0, NULL, NULL, NULL, NULL, NULL, '3197fc5488a7d96ee94f3fc3f2d47a34'),
(4, 1377866175, 'n', NULL, 'set_variable()', 60, 'C:\\ProjectFiles\\Mineral\\ee_bootstrap\\ee_system\\expressionengine\\third_party\\export_it\\mcp.export_it.php', '2.6', 'view-&gt;&lt;var&gt; = &lt;value&gt;;', 0, NULL, NULL, NULL, NULL, NULL, 'e958d910e516696892ecbbcffa2073d9'),
(5, 1377866175, 'n', NULL, 'set_variable()', 61, 'C:\\ProjectFiles\\Mineral\\ee_bootstrap\\ee_system\\expressionengine\\third_party\\export_it\\mcp.export_it.php', '2.6', 'view-&gt;&lt;var&gt; = &lt;value&gt;;', 0, NULL, NULL, NULL, NULL, NULL, '23b8438e733bc68efa7de4c89e1c2258'),
(6, 1377866175, 'n', NULL, 'set_variable()', 66, 'C:\\ProjectFiles\\Mineral\\ee_bootstrap\\ee_system\\expressionengine\\third_party\\export_it\\mcp.export_it.php', '2.6', 'view-&gt;&lt;var&gt; = &lt;value&gt;;', 0, NULL, NULL, NULL, NULL, NULL, 'a41f858ad65cfc3300fa190f51cb6efa'),
(7, 1377866175, 'n', NULL, 'set_variable()', 69, 'C:\\ProjectFiles\\Mineral\\ee_bootstrap\\ee_system\\expressionengine\\third_party\\export_it\\mcp.export_it.php', '2.6', 'view-&gt;&lt;var&gt; = &lt;value&gt;;', 0, NULL, NULL, NULL, NULL, NULL, '6d5f4cbf01712da7873d8aaeef5b2a0d'),
(8, 1377866175, 'n', NULL, 'set_variable()', 70, 'C:\\ProjectFiles\\Mineral\\ee_bootstrap\\ee_system\\expressionengine\\third_party\\export_it\\mcp.export_it.php', '2.6', 'view-&gt;&lt;var&gt; = &lt;value&gt;;', 0, NULL, NULL, NULL, NULL, NULL, '88fce14a2041e92037131087204bf520'),
(9, 1377866175, 'n', NULL, 'set_variable()', 113, 'C:\\ProjectFiles\\Mineral\\ee_bootstrap\\ee_system\\expressionengine\\third_party\\export_it\\mcp.export_it.php', '2.6', 'view-&gt;&lt;var&gt; = &lt;value&gt;;', 0, NULL, NULL, NULL, NULL, NULL, '77936df85caf6592113e8991b61eee6e'),
(10, 1377866180, 'n', NULL, 'set_variable()', 178, 'C:\\ProjectFiles\\Mineral\\ee_bootstrap\\ee_system\\expressionengine\\third_party\\export_it\\mcp.export_it.php', '2.6', 'view-&gt;&lt;var&gt; = &lt;value&gt;;', 0, NULL, NULL, NULL, NULL, NULL, 'fc19da9aaeac58c6a5e07a98c2f5072a'),
(11, 1377866184, 'n', NULL, 'set_variable()', 219, 'C:\\ProjectFiles\\Mineral\\ee_bootstrap\\ee_system\\expressionengine\\third_party\\export_it\\mcp.export_it.php', '2.6', 'view-&gt;&lt;var&gt; = &lt;value&gt;;', 0, NULL, NULL, NULL, NULL, NULL, '44743d370c69efaa418ae545e3b3e648'),
(12, 1377866184, 'n', NULL, 'set_variable()', 236, 'C:\\ProjectFiles\\Mineral\\ee_bootstrap\\ee_system\\expressionengine\\third_party\\export_it\\mcp.export_it.php', '2.6', 'view-&gt;&lt;var&gt; = &lt;value&gt;;', 0, NULL, NULL, NULL, NULL, NULL, '49b60cb74f8e1e6d50eb3e324843dfd8'),
(13, 1377866187, 'n', NULL, 'set_variable()', 298, 'C:\\ProjectFiles\\Mineral\\ee_bootstrap\\ee_system\\expressionengine\\third_party\\export_it\\mcp.export_it.php', '2.6', 'view-&gt;&lt;var&gt; = &lt;value&gt;;', 0, NULL, NULL, NULL, NULL, NULL, 'ce9e8e74253173b485a95f9203a3249b'),
(14, 1377866340, 'n', NULL, 'generate_json()', 451, 'C:\\ProjectFiles\\Mineral\\ee_bootstrap\\ee_system\\expressionengine\\third_party\\export_it\\libraries\\Json_ordering.php', '2.6', 'the native JSON extension (json_encode())', 0, NULL, NULL, NULL, NULL, NULL, '35f2f48c16e9d343fc2ae4204170e1cc'),
(15, 1377866340, 'n', NULL, 'generate_json()', 801, 'C:\\ProjectFiles\\Mineral\\ee_bootstrap\\ee_system\\codeigniter\\system\\libraries\\Javascript.php', '2.6', 'the native JSON extension (json_encode())', 0, NULL, NULL, NULL, NULL, NULL, 'b6393ec90b7e3187d4a47d8194969ec2'),
(16, 1377866345, 'n', NULL, 'generate_json()', 185, 'C:\\ProjectFiles\\Mineral\\ee_bootstrap\\ee_system\\expressionengine\\third_party\\export_it\\libraries\\Json_ordering.php', '2.6', 'the native JSON extension (json_encode())', 0, NULL, NULL, NULL, NULL, NULL, 'd6c58c5c0d0f6e069a1d882d88d908f9'),
(17, 1377866397, 'n', NULL, 'set_variable()', 254, 'C:\\ProjectFiles\\Mineral\\ee_bootstrap\\ee_system\\expressionengine\\third_party\\securitee\\mcp.securitee.php', '2.6', 'view-&gt;&lt;var&gt; = &lt;value&gt;;', 0, NULL, NULL, NULL, NULL, NULL, 'c34010de2515a00e66e91ae41c259ff4'),
(18, 1377866739, 'n', NULL, 'set_variable()', 161, 'C:\\ProjectFiles\\Mineral\\ee_bootstrap\\ee_system\\expressionengine\\third_party\\securitee\\mcp.securitee.php', '2.6', 'view-&gt;&lt;var&gt; = &lt;value&gt;;', 0, NULL, NULL, NULL, NULL, NULL, 'e422332ad28279714f89f88a5c1507f7'),
(19, 1384549557, 'n', NULL, 'generate_json()', 375, 'system/expressionengine/third_party/devotee/acc.devotee.php', '2.6', 'the native JSON extension (json_encode())', 0, NULL, NULL, NULL, NULL, NULL, 'f57a82d9d9510271a22ccfee8d6bbd74'),
(20, 1384549557, 'n', NULL, 'generate_json()', 797, '/var/www/interactions/books-acm.minla.net/ee_system/codeigniter/system/libraries/Javascript.php', '2.6', 'the native JSON extension (json_encode())', 0, NULL, NULL, NULL, NULL, NULL, 'ae92f500a71929e1b564e4d1f01fcc36'),
(21, 1384890056, 'n', NULL, 'EE_Fieldtype()', 36, 'system/expressionengine/third_party/vmg_chosen_member/ft.vmg_chosen_member.php', '2.6', 'EE_Fieldtype::__construct()', 0, NULL, NULL, NULL, NULL, NULL, 'b6b1bc4a2392a371b857f7dd02a4fca9'),
(22, 1384370389, 'n', NULL, 'set_variable()', 254, 'system/expressionengine/third_party/securitee/mcp.securitee.php', '2.6', 'view-&gt;&lt;var&gt; = &lt;value&gt;;', 0, NULL, NULL, NULL, NULL, NULL, '757b93a225e1fb0e1458d557bef5da65'),
(23, 1384873598, 'n', NULL, 'generate_json()', 185, 'system/expressionengine/third_party/export_it/libraries/Json_ordering.php', '2.6', 'the native JSON extension (json_encode())', 0, NULL, NULL, NULL, NULL, NULL, 'ead7a3e714790ef7ea4dff73f0cdd1a1'),
(24, 1384873598, 'n', NULL, 'generate_json()', 801, '/var/www/interactions/books-acm.minla.net/ee_system/codeigniter/system/libraries/Javascript.php', '2.6', 'the native JSON extension (json_encode())', 0, NULL, NULL, NULL, NULL, NULL, 'd347bdbdb9238f9517c0aa9a826b9316');

-- --------------------------------------------------------

--
-- Table structure for table `exp_devotee_hidden_addons`
--

DROP TABLE IF EXISTS `exp_devotee_hidden_addons`;
CREATE TABLE IF NOT EXISTS `exp_devotee_hidden_addons` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `member_id` int(10) unsigned NOT NULL,
  `package` varchar(100) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `member_id` (`member_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `exp_devotee_hidden_addons`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_editor_buttons`
--

DROP TABLE IF EXISTS `exp_editor_buttons`;
CREATE TABLE IF NOT EXISTS `exp_editor_buttons` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` smallint(5) unsigned DEFAULT '1',
  `config_id` int(10) unsigned DEFAULT '1',
  `lowvar_id` int(10) unsigned DEFAULT '1',
  `matrixcol_id` int(10) unsigned DEFAULT '1',
  `button_class` varchar(250) DEFAULT '',
  `button_settings` text,
  PRIMARY KEY (`id`),
  KEY `button_class` (`button_class`),
  KEY `config_id` (`config_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `exp_editor_buttons`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_editor_configs`
--

DROP TABLE IF EXISTS `exp_editor_configs`;
CREATE TABLE IF NOT EXISTS `exp_editor_configs` (
  `config_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` smallint(5) unsigned DEFAULT '1',
  `config_label` varchar(250) DEFAULT '',
  `config_settings` text,
  PRIMARY KEY (`config_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;

--
-- Dumping data for table `exp_editor_configs`
--

INSERT INTO `exp_editor_configs` (`config_id`, `site_id`, `config_label`, `config_settings`) VALUES
(1, 1, 'Minimum', 'YToyMDp7czo3OiJidXR0b25zIjthOjc6e2k6MDtzOjEwOiJmb3JtYXR0aW5nIjtpOjE7czoxOiJ8IjtpOjI7czo0OiJib2xkIjtpOjM7czo2OiJpdGFsaWMiO2k6NDtzOjE6InwiO2k6NTtzOjQ6ImxpbmsiO2k6NjtzOjE6InwiO31zOjE0OiJ1cGxvYWRfc2VydmljZSI7czo1OiJsb2NhbCI7czoyMDoiZmlsZV91cGxvYWRfbG9jYXRpb24iO3M6MToiMCI7czoyMToiaW1hZ2VfdXBsb2FkX2xvY2F0aW9uIjtzOjE6IjAiO3M6MjoiczMiO2E6NDp7czo0OiJmaWxlIjthOjE6e3M6NjoiYnVja2V0IjtzOjA6IiI7fXM6NToiaW1hZ2UiO2E6MTp7czo2OiJidWNrZXQiO3M6MDoiIjt9czoxNDoiYXdzX2FjY2Vzc19rZXkiO3M6MDoiIjtzOjE0OiJhd3Nfc2VjcmV0X2tleSI7czowOiIiO31zOjY6ImhlaWdodCI7czozOiIyMDAiO3M6OToiZGlyZWN0aW9uIjtzOjM6Imx0ciI7czo3OiJ0b29sYmFyIjtzOjM6InllcyI7czo2OiJzb3VyY2UiO3M6MzoieWVzIjtzOjU6ImZvY3VzIjtzOjI6Im5vIjtzOjEwOiJhdXRvcmVzaXplIjtzOjM6InllcyI7czo1OiJmaXhlZCI7czoyOiJubyI7czoxMjoiY29udmVydGxpbmtzIjtzOjM6InllcyI7czoxMToiY29udmVydGRpdnMiO3M6MzoieWVzIjtzOjc6Im92ZXJsYXkiO3M6MzoieWVzIjtzOjEzOiJvYnNlcnZlaW1hZ2VzIjtzOjM6InllcyI7czozOiJhaXIiO3M6Mjoibm8iO3M6Mzoid3ltIjtzOjI6Im5vIjtzOjE4OiJhbGxvd2VkdGFnc19vcHRpb24iO3M6NzoiZGVmYXVsdCI7czoxMToiYWxsb3dlZHRhZ3MiO2E6MDp7fX0='),
(2, 1, 'Standard', 'YToyMDp7czo3OiJidXR0b25zIjthOjEzOntpOjA7czo0OiJodG1sIjtpOjE7czoxOiJ8IjtpOjI7czoxMDoiZm9ybWF0dGluZyI7aTozO3M6MToifCI7aTo0O3M6NDoiYm9sZCI7aTo1O3M6NjoiaXRhbGljIjtpOjY7czo3OiJkZWxldGVkIjtpOjc7czoxOiJ8IjtpOjg7czo0OiJsaW5rIjtpOjk7czo0OiJmaWxlIjtpOjEwO3M6NToiaW1hZ2UiO2k6MTE7czo1OiJ2aWRlbyI7aToxMjtzOjE6InwiO31zOjE0OiJ1cGxvYWRfc2VydmljZSI7czo1OiJsb2NhbCI7czoyMDoiZmlsZV91cGxvYWRfbG9jYXRpb24iO3M6MToiMCI7czoyMToiaW1hZ2VfdXBsb2FkX2xvY2F0aW9uIjtzOjE6IjAiO3M6MjoiczMiO2E6NDp7czo0OiJmaWxlIjthOjE6e3M6NjoiYnVja2V0IjtzOjA6IiI7fXM6NToiaW1hZ2UiO2E6MTp7czo2OiJidWNrZXQiO3M6MDoiIjt9czoxNDoiYXdzX2FjY2Vzc19rZXkiO3M6MDoiIjtzOjE0OiJhd3Nfc2VjcmV0X2tleSI7czowOiIiO31zOjY6ImhlaWdodCI7czozOiIyMDAiO3M6OToiZGlyZWN0aW9uIjtzOjM6Imx0ciI7czo3OiJ0b29sYmFyIjtzOjM6InllcyI7czo2OiJzb3VyY2UiO3M6MzoieWVzIjtzOjU6ImZvY3VzIjtzOjI6Im5vIjtzOjEwOiJhdXRvcmVzaXplIjtzOjM6InllcyI7czo1OiJmaXhlZCI7czoyOiJubyI7czoxMjoiY29udmVydGxpbmtzIjtzOjM6InllcyI7czoxMToiY29udmVydGRpdnMiO3M6MzoieWVzIjtzOjc6Im92ZXJsYXkiO3M6MzoieWVzIjtzOjEzOiJvYnNlcnZlaW1hZ2VzIjtzOjM6InllcyI7czozOiJhaXIiO3M6Mjoibm8iO3M6Mzoid3ltIjtzOjI6Im5vIjtzOjE4OiJhbGxvd2VkdGFnc19vcHRpb24iO3M6NzoiZGVmYXVsdCI7czoxMToiYWxsb3dlZHRhZ3MiO2E6MDp7fX0='),
(3, 1, 'Full', 'YToyNDp7czo3OiJidXR0b25zIjthOjMwOntpOjA7czo0OiJodG1sIjtpOjE7czoxOiJ8IjtpOjI7czoxMDoiZm9ybWF0dGluZyI7aTozO3M6MToifCI7aTo0O3M6NDoiYm9sZCI7aTo1O3M6NjoiaXRhbGljIjtpOjY7czo3OiJkZWxldGVkIjtpOjc7czoxOiJ8IjtpOjg7czoxMzoidW5vcmRlcmVkbGlzdCI7aTo5O3M6MTE6Im9yZGVyZWRsaXN0IjtpOjEwO3M6Nzoib3V0ZGVudCI7aToxMTtzOjY6ImluZGVudCI7aToxMjtzOjE6InwiO2k6MTM7czo0OiJsaW5rIjtpOjE0O3M6NToiaW1hZ2UiO2k6MTU7czo1OiJ2aWRlbyI7aToxNjtzOjQ6ImZpbGUiO2k6MTc7czo1OiJ0YWJsZSI7aToxODtzOjE6InwiO2k6MTk7czo5OiJmb250Y29sb3IiO2k6MjA7czo5OiJiYWNrY29sb3IiO2k6MjE7czoxOiJ8IjtpOjIyO3M6OToiYWxpZ25sZWZ0IjtpOjIzO3M6MTE6ImFsaWduY2VudGVyIjtpOjI0O3M6MTA6ImFsaWducmlnaHQiO2k6MjU7czo3OiJqdXN0aWZ5IjtpOjI2O3M6MToifCI7aToyNztzOjE0OiJob3Jpem9udGFscnVsZSI7aToyODtzOjExOiJwYXN0ZV9wbGFpbiI7aToyOTtzOjE6InwiO31zOjE0OiJ1cGxvYWRfc2VydmljZSI7czo1OiJsb2NhbCI7czoyMDoiZmlsZV91cGxvYWRfbG9jYXRpb24iO3M6MToiMCI7czoyMToiaW1hZ2VfdXBsb2FkX2xvY2F0aW9uIjtzOjE6IjAiO3M6MTQ6ImltYWdlX2Jyb3dzaW5nIjtzOjM6InllcyI7czoyOiJzMyI7YTo0OntzOjQ6ImZpbGUiO2E6MTp7czo2OiJidWNrZXQiO3M6MDoiIjt9czo1OiJpbWFnZSI7YToxOntzOjY6ImJ1Y2tldCI7czowOiIiO31zOjE0OiJhd3NfYWNjZXNzX2tleSI7czowOiIiO3M6MTQ6ImF3c19zZWNyZXRfa2V5IjtzOjA6IiI7fXM6NjoiaGVpZ2h0IjtzOjM6IjIwMCI7czo5OiJkaXJlY3Rpb24iO3M6MzoibHRyIjtzOjc6InRvb2xiYXIiO3M6MzoieWVzIjtzOjY6InNvdXJjZSI7czozOiJ5ZXMiO3M6NToiZm9jdXMiO3M6Mjoibm8iO3M6MTA6ImF1dG9yZXNpemUiO3M6MzoieWVzIjtzOjU6ImZpeGVkIjtzOjI6Im5vIjtzOjEyOiJjb252ZXJ0bGlua3MiO3M6MzoieWVzIjtzOjExOiJjb252ZXJ0ZGl2cyI7czozOiJ5ZXMiO3M6Nzoib3ZlcmxheSI7czozOiJ5ZXMiO3M6MTM6Im9ic2VydmVpbWFnZXMiO3M6MzoieWVzIjtzOjM6ImFpciI7czoyOiJubyI7czozOiJ3eW0iO3M6Mjoibm8iO3M6MTg6ImFsbG93ZWR0YWdzX29wdGlvbiI7czo3OiJkZWZhdWx0IjtzOjExOiJhbGxvd2VkdGFncyI7YTowOnt9czoxNDoiZm9ybWF0dGluZ3RhZ3MiO2E6Nzp7aTowO3M6MToicCI7aToxO3M6MTA6ImJsb2NrcXVvdGUiO2k6MjtzOjM6InByZSI7aTozO3M6MjoiaDEiO2k6NDtzOjI6ImgyIjtpOjU7czoyOiJoMyI7aTo2O3M6MjoiaDQiO31zOjg6Imxhbmd1YWdlIjtzOjI6ImVuIjtzOjg6ImNzc19maWxlIjtzOjA6IiI7fQ=='),
(4, 1, 'Full (Visual Mode)', 'YToyMzp7czo3OiJidXR0b25zIjthOjMwOntpOjA7czo0OiJodG1sIjtpOjE7czoxOiJ8IjtpOjI7czoxMDoiZm9ybWF0dGluZyI7aTozO3M6MToifCI7aTo0O3M6NDoiYm9sZCI7aTo1O3M6NjoiaXRhbGljIjtpOjY7czo3OiJkZWxldGVkIjtpOjc7czoxOiJ8IjtpOjg7czoxMzoidW5vcmRlcmVkbGlzdCI7aTo5O3M6MTE6Im9yZGVyZWRsaXN0IjtpOjEwO3M6Nzoib3V0ZGVudCI7aToxMTtzOjY6ImluZGVudCI7aToxMjtzOjE6InwiO2k6MTM7czo0OiJsaW5rIjtpOjE0O3M6NToiaW1hZ2UiO2k6MTU7czo1OiJ2aWRlbyI7aToxNjtzOjQ6ImZpbGUiO2k6MTc7czo1OiJ0YWJsZSI7aToxODtzOjE6InwiO2k6MTk7czo5OiJmb250Y29sb3IiO2k6MjA7czo5OiJiYWNrY29sb3IiO2k6MjE7czoxOiJ8IjtpOjIyO3M6OToiYWxpZ25sZWZ0IjtpOjIzO3M6MTE6ImFsaWduY2VudGVyIjtpOjI0O3M6MTA6ImFsaWducmlnaHQiO2k6MjU7czo3OiJqdXN0aWZ5IjtpOjI2O3M6MToifCI7aToyNztzOjE0OiJob3Jpem9udGFscnVsZSI7aToyODtzOjExOiJwYXN0ZV9wbGFpbiI7aToyOTtzOjE6InwiO31zOjE0OiJ1cGxvYWRfc2VydmljZSI7czo1OiJsb2NhbCI7czoyMDoiZmlsZV91cGxvYWRfbG9jYXRpb24iO3M6MToiMCI7czoyMToiaW1hZ2VfdXBsb2FkX2xvY2F0aW9uIjtzOjE6IjAiO3M6MTQ6ImltYWdlX2Jyb3dzaW5nIjtzOjM6InllcyI7czoyOiJzMyI7YTo0OntzOjQ6ImZpbGUiO2E6MTp7czo2OiJidWNrZXQiO3M6MDoiIjt9czo1OiJpbWFnZSI7YToxOntzOjY6ImJ1Y2tldCI7czowOiIiO31zOjE0OiJhd3NfYWNjZXNzX2tleSI7czowOiIiO3M6MTQ6ImF3c19zZWNyZXRfa2V5IjtzOjA6IiI7fXM6NjoiaGVpZ2h0IjtzOjM6IjIwMCI7czo5OiJkaXJlY3Rpb24iO3M6MzoibHRyIjtzOjc6InRvb2xiYXIiO3M6MzoieWVzIjtzOjY6InNvdXJjZSI7czozOiJ5ZXMiO3M6NToiZm9jdXMiO3M6Mjoibm8iO3M6MTA6ImF1dG9yZXNpemUiO3M6MzoieWVzIjtzOjU6ImZpeGVkIjtzOjI6Im5vIjtzOjEyOiJjb252ZXJ0bGlua3MiO3M6MzoieWVzIjtzOjExOiJjb252ZXJ0ZGl2cyI7czozOiJ5ZXMiO3M6Nzoib3ZlcmxheSI7czozOiJ5ZXMiO3M6MTM6Im9ic2VydmVpbWFnZXMiO3M6MzoieWVzIjtzOjM6ImFpciI7czoyOiJubyI7czozOiJ3eW0iO3M6MzoieWVzIjtzOjE4OiJhbGxvd2VkdGFnc19vcHRpb24iO3M6NzoiZGVmYXVsdCI7czoxMToiYWxsb3dlZHRhZ3MiO2E6MDp7fXM6MTQ6ImZvcm1hdHRpbmd0YWdzIjthOjc6e2k6MDtzOjE6InAiO2k6MTtzOjEwOiJibG9ja3F1b3RlIjtpOjI7czozOiJwcmUiO2k6MztzOjI6ImgxIjtpOjQ7czoyOiJoMiI7aTo1O3M6MjoiaDMiO2k6NjtzOjI6Img0Ijt9czo4OiJsYW5ndWFnZSI7czoyOiJlbiI7fQ=='),
(5, 1, 'Standard (Visual Mode)', 'YToyMDp7czo3OiJidXR0b25zIjthOjEzOntpOjA7czo0OiJodG1sIjtpOjE7czoxOiJ8IjtpOjI7czoxMDoiZm9ybWF0dGluZyI7aTozO3M6MToifCI7aTo0O3M6NDoiYm9sZCI7aTo1O3M6NjoiaXRhbGljIjtpOjY7czo3OiJkZWxldGVkIjtpOjc7czoxOiJ8IjtpOjg7czo0OiJsaW5rIjtpOjk7czo0OiJmaWxlIjtpOjEwO3M6NToiaW1hZ2UiO2k6MTE7czo1OiJ2aWRlbyI7aToxMjtzOjE6InwiO31zOjE0OiJ1cGxvYWRfc2VydmljZSI7czo1OiJsb2NhbCI7czoyMDoiZmlsZV91cGxvYWRfbG9jYXRpb24iO3M6MToiMCI7czoyMToiaW1hZ2VfdXBsb2FkX2xvY2F0aW9uIjtzOjE6IjAiO3M6MjoiczMiO2E6NDp7czo0OiJmaWxlIjthOjE6e3M6NjoiYnVja2V0IjtzOjA6IiI7fXM6NToiaW1hZ2UiO2E6MTp7czo2OiJidWNrZXQiO3M6MDoiIjt9czoxNDoiYXdzX2FjY2Vzc19rZXkiO3M6MDoiIjtzOjE0OiJhd3Nfc2VjcmV0X2tleSI7czowOiIiO31zOjY6ImhlaWdodCI7czozOiIyMDAiO3M6OToiZGlyZWN0aW9uIjtzOjM6Imx0ciI7czo3OiJ0b29sYmFyIjtzOjM6InllcyI7czo2OiJzb3VyY2UiO3M6MzoieWVzIjtzOjU6ImZvY3VzIjtzOjI6Im5vIjtzOjEwOiJhdXRvcmVzaXplIjtzOjM6InllcyI7czo1OiJmaXhlZCI7czoyOiJubyI7czoxMjoiY29udmVydGxpbmtzIjtzOjM6InllcyI7czoxMToiY29udmVydGRpdnMiO3M6MzoieWVzIjtzOjc6Im92ZXJsYXkiO3M6MzoieWVzIjtzOjEzOiJvYnNlcnZlaW1hZ2VzIjtzOjM6InllcyI7czozOiJhaXIiO3M6Mjoibm8iO3M6Mzoid3ltIjtzOjM6InllcyI7czoxODoiYWxsb3dlZHRhZ3Nfb3B0aW9uIjtzOjc6ImRlZmF1bHQiO3M6MTE6ImFsbG93ZWR0YWdzIjthOjA6e319');

-- --------------------------------------------------------

--
-- Table structure for table `exp_eedt_memory_history`
--

DROP TABLE IF EXISTS `exp_eedt_memory_history`;
CREATE TABLE IF NOT EXISTS `exp_eedt_memory_history` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `session_id` varchar(40) DEFAULT NULL,
  `url` varchar(255) DEFAULT NULL,
  `peak_memory` float DEFAULT NULL,
  `sql_count` int(11) DEFAULT NULL,
  `execution_time` float DEFAULT NULL,
  `timestamp` int(11) DEFAULT NULL,
  `cp` enum('y','n') NOT NULL DEFAULT 'n',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=69 ;

--
-- Dumping data for table `exp_eedt_memory_history`
--

INSERT INTO `exp_eedt_memory_history` (`id`, `session_id`, `url`, `peak_memory`, `sql_count`, `execution_time`, `timestamp`, `cp`) VALUES
(63, 'a665267181dc7bd785fd1913cc9903aea765cc74', '/ee_manage.php?S=22a4008d43d67a015a7efd37e9822c89&D=cp&C=homepageS=22a4008d43d67a015a7efd37e9822c89&D=cp&C=homepage', 9.37, 33, 2.3381, 1383926683, 'y'),
(68, 'a665267181dc7bd785fd1913cc9903aea765cc74', '/ee_manage.php?S=22a4008d43d67a015a7efd37e9822c89&D=cp&C=addons_modulesS=22a4008d43d67a015a7efd37e9822c89&D=cp&C=addons_modules', 7.39, 28, 0.333, 1383927369, 'y'),
(67, 'a665267181dc7bd785fd1913cc9903aea765cc74', '/ee_manage.php?S=22a4008d43d67a015a7efd37e9822c89&D=cp&C=addons_modulesS=22a4008d43d67a015a7efd37e9822c89&D=cp&C=addons_modules', 7.4, 28, 0.32, 1383927346, 'y'),
(66, 'a665267181dc7bd785fd1913cc9903aea765cc74', '/ee_manage.php?S=22a4008d43d67a015a7efd37e9822c89&D=cp&C=addons_modulesS=22a4008d43d67a015a7efd37e9822c89&D=cp&C=addons_modules', 7.4, 30, 0.327, 1383927344, 'y'),
(65, 'a665267181dc7bd785fd1913cc9903aea765cc74', '/ee_manage.php?S=22a4008d43d67a015a7efd37e9822c89&D=cp&C=addons_modules&M=show_module_cp&module=updaterS=22a4008d43d67a015a7efd37e9822c89&D=cp&C=addons_modules&M=show_module_cp&module=updater', 6.37, 28, 0.236, 1383926706, 'y'),
(64, 'a665267181dc7bd785fd1913cc9903aea765cc74', '/ee_manage.php?S=22a4008d43d67a015a7efd37e9822c89&D=cp&C=addons_modulesS=22a4008d43d67a015a7efd37e9822c89&D=cp&C=addons_modules', 7.39, 28, 0.554, 1383926701, 'y');

-- --------------------------------------------------------

--
-- Table structure for table `exp_ee_debug_toolbar_settings`
--

DROP TABLE IF EXISTS `exp_ee_debug_toolbar_settings`;
CREATE TABLE IF NOT EXISTS `exp_ee_debug_toolbar_settings` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `setting_key` varchar(30) NOT NULL DEFAULT '',
  `setting_value` text NOT NULL,
  `serialized` int(1) DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=9 ;

--
-- Dumping data for table `exp_ee_debug_toolbar_settings`
--

INSERT INTO `exp_ee_debug_toolbar_settings` (`id`, `setting_key`, `setting_value`, `serialized`) VALUES
(1, 'theme', 'default', 0),
(2, 'toolbar_position', '0', 0),
(3, 'memory_history_position', 'bottom right', 0),
(4, 'max_exec_time', '0.5', 0),
(5, 'max_memory', '10', 0),
(6, 'max_queries', '100', 0),
(7, 'max_sql_time', '0.1', 0),
(8, 'max_query_time', '0.01', 0);

-- --------------------------------------------------------

--
-- Table structure for table `exp_email_cache`
--

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

--
-- Dumping data for table `exp_email_cache`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_email_cache_mg`
--

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

--
-- Dumping data for table `exp_email_cache_mg`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_email_cache_ml`
--

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

--
-- Dumping data for table `exp_email_cache_ml`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_email_console_cache`
--

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

--
-- Dumping data for table `exp_email_console_cache`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_email_tracker`
--

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

--
-- Dumping data for table `exp_email_tracker`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_entry_versioning`
--

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

--
-- Dumping data for table `exp_entry_versioning`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_export_it_settings`
--

DROP TABLE IF EXISTS `exp_export_it_settings`;
CREATE TABLE IF NOT EXISTS `exp_export_it_settings` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `setting_key` varchar(30) NOT NULL DEFAULT '',
  `setting_value` text NOT NULL,
  `serialized` int(1) DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `exp_export_it_settings`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_extensions`
--

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

--
-- Dumping data for table `exp_extensions`
--

INSERT INTO `exp_extensions` (`extension_id`, `class`, `method`, `hook`, `settings`, `priority`, `version`, `enabled`) VALUES
(40, 'Securitee_ext', 'remove_hash_data', 'cp_members_member_delete_end', '', 19, '1.3.6', 'y'),
(2, 'Rte_ext', 'myaccount_nav_setup', 'myaccount_nav_setup', '', 10, '1.0', 'y'),
(3, 'Rte_ext', 'cp_menu_array', 'cp_menu_array', '', 10, '1.0', 'y'),
(39, 'Securitee_ext', 'cp_quick_deny', 'cp_member_login', '', 3, '1.3.6', 'y'),
(5, 'M62_backup_ext', 'get_backups', 'export_it_api_start', '', 1, '1.9', 'y'),
(6, 'M62_backup_ext', 'cp_menu_array', 'cp_menu_array', 'a:0:{}', 500, '1.9', 'y'),
(7, 'Channel_files_ext', 'wygwam_config', 'wygwam_config', 'a:0:{}', 100, '5.2.7', 'y'),
(45, 'Channel_images_ext', 'wygwam_config', 'wygwam_config', 'a:0:{}', 100, '5.4.9', 'y'),
(9, 'Channel_ratings_ext', 'delete_entries_loop', 'delete_entries_loop', 'a:0:{}', 4, '4.0.3', 'y'),
(10, 'Channel_ratings_ext', 'comment_form_hidden_fields', 'comment_form_hidden_fields', 'a:0:{}', 4, '4.0.3', 'y'),
(11, 'Channel_ratings_ext', 'comment_form_end', 'comment_form_end', 'a:0:{}', 4, '4.0.3', 'y'),
(12, 'Channel_ratings_ext', 'insert_comment_start', 'insert_comment_start', 'a:0:{}', 4, '4.0.3', 'y'),
(13, 'Channel_ratings_ext', 'insert_comment_end', 'insert_comment_end', 'a:0:{}', 4, '4.0.3', 'y'),
(14, 'Channel_ratings_ext', 'update_comment_additional', 'update_comment_additional', 'a:0:{}', 4, '4.0.3', 'y'),
(15, 'Channel_ratings_ext', 'delete_comment_additional', 'delete_comment_additional', 'a:0:{}', 4, '4.0.3', 'y'),
(16, 'Channel_ratings_ext', 'cp_js_end', 'cp_js_end', 'a:0:{}', 4, '4.0.3', 'y'),
(17, 'Editor_ext', 'cp_js_end', 'cp_js_end', 'a:23:{s:15:"editor_settings";s:10:"predefined";s:13:"convert_field";s:4:"none";s:14:"upload_service";s:5:"local";s:20:"file_upload_location";s:1:"0";s:21:"image_upload_location";s:1:"0";s:2:"s3";a:4:{s:4:"file";a:1:{s:6:"bucket";s:0:"";}s:5:"image";a:1:{s:6:"bucket";s:0:"";}s:14:"aws_access_key";s:0:"";s:14:"aws_secret_key";s:0:"";}s:6:"height";s:3:"200";s:9:"direction";s:3:"ltr";s:7:"toolbar";s:3:"yes";s:6:"source";s:3:"yes";s:5:"focus";s:2:"no";s:10:"autoresize";s:3:"yes";s:5:"fixed";s:2:"no";s:12:"convertlinks";s:3:"yes";s:11:"convertdivs";s:3:"yes";s:7:"overlay";s:3:"yes";s:13:"observeimages";s:3:"yes";s:3:"air";s:2:"no";s:3:"wym";s:2:"no";s:18:"allowedtags_option";s:7:"default";s:11:"allowedtags";s:0:"";s:11:"editor_conf";s:1:"1";s:6:"site:1";a:22:{s:15:"editor_settings";s:10:"predefined";s:13:"convert_field";s:4:"none";s:14:"upload_service";s:5:"local";s:20:"file_upload_location";s:1:"0";s:21:"image_upload_location";s:1:"0";s:2:"s3";a:4:{s:4:"file";a:1:{s:6:"bucket";s:0:"";}s:5:"image";a:1:{s:6:"bucket";s:0:"";}s:14:"aws_access_key";s:0:"";s:14:"aws_secret_key";s:0:"";}s:6:"height";s:3:"200";s:9:"direction";s:3:"ltr";s:7:"toolbar";s:3:"yes";s:6:"source";s:3:"yes";s:5:"focus";s:2:"no";s:10:"autoresize";s:3:"yes";s:5:"fixed";s:2:"no";s:12:"convertlinks";s:3:"yes";s:11:"convertdivs";s:3:"yes";s:7:"overlay";s:3:"yes";s:13:"observeimages";s:3:"yes";s:3:"air";s:2:"no";s:3:"wym";s:2:"no";s:18:"allowedtags_option";s:7:"default";s:11:"allowedtags";s:0:"";s:11:"editor_conf";s:1:"2";}}', 100, '3.1.10', 'y'),
(18, 'Editor_ext', 'cp_css_end', 'cp_css_end', 'a:23:{s:15:"editor_settings";s:10:"predefined";s:13:"convert_field";s:4:"none";s:14:"upload_service";s:5:"local";s:20:"file_upload_location";s:1:"0";s:21:"image_upload_location";s:1:"0";s:2:"s3";a:4:{s:4:"file";a:1:{s:6:"bucket";s:0:"";}s:5:"image";a:1:{s:6:"bucket";s:0:"";}s:14:"aws_access_key";s:0:"";s:14:"aws_secret_key";s:0:"";}s:6:"height";s:3:"200";s:9:"direction";s:3:"ltr";s:7:"toolbar";s:3:"yes";s:6:"source";s:3:"yes";s:5:"focus";s:2:"no";s:10:"autoresize";s:3:"yes";s:5:"fixed";s:2:"no";s:12:"convertlinks";s:3:"yes";s:11:"convertdivs";s:3:"yes";s:7:"overlay";s:3:"yes";s:13:"observeimages";s:3:"yes";s:3:"air";s:2:"no";s:3:"wym";s:2:"no";s:18:"allowedtags_option";s:7:"default";s:11:"allowedtags";s:0:"";s:11:"editor_conf";s:1:"1";s:6:"site:1";a:22:{s:15:"editor_settings";s:10:"predefined";s:13:"convert_field";s:4:"none";s:14:"upload_service";s:5:"local";s:20:"file_upload_location";s:1:"0";s:21:"image_upload_location";s:1:"0";s:2:"s3";a:4:{s:4:"file";a:1:{s:6:"bucket";s:0:"";}s:5:"image";a:1:{s:6:"bucket";s:0:"";}s:14:"aws_access_key";s:0:"";s:14:"aws_secret_key";s:0:"";}s:6:"height";s:3:"200";s:9:"direction";s:3:"ltr";s:7:"toolbar";s:3:"yes";s:6:"source";s:3:"yes";s:5:"focus";s:2:"no";s:10:"autoresize";s:3:"yes";s:5:"fixed";s:2:"no";s:12:"convertlinks";s:3:"yes";s:11:"convertdivs";s:3:"yes";s:7:"overlay";s:3:"yes";s:13:"observeimages";s:3:"yes";s:3:"air";s:2:"no";s:3:"wym";s:2:"no";s:18:"allowedtags_option";s:7:"default";s:11:"allowedtags";s:0:"";s:11:"editor_conf";s:1:"2";}}', 100, '3.1.10', 'y'),
(19, 'Ee_debug_toolbar_ext', 'toolbar', 'sessions_end', 'a:0:{}', 9999999, '1.0', 'y'),
(20, 'Export_it_ext', 'cp_menu_array', 'cp_menu_array', 'a:0:{}', 9789, '1.3', 'y'),
(21, 'Flag_master_ext', 'void', 'session_start', '', 1, '1.1', 'y'),
(22, 'Forms_ext', 'cp_js_end', 'cp_js_end', 'a:0:{}', 100, '3.3.4', 'y'),
(23, 'Securitee_ext', 'check_ip', 'sessions_start', '', 20, '1.3.6', 'y'),
(24, 'Securitee_ext', 'cp_quick_deny', 'cp_member_login', '', 3, '1.3.6', 'y'),
(25, 'Securitee_ext', 'alert_cp_login', 'cp_member_login', '', 5, '1.3.6', 'y'),
(26, 'Securitee_ext', 'remove_hash_data', 'cp_members_member_delete_end', '', 19, '1.3.6', 'y'),
(27, 'Securitee_ext', 'check_member_password_expire', 'sessions_end', '', 2, '1.3.6', 'y'),
(28, 'Securitee_ext', 'send_cp_member_email', 'cp_members_member_create', '', 45, '1.3.6', 'y'),
(29, 'Securitee_ext', 'check_member_expire', 'sessions_end', '', 4, '1.3.6', 'y'),
(30, 'Securitee_ext', 'send_cp_activate_member_email', 'cp_members_validate_members', '', 20, '1.3.6', 'y'),
(31, 'Updater_ext', 'cp_menu_array', 'cp_menu_array', 'a:0:{}', 100, '3.2.9', 'y'),
(32, 'Eedt_memory_history_ext', 'ee_debug_toolbar_add_panel', 'ee_debug_toolbar_add_panel', '', 49, '1.0', 'y'),
(33, 'Eedt_memory_history_ext', 'ee_debug_toolbar_settings_form', 'ee_debug_toolbar_settings_form', '', 1, '1.0', 'y'),
(34, 'Eedt_memory_history_ext', 'ee_debug_toolbar_init_settings', 'ee_debug_toolbar_init_settings', '', 5, '1.0', 'y'),
(35, 'Eedt_perf_alerts_ext', 'ee_debug_toolbar_mod_panel', 'ee_debug_toolbar_mod_panel', '', 1, '1.0', 'y'),
(36, 'Eedt_perf_alerts_ext', 'ee_debug_toolbar_settings_form', 'ee_debug_toolbar_settings_form', '', 1, '1.0', 'y'),
(37, 'Eedt_perf_alerts_ext', 'ee_debug_toolbar_init_settings', 'ee_debug_toolbar_init_settings', '', 5, '1.0', 'y'),
(38, 'Vz_bad_behavior_ext', 'bad_behavior', 'sessions_start', 'a:11:{s:7:"verbose";s:1:"n";s:7:"logging";s:1:"y";s:13:"display_stats";s:1:"y";s:6:"strict";s:1:"n";s:10:"httpbl_key";s:0:"";s:13:"httpbl_threat";s:2:"25";s:13:"httpbl_maxage";s:2:"30";s:13:"offsite_forms";s:1:"n";s:15:"whitelisted_ips";s:0:"";s:16:"whitelisted_urls";s:0:"";s:9:"log_table";s:16:"exp_bad_behavior";}', 10, '1.5.1', 'y'),
(41, 'Securitee_ext', 'check_member_password_expire', 'sessions_end', '', 45, '1.3.6', 'y'),
(42, 'Securitee_ext', 'send_cp_member_email', 'cp_members_member_create', '', 99, '1.3.6', 'y'),
(43, 'Securitee_ext', 'check_member_expire', 'sessions_end', '', 100, '1.3.6', 'y'),
(44, 'Securitee_ext', 'send_cp_activate_member_email', 'cp_members_validate_members', '', 20, '1.3.6', 'y'),
(46, 'Channel_images_ext', 'wygwam_before_display', 'wygwam_before_display', 'a:0:{}', 100, '5.4.9', 'y'),
(47, 'Channel_images_ext', 'wygwam_before_save', 'wygwam_before_save', 'a:0:{}', 100, '5.4.9', 'y'),
(48, 'Channel_images_ext', 'wygwam_before_replace', 'wygwam_before_replace', 'a:0:{}', 100, '5.4.9', 'y'),
(49, 'Channel_images_ext', 'editor_before_display', 'editor_before_display', 'a:0:{}', 100, '5.4.9', 'y'),
(50, 'Channel_images_ext', 'editor_before_save', 'editor_before_save', 'a:0:{}', 100, '5.4.9', 'y'),
(51, 'Channel_images_ext', 'editor_before_replace', 'editor_before_replace', 'a:0:{}', 100, '5.4.9', 'y');

-- --------------------------------------------------------

--
-- Table structure for table `exp_fieldtypes`
--

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

--
-- Dumping data for table `exp_fieldtypes`
--

INSERT INTO `exp_fieldtypes` (`fieldtype_id`, `name`, `version`, `settings`, `has_global_settings`) VALUES
(1, 'select', '1.0', 'YTowOnt9', 'n'),
(2, 'text', '1.0', 'YTowOnt9', 'n'),
(3, 'textarea', '1.0', 'YTowOnt9', 'n'),
(4, 'date', '1.0', 'YTowOnt9', 'n'),
(5, 'file', '1.0', 'YTowOnt9', 'n'),
(6, 'multi_select', '1.0', 'YTowOnt9', 'n'),
(7, 'checkboxes', '1.0', 'YTowOnt9', 'n'),
(8, 'radio', '1.0', 'YTowOnt9', 'n'),
(9, 'relationship', '1.0', 'YTowOnt9', 'n'),
(10, 'rte', '1.0', 'YTowOnt9', 'n'),
(11, 'channel_files', '5.2.7', 'YTowOnt9', 'n'),
(12, 'channel_images', '5.4.3', 'YTowOnt9', 'n'),
(13, 'channel_polls', '2.6', 'YTowOnt9', 'n'),
(14, 'editor', '3.0.5', 'YTowOnt9', 'n'),
(15, 'flag_master', '1.1', 'YToxOntzOjk6ImZsYWdfdHlwZSI7czo1OiJlbnRyeSI7fQ==', 'n'),
(16, 'forms', '3.3.4', 'YTowOnt9', 'n'),
(17, 'securitee', '1.3.4', 'YTo0OntzOjE0OiJkZWNyeXB0X2FjY2VzcyI7czowOiIiO3M6MTY6ImZpZWxkX21heF9sZW5ndGgiO3M6MzoiMTI4IjtzOjE4OiJkaXNwbGF5X2ZpZWxkX3R5cGUiO3M6ODoicGFzc3dvcmQiO3M6MTE6ImhpZGRlbl90ZXh0IjtzOjY6IioqKioqKiI7fQ==', 'n'),
(32, 'wb_category_select', '1.3.4', 'YTowOnt9', 'n'),
(25, 'fieldpack_dropdown', '2.0', 'YTowOnt9', 'n'),
(24, 'fieldpack_checkboxes', '2.0', 'YTowOnt9', 'n'),
(22, 'vmg_chosen_member', '1.5.6', 'YTowOnt9', 'n'),
(23, 'forms_linked', '3.3.4', 'YTowOnt9', 'n'),
(26, 'fieldpack_list', '2.0', 'YTowOnt9', 'n'),
(27, 'fieldpack_multiselect', '2.0', 'YTowOnt9', 'n'),
(28, 'fieldpack_pill', '2.0', 'YTowOnt9', 'n'),
(29, 'fieldpack_radio_buttons', '2.0', 'YTowOnt9', 'n'),
(30, 'fieldpack_switch', '2.0', 'YTowOnt9', 'n');

-- --------------------------------------------------------

--
-- Table structure for table `exp_field_formatting`
--

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

--
-- Dumping data for table `exp_field_formatting`
--

INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES
(1, 1, 'none'),
(2, 1, 'br'),
(3, 1, 'markdown'),
(4, 1, 'xhtml'),
(5, 2, 'none'),
(6, 2, 'br'),
(7, 2, 'markdown'),
(8, 2, 'xhtml'),
(9, 3, 'none'),
(10, 3, 'br'),
(11, 3, 'markdown'),
(12, 3, 'xhtml'),
(13, 4, 'none'),
(14, 4, 'br'),
(15, 4, 'markdown'),
(16, 4, 'xhtml'),
(17, 5, 'none'),
(18, 5, 'br'),
(19, 5, 'markdown'),
(20, 5, 'xhtml'),
(21, 6, 'none'),
(22, 6, 'br'),
(23, 6, 'markdown'),
(24, 6, 'xhtml'),
(25, 7, 'none'),
(26, 7, 'br'),
(27, 7, 'markdown'),
(28, 7, 'xhtml'),
(29, 8, 'none'),
(30, 8, 'br'),
(31, 8, 'markdown'),
(32, 8, 'xhtml'),
(33, 9, 'none'),
(34, 9, 'br'),
(35, 9, 'markdown'),
(36, 9, 'xhtml'),
(37, 10, 'none'),
(38, 10, 'br'),
(39, 10, 'markdown'),
(40, 10, 'xhtml'),
(41, 11, 'none'),
(42, 11, 'br'),
(43, 11, 'markdown'),
(44, 11, 'xhtml'),
(45, 12, 'none'),
(46, 12, 'br'),
(47, 12, 'markdown'),
(48, 12, 'xhtml'),
(49, 13, 'none'),
(50, 13, 'br'),
(51, 13, 'markdown'),
(52, 13, 'xhtml'),
(53, 14, 'none'),
(54, 14, 'br'),
(55, 14, 'markdown'),
(56, 14, 'xhtml'),
(57, 15, 'none'),
(58, 15, 'br'),
(59, 15, 'markdown'),
(60, 15, 'xhtml'),
(61, 16, 'none'),
(62, 16, 'br'),
(63, 16, 'markdown'),
(64, 16, 'xhtml'),
(65, 17, 'none'),
(66, 17, 'br'),
(67, 17, 'markdown'),
(68, 17, 'xhtml'),
(69, 18, 'none'),
(70, 18, 'br'),
(71, 18, 'markdown'),
(72, 18, 'xhtml'),
(73, 19, 'none'),
(74, 19, 'br'),
(75, 19, 'markdown'),
(76, 19, 'xhtml'),
(77, 20, 'none'),
(78, 20, 'br'),
(79, 20, 'markdown'),
(80, 20, 'xhtml'),
(81, 21, 'none'),
(82, 21, 'br'),
(83, 21, 'markdown'),
(84, 21, 'xhtml'),
(85, 22, 'none'),
(86, 22, 'br'),
(87, 22, 'markdown'),
(88, 22, 'xhtml'),
(89, 23, 'none'),
(90, 23, 'br'),
(91, 23, 'markdown'),
(92, 23, 'xhtml'),
(93, 24, 'none'),
(94, 24, 'br'),
(95, 24, 'markdown'),
(96, 24, 'xhtml');

-- --------------------------------------------------------

--
-- Table structure for table `exp_field_groups`
--

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

--
-- Dumping data for table `exp_field_groups`
--

INSERT INTO `exp_field_groups` (`group_id`, `site_id`, `group_name`) VALUES
(1, 1, 'About'),
(2, 1, 'Board'),
(3, 1, 'Contact');

-- --------------------------------------------------------

--
-- Table structure for table `exp_files`
--

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

--
-- Dumping data for table `exp_files`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_file_categories`
--

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

--
-- Dumping data for table `exp_file_categories`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_file_dimensions`
--

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

--
-- Dumping data for table `exp_file_dimensions`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_file_watermarks`
--

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

--
-- Dumping data for table `exp_file_watermarks`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_flag_master_flags`
--

DROP TABLE IF EXISTS `exp_flag_master_flags`;
CREATE TABLE IF NOT EXISTS `exp_flag_master_flags` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `profile_id` int(10) NOT NULL DEFAULT '0',
  `option_id` int(10) NOT NULL DEFAULT '0',
  `member_id` int(10) NOT NULL DEFAULT '0',
  `entry_id` int(10) NOT NULL DEFAULT '0',
  `user_defined` text NOT NULL,
  `ip_address` varchar(30) NOT NULL DEFAULT '',
  `user_agent` varchar(100) NOT NULL DEFAULT '',
  `last_modified` datetime DEFAULT NULL,
  `created_date` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `exp_flag_master_flags`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_flag_master_profiles`
--

DROP TABLE IF EXISTS `exp_flag_master_profiles`;
CREATE TABLE IF NOT EXISTS `exp_flag_master_profiles` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL DEFAULT '',
  `active` tinyint(1) DEFAULT '0',
  `type` varchar(100) NOT NULL DEFAULT '',
  `created_by` int(10) NOT NULL DEFAULT '0',
  `total_flags` int(10) NOT NULL DEFAULT '0',
  `notify_emails` text NOT NULL,
  `notify_email_subject` varchar(255) NOT NULL DEFAULT '',
  `notify_email_message` text NOT NULL,
  `notify_email_mailtype` varchar(10) NOT NULL DEFAULT '',
  `notify_email_multiplier` int(3) NOT NULL DEFAULT '0',
  `auto_close_threshold` int(10) NOT NULL DEFAULT '0',
  `last_modified` datetime DEFAULT NULL,
  `created_date` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `exp_flag_master_profiles`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_flag_master_profile_options`
--

DROP TABLE IF EXISTS `exp_flag_master_profile_options`;
CREATE TABLE IF NOT EXISTS `exp_flag_master_profile_options` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(100) NOT NULL DEFAULT '',
  `description` text NOT NULL,
  `profile_id` int(10) NOT NULL DEFAULT '0',
  `parent_id` int(10) NOT NULL DEFAULT '0',
  `created_by` int(10) NOT NULL DEFAULT '0',
  `total_flags` int(10) NOT NULL DEFAULT '0',
  `user_defined` tinyint(1) DEFAULT '0',
  `member_only` tinyint(1) DEFAULT '0',
  `sort_order` int(10) NOT NULL DEFAULT '0',
  `last_modified` datetime DEFAULT NULL,
  `created_date` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `exp_flag_master_profile_options`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_flag_master_settings`
--

DROP TABLE IF EXISTS `exp_flag_master_settings`;
CREATE TABLE IF NOT EXISTS `exp_flag_master_settings` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `setting_key` varchar(30) NOT NULL DEFAULT '',
  `setting_value` text NOT NULL,
  `serialized` int(1) DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `exp_flag_master_settings`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_forms`
--

DROP TABLE IF EXISTS `exp_forms`;
CREATE TABLE IF NOT EXISTS `exp_forms` (
  `form_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` tinyint(3) unsigned DEFAULT '1',
  `entry_id` int(10) unsigned DEFAULT '0',
  `channel_id` tinyint(3) unsigned DEFAULT '0',
  `ee_field_id` mediumint(8) unsigned DEFAULT '0',
  `member_id` int(10) unsigned DEFAULT '0',
  `form_type` varchar(250) DEFAULT '',
  `form_title` varchar(250) DEFAULT '',
  `form_url_title` varchar(250) DEFAULT '',
  `custom_title` tinyint(3) unsigned DEFAULT '0',
  `date_created` int(10) unsigned DEFAULT '0',
  `date_last_entry` int(10) unsigned DEFAULT '0',
  `total_submissions` int(10) unsigned DEFAULT '0',
  `admin_template` mediumint(9) DEFAULT '0',
  `user_template` mediumint(9) DEFAULT '0',
  `form_settings` text,
  PRIMARY KEY (`form_id`),
  KEY `entry_id` (`entry_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `exp_forms`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_forms_email_templates`
--

DROP TABLE IF EXISTS `exp_forms_email_templates`;
CREATE TABLE IF NOT EXISTS `exp_forms_email_templates` (
  `template_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` int(10) unsigned DEFAULT '0',
  `site_id` smallint(5) unsigned DEFAULT '1',
  `template_label` varchar(250) DEFAULT '',
  `template_name` varchar(250) DEFAULT '',
  `template_type` varchar(10) DEFAULT 'user',
  `template_desc` varchar(250) DEFAULT '',
  `ee_template_id` int(10) unsigned DEFAULT '0',
  `email_type` varchar(50) DEFAULT 'text',
  `email_wordwrap` varchar(10) DEFAULT 'no',
  `email_to` varchar(250) DEFAULT '',
  `email_from` varchar(250) DEFAULT '',
  `email_from_email` varchar(250) DEFAULT '',
  `email_reply_to` varchar(250) DEFAULT '',
  `email_reply_to_email` varchar(250) DEFAULT '',
  `email_subject` varchar(250) DEFAULT '',
  `email_cc` varchar(250) DEFAULT '',
  `email_bcc` varchar(250) DEFAULT '',
  `email_attachments` varchar(10) DEFAULT 'no',
  `reply_to_author` varchar(10) DEFAULT 'yes',
  `template` text,
  `alt_template` text,
  PRIMARY KEY (`template_id`),
  KEY `form_id` (`form_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;

--
-- Dumping data for table `exp_forms_email_templates`
--

INSERT INTO `exp_forms_email_templates` (`template_id`, `form_id`, `site_id`, `template_label`, `template_name`, `template_type`, `template_desc`, `ee_template_id`, `email_type`, `email_wordwrap`, `email_to`, `email_from`, `email_from_email`, `email_reply_to`, `email_reply_to_email`, `email_subject`, `email_cc`, `email_bcc`, `email_attachments`, `reply_to_author`, `template`, `alt_template`) VALUES
(1, 0, 1, 'Default Admin Email Notification Template', 'default_admin', 'admin', '', 0, 'text', '0', 'eric@ericlamb.net', 'EE Bootstrap', 'eric@ericlamb.net', 'EE Bootstrap', 'eric@ericlamb.net', 'New Form Submission: {form:label}', '', '', 'no', 'yes', '\r\nSomeone submitted the {form:form_title} form:\r\n\r\nDate: {datetime:usa}\r\n\r\n{form:fields}\r\n{field:count}. {field:label} : {field:value}\r\n{/form:fields}\r\n		', NULL),
(2, 0, 1, 'Default User Email Notification Template', 'default_user', 'user', '', 0, 'text', '0', '', 'EE Bootstrap', 'eric@ericlamb.net', 'EE Bootstrap', 'eric@ericlamb.net', 'Thank you for your submission!', '', '', 'no', 'yes', '\r\nThank you for filling out the {form:form_title} form:\r\n\r\nDate: {datetime:usa}\r\n\r\n{form:fields}\r\n{field:count}. {field:label} : {field:value}\r\n{/form:fields}\r\n		', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `exp_forms_entries`
--

DROP TABLE IF EXISTS `exp_forms_entries`;
CREATE TABLE IF NOT EXISTS `exp_forms_entries` (
  `fentry_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `fentry_hash` varchar(35) DEFAULT '',
  `site_id` smallint(5) unsigned DEFAULT '1',
  `form_id` int(10) unsigned DEFAULT '0',
  `member_id` int(10) unsigned DEFAULT '0',
  `ip_address` int(10) unsigned DEFAULT '0',
  `date` int(10) unsigned DEFAULT '0',
  `country` varchar(20) DEFAULT '',
  `email` varchar(250) DEFAULT '',
  `debug_info` text,
  PRIMARY KEY (`fentry_id`),
  KEY `form_id` (`form_id`),
  KEY `member_id` (`member_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `exp_forms_entries`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_forms_fields`
--

DROP TABLE IF EXISTS `exp_forms_fields`;
CREATE TABLE IF NOT EXISTS `exp_forms_fields` (
  `field_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` int(10) unsigned DEFAULT '0',
  `entry_id` int(10) unsigned DEFAULT '0',
  `ee_field_id` int(10) unsigned DEFAULT '0',
  `parent_id` int(10) unsigned DEFAULT '0',
  `column_number` smallint(5) unsigned DEFAULT '0',
  `title` varchar(255) DEFAULT '',
  `url_title` varchar(255) DEFAULT '',
  `description` text,
  `field_type` varchar(255) DEFAULT 'text',
  `field_order` mediumint(8) unsigned DEFAULT '0',
  `required` tinyint(3) unsigned DEFAULT '0',
  `show_label` tinyint(3) unsigned DEFAULT '1',
  `label_position` varchar(100) DEFAULT 'auto',
  `no_dupes` tinyint(3) unsigned DEFAULT '0',
  `conditionals` text,
  `field_settings` text,
  PRIMARY KEY (`field_id`),
  KEY `form_id` (`form_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `exp_forms_fields`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_forms_lists`
--

DROP TABLE IF EXISTS `exp_forms_lists`;
CREATE TABLE IF NOT EXISTS `exp_forms_lists` (
  `list_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `list_label` varchar(250) DEFAULT '',
  `list_data` text,
  PRIMARY KEY (`list_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=25 ;

--
-- Dumping data for table `exp_forms_lists`
--

INSERT INTO `exp_forms_lists` (`list_id`, `list_label`, `list_data`) VALUES
(1, 'Countries', 'a:239:{s:2:"US";s:13:"United States";s:2:"GB";s:14:"United Kingdom";s:2:"AF";s:11:"Afghanistan";s:2:"AL";s:7:"Albania";s:2:"DZ";s:7:"Algeria";s:2:"AS";s:14:"American Samoa";s:2:"AD";s:7:"Andorra";s:2:"AO";s:6:"Angola";s:2:"AI";s:8:"Anguilla";s:2:"AQ";s:10:"Antarctica";s:2:"AG";s:19:"Antigua And Barbuda";s:2:"AR";s:9:"Argentina";s:2:"AM";s:7:"Armenia";s:2:"AW";s:5:"Aruba";s:2:"AU";s:9:"Australia";s:2:"AT";s:7:"Austria";s:2:"AZ";s:10:"Azerbaijan";s:2:"BS";s:7:"Bahamas";s:2:"BH";s:7:"Bahrain";s:2:"BD";s:10:"Bangladesh";s:2:"BB";s:8:"Barbados";s:2:"BY";s:7:"Belarus";s:2:"BE";s:7:"Belgium";s:2:"BZ";s:6:"Belize";s:2:"BJ";s:5:"Benin";s:2:"BM";s:7:"Bermuda";s:2:"BT";s:6:"Bhutan";s:2:"BO";s:7:"Bolivia";s:2:"BA";s:22:"Bosnia And Herzegowina";s:2:"BW";s:8:"Botswana";s:2:"BV";s:13:"Bouvet Island";s:2:"BR";s:6:"Brazil";s:2:"IO";s:30:"British Indian Ocean Territory";s:2:"BN";s:17:"Brunei Darussalam";s:2:"BG";s:8:"Bulgaria";s:2:"BF";s:12:"Burkina Faso";s:2:"BI";s:7:"Burundi";s:2:"KH";s:8:"Cambodia";s:2:"CM";s:8:"Cameroon";s:2:"CA";s:6:"Canada";s:2:"CV";s:10:"Cape Verde";s:2:"KY";s:14:"Cayman Islands";s:2:"CF";s:24:"Central African Republic";s:2:"TD";s:4:"Chad";s:2:"CL";s:5:"Chile";s:2:"CN";s:5:"China";s:2:"CX";s:16:"Christmas Island";s:2:"CC";s:23:"Cocos (Keeling) Islands";s:2:"CO";s:8:"Colombia";s:2:"KM";s:7:"Comoros";s:2:"CG";s:5:"Congo";s:2:"CD";s:37:"Congo, The Democratic Republic Of The";s:2:"CK";s:12:"Cook Islands";s:2:"CR";s:10:"Costa Rica";s:2:"CI";s:13:"Cote D''Ivoire";s:2:"HR";s:30:"Croatia (Local Name: Hrvatska)";s:2:"CU";s:4:"Cuba";s:2:"CY";s:6:"Cyprus";s:2:"CZ";s:14:"Czech Republic";s:2:"DK";s:7:"Denmark";s:2:"DJ";s:8:"Djibouti";s:2:"DM";s:8:"Dominica";s:2:"DO";s:18:"Dominican Republic";s:2:"TP";s:10:"East Timor";s:2:"EC";s:7:"Ecuador";s:2:"EG";s:5:"Egypt";s:2:"SV";s:11:"El Salvador";s:2:"GQ";s:17:"Equatorial Guinea";s:2:"ER";s:7:"Eritrea";s:2:"EE";s:7:"Estonia";s:2:"ET";s:8:"Ethiopia";s:2:"FK";s:27:"Falkland Islands (Malvinas)";s:2:"FO";s:13:"Faroe Islands";s:2:"FJ";s:4:"Fiji";s:2:"FI";s:7:"Finland";s:2:"FR";s:6:"France";s:2:"FX";s:20:"France, Metropolitan";s:2:"GF";s:13:"French Guiana";s:2:"PF";s:16:"French Polynesia";s:2:"TF";s:27:"French Southern Territories";s:2:"GA";s:5:"Gabon";s:2:"GM";s:6:"Gambia";s:2:"GE";s:7:"Georgia";s:2:"DE";s:7:"Germany";s:2:"GH";s:5:"Ghana";s:2:"GI";s:9:"Gibraltar";s:2:"GR";s:6:"Greece";s:2:"GL";s:9:"Greenland";s:2:"GD";s:7:"Grenada";s:2:"GP";s:10:"Guadeloupe";s:2:"GU";s:4:"Guam";s:2:"GT";s:9:"Guatemala";s:2:"GN";s:6:"Guinea";s:2:"GW";s:13:"Guinea-Bissau";s:2:"GY";s:6:"Guyana";s:2:"HT";s:5:"Haiti";s:2:"HM";s:27:"Heard And Mc Donald Islands";s:2:"VA";s:29:"Holy See (Vatican City State)";s:2:"HN";s:8:"Honduras";s:2:"HK";s:9:"Hong Kong";s:2:"HU";s:7:"Hungary";s:2:"IS";s:7:"Iceland";s:2:"IN";s:5:"India";s:2:"ID";s:9:"Indonesia";s:2:"IR";s:26:"Iran (Islamic Republic Of)";s:2:"IQ";s:4:"Iraq";s:2:"IE";s:7:"Ireland";s:2:"IL";s:6:"Israel";s:2:"IT";s:5:"Italy";s:2:"JM";s:7:"Jamaica";s:2:"JP";s:5:"Japan";s:2:"JO";s:6:"Jordan";s:2:"KZ";s:10:"Kazakhstan";s:2:"KE";s:5:"Kenya";s:2:"KI";s:8:"Kiribati";s:2:"KP";s:38:"Korea, Democratic People''s Republic Of";s:2:"KR";s:18:"Korea, Republic Of";s:2:"KW";s:6:"Kuwait";s:2:"KG";s:10:"Kyrgyzstan";s:2:"LA";s:32:"Lao People''s Democratic Republic";s:2:"LV";s:6:"Latvia";s:2:"LB";s:7:"Lebanon";s:2:"LS";s:7:"Lesotho";s:2:"LR";s:7:"Liberia";s:2:"LY";s:22:"Libyan Arab Jamahiriya";s:2:"LI";s:13:"Liechtenstein";s:2:"LT";s:9:"Lithuania";s:2:"LU";s:10:"Luxembourg";s:2:"MO";s:5:"Macau";s:2:"MK";s:38:"Macedonia, Former Yugoslav Republic Of";s:2:"MG";s:10:"Madagascar";s:2:"MW";s:6:"Malawi";s:2:"MY";s:8:"Malaysia";s:2:"MV";s:8:"Maldives";s:2:"ML";s:4:"Mali";s:2:"MT";s:5:"Malta";s:2:"MH";s:16:"Marshall Islands";s:2:"MQ";s:10:"Martinique";s:2:"MR";s:10:"Mauritania";s:2:"MU";s:9:"Mauritius";s:2:"YT";s:7:"Mayotte";s:2:"MX";s:6:"Mexico";s:2:"FM";s:31:"Micronesia, Federated States Of";s:2:"MD";s:20:"Moldova, Republic Of";s:2:"MC";s:6:"Monaco";s:2:"MN";s:8:"Mongolia";s:2:"MS";s:10:"Montserrat";s:2:"MA";s:7:"Morocco";s:2:"MZ";s:10:"Mozambique";s:2:"MM";s:7:"Myanmar";s:2:"NA";s:7:"Namibia";s:2:"NR";s:5:"Nauru";s:2:"NP";s:5:"Nepal";s:2:"NL";s:11:"Netherlands";s:2:"AN";s:20:"Netherlands Antilles";s:2:"NC";s:13:"New Caledonia";s:2:"NZ";s:11:"New Zealand";s:2:"NI";s:9:"Nicaragua";s:2:"NE";s:5:"Niger";s:2:"NG";s:7:"Nigeria";s:2:"NU";s:4:"Niue";s:2:"NF";s:14:"Norfolk Island";s:2:"MP";s:24:"Northern Mariana Islands";s:2:"NO";s:6:"Norway";s:2:"OM";s:4:"Oman";s:2:"PK";s:8:"Pakistan";s:2:"PW";s:5:"Palau";s:2:"PA";s:6:"Panama";s:2:"PG";s:16:"Papua New Guinea";s:2:"PY";s:8:"Paraguay";s:2:"PE";s:4:"Peru";s:2:"PH";s:11:"Philippines";s:2:"PN";s:8:"Pitcairn";s:2:"PL";s:6:"Poland";s:2:"PT";s:8:"Portugal";s:2:"PR";s:11:"Puerto Rico";s:2:"QA";s:5:"Qatar";s:2:"RE";s:7:"Reunion";s:2:"RO";s:7:"Romania";s:2:"RU";s:18:"Russian Federation";s:2:"RW";s:6:"Rwanda";s:2:"KN";s:21:"Saint Kitts And Nevis";s:2:"LC";s:11:"Saint Lucia";s:2:"VC";s:32:"Saint Vincent And The Grenadines";s:2:"WS";s:5:"Samoa";s:2:"SM";s:10:"San Marino";s:2:"ST";s:21:"Sao Tome And Principe";s:2:"SA";s:12:"Saudi Arabia";s:2:"SN";s:7:"Senegal";s:2:"SC";s:10:"Seychelles";s:2:"SL";s:12:"Sierra Leone";s:2:"SG";s:9:"Singapore";s:2:"SK";s:26:"Slovakia (Slovak Republic)";s:2:"SI";s:8:"Slovenia";s:2:"SB";s:15:"Solomon Islands";s:2:"SO";s:7:"Somalia";s:2:"ZA";s:12:"South Africa";s:2:"GS";s:37:"South Georgia, South Sandwich Islands";s:2:"ES";s:5:"Spain";s:2:"LK";s:9:"Sri Lanka";s:2:"SH";s:10:"St. Helena";s:2:"PM";s:23:"St. Pierre And Miquelon";s:2:"SD";s:5:"Sudan";s:2:"SR";s:8:"Suriname";s:2:"SJ";s:30:"Svalbard And Jan Mayen Islands";s:2:"SZ";s:9:"Swaziland";s:2:"SE";s:6:"Sweden";s:2:"CH";s:11:"Switzerland";s:2:"SY";s:20:"Syrian Arab Republic";s:2:"TW";s:6:"Taiwan";s:2:"TJ";s:10:"Tajikistan";s:2:"TZ";s:28:"Tanzania, United Republic Of";s:2:"TH";s:8:"Thailand";s:2:"TG";s:4:"Togo";s:2:"TK";s:7:"Tokelau";s:2:"TO";s:5:"Tonga";s:2:"TT";s:19:"Trinidad And Tobago";s:2:"TN";s:7:"Tunisia";s:2:"TR";s:6:"Turkey";s:2:"TM";s:12:"Turkmenistan";s:2:"TC";s:24:"Turks And Caicos Islands";s:2:"TV";s:6:"Tuvalu";s:2:"UG";s:6:"Uganda";s:2:"UA";s:7:"Ukraine";s:2:"AE";s:20:"United Arab Emirates";s:2:"UM";s:36:"United States Minor Outlying Islands";s:2:"UY";s:7:"Uruguay";s:2:"UZ";s:10:"Uzbekistan";s:2:"VU";s:7:"Vanuatu";s:2:"VE";s:9:"Venezuela";s:2:"VN";s:8:"Viet Nam";s:2:"VG";s:24:"Virgin Islands (British)";s:2:"VI";s:21:"Virgin Islands (U.S.)";s:2:"WF";s:25:"Wallis And Futuna Islands";s:2:"EH";s:14:"Western Sahara";s:2:"YE";s:5:"Yemen";s:2:"YU";s:10:"Yugoslavia";s:2:"ZM";s:6:"Zambia";s:2:"ZW";s:8:"Zimbabwe";}'),
(2, 'States: U.S.A', 'a:50:{s:2:"AL";s:7:"Alabama";s:2:"AK";s:6:"Alaska";s:2:"AZ";s:7:"Arizona";s:2:"AR";s:8:"Arkansas";s:2:"CA";s:10:"California";s:2:"CO";s:8:"Colorado";s:2:"CT";s:11:"Connecticut";s:2:"DE";s:8:"Delaware";s:2:"FL";s:7:"Florida";s:2:"GA";s:7:"Georgia";s:2:"HI";s:6:"Hawaii";s:2:"ID";s:5:"Idaho";s:2:"IL";s:8:"Illinois";s:2:"IN";s:7:"Indiana";s:2:"IA";s:4:"Iowa";s:2:"KS";s:6:"Kansas";s:2:"KY";s:8:"Kentucky";s:2:"LA";s:9:"Louisiana";s:2:"ME";s:5:"Maine";s:2:"MD";s:8:"Maryland";s:2:"MA";s:13:"Massachusetts";s:2:"MI";s:8:"Michigan";s:2:"MN";s:9:"Minnesota";s:2:"MS";s:11:"Mississippi";s:2:"MO";s:8:"Missouri";s:2:"MT";s:7:"Montana";s:2:"NE";s:8:"Nebraska";s:2:"NV";s:6:"Nevada";s:2:"NH";s:13:"New Hampshire";s:2:"NJ";s:10:"New Jersey";s:2:"NM";s:10:"New Mexico";s:2:"NY";s:8:"New York";s:2:"NC";s:14:"North Carolina";s:2:"ND";s:12:"North Dakota";s:2:"OH";s:4:"Ohio";s:2:"OK";s:8:"Oklahoma";s:2:"OR";s:6:"Oregon";s:2:"PA";s:12:"Pennsylvania";s:2:"RI";s:12:"Rhode Island";s:2:"SC";s:14:"South Carolina";s:2:"SD";s:12:"South Dakota";s:2:"TN";s:9:"Tennessee";s:2:"TX";s:5:"Texas";s:2:"UT";s:4:"Utah";s:2:"VT";s:7:"Vermont";s:2:"VA";s:8:"Virginia";s:2:"WA";s:10:"Washington";s:2:"WV";s:13:"West Virginia";s:2:"WI";s:9:"Wisconsin";s:2:"WY";s:7:"Wyoming";}'),
(3, 'States: Canada', 'a:13:{s:2:"AB";s:7:"Alberta";s:2:"BC";s:16:"British Columbia";s:2:"MB";s:8:"Manitoba";s:2:"NB";s:13:"New Brunswick";s:2:"NL";s:23:"Newfoundland & Labrador";s:2:"NT";s:21:"Northwest Territories";s:2:"NS";s:11:"Nova Scotia";s:2:"NU";s:7:"Nunavut";s:2:"ON";s:7:"Ontario";s:2:"PE";s:20:"Prince Edward Island";s:2:"QC";s:6:"Quebec";s:2:"SK";s:12:"Saskatchewan";s:2:"YT";s:5:"Yukon";}'),
(4, 'States: Netherlands', 'a:12:{s:7:"Drenthe";s:7:"Drenthe";s:9:"Flevoland";s:9:"Flevoland";s:9:"Friesland";s:9:"Friesland";s:10:"Gelderland";s:10:"Gelderland";s:9:"Groningen";s:9:"Groningen";s:7:"Limburg";s:7:"Limburg";s:13:"Noord-Brabant";s:13:"Noord-Brabant";s:13:"Noord-Holland";s:13:"Noord-Holland";s:10:"Overijssel";s:10:"Overijssel";s:12:"Zuid-Holland";s:12:"Zuid-Holland";s:7:"Utrecht";s:7:"Utrecht";s:7:"Zeeland";s:7:"Zeeland";}'),
(5, 'States: Germany', 'a:16:{s:2:"BW";s:18:"Baden-Württemberg";s:2:"BY";s:6:"Bayern";s:2:"BE";s:6:"Berlin";s:2:"BB";s:11:"Brandenburg";s:2:"HB";s:6:"Bremen";s:2:"HH";s:7:"Hamburg";s:2:"HE";s:6:"Hessen";s:2:"MV";s:22:"Mecklenburg-Vorpommern";s:2:"NI";s:13:"Niedersachsen";s:2:"NW";s:19:"Nordrhein-Westfalen";s:2:"RP";s:15:"Rheinland-Pfalz";s:2:"SL";s:8:"Saarland";s:2:"SN";s:7:"Sachsen";s:2:"ST";s:14:"Sachsen-Anhalt";s:2:"SH";s:18:"Schleswig-Holstein";s:2:"TH";s:10:"Thüringen";}'),
(6, 'Continents', 'a:7:{s:6:"Africa";s:6:"Africa";s:10:"Antarctica";s:10:"Antarctica";s:4:"Asia";s:4:"Asia";s:9:"Australia";s:9:"Australia";s:6:"Europe";s:6:"Europe";s:13:"North America";s:13:"North America";s:13:"South America";s:13:"South America";}'),
(7, 'Gender', 'a:3:{s:4:"Male";s:4:"Male";s:6:"Female";s:6:"Female";s:20:"Prefer Not to Answer";s:20:"Prefer Not to Answer";}'),
(8, 'Age', 'a:8:{s:8:"Under 18";s:8:"Under 18";s:5:"18-24";s:5:"18-24";s:5:"25-34";s:5:"25-34";s:5:"35-44";s:5:"35-44";s:5:"45-54";s:5:"45-54";s:5:"55-64";s:5:"55-64";s:11:"65 or Above";s:11:"65 or Above";s:20:"Prefer Not to Answer";s:20:"Prefer Not to Answer";}'),
(9, 'Marital Status', 'a:4:{s:6:"Single";s:6:"Single";s:7:"Married";s:7:"Married";s:8:"Divorced";s:8:"Divorced";s:7:"Widowed";s:7:"Widowed";}'),
(10, 'Employment', 'a:9:{s:18:"Employed Full-Time";s:18:"Employed Full-Time";s:18:"Employed Part-Time";s:18:"Employed Part-Time";s:13:"Self-employed";s:13:"Self-employed";s:33:"Not employed but looking for work";s:33:"Not employed but looking for work";s:37:"Not employed and not looking for work";s:37:"Not employed and not looking for work";s:9:"Homemaker";s:9:"Homemaker";s:7:"Retired";s:7:"Retired";s:7:"Student";s:7:"Student";s:20:"Prefer Not to Answer";s:20:"Prefer Not to Answer";}'),
(11, 'Job Type', 'a:8:{s:9:"Full-Time";s:9:"Full-Time";s:9:"Part-Time";s:9:"Part-Time";s:8:"Per Diem";s:8:"Per Diem";s:8:"Employee";s:8:"Employee";s:9:"Temporary";s:9:"Temporary";s:8:"Contract";s:8:"Contract";s:6:"Intern";s:6:"Intern";s:8:"Seasonal";s:8:"Seasonal";}'),
(12, 'Industry', 'a:43:{s:18:"Accounting/Finance";s:18:"Accounting/Finance";s:28:"Advertising/Public Relations";s:28:"Advertising/Public Relations";s:18:"Aerospace/Aviation";s:18:"Aerospace/Aviation";s:29:"Arts/Entertainment/Publishing";s:29:"Arts/Entertainment/Publishing";s:10:"Automotive";s:10:"Automotive";s:16:"Banking/Mortgage";s:16:"Banking/Mortgage";s:20:"Business Development";s:20:"Business Development";s:20:"Business Opportunity";s:20:"Business Opportunity";s:23:"Clerical/Administrative";s:23:"Clerical/Administrative";s:23:"Construction/Facilities";s:23:"Construction/Facilities";s:14:"Consumer Goods";s:14:"Consumer Goods";s:16:"Customer Service";s:16:"Customer Service";s:18:"Education/Training";s:18:"Education/Training";s:16:"Energy/Utilities";s:16:"Energy/Utilities";s:11:"Engineering";s:11:"Engineering";s:19:"Government/Military";s:19:"Government/Military";s:5:"Green";s:5:"Green";s:10:"Healthcare";s:10:"Healthcare";s:18:"Hospitality/Travel";s:18:"Hospitality/Travel";s:15:"Human Resources";s:15:"Human Resources";s:24:"Installation/Maintenance";s:24:"Installation/Maintenance";s:9:"Insurance";s:9:"Insurance";s:8:"Internet";s:8:"Internet";s:15:"Job Search Aids";s:15:"Job Search Aids";s:24:"Law Enforcement/Security";s:24:"Law Enforcement/Security";s:5:"Legal";s:5:"Legal";s:20:"Management/Executive";s:20:"Management/Executive";s:24:"Manufacturing/Operations";s:24:"Manufacturing/Operations";s:9:"Marketing";s:9:"Marketing";s:20:"Non-Profit/Volunteer";s:20:"Non-Profit/Volunteer";s:22:"Pharmaceutical/Biotech";s:22:"Pharmaceutical/Biotech";s:21:"Professional Services";s:21:"Professional Services";s:18:"QA/Quality Control";s:18:"QA/Quality Control";s:11:"Real Estate";s:11:"Real Estate";s:23:"Restaurant/Food Service";s:23:"Restaurant/Food Service";s:6:"Retail";s:6:"Retail";s:5:"Sales";s:5:"Sales";s:16:"Science/Research";s:16:"Science/Research";s:13:"Skilled Labor";s:13:"Skilled Labor";s:10:"Technology";s:10:"Technology";s:18:"Telecommunications";s:18:"Telecommunications";s:24:"Transportation/Logistics";s:24:"Transportation/Logistics";s:5:"Other";s:5:"Other";}'),
(13, 'Income', 'a:9:{s:13:"Under $20,000";s:13:"Under $20,000";s:17:"$20,000 - $30,000";s:17:"$20,000 - $30,000";s:17:"$30,000 - $40,000";s:17:"$30,000 - $40,000";s:17:"$40,000 - $50,000";s:17:"$40,000 - $50,000";s:17:"$50,000 - $75,000";s:17:"$50,000 - $75,000";s:18:"$75,000 - $100,000";s:18:"$75,000 - $100,000";s:19:"$100,000 - $150,000";s:19:"$100,000 - $150,000";s:16:"$150,000 or more";s:16:"$150,000 or more";s:20:"Prefer Not to Answer";s:20:"Prefer Not to Answer";}'),
(14, 'Education', 'a:7:{s:11:"High School";s:11:"High School";s:16:"Associate Degree";s:16:"Associate Degree";s:17:"Bachelor''s Degree";s:17:"Bachelor''s Degree";s:31:"Graduate of Professional Degree";s:31:"Graduate of Professional Degree";s:12:"Some College";s:12:"Some College";s:5:"Other";s:5:"Other";s:20:"Prefer Not to Answer";s:20:"Prefer Not to Answer";}'),
(15, 'Days of the Week', 'a:7:{s:6:"Sunday";s:6:"Sunday";s:6:"Monday";s:6:"Monday";s:7:"Tuesday";s:7:"Tuesday";s:9:"Wednesday";s:9:"Wednesday";s:8:"Thursday";s:8:"Thursday";s:6:"Friday";s:6:"Friday";s:8:"Saturday";s:8:"Saturday";}'),
(16, 'Months of the Year', 'a:12:{s:7:"January";s:7:"January";s:8:"February";s:8:"February";s:5:"March";s:5:"March";s:5:"April";s:5:"April";s:3:"May";s:3:"May";s:4:"June";s:4:"June";s:4:"July";s:4:"July";s:6:"August";s:6:"August";s:9:"September";s:9:"September";s:7:"October";s:7:"October";s:8:"November";s:8:"November";s:8:"December";s:8:"December";}'),
(17, 'How Often', 'a:6:{s:8:"Everyday";s:8:"Everyday";s:11:"Once a week";s:11:"Once a week";s:19:"2 to 3 times a week";s:19:"2 to 3 times a week";s:12:"Once a month";s:12:"Once a month";s:21:" 2 to 3 times a month";s:21:" 2 to 3 times a month";s:22:"Less than once a month";s:22:"Less than once a month";}'),
(18, 'How Long', 'a:5:{s:17:"Less than a month";s:17:"Less than a month";s:10:"1-6 months";s:10:"1-6 months";s:9:"1-3 years";s:9:"1-3 years";s:12:"Over 3 Years";s:12:"Over 3 Years";s:10:"Never used";s:10:"Never used";}'),
(19, 'Satisfaction', 'a:5:{s:14:"Very Satisfied";s:14:"Very Satisfied";s:9:"Satisfied";s:9:"Satisfied";s:7:"Neutral";s:7:"Neutral";s:11:"Unsatisfied";s:11:"Unsatisfied";s:16:"Very Unsatisfied";s:16:"Very Unsatisfied";}'),
(20, 'Importance', 'a:4:{s:14:"Very Important";s:14:"Very Important";s:9:"Important";s:9:"Important";s:18:"Somewhat Important";s:18:"Somewhat Important";s:13:"Not Important";s:13:"Not Important";}'),
(21, 'Agreement', 'a:4:{s:14:"Strongly Agree";s:14:"Strongly Agree";s:5:"Agree";s:5:"Agree";s:8:"Disagree";s:8:"Disagree";s:17:"Strongly Disagree";s:17:"Strongly Disagree";}'),
(22, 'Comparison', 'a:5:{s:11:"Much Better";s:11:"Much Better";s:15:"Somewhat Better";s:15:"Somewhat Better";s:14:"About the Same";s:14:"About the Same";s:14:"Somewhat Worse";s:14:"Somewhat Worse";s:10:"Much Worse";s:10:"Much Worse";}'),
(23, 'Would You', 'a:5:{s:10:"Definitely";s:10:"Definitely";s:8:"Probably";s:8:"Probably";s:8:"Not Sure";s:8:"Not Sure";s:12:"Probably Not";s:12:"Probably Not";s:14:"Definitely Not";s:14:"Definitely Not";}'),
(24, 'Size', 'a:7:{s:2:"XS";s:11:"Extra Small";s:1:"S";s:5:"Small";s:1:"M";s:6:"Medium";s:1:"L";s:5:"Large";s:2:"XL";s:11:"Extra Large";s:3:"XXL";s:13:"2 Extra Large";s:4:"XXXL";s:13:"3 Extra Large";}');

-- --------------------------------------------------------

--
-- Table structure for table `exp_global_variables`
--

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

--
-- Dumping data for table `exp_global_variables`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_html_buttons`
--

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

--
-- Dumping data for table `exp_html_buttons`
--

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

-- --------------------------------------------------------

--
-- Table structure for table `exp_layout_publish`
--

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

--
-- Dumping data for table `exp_layout_publish`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_m62_backup_settings`
--

DROP TABLE IF EXISTS `exp_m62_backup_settings`;
CREATE TABLE IF NOT EXISTS `exp_m62_backup_settings` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `setting_key` varchar(30) NOT NULL DEFAULT '',
  `setting_value` text NOT NULL,
  `serialized` int(1) DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `exp_m62_backup_settings`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_members`
--

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

--
-- Dumping data for table `exp_members`
--

INSERT INTO `exp_members` (`member_id`, `group_id`, `username`, `screen_name`, `password`, `salt`, `unique_id`, `crypt_key`, `authcode`, `email`, `url`, `location`, `occupation`, `interests`, `bday_d`, `bday_m`, `bday_y`, `aol_im`, `yahoo_im`, `msn_im`, `icq`, `bio`, `signature`, `avatar_filename`, `avatar_width`, `avatar_height`, `photo_filename`, `photo_width`, `photo_height`, `sig_img_filename`, `sig_img_width`, `sig_img_height`, `ignore_list`, `private_messages`, `accept_messages`, `last_view_bulletins`, `last_bulletin_date`, `ip_address`, `join_date`, `last_visit`, `last_activity`, `total_entries`, `total_comments`, `total_forum_topics`, `total_forum_posts`, `last_entry_date`, `last_comment_date`, `last_forum_post_date`, `last_email_date`, `in_authorlist`, `accept_admin_email`, `accept_user_email`, `notify_by_default`, `notify_of_pm`, `display_avatars`, `display_signatures`, `parse_smileys`, `smart_notifications`, `language`, `timezone`, `time_format`, `cp_theme`, `profile_theme`, `forum_theme`, `tracker`, `template_size`, `notepad`, `notepad_size`, `quick_links`, `quick_tabs`, `show_sidebar`, `pmember_id`, `rte_enabled`, `rte_toolset_id`) VALUES
(1, 1, 'mithra62', 'Eric Lamb', '104bc79161e97a5b3789851a5986e146dce66d98cffbf4ef0468078e34bf3107d2c350f93aa8b3c69133adb464e00a263ef6ba72b3a60794f9f679b67c816862', 'dOI~^QzOkdi%XeHKfVFY|ma,\\z%}tpg)fS~/_fqI/Qj,R)^~d$iZDQ''N+UD;^l2/yA(K!O:eC_:=S&W";)#NJhKCGR(>=cVd*}c1)T3i>&{.X~''9PsAA.wjQ&bzgm=(R', 'bd121ed587d4fe4f18272e22e8748f6b0f58a755', '973eb25806e904a40c5ebdca3bf6cd8c6d051520', NULL, 'elamb@mineralstudios.com', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'y', 0, 0, '127.0.0.1', 1367011652, 1384370224, 1384374839, 0, 0, 0, 0, 0, 0, 0, 0, 'n', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'english', 'America/Los_Angeles', 'us', NULL, NULL, NULL, NULL, '28', NULL, '18', '', NULL, 'y', 0, 'y', 0),
(2, 1, 'MineralAdmin', 'Mineral Admin', '2cb0ecef73507b07f53062015de84e355c55a6bd6a8ecc241be4c5b5e5bcb759080abb60b1e5dc2fba8ff0ace442c8bf457078b6b2bb2d3badf0ba5b0162154b', '7h-|zm9=DmIY5TW%,D4sx#PcT?sDG=~Oe22U[a&{[`W]VrT-rriX5VQP-AEjbAR^jys=jpq\\Q2VSB[w>u+jLBI<Y)L7m;D=@}o9rCXMoAor0*qJ+e{b|VJSBP3=+hrs>', 'efaa8a87168ac31748cea8ed305aee73edae83b6', '92317fd991a84b3e1af00831d74e387b08a8810c', NULL, 'cknowles@mineralstudios.com', '', '', '', '', NULL, NULL, NULL, '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'y', 0, 0, '127.0.0.1', 1367014115, 1384983605, 1385068721, 54, 0, 0, 0, 1385066313, 0, 0, 0, 'n', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'english', 'America/Los_Angeles', 'us', NULL, NULL, NULL, NULL, '28', NULL, '18', NULL, NULL, 'n', 0, 'y', 0),
(3, 1, 'jshields', 'jshields', 'fbd2155512986908d9043841b4a9504005dffc1c9ede57f30afe11008b71fcf1fd373f64c3e1376fd9aa8b72845b947ed8844aab5a16360f4902fbb0b08e5568', ']?%iG+Eg`a++PLb",}.\\N>j)T1F2NpCi`SG+\\#*$XXBO@chD<Bh6xc@Y3Na<R6$sr23w:wY,z](nuH+vN\\Ny8KCS@1{Ix`Sm2vbY^c*\\3y*"C{)Hp(rh*F-|{f;i0.>P', '0f2d431c97b912ba1785ee204f2f0aa36db2c616', '95d42fe955a27decd0d36b0095587565aabe4be7', NULL, 'jshields@mineralstudios.com', '', '', '', '', NULL, NULL, NULL, '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'y', 0, 0, '66.214.191.82', 1383950613, 1383950812, 1383959983, 111, 0, 0, 0, 1383959869, 0, 0, 0, 'n', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'english', 'America/Los_Angeles', 'us', NULL, NULL, NULL, NULL, '28', NULL, '18', NULL, NULL, 'n', 0, 'y', 0),
(5, 1, 'sdelman', 'sdelman', 'bc4c606c001e1b113dae06727a22c9e5a01459f801ebc484e72ad95f5445b09d49104af3ffea43e7ce8356421c26dd6da97903d5d9fb799b3a8f037c2fbcbc5f', 'UQ:xy^?XDq>ieRKa{"2_T/=$v!!zEFX1&0!^*3!}@T;M<BzI,i&:nb,{)X\\<6_p$3cWKrM~7lr+9a%R]3kRQ([o(~:,cRJ@liAReL!~?b3b%Z6;7Cf"]<^?c!EoMLRxL', '08bdfd26454e3243f5f887fc8a0a8a401d39939f', '617ddd7b74b7aac26f33167510eb4a7b0acb3e7c', NULL, 'scott.delman@hq.acm.org', '', '', '', '', NULL, NULL, NULL, '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'y', 0, 0, '66.214.191.82', 1384796967, 1384999084, 1385052272, 4, 0, 0, 0, 1384955762, 0, 0, 0, 'n', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'english', 'America/Los_Angeles', 'us', NULL, NULL, NULL, NULL, '28', NULL, '18', NULL, NULL, 'n', 0, 'y', 0),
(6, 1, 'ewilliams', 'ewilliams', 'd86fa31c810ead64a0936bed25a6cb69ca12d2ae759d49b2abafc5e885072d523c01198ae0e054baa3168073d9fcdc083ebb4f2924ce8d9d9017439d7b4d7a47', 'WSpX>:9jJhYsP`knK52cK6|"M!Hi|:N??I]qQ)BK7,''"1;olZ/]1\\I!NZx@}x[1\\$VMWqOo%!*,jNu)%=%Fb3<$2S"b$S''h|2(CiC*''TF-@iZ``dFkU#Y^TAYj1+9c|o', 'e07751698cad6771f17d71a5e5c901e86d7cc290', 'd7ea10a99cfc4a7dd84b21aa46448d94761d53e4', NULL, 'emily.williams@hq.acm.org', '', '', '', '', NULL, NULL, NULL, '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'y', 0, 0, '66.214.191.82', 1384979807, 1385068119, 1385145890, 8, 0, 0, 0, 1385140419, 0, 0, 0, 'n', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'english', 'America/Los_Angeles', 'us', NULL, NULL, NULL, NULL, '28', NULL, '18', NULL, NULL, 'n', 0, 'y', 0);

-- --------------------------------------------------------

--
-- Table structure for table `exp_member_bulletin_board`
--

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

--
-- Dumping data for table `exp_member_bulletin_board`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_member_data`
--

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

--
-- Dumping data for table `exp_member_data`
--

INSERT INTO `exp_member_data` (`member_id`) VALUES
(1),
(2),
(3),
(5),
(6);

-- --------------------------------------------------------

--
-- Table structure for table `exp_member_fields`
--

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

--
-- Dumping data for table `exp_member_fields`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_member_groups`
--

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

--
-- Dumping data for table `exp_member_groups`
--

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

-- --------------------------------------------------------

--
-- Table structure for table `exp_member_homepage`
--

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

--
-- Dumping data for table `exp_member_homepage`
--

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

-- --------------------------------------------------------

--
-- Table structure for table `exp_member_search`
--

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

--
-- Dumping data for table `exp_member_search`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_message_attachments`
--

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

--
-- Dumping data for table `exp_message_attachments`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_message_copies`
--

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

--
-- Dumping data for table `exp_message_copies`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_message_data`
--

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

--
-- Dumping data for table `exp_message_data`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_message_folders`
--

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

--
-- Dumping data for table `exp_message_folders`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_message_listed`
--

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

--
-- Dumping data for table `exp_message_listed`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_modules`
--

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

--
-- Dumping data for table `exp_modules`
--

INSERT INTO `exp_modules` (`module_id`, `module_name`, `module_version`, `has_cp_backend`, `has_publish_fields`, `settings`) VALUES
(1, 'Comment', '2.3.1', 'y', 'n', NULL),
(2, 'Email', '2.0', 'n', 'n', NULL),
(3, 'Emoticon', '2.0', 'n', 'n', NULL),
(4, 'Jquery', '1.0', 'n', 'n', NULL),
(5, 'Rss', '2.0', 'n', 'n', NULL),
(6, 'Safecracker', '2.1', 'y', 'n', NULL),
(7, 'Search', '2.2.1', 'n', 'n', NULL),
(8, 'Channel', '2.0.1', 'n', 'n', NULL),
(9, 'Member', '2.1', 'n', 'n', NULL),
(10, 'Stats', '2.0', 'n', 'n', NULL),
(11, 'Rte', '1.0.1', 'y', 'n', NULL),
(12, 'M62_backup', '1.9.3', 'y', 'n', NULL),
(13, 'Channel_files', '5.2.7', 'y', 'n', NULL),
(14, 'Channel_images', '5.4.9', 'y', 'n', NULL),
(15, 'Channel_polls', '2.7.3', 'y', 'n', NULL),
(16, 'Channel_ratings', '4.0.3', 'y', 'n', NULL),
(17, 'Editor', '3.1.10', 'y', 'n', NULL),
(18, 'Ee_debug_toolbar', '1.0', 'y', 'n', NULL),
(19, 'Export_it', '1.3.1', 'y', 'n', NULL),
(20, 'File', '1.0.0', 'n', 'n', NULL),
(21, 'Flag_master', '1.1', 'y', 'n', NULL),
(22, 'Forms', '3.3.4', 'y', 'n', NULL),
(23, 'Securitee', '1.3.6', 'y', 'n', NULL),
(24, 'Updater', '3.2.9', 'y', 'n', 'a:8:{s:20:"file_transfer_method";s:5:"local";s:3:"ftp";a:6:{s:8:"hostname";s:0:"";s:4:"port";s:2:"21";s:8:"username";s:0:"";s:8:"password";s:0:"";s:7:"passive";s:3:"yes";s:3:"ssl";s:2:"no";}s:4:"sftp";a:8:{s:8:"hostname";s:0:"";s:4:"port";s:2:"22";s:8:"username";s:0:"";s:8:"password";s:0:"";s:11:"auth_method";s:8:"password";s:12:"key_contents";s:0:"";s:12:"key_password";s:0:"";s:8:"key_path";s:0:"";}s:8:"path_map";a:6:{s:4:"root";s:44:"C:\\ProjectFiles\\Mineral\\ee_bootstrap\\htdocs\\";s:6:"backup";s:56:"C:\\ProjectFiles\\Mineral\\ee_bootstrap\\htdocs\\site_backup/";s:6:"system";s:47:"C:\\ProjectFiles\\Mineral\\ee_bootstrap\\ee_system/";s:18:"system_third_party";s:76:"C:\\ProjectFiles\\Mineral\\ee_bootstrap\\ee_system/expressionengine/third_party/";s:6:"themes";s:51:"C:/ProjectFiles/Mineral/ee_bootstrap/htdocs/themes/";s:18:"themes_third_party";s:63:"C:/ProjectFiles/Mineral/ee_bootstrap/htdocs/themes/third_party/";}s:9:"menu_link";a:3:{s:4:"root";s:3:"yes";s:5:"tools";s:3:"yes";s:5:"admin";s:3:"yes";}s:10:"action_url";a:1:{s:19:"actionGeneralRouter";s:0:"";}s:8:"auth_key";s:40:"aec178d11f2bb7f37ffdd93bfff9a2b2a157229e";s:11:"track_stats";s:3:"yes";}'),
(25, 'Vmg_chosen_member', '1.5.6', 'n', 'n', NULL),
(26, 'Automatee', '1.2.2', 'y', 'n', NULL),
(27, 'Seo_lite', '1.4.6.1', 'y', 'y', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `exp_module_member_groups`
--

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

--
-- Dumping data for table `exp_module_member_groups`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_online_users`
--

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

--
-- Dumping data for table `exp_online_users`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_pages_configuration`
--

DROP TABLE IF EXISTS `exp_pages_configuration`;
CREATE TABLE IF NOT EXISTS `exp_pages_configuration` (
  `configuration_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(8) unsigned NOT NULL DEFAULT '1',
  `configuration_name` varchar(60) NOT NULL,
  `configuration_value` varchar(100) NOT NULL,
  PRIMARY KEY (`configuration_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `exp_pages_configuration`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_password_lockout`
--

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

--
-- Dumping data for table `exp_password_lockout`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_relationships`
--

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

--
-- Dumping data for table `exp_relationships`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_remember_me`
--

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

--
-- Dumping data for table `exp_remember_me`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_reset_password`
--

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

--
-- Dumping data for table `exp_reset_password`
--

INSERT INTO `exp_reset_password` (`reset_id`, `member_id`, `resetcode`, `date`) VALUES
(5, 2, 'mk24DGtP', 1384796779);

-- --------------------------------------------------------

--
-- Table structure for table `exp_revision_tracker`
--

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

--
-- Dumping data for table `exp_revision_tracker`
--

INSERT INTO `exp_revision_tracker` (`tracker_id`, `item_id`, `item_table`, `item_field`, `item_date`, `item_author_id`, `item_data`) VALUES
(1, 4, 'exp_templates', 'template_data', 1383936880, 1, ''),
(2, 15, 'exp_templates', 'template_data', 1383940119, 2, '{embed="global/header"}\n{embed="global/top-nav}\n<div id="main">\n        <h1>ABOUT ACM BOOKS</h1>\n        <div id="content">\n                <article class="text-box">\n                        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet. Donec eget odio ut libero pretium pharetra vitae ut neque. Maecenas commodo sit amet augue at vehicula. Vestibulum eu purus id est vehicula tincidunt nec at orci. </p>\n                        <p>Duis vestibulum massa tortor, sed tincidunt velit dapibus vulputate. Phasellus molestie ultricies nunc. Phasellus mattis elementum dolor ac fermentum. Duis non accumsan mauris. Suspendisse non fringilla lectus. Morbi quis sem egestas, euismod nulla quis, vestibulum felis. Ut ut molestie mi. Suspendisse viverra dictum felis vitae tincidunt. Mauris posuere, elit ac ullamcorper viverra, massa felis lobortis lorem, at pharetra lacus dolor ac est. Aliquam facilisis sem et tellus mattis, sit amet tincidunt ligula condimentum. </p>\n                </article>\n                <div class="submit-area">\n                        <h2>ready to publish with acm books?</h2>\n                        <div class="links">\n                                <a href="#">submit a book proposal</a> <a href="#">copyright/license forms</a> <a href="#">publishing policies</a>\n                        </div>\n                </div>\n                <div class="open-box">\n                        <h2>frequently asked questions</h2>\n                        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet. Donec eget odio ut libero pretium pharetra vitae ut neque. Maecenas commodo sit amet augue at vehicula. Vestibulum eu purus id est vehicula tincidunt nec at orci. </p>\n                        <div class="open-close active">\n                                <a class="opener" href="#">question #1</a>\n                                <div class="detail">\n                                        <p>This is the answer to question #1. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet.</p>\n                                </div>\n                        </div>\n                        <div class="open-close">\n                                <a class="opener" href="#">how do i get an answer to question 2?</a>\n                                <div class="detail">\n                                        <p>This is the answer to question #1. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet.</p>\n                                </div>\n                        </div>\n                        <div class="open-close">\n                                <a class="opener" href="#">what will question 3 be?</a>\n                                <div class="detail">\n                                        <p>This is the answer to question #1. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet.</p>\n                                </div>\n                        </div>\n                        <div class="open-close">\n                                <a class="opener" href="#">this is question number four?</a>\n                                <div class="detail">\n                                        <p>This is the answer to question #1. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet.</p>\n                                </div>\n                        </div>\n                </div>\n        </div>\n</div>\n{embed="global/footer"}\n'),
(3, 18, 'exp_templates', 'template_data', 1384305353, 2, '{embed="global/header"}\n{embed="global/top-nav"}\n<div id="main">\n        <h1>MEET THE BOARD</h1>\n                <article class="text-intro">\n                        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet. Donec eget odio ut libero pretium pharetra vitae ut neque. Maecenas commodo sit amet augue at vehicula. Vestibulum eu purus id est vehicula tincidunt nec at orci. <strong>Click on each Board Member to view their biography.</strong></p>\n                </article>\n        <section class="members-area">\n                <article class="tab-content">\n                        {exp:channel:entries channel="{segment_1}" sort="asc" }\n                        <div id="tab{count}">\n                                <div class="author-area">\n                                                {if count == "1"}<div class="editor">{/if}\n                                                        {exp:channel_images:images entry_id="{entry_id}"}\n                                                        <img src="{image:url:small}" width="210" height="210" alt="{board_name}">\n                                                        {/exp:channel_images:images}\n                                                {if count == "1"}<span class="caption">editor in chief</span>\n                                                </div>\n                                                {/if}\n                                        <h3>{board_name}</h3>\n                                        <strong class="sub-heading">{board_institution}</strong>\n                                       {!-- {categories}<a href="/subjects/{url_title}"><span class="topic">{category_name}</span></a>{/categories} --}\n                                        <span class="topic"><a href="mailto:{board_email}">{board_email}</a></span>\n                                </div>\n                                <div class="text">\n                                        <p>{board_bio}</p>\n                                </div>\n                        </div>\n                        {/exp:channel:entries}\n                </article>\n                <ul class="members">\n                        {exp:channel:entries channel="{segment_1}" sort="asc"}\n                        <li>\n                                <a {if count == "1"}class="active"{/if} href="#tab{count}">\n                                        {if count == "1"}<div class="editor">{/if}\n                                                {exp:channel_images:images entry_id="{entry_id}"}\n                                                        <img src="{image:url:small}" width="210" height="210" alt="{board_name}">\n                                                {/exp:channel_images:images}\n                                        {if count == "1"}<span class="caption">editor in chief</span>\n                                        </div>{/if}\n                                        <h3>{board_name}</h3>\n                                        <strong class="sub-heading">{board_institution}</strong>\n                                       {!-- {categories}<a href="/subjects/{url_title}"><span class="topic">{category_name}</span></a>{/categories} --}\n                                </a>\n                        </li>\n                        {/exp:channel:entries}\n                </ul>\n        </section>\n</div>\n{embed="global/footer"}\n'),
(4, 18, 'exp_templates', 'template_data', 1384305933, 2, '{embed="global/header"}\n{embed="global/top-nav"}\n<div id="main">\n        <h1>MEET THE BOARD</h1>\n                <article class="text-intro">\n                        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet. Donec eget odio ut libero pretium pharetra vitae ut neque. Maecenas commodo sit amet augue at vehicula. Vestibulum eu purus id est vehicula tincidunt nec at orci. <strong>Click on each Board Member to view their biography.</strong></p>\n                </article>\n        <section class="members-area">\n                <article class="tab-content">\n                        {exp:channel:entries channel="{segment_1}" sort="asc" }\n                        <div id="tab{count}">\n                                <div class="author-area">\n                                                {if count == "1"}<div class="editor">{/if}\n                                                        {exp:channel_images:images entry_id="{entry_id}"}\n                                                        <img src="{image:url:small}" width="210" height="210" alt="{board_name}">\n                                                        {/exp:channel_images:images}\n                                                {if count == "1"}<span class="caption">editor in chief</span>\n                                                </div>\n                                                {/if}\n                                        <h3>{board_name}</h3>\n                                        <strong class="sub-heading">{board_institution}</strong>\n                                       {!-- {categories}<a href="/subjects/{url_title}"><span class="topic">{category_name}</span></a>{/categories} --}\n                                        <span class="topic"><a href="mailto:{board_email}">{board_email}</a></span>\n                                </div>\n                                <div class="text">\n                                        <p>{board_bio}</p>\n                                </div>\n                        </div>\n                        {/exp:channel:entries}\n                </article>\n                <ul class="members">\n                        {exp:channel:entries channel="{segment_1}" sort="asc"}\n                        <li>\n                                <a {if count == "1"}class="active"{/if} href="#tab{count}">\n                                        {if count == "1"}<div class="editor">{/if}\n                                                {exp:channel_images:images entry_id="{entry_id}"}\n                                                        <img src="{image:url:small}" width="210" height="210" alt="{board_name}">\n                                                {/exp:channel_images:images}\n                                        {if count == "1"}<span class="caption">editor in chief</span>\n                                        </div>{/if}\n                                        <h3>{board_name}</h3>\n                                        <strong class="sub-heading">{board_institution}</strong>\n                                       {!-- {categories}<a href="/subjects/{url_title}"><span class="topic">{category_name}</span></a>{/categories} --}\n                                </a>\n                        </li>\n                        {/exp:channel:entries}\n                </ul>\n        </section>\n</div>\n{embed="global/footer"}\n'),
(5, 25, 'exp_templates', 'template_data', 1384809108, 2, '{embed="global/header"}\n{embed="global/top-nav"}\n<div id="main">\n    {exp:channel:entries channel="{segment_1}" dynamic="no"}\n        <h1>{title}</h1>\n    {/exp:channel:entries}\n        <div id="content">\n            {exp:channel:entries channel="{segment_1}" dynamic="no"}\n                    <article class="text-box">\n                            {about_content}\n                    </article>\n            {/exp:channel:entries}\n            {if segment_2 == "discoverability-access"}\n                {embed="libraries/_expand"}\n            {/if}\n        </div>\n        \n</div>\n{embed="global/footer"}\n'),
(6, 7, 'exp_templates', 'template_data', 1384884623, 2, '<section class="visual">\n        <img src="images/img1.jpg" width="940" height="338" alt="image description">\n        <article class="description">\n                <h1>ABOUT ACM BOOKS</h1>\n                <p>ACM Books is a new series of high quality books for the computer science community, published by ACM in collaboration with Morgan & Claypool Publishers.</p>\n                <h4><a href="/about">More About acm books</a></h4>\n                <br />\n        </article>\n</section>'),
(7, 17, 'exp_templates', 'template_data', 1384887519, 2, '<aside id="sidebar">\n    <nav class="sidenav">\n            <ul>\n                    <li><a href="/authors/submitting-a-book-proposal">Submitting a Book Proposal </a></li>\n                    <li><a href="/authors/copyright-publishing-policies">Copyright/Publishing Policy</a></li>\n                    <li><a href="#">Publishing Policies</a></li>\n                    <li><a href="/contact">CONTACT ACMBOOKS DIRECTLY</a></li>\n            </ul>\n    </nav>\n</aside>\n'),
(8, 17, 'exp_templates', 'template_data', 1384887558, 2, '<aside id="sidebar">\n    <nav class="sidenav">\n            <ul>\n                    <li><a href="/authors/submitting-a-book-proposal">Submitting a Book Proposal </a></li>\n                    <li><a href="/authors/copyright-publishing-policies">Copyright/Publishing Policy</a></li>\n                    <li><a href="#">Publishing Policies</a></li>\n                    <li><a href="/contact">CONTACT ACMBOOKS DIRECTLY</a></li>\n            </ul>\n    </nav>\n</aside>\n'),
(9, 17, 'exp_templates', 'template_data', 1384887564, 2, '<aside id="sidebar">\n    <nav class="sidenav">\n            <ul>\n                    <li><a href="/authors/submitting-a-book-proposal">Submitting a Book Proposal </a></li>\n                    <li><a href="/authors/copyright-publishing-policies">Copyright/Publishing Policy</a></li>\n                    <li><a href="#">Publishing Policies</a></li>\n                    <li><a href="/contact">CONTACT ACMBOOKS DIRECTLY</a></li>\n            </ul>\n    </nav>\n</aside>\n'),
(10, 17, 'exp_templates', 'template_data', 1384887581, 2, '<aside id="sidebar">\n    <nav class="sidenav">\n            <ul>\n                    <li><a href="/authors/submitting-a-book-proposal">Submitting a Book Proposal </a></li>\n                    <li><a href="/authors/copyright-publishing-policies">Copyright/Publishing Policy</a></li>\n                    <li><a href="#">Publishing Policies</a></li>\n                    <li><a href="/contact">CONTACT ACMBOOKS DIRECTLY</a></li>\n            </ul>\n    </nav>\n</aside>\n'),
(11, 17, 'exp_templates', 'template_data', 1384887589, 2, '<aside id="sidebar">\n    <nav class="sidenav">\n            <ul>\n                    <li><a href="/authors/submitting-a-book-proposal">Submitting a Book Proposal </a></li>\n                    <li><a href="/authors/copyright-publishing-policies">Copyright/Publishing Policy</a></li>\n                    <li><a href="#">Publishing Policies</a></li>\n                    <li><a href="/contact">CONTACT ACMBOOKS DIRECTLY</a></li>\n            </ul>\n    </nav>\n</aside>\n'),
(12, 17, 'exp_templates', 'template_data', 1384887595, 2, '<aside id="sidebar">\n    <nav class="sidenav">\n            <ul>\n                    <li><a href="/authors/submitting-a-book-proposal">Submitting a Book Proposal </a></li>\n                    <li><a href="/authors/copyright-publishing-policies">Copyright/Publishing Policy</a></li>\n                    <li><a href="#">Publishing Policies</a></li>\n                    <li><a href="/contact">CONTACT ACMBOOKS DIRECTLY</a></li>\n            </ul>\n    </nav>\n</aside>\n'),
(13, 17, 'exp_templates', 'template_data', 1384888212, 2, '<aside id="sidebar">\n    <nav class="sidenav">\n            <ul>\n                    <li><a href="/authors/submitting-a-book-proposal">Submitting a Book Proposal </a></li>\n                    <li><a href="/authors/copyright-publishing-policies">Copyright/Publishing Policy</a></li>\n                    <li><a href="#">Publishing Policies</a></li>\n                    <li><a href="/contact">CONTACT ACM BOOKS DIRECTLY</a></li>\n            </ul>\n    </nav>\n</aside>\n'),
(14, 17, 'exp_templates', 'template_data', 1384889776, 2, '<aside id="sidebar">\n    <nav class="sidenav">\n            <ul>\n                    <li><a href="/authors/submitting-a-book-proposal">Submitting a Book Proposal </a></li>\n                    <li><a href="/authors/copyright-publishing-policies">Copyright/Publishing Policy</a></li>\n                    <li><a href="#">Publishing Policies</a></li>\n                    <li><a href="/contact">CONTACT ACM BOOKS DIRECTLY</a></li>\n            </ul>\n    </nav>\n</aside>\n'),
(15, 17, 'exp_templates', 'template_data', 1384889869, 2, '<aside id="sidebar">\n    <nav class="sidenav">\n            <ul>\n                    <li><a href="/authors/submitting-a-book-proposal">Submitting a Book Proposal </a></li>\n                    <li><a href="/authors/copyright-publishing-policies">Copyright/Publishing Policy</a></li>\n                    <li><a href="#">Publishing Policies</a></li>\n                    <li><a href="/contact">CONTACT ACM BOOKS DIRECTLY</a></li>\n            </ul>\n    </nav>\n</aside>\n'),
(16, 17, 'exp_templates', 'template_data', 1384889874, 2, '<aside id="sidebar">\n    <nav class="sidenav">\n            <ul>\n                    <li><a href="/authors/submitting-a-book-proposal">Submitting a Book Proposal </a></li>\n                    <li><a href="/authors/copyright-publishing-policies">Copyright/Publishing Policy</a></li>\n                    <li><a href="#">Publishing Policies</a></li>\n                    <li><a href="/contact">CONTACT ACM BOOKS DIRECTLY</a></li>\n            </ul>\n    </nav>\n</aside>\n');

-- --------------------------------------------------------

--
-- Table structure for table `exp_rte_tools`
--

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

--
-- Dumping data for table `exp_rte_tools`
--

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

-- --------------------------------------------------------

--
-- Table structure for table `exp_rte_toolsets`
--

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

--
-- Dumping data for table `exp_rte_toolsets`
--

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

-- --------------------------------------------------------

--
-- Table structure for table `exp_search`
--

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

--
-- Dumping data for table `exp_search`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_search_log`
--

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

--
-- Dumping data for table `exp_search_log`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_securitee_hashes`
--

DROP TABLE IF EXISTS `exp_securitee_hashes`;
CREATE TABLE IF NOT EXISTS `exp_securitee_hashes` (
  `member_id` int(10) unsigned NOT NULL,
  `hash` varchar(100) NOT NULL DEFAULT '',
  `allow_ip` int(1) NOT NULL DEFAULT '0',
  `last_changed` datetime DEFAULT NULL,
  `forgotten_stamp` datetime DEFAULT NULL,
  PRIMARY KEY (`member_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `exp_securitee_hashes`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_securitee_settings`
--

DROP TABLE IF EXISTS `exp_securitee_settings`;
CREATE TABLE IF NOT EXISTS `exp_securitee_settings` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `setting_key` varchar(30) NOT NULL DEFAULT '',
  `setting_value` longtext,
  `serialized` int(1) DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=35 ;

--
-- Dumping data for table `exp_securitee_settings`
--

INSERT INTO `exp_securitee_settings` (`id`, `setting_key`, `setting_value`, `serialized`) VALUES
(1, 'enable_file_monitor', '1', 0),
(2, 'enable_cp_login_alert', '1', 0),
(3, 'member_expire_ttl', '0', 0),
(4, 'pw_expire_ttl', '15552000', 0),
(5, 'pw_expire_member_groups', 'a:1:{i:0;s:1:"5";}', 1),
(6, 'pw_change_template', '0', 0),
(7, 'cp_reg_email_expire_ttl', '86400', 0),
(8, 'cp_reg_email_subject', '{site_name} - Account Created', 0),
(9, 'cp_reg_email_message_body', 'Hello,\n\nA new account was created on {site_url} for you. To begin using your account click the below link and create a password. \n\n{change_url}\n		\nCopy and paste the URL in a new browser window if you can''t click on it.\n\nPlease keep in mind that the link will only work for 24 hours; after that it will be inactive.\n\n{site_name}\n{site_url}	\n\nPlease don''t respond to this email; all emails are automatically deleted. 	', 0),
(10, 'cp_reg_email_mailtype', 'text', 0),
(11, 'pw_ttl', '86400', 0),
(12, 'forgot_password_email_subject', 'Password Recovery', 0),
(13, 'pw_email_message', '{username},\n\nTo reset your password for your account, click the link below:\n\n{change_url}\n		\nCopy and paste the URL in a new browser window if you can''t click on it.\n\nPlease keep in mind that the link will only work for 24 hours; after that it will be inactive.\n\nIf you didn''t request to reset your password you don''t need to take any further action and can safely disregard this email.\n\n{site_name}\n{site_url}	\n\nPlease don''t respond to this email; all emails are automatically deleted. 		\n', 0),
(14, 'pw_email_mailtype', 'text', 0),
(15, 'file_scan_path', '/var/www/interactions/books-acm.minla.net/htdocs/', 0),
(16, 'file_scan_exclude_paths', 'a:1:{i:0;s:0:"";}', 1),
(17, 'file_monitor_notify_emails', 'a:0:{}', 1),
(18, 'allowed_ips', 'a:0:{}', 1),
(19, 'allow_ip_ttl', '0', 0),
(20, 'allow_ip_email_subject', '{site_name} - IP Allow Request', 0),
(21, 'allow_ip_email_message', 'Hello,\n\nTo confirm your IP please click the below URL:\n\n{allow_url}\n\nCopy and paste the URL in a new browser window if you can''t click on it.\n\nPlease keep in mind that the link will only work for 24 hours; after that it will be inactive.\n\n{site_name}\n{site_url}\n\nPlease don''t respond to this email; all emails are automatically deleted. 	', 0),
(22, 'allow_ip_email_mailtype', 'text', 0),
(23, 'allow_ip_template', '0', 0),
(24, 'allow_ip_add_member_groups', 'a:1:{i:0;s:1:"1";}', 1),
(25, 'login_alert_emails', 'a:1:{i:0;s:24:"elamb@mineralstudios.com";}', 1),
(26, 'license_number', '1178-9083-9040-8333', 0),
(27, 'enable_cp_ip_locker', '0', 0),
(28, 'enable_client_ip_locker', '0', 0),
(29, 'enable_quick_deny_cp_login', '0', 0),
(30, 'enable_expiring_passwords', '0', 0),
(31, 'enable_cp_member_reg_email', '0', 0),
(32, 'enable_expiring_members', '0', 0),
(33, 'enable_cp_email_activate', '0', 0),
(34, 'license_number', '1178-9083-9040-8333', 0);

-- --------------------------------------------------------

--
-- Table structure for table `exp_security_hashes`
--

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

--
-- Dumping data for table `exp_security_hashes`
--

INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES
(9394, 1385145891, '0', '6bc23b24abd1d5dc98901da52633c56c7d9c04e5', 0),
(9393, 1385145890, 'ab04d1cd865d236f61c751635a846a412f6521bd', '1726134829eb30f08e12f3fc90cf45226bb34fbc', 0),
(9392, 1385145378, 'ab04d1cd865d236f61c751635a846a412f6521bd', '03187afb0fd68d662838d7b24fa4f571d95904c6', 0),
(9391, 1385145377, 'ab04d1cd865d236f61c751635a846a412f6521bd', '447485a4efba5c9db281d953ba4f9b14f0d46b19', 0),
(9390, 1385145377, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'ae453c6abdacab559999a7f56d4d65f6bcd65255', 0),
(9389, 1385145375, 'ab04d1cd865d236f61c751635a846a412f6521bd', '902d82a259b95e2170c06b7d84ccf777857f0789', 0),
(9388, 1385145373, 'ab04d1cd865d236f61c751635a846a412f6521bd', '888148408c91a62aef49cf7dab309b6b0607cd53', 0),
(9387, 1385145370, 'ab04d1cd865d236f61c751635a846a412f6521bd', '0bc82b017fcba152b0a58ce56cf2a35e85b00965', 1),
(9386, 1385145365, 'ab04d1cd865d236f61c751635a846a412f6521bd', '2c60044214d360c63af933fcace07e339b0368f5', 1),
(9385, 1385145229, 'ab04d1cd865d236f61c751635a846a412f6521bd', '82942996cfe4bd53b2438edbd274720ba15bff9f', 0),
(9384, 1385145226, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'fd4bdae867aca0f209fcf5f9cf91a18529614d1d', 0),
(9383, 1385145220, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'e4f44198d3bcbebce93e845d303ec5c627245d56', 0),
(9382, 1385145220, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'b1aba23e05da4c2750ec129d3e0a473a805e461b', 0),
(9381, 1385145185, 'ab04d1cd865d236f61c751635a846a412f6521bd', '765945dc559651917c164ecd9433221ce1ebc450', 0),
(9380, 1385145185, 'ab04d1cd865d236f61c751635a846a412f6521bd', '23ee0229a724daac981d4ae131ba29e130eb833b', 0),
(9379, 1385145184, 'ab04d1cd865d236f61c751635a846a412f6521bd', '6110765a966232b8ed903d26139b2c428efb3d48', 0),
(9378, 1385145182, 'ab04d1cd865d236f61c751635a846a412f6521bd', '1252051f13e29ce41f080a97565f9ed6b45b084d', 1),
(9377, 1385145181, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'ee2fd94b183b3e2dfa8ed6ec0d5e2cf308db2e35', 0),
(9376, 1385145177, 'ab04d1cd865d236f61c751635a846a412f6521bd', '2237cb5ecaae40359d3a93d58b5b3f371c6c08a5', 1),
(9375, 1385145109, 'ab04d1cd865d236f61c751635a846a412f6521bd', '814c8ace0443291a40239ca5ba87e2d174ec2195', 0),
(9374, 1385145104, 'ab04d1cd865d236f61c751635a846a412f6521bd', '4ed01460371d537c7d68386798eddfe1800cb872', 0),
(9373, 1385145103, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'fd172d83602c1476a66fd5d5c36839712bcc8971', 0),
(9372, 1385145085, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'e7ac7d9d2fab18fada8128afe3ee0bc8d2ac1923', 0),
(9371, 1385145085, 'ab04d1cd865d236f61c751635a846a412f6521bd', '0c8e352d3ed83eb878bf2fc80240ec17614b8715', 0),
(9370, 1385145084, 'ab04d1cd865d236f61c751635a846a412f6521bd', '41f35b43c13b329ab0b513e05dc2388af698412a', 0),
(9369, 1385145082, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'baef4dd19a83f8ca8399bf1d82fa01987a8e39fc', 1),
(9368, 1385145080, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'c8c28ae53df2b5cec9b7526d76ceeeb6936d337c', 0),
(9367, 1385145079, 'ab04d1cd865d236f61c751635a846a412f6521bd', '5a4e1c93ce550da1cf5df2774c0b92421941e311', 1),
(9366, 1385145075, 'ab04d1cd865d236f61c751635a846a412f6521bd', '8238b613669cc4b66606fd539aa3738354223ed3', 1),
(9365, 1385145046, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'ca12dbe8d5a2f321e69af91a630eef01b22c53db', 0),
(9364, 1385145034, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'cd18aa2f9c49f5a6eb15c2e50559fe804042203b', 0),
(9363, 1385144849, 'ab04d1cd865d236f61c751635a846a412f6521bd', '352d7a81b22230d9986a257f89adbfd473bc2fd8', 0),
(9362, 1385144848, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'f344cc854277b1f33b92de12c11fc02d9536bea3', 0),
(9361, 1385144809, 'ab04d1cd865d236f61c751635a846a412f6521bd', '18fc3668bbfe914f938d2e3cece33f4c13d8c0fc', 0),
(9360, 1385144808, 'ab04d1cd865d236f61c751635a846a412f6521bd', '772da8a65ea437d26da1e409c91680cac0448843', 0),
(9359, 1385144808, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'ef194cca526c642b667d4411d203476b14979fb6', 0),
(9358, 1385144806, 'ab04d1cd865d236f61c751635a846a412f6521bd', '40ea26319937f2769c78e0cb3b85fc00b8faca84', 1),
(9357, 1385144803, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'a60b86fda55ca25ec8aba504366c138edd50f105', 0),
(9356, 1385144799, 'ab04d1cd865d236f61c751635a846a412f6521bd', '3345160929093783335cbcdf1ff6e2cd6f167f7d', 1),
(9355, 1385144790, 'ab04d1cd865d236f61c751635a846a412f6521bd', '6f26b2e939647f48ed587ee51df07d05670c5cc6', 0),
(9354, 1385144787, 'ab04d1cd865d236f61c751635a846a412f6521bd', '7d2862f001d6898436352712789b26191cd19b02', 1),
(9353, 1385144786, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'd90bc482df80c192732ea1ce856301dbc923ba3d', 1),
(9352, 1385144782, 'ab04d1cd865d236f61c751635a846a412f6521bd', '0e227b497c083a403d0fe88ffa8ff1bd5d45e15d', 1),
(9351, 1385144617, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'eceb8fc13805053ba0a64317a45f599eefc1be17', 0),
(9350, 1385144613, 'ab04d1cd865d236f61c751635a846a412f6521bd', '18b12668c926041af356fe8235f79682ceefa74e', 0),
(9349, 1385144612, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'b50c2353cd2f305026b65e130023191206a7a5f9', 0),
(9348, 1385144515, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'dd21a4bd20a8e80a903d64a36e39d9eb54253a9d', 0),
(9347, 1385144514, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'e659f385ad5566a0300330809f2b1a784dfec261', 0),
(9346, 1385144513, 'ab04d1cd865d236f61c751635a846a412f6521bd', '0cd093fbf3f7218c4d4ec02e3898f0ab7d4dbd26', 0),
(9345, 1385144511, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'ae769ea6e732bfffe8a17dd792a359858fbd7139', 1),
(9344, 1385144509, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'b8e907d7da5806b3dba71f9b17823d2915bce5aa', 0),
(9343, 1385144509, 'ab04d1cd865d236f61c751635a846a412f6521bd', '87a9f747cf1162d71c6fd52776caf606724223e3', 1),
(9342, 1385144507, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'ab53120de3dda79c25658fc1b074ae8b9ce9c9c4', 1),
(9341, 1385144503, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'b11bc2029e7a77b3bc58bc97789d19bee3c0e6e4', 1),
(9340, 1385144489, 'ab04d1cd865d236f61c751635a846a412f6521bd', '67b4279165db2bc6569f307f66965b208354997a', 0),
(9339, 1385144488, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'ff48daee0399d21cee3b6f962be8aa93d6e746ea', 0),
(9338, 1385144485, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'f9277fa24310e26502c986247103421a3b8b681b', 0),
(9337, 1385144484, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'bd9ff5ed5926db1672ff5fb4db0e8c28753eb973', 0),
(9336, 1385144484, 'ab04d1cd865d236f61c751635a846a412f6521bd', '69ef2c1694a63fed3ecae611030572ca9d5363ad', 0),
(9335, 1385144482, 'ab04d1cd865d236f61c751635a846a412f6521bd', '36ab5cd9ae9bf199284e36ff1ca6bac7f531bdfb', 1),
(9334, 1385144480, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'd85100eb29b86846c45f1732b4ff96877d425163', 0),
(9333, 1385144474, 'ab04d1cd865d236f61c751635a846a412f6521bd', '732116e889ca79f68edff91aadc7ae904e4e0611', 1),
(9332, 1385144409, 'ab04d1cd865d236f61c751635a846a412f6521bd', '902a8c2e89a8899aecadcffefded2c7f3ff15dda', 0),
(9331, 1385144399, 'ab04d1cd865d236f61c751635a846a412f6521bd', '6ddeb73eaf2dd1e73fc0a8674d0f7b68cbaa34fc', 0),
(9330, 1385144398, 'ab04d1cd865d236f61c751635a846a412f6521bd', '42f8b40fb538a8b0081a2670ac8022fd0bb39398', 0),
(9329, 1385144392, 'ab04d1cd865d236f61c751635a846a412f6521bd', '31109d86c72432aaca001d2d9193b00b40e72d47', 0),
(9328, 1385144392, 'ab04d1cd865d236f61c751635a846a412f6521bd', '021627ad0971c5ac839faf4d21d0ccfe01bf578b', 0),
(9327, 1385144391, 'ab04d1cd865d236f61c751635a846a412f6521bd', '27d29ceafb1a1e909b0198150cf238aebf1d4124', 0),
(9326, 1385144389, 'ab04d1cd865d236f61c751635a846a412f6521bd', '7e8993577d0441e5a1e40efdc89954ff196b3862', 1),
(9325, 1385144382, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'a100defc1734c0031fd0b89b9e3c33232e5a3170', 0),
(9324, 1385144381, 'ab04d1cd865d236f61c751635a846a412f6521bd', '1a61dbff9bb0f66865d5b35b9afda9457f829d9d', 0),
(9323, 1385144334, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'df969618da91ea28f840513db630e4f5377c6376', 0),
(9322, 1385144334, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'f932139c7413b921a729459b039189534bcd9fd6', 0),
(9321, 1385144333, 'ab04d1cd865d236f61c751635a846a412f6521bd', '5b9e6b4fe847c2fab6bf413e3dac0dc9b50640ad', 0),
(9320, 1385144331, 'ab04d1cd865d236f61c751635a846a412f6521bd', '0a251ba0cc93fdf0c5cc80054351d97ff4824250', 1),
(9319, 1385144328, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'c883acccbc5103c6388de33209b385a62eb63c45', 0),
(9318, 1385144324, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'b800cdbdddf227598dee1d4cb9f7be42c727856f', 1),
(9317, 1385144301, 'ab04d1cd865d236f61c751635a846a412f6521bd', '0c514a6881993f22a4d6803d39ce85b08c990750', 0),
(9316, 1385144298, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'f1347386864a7a2c7a367456dbf179eab1eed7b1', 0),
(9315, 1385144297, 'ab04d1cd865d236f61c751635a846a412f6521bd', '91c447f4c2d2b4ff101d2a792edbd59ef0e04179', 0),
(9314, 1385144281, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'cb2826b7b32441b985cafdcf31a8329ced51ecb7', 0),
(9313, 1385144281, 'ab04d1cd865d236f61c751635a846a412f6521bd', '28c3c62da266b92efd594dd02a7cbb50373b6710', 0),
(9312, 1385144280, 'ab04d1cd865d236f61c751635a846a412f6521bd', '09ee198dcdb2f1e9edea4ae30e644ca87cbd8a84', 0),
(9311, 1385144278, 'ab04d1cd865d236f61c751635a846a412f6521bd', '451d37dda961a26bc0a03abb8cbb0fdf59b408ec', 1),
(9310, 1385144275, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'd0703e6e671409fc976eaaf140cc5c25937de37d', 0),
(9309, 1385144272, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'aa974cd9f248c9830d972a5afbfaa24e26822930', 1),
(9308, 1385144130, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'a9e21a9841b7ce5daf3e48157d6c518f97f0e58f', 0),
(9307, 1385144126, 'ab04d1cd865d236f61c751635a846a412f6521bd', '95cb8673220c057ebcebb3f52aaa149fcdabcbb3', 0),
(9306, 1385144125, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'ece6f30f282258bc3cac916152abad33a6f7d4b9', 0),
(9305, 1385144105, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'b6dcc65d19a6dc305ff966ef390d4d88d90ef7e8', 0),
(9304, 1385144105, 'ab04d1cd865d236f61c751635a846a412f6521bd', '5fa45def9e62471bf87dd310504bd6b90003efe7', 0),
(9303, 1385144104, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'f2c4fa9a76f9993ffe43658dde01a094bcfee186', 0),
(9302, 1385144102, 'ab04d1cd865d236f61c751635a846a412f6521bd', '749ce5eacf1eec230949bdcb0425c1e01e33ae8a', 1),
(9301, 1385144099, 'ab04d1cd865d236f61c751635a846a412f6521bd', '56326980c5028e553deedc5066cb5c755fc045a1', 0),
(9300, 1385144099, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'f20910d7a112092eb10cde45c4301f62777de002', 1),
(9299, 1385144095, 'ab04d1cd865d236f61c751635a846a412f6521bd', '785c14f22aae001dc6117b081b95fb05afeac652', 1),
(9298, 1385144043, 'ab04d1cd865d236f61c751635a846a412f6521bd', '2eaa52509cf13130ec782ae2329bd1493dca3778', 0),
(9297, 1385144042, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'b6248f6e880ef0ff833aee1fc2469d29392df0cb', 0),
(9296, 1385144040, 'ab04d1cd865d236f61c751635a846a412f6521bd', '25351f1520bb7fe5cdd7e21a356a715ca016513d', 0),
(9295, 1385144040, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'e697f2d22ba6ae7c1b64709f2a632b88f8ab1c0f', 0),
(9294, 1385144039, 'ab04d1cd865d236f61c751635a846a412f6521bd', '43c8da3538d9f960fc2f63d475ac9dd0a4b569b3', 0),
(9293, 1385144037, 'ab04d1cd865d236f61c751635a846a412f6521bd', '5aeea716fa284f6add0fb84a90229ad4cd63a0a3', 1),
(9292, 1385144033, 'ab04d1cd865d236f61c751635a846a412f6521bd', '4ffce9be77d48250903084ac35eb7c48be87c59c', 0),
(9291, 1385144032, 'ab04d1cd865d236f61c751635a846a412f6521bd', '2ad75c7fea119393035e271d12efd23828328ec5', 1),
(9290, 1385144027, 'ab04d1cd865d236f61c751635a846a412f6521bd', '90634f3672a34eb3b8ae5ba68ba9946d707e7644', 1),
(9289, 1385143696, '0', '28f7353b31a7aca2fd50738759934676ad6418d3', 0),
(9288, 1385143686, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'ada857ba0bd86cd0412356b919395429e70edb76', 0),
(9287, 1385143674, 'ab04d1cd865d236f61c751635a846a412f6521bd', '429addd755c8ace930f13ffb6f3a1d166be62acb', 0),
(9286, 1385143673, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'a6ac51f726e969d19c051094d206beee5a095bdd', 0),
(9285, 1385143672, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'dd928ed4c785318f3ba3135038f4da0f9ddd5a43', 0),
(9284, 1385143671, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'c711d0a5a074c3fa1d342e7ca8693a3596b894f6', 0),
(9283, 1385143661, 'ab04d1cd865d236f61c751635a846a412f6521bd', '853f84efbb669b4bdb2ffbba3a3076b43b62442e', 0),
(9282, 1385143661, 'ab04d1cd865d236f61c751635a846a412f6521bd', '6b46ae10897941d661f61575fe188a04952a6c9b', 1),
(9281, 1385143657, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'e65150c74c6f7f53d6906c51a36d1fd579380c27', 1),
(9280, 1385143653, 'ab04d1cd865d236f61c751635a846a412f6521bd', '424d1eb1622a66074d141c871d05a5acecdaad3c', 0),
(9279, 1385143653, 'ab04d1cd865d236f61c751635a846a412f6521bd', '24ee6778f933fd183e9b0e8d148a77b9433cb3eb', 0),
(9278, 1385143638, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'e9afb73ec57dc0fae986936787174be677ae45dd', 0),
(9277, 1385143637, 'ab04d1cd865d236f61c751635a846a412f6521bd', '3c61828474306debb8eae09bf88b45387d1b8fbc', 0),
(9276, 1385143636, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'f0dd6aa1295d4365625d5fe5949a56983a4f8414', 0),
(9275, 1385143635, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'f8b8e798ade708c2d6cd51af96fbb069eaa9a680', 1),
(9274, 1385143631, 'ab04d1cd865d236f61c751635a846a412f6521bd', '2ce8eed99bd3aec9ec7c9528891f814d013393bc', 0),
(9273, 1385143625, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'c5adfc0ad5dbe8eb6dbb7f13d17204c5489c6986', 1),
(9272, 1385143620, '0', '0af333ceb972b161e3c3f890fbc43938c9f62f5d', 0),
(9271, 1385143605, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'd51e8cb9c9bd353f862cd63c87982bec74e1a1e6', 0),
(9270, 1385143605, 'ab04d1cd865d236f61c751635a846a412f6521bd', '4d9b33c858bd91894ecffdb024558035327f7361', 0),
(9269, 1385143604, 'ab04d1cd865d236f61c751635a846a412f6521bd', '5e9387a75c2dc7dfc937ac8e726a523872a07419', 0),
(9268, 1385143602, 'ab04d1cd865d236f61c751635a846a412f6521bd', '5c80a2a8735763eb7d8ab7d75b70549258dc39f5', 0),
(9267, 1385143593, '0', 'f2c52bf05ff1af9cddfc1b19cef3ccb098f0742d', 0),
(9266, 1385143577, 'ab04d1cd865d236f61c751635a846a412f6521bd', '8f6cf1ce80f3038ec271331e8a151b53bbbbd8a2', 0),
(9265, 1385143569, 'ab04d1cd865d236f61c751635a846a412f6521bd', '926a701278d2e1ed5948c699695d6c4fbbe7a133', 1),
(9264, 1385143545, 'ab04d1cd865d236f61c751635a846a412f6521bd', '681f5444ad265930111d0a9733dcd789663509b5', 0),
(9263, 1385143536, 'ab04d1cd865d236f61c751635a846a412f6521bd', '5f7acb9a40a797e3e30fbd582fe34c524055a703', 0),
(9262, 1385143536, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'c7e59fa1a7ebc9060cfa53d31499acad3642b10e', 0),
(9261, 1385143535, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'a71ee7dcad49a171fcf945be2e82eb674b119ebb', 0),
(9260, 1385143533, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'b8c41b809a88168d5773a7b034984c11fc81266a', 0),
(9259, 1385143530, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'aec7f0ed229e24165bef02d2bb82bc20b967975e', 0),
(9258, 1385143526, 'ab04d1cd865d236f61c751635a846a412f6521bd', '576fe28f884435f3b7eb8b469abe878672473b3d', 1),
(9257, 1385143522, 'ab04d1cd865d236f61c751635a846a412f6521bd', '01cc855119173faa582a87bb27a5086259770aee', 0),
(9256, 1385143521, 'ab04d1cd865d236f61c751635a846a412f6521bd', '72108eaadc6d57262b115f27d74296f489e89e1d', 0),
(9255, 1385143498, 'ab04d1cd865d236f61c751635a846a412f6521bd', '6a006a8ad313875f89462dbf555d812bac48afcb', 0),
(9254, 1385143497, 'ab04d1cd865d236f61c751635a846a412f6521bd', '16b7d5fa36b03a555b524233485279c84f16c9c8', 0),
(9253, 1385143497, 'ab04d1cd865d236f61c751635a846a412f6521bd', '40e0a05de600bc2935f38ae42840b5ef5322b8f8', 0),
(9252, 1385143495, 'ab04d1cd865d236f61c751635a846a412f6521bd', '4a0f15e171a22f3f7c0753499ba0881be3cedb0d', 1),
(9251, 1385143488, 'ab04d1cd865d236f61c751635a846a412f6521bd', '77b11269c611da80c01c4feeb91f95f1b5174a8e', 0),
(9250, 1385143487, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'fc5a5bf691280de27688d50a9620bb5422ad5cde', 1),
(9249, 1385143483, 'ab04d1cd865d236f61c751635a846a412f6521bd', '1784dda65ace063025d9e6ec6764dda1cdf43b89', 1),
(9248, 1385143419, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'a430204b2c7c1e01bbfe28f0cbd974462e686c5b', 0),
(9247, 1385143415, 'ab04d1cd865d236f61c751635a846a412f6521bd', '6151aeaa2b5237c07875d0c3bc71777a41680ea9', 0),
(9246, 1385143413, 'ab04d1cd865d236f61c751635a846a412f6521bd', 'b66ff0c9a66be649f669892d941a5b96ba8bbea7', 0),
(9245, 1385143409, 'ab04d1cd865d236f61c751635a846a412f6521bd', '6da18643dcc4eaf9bfe183f36d48fe3f74c3ac7c', 0),
(9244, 1385143399, 'ab04d1cd865d236f61c751635a846a412f6521bd', '08a8f4598057af0fd69dcb277e7378fe91892f78', 0),
(9243, 1385143380, 'ab04d1cd865d236f61c751635a846a412f6521bd', '04bfff2f6eebf900dd08d1da8f69644f4d53dd58', 0),
(9242, 1385143379, '0', 'b80068fd68f5c34709179239c31119d353be7c92', 0),
(9241, 1385143367, '0', 'fc7e71bda1f664d5f80acf3958ac25fd04080d1e', 1),
(9240, 1385143367, '0', 'e40222a6221e57945422e16257d7001f1bc8a6aa', 0),
(9239, 1385143366, '0', '09d4653aca9bbb7dfe6eedee3fb2880e60d8fcde', 0),
(9238, 1385143273, '0', '9a3f25428b9253fefa2d823d54b0922bb0464777', 0),
(9237, 1385142757, '0', '37663cbf43c4616f3773b9240cbdb7758a0dcddc', 0),
(9236, 1385142757, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'f2461d1dd7d41aa941cc39298174c7ea5ecc661e', 0),
(9235, 1385142728, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'c15b1df72fdcb7309ddb73dbe9740ada8c1abf86', 0),
(9234, 1385142727, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '0779266f9b71863dd4dbe30a83ad30105c211ad5', 0),
(9233, 1385142720, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'c4753b03a9c176a53cdd25593cd5f506904c14e1', 1),
(9232, 1385142653, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'd7294754d612b1186cb27c7266c22c35a00af13e', 0),
(9231, 1385142653, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '73067eb4447a2abd0a39e16e743ce59e288bbcf4', 0),
(9230, 1385142652, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '3840dc4c000fcaca069e6f5a00fca24467818f40', 0),
(9229, 1385142650, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'e9effe585d84144064c136f9a1d0d99fea76f423', 1),
(9228, 1385142648, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '93b626042e8c75b5669110430bc2b67f0e98e611', 0),
(9227, 1385142647, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '74fa64da7a3693f35a3e7d3db9d31da2d1b891d0', 1),
(9226, 1385142643, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'a086d6e272c97742125d3b0c3225f8fb795b3c48', 1),
(9225, 1385142624, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '5dfbeb106f337ced98187ea8e8b80004d1662cc9', 0),
(9224, 1385142615, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'd9f0f33579c27d11a95b3d5d0f52fef03390331a', 0),
(9223, 1385142614, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '6802f9de16aeec1dbe19911710b477f978c7c610', 0),
(9222, 1385142553, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '1ecfdcf41f4c2c6083d782d1d0599406a9c31035', 0),
(9221, 1385142552, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '674236a71de21fd80cec0e34f8bfd3899cca9f59', 0),
(9220, 1385142551, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '0e5bb1da018f857230f47d3d8151b3d41f68611a', 0),
(9219, 1385142550, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '913d5d8eb93f02e08bade2d69c02614246622ba4', 1),
(9218, 1385142547, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '426a62bed05b87774137e8637153c9ece037c645', 0),
(9217, 1385142540, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '32bd495afe18c78d02970ae351dd7e887b7c2e06', 1),
(9216, 1385142532, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '120e19b2bd8b473eb62cee98b569e81468e23d77', 0),
(9215, 1385142532, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'cbedd7e4a17ffbe42dde09325204c7cb613009df', 0),
(9214, 1385142461, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'af866241b5e912b8d24415f3eed68003906a71a5', 0),
(9213, 1385142461, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'a38a39a4798aeaf4b7bdc442b03a672930fce7c4', 0),
(9212, 1385142460, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'cd460e7f420cee4f875c69cc370e3c4ecd39899b', 0),
(9211, 1385142458, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '553ff77f42c6b4d7f907b7bf695dbff0d07d6414', 1),
(9210, 1385142457, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '59d814ba1ffa371e5a581cfff322b3b459e5c38f', 0),
(9209, 1385142453, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '10cc99b9da5e9ce0c39c6d71d4203c2a972f2d67', 1),
(9208, 1385142322, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '77d218d13c6c7f1f66864e521effffb8f57893d3', 0),
(9207, 1385142316, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '427c7bc9e7cf5dcb43080adbabb9cad09b12ee03', 0),
(9206, 1385142315, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '7cf88dd73421e15b641933c3d806ecbe17e03552', 0),
(9205, 1385142256, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'c4e9b2493c20363ade7f4f5691ec4d8862f2c592', 0),
(9204, 1385142255, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'd513368cbe0dc9cfab393a237671dd3f9db0affd', 0),
(9203, 1385142255, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '7203899bb80a23397ca03cbd916665670fddf253', 0),
(9202, 1385142253, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '1a8234e7da9c0021fc7f3a769de3435eb5f9930a', 1),
(9201, 1385142250, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'f7cfa541bc9feff1b56f2996a1769b0bf86b62fd', 0),
(9200, 1385142250, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'b75265dde8c33651680db4dc7cc5579d8acd8a79', 1),
(9199, 1385142246, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'bcf171c429a29cdf025d64a0c269108de6a9878c', 1),
(9198, 1385142133, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '8d8545d5304cb98db91832431e8f149e2b66750b', 0),
(9197, 1385142128, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '2ea41fee697a186399f890f6f0d75b45f83ef506', 0),
(9196, 1385142127, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '09d41f2d2c42ecc1fd518398df0ac156dabf1af0', 0),
(9195, 1385141979, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '1d120a3efb42bf504fcf701e498850c051d449c1', 0),
(9194, 1385141875, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '3562b1083e3aa2cf194ac375b4946d6099df4a9b', 0),
(9193, 1385141874, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'a7801136e8ea9cf2e17a117c6eb94a0e4c0b64ed', 0),
(9192, 1385141873, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'fe6178ca3d289a3c82359f33dfbb767ed3d740ab', 0),
(9191, 1385141871, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '5e9e498b888e99b924f370a8cbeebb9cf718a8c7', 1),
(9190, 1385141868, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '805b9b661ffc47415960aaf96fa1c159f8c2d105', 0),
(9189, 1385141865, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'b86676ab77b980678455c1622f5dfd0082c0677f', 1),
(9188, 1385141862, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'c636f1369399df38bceffa60621869ba8486b82d', 1),
(9187, 1385141695, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '10d75395402817ae4214fe2f485678b74e527abc', 0),
(9186, 1385141694, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '0fdef61894655a4acaf8b42b5d66bff73a1e7f26', 0),
(9185, 1385141689, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'a599d2e84669746d702f022fc889ba98bfa48297', 0),
(9184, 1385141689, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '0eec56f2d2b2b2a7b5b43886f496de0628338f77', 0),
(9183, 1385141688, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '96b96492752ca15980a03f87db67987d5042a3f4', 0),
(9182, 1385141686, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '25e651d956d41d2b1ebbf6e05c75c4d734316096', 1),
(9181, 1385141683, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '88ff8b681fd968a3fe6811890e256c3dc48cda6e', 0),
(9180, 1385141683, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'a39e9035418fbd4f58076e3b437f990e7f87f6e5', 1),
(9179, 1385141681, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'c5fa7e96af644ef420005c6eb83961afd067c156', 1),
(9178, 1385141675, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '9057248cc166341023514e665247f15ffad85f4a', 1),
(9177, 1385141588, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'edaa8a7b04de1df24d443aa98aac0e5f41c3b4d2', 0),
(9176, 1385141587, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '22bfd139449d50739951786b13e1c913b5435e80', 0),
(9175, 1385141586, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'ad48758cb59a447f7bd263892df7306ca2acc9c4', 0),
(9174, 1385141585, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '06164a396265ca0f454a26588bfba404e093661b', 0),
(9173, 1385141584, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '67aad56aaae8446cf6de120306772b2de6e2c858', 0),
(9172, 1385141582, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'ff907be1c3ff879b469a891449bda7407ebb8ecf', 1),
(9171, 1385141580, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '8b1cac7694def39684d6a8df72ce4a1293cd8913', 0),
(9170, 1385141574, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '290dc69807c5a3496d9954769df1a08447488a71', 1),
(9169, 1385141558, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'ccdd8b70f668c20811f64c9f95e02108b983a218', 0),
(9168, 1385141540, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '48f2fa88c97b15fb9939c7d21b037266e8256b4d', 0),
(9167, 1385141539, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '3958e46dccb0dfd9a601cc70b91f74ce6744a47a', 0),
(9166, 1385141530, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'ff6d10ac66ab29f7f64060f471fe53573dec5ba5', 1),
(9165, 1385141444, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '21b89eae87f92c462e2819f2a8f4ca400058b68b', 0),
(9164, 1385141443, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '42f7d3e90f08dc6e22f11e77177124b1092c537d', 0),
(9163, 1385141442, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'e1651693b73b8c8ab284c649a7aff1c92e1c0416', 0),
(9162, 1385141441, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '22b44b4549d26d07de8662b8342a1738b5ca35fc', 0),
(9161, 1385141440, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '27f26a7cebd56716c7580463e74f63164bd33213', 1),
(9160, 1385141437, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'ccfc6101c44c6b65f1ddf817bb03e264c0e55995', 0),
(9159, 1385141433, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '2e3e704af4fae1e6c912e08a1915052a09be0d3d', 1),
(9158, 1385141418, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '2e158f135138e741f98b0146502bb7b072392b0c', 0),
(9157, 1385141415, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '6ede603b5ac16c136e08202f9cecd60a6daeb32b', 0),
(9156, 1385141414, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'ed3c895ef3c7915f0ab227b08613e6cd142dab66', 0),
(9155, 1385141373, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '05cf956cc210e135dbcfbebc34aed69a5dc88d45', 0),
(9154, 1385141372, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '55985a015699283703a11e389103b2a6700e3d36', 0),
(9153, 1385141371, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '19fdb5f21e2a801fe82b2f7b64acd4af9e7c8e9c', 0),
(9152, 1385141370, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '99eb8677a0228d21e8450c400d2b0d51c088314f', 1),
(9151, 1385141367, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '87878a6cd23a4889dd429e0db73a65e584745c68', 0),
(9150, 1385141366, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '3a8751da80f03ab35f029517d8d909d02999dac8', 1),
(9149, 1385141362, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'af539c68901e2f24e858f90676cb836cd55aca7b', 1),
(9148, 1385141345, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '0fb5ea70505bb242e4982307c5472868b126451a', 0),
(9147, 1385141344, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '764b2a4a6465118997730e5d4e3e4ea9f444800a', 0),
(9146, 1385141340, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '4c9ad52e69f360a1bcc02af34f7fa37ff153a25b', 0),
(9145, 1385141339, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'a05dbdef972268bb71e2578b0826ac829ad7d401', 0),
(9144, 1385141339, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '82805f9bc2631b3ff57e8d0f19393dacb669333e', 0),
(9143, 1385141337, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '076edada9f26c4bd9c707c4dda15e110844b94ea', 1),
(9142, 1385141335, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '5b16372d770d4289638ba1d427fc9457133302c4', 0),
(9141, 1385141334, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '51a842c05784e4ed017d1a4ff4c1e2dfa65a55f7', 1),
(9140, 1385141329, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '40584c7842389d02b8b5dae7b0fcc30ce4bfd890', 1),
(9139, 1385141185, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '55903a0da659ba64d4da8a8dd9dcd2f9a9ea569c', 0),
(9138, 1385141182, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '156a822f709601b6953bb09733b2626653503280', 0),
(9137, 1385141181, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '3009ba94d8cde2399944ca6057c84862dc0ed366', 0),
(9136, 1385141176, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '6cff2a93769f19fcf513540ac0468ad6ea013465', 0),
(9135, 1385141175, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '36e042b228c4cf640fe5c7a8214ff581422cf8ee', 0),
(9134, 1385141174, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '289e6a91a120089417b61f918677fb5c50f60f43', 0),
(9133, 1385141173, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'cf5f2aa03b10622a303673d42c45ec3174202f06', 1),
(9132, 1385141170, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'f901c8bfc431d257d6a9d1ea86050707ba8676f2', 0),
(9131, 1385141166, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '6c4f4d2f8e0934084b909242dab8b1095d8d3eb9', 1),
(9130, 1385141120, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '466fb5cd2dbafb28eb550eee0943cb8ea6829ccd', 0),
(9129, 1385141115, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '3b645660985337a586b2de2d43a350d3692f9158', 0),
(9128, 1385141114, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '58998b2d0f2dd19c4a53772728198398a6907f90', 0),
(9127, 1385141110, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'a81c6ff23fffd125aaeba60930ae46098f678466', 0),
(9126, 1385141109, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '891351d7f3bbf0e9d41e9c81bdaba39b57f54290', 0),
(9125, 1385141108, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '3cc48afb0929479aba818a9c4e2fdeb343d52354', 0),
(9124, 1385141107, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '42046e60ded852ebd7c3baaaa8eefa763bb69502', 1),
(9123, 1385141102, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '63b54d8657e75ff38d4e647884cf2ecc5afd8ba1', 0),
(9122, 1385141097, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '98bd13beab2fc159654bb8cc3d5b323e798d03ad', 1),
(9121, 1385141056, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '645765b113d3f828d41de39c21936dae2a4c878a', 0),
(9120, 1385141051, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'f4ed141c6b45289d9f8dd41c930962c5ac853b1c', 0),
(9119, 1385141050, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '0ee5e4e96e92651e833177a1fd5ca0c5d3cf6781', 0),
(9118, 1385141013, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'fa84af47af9ee46b7fcad707bd2f7596cb35c967', 0),
(9117, 1385141012, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '28311a61c04c12fd3b773df5a03027dffa78f51d', 0),
(9116, 1385141012, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'd573577d2b05ba4cb5bc39b24414d4181b03ec87', 0),
(9115, 1385141010, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '2444decb8f78668f74ab8c99c1bec3ea4a3eef3a', 1),
(9114, 1385141006, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '843b1974862cf5304fb9eb98bfb654079e80ee9f', 0),
(9113, 1385141003, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '6a2d636f72191444cd10bce8ddfa97ab1dee4f4c', 1),
(9112, 1385140999, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'e855083b4a2901c86a427640f28a026da94c23e4', 1),
(9111, 1385140993, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '912e59b62154acfd659f9c3ef99979cea5fec1c1', 0),
(9110, 1385140992, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'f105bbc70e7c70e5ff66e73e3c41d38cfe0c707b', 0),
(9109, 1385140886, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'd4b3751f9195af50637ecb3d05800e1d0b1964ce', 0),
(9108, 1385140886, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '8b1df7df11f61281bb550d8dbbee4aa939da1c4e', 0),
(9107, 1385140885, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '0d7e0af450521cf9e4b5059c3459606314d6b5fc', 0),
(9106, 1385140883, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '7a164461f85506e275a07a39f6523b972095aa0f', 1),
(9105, 1385140878, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '477ec2e68ed6d6b922b9a1f8539f82d88dc9aeb7', 0),
(9104, 1385140876, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '90aa49debf2024705bfd242266f0e07a0c36f79e', 1),
(9103, 1385140876, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '8a7fb9b8d754218a4e8a04f7e1d262cc9b655863', 1),
(9102, 1385140875, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '7a3dcae2e60340fc4d47471d4d3149e205b88c7e', 1),
(9101, 1385140873, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '967bb1bc974afd51fa568f5ca5a72f9df6c574b1', 1),
(9100, 1385140838, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'dbf0486b2032e680e42d700e290e6bc7da90ae1b', 0),
(9099, 1385140833, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'f84be93519f755f6a56e98863f6db3b0d352d11d', 1),
(9098, 1385140807, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '5e875f452a027b317048dc456f446f76f2d7da8b', 0),
(9097, 1385140806, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '889db49fa161a0e204703db82ce02010acb57a17', 0),
(9096, 1385140782, '0', '350538b07ffed4e6279555bfb18e833bf0eed1c0', 0),
(9095, 1385140754, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '2ceb63a6e472d4aed88b858ef3ed6479d562f5ef', 0),
(9094, 1385140754, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'a3acba616089f27308066552f1bc827cdc7434df', 0),
(9093, 1385140753, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '30e555e7fd84c67823b35682df2bb58d9d268934', 0),
(9092, 1385140751, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '714cd20653d80bd1fceb47daac2b622e521f7ce3', 1),
(9091, 1385140747, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '1435c8a0a03411cd531923a8589774b69b0e1313', 0),
(9090, 1385140746, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '0cc9f09f445ccbf160909ac50092f74595d5b9d6', 1),
(9089, 1385140742, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '586f4199fc6d9d60c4c1a796de8bfac3636c1bfa', 1),
(9088, 1385140690, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '2237fa3a622985dfafa8204fbb2d44c983345210', 0),
(9087, 1385140686, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'ba2ebd445e862adf30f082f503bca7ff4c35a61a', 0),
(9086, 1385140685, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'd11932b5445b10ae9e9f1e9f5d75292d3550bb70', 0),
(9085, 1385140634, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '27839f3049f949d89ea2b45cf02596e31ab65e3b', 0),
(9084, 1385140634, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '3334cd7bb3f28b831b8eda1b513f741ae1c5101c', 0),
(9083, 1385140633, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '4d84874896c80d68b1684154c201fd60e2f272c8', 0),
(9082, 1385140631, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '492f5841d710e923dcb2dfded4fa061d73940779', 1),
(9081, 1385140628, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '4c36a604a957cc7747d3f45663cb93d23670c086', 0),
(9080, 1385140624, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '33ede646536a4595ad7b537b78518a77d37d0a90', 1),
(9079, 1385140601, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'e1433c6ca82eeca76eccc94071c234aa415f02ab', 0),
(9078, 1385140594, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'fb3908f316f0d5c2071fde836588b7c7ce441780', 0),
(9077, 1385140593, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'ff140cfd5af2e3179e644af10e76ff849dd0f739', 0),
(9076, 1385140554, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'dfc3685a666db1a40a701e207b7dc7e7099b0b64', 0),
(9075, 1385140553, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '50b5427711b87749a5642268f7b9c666c326dff0', 0),
(9074, 1385140552, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'a4daa5029250a3982750e2149fd6e53b1a4a756e', 0),
(9073, 1385140551, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '1980c173421c8a3aec7e834bf02eb2e9b5b44b81', 1),
(9072, 1385140547, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'ec2561494b1515c17a8ec7d7f7632c485296becb', 0),
(9071, 1385140544, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '162bed9faf0043b5670ff5cd1f19d5e165bf469f', 1),
(9070, 1385140526, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '360cc0d7a2a4ab6cb2f836367f37253df282bff8', 0),
(9069, 1385140508, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'dfbec404652ae52d1cade663a17aeb8af535348f', 0),
(9068, 1385140506, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'a0d8f5924badd645765ce0c254ead0158129d8f8', 0),
(9067, 1385140505, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '26fe1e99ec422237219a5ebe2bf525546af79c9c', 0),
(9066, 1385140504, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '28b9e609bea656ba8aa7c7d99c0706963fa45f0a', 0),
(9065, 1385140503, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '1717916b88ac24175cda4cd545b8aa30578c4d89', 0),
(9064, 1385140502, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'a161ec2449ea143e5e036c4f89bf2bc58626da21', 0),
(9063, 1385140499, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'dd701d23185f3a1f1d09f523198b72bb203672fc', 1),
(9062, 1385140498, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '0cad5fbd62eafa4989cd51e3a784143796f89ce3', 0),
(9061, 1385140495, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '8274ed2847ef33fb7466970477c65179733a9b4d', 1),
(9060, 1385140494, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '2a4e7ca86b2946c2989e022226ccf3328b5060d6', 1),
(9059, 1385140485, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'bfa6a33a08e6629827e3cceb33cbc35d693fbdef', 1),
(9058, 1385140482, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'eba8edd3aeeb4807021f889a380d7b7b2589b7a7', 1),
(9057, 1385140477, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'b59f24f64a3bfcc34b44372c2701da55ed491426', 0),
(9056, 1385140462, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'f0214532317ef8d2d36642050889c052ee2f77fa', 0),
(9055, 1385140458, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '9db55c9309bf9e8f8d9d891845cb4358458eb64e', 0),
(9054, 1385140457, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'c12593ab058e75c2450eae812eba3a0730363611', 0),
(9053, 1385140449, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'f1da751cd7db0a9afe28ac194617a981e3026479', 0),
(9052, 1385140448, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '2333f5ac9d3c597a828c9f87ae5645f9d3464fd3', 0),
(9051, 1385140447, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'c58e3ee3ce15d952de7f2e65277ae460caae0f54', 0),
(9050, 1385140445, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '1ec719f1d9036cad21df6c40e90753450caaddfd', 1),
(9049, 1385140442, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'a3d753b0217621c07ae04b4fff4b48e85b56280b', 0),
(9048, 1385140437, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '5000f942fc7c7af4dc3c94eef239f14440aabdc3', 1),
(9047, 1385140424, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'd4c1db74b0001bbe38a895d006a8a595d4770b09', 0),
(9046, 1385140420, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '3cfa773045bc01cb99b9594177e04cbe706c7cde', 0),
(9045, 1385140419, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '0e4cb4f7a9bad9c68d0c50e2e0df510d1568aa10', 0),
(9044, 1385140395, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '1dfca66317f49bcc2e868f845a6e96876cef04eb', 0),
(9043, 1385140394, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '5400485954912506be3ad1ee64f1e7272e08b5aa', 0),
(9042, 1385140393, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '3b0eac3444aa51f57b9957827a30b9392ccaaf40', 0),
(9041, 1385140391, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '3be16d47bb6c601657edc50076415d01ac606cd9', 1),
(9040, 1385140379, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '669f4e4c2332591fa61f5f766644847108cbdf32', 0),
(9039, 1385140374, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '148a24800a4d569fef7c4948fd406cbc7f4ea024', 0),
(9038, 1385140373, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'bd601951918643cc67661d08622df43c7622c6ec', 0),
(9037, 1385140294, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '253e6ff1caa033d790408ea8492e1bc17d718993', 0),
(9036, 1385140194, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '27d8848519bb2cf2e3b8f721f999ceee6311d15b', 0),
(9035, 1385139715, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'acd529866f04a206ab5617be260728a2d2751274', 0),
(9034, 1385139715, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'c9f2610af5403c4b3af37b583f53f74b9961efbc', 0),
(9033, 1385139714, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '67600234005d041be077313662fd6814457163b3', 0),
(9032, 1385139713, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '819ddc8f50a367a55eb5978dda194a83a0d2bdfa', 1),
(9031, 1385139707, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '29f485a1cd38c286fb8df48b62dcafc54db02b86', 0),
(9030, 1385139706, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '7fcc0eceb8c18b44567cb3c6891b7a43478f8cbb', 0),
(9029, 1385139698, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'eecfea1ead3c18c312fd36d082547ca39b119102', 0),
(9028, 1385139698, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '7cdc75448c47cee8fb03cfad4949601dc133b925', 0),
(9027, 1385139697, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '9e8219778395b41e84388f82193604317e210847', 0),
(9026, 1385139695, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'b4318e20f06c448fe8535ae6d80f928a64358a5c', 1),
(9025, 1385139691, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '91700af3559f7545aaeafeccffa23b65eba14628', 0),
(9024, 1385139687, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', 'e0ac81c1c4a5a71589a31aa67940f11178f21b5b', 1),
(9023, 1385139683, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '3effaef3e02d36eebfe5951a7ad2534aaec0ebf1', 0),
(9022, 1385139678, 'fc05b86bb997e7446dd98118b7c38ccb670d52e8', '246777ac955a4d261f208dce3a63fca171d8342a', 0),
(9021, 1385139677, '0', 'f94cd1e2723c6abc46b13e689cc488d6c303def6', 0),
(9020, 1385139659, '0', '200527f4227c5bf67c3a5b21c496f9b1f9b8eb29', 0),
(9019, 1385139659, '0', '7876677f49690d53cc875002d3b44791942d8785', 0),
(9018, 1385139659, '0', '97958ac14c7f25958b3e7eee676dbe0b79475550', 0),
(9017, 1385138980, '0', 'daad52bced20394b35666dad4e3358cb62db4ee5', 0),
(9016, 1385138980, '7690da5f0f111ac1835e22d9b6be882325afc52b', 'd5129d6ad3128f60c97de1db63cc4de8ab250bd6', 0),
(9015, 1385138976, '7690da5f0f111ac1835e22d9b6be882325afc52b', '740fcfa318cac39c39bf2873f36e28f729cafb02', 0),
(9014, 1385138975, '7690da5f0f111ac1835e22d9b6be882325afc52b', 'c7ebac3811e8fa5b45425b091599ee0a776488d9', 1),
(9013, 1385138945, '7690da5f0f111ac1835e22d9b6be882325afc52b', '83a25a92119b93146c868e18e7a0fde96d2441e7', 1),
(9012, 1385138928, '7690da5f0f111ac1835e22d9b6be882325afc52b', '29981e202982dda032aafc3e0cc35df6d2b01991', 1),
(9011, 1385138906, '7690da5f0f111ac1835e22d9b6be882325afc52b', 'dce4858576755240d848684071303d607685125e', 1),
(9010, 1385138893, '7690da5f0f111ac1835e22d9b6be882325afc52b', '8f2a733f542faefe43e0f1cda629b5934c43ee79', 1),
(9009, 1385138881, '7690da5f0f111ac1835e22d9b6be882325afc52b', 'c1471db0c5619ecb34821017edc38fcf4c24bb35', 1),
(9008, 1385138876, '7690da5f0f111ac1835e22d9b6be882325afc52b', '7d8a8dd1c47c189213b883b4cb11e37d1296b91c', 1),
(9007, 1385138870, '7690da5f0f111ac1835e22d9b6be882325afc52b', '3d15c8dfb96583b5d1d947c2474180e6f17b5a27', 0),
(9006, 1385138869, '7690da5f0f111ac1835e22d9b6be882325afc52b', '553cc3f8eafbeda1ec6ffc16d23ff95c24b480cd', 0),
(9005, 1385138846, '7690da5f0f111ac1835e22d9b6be882325afc52b', 'fda2ef4fe21c0656d7ee2ac7e5630dda2579def8', 0),
(9004, 1385138836, '7690da5f0f111ac1835e22d9b6be882325afc52b', '74445d5b8997732830d00e6b4546252a48514789', 0),
(9003, 1385138799, '7690da5f0f111ac1835e22d9b6be882325afc52b', 'ffb37be0720328665eacdd44fceff647513f2aa6', 0),
(9002, 1385138799, '7690da5f0f111ac1835e22d9b6be882325afc52b', '9529a1314a134017b10fa703842645aa2aa48971', 0),
(9001, 1385138798, '7690da5f0f111ac1835e22d9b6be882325afc52b', '7b4b26fe8cd5627852ad8371e7fe8e574c051381', 0),
(9000, 1385138796, '7690da5f0f111ac1835e22d9b6be882325afc52b', '1b58728e7bad47337d5483df77781313e314438f', 1),
(8999, 1385138791, '7690da5f0f111ac1835e22d9b6be882325afc52b', 'f9c285aa0c3ed9be79986eb79973fd07c89685a2', 0),
(8998, 1385138790, '7690da5f0f111ac1835e22d9b6be882325afc52b', '5c8c522d7da81723159921eb9a66e697b8d9c8cc', 0),
(8997, 1385138762, '7690da5f0f111ac1835e22d9b6be882325afc52b', 'd2214608a1f7cdf4c2cb418acd5fd6d3683fd32e', 0),
(8996, 1385138761, '7690da5f0f111ac1835e22d9b6be882325afc52b', '5ef304ef32d61c5024ea1dcbcb95fb407b85ea55', 0),
(8995, 1385138761, '7690da5f0f111ac1835e22d9b6be882325afc52b', '10c0b60b5d92c9136c1601ce48062dd52f9787d6', 0),
(8994, 1385138758, '7690da5f0f111ac1835e22d9b6be882325afc52b', '0ffa177db9de5f3c3103f5531345925afcc91441', 1),
(8993, 1385138749, '7690da5f0f111ac1835e22d9b6be882325afc52b', '41d7fccfe3dd94af0abf446bff9d35aac15505d2', 0),
(8992, 1385138745, '7690da5f0f111ac1835e22d9b6be882325afc52b', 'bbad19e0f27eb9806d197eff98225ec05cd269c6', 1),
(8991, 1385138685, '7690da5f0f111ac1835e22d9b6be882325afc52b', '988180cac5234b240ba23b11f8a585b979746dd5', 0),
(8990, 1385138678, '7690da5f0f111ac1835e22d9b6be882325afc52b', 'a1ac3358b545e5b3880eb800e21a1bb1ddfab99a', 0),
(8989, 1385138652, '7690da5f0f111ac1835e22d9b6be882325afc52b', '48da42e308f1ceed4c18d2a130795ee7c0418560', 0),
(8988, 1385138651, '0', 'a89f7dbb88cc9ce6112261ccc01e5d3c70366783', 0),
(8987, 1385138638, '0', 'cdc9b77f726629d63be6b4588220e4d035ba74fb', 1),
(8986, 1385138638, '0', '22f1d0661f2f679a49f4e0a6301ec743ff701b75', 0),
(8985, 1385138637, '0', '963dde7e236d444f700b5d3d0af6335aa7d07994', 0),
(8984, 1385138118, '0', '4e882f64a5e193dbfff828f74bab2b96c4fcdb8e', 1),
(8983, 1385138117, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'a2c0d7799177f342463b30fb93bcd2427bcce1a2', 0),
(8982, 1385137686, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '5754edeefdf325056917f6f0e61caf6b644bca5f', 0),
(8981, 1385137685, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '9214ae126c59326cdabf1e5cf61711fd6c451514', 0),
(8980, 1385137676, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '1493a403c4e70a862c21aebb43ea8d01b206d776', 0),
(8979, 1385137675, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'ae3c59431f89c07201e1d0adadf3bcb727ff1ed7', 0),
(8978, 1385137674, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '321cae3168d282594c183beb6c830cf6367b91eb', 0),
(8977, 1385137672, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '5daafe52d805afaaae29abb4a20ed31f3c2dc24d', 1),
(8976, 1385137665, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'ce1e954e726ad2f65db10bc1559bc3765b6f0844', 0),
(8975, 1385137665, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'a1f7e4ab3112a089135bf71d5cc17af6ddc1077f', 1),
(8974, 1385137661, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '5f8ce6895812839e098c8c663688a0c61288f85b', 1),
(8973, 1385137645, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'ad962e8f9ddf0b3a1ee6b8878142313df58e845a', 0),
(8972, 1385137645, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'f0a232cba60fcfbd1af33174f685a23c22f68483', 0),
(8971, 1385137644, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '02d1a429985af1b1434c5d82cfbf3c0b72b4be24', 0),
(8970, 1385137642, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '2db551a41c218f2e14accf707aca0c6f6bd54b21', 0),
(8969, 1385137633, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '7903cce354aac4b67ac194fb163792f5f31c046a', 0),
(8968, 1385137627, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '168d44aed9eae318848af43ab500d9a4fc2aedce', 1),
(8967, 1385137608, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '1a0cd4027a7cfeb44435aa51b1425d1b5ac27338', 0),
(8966, 1385137601, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'ef8d52114018a82af8cc63bef090b3de61c95ef8', 0),
(8965, 1385137601, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '859fb326bf052e6583acdb4a8f5779beaa5bf7ea', 0),
(8964, 1385137526, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'b49b0468887059d37ba8aa0be1733f467e001713', 0),
(8963, 1385137525, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '4f3abb07ab6cc0f79de46e6ae4759ead8b3c90ee', 0),
(8962, 1385137524, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'e4ed7947c642d5f3fc32943816bae79e8de65b8f', 0),
(8961, 1385137523, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'aa86529e1dd5566c210447f37c8209cf099d2073', 1),
(8960, 1385137520, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '99b6e2544a7272976361ccc71727064c7ef8ae92', 0),
(8959, 1385137516, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'e19ecd5393421d35cdf43faf5e9bc2d685ad92e1', 1),
(8958, 1385137433, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '0e2f7dfe8d16943c58b1e537fbbeb4e6c7472bb6', 0),
(8957, 1385137432, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'dab8f4cd876be26e4eaad3c368666fa154f2c07a', 0),
(8956, 1385137292, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '7e32522539aab6ff577620eb27fe30380ef90257', 0),
(8955, 1385137291, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'e5b5dce45bb72c631e8c258ef87f9fa86f835ff2', 0),
(8954, 1385137291, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '6e3e8179e99177313d1e6fa98426ad717e9c390e', 0),
(8953, 1385137289, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '507c230a4e9661318cc5e70b8fb6ab18e2bedf0f', 1),
(8952, 1385137287, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '42ecc6bf3a1ad5a849de30c8c76f5c06da5f4057', 0),
(8951, 1385137286, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'e643ac1d7ab99b445e1cb165380409657b77ea10', 1),
(8950, 1385137283, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'fd4def4cf91d8c8a2d8175486eddbc11702547b3', 1),
(8949, 1385137280, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '62dc709dd5d0358623440ee24df6509564beb544', 1),
(8948, 1385137231, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'be317a3641c4902743b1b6385bcffa9ee31bc62e', 0),
(8947, 1385137066, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '8a953463e8489d1a78dadc3a63e0dc3a1ca04464', 0),
(8946, 1385137066, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '669e13e7747cb405e8e42b52fedb18f1fc76932c', 0),
(8945, 1385137042, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '30454d7c9c5ab3be0187a86b9f7a22694655efcd', 0),
(8944, 1385137041, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '55e0b0ed5b37af0b6e673af0107341f8d5267346', 0),
(8943, 1385137040, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '4123789d39f8f9c15235f26d9e075458f8c64832', 0),
(8942, 1385137039, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'bd2f3dcf6e2ce55f69038c93581a70cc0d6c9b66', 1),
(8941, 1385137036, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '4677eaca7b4448271ef105d7375410cb3e4dcd7d', 0),
(8940, 1385137029, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '2f70fd890a5d21b035dc6bd786adc362d621a689', 1),
(8939, 1385136932, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '3ff471570a05c851f0e35a22c42752df5decdb18', 0),
(8938, 1385136931, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'efcdfd52d34c7b0f73356b2149b26902a57fd962', 0),
(8937, 1385136927, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'c19008521daef50442f6253cbde9cebad45d27a3', 0),
(8936, 1385136927, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'f80eb1ef15e926084f7f026b37cbab94702cb3e8', 0),
(8935, 1385136926, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'd454394e00b698c54000bed8128a3b0bba467989', 0),
(8934, 1385136925, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '756a0e5a93fe734a5854c696acf6184e65fd4224', 1),
(8933, 1385136899, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '0ccafc4e7e8820d31004a2d7ffe965fce461d96d', 0),
(8932, 1385136897, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'fa97b4d9e0e152aa1604de523492cce4d2b540a9', 1),
(8931, 1385136884, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '38142509d52fcb6b7384e1ff56cd3c3846951930', 1),
(8930, 1385136835, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'd2851630e2f090a918546ef92839298cc1f3e786', 0);
INSERT INTO `exp_security_hashes` (`hash_id`, `date`, `session_id`, `hash`, `used`) VALUES
(8929, 1385136831, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '22e09921afa15d56ee87d5882fa2b9e7baa89c56', 0),
(8928, 1385136830, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '52d30601ae32e451989c0546045c600447cae630', 0),
(8927, 1385136823, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'f28223979a3d96db219bd922957947100d7c6828', 0),
(8926, 1385136823, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '09815735d85b9d7138ae4cfdd3184d51c364b4ba', 0),
(8925, 1385136822, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'd7c9228c3f7c177df28cda03612ffcbad0c2fe5f', 0),
(8924, 1385136820, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'e6c95c75f3bfed462b20f408cff3bfc3575839f9', 1),
(8923, 1385136816, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '32e375f610be1200f511c4cba4d1b6834689ed4e', 0),
(8922, 1385136815, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'f70df1a643c2fde13654526687c5941e398a5b3c', 1),
(8921, 1385136813, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '745a3e52ea133a12ad2a46f3a7758f6f3ad1a7c8', 1),
(8920, 1385136812, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'ffdebf9aad169b1f3d68fc30eef207e07141cfaa', 1),
(8919, 1385136802, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '6420ce8d753f1724856e0b30adf0b18cb5ab4ddb', 1),
(8918, 1385136779, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'ae5c936e7af3419c8ace9fce2a23e8fb8f9742aa', 0),
(8917, 1385136772, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '0de86ef73ce164bde9f33ed25d4d38226d2f7171', 0),
(8916, 1385136771, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '370f8aa99edf2f325e3310a8ab0b791e1dd21504', 0),
(8915, 1385136700, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'f284d5141c4a0ab7284958180d412334febcfa7b', 0),
(8914, 1385136699, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '3bd19c9b41c9e55a3a05cb134407f69e89465a0b', 0),
(8913, 1385136699, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'bdf903af554fd2dcc210cc686abe05287a6356f2', 0),
(8912, 1385136696, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'db880ada1ed82a7843a85deaf4ab978eebf2c193', 1),
(8911, 1385136693, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '377e639a294b36d38123bb4379b50b3c61ef6d70', 0),
(8910, 1385136692, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'b4f8c682d42c52cea50652e2da42ee75027ef362', 1),
(8909, 1385136657, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'efe7389811750d3688b6ea1c98f3d2b269c9b62e', 0),
(8908, 1385136602, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', 'cf3b77a37a4b80341e7c876ce8b3dea9c367d723', 0),
(8907, 1385136464, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '0151bf99a9e258071a54e4fbb227aead3cf057da', 1),
(8906, 1385136410, '43833c34cdb9c9b7b3a2d8ba21c6c284b8edf21a', '3731d5aa2996742c938520b0358cf3bf9ec1c738', 0),
(8905, 1385136410, '0', '3fca6a1088d313032a41d188b0d8d4fbb8e694bd', 0),
(8904, 1385136401, '0', '5d9d12a768acbf1365674ee39daf717a143d368a', 1),
(8903, 1385136401, '0', 'a715b784da6350d3f80689b30fb12333e5cd17a6', 0),
(8902, 1385136400, '0', '188316be5c399871a42253099f1c45cdacffc164', 0),
(8901, 1385132936, '0', 'f02d01f7101722c3832df65654598f343e376fa1', 0),
(8900, 1385132935, '0', '35a8571cc684d3bb225c7959640edf9dd3fe448f', 0),
(8899, 1385088018, '0', 'eafd2b643251322514aefe8b78203b6c8ad9772e', 0),
(8895, 1385080847, '0', 'bb93172a19df16f9e7a2ff6bdeaf6a25db0fbda6', 0),
(8896, 1385080852, '0', 'ae32f256fb71f347b134fd63d09d73ffa18dce18', 0),
(8897, 1385080865, '0', '54daaf57717c684371a267de2bf34543d4a1dfcc', 0),
(8898, 1385088017, '0', '0b855a029dc27828f7d653e8ea87f1248e81e633', 0);

-- --------------------------------------------------------

--
-- Table structure for table `exp_seolite_config`
--

DROP TABLE IF EXISTS `exp_seolite_config`;
CREATE TABLE IF NOT EXISTS `exp_seolite_config` (
  `seolite_config_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(10) unsigned DEFAULT NULL,
  `template` text,
  `default_keywords` varchar(1024) NOT NULL,
  `default_description` varchar(1024) NOT NULL,
  `default_title_postfix` varchar(60) NOT NULL,
  PRIMARY KEY (`seolite_config_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `exp_seolite_config`
--

INSERT INTO `exp_seolite_config` (`seolite_config_id`, `site_id`, `template`, `default_keywords`, `default_description`, `default_title_postfix`) VALUES
(1, 1, '<title>{title}{site_name}</title>\n<meta name=''keywords'' content=''{meta_keywords}'' />\n<meta name=''description'' content=''{meta_description}'' />\n<link rel=''canonical'' href=''{canonical_url}'' />\n<!-- generated by seo_lite -->', 'Books, Technology, Mobile, Computer Science Publications, Computer Science', 'This is the ACM Books Website.', ' |&nbsp;');

-- --------------------------------------------------------

--
-- Table structure for table `exp_seolite_content`
--

DROP TABLE IF EXISTS `exp_seolite_content`;
CREATE TABLE IF NOT EXISTS `exp_seolite_content` (
  `seolite_content_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(10) NOT NULL,
  `entry_id` int(10) NOT NULL,
  `title` varchar(1024) DEFAULT NULL,
  `keywords` varchar(1024) NOT NULL,
  `description` text,
  PRIMARY KEY (`seolite_content_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=101 ;

--
-- Dumping data for table `exp_seolite_content`
--

INSERT INTO `exp_seolite_content` (`seolite_content_id`, `site_id`, `entry_id`, `title`, `keywords`, `description`) VALUES
(1, 1, 83, '', '', ''),
(2, 1, 1, '', '', ''),
(3, 1, 17, '', '', ''),
(4, 1, 93, '', '', ''),
(5, 1, 156, '', '', ''),
(6, 1, 111, '', '', ''),
(7, 1, 114, '', '', ''),
(8, 1, 115, '', '', ''),
(9, 1, 146, '', '', ''),
(10, 1, 148, '', '', ''),
(11, 1, 149, '', '', ''),
(12, 1, 160, '', '', ''),
(13, 1, 152, '', '', ''),
(14, 1, 153, '', '', ''),
(15, 1, 151, '', '', ''),
(16, 1, 116, '', '', ''),
(17, 1, 161, '', '', ''),
(18, 1, 162, '', '', ''),
(19, 1, 110, '', '', ''),
(20, 1, 113, '', '', ''),
(21, 1, 112, '', '', ''),
(22, 1, 163, '', '', ''),
(23, 1, 147, '', '', ''),
(24, 1, 55, '', '', ''),
(26, 1, 150, '', '', ''),
(27, 1, 154, '', '', ''),
(28, 1, 165, '', '', ''),
(29, 1, 166, '', '', ''),
(30, 1, 167, '', '', ''),
(31, 1, 168, '', '', ''),
(32, 1, 169, '', '', ''),
(33, 1, 7, '', '', ''),
(34, 1, 158, '', '', ''),
(35, 1, 145, '', '', ''),
(36, 1, 81, '', '', ''),
(37, 1, 24, '', '', ''),
(38, 1, 170, '', '', ''),
(39, 1, 67, '', '', ''),
(40, 1, 102, '', '', ''),
(45, 1, 174, '', '', ''),
(42, 1, 172, '', '', ''),
(43, 1, 9, '', '', ''),
(44, 1, 173, '', '', ''),
(46, 1, 20, '', '', ''),
(47, 1, 95, '', '', ''),
(48, 1, 29, '', '', ''),
(49, 1, 118, '', '', ''),
(50, 1, 73, '', '', ''),
(51, 1, 25, '', '', ''),
(52, 1, 43, '', '', ''),
(53, 1, 27, '', '', ''),
(54, 1, 34, '', '', ''),
(55, 1, 175, '', '', ''),
(56, 1, 176, '', '', ''),
(57, 1, 177, '', '', ''),
(58, 1, 178, '', '', ''),
(59, 1, 49, '', '', ''),
(60, 1, 179, '', '', ''),
(61, 1, 75, '', '', ''),
(62, 1, 77, '', '', ''),
(63, 1, 180, '', '', ''),
(64, 1, 79, '', '', ''),
(65, 1, 144, '', '', ''),
(66, 1, 89, '', '', ''),
(67, 1, 133, '', '', ''),
(68, 1, 130, '', '', ''),
(69, 1, 127, '', '', ''),
(70, 1, 141, '', '', ''),
(71, 1, 181, '', '', ''),
(72, 1, 182, '', '', ''),
(73, 1, 19, '', '', ''),
(74, 1, 140, '', '', ''),
(75, 1, 128, '', '', ''),
(76, 1, 126, '', '', ''),
(77, 1, 90, '', '', ''),
(78, 1, 124, '', '', ''),
(79, 1, 52, '', '', ''),
(80, 1, 58, '', '', ''),
(81, 1, 59, '', '', ''),
(82, 1, 131, '', '', ''),
(83, 1, 122, '', '', ''),
(84, 1, 66, '', '', ''),
(85, 1, 57, '', '', ''),
(86, 1, 121, '', '', ''),
(87, 1, 129, '', '', ''),
(88, 1, 132, '', '', ''),
(89, 1, 117, '', '', ''),
(90, 1, 137, '', '', ''),
(91, 1, 48, '', '', ''),
(92, 1, 80, '', '', ''),
(93, 1, 138, '', '', ''),
(94, 1, 135, '', '', ''),
(95, 1, 136, '', '', ''),
(96, 1, 134, '', '', ''),
(97, 1, 119, '', '', ''),
(98, 1, 6, '', '', ''),
(99, 1, 120, '', '', ''),
(100, 1, 123, '', '', '');

-- --------------------------------------------------------

--
-- Table structure for table `exp_sessions`
--

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

--
-- Dumping data for table `exp_sessions`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_sites`
--

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

--
-- Dumping data for table `exp_sites`
--

INSERT INTO `exp_sites` (`site_id`, `site_label`, `site_name`, `site_description`, `site_system_preferences`, `site_mailinglist_preferences`, `site_member_preferences`, `site_template_preferences`, `site_channel_preferences`, `site_bootstrap_checksums`) VALUES
(1, 'ACM Books', 'default_site', NULL, 'YTo4OTp7czoxMDoic2l0ZV9pbmRleCI7czowOiIiO3M6ODoic2l0ZV91cmwiO3M6Mjc6Imh0dHA6Ly9ib29rcy1hY20ubWlubGEubmV0LyI7czoxNjoidGhlbWVfZm9sZGVyX3VybCI7czozNDoiaHR0cDovL2Jvb2tzLWFjbS5taW5sYS5uZXQvdGhlbWVzLyI7czoxNToid2VibWFzdGVyX2VtYWlsIjtzOjE3OiJlcmljQGVyaWNsYW1iLm5ldCI7czoxNDoid2VibWFzdGVyX25hbWUiO3M6MDoiIjtzOjIwOiJjaGFubmVsX25vbWVuY2xhdHVyZSI7czo3OiJjaGFubmVsIjtzOjEwOiJtYXhfY2FjaGVzIjtzOjM6IjE1MCI7czoxMToiY2FwdGNoYV91cmwiO3M6NDU6Imh0dHA6Ly9lcmljLmVlX2Jvb3RzdHJhcC5jb20vaW1hZ2VzL2NhcHRjaGFzLyI7czoxMjoiY2FwdGNoYV9wYXRoIjtzOjYwOiJDOlxQcm9qZWN0RmlsZXNcTWluZXJhbFxlZV9ib290c3RyYXBcaHRkb2NzXGltYWdlc1xjYXB0Y2hhc1wiO3M6MTI6ImNhcHRjaGFfZm9udCI7czoxOiJ5IjtzOjEyOiJjYXB0Y2hhX3JhbmQiO3M6MToieSI7czoyMzoiY2FwdGNoYV9yZXF1aXJlX21lbWJlcnMiO3M6MToibiI7czoxNzoiZW5hYmxlX2RiX2NhY2hpbmciO3M6MToibiI7czoxODoiZW5hYmxlX3NxbF9jYWNoaW5nIjtzOjE6Im4iO3M6MTg6ImZvcmNlX3F1ZXJ5X3N0cmluZyI7czoxOiJuIjtzOjEzOiJzaG93X3Byb2ZpbGVyIjtzOjE6Im4iO3M6MTg6InRlbXBsYXRlX2RlYnVnZ2luZyI7czoxOiJuIjtzOjE1OiJpbmNsdWRlX3NlY29uZHMiO3M6MToibiI7czoxMzoiY29va2llX2RvbWFpbiI7czowOiIiO3M6MTE6ImNvb2tpZV9wYXRoIjtzOjA6IiI7czoxNzoidXNlcl9zZXNzaW9uX3R5cGUiO3M6MToiYyI7czoxODoiYWRtaW5fc2Vzc2lvbl90eXBlIjtzOjI6ImNzIjtzOjIxOiJhbGxvd191c2VybmFtZV9jaGFuZ2UiO3M6MToieSI7czoxODoiYWxsb3dfbXVsdGlfbG9naW5zIjtzOjE6InkiO3M6MTY6InBhc3N3b3JkX2xvY2tvdXQiO3M6MToieSI7czoyNToicGFzc3dvcmRfbG9ja291dF9pbnRlcnZhbCI7czoxOiIxIjtzOjIwOiJyZXF1aXJlX2lwX2Zvcl9sb2dpbiI7czoxOiJ5IjtzOjIyOiJyZXF1aXJlX2lwX2Zvcl9wb3N0aW5nIjtzOjE6InkiO3M6MjQ6InJlcXVpcmVfc2VjdXJlX3Bhc3N3b3JkcyI7czoxOiJuIjtzOjE5OiJhbGxvd19kaWN0aW9uYXJ5X3B3IjtzOjE6InkiO3M6MjM6Im5hbWVfb2ZfZGljdGlvbmFyeV9maWxlIjtzOjA6IiI7czoxNzoieHNzX2NsZWFuX3VwbG9hZHMiO3M6MToieSI7czoxNToicmVkaXJlY3RfbWV0aG9kIjtzOjc6InJlZnJlc2giO3M6OToiZGVmdF9sYW5nIjtzOjc6ImVuZ2xpc2giO3M6ODoieG1sX2xhbmciO3M6MjoiZW4iO3M6MTI6InNlbmRfaGVhZGVycyI7czoxOiJ5IjtzOjExOiJnemlwX291dHB1dCI7czoxOiJuIjtzOjEzOiJsb2dfcmVmZXJyZXJzIjtzOjE6Im4iO3M6MTM6Im1heF9yZWZlcnJlcnMiO3M6MzoiNTAwIjtzOjExOiJ0aW1lX2Zvcm1hdCI7czoyOiJ1cyI7czoxMzoic2VydmVyX29mZnNldCI7czowOiIiO3M6MjE6ImRlZmF1bHRfc2l0ZV90aW1lem9uZSI7czoxOToiQW1lcmljYS9Mb3NfQW5nZWxlcyI7czoxMzoibWFpbF9wcm90b2NvbCI7czo0OiJtYWlsIjtzOjExOiJzbXRwX3NlcnZlciI7czo4OiIxMC4xLjEuNSI7czoxMzoic210cF91c2VybmFtZSI7czowOiIiO3M6MTM6InNtdHBfcGFzc3dvcmQiO3M6MDoiIjtzOjExOiJlbWFpbF9kZWJ1ZyI7czoxOiJuIjtzOjEzOiJlbWFpbF9jaGFyc2V0IjtzOjU6InV0Zi04IjtzOjE1OiJlbWFpbF9iYXRjaG1vZGUiO3M6MToibiI7czoxNjoiZW1haWxfYmF0Y2hfc2l6ZSI7czowOiIiO3M6MTE6Im1haWxfZm9ybWF0IjtzOjU6InBsYWluIjtzOjk6IndvcmRfd3JhcCI7czoxOiJ5IjtzOjIyOiJlbWFpbF9jb25zb2xlX3RpbWVsb2NrIjtzOjE6IjUiO3M6MjI6ImxvZ19lbWFpbF9jb25zb2xlX21zZ3MiO3M6MToieSI7czo4OiJjcF90aGVtZSI7czo3OiJkZWZhdWx0IjtzOjIxOiJlbWFpbF9tb2R1bGVfY2FwdGNoYXMiO3M6MToibiI7czoxNjoibG9nX3NlYXJjaF90ZXJtcyI7czoxOiJ5IjtzOjEyOiJzZWN1cmVfZm9ybXMiO3M6MToieSI7czoxOToiZGVueV9kdXBsaWNhdGVfZGF0YSI7czoxOiJ5IjtzOjI0OiJyZWRpcmVjdF9zdWJtaXR0ZWRfbGlua3MiO3M6MToibiI7czoxNjoiZW5hYmxlX2NlbnNvcmluZyI7czoxOiJuIjtzOjE0OiJjZW5zb3JlZF93b3JkcyI7czowOiIiO3M6MTg6ImNlbnNvcl9yZXBsYWNlbWVudCI7czowOiIiO3M6MTA6ImJhbm5lZF9pcHMiO3M6MDoiIjtzOjEzOiJiYW5uZWRfZW1haWxzIjtzOjA6IiI7czoxNjoiYmFubmVkX3VzZXJuYW1lcyI7czowOiIiO3M6MTk6ImJhbm5lZF9zY3JlZW5fbmFtZXMiO3M6MDoiIjtzOjEwOiJiYW5fYWN0aW9uIjtzOjg6InJlc3RyaWN0IjtzOjExOiJiYW5fbWVzc2FnZSI7czozNDoiVGhpcyBzaXRlIGlzIGN1cnJlbnRseSB1bmF2YWlsYWJsZSI7czoxNToiYmFuX2Rlc3RpbmF0aW9uIjtzOjIxOiJodHRwOi8vd3d3LnlhaG9vLmNvbS8iO3M6MTY6ImVuYWJsZV9lbW90aWNvbnMiO3M6MToieSI7czoxMjoiZW1vdGljb25fdXJsIjtzOjQ0OiJodHRwOi8vZXJpYy5lZV9ib290c3RyYXAuY29tL2ltYWdlcy9zbWlsZXlzLyI7czoxOToicmVjb3VudF9iYXRjaF90b3RhbCI7czo0OiIxMDAwIjtzOjE3OiJuZXdfdmVyc2lvbl9jaGVjayI7czoxOiJuIjtzOjE3OiJlbmFibGVfdGhyb3R0bGluZyI7czoxOiJuIjtzOjE3OiJiYW5pc2hfbWFza2VkX2lwcyI7czoxOiJ5IjtzOjE0OiJtYXhfcGFnZV9sb2FkcyI7czoyOiIxMCI7czoxMzoidGltZV9pbnRlcnZhbCI7czoxOiI4IjtzOjEyOiJsb2Nrb3V0X3RpbWUiO3M6MjoiMzAiO3M6MTU6ImJhbmlzaG1lbnRfdHlwZSI7czo3OiJtZXNzYWdlIjtzOjE0OiJiYW5pc2htZW50X3VybCI7czowOiIiO3M6MTg6ImJhbmlzaG1lbnRfbWVzc2FnZSI7czo1MDoiWW91IGhhdmUgZXhjZWVkZWQgdGhlIGFsbG93ZWQgcGFnZSBsb2FkIGZyZXF1ZW5jeS4iO3M6MTc6ImVuYWJsZV9zZWFyY2hfbG9nIjtzOjE6InkiO3M6MTk6Im1heF9sb2dnZWRfc2VhcmNoZXMiO3M6MzoiNTAwIjtzOjE3OiJ0aGVtZV9mb2xkZXJfcGF0aCI7czo1NzoiL3Zhci93d3cvaW50ZXJhY3Rpb25zL2Jvb2tzLWFjbS5taW5sYS5uZXQvaHRkb2NzLy90aGVtZXMvIjtzOjEwOiJpc19zaXRlX29uIjtzOjE6InkiO3M6MTE6InJ0ZV9lbmFibGVkIjtzOjE6InkiO3M6MjI6InJ0ZV9kZWZhdWx0X3Rvb2xzZXRfaWQiO3M6MToiMSI7czo5OiJzbXRwX3BvcnQiO3M6MDoiIjt9', 'YTozOntzOjE5OiJtYWlsaW5nbGlzdF9lbmFibGVkIjtzOjE6InkiO3M6MTg6Im1haWxpbmdsaXN0X25vdGlmeSI7czoxOiJuIjtzOjI1OiJtYWlsaW5nbGlzdF9ub3RpZnlfZW1haWxzIjtzOjA6IiI7fQ==', 'YTo0NDp7czoxMDoidW5fbWluX2xlbiI7czoxOiI0IjtzOjEwOiJwd19taW5fbGVuIjtzOjE6IjUiO3M6MjU6ImFsbG93X21lbWJlcl9yZWdpc3RyYXRpb24iO3M6MToibiI7czoyNToiYWxsb3dfbWVtYmVyX2xvY2FsaXphdGlvbiI7czoxOiJ5IjtzOjE4OiJyZXFfbWJyX2FjdGl2YXRpb24iO3M6NToiZW1haWwiO3M6MjM6Im5ld19tZW1iZXJfbm90aWZpY2F0aW9uIjtzOjE6Im4iO3M6MjM6Im1icl9ub3RpZmljYXRpb25fZW1haWxzIjtzOjA6IiI7czoyNDoicmVxdWlyZV90ZXJtc19vZl9zZXJ2aWNlIjtzOjE6InkiO3M6MjI6InVzZV9tZW1iZXJzaGlwX2NhcHRjaGEiO3M6MToibiI7czoyMDoiZGVmYXVsdF9tZW1iZXJfZ3JvdXAiO3M6MToiNSI7czoxNToicHJvZmlsZV90cmlnZ2VyIjtzOjY6Im1lbWJlciI7czoxMjoibWVtYmVyX3RoZW1lIjtzOjc6ImRlZmF1bHQiO3M6MTQ6ImVuYWJsZV9hdmF0YXJzIjtzOjE6InkiO3M6MjA6ImFsbG93X2F2YXRhcl91cGxvYWRzIjtzOjE6Im4iO3M6MTA6ImF2YXRhcl91cmwiO3M6NDQ6Imh0dHA6Ly9lcmljLmVlX2Jvb3RzdHJhcC5jb20vaW1hZ2VzL2F2YXRhcnMvIjtzOjExOiJhdmF0YXJfcGF0aCI7czo1OToiQzpcUHJvamVjdEZpbGVzXE1pbmVyYWxcZWVfYm9vdHN0cmFwXGh0ZG9jc1xpbWFnZXNcYXZhdGFyc1wiO3M6MTY6ImF2YXRhcl9tYXhfd2lkdGgiO3M6MzoiMTAwIjtzOjE3OiJhdmF0YXJfbWF4X2hlaWdodCI7czozOiIxMDAiO3M6MTM6ImF2YXRhcl9tYXhfa2IiO3M6MjoiNTAiO3M6MTM6ImVuYWJsZV9waG90b3MiO3M6MToibiI7czo5OiJwaG90b191cmwiO3M6NTA6Imh0dHA6Ly9lcmljLmVlX2Jvb3RzdHJhcC5jb20vaW1hZ2VzL21lbWJlcl9waG90b3MvIjtzOjEwOiJwaG90b19wYXRoIjtzOjY1OiJDOlxQcm9qZWN0RmlsZXNcTWluZXJhbFxlZV9ib290c3RyYXBcaHRkb2NzXGltYWdlc1xtZW1iZXJfcGhvdG9zXCI7czoxNToicGhvdG9fbWF4X3dpZHRoIjtzOjM6IjEwMCI7czoxNjoicGhvdG9fbWF4X2hlaWdodCI7czozOiIxMDAiO3M6MTI6InBob3RvX21heF9rYiI7czoyOiI1MCI7czoxNjoiYWxsb3dfc2lnbmF0dXJlcyI7czoxOiJ5IjtzOjEzOiJzaWdfbWF4bGVuZ3RoIjtzOjM6IjUwMCI7czoyMToic2lnX2FsbG93X2ltZ19ob3RsaW5rIjtzOjE6Im4iO3M6MjA6InNpZ19hbGxvd19pbWdfdXBsb2FkIjtzOjE6Im4iO3M6MTE6InNpZ19pbWdfdXJsIjtzOjU4OiJodHRwOi8vZXJpYy5lZV9ib290c3RyYXAuY29tL2ltYWdlcy9zaWduYXR1cmVfYXR0YWNobWVudHMvIjtzOjEyOiJzaWdfaW1nX3BhdGgiO3M6NzM6IkM6XFByb2plY3RGaWxlc1xNaW5lcmFsXGVlX2Jvb3RzdHJhcFxodGRvY3NcaW1hZ2VzXHNpZ25hdHVyZV9hdHRhY2htZW50c1wiO3M6MTc6InNpZ19pbWdfbWF4X3dpZHRoIjtzOjM6IjQ4MCI7czoxODoic2lnX2ltZ19tYXhfaGVpZ2h0IjtzOjI6IjgwIjtzOjE0OiJzaWdfaW1nX21heF9rYiI7czoyOiIzMCI7czoxOToicHJ2X21zZ191cGxvYWRfcGF0aCI7czo2NjoiQzpcUHJvamVjdEZpbGVzXE1pbmVyYWxcZWVfYm9vdHN0cmFwXGh0ZG9jc1xpbWFnZXNccG1fYXR0YWNobWVudHNcIjtzOjIzOiJwcnZfbXNnX21heF9hdHRhY2htZW50cyI7czoxOiIzIjtzOjIyOiJwcnZfbXNnX2F0dGFjaF9tYXhzaXplIjtzOjM6IjI1MCI7czoyMDoicHJ2X21zZ19hdHRhY2hfdG90YWwiO3M6MzoiMTAwIjtzOjE5OiJwcnZfbXNnX2h0bWxfZm9ybWF0IjtzOjQ6InNhZmUiO3M6MTg6InBydl9tc2dfYXV0b19saW5rcyI7czoxOiJ5IjtzOjE3OiJwcnZfbXNnX21heF9jaGFycyI7czo0OiI2MDAwIjtzOjE5OiJtZW1iZXJsaXN0X29yZGVyX2J5IjtzOjExOiJ0b3RhbF9wb3N0cyI7czoyMToibWVtYmVybGlzdF9zb3J0X29yZGVyIjtzOjQ6ImRlc2MiO3M6MjA6Im1lbWJlcmxpc3Rfcm93X2xpbWl0IjtzOjI6IjIwIjt9', 'YTo2OntzOjExOiJzdHJpY3RfdXJscyI7czoxOiJ5IjtzOjg6InNpdGVfNDA0IjtzOjk6ImVycm9yLzQwNCI7czoxOToic2F2ZV90bXBsX3JldmlzaW9ucyI7czoxOiJ5IjtzOjE4OiJtYXhfdG1wbF9yZXZpc2lvbnMiO3M6MjoiMTAiO3M6MTU6InNhdmVfdG1wbF9maWxlcyI7czoxOiJ5IjtzOjE4OiJ0bXBsX2ZpbGVfYmFzZXBhdGgiO3M6ODM6IkM6L1Byb2plY3RGaWxlcy9NaW5lcmFsL2VlX2Jvb3RzdHJhcC9odGRvY3MvLi4vZWVfc3lzdGVtL2V4cHJlc3Npb25lbmdpbmUvdGVtcGxhdGVzIjt9', 'YTo5OntzOjIxOiJpbWFnZV9yZXNpemVfcHJvdG9jb2wiO3M6MzoiZ2QyIjtzOjE4OiJpbWFnZV9saWJyYXJ5X3BhdGgiO3M6MDoiIjtzOjE2OiJ0aHVtYm5haWxfcHJlZml4IjtzOjU6InRodW1iIjtzOjE0OiJ3b3JkX3NlcGFyYXRvciI7czo0OiJkYXNoIjtzOjE3OiJ1c2VfY2F0ZWdvcnlfbmFtZSI7czoxOiJuIjtzOjIyOiJyZXNlcnZlZF9jYXRlZ29yeV93b3JkIjtzOjg6ImNhdGVnb3J5IjtzOjIzOiJhdXRvX2NvbnZlcnRfaGlnaF9hc2NpaSI7czoxOiJuIjtzOjIyOiJuZXdfcG9zdHNfY2xlYXJfY2FjaGVzIjtzOjE6InkiO3M6MjM6ImF1dG9fYXNzaWduX2NhdF9wYXJlbnRzIjtzOjE6InkiO30=', 'YToyOntzOjc6ImVtYWlsZWQiO2E6MDp7fXM6NTg6Ii92YXIvd3d3L2ludGVyYWN0aW9ucy9ib29rcy1hY20ubWlubGEubmV0L2h0ZG9jcy9pbmRleC5waHAiO3M6MzI6Ijg2MmZjYzI5OGYyNjU4ZmVjZDBhNDFmOTZiODkyMzY3Ijt9');

-- --------------------------------------------------------

--
-- Table structure for table `exp_snippets`
--

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

--
-- Dumping data for table `exp_snippets`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_specialty_templates`
--

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

--
-- Dumping data for table `exp_specialty_templates`
--

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

-- --------------------------------------------------------

--
-- Table structure for table `exp_stats`
--

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

--
-- Dumping data for table `exp_stats`
--

INSERT INTO `exp_stats` (`stat_id`, `site_id`, `total_members`, `recent_member_id`, `recent_member`, `total_entries`, `total_forum_topics`, `total_forum_posts`, `total_comments`, `last_entry_date`, `last_forum_post_date`, `last_comment_date`, `last_visitor_date`, `most_visitors`, `most_visitor_date`, `last_cache_clear`) VALUES
(1, 1, 5, 6, 'ewilliams', 177, 0, 0, 0, 1385140380, 0, 0, 0, 0, 0, 1385692817);

-- --------------------------------------------------------

--
-- Table structure for table `exp_statuses`
--

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

--
-- Dumping data for table `exp_statuses`
--

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

-- --------------------------------------------------------

--
-- Table structure for table `exp_status_groups`
--

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

--
-- Dumping data for table `exp_status_groups`
--

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

-- --------------------------------------------------------

--
-- Table structure for table `exp_status_no_access`
--

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

--
-- Dumping data for table `exp_status_no_access`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_templates`
--

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

--
-- Dumping data for table `exp_templates`
--

INSERT INTO `exp_templates` (`template_id`, `site_id`, `group_id`, `template_name`, `save_template_file`, `template_type`, `template_data`, `template_notes`, `edit_date`, `last_author_id`, `cache`, `refresh`, `no_auth_bounce`, `enable_http_auth`, `allow_php`, `php_parse_location`, `hits`) VALUES
(1, 1, 1, 'index', 'y', 'webpage', '', '', 1367015095, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(2, 1, 2, 'index', 'n', 'webpage', '', NULL, 1367014741, 0, 'n', 0, '', 'n', 'n', 'o', 0),
(3, 1, 2, '404', 'y', 'webpage', '', '', 1367014827, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(5, 1, 3, 'header', 'y', 'webpage', '<!doctype html>\n<html>\n<head>\n	<meta charset="utf-8">\n	<meta name="viewport" content="width=990" />\n	<meta name="MobileOptimized" content="990" /> \n	<title>ACMBooks</title>\n	<link href="css/all.css" media="all" rel="stylesheet" type="text/css">\n	<link href=''http://fonts.googleapis.com/css?family=Raleway:400,600,700,500'' rel=''stylesheet'' type=''text/css''>\n	<script type="text/javascript" src="js/jquery-1.8.3.min.js"></script>\n	<script type="text/javascript" src="js/jquery.main.js"></script>\n	<!--[if IE]><script type="text/javascript" src="js/ie.js"></script><![endif]-->\n</head>\n<body>\n    <div id="wrapper">\n            <div class="w1">\n                    <div class="w2">\n                            <div class="w3">\n                                    <div class="wrapper-holder">\n', NULL, 1383939882, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(6, 1, 3, 'top-nav', 'y', 'webpage', '<header id="header">\n        <div class="topbar">\n                <strong class="logo"><a href="#">ACMBooks</a></strong>\n                <nav class="nav">\n                        <a href="#" class="acm">acm.org</a>\n                        <ul>\n                                <li><a href="#">join acm</a></li>\n                                <li><a href="#">about acm books</a></li>\n                                <li><a class="mc" href="#">about morgan &amp; claypool</a></li>\n                        </ul>\n                </nav>\n        </div>\n        <nav id="nav">\n                <ul>\n                        <li><a href="http://clients.mineralstudios.com/ACM%20Books/about">About</a></li>\n                        <li><a href="http://clients.mineralstudios.com/ACM%20Books/authors">Authors</a></li>\n                        <li><a href="#">Subjects</a></li>\n                        <li><a href="http://clients.mineralstudios.com/ACM%20Books/board">Board</a></li>\n                        <li><a href="#">readers</a></li>\n                        <li><a href="#">Contacts</a></li>\n                </ul>\n        </nav>\n</header>\n', NULL, 1383939882, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(7, 1, 1, 'banner', 'y', 'webpage', '<section class="visual">\n        <img src="images/img1.jpg" width="940" height="338" alt="image description">\n        <article class="description">\n                <h1>ABOUT ACM BOOKS</h1>\n                <p>ACM Books is a new series of high quality books for the computer science community, published by ACM in collaboration with Morgan & Claypool Publishers.</p>\n                <h4><a href="/about">More About acm books</a></h4>\n                <br />\n        </article>\n</section>', '', 1384884623, 2, 'n', 0, '', 'n', 'n', 'o', 0),
(8, 1, 1, 'board-pod', 'y', 'webpage', '<section class="info-box board">\n        <h2>MEET THE BOARD</h2>\n        <ul>\n                <li>\n                        <a href="#">\n                                <h3>Bashar Nuseibeh</h3>\n                                <strong class="sub-heading">The Open University, UK</strong>\n                                <p>Subject Area Goes Here</p>\n                        </a>\n                </li>\n                <li>\n                        <a href="#">\n                                <h3>Shih-Fu Chang</h3>\n                                <span class="sub-heading">Columbia University</span>\n                                <p>Subject Area Goes Here</p>\n                        </a>\n                </li>\n                <li>\n                        <a href="#">\n                                <h3>Ramesh Jain</h3>\n                                <span class="sub-heading">University of California, Irvine</span>\n                                <p>Subject Area Goes Here</p>\n                        </a>\n                </li>\n                <li>\n                        <a href="#">\n                                <h3>Edward Fox</h3>\n                                <span class="sub-heading">Virginia Tech</span>\n                                <p>Subject Area Goes Here</p>\n                        </a>\n                </li>\n        </ul>\n</section>', NULL, 1383939882, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(9, 1, 1, 'authors-pod', 'y', 'webpage', '<section class="info-box">\n        <h2>FOR <br> AUTHORS</h2>\n        <ul>\n                <li>\n                        <a href="#"><h3>Submitting a Book Proposal</h3></a>\n                </li>\n                <li>\n                        <a href="#"><h3>Copyright and License Forms</h3></a>\n                </li>\n                <li>\n                        <a href="#"><h3>Publishing Policies</h3></a>\n                </li>\n                <li>\n                <a href="#"><h3>CONTACT ACMBOOKS DIRECTLY</h3></a>\n                </li>\n        </ul>\n</section>\n', NULL, 1383939882, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(10, 1, 1, 'readers-pod', 'y', 'webpage', '<section class="info-box readers">\n        <h2>FOR <br> readers</h2>\n        <ul>\n                <li>\n                        <a href="#"><h3>sales channels</h3></a>\n                </li>\n                <li>\n                        <a href="#"><h3>benefits for end users</h3></a>\n                </li>\n                <li>\n                        <a href="#"><h3>customer info #3</h3></a>\n                </li>\n                <li>\n                        <a href="#"><h3>how to reach customers</h3></a>\n                </li>\n        </ul>\n</section>', NULL, 1383939882, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(11, 1, 1, 'subjects-pod', 'y', 'webpage', '<section class="info-box subjects">\n        <h2>subjects</h2>\n        <ul>\n                <li>\n                        <a href="#"><h3>SUBJECT 1</h3></a>\n                </li>\n                <li>\n                        <a href="#"><h3>THIS CAN BE A LONGER SENTENCE DESCRIBING SUBJECT 2</h3></a>\n                </li>\n                <li>\n                        <a href="#"><h3>THIS IS SUBJECT 3</h3></a>\n                </li>\n                <li>\n                        <a href="#"><h3>THE FOURTH SUBjECT</h3></a>\n                </li>\n        </ul>\n</section>', NULL, 1383939882, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(12, 1, 1, 'libraries-pod', 'y', 'webpage', '<section class="info-box libraries">\n        <h2>FOR <br> LIBRARIES</h2>\n        <ul>\n                <li>\n                        <a href="#"><h3>FOR LIBRARIES RESOURCE 1</h3></a>\n                </li>\n                <li>\n                        <a href="#"><h3>RESOURCE #2</h3></a>\n                </li>\n                <li>\n                        <a href="#"><h3>THIRD RESOURCE FOR LIBRARIES</h3></a>\n                </li>\n                <li>\n                        <a href="#"><h3>4TH RESOURCE</h3></a>\n                </li>\n        </ul>\n</section>', NULL, 1383939882, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(13, 1, 1, 'whyacm-pod', 'y', 'webpage', '<section class="info-box why">\n        <h2>WHY <br> ACM BOOKS?</h2>\n        <ul>\n                <li>\n                        <a href="#">\n                                <h3>WHAT IS ACM?</h3>\n                                <p>1 sentence about why ACM can <br>continue on to 2 lines maximum.</p>\n                        </a>\n                </li>\n                <li>\n                        <a href="#">\n                                <h3>QUESTION #2</h3>\n                                <p>1 sentence about why ACM can <br>continue on to 2 lines maximum.</p>\n                        </a>\n                </li>\n                <li>\n                        <a href="#">\n                                <h3>HOW CAN I PUBLISH WITH ACM?</h3>\n                                <p>1 sentence about why ACM can <br>continue on to 2 lines maximum.</p>\n                        </a>\n                </li>\n                <li>\n                        <a href="#">\n                                <h3>LAST QUESTION</h3>\n                                <p>1 sentence about why ACM can <br>continue on to 2 lines maximum.</p>\n                        </a>\n                </li>\n        </ul>\n</section>\n', NULL, 1383939882, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(14, 1, 3, 'footer', 'y', 'webpage', '					</div>\n				</div>\n			</div>\n		</div>\n		<footer id="footer">\n			<div class="f1">\n				<div class="f2">\n					<div class="holder">\n						<span class="copyright">Copyright &copy; 2013 by the <a href="#">ACM</a>. All rights reserved. </span>\n						<nav class="addnav">\n							<ul>\n								<li><a href="#">for authors</a></li>\n								<li><a href="#">readers</a></li>\n								<li><a href="#">privacy policy</a></li>\n							</ul>\n						</nav>\n					</div>\n				</div>\n			</div>\n		</footer>\n	</div>\n</body>\n</html>', NULL, 1383939882, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(15, 1, 4, 'index', 'y', 'webpage', '{embed="global/header"}\n{embed="global/top-nav}\n<div id="main">\n        <h1>ABOUT ACM BOOKS</h1>\n        <div id="content">\n                <article class="text-box">\n                        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet. Donec eget odio ut libero pretium pharetra vitae ut neque. Maecenas commodo sit amet augue at vehicula. Vestibulum eu purus id est vehicula tincidunt nec at orci. </p>\n                        <p>Duis vestibulum massa tortor, sed tincidunt velit dapibus vulputate. Phasellus molestie ultricies nunc. Phasellus mattis elementum dolor ac fermentum. Duis non accumsan mauris. Suspendisse non fringilla lectus. Morbi quis sem egestas, euismod nulla quis, vestibulum felis. Ut ut molestie mi. Suspendisse viverra dictum felis vitae tincidunt. Mauris posuere, elit ac ullamcorper viverra, massa felis lobortis lorem, at pharetra lacus dolor ac est. Aliquam facilisis sem et tellus mattis, sit amet tincidunt ligula condimentum. </p>\n                </article>\n                <div class="submit-area">\n                        <h2>ready to publish with acm books?</h2>\n                        <div class="links">\n                                <a href="#">submit a book proposal</a> <a href="#">copyright/license forms</a> <a href="#">publishing policies</a>\n                        </div>\n                </div>\n                <div class="open-box">\n                        <h2>frequently asked questions</h2>\n                        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet. Donec eget odio ut libero pretium pharetra vitae ut neque. Maecenas commodo sit amet augue at vehicula. Vestibulum eu purus id est vehicula tincidunt nec at orci. </p>\n                        <div class="open-close active">\n                                <a class="opener" href="#">question #1</a>\n                                <div class="detail">\n                                        <p>This is the answer to question #1. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet.</p>\n                                </div>\n                        </div>\n                        <div class="open-close">\n                                <a class="opener" href="#">how do i get an answer to question 2?</a>\n                                <div class="detail">\n                                        <p>This is the answer to question #1. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet.</p>\n                                </div>\n                        </div>\n                        <div class="open-close">\n                                <a class="opener" href="#">what will question 3 be?</a>\n                                <div class="detail">\n                                        <p>This is the answer to question #1. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet.</p>\n                                </div>\n                        </div>\n                        <div class="open-close">\n                                <a class="opener" href="#">this is question number four?</a>\n                                <div class="detail">\n                                        <p>This is the answer to question #1. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet.</p>\n                                </div>\n                        </div>\n                </div>\n        </div>\n</div>\n{embed="global/footer"}\n', '', 1383940119, 2, 'n', 0, '', 'n', 'n', 'o', 0),
(16, 1, 5, 'index', 'y', 'webpage', '{embed="global/header"}\n{embed="global/top-nav}\n{embed="site/banner"}\n<div id="main">\n    <h1>AUTHORS</h1>\n    <div class="two-columns">\n        <div id="content">\n                <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet. Donec eget odio ut libero pretium pharetra vitae ut neque. Maecenas commodo sit amet augue at vehicula. Vestibulum eu purus id est vehicula tincidunt nec at orci. </p>\n                <p>Duis vestibulum massa tortor, sed tincidunt velit dapibus vulputate. Phasellus molestie ultricies nunc. Phasellus mattis elementum dolor ac fermentum. Duis non accumsan mauris. Suspendisse non fringilla lectus. Morbi quis sem egestas, euismod nulla quis, vestibulum felis. Ut ut molestie mi. Suspendisse viverra dictum felis vitae tincidunt. Mauris posuere, elit ac ullamcorper viverra, massa felis lobortis lorem, at pharetra lacus dolor ac est. Aliquam facilisis sem et tellus mattis, sit amet tincidunt ligula condimentum. </p>\n            <div class="open-box">\n                <h2>authors: why should you publish with acm?</h2>\n                <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet. Donec eget odio ut libero pretium pharetra vitae ut neque. Maecenas commodo sit amet augue at vehicula. Vestibulum eu purus id est vehicula tincidunt nec at orci. </p>\n                <div class="open-close active"> <a class="opener" href="#">reason 1</a>\n                    <div class="detail">\n                        <p>This is the answer to question #1. All questions can be initially presented and clicking on the arrow icon makes the answer appear as a dropdown. Lorem ipsum dolor sit</p>\n                    </div>\n                </div>\n                <div class="open-close"> <a class="opener" href="#">this is reason #2</a>\n                    <div class="detail">\n                        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet. Donec eget odio ut libero pretium pharetra vitae ut neque. Maecenas commodo sit amet augue at vehicula. Vestibulum eu purus id est vehicula tincidunt nec at orci. </p>\n                    </div>\n                </div>\n                <div class="open-close"> <a class="opener" href="#">this is the number three reason you should publish with acm</a>\n                    <div class="detail">\n                        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet. Donec eget odio ut libero pretium pharetra vitae ut neque. Maecenas commodo sit amet augue at vehicula. Vestibulum eu purus id est vehicula tincidunt nec at orci. </p>\n                    </div>\n                </div>\n                <div class="open-close"> <a class="opener" href="#">the last and final reason</a>\n                    <div class="detail">\n                        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet. Donec eget odio ut libero pretium pharetra vitae ut neque. Maecenas commodo sit amet augue at vehicula. Vestibulum eu purus id est vehicula tincidunt nec at orci. </p>\n                    </div>\n                </div>\n            </div>\n        </div>\n        {embed="authors/_sidebar"}\n    </div>\n</div>\n{embed="global/footer"}\n', NULL, 1383940084, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(17, 1, 5, '_sidebar', 'y', 'webpage', '<aside id="sidebar">\n    <nav class="sidenav">\n            <ul>\n                    <li><a href="/authors/submitting-a-book-proposal">Submitting a Book Proposal </a></li>\n                    <li><a href="/authors/copyright-publishing-policies">Copyright/Publishing Policy</a></li>\n                    <li><a href="#">Publishing Policies</a></li>\n                    <li><a href="/contact">CONTACT ACM BOOKS DIRECTLY</a></li>\n            </ul>\n    </nav>\n</aside>\n', '', 1384889874, 2, 'n', 0, '', 'n', 'n', 'o', 0),
(18, 1, 6, 'index', 'y', 'webpage', '{embed="global/header"}\n{embed="global/top-nav"}\n<div id="main">\n        <h1>MEET THE BOARD</h1>\n                <article class="text-intro">\n                        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet. Donec eget odio ut libero pretium pharetra vitae ut neque. Maecenas commodo sit amet augue at vehicula. Vestibulum eu purus id est vehicula tincidunt nec at orci. <strong>Click on each Board Member to view their biography.</strong></p>\n                </article>\n        <section class="members-area">\n                <article class="tab-content">\n                        {exp:channel:entries channel="{segment_1}" sort="asc" }\n                        <div id="tab{count}">\n                                <div class="author-area">\n                                                {if count == "1"}<div class="editor">{/if}\n                                                        {exp:channel_images:images entry_id="{entry_id}"}\n                                                        <img src="{image:url:small}" width="210" height="210" alt="{board_name}">\n                                                        {/exp:channel_images:images}\n                                                {if count == "1"}<span class="caption">editor in chief</span>\n                                                </div>\n                                                {/if}\n                                        <h3>{board_name}</h3>\n                                        <strong class="sub-heading">{board_institution}</strong>\n                                       {!-- {categories}<a href="/subjects/{url_title}"><span class="topic">{category_name}</span></a>{/categories} --}\n                                        <span class="topic"><a href="mailto:{board_email}">{board_email}</a></span>\n                                </div>\n                                <div class="text">\n                                        <p>{board_bio}</p>\n                                </div>\n                        </div>\n                        {/exp:channel:entries}\n                </article>\n                <ul class="members">\n                        {exp:channel:entries channel="{segment_1}" sort="asc"}\n                        <li>\n                                <a {if count == "1"}class="active"{/if} href="#tab{count}">\n                                        {if count == "1"}<div class="editor">{/if}\n                                                {exp:channel_images:images entry_id="{entry_id}"}\n                                                        <img src="{image:url:small}" width="210" height="210" alt="{board_name}">\n                                                {/exp:channel_images:images}\n                                        {if count == "1"}<span class="caption">editor in chief</span>\n                                        </div>{/if}\n                                        <h3>{board_name}</h3>\n                                        <strong class="sub-heading">{board_institution}</strong>\n                                       {!-- {categories}<a href="/subjects/{url_title}"><span class="topic">{category_name}</span></a>{/categories} --}\n                                </a>\n                        </li>\n                        {/exp:channel:entries}\n                </ul>\n        </section>\n</div>\n{embed="global/footer"}\n', '', 1384305933, 2, 'n', 0, '', 'n', 'n', 'o', 0),
(25, 1, 10, 'index', 'y', 'webpage', '{embed="global/header"}\n{embed="global/top-nav"}\n<div id="main">\n    {exp:channel:entries channel="{segment_1}" dynamic="no"}\n        <h1>{title}</h1>\n    {/exp:channel:entries}\n        <div id="content">\n            {exp:channel:entries channel="{segment_1}" dynamic="no"}\n                    <article class="text-box">\n                            {about_content}\n                    </article>\n            {/exp:channel:entries}\n            {if segment_2 == "discoverability-access"}\n                {embed="libraries/_expand"}\n            {/if}\n        </div>\n        \n</div>\n{embed="global/footer"}\n', '', 1384809108, 2, 'n', 0, '', 'n', 'n', 'o', 0),
(26, 1, 10, '_expand', 'y', 'webpage', '        <div class="open-box">\n            {/exp:channel:entries}\n                {exp:channel:entries channel="{segment_1}" entry_id="not 1" sort="asc"}\n                    {if about_question != ''''}\n                        <div class="open-close {if count == "1"}active{/if}">\n                                <a class="opener" href="#">{about_question}</a>\n                                <div class="detail">\n                                        <p>{about_answer}</p>\n                                </div>\n                        </div>\n                    {/if}\n            {/exp:channel:entries}', NULL, 1384326322, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(19, 1, 4, 'banner', 'y', 'webpage', '<section class="visual">\n        <img src="images/img1.jpg" width="940" height="338" alt="image description">\n        <article class="description">\n                <h1>ABOUT ACM BOOKS</h1>\n                <p>ACM Books is a new series of high quality books for the computer science community, published by ACM in collaboration with Morgan & Claypool Publishers. </p>\n                <h4><a href="#">More About acm books</a></h4>\n        </article>\n</section>\n', NULL, 1383940805, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(20, 1, 7, 'index', 'y', 'webpage', '{embed="global/header"}\n{embed="global/top-nav"}\n<div id="main">\n        <h1>ABOUT ACM BOOKS</h1>\n        <div id="content">\n                <article class="text-box">\n                        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet. Donec eget odio ut libero pretium pharetra vitae ut neque. Maecenas commodo sit amet augue at vehicula. Vestibulum eu purus id est vehicula tincidunt nec at orci. </p>\n                        <p>Duis vestibulum massa tortor, sed tincidunt velit dapibus vulputate. Phasellus molestie ultricies nunc. Phasellus mattis elementum dolor ac fermentum. Duis non accumsan mauris. Suspendisse non fringilla lectus. Morbi quis sem egestas, euismod nulla quis, vestibulum felis. Ut ut molestie mi. Suspendisse viverra dictum felis vitae tincidunt. Mauris posuere, elit ac ullamcorper viverra, massa felis lobortis lorem, at pharetra lacus dolor ac est. Aliquam facilisis sem et tellus mattis, sit amet tincidunt ligula condimentum. </p>\n                </article>\n                <div class="submit-area">\n                        <h2>ready to publish with acm books?</h2>\n                        <div class="links">\n                                <a href="#">submit a book proposal</a> <a href="#">copyright/license forms</a> <a href="#">publishing policies</a>\n                        </div>\n                </div>\n                <div class="open-box">\n                        <h2>frequently asked questions</h2>\n                        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet. Donec eget odio ut libero pretium pharetra vitae ut neque. Maecenas commodo sit amet augue at vehicula. Vestibulum eu purus id est vehicula tincidunt nec at orci. </p>\n                        <div class="open-close active">\n                                <a class="opener" href="#">question #1</a>\n                                <div class="detail">\n                                        <p>This is the answer to question #1. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet.</p>\n                                </div>\n                        </div>\n                        <div class="open-close">\n                                <a class="opener" href="#">how do i get an answer to question 2?</a>\n                                <div class="detail">\n                                        <p>This is the answer to question #1. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet.</p>\n                                </div>\n                        </div>\n                        <div class="open-close">\n                                <a class="opener" href="#">what will question 3 be?</a>\n                                <div class="detail">\n                                        <p>This is the answer to question #1. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet.</p>\n                                </div>\n                        </div>\n                        <div class="open-close">\n                                <a class="opener" href="#">this is question number four?</a>\n                                <div class="detail">\n                                        <p>This is the answer to question #1. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet.</p>\n                                </div>\n                        </div>\n                </div>\n        </div>\n</div>\n{embed="global/footer"}\n', NULL, 1383941456, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(21, 1, 8, 'index', 'y', 'webpage', '{embed="global/header"}\n{embed="global/top-nav"}\n<div id="main">\n        <h1>Contact Us</h1>\n        <div id="content">\n                <div class="submit-area">\n                        <h2>For general questions regarding ACM Books or to make a purchase via ACM or Morgan & Claypool directly, please contact:</h2>\n                        <b>ACM Headquarters</b><br />\n                        Association for Computing Machinery<br />\n                        2 Penn Plaza, Suite 701<br />\n                        New York, NY 10121-0701<br />\n                        USA<br />\n                        Phone: 212-626-0658<br />\n                        <a href="mailtp:acmbooks-info@acm.org">acmbooks-info@acm.org</a><br />\n                        <b>Morgan & Claypool</b><br />\n                        <a href="mailto:info@morganclaypool.com">info@morganclaypool.com</a><br />\n                        Phone: 415-462-0004\n                </div>\n                <div class="open-box">\n                        <h2>frequently asked questions</h2>\n                        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet. Donec eget odio ut libero pretium pharetra vitae ut neque. Maecenas commodo sit amet augue at vehicula. Vestibulum eu purus id est vehicula tincidunt nec at orci. </p>\n                        <div class="open-close active">\n                                <a class="opener" href="#">question #1</a>\n                                <div class="detail">\n                                        <p>This is the answer to question #1. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet.</p>\n                                </div>\n                        </div>\n                        <div class="open-close">\n                                <a class="opener" href="#">how do i get an answer to question 2?</a>\n                                <div class="detail">\n                                        <p>This is the answer to question #1. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet.</p>\n                                </div>\n                        </div>\n                        <div class="open-close">\n                                <a class="opener" href="#">what will question 3 be?</a>\n                                <div class="detail">\n                                        <p>This is the answer to question #1. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet.</p>\n                                </div>\n                        </div>\n                        <div class="open-close">\n                                <a class="opener" href="#">this is question number four?</a>\n                                <div class="detail">\n                                        <p>This is the answer to question #1. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet.</p>\n                                </div>\n                        </div>\n                </div>\n        </div>\n</div>\n{embed="global/footer"}\n', NULL, 1383942772, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(22, 1, 3, '_faqs', 'y', 'webpage', '{exp:channel:entries channel="{segment_1}" entry_id="not 1"}\n    {if count != "0"}\n        <div class="open-box">\n            <h2>frequently asked questions</h2>\n            <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tempor nunc eget est scelerisque laoreet. Donec eget odio ut libero pretium pharetra vitae ut neque. Maecenas commodo sit amet augue at vehicula. Vestibulum eu purus id est vehicula tincidunt nec at orci. </p>\n    {/if}\n            \n            {/exp:channel:entries}\n                {exp:channel:entries channel="{segment_1}" entry_id="not 1" sort="asc"}\n                    {if about_question != ''''}\n                        <div class="open-close {if count == "1"}active{/if}">\n                                <a class="opener" href="#">{about_question}</a>\n                                <div class="detail">\n                                        <p>{about_answer}</p>\n                                </div>\n                        </div>\n                    {/if}\n            {/exp:channel:entries}\n            \n{exp:channel:entries channel="{segment_1}" entry_id="not 1"}\n    {if count != "0"}\n        </div>\n    {/if}\n{/exp:channel:entries}', NULL, 1383945516, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(23, 1, 5, 'contact', 'y', 'webpage', '{embed="global/header"}\n{embed="global/top-nav"}\n<div id="main">\n        <h1>Contact Us</h1>\n        <div id="content">\n                <div class="submit-area">\n                        <h2>For Matters related to Author Submissions, please contact either the appropriate Area Editor listed on the <a href="board">', NULL, 1383959528, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(24, 1, 9, 'index', 'y', 'webpage', '{embed="global/header"}\n{embed="global/top-nav"}\n<div id="main">\n    <h1>SUBJECTS</h1>\n    <div class="two-columns">\n        <div id="content">\n            Summary Goes here......\n            <div class="open-box">\n                <h2>authors: why should you publish with acm?</h2>\n                {exp:channel:entries channel="board" sort="asc"}\n                        <div class="open-close {if count == "1"}active{/if}">\n                            {categories}<a class="opener" href="#">{category_name}</a>{/categories}\n                            <div class="detail">\n                                <b><a href="/board#tab{count}">{board_name}</a></b>\n                            <p>{categories}{category_description}{/categories}</p>\n                            </div>\n                        </div>\n                    {/if}\n                {/exp:channel:entries}\n            </div>  \n        </div>\n        {embed="authors/_sidebar"}       \n    </div>\n</div>\n{embed="global/footer"}', NULL, 1384297172, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(27, 1, 3, 'index', 'y', 'webpage', '', NULL, 1384874246, 5, 'n', 0, '', 'n', 'n', 'o', 0),
(28, 1, 4, 'sidebar', 'y', 'webpage', '<aside id="sidebar">\n    <nav class="sidenav">\n            <ul>\n                {exp:channel:entries channel="{segment_1}" dynamic="no" entry_id="150|151|152|153"}\n                <li>\n                        <a href="/authors/{url_title}" {if url_title == "{segment_2}"}class="active"{/if}>{title}</a>\n                </li>\n                {/exp:channel:entries}\n            </ul>\n    </nav>\n</aside>', NULL, 1385063963, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(29, 1, 10, 'sidebar', 'y', 'webpage', '<aside id="sidebar">\n    <nav class="sidenav">\n            <ul>\n                {exp:channel:entries channel="{segment_1}" dynamic="no" entry_id="154|155|156"}\n                <li>\n                        <a href="/{segment_1}/{url_title}" {if url_title == "{segment_2}"}class="active"{/if}>{title}</a>\n                </li>\n                {/exp:channel:entries}\n                <li>\n                        <a href="/contact">Contact Us</a>\n                </li>\n            </ul>\n    </nav>\n</aside>', NULL, 1385065429, 1, 'n', 0, '', 'n', 'n', 'o', 0);

-- --------------------------------------------------------

--
-- Table structure for table `exp_template_groups`
--

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

--
-- Dumping data for table `exp_template_groups`
--

INSERT INTO `exp_template_groups` (`group_id`, `site_id`, `group_name`, `group_order`, `is_site_default`) VALUES
(1, 1, 'site', 1, 'y'),
(2, 1, 'error', 2, 'n'),
(3, 1, 'global', 3, 'n'),
(4, 1, 'about', 4, 'n'),
(5, 1, 'authors', 5, 'n'),
(6, 1, 'board', 6, 'n'),
(7, 1, 'readers', 7, 'n'),
(8, 1, 'contact', 8, 'n'),
(9, 1, 'subjects', 9, 'n'),
(10, 1, 'libraries', 10, 'n');

-- --------------------------------------------------------

--
-- Table structure for table `exp_template_member_groups`
--

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

--
-- Dumping data for table `exp_template_member_groups`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_template_no_access`
--

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

--
-- Dumping data for table `exp_template_no_access`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_throttle`
--

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

--
-- Dumping data for table `exp_throttle`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_updater_addons`
--

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

--
-- Dumping data for table `exp_updater_addons`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_update_log`
--

DROP TABLE IF EXISTS `exp_update_log`;
CREATE TABLE IF NOT EXISTS `exp_update_log` (
  `log_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` int(10) unsigned DEFAULT NULL,
  `message` text,
  `method` varchar(100) DEFAULT NULL,
  `line` int(10) unsigned DEFAULT NULL,
  `file` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`log_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=10 ;

--
-- Dumping data for table `exp_update_log`
--

INSERT INTO `exp_update_log` (`log_id`, `timestamp`, `message`, `method`, `line`, `file`) VALUES
(1, 1377865840, 'Preparing to update from 2.6.0 to 2.7.0. Awaiting acceptance of license terms.', NULL, NULL, NULL),
(2, 1377865843, 'Updating to 2.6.1', NULL, NULL, NULL),
(3, 1377865844, 'Updating to 2.7.0', NULL, NULL, NULL),
(4, 1377865844, 'Update complete. Now running version 2.7.0.', NULL, NULL, NULL),
(5, 1377865844, 'Update complete. Now running version 2.7.0.', NULL, NULL, NULL),
(6, 1383872789, 'Preparing to update from 2.7.0 to 2.7.2. Awaiting acceptance of license terms.', NULL, NULL, NULL),
(7, 1383872792, 'Updating to 2.7.1', NULL, NULL, NULL),
(8, 1383872792, 'Updating to 2.7.2', NULL, NULL, NULL),
(9, 1383872793, 'Update complete. Now running version 2.7.2.', NULL, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `exp_upload_no_access`
--

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

--
-- Dumping data for table `exp_upload_no_access`
--


-- --------------------------------------------------------

--
-- Table structure for table `exp_upload_prefs`
--

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

--
-- Dumping data for table `exp_upload_prefs`
--

INSERT INTO `exp_upload_prefs` (`id`, `site_id`, `name`, `server_path`, `url`, `allowed_types`, `max_size`, `max_height`, `max_width`, `properties`, `pre_format`, `post_format`, `file_properties`, `file_pre_format`, `file_post_format`, `cat_group`, `batch_location`) VALUES
(1, 1, 'Board Pics', '/var/www/interactions/books-acm.minla.net/htdocs/images/uploads/board/', '/images/uploads/board/', 'img', '', '', '', '', '', '', '', '', '', '', NULL);
