DROP TABLE IF EXISTS mw_archive;
CREATE TABLE `mw_archive` (
  `ar_namespace` int(11) NOT NULL default '0',
  `ar_title` varbinary(255) NOT NULL default '',
  `ar_text` mediumblob NOT NULL,
  `ar_comment` tinyblob NOT NULL,
  `ar_user` int(10) unsigned NOT NULL default '0',
  `ar_user_text` varbinary(255) NOT NULL,
  `ar_timestamp` binary(14) NOT NULL default '\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `ar_minor_edit` tinyint(4) NOT NULL default '0',
  `ar_flags` tinyblob NOT NULL,
  `ar_rev_id` int(10) unsigned default NULL,
  `ar_text_id` int(10) unsigned default NULL,
  `ar_deleted` tinyint(3) unsigned NOT NULL default '0',
  `ar_len` int(10) unsigned default NULL,
  `ar_page_id` int(10) unsigned default NULL,
  `ar_parent_id` int(10) unsigned default NULL,
  KEY `name_title_timestamp` (`ar_namespace`,`ar_title`,`ar_timestamp`),
  KEY `usertext_timestamp` (`ar_user_text`,`ar_timestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=binary;

INSERT INTO mw_archive VALUES('2', 'Spirit', '', 'Created page with \'{{pp-semi-vandalism|small=yes}} {{Infobox Musical artist |Name               = Spirit |Img                =  |Background         = server_owner |Birth_name         = Scott *. ***...\'', '2', 'Spirit', '20090318215939', '0', '', '6', '6', '0', '411', '4', NULL);
INSERT INTO mw_archive VALUES('10', 'Infobox_Person', '', 'Created page with \'{{Infobox Person |name        =  |image       =  |caption     =  |birth_date  = {{Birth date|YYYY|MM|DD}} |birth_place =  |death_date  = <!-- {{Death date and age|YYYY|MM|DD|YYYY...\'', '1', 'Daniel', '20090319222550', '0', '', '14', '13', '0', '273', '9', NULL);
INSERT INTO mw_archive VALUES('10', 'Infobox_Person', '', 'Created page with \'{{Infobox Person |name        =  |image       =  |caption     =  |birth_date  = {{Birth date|YYYY|MM|DD}} |birth_place =  |death_date  = <!-- {{Death date and age|YYYY|MM|DD|YYYY...\'', '1', 'Daniel', '20090319222924', '0', '', '15', '14', '0', '273', '10', NULL);
INSERT INTO mw_archive VALUES('10', 'Pp-template', '', 'Created page with \'<includeonly>{{pp-meta |type={{#switch:{{{demolevel|{{PROTECTIONLEVEL:edit}}}}}    |semi    |autoconfirmed=semi    |administrator    |full    |sysop=indef    |#default=indef<!--f...\'', '1', 'Daniel', '20090319223747', '0', '', '21', '20', '0', '2604', '12', NULL);
INSERT INTO mw_archive VALUES('0', 'Test', '', 'Created page with \'{{Infobox Person |name        =  |image       =  |caption     =  |birth_date  = {{Birth date|YYYY|MM|DD}} |birth_place =  |death_date  = <!-- {{Death date and age|YYYY|MM|DD|YYYY...\'', '1', 'Daniel', '20090319223913', '0', '', '23', '22', '0', '273', '14', NULL);
INSERT INTO mw_archive VALUES('0', 'FUCKING_WORKS', '', 'Created page with \'{{Infobox |name    = Infobox/doc |title   =  |image   = [[Image:example.png|200px]] |caption = Caption for example.png  |headerstyle  = background:#ccf; |labelstyle   = backgroun...\'', '0', '99.252.16.109', '20090320235712', '0', '', '37', '34', '0', '612', '21', NULL);
INSERT INTO mw_archive VALUES('0', 'Bill_Gates', '', 'Created page with \'{{Infobox Person |name        = Bill Gates |image       = Bill Gates 2004 cr.jpg |image_size  = 170px |caption     = At an IT forum in Denmark, 2004 |birth_name  = William Henry ...\'', '1', 'Daniel', '20090321000159', '0', '', '40', '37', '0', '1037', '22', NULL);
INSERT INTO mw_archive VALUES('0', 'English_language', '', 'Created page with \'{{pp-move-indef}} {{refimprove|date=February 2009}}  {{English language}} \'\'\'English\'\'\' is a [[West Germanic language]] that originated in [[Anglo-Saxon England]] and has \'\'[[lin...\'', '2', 'Spirit', '20090321235501', '0', '', '119', '99', '0', '77096', '41', NULL);



DROP TABLE IF EXISTS mw_category;
CREATE TABLE `mw_category` (
  `cat_id` int(10) unsigned NOT NULL auto_increment,
  `cat_title` varbinary(255) NOT NULL,
  `cat_pages` int(11) NOT NULL default '0',
  `cat_subcats` int(11) NOT NULL default '0',
  `cat_files` int(11) NOT NULL default '0',
  `cat_hidden` tinyint(3) unsigned NOT NULL default '0',
  PRIMARY KEY  (`cat_id`),
  UNIQUE KEY `cat_title` (`cat_title`),
  KEY `cat_pages` (`cat_pages`)
) ENGINE=InnoDB AUTO_INCREMENT=61 DEFAULT CHARSET=binary;

INSERT INTO mw_category VALUES('1', 'Wikipedia_protected_templates', '10', '0', '0', '0');
INSERT INTO mw_category VALUES('2', 'Wikipedia_adminship', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('3', 'Wikipedia_functionaries', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('4', 'English_language', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('5', 'English_idioms', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('6', 'Languages_of_The_Gambia', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('7', 'Languages_of_American_Samoa', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('8', 'Languages_of_Australia', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('9', 'Languages_of_Bangladesh', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('10', 'Languages_of_Belize', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('11', 'Languages_of_Botswana', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('12', 'Languages_of_the_British_Virgin_Islands', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('13', 'Languages_of_Cameroon', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('14', 'Languages_of_Canada', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('15', 'Languages_of_Fiji', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('16', 'Languages_of_Ghana', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('17', 'Languages_of_Guam', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('18', 'Languages_of_Guyana', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('19', 'Languages_of_Hong_Kong', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('20', 'Languages_of_India', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('21', 'Languages_of_Ireland', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('22', 'Languages_of_Jamaica', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('23', 'Languages_of_Kenya', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('24', 'Languages_of_Kiribati', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('25', 'Languages_of_Lesotho', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('26', 'Languages_of_Liberia', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('27', 'Languages_of_Macau', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('28', 'Languages_of_Madagascar', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('29', 'Languages_of_Malawi', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('30', 'Languages_of_Malta', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('31', 'Languages_of_Mauritius', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('32', 'Languages_of_Namibia', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('33', 'Languages_of_Nauru', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('34', 'Languages_of_New_Zealand', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('35', 'Languages_of_Nigeria', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('36', 'Languages_of_Niue', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('37', 'Languages_of_Pakistan', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('38', 'Languages_of_Palau', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('39', 'Languages_of_Papua_New_Guinea', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('40', 'Languages_of_Pitcairn', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('41', 'Languages_of_Russia', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('42', 'Languages_of_Rwanda', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('43', 'Languages_of_Sierra_Leone', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('44', 'Languages_of_Singapore', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('45', 'Languages_of_South_Africa', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('46', 'Languages_of_Sri_Lanka', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('47', 'Languages_of_Sudan', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('48', 'Languages_of_Swaziland', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('49', 'Languages_of_the_Philippines', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('50', 'Languages_of_the_Seychelles', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('51', 'Languages_of_the_Solomon_Islands', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('52', 'Languages_of_the_United_Kingdom', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('53', 'Languages_of_the_United_States_Virgin_Islands', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('54', 'Languages_of_the_United_States', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('55', 'Languages_of_Tokelau', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('56', 'Languages_of_Trinidad_and_Tobago', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('57', 'Languages_of_Uganda', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('58', 'Languages_of_Vanuatu', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('59', 'Languages_of_Zambia', '0', '0', '0', '0');
INSERT INTO mw_category VALUES('60', 'Languages_of_Zimbabwe', '0', '0', '0', '0');



DROP TABLE IF EXISTS mw_categorylinks;
CREATE TABLE `mw_categorylinks` (
  `cl_from` int(10) unsigned NOT NULL default '0',
  `cl_to` varbinary(255) NOT NULL default '',
  `cl_sortkey` varbinary(70) NOT NULL default '',
  `cl_timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
  UNIQUE KEY `cl_from` (`cl_from`,`cl_to`),
  KEY `cl_sortkey` (`cl_to`,`cl_sortkey`,`cl_from`),
  KEY `cl_timestamp` (`cl_to`,`cl_timestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=binary;

INSERT INTO mw_categorylinks VALUES('11', 'Wikipedia_protected_templates', 'Documentation', '2009-03-20 22:49:13');
INSERT INTO mw_categorylinks VALUES('13', 'Wikipedia_protected_templates', 'Infobox Person', '2009-03-20 22:49:34');
INSERT INTO mw_categorylinks VALUES('17', 'Wikipedia_protected_templates', 'Infobox', '2009-03-20 22:49:33');
INSERT INTO mw_categorylinks VALUES('23', 'Wikipedia_protected_templates', 'Mbox', '2009-03-20 23:22:43');
INSERT INTO mw_categorylinks VALUES('24', 'Wikipedia_protected_templates', 'Namespace detect', '2009-03-20 23:24:00');
INSERT INTO mw_categorylinks VALUES('25', 'Wikipedia_protected_templates', 'Ambox', '2009-03-20 23:24:28');
INSERT INTO mw_categorylinks VALUES('26', 'Wikipedia_protected_templates', 'Ambox/core', '2009-03-20 23:24:57');
INSERT INTO mw_categorylinks VALUES('43', 'Wikipedia_protected_templates', 'Main', '2009-03-21 23:19:51');
INSERT INTO mw_categorylinks VALUES('44', 'Wikipedia_protected_templates', 'Rellink', '2009-03-21 23:21:58');
INSERT INTO mw_categorylinks VALUES('47', 'Wikipedia_protected_templates', 'Infobox Guild', '2009-03-24 12:44:36');



DROP TABLE IF EXISTS mw_externallinks;
CREATE TABLE `mw_externallinks` (
  `el_from` int(10) unsigned NOT NULL default '0',
  `el_to` blob NOT NULL,
  `el_index` blob NOT NULL,
  KEY `el_from` (`el_from`,`el_to`(40)),
  KEY `el_to` (`el_to`(60),`el_from`),
  KEY `el_index` (`el_index`(60))
) ENGINE=InnoDB DEFAULT CHARSET=binary;

INSERT INTO mw_externallinks VALUES('8', 'http://www.ro.soapstudios.org/forums/member.php?u={{{userid}}}', 'http://org.soapstudios.ro.www./forums/member.php?u={{{userid}}}');
INSERT INTO mw_externallinks VALUES('16', 'http://upload.wikimedia.org/wikipedia/commons/thumb/8/8a/Loudspeaker.svg/11px-Loudspeaker.svg.png', 'http://org.wikimedia.upload./wikipedia/commons/thumb/8/8a/Loudspeaker.svg/11px-Loudspeaker.svg.png');
INSERT INTO mw_externallinks VALUES('16', 'http://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Gnome-speakernotes.png/30px-Gnome-speakernotes.png', 'http://org.wikimedia.upload./wikipedia/commons/thumb/a/a6/Gnome-speakernotes.png/30px-Gnome-speakernotes.png');
INSERT INTO mw_externallinks VALUES('16', 'http://upload.wikimedia.org/wikipedia/en/thumb/2/20/Tango-video-x-generic.png/40px-Tango-video-x-generic.png', 'http://org.wikimedia.upload./wikipedia/en/thumb/2/20/Tango-video-x-generic.png/40px-Tango-video-x-generic.png');
INSERT INTO mw_externallinks VALUES('16', 'http://upload.wikimedia.org/wikipedia/commons/thumb/2/23/Icons-mini-file_acrobat.gif/15px-Icons-mini-file_acrobat.gif', 'http://org.wikimedia.upload./wikipedia/commons/thumb/2/23/Icons-mini-file_acrobat.gif/15px-Icons-mini-file_acrobat.gif');
INSERT INTO mw_externallinks VALUES('16', 'http://upload.wikimedia.org/wikipedia/en/a/a7/Monobook-globe.png', 'http://org.wikimedia.upload./wikipedia/en/a/a7/Monobook-globe.png');
INSERT INTO mw_externallinks VALUES('16', 'http://en.wikipedia.org/skins-1.5/common/commonPrint.css', 'http://org.wikipedia.en./skins-1.5/common/commonPrint.css');
INSERT INTO mw_externallinks VALUES('16', 'http://upload.wikimedia.org/wikipedia/commons/5/5d/Checker-16x16.png', 'http://org.wikimedia.upload./wikipedia/commons/5/5d/Checker-16x16.png');
INSERT INTO mw_externallinks VALUES('16', 'http://meta.wikimedia.org/wiki/MediaWiki:Common.css', 'http://org.wikimedia.meta./wiki/MediaWiki:Common.css');
INSERT INTO mw_externallinks VALUES('16', 'http://upload.wikimedia.org/wikipedia/en/7/7e/MP-open-book.png', 'http://org.wikimedia.upload./wikipedia/en/7/7e/MP-open-book.png');
INSERT INTO mw_externallinks VALUES('16', 'http://upload.wikimedia.org/wikipedia/en/a/ae/MP-magnifying-glass.png', 'http://org.wikimedia.upload./wikipedia/en/a/ae/MP-magnifying-glass.png');
INSERT INTO mw_externallinks VALUES('16', 'http://upload.wikimedia.org/wikipedia/commons/8/8e/MP-open-book2.png', 'http://org.wikimedia.upload./wikipedia/commons/8/8e/MP-open-book2.png');
INSERT INTO mw_externallinks VALUES('16', 'http://upload.wikimedia.org/wikipedia/en/c/c4/Faded_globe.PNG\'', 'http://org.wikimedia.upload./wikipedia/en/c/c4/Faded_globe.PNG\'');
INSERT INTO mw_externallinks VALUES('39', 'http://ro.soapstudios.org/wiki/index.php?title=Special:Listusers/sysop&limit=5000', 'http://org.soapstudios.ro./wiki/index.php?title=Special:Listusers/sysop&limit=5000');
INSERT INTO mw_externallinks VALUES('39', 'http://en.wikipedia.org/w/index.php?title=Wikipedia:Administrators\'_noticeboard&diff=73659720&oldid=73657229', 'http://org.wikipedia.en./w/index.php?title=Wikipedia:Administrators\'_noticeboard&diff=73659720&oldid=73657229');
INSERT INTO mw_externallinks VALUES('53', 'http://98.221.81.205/cp/?module=guild&action=emblem&login=SoapRO&charmap=SoapRO&id=', 'http://205.81.221.98./cp/?module=guild&action=emblem&login=SoapRO&charmap=SoapRO&id=');
INSERT INTO mw_externallinks VALUES('54', 'http://ro.soapstudios.org/forums', 'http://org.soapstudios.ro./forums');
INSERT INTO mw_externallinks VALUES('54', 'http://ro.soapstudios.org/forums/payments.php', 'http://org.soapstudios.ro./forums/payments.php');



DROP TABLE IF EXISTS mw_filearchive;
CREATE TABLE `mw_filearchive` (
  `fa_id` int(11) NOT NULL auto_increment,
  `fa_name` varbinary(255) NOT NULL default '',
  `fa_archive_name` varbinary(255) default '',
  `fa_storage_group` varbinary(16) default NULL,
  `fa_storage_key` varbinary(64) default '',
  `fa_deleted_user` int(11) default NULL,
  `fa_deleted_timestamp` binary(14) default '\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `fa_deleted_reason` blob,
  `fa_size` int(10) unsigned default '0',
  `fa_width` int(11) default '0',
  `fa_height` int(11) default '0',
  `fa_metadata` mediumblob,
  `fa_bits` int(11) default '0',
  `fa_media_type` enum('UNKNOWN','BITMAP','DRAWING','AUDIO','VIDEO','MULTIMEDIA','OFFICE','TEXT','EXECUTABLE','ARCHIVE') default NULL,
  `fa_major_mime` enum('unknown','application','audio','image','text','video','message','model','multipart') default 'unknown',
  `fa_minor_mime` varbinary(32) default 'unknown',
  `fa_description` tinyblob,
  `fa_user` int(10) unsigned default '0',
  `fa_user_text` varbinary(255) default NULL,
  `fa_timestamp` binary(14) default '\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `fa_deleted` tinyint(3) unsigned NOT NULL default '0',
  PRIMARY KEY  (`fa_id`),
  KEY `fa_name` (`fa_name`,`fa_timestamp`),
  KEY `fa_storage_group` (`fa_storage_group`,`fa_storage_key`),
  KEY `fa_deleted_timestamp` (`fa_deleted_timestamp`),
  KEY `fa_user_timestamp` (`fa_user_text`,`fa_timestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=binary;




DROP TABLE IF EXISTS mw_hitcounter;
CREATE TABLE `mw_hitcounter` (
  `hc_id` int(10) unsigned NOT NULL
) ENGINE=MEMORY DEFAULT CHARSET=latin1 MAX_ROWS=25000;




DROP TABLE IF EXISTS mw_image;
CREATE TABLE `mw_image` (
  `img_name` varbinary(255) NOT NULL default '',
  `img_size` int(10) unsigned NOT NULL default '0',
  `img_width` int(11) NOT NULL default '0',
  `img_height` int(11) NOT NULL default '0',
  `img_metadata` mediumblob NOT NULL,
  `img_bits` int(11) NOT NULL default '0',
  `img_media_type` enum('UNKNOWN','BITMAP','DRAWING','AUDIO','VIDEO','MULTIMEDIA','OFFICE','TEXT','EXECUTABLE','ARCHIVE') default NULL,
  `img_major_mime` enum('unknown','application','audio','image','text','video','message','model','multipart') NOT NULL default 'unknown',
  `img_minor_mime` varbinary(32) NOT NULL default 'unknown',
  `img_description` tinyblob NOT NULL,
  `img_user` int(10) unsigned NOT NULL default '0',
  `img_user_text` varbinary(255) NOT NULL,
  `img_timestamp` varbinary(14) NOT NULL default '',
  `img_sha1` varbinary(32) NOT NULL default '',
  PRIMARY KEY  (`img_name`),
  KEY `img_usertext_timestamp` (`img_user_text`,`img_timestamp`),
  KEY `img_size` (`img_size`),
  KEY `img_timestamp` (`img_timestamp`),
  KEY `img_sha1` (`img_sha1`)
) ENGINE=InnoDB DEFAULT CHARSET=binary;

INSERT INTO mw_image VALUES('Ambox_protection.png', '2193', '40', '40', '', '8', 'BITMAP', 'image', 'png', '', '1', 'Daniel', '20090321003946', 'd62i7vof2kq3v7j7ghmxmotvt87lt8f');
INSERT INTO mw_image VALUES('Imbox_protection.png', '2193', '40', '40', '', '8', 'BITMAP', 'image', 'png', '', '1', 'Daniel', '20090321003900', 'd62i7vof2kq3v7j7ghmxmotvt87lt8f');
INSERT INTO mw_image VALUES('Lfemblem.png', '658', '24', '24', '', '8', 'BITMAP', 'image', 'png', 'Lunar Flare emblem as of March 24th', '1', 'Daniel', '20090324142645', 'qzfz6vo2wi9d5xm5q7o2gh0l1nz4efr');



DROP TABLE IF EXISTS mw_imagelinks;
CREATE TABLE `mw_imagelinks` (
  `il_from` int(10) unsigned NOT NULL default '0',
  `il_to` varbinary(255) NOT NULL default '',
  UNIQUE KEY `il_from` (`il_from`,`il_to`),
  KEY `il_to` (`il_to`,`il_from`)
) ENGINE=InnoDB DEFAULT CHARSET=binary;

INSERT INTO mw_imagelinks VALUES('1', 'Ambox_protection.png');
INSERT INTO mw_imagelinks VALUES('7', 'Ambox_protection.png');
INSERT INTO mw_imagelinks VALUES('11', 'Template-info.svg');
INSERT INTO mw_imagelinks VALUES('13', 'Template-info.svg');
INSERT INTO mw_imagelinks VALUES('17', 'Template-info.svg');
INSERT INTO mw_imagelinks VALUES('18', 'Example.png');
INSERT INTO mw_imagelinks VALUES('19', 'Template-info.svg');
INSERT INTO mw_imagelinks VALUES('20', 'Template-info.svg');
INSERT INTO mw_imagelinks VALUES('23', 'Template-info.svg');
INSERT INTO mw_imagelinks VALUES('24', 'Template-info.svg');
INSERT INTO mw_imagelinks VALUES('25', 'Template-info.svg');
INSERT INTO mw_imagelinks VALUES('26', 'Ambox_notice.png');
INSERT INTO mw_imagelinks VALUES('26', 'Template-info.svg');
INSERT INTO mw_imagelinks VALUES('27', 'Lfemblem.png');
INSERT INTO mw_imagelinks VALUES('30', 'Ambox_protection.png');
INSERT INTO mw_imagelinks VALUES('39', 'AdminSymbol.PNG');
INSERT INTO mw_imagelinks VALUES('44', 'Template-info.svg');
INSERT INTO mw_imagelinks VALUES('47', 'Template-info.svg');



DROP TABLE IF EXISTS mw_interwiki;
CREATE TABLE `mw_interwiki` (
  `iw_prefix` varbinary(32) NOT NULL,
  `iw_url` blob NOT NULL,
  `iw_local` tinyint(1) NOT NULL,
  `iw_trans` tinyint(4) NOT NULL default '0',
  UNIQUE KEY `iw_prefix` (`iw_prefix`)
) ENGINE=InnoDB DEFAULT CHARSET=binary;

INSERT INTO mw_interwiki VALUES('acronym', 'http://www.acronymfinder.com/af-query.asp?String=exact&Acronym=$1', '0', '0');
INSERT INTO mw_interwiki VALUES('advogato', 'http://www.advogato.org/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('annotationwiki', 'http://www.seedwiki.com/page.cfm?wikiid=368&doc=$1', '0', '0');
INSERT INTO mw_interwiki VALUES('arxiv', 'http://www.arxiv.org/abs/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('c2find', 'http://c2.com/cgi/wiki?FindPage&value=$1', '0', '0');
INSERT INTO mw_interwiki VALUES('cache', 'http://www.google.com/search?q=cache:$1', '0', '0');
INSERT INTO mw_interwiki VALUES('commons', 'http://commons.wikimedia.org/wiki/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('corpknowpedia', 'http://corpknowpedia.org/wiki/index.php/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('dictionary', 'http://www.dict.org/bin/Dict?Database=*&Form=Dict1&Strategy=*&Query=$1', '0', '0');
INSERT INTO mw_interwiki VALUES('disinfopedia', 'http://www.disinfopedia.org/wiki.phtml?title=$1', '0', '0');
INSERT INTO mw_interwiki VALUES('docbook', 'http://wiki.docbook.org/topic/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('doi', 'http://dx.doi.org/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('drumcorpswiki', 'http://www.drumcorpswiki.com/index.php/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('dwjwiki', 'http://www.suberic.net/cgi-bin/dwj/wiki.cgi?$1', '0', '0');
INSERT INTO mw_interwiki VALUES('elibre', 'http://enciclopedia.us.es/index.php/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('emacswiki', 'http://www.emacswiki.org/cgi-bin/wiki.pl?$1', '0', '0');
INSERT INTO mw_interwiki VALUES('foldoc', 'http://foldoc.org/?$1', '0', '0');
INSERT INTO mw_interwiki VALUES('foxwiki', 'http://fox.wikis.com/wc.dll?Wiki~$1', '0', '0');
INSERT INTO mw_interwiki VALUES('freebsdman', 'http://www.FreeBSD.org/cgi/man.cgi?apropos=1&query=$1', '0', '0');
INSERT INTO mw_interwiki VALUES('gej', 'http://www.esperanto.de/cgi-bin/aktivikio/wiki.pl?$1', '0', '0');
INSERT INTO mw_interwiki VALUES('gentoo-wiki', 'http://gentoo-wiki.com/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('google', 'http://www.google.com/search?q=$1', '0', '0');
INSERT INTO mw_interwiki VALUES('googlegroups', 'http://groups.google.com/groups?q=$1', '0', '0');
INSERT INTO mw_interwiki VALUES('hammondwiki', 'http://www.dairiki.org/HammondWiki/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('hewikisource', 'http://he.wikisource.org/wiki/$1', '1', '0');
INSERT INTO mw_interwiki VALUES('hrwiki', 'http://www.hrwiki.org/index.php/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('imdb', 'http://us.imdb.com/Title?$1', '0', '0');
INSERT INTO mw_interwiki VALUES('jargonfile', 'http://sunir.org/apps/meta.pl?wiki=JargonFile&redirect=$1', '0', '0');
INSERT INTO mw_interwiki VALUES('jspwiki', 'http://www.jspwiki.org/wiki/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('keiki', 'http://kei.ki/en/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('kmwiki', 'http://kmwiki.wikispaces.com/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('linuxwiki', 'http://linuxwiki.de/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('lojban', 'http://www.lojban.org/tiki/tiki-index.php?page=$1', '0', '0');
INSERT INTO mw_interwiki VALUES('lqwiki', 'http://wiki.linuxquestions.org/wiki/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('lugkr', 'http://lug-kr.sourceforge.net/cgi-bin/lugwiki.pl?$1', '0', '0');
INSERT INTO mw_interwiki VALUES('mathsongswiki', 'http://SeedWiki.com/page.cfm?wikiid=237&doc=$1', '0', '0');
INSERT INTO mw_interwiki VALUES('meatball', 'http://www.usemod.com/cgi-bin/mb.pl?$1', '0', '0');
INSERT INTO mw_interwiki VALUES('mediawikiwiki', 'http://www.mediawiki.org/wiki/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('mediazilla', 'http://bugzilla.wikipedia.org/$1', '1', '0');
INSERT INTO mw_interwiki VALUES('memoryalpha', 'http://www.memory-alpha.org/en/index.php/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('metawiki', 'http://sunir.org/apps/meta.pl?$1', '0', '0');
INSERT INTO mw_interwiki VALUES('metawikipedia', 'http://meta.wikimedia.org/wiki/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('moinmoin', 'http://purl.net/wiki/moin/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('mozillawiki', 'http://wiki.mozilla.org/index.php/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('oeis', 'http://www.research.att.com/cgi-bin/access.cgi/as/njas/sequences/eisA.cgi?Anum=$1', '0', '0');
INSERT INTO mw_interwiki VALUES('openfacts', 'http://openfacts.berlios.de/index.phtml?title=$1', '0', '0');
INSERT INTO mw_interwiki VALUES('openwiki', 'http://openwiki.com/?$1', '0', '0');
INSERT INTO mw_interwiki VALUES('patwiki', 'http://gauss.ffii.org/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('pmeg', 'http://www.bertilow.com/pmeg/$1.php', '0', '0');
INSERT INTO mw_interwiki VALUES('ppr', 'http://c2.com/cgi/wiki?$1', '0', '0');
INSERT INTO mw_interwiki VALUES('pythoninfo', 'http://wiki.python.org/moin/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('rfc', 'http://www.rfc-editor.org/rfc/rfc$1.txt', '0', '0');
INSERT INTO mw_interwiki VALUES('s23wiki', 'http://is-root.de/wiki/index.php/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('seattlewiki', 'http://seattle.wikia.com/wiki/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('seattlewireless', 'http://seattlewireless.net/?$1', '0', '0');
INSERT INTO mw_interwiki VALUES('senseislibrary', 'http://senseis.xmp.net/?$1', '0', '0');
INSERT INTO mw_interwiki VALUES('slashdot', 'http://slashdot.org/article.pl?sid=$1', '0', '0');
INSERT INTO mw_interwiki VALUES('sourceforge', 'http://sourceforge.net/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('squeak', 'http://wiki.squeak.org/squeak/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('susning', 'http://www.susning.nu/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('svgwiki', 'http://wiki.svg.org/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('tavi', 'http://tavi.sourceforge.net/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('tejo', 'http://www.tejo.org/vikio/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('theopedia', 'http://www.theopedia.com/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('tmbw', 'http://www.tmbw.net/wiki/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('tmnet', 'http://www.technomanifestos.net/?$1', '0', '0');
INSERT INTO mw_interwiki VALUES('tmwiki', 'http://www.EasyTopicMaps.com/?page=$1', '0', '0');
INSERT INTO mw_interwiki VALUES('twiki', 'http://twiki.org/cgi-bin/view/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('uea', 'http://www.tejo.org/uea/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('unreal', 'http://wiki.beyondunreal.com/wiki/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('usemod', 'http://www.usemod.com/cgi-bin/wiki.pl?$1', '0', '0');
INSERT INTO mw_interwiki VALUES('vinismo', 'http://vinismo.com/en/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('webseitzwiki', 'http://webseitz.fluxent.com/wiki/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('why', 'http://clublet.com/c/c/why?$1', '0', '0');
INSERT INTO mw_interwiki VALUES('wiki', 'http://c2.com/cgi/wiki?$1', '0', '0');
INSERT INTO mw_interwiki VALUES('wikia', 'http://www.wikia.com/wiki/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('wikibooks', 'http://en.wikibooks.org/wiki/$1', '1', '0');
INSERT INTO mw_interwiki VALUES('wikicities', 'http://www.wikicities.com/index.php/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('wikif1', 'http://www.wikif1.org/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('wikihow', 'http://www.wikihow.com/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('wikimedia', 'http://wikimediafoundation.org/wiki/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('wikinews', 'http://en.wikinews.org/wiki/$1', '1', '0');
INSERT INTO mw_interwiki VALUES('wikinfo', 'http://www.wikinfo.org/index.php/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('wikipedia', 'http://en.wikipedia.org/wiki/$1', '1', '0');
INSERT INTO mw_interwiki VALUES('wikiquote', 'http://en.wikiquote.org/wiki/$1', '1', '0');
INSERT INTO mw_interwiki VALUES('wikisource', 'http://sources.wikipedia.org/wiki/$1', '1', '0');
INSERT INTO mw_interwiki VALUES('wikispecies', 'http://species.wikipedia.org/wiki/$1', '1', '0');
INSERT INTO mw_interwiki VALUES('wikitravel', 'http://wikitravel.org/en/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('wikt', 'http://en.wiktionary.org/wiki/$1', '1', '0');
INSERT INTO mw_interwiki VALUES('wiktionary', 'http://en.wiktionary.org/wiki/$1', '1', '0');
INSERT INTO mw_interwiki VALUES('wlug', 'http://www.wlug.org.nz/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('zwiki', 'http://zwiki.org/$1', '0', '0');
INSERT INTO mw_interwiki VALUES('zzz wiki', 'http://wiki.zzz.ee/index.php/$1', '0', '0');



DROP TABLE IF EXISTS mw_ipblocks;
CREATE TABLE `mw_ipblocks` (
  `ipb_id` int(11) NOT NULL auto_increment,
  `ipb_address` tinyblob NOT NULL,
  `ipb_user` int(10) unsigned NOT NULL default '0',
  `ipb_by` int(10) unsigned NOT NULL default '0',
  `ipb_by_text` varbinary(255) NOT NULL default '',
  `ipb_reason` tinyblob NOT NULL,
  `ipb_timestamp` binary(14) NOT NULL default '\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `ipb_auto` tinyint(1) NOT NULL default '0',
  `ipb_anon_only` tinyint(1) NOT NULL default '0',
  `ipb_create_account` tinyint(1) NOT NULL default '1',
  `ipb_enable_autoblock` tinyint(1) NOT NULL default '1',
  `ipb_expiry` varbinary(14) NOT NULL default '',
  `ipb_range_start` tinyblob NOT NULL,
  `ipb_range_end` tinyblob NOT NULL,
  `ipb_deleted` tinyint(1) NOT NULL default '0',
  `ipb_block_email` tinyint(1) NOT NULL default '0',
  `ipb_allow_usertalk` tinyint(1) NOT NULL default '0',
  PRIMARY KEY  (`ipb_id`),
  UNIQUE KEY `ipb_address` (`ipb_address`(255),`ipb_user`,`ipb_auto`,`ipb_anon_only`),
  KEY `ipb_user` (`ipb_user`),
  KEY `ipb_range` (`ipb_range_start`(8),`ipb_range_end`(8)),
  KEY `ipb_timestamp` (`ipb_timestamp`),
  KEY `ipb_expiry` (`ipb_expiry`)
) ENGINE=InnoDB DEFAULT CHARSET=binary;




DROP TABLE IF EXISTS mw_job;
CREATE TABLE `mw_job` (
  `job_id` int(10) unsigned NOT NULL auto_increment,
  `job_cmd` varbinary(60) NOT NULL default '',
  `job_namespace` int(11) NOT NULL,
  `job_title` varbinary(255) NOT NULL,
  `job_params` blob NOT NULL,
  PRIMARY KEY  (`job_id`),
  KEY `job_cmd` (`job_cmd`,`job_namespace`,`job_title`)
) ENGINE=InnoDB DEFAULT CHARSET=binary;




DROP TABLE IF EXISTS mw_langlinks;
CREATE TABLE `mw_langlinks` (
  `ll_from` int(10) unsigned NOT NULL default '0',
  `ll_lang` varbinary(20) NOT NULL default '',
  `ll_title` varbinary(255) NOT NULL default '',
  UNIQUE KEY `ll_from` (`ll_from`,`ll_lang`),
  KEY `ll_lang` (`ll_lang`,`ll_title`)
) ENGINE=InnoDB DEFAULT CHARSET=binary;




DROP TABLE IF EXISTS mw_logging;
CREATE TABLE `mw_logging` (
  `log_id` int(10) unsigned NOT NULL auto_increment,
  `log_type` varbinary(10) NOT NULL default '',
  `log_action` varbinary(10) NOT NULL default '',
  `log_timestamp` binary(14) NOT NULL default '19700101000000',
  `log_user` int(10) unsigned NOT NULL default '0',
  `log_namespace` int(11) NOT NULL default '0',
  `log_title` varbinary(255) NOT NULL default '',
  `log_comment` varbinary(255) NOT NULL default '',
  `log_params` blob NOT NULL,
  `log_deleted` tinyint(3) unsigned NOT NULL default '0',
  PRIMARY KEY  (`log_id`),
  KEY `type_time` (`log_type`,`log_timestamp`),
  KEY `user_time` (`log_user`,`log_timestamp`),
  KEY `page_time` (`log_namespace`,`log_title`,`log_timestamp`),
  KEY `times` (`log_timestamp`)
) ENGINE=InnoDB AUTO_INCREMENT=183 DEFAULT CHARSET=binary;

INSERT INTO mw_logging VALUES('1', 'patrol', 'patrol', '20090318205509', '1', '2', 'Daniel', '', '2\n0\n1', '0');
INSERT INTO mw_logging VALUES('2', 'newusers', 'create', '20090318205624', '2', '2', 'Spirit', '', '2', '0');
INSERT INTO mw_logging VALUES('3', 'rights', 'rights', '20090318210453', '1', '2', 'Spirit', '', '\nsysop', '0');
INSERT INTO mw_logging VALUES('4', 'newusers', 'create', '20090318211602', '3', '2', 'Test', '', '3', '0');
INSERT INTO mw_logging VALUES('5', 'rights', 'rights', '20090318211726', '1', '2', 'Test', '', '\nsysop', '0');
INSERT INTO mw_logging VALUES('6', 'patrol', 'patrol', '20090318215414', '1', '4', 'General_disclaimer', '', '3\n0\n1', '0');
INSERT INTO mw_logging VALUES('7', 'patrol', 'patrol', '20090318215553', '1', '0', 'Main_Page', '', '4\n1\n1', '0');
INSERT INTO mw_logging VALUES('8', 'patrol', 'patrol', '20090318215609', '1', '0', 'Main_Page', '', '5\n4\n1', '0');
INSERT INTO mw_logging VALUES('9', 'patrol', 'patrol', '20090318215939', '2', '2', 'Spirit', '', '6\n0\n1', '0');
INSERT INTO mw_logging VALUES('10', 'delete', 'delete', '20090318220120', '2', '2', 'Spirit', 'content was: \'{{pp-semi-vandalism|small=yes}} {{Infobox Musical artist |Name               = Spirit |Img                =  |Background         = server_owner |Birth_name         ...\' (and the only contributor was \'[[Special:Contributions/Spirit|Spirit]]\')', '', '0');
INSERT INTO mw_logging VALUES('11', 'newusers', 'create', '20090318220750', '4', '2', 'Siucune', '', '4', '0');
INSERT INTO mw_logging VALUES('12', 'rights', 'rights', '20090318221939', '1', '2', 'Spirit', '', 'sysop\nsysop, bureaucrat', '0');
INSERT INTO mw_logging VALUES('13', 'rights', 'rights', '20090318222009', '1', '2', 'Daniel', '', 'bureaucrat, sysop\nbureaucrat', '0');
INSERT INTO mw_logging VALUES('14', 'rights', 'rights', '20090318222029', '1', '2', 'Daniel', '', 'bureaucrat\nbureaucrat, sysop', '0');
INSERT INTO mw_logging VALUES('15', 'rights', 'rights', '20090319192755', '1', '2', 'Test', '', 'sysop\n', '0');
INSERT INTO mw_logging VALUES('16', 'rights', 'rights', '20090319192811', '1', '2', 'Siucune', '', '\nsysop', '0');
INSERT INTO mw_logging VALUES('17', 'newusers', 'create', '20090319202427', '5', '2', 'Lucent', '', '5', '0');
INSERT INTO mw_logging VALUES('18', 'patrol', 'patrol', '20090319220242', '1', '0', 'Daniel', '', '10\n0\n1', '0');
INSERT INTO mw_logging VALUES('19', 'patrol', 'patrol', '20090319221054', '1', '10', 'Userinfo', '', '11\n0\n1', '0');
INSERT INTO mw_logging VALUES('20', 'protect', 'protect', '20090319221320', '1', '10', 'Userinfo', 'Template', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n', '0');
INSERT INTO mw_logging VALUES('21', 'patrol', 'patrol', '20090319221458', '1', '10', 'Userinfo', '', '13\n12\n1', '0');
INSERT INTO mw_logging VALUES('22', 'newusers', 'create', '20090319221950', '6', '2', 'Ramzah', '', '6', '0');
INSERT INTO mw_logging VALUES('23', 'patrol', 'patrol', '20090319222550', '1', '10', 'Infobox_Person', '', '14\n0\n1', '0');
INSERT INTO mw_logging VALUES('24', 'delete', 'delete', '20090319222845', '1', '10', 'Infobox_Person', 'content was: \'{{Infobox Person |name        =  |image       =  |caption     =  |birth_date  = {{Birth date|YYYY|MM|DD}} |birth_place =  |death_date  = <!-- {{Death date and age|Y...\' (and the only contributor was \'[[Special:Contributions/Daniel|Daniel]]\')', '', '0');
INSERT INTO mw_logging VALUES('25', 'patrol', 'patrol', '20090319222924', '1', '10', 'Infobox_Person', '', '15\n0\n1', '0');
INSERT INTO mw_logging VALUES('26', 'patrol', 'patrol', '20090319223153', '2', '10', 'Userinfo', '', '16\n13\n1', '0');
INSERT INTO mw_logging VALUES('27', 'patrol', 'patrol', '20090319223221', '2', '10', 'Userinfo', '', '17\n16\n1', '0');
INSERT INTO mw_logging VALUES('28', 'delete', 'delete', '20090319223300', '1', '10', 'Infobox_Person', 'content was: \'{{Infobox Person |name        =  |image       =  |caption     =  |birth_date  = {{Birth date|YYYY|MM|DD}} |birth_place =  |death_date  = <!-- {{Death date and age|Y...\' (and the only contributor was \'[[Special:Contributions/Daniel|Daniel]]\')', '', '0');
INSERT INTO mw_logging VALUES('29', 'patrol', 'patrol', '20090319223422', '2', '10', 'Userinfo', '', '18\n17\n1', '0');
INSERT INTO mw_logging VALUES('30', 'patrol', 'patrol', '20090319223529', '2', '10', 'Userinfo', '', '19\n18\n1', '0');
INSERT INTO mw_logging VALUES('31', 'patrol', 'patrol', '20090319223733', '1', '10', 'Documentation', '', '20\n0\n1', '0');
INSERT INTO mw_logging VALUES('32', 'patrol', 'patrol', '20090319223747', '1', '10', 'Pp-template', '', '21\n0\n1', '0');
INSERT INTO mw_logging VALUES('33', 'patrol', 'patrol', '20090319223806', '1', '10', 'Infobox_Person', '', '22\n0\n1', '0');
INSERT INTO mw_logging VALUES('34', 'patrol', 'patrol', '20090319223913', '1', '0', 'Test', '', '23\n0\n1', '0');
INSERT INTO mw_logging VALUES('35', 'delete', 'delete', '20090319223937', '1', '10', 'Pp-template', 'content was: \'<includeonly>{{pp-meta |type={{#switch:{{{demolevel|{{PROTECTIONLEVEL:edit}}}}}    |semi    |autoconfirmed=semi    |administrator    |full    |sysop=indef    |#defa...\' (and the only contributor was \'[[Special:Contributions/Daniel|Daniel]]\')', '', '0');
INSERT INTO mw_logging VALUES('36', 'patrol', 'patrol', '20090319224017', '1', '10', 'Infobox', '', '24\n0\n1', '0');
INSERT INTO mw_logging VALUES('37', 'delete', 'delete', '20090319224325', '1', '0', 'Test', 'content was: \'{{Infobox Person |name        =  |image       =  |caption     =  |birth_date  = {{Birth date|YYYY|MM|DD}} |birth_place =  |death_date  = <!-- {{Death date and age|Y...\' (and the only contributor was \'[[Special:Contributions/Daniel|Daniel]]\')', '', '0');
INSERT INTO mw_logging VALUES('38', 'patrol', 'patrol', '20090319233610', '1', '10', 'Infobox', '', '25\n24\n1', '0');
INSERT INTO mw_logging VALUES('39', 'delete', 'delete', '20090319233631', '1', '10', 'Infobox', 'content was: \'{{{!}} class=\"infobox {{{bodyclass|}}}\" cellspacing=\"5\" style=\"width: 22em; text-align: left; font-size: 88%; line-height: 1.5em; {{{bodystyle|}}}\"<!--  Caption -->...\' (and the only contributor was \'[[Special:Contributions/Daniel|Daniel]]\')', '', '0');
INSERT INTO mw_logging VALUES('40', 'patrol', 'patrol', '20090320000038', '1', '8', 'Common.css', '', '26\n0\n1', '0');
INSERT INTO mw_logging VALUES('41', 'patrol', 'patrol', '20090320000451', '1', '0', 'Daniel', '', '27\n10\n1', '0');
INSERT INTO mw_logging VALUES('42', 'delete', 'restore', '20090320000514', '1', '10', 'Infobox', '2 revisions restored', '', '0');
INSERT INTO mw_logging VALUES('43', 'patrol', 'patrol', '20090320000616', '1', '10', 'Infobox', '', '28\n25\n1', '0');
INSERT INTO mw_logging VALUES('44', 'patrol', 'patrol', '20090320001913', '1', '8', 'Common.css', '', '29\n26\n1', '0');
INSERT INTO mw_logging VALUES('45', 'patrol', 'patrol', '20090320002634', '1', '10', 'Infobox', '', '30\n28\n1', '0');
INSERT INTO mw_logging VALUES('46', 'protect', 'protect', '20090320002835', '1', '10', 'Infobox', '', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n', '0');
INSERT INTO mw_logging VALUES('47', 'protect', 'unprotect', '20090320003807', '1', '10', 'Infobox', 'Temporary unprotection', '', '0');
INSERT INTO mw_logging VALUES('48', 'newusers', 'create', '20090320003814', '7', '2', 'Chzz', '', '7', '0');
INSERT INTO mw_logging VALUES('49', 'patrol', 'patrol', '20090320004042', '1', '0', 'Daniel', '', '34\n27\n1', '0');
INSERT INTO mw_logging VALUES('50', 'patrol', 'patrol', '20090321000159', '1', '0', 'Bill_Gates', '', '40\n0\n1', '0');
INSERT INTO mw_logging VALUES('51', 'patrol', 'patrol', '20090321000736', '1', '0', 'Daniel', '', '44\n34\n1', '0');
INSERT INTO mw_logging VALUES('52', 'delete', 'delete', '20090321001013', '1', '0', 'FUCKING_WORKS', 'content was: \'{{Infobox |name    = Infobox/doc |title   =  |image   = [[Image:example.png|200px]] |caption = Caption for example.png  |headerstyle  = background:#cc...\' (and the only contributor was \'[[Special:Contributions/99.252.16.109|99.252.16.109]]\')', '', '0');
INSERT INTO mw_logging VALUES('53', 'delete', 'delete', '20090321001042', '1', '0', 'Bill_Gates', 'content was: \'{{Infobox Person |name        = Bill Gates |image       = Bill Gates 2004 cr.jpg |image_size  = 170px |caption     = At an IT forum in Denmark, 2004 |birth_name  = ...\' (and the only contributor was \'[[Special:Contributions/Daniel|Daniel]]\')', '', '0');
INSERT INTO mw_logging VALUES('54', 'protect', 'protect', '20090321001256', '1', '0', 'Daniel', '', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n', '0');
INSERT INTO mw_logging VALUES('55', 'patrol', 'patrol', '20090321002210', '1', '0', 'Daniel', '', '47\n46\n1', '0');
INSERT INTO mw_logging VALUES('56', 'patrol', 'patrol', '20090321002243', '1', '10', 'Mbox', '', '48\n0\n1', '0');
INSERT INTO mw_logging VALUES('57', 'patrol', 'patrol', '20090321002400', '1', '10', 'Namespace_detect', '', '49\n0\n1', '0');
INSERT INTO mw_logging VALUES('58', 'patrol', 'patrol', '20090321002428', '1', '10', 'Ambox', '', '50\n0\n1', '0');
INSERT INTO mw_logging VALUES('59', 'patrol', 'patrol', '20090321002435', '2', '0', 'Lucent', '', '51\n45\n1', '0');
INSERT INTO mw_logging VALUES('60', 'patrol', 'patrol', '20090321002457', '1', '10', 'Ambox/core', '', '52\n0\n1', '0');
INSERT INTO mw_logging VALUES('61', 'patrol', 'patrol', '20090321002521', '2', '0', 'Lucent', '', '53\n51\n1', '0');
INSERT INTO mw_logging VALUES('62', 'patrol', 'patrol', '20090321003155', '1', '0', 'Daniel', '', '56\n47\n1', '0');
INSERT INTO mw_logging VALUES('63', 'upload', 'upload', '20090321003900', '1', '6', 'Imbox_protection.png', '', '', '0');
INSERT INTO mw_logging VALUES('64', 'protect', 'protect', '20090321003909', '1', '6', 'Imbox_protection.png', '', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n', '0');
INSERT INTO mw_logging VALUES('65', 'upload', 'upload', '20090321003946', '1', '6', 'Ambox_protection.png', '', '', '0');
INSERT INTO mw_logging VALUES('66', 'patrol', 'patrol', '20090321004315', '1', '0', 'Daniel', '', '63\n56\n1', '0');
INSERT INTO mw_logging VALUES('67', 'patrol', 'patrol', '20090321004844', '1', '0', 'Daniel', '', '64\n63\n1', '0');
INSERT INTO mw_logging VALUES('68', 'patrol', 'patrol', '20090321005212', '2', '0', 'Spirit', '', '65\n0\n1', '0');
INSERT INTO mw_logging VALUES('69', 'protect', 'protect', '20090321005242', '2', '0', 'Spirit', 'High traffic page', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n', '0');
INSERT INTO mw_logging VALUES('70', 'patrol', 'patrol', '20090321005334', '1', '10', 'Infobox_Person', '', '67\n22\n1', '0');
INSERT INTO mw_logging VALUES('71', 'patrol', 'patrol', '20090321005435', '1', '10', 'Infobox_Person', '', '68\n67\n1', '0');
INSERT INTO mw_logging VALUES('72', 'patrol', 'patrol', '20090321005621', '1', '10', 'Infobox_Person', '', '70\n68\n1', '0');
INSERT INTO mw_logging VALUES('73', 'patrol', 'patrol', '20090321005825', '1', '0', 'Daniel', '', '72\n64\n1', '0');
INSERT INTO mw_logging VALUES('74', 'patrol', 'patrol', '20090321005907', '1', '0', 'Daniel', '', '73\n72\n1', '0');
INSERT INTO mw_logging VALUES('75', 'patrol', 'patrol', '20090321005943', '1', '0', 'Daniel', '', '74\n73\n1', '0');
INSERT INTO mw_logging VALUES('76', 'patrol', 'patrol', '20090321010240', '1', '10', 'Infobox_Person', '', '75\n70\n1', '0');
INSERT INTO mw_logging VALUES('77', 'patrol', 'patrol', '20090321010307', '1', '0', 'Daniel', '', '76\n74\n1', '0');
INSERT INTO mw_logging VALUES('78', 'patrol', 'patrol', '20090321010645', '1', '0', 'Daniel', '', '77\n76\n1', '0');
INSERT INTO mw_logging VALUES('79', 'patrol', 'patrol', '20090321011758', '1', '10', 'Infobox_Person', '', '78\n75\n1', '0');
INSERT INTO mw_logging VALUES('80', 'patrol', 'patrol', '20090321223653', '1', '0', 'Porn', '', '79\n0\n1', '0');
INSERT INTO mw_logging VALUES('81', 'protect', 'protect', '20090321223747', '1', '10', 'Did_you_know', '', '[create=sysop]  (indefinite)\n', '0');
INSERT INTO mw_logging VALUES('82', 'patrol', 'patrol', '20090321223817', '1', '10', 'Did_you_know', '', '80\n0\n1', '0');
INSERT INTO mw_logging VALUES('83', 'patrol', 'patrol', '20090321224216', '1', '0', 'Porn', '', '81\n79\n1', '0');
INSERT INTO mw_logging VALUES('84', 'patrol', 'patrol', '20090321224340', '1', '0', 'Porn', '', '82\n81\n1', '0');
INSERT INTO mw_logging VALUES('85', 'patrol', 'patrol', '20090321225409', '1', '0', 'Porn', '', '83\n82\n1', '0');
INSERT INTO mw_logging VALUES('86', 'patrol', 'patrol', '20090321225646', '1', '0', 'Porn', '', '84\n83\n1', '0');
INSERT INTO mw_logging VALUES('87', 'protect', 'protect', '20090321225747', '1', '0', 'Porn', '', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n', '0');
INSERT INTO mw_logging VALUES('88', 'patrol', 'patrol', '20090321230136', '1', '0', 'Porn', '', '86\n85\n1', '0');
INSERT INTO mw_logging VALUES('89', 'patrol', 'patrol', '20090321230220', '1', '0', 'Porn', '', '87\n86\n1', '0');
INSERT INTO mw_logging VALUES('90', 'patrol', 'patrol', '20090321230414', '1', '0', 'Porn', '', '88\n87\n1', '0');
INSERT INTO mw_logging VALUES('91', 'patrol', 'patrol', '20090321230427', '1', '10', 'MainPageInterwikis', '', '89\n0\n1', '0');
INSERT INTO mw_logging VALUES('92', 'protect', 'protect', '20090321230434', '1', '10', 'MainPageInterwikis', '', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n', '0');
INSERT INTO mw_logging VALUES('93', 'patrol', 'patrol', '20090321230559', '1', '10', 'MainPageInterwikis', '', '91\n90\n1', '0');
INSERT INTO mw_logging VALUES('94', 'patrol', 'patrol', '20090321230820', '1', '0', 'Porn', '', '92\n88\n1', '0');
INSERT INTO mw_logging VALUES('95', 'patrol', 'patrol', '20090321230905', '1', '0', 'Porn', '', '93\n92\n1', '0');
INSERT INTO mw_logging VALUES('96', 'patrol', 'patrol', '20090321230923', '4', '2', 'Siucune', '', '94\n0\n1', '0');
INSERT INTO mw_logging VALUES('97', 'patrol', 'patrol', '20090321231144', '1', '10', 'Main_Page_banner', '', '95\n0\n1', '0');
INSERT INTO mw_logging VALUES('98', 'protect', 'protect', '20090321231151', '1', '10', 'Main_Page_banner', '', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n', '0');
INSERT INTO mw_logging VALUES('99', 'protect', 'protect', '20090321231210', '1', '10', 'Pp-template', '', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n', '0');
INSERT INTO mw_logging VALUES('100', 'patrol', 'patrol', '20090321231221', '4', '2', 'Siucune', '', '98\n94\n1', '0');
INSERT INTO mw_logging VALUES('101', 'protect', 'protect', '20090321231224', '1', '10', 'Documentation', '', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n', '0');
INSERT INTO mw_logging VALUES('102', 'protect', 'protect', '20090321231249', '1', '10', 'Infobox_Person', '', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n', '0');
INSERT INTO mw_logging VALUES('103', 'protect', 'protect', '20090321231329', '1', '10', 'Infobox', '', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n', '0');
INSERT INTO mw_logging VALUES('104', 'protect', 'protect', '20090321231337', '1', '10', 'Pp-meta', '', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n', '0');
INSERT INTO mw_logging VALUES('105', 'protect', 'protect', '20090321231343', '1', '10', 'Mbox', '', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n', '0');
INSERT INTO mw_logging VALUES('106', 'protect', 'protect', '20090321231349', '1', '10', 'Namespace_detect', '', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n', '0');
INSERT INTO mw_logging VALUES('107', 'protect', 'protect', '20090321231355', '1', '10', 'Ambox', '', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n', '0');
INSERT INTO mw_logging VALUES('108', 'protect', 'protect', '20090321231402', '1', '10', 'Ambox/core', '', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n', '0');
INSERT INTO mw_logging VALUES('109', 'patrol', 'patrol', '20090321231447', '1', '0', 'OrgyPedia', '', '107\n0\n1', '0');
INSERT INTO mw_logging VALUES('110', 'patrol', 'patrol', '20090321231719', '1', '0', 'Main_Page', '', '108\n5\n1', '0');
INSERT INTO mw_logging VALUES('111', 'protect', 'protect', '20090321231725', '1', '0', 'Main_Page', '', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n', '0');
INSERT INTO mw_logging VALUES('112', 'patrol', 'patrol', '20090321231829', '1', '0', 'Main_Page', '', '110\n109\n1', '0');
INSERT INTO mw_logging VALUES('113', 'patrol', 'patrol', '20090321231854', '1', '0', 'Administrators', '', '111\n0\n1', '0');
INSERT INTO mw_logging VALUES('114', 'patrol', 'patrol', '20090321231902', '1', '0', 'Administrators', '', '112\n111\n1', '0');
INSERT INTO mw_logging VALUES('115', 'protect', 'protect', '20090321231917', '1', '0', 'Administrators', '', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n', '0');
INSERT INTO mw_logging VALUES('116', 'patrol', 'patrol', '20090321233551', '2', '0', 'Main_Page', '', '114\n110\n1', '0');
INSERT INTO mw_logging VALUES('117', 'patrol', 'patrol', '20090321233739', '2', '0', 'Administrators', '', '115\n113\n1', '0');
INSERT INTO mw_logging VALUES('118', 'patrol', 'patrol', '20090321235333', '1', '0', 'Main_Page', '', '116\n114\n1', '0');
INSERT INTO mw_logging VALUES('119', 'patrol', 'patrol', '20090321235413', '2', '0', 'SoapWiki', '', '117\n0\n1', '0');
INSERT INTO mw_logging VALUES('120', 'patrol', 'patrol', '20090321235427', '1', '0', 'Main_Page', '', '118\n116\n1', '0');
INSERT INTO mw_logging VALUES('121', 'patrol', 'patrol', '20090321235501', '2', '0', 'English_language', '', '119\n0\n1', '0');
INSERT INTO mw_logging VALUES('122', 'patrol', 'patrol', '20090322000724', '2', '0', 'Main_Page', '', '120\n118\n1', '0');
INSERT INTO mw_logging VALUES('123', 'patrol', 'patrol', '20090322000748', '2', '0', 'Main_Page', '', '121\n120\n1', '0');
INSERT INTO mw_logging VALUES('124', 'patrol', 'patrol', '20090322001201', '1', '0', 'Administrators', '', '122\n115\n1', '0');
INSERT INTO mw_logging VALUES('125', 'patrol', 'patrol', '20090322001519', '2', '2', 'Siucune', '', '123\n98\n1', '0');
INSERT INTO mw_logging VALUES('126', 'patrol', 'patrol', '20090322001531', '1', '0', 'Administrators', '', '124\n122\n1', '0');
INSERT INTO mw_logging VALUES('127', 'patrol', 'patrol', '20090322001900', '1', '0', 'Flag_An_Article', '', '125\n0\n1', '0');
INSERT INTO mw_logging VALUES('128', 'patrol', 'patrol', '20090322001951', '1', '10', 'Main', '', '126\n0\n1', '0');
INSERT INTO mw_logging VALUES('129', 'patrol', 'patrol', '20090322002158', '1', '10', 'Rellink', '', '127\n0\n1', '0');
INSERT INTO mw_logging VALUES('130', 'protect', 'protect', '20090322002229', '1', '10', 'Rellink', '', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n', '0');
INSERT INTO mw_logging VALUES('131', 'protect', 'protect', '20090322002243', '1', '10', 'Main', '', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n', '0');
INSERT INTO mw_logging VALUES('132', 'patrol', 'patrol', '20090322002615', '1', '0', 'Daniel', '', '130\n77\n1', '0');
INSERT INTO mw_logging VALUES('133', 'patrol', 'patrol', '20090322002624', '1', '0', 'Daniel', '', '131\n130\n1', '0');
INSERT INTO mw_logging VALUES('134', 'patrol', 'patrol', '20090322002748', '1', '0', 'Daniel', '', '132\n131\n1', '0');
INSERT INTO mw_logging VALUES('135', 'patrol', 'patrol', '20090322002801', '1', '0', 'Daniel', '', '133\n132\n1', '0');
INSERT INTO mw_logging VALUES('136', 'patrol', 'patrol', '20090322003259', '1', '0', 'Main_Page', '', '134\n121\n1', '0');
INSERT INTO mw_logging VALUES('137', 'protect', 'protect', '20090322003314', '1', '10', 'Did_you_know', '', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n', '0');
INSERT INTO mw_logging VALUES('138', 'patrol', 'patrol', '20090322003539', '1', '0', 'Main_Page', '', '136\n134\n1', '0');
INSERT INTO mw_logging VALUES('139', 'patrol', 'patrol', '20090322003755', '1', '0', 'Main_Page', '', '137\n136\n1', '0');
INSERT INTO mw_logging VALUES('140', 'delete', 'delete', '20090322003851', '1', '0', 'English_language', 'content was: \'{{pp-move-indef}} {{refimprove|date=February 2009}}  {{English language}} \'\'\'English\'\'\' is a [[West Germanic language]] that originated in [[Anglo-Saxon England]] a...\' (and the only contributor was \'[[Special:Contributions/Spirit|Spirit]]\')', '', '0');
INSERT INTO mw_logging VALUES('141', 'protect', 'protect', '20090322003946', '1', '0', 'OrgyPedia', '', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n', '0');
INSERT INTO mw_logging VALUES('142', 'patrol', 'patrol', '20090322004113', '1', '10', 'Did_you_know', '', '139\n135\n1', '0');
INSERT INTO mw_logging VALUES('143', 'patrol', 'patrol', '20090322004152', '1', '0', 'Lucent', '', '140\n62\n1', '0');
INSERT INTO mw_logging VALUES('144', 'patrol', 'patrol', '20090322004326', '1', '0', 'Main_Page', '', '141\n137\n1', '0');
INSERT INTO mw_logging VALUES('145', 'patrol', 'patrol', '20090322005145', '1', '0', 'Main_Page', '', '142\n141\n1', '0');
INSERT INTO mw_logging VALUES('146', 'patrol', 'patrol', '20090322005205', '1', '0', 'Main_Page', '', '143\n142\n1', '0');
INSERT INTO mw_logging VALUES('147', 'patrol', 'patrol', '20090322005239', '1', '0', 'Main_Page', '', '144\n143\n1', '0');
INSERT INTO mw_logging VALUES('148', 'patrol', 'patrol', '20090322005307', '1', '0', 'Main_Page', '', '145\n144\n1', '0');
INSERT INTO mw_logging VALUES('149', 'patrol', 'patrol', '20090322005319', '1', '0', 'Main_Page', '', '146\n145\n1', '0');
INSERT INTO mw_logging VALUES('150', 'patrol', 'patrol', '20090322005335', '1', '0', 'Main_Page', '', '147\n146\n1', '0');
INSERT INTO mw_logging VALUES('151', 'patrol', 'patrol', '20090322005405', '1', '0', 'Main_Page', '', '148\n147\n1', '0');
INSERT INTO mw_logging VALUES('152', 'patrol', 'patrol', '20090322005428', '1', '0', 'Rank_1', '', '149\n0\n1', '0');
INSERT INTO mw_logging VALUES('153', 'patrol', 'patrol', '20090322010003', '1', '0', 'Daniel', '', '150\n133\n1', '0');
INSERT INTO mw_logging VALUES('154', 'patrol', 'patrol', '20090322010053', '1', '0', 'Daniel', '', '151\n150\n1', '0');
INSERT INTO mw_logging VALUES('155', 'patrol', 'patrol', '20090322042108', '2', '0', 'First_WoE', '', '152\n0\n1', '0');
INSERT INTO mw_logging VALUES('156', 'patrol', 'patrol', '20090323095826', '1', '0', 'Main_Page', '', '153\n148\n1', '0');
INSERT INTO mw_logging VALUES('157', 'patrol', 'patrol', '20090324000147', '1', '0', 'Lucent', '', '154\n140\n1', '0');
INSERT INTO mw_logging VALUES('158', 'patrol', 'patrol', '20090324133006', '2', '0', 'Main_Page', '', '155\n153\n1', '0');
INSERT INTO mw_logging VALUES('159', 'patrol', 'patrol', '20090324134436', '1', '10', 'Infobox_Guild', '', '156\n0\n1', '0');
INSERT INTO mw_logging VALUES('160', 'patrol', 'patrol', '20090324134712', '1', '0', 'Lunar_Flare', '', '157\n61\n1', '0');
INSERT INTO mw_logging VALUES('161', 'patrol', 'patrol', '20090324134835', '1', '0', 'Lunar_Flare', '', '158\n157\n1', '0');
INSERT INTO mw_logging VALUES('162', 'patrol', 'patrol', '20090324134952', '1', '0', 'Lunar_Flare', '', '159\n158\n1', '0');
INSERT INTO mw_logging VALUES('163', 'patrol', 'patrol', '20090324135026', '1', '10', 'Infobox_Guild', '', '160\n156\n1', '0');
INSERT INTO mw_logging VALUES('164', 'patrol', 'patrol', '20090324135129', '1', '0', 'Lunar_Flare', '', '161\n159\n1', '0');
INSERT INTO mw_logging VALUES('165', 'patrol', 'patrol', '20090324135404', '1', '8', 'Group-bureaucrat-member', '', '162\n0\n1', '0');
INSERT INTO mw_logging VALUES('166', 'patrol', 'patrol', '20090324135523', '1', '8', 'Group-sysop-member', '', '163\n0\n1', '0');
INSERT INTO mw_logging VALUES('167', 'patrol', 'patrol', '20090324135841', '1', '8', 'Group-bureaucrat', '', '164\n0\n1', '0');
INSERT INTO mw_logging VALUES('168', 'patrol', 'patrol', '20090324135905', '1', '8', 'Group-sysop', '', '165\n0\n1', '0');
INSERT INTO mw_logging VALUES('169', 'patrol', 'patrol', '20090324140644', '1', '10', 'Infobox_Guild', '', '166\n160\n1', '0');
INSERT INTO mw_logging VALUES('170', 'patrol', 'patrol', '20090324140719', '1', '10', 'Infobox_Guild', '', '167\n166\n1', '0');
INSERT INTO mw_logging VALUES('171', 'patrol', 'patrol', '20090324140825', '1', '10', 'Infobox_Guild', '', '168\n167\n1', '0');
INSERT INTO mw_logging VALUES('172', 'patrol', 'patrol', '20090324140837', '1', '0', 'Lunar_Flare', '', '169\n161\n1', '0');
INSERT INTO mw_logging VALUES('173', 'upload', 'upload', '20090324142645', '1', '6', 'Lfemblem.png', 'Lunar Flare emblem as of March 24th', '', '0');
INSERT INTO mw_logging VALUES('174', 'patrol', 'patrol', '20090324142733', '1', '10', 'Infobox_Guild', '', '171\n168\n1', '0');
INSERT INTO mw_logging VALUES('175', 'patrol', 'patrol', '20090324142847', '1', '0', 'Lunar_Flare', '', '172\n169\n1', '0');
INSERT INTO mw_logging VALUES('176', 'patrol', 'patrol', '20090324145111', '1', '0', 'Lunar_Flare', '', '173\n172\n1', '0');
INSERT INTO mw_logging VALUES('177', 'patrol', 'patrol', '20090324145201', '1', '8', 'External_image_whitelist', '', '174\n0\n1', '0');
INSERT INTO mw_logging VALUES('178', 'patrol', 'patrol', '20090324145328', '1', '0', 'Lunar_Flare', '', '175\n173\n1', '0');
INSERT INTO mw_logging VALUES('179', 'patrol', 'patrol', '20090324145438', '1', '0', 'Lunar_Flare', '', '176\n175\n1', '0');
INSERT INTO mw_logging VALUES('180', 'patrol', 'patrol', '20090324145521', '1', '0', 'Lunar_Flare', '', '177\n176\n1', '0');
INSERT INTO mw_logging VALUES('181', 'patrol', 'patrol', '20090324145531', '1', '0', 'Lunar_Flare', '', '178\n177\n1', '0');
INSERT INTO mw_logging VALUES('182', 'patrol', 'patrol', '20090324194440', '1', '0', 'Main_Page', '', '179\n155\n1', '0');



DROP TABLE IF EXISTS mw_math;
CREATE TABLE `mw_math` (
  `math_inputhash` varbinary(16) NOT NULL,
  `math_outputhash` varbinary(16) NOT NULL,
  `math_html_conservativeness` tinyint(4) NOT NULL,
  `math_html` blob,
  `math_mathml` blob,
  UNIQUE KEY `math_inputhash` (`math_inputhash`)
) ENGINE=InnoDB DEFAULT CHARSET=binary;




DROP TABLE IF EXISTS mw_objectcache;
CREATE TABLE `mw_objectcache` (
  `keyname` varbinary(255) NOT NULL default '',
  `value` mediumblob,
  `exptime` datetime default NULL,
  PRIMARY KEY  (`keyname`),
  KEY `exptime` (`exptime`)
) ENGINE=InnoDB DEFAULT CHARSET=binary;

INSERT INTO mw_objectcache VALUES('starstar_soapro-mw_:messages:en', 'Ro@޿¤RI,Y+Inx/K+seS	}~ϖB|\'3ٴ Jf$&\"yv\\»>r[u\nl:	p!Ԋ@+[YI(zx|=~jxZ-=C8G{/+6}k)0B#}*k_Yv̱v`x[#!tJk΀8y pk/jx\rP\"]rǄ~y}^`w~TO``CzVj?eނ%n̑kwhr\nu=!4\"˦t<IOϳW\ZUt9RZiolVQQKodr>)+dݲ2D~\'4pxYOC<׉WQ\\\0/Drus̔g?~', '2009-10-05 00:17:17');
INSERT INTO mw_objectcache VALUES('starstar_soapro-mw_:messages:individual:Common.css', '=kw6+#t[ݛĚ\"T>⨹wf\0 	Jrݽ#`0(=w_oR\'`:~ve_a|*$$R,L$CrD&0-?gޣ옍e5P<-l[a2/|!`nŘǱH?<9l.0caGIyB0U3hJ<29?fXPAl$Á	KD$\"BG.dԳ^XI1_!HGgV{R?:?-cBe\"H0,L/DY޾=cy<	Hg/\0\0ٛ߼\0gP,҅I3)q\ZʘݱQoz\\ec`<$sﲹH6ɣky@naSi,xI\"SCQDĊ;mbt\r5l\r<C_6\n̼C,a G(l%Z`1Nymʷ0O\Zsa@b$c}~q:NEٸhֶe,3aFATf({L<Âg)4= 8ˮ`$<d{jِ55O%A8EH \'~>WiQHث:,0c̠=g@`s600݁DGVc?hQ-ԪH]j`[9Ahu-XDt}#(2V}Pg|\"Y@TC!j\'O}W`>[zԝ/k39_XIl\r6@	J~E\nLi>.-vt*JA`mE@c6ļeHGeW=pS/в`|A\"RKW]@L8([GPK\'{*\rX?\0A^zRĠPH\'\"Q\nfgFˇ-t*3\\A:G=lb\r(003Hd2˃_8G\r1QU=K|K20mH3|,?\0ܭb٣9YD	T́&Iv<D,∡S\r2Џ*q*?8kSÇxHJFp\"5ۓ\0_\ZOW4{u\nT-Pg3fg5s6>L&#ʬ8PAg\0?>G>\0uX\"UF^Mܜ[4:	qu.T@ CgD?B&\034>x\Z=ClsZv8X|/it\0GUR`=S},X?r!z1{Pgr>q\n**!D`	bt(|f91ʏkۙBtfJ3DgMʡKjQ9lH>O֐ۏB@;<\0j&\rO~[\\-pK\\(PbOsO$ɨW^_5|~9=GAeEk\Z<e4%_J{)WbLj&]KPĮSUj4Jgk(?-`+5]SJD{̺fѠ	Jx> \Zm=C\0ne[5hP;\r<\0h.HXV5P˶IcV,B-ur{^xW/5!BN%-\r%Q%޴(&>. KÌފU]G]k\\{&5$UKrt]%]^BE$Lj(=T[|H@\nkQ\Z(9Z\Z-UUq}V=Q\\n\"I垹dΔ*n$mX){\\h[ aNkaV x+Tr8-$ƻ$D<q|ExfWQ^wLx앋rTV;0OZ`xLhI/[b;e[C2/\0rmf*S5\nyh2OcH,u%,Me^;\"p<Oo\Z:LOc4+:0aλT,/$B	\"*@۹		(@c;\nOd$̲lqp\0P\'iiuY>]~0^:DfK**:\0#UqؚAҝBo~6Qѳ\nv@D~\'jklߘ6H~=ڔS&Au,!j&);yp<wQzoX.2|?6kGѠT$>yS$	Dk}S:ɍ\"5>S eQ@2\rqaC+9*(~?.YP=7*BBh\r9(#[K>\'(\rٌ9a[\rzT*LRKQ<[$p%f\'ĝ,)K6	u,..p.PVnޥ\"],aI%BpAIOF\Z\r3FSY\"&[O=b}mӊvŶazuk7pZxmksNhճ{mIG^@\r2Ogi8A3P:2O;lxYn\0A(Sw@7dҵjNyHW]ʯ\0q%/]gh\"_{0|Q,h\Z9\rC>xfxJ:å4\0ejcp<x!zrXTMͽ+WҲվI\\@v/a`nswۄ:rAh	sGrh<p8iNbs)$̶5Sof)c>נ%_SJWb۠y-AĠao=77F(Wۓ|\r?}@PWRB\0R|Пa^\nZ\n*{ȱ@	\Z\rF<<-$b\"|3 KԨ	7\"ZZ(Pi0|FeW|Sy;U}X:8\Z0vj JkWEaJEV9̦W|1N )G?{?\n<zMe1e(={L:Tb7UZ0sJ\rt\\m7A4GM^.HS{TXw5\Zɛ#dޡK),E^KS<U?\nR8cBm?0n3I._\rt&@q\"6,\"yD~-Bi|31d\"y =B3$c#=R`w$9XQ@/ؠp${VXl\\I*qi\nk;{PmxP#EK,]3>0eN?>Xc8{\ZpN6j.QPAGLI{*.RU3Ǆk2Xa|AwF\0A)BVU\\vMŊ4\Zukdm;0y}=}ڄr`d߅Vm_^,	`\"[ߐW	\r/õfPNMޔi\ZK(I	HV܃Q] 陼*KOU%\0yeZ<}w\\ )3\"\nU	=>IJ8MF`*sVR5RZKBI	4r,U`N<#\0r*~ĵT;<JG(x2JI4u\n:Qjԁ7IސQh	;\r̄TjC2w_d^hX|@^?j	8\\ȖOVFp{WZ8/TX@\nj*sS@!,{Tj-A+!?\Z֜ަUh\0s8^;*tPfbZE+Jo^St~C}KSg߭}=Wt\Z%SS)TʾR-^*/HB`x?[u23B4Tjq+FߕbO\nĶ@L(Rܤ-ցvPlXhw)\nPyH-UΆ˒k.m]U\n1k#[;u%VQV&#R8S\rMg87Z.=j<?*M?=*+((cQ,APE|f]6ٮRMW\nu2p\Z\r[NnUr[%*EqC9OФdoLj1~~usӀVjߡ}vY|6pl\Z_^^^UIl٬\0<֥oJuIf`{O\\Ewp.᭶xqv.~Sl/Λ7n}wnJSTQߡ2?Զ-4ZgRܮt(dqn~Z{]GuUAps#[ps#ps#WS{-9\nj[SWq9ٌ2R4EeVr-WeM,eDi4\'aMWzRvIt\"Lb6P\rF0dxH{]Z frOa:(9L)b6Lg*OqV(J*kUR͕T֦F+u6^WI9={I\\b??,b0ռ\'z&ZzmWev>g#^$/EVy@a@fkC iU//\\W,hlŮAq1&|qNH5D\'[Q1ާ\'\'VU,N 1_3͠R~?S{ÃO_&eފ\\__ݞt˧wqH:D˔>-3	ocaVӤR}7O9EaPAgKG\nz\"<{b_.t-oHqJ]ԩT\\^qjG[>1n\Zo4O0N_s08q\nuΠ`0Wr,1P蔧0OG use׹7X|6K)/8`?@܀vDO\ZB/O:+ЮY%ϋR)Z+VN2ބ~\"S9%1Ȼ!{tl\r_Qs2	W-Dr\\kOd:hmHI$ZXdOeVm}ۉxr};sYBS;9-!/\'nZ=sD<\".~ݽ;\0Z	Od݃ZO⑽E؀AX&=8x\\\0CP)=;۴E/.Oݥ\'Ᏻӓ6/̴XnFϾJ7)ݕy|/}P܄ҧڨϛA\'DYݠ.Յ8.D:V<\nPtٹ$MA7UTj@fRx4%&]l@5w?D6#.7%o3\rhUtDd,O޲[\"෼]t2\ZwB	ǻpeOC3[9]aM$\Z2-KGtYFP;:iS4߂řmm?.Ǌw开LE4fa.Kr4&yg=pةƅ?GjVF>u8hTĺ-g	N0LS)};Oxv籎uPʍN=]tI诹H3s^j\Z!KB\\a:lE\n&)%\"wFxܱ07ՙ-<uGW::nN\n\\ҧ()u&PR\'wH	OPjTG@L\\p,+άrZE~q8A|ґsɅM@^/;AG>7O9D]\0vq8Yb4a\"6 N~nǭeW8sоؤ\ZAZeaJQA1}XԂc)L#Aǹ?p\n\'\0vT0wTo V\0eB1EPt=Jv6mZC)٨2嵬q%4nS|[\\Y&WȕCZ5<v*C;6)Hh\rRe0jO9DCJ\0Gr:-9x>3/8n%-v\\ۦ`h7J\\JQ8O\\~֐`M/^E\n)݌[F]c\08O0<NxGHL}bZt0LDC!̧=+EyS(BNd۸f&7<5]1iYro\'K|T~KT}f,MqZVtqoHA^ &\r1s;Y_h}5xVClwoDTHt#X9YN^.ݾꃞx#6x#x~\"q*BycK5S!U#$@6f\0UU d02g͈}w+ӗ\Zw\r\rѫN\'2w-NKu\nT؄ӷ>3u9Ƈe^U*#(PT?9^CTii0i4FHzZ9Ņْs-*{v`҉=:~;H\"K%tSg/+=omWhxfW*Ё:vW_%/,\'yn)CatWEĠN0.?QbUU>O[wϕc%s	Xvz+YV۷w`;XQUE˥wW7 xamBI;v&X6bv&b\"?+/h`Y@wH$@BRVGT׵7\"Pˌg3d$6 qimNSD}	sȿ~D4<F>֭Ee?hyL_**ݨճ9s	\"%r\"YlR]MJ,ύW?o{tIX~KN}5Օ\n\rKWpz+0C2@, W\Zh;/,@NV_xtNq+nr&Z\'27F-v#JoEo|-i~4/InoxpZ>?K%6o6i$=UDIDpגGo[ͭ*Ȃ\0I\0So~S`,%ɚJ)hS[H[\nΪitDAbƯ9]s[ͧ*}^X\\O[k\0̅dӜ\Zاñ˰HarWT3O]ƀ}aX%]\\\"Fk$b\'sBSOFò2i/R_`ڠ9H4zX3QBY5<\Z3@,%,\n\\@Y\Z\0Wdn	,,GkV	)/$\0eWxEgJ_BVdN:\"&2bI%r7\Zټ\"2uoYȔGj`7p&V4i.k!R<8%E\\Ϭ])$-Fv0ZOA|B_5Q$\nބfqagw4⬭eki+z--=V4[\Z!rNPg򱻧Fs4:99<l^B}mi܄|yG\Z\Z-$e:+M6\Z.cmiDNɛY+m6:o[#mSglT^3lt֨t5cNڟEHKmЍh?h\\mw#u#u⢵XZ7ڔI~W_U.n', '2009-10-05 00:17:19');
INSERT INTO mw_objectcache VALUES('starstar_soapro-mw_:pcache:idhash:1-0!1!0!!en!2', 'Xks6g\nݙH\"iINfSOسv79	\0\"i3$%QfX\"s/4wôze˕h/W&.uj\"$Ι13%2RL\\{CXPWjeyl1v|fo~2\ZxIlɽ4Nk،QXn&Ѝ)#ŽMZaÿDk-ڛ/kf&!Us5%GMSQ,	uA:HAܙ7=qlP:z`>0m,X42]?*+bNŜ*V~0\\9۰xEL84E\n&.Ҁ!Θ\\rRee0R	q\Z\ZO %-YpŋsxB\nc5J=y铚Ir	0U*LJX9!/ZɄHcL\0^\niy1CrCEB^q<9gkFU4}~j^ fp$o\n*\\,%\\O:{d \0֚9TI3⿜5ԟ@\ZcUpbsns`<[_UD/2\rjyN/vu1z	V!\'ZPg>g-y,XNo-:Q5@Im{+0YARuJ}BR$N- >K0{*.+t8p\Z7iV7\0UXhA^A\\6z,ԙ*7~ywDh3ly\Zr(Gi	y,\"ks\Zc53/ޑ/>teDfsdt&J9+͓J}d.3o0v\'Bn\']lEZBZc%~	1 Qu/,q1w2t]\0d:Yfz]8\nOɡXo8^HZE~d{w$`EjX3߯0UD;4\rJs%c	_Vz4\"4QywN3=GCږ.-\r)jTJ4|XvfGie*/yu&uU[\"F\Z}p\0pm#C$!\09ö6Kڲ[PDZ4K&G/]K$Ɛ\n;hhB*LnH\nexz.qVnȊrgxpr<vL.a,Q 	\rlJ\"j\Zs]TΧ\rP,ǬiGN>\rE!,TڞV17Fi(7n)	\0r\r(c{|SQ8_A3\\yB8>OxQ9U4WMMɥ/}IW\n-8\Z\0p@1auX{9@1GN(ZuDK׆$cg?\rNS.O(-\n}\0|8J!p^㭈7aԧ_.7uXQs\'RdAǛFs^Sva4b&b\'j6F􋀘gt?89:;t]7w\'|%݋ܛ\rZ{4>,Ԧ*<sGH|(%,\Zi\nG\ryt+͛q3 .Q}̩At!l*lma퀆@B³\'qbKF|$<A/ǝРWpAaB\r_\Z\r nL8&Q\'uh])趾EpT 1smÕ HtuRÃOLK\\WۥǦhU60pC+\\n`Ջa\"xI1><=', '2009-08-20 01:16:14');
INSERT INTO mw_objectcache VALUES('starstar_soapro-mw_:pcache:idhash:1-0!1!0!!en!2!edit=0', 'X[sۺ>03e&HZ-IOS#\"Ac\0P$5]D3MpD`o -ӆ뛵-֣aH:^qϷ֛\Z:̲eI3c^-Ke̙bw\n%=b.s57lf5~%p(؊{Y\"66\"%Na!3F2ӹ7؈12~ӷ8[tP_ʕ׬T-B*qωL+r;@{áfxнSw\r}d\\2[=/N{8XFS,\Z-1rA+^DyNDC7Ʉ،`J7`rB\n\'*\\}3`#X7IvD|GD`r3&Xͬyy~Gxfh2pCEH=%kM_Oɒ+2?S0Bā4臼֎A%F\"!85h3*W}t:+L.-}\\ókԃ=1)d{ϔ F2G*i{F`>ѦBSpw\0h?@<Z}y\nNz\r.7,\'t뛊E9v]^IkؙEeK;,Nfvt-PsRkj0U.LoA:>CTdv	)DԖoz+^Eb\0|ƬC\\0UU(L^Q\\6~,ԙ*~ph3ly\Zr$Gi)y,&ksc5s//>teB\nHV\n^%l/Mrfך\'QM:)jK}fLY/VA(Oh{߸͋.Ut.2h\nAk!$\0D6YGC\Z\rp٢N¡SrLV\0[<.7U$N~_ax\nx{=f0f<΀T%l\nW\0*z|O\r	/I}8\"4(ޢ[Piuf3t0	ꐶ% [!!@\Z>4\rdIZrP>Kj~(EJ]!/_L#h\ZM\0, am#C]$!P|\0bu:T%%	%LENNl{ҍD`yM]P\r\Zh!,QO/{\n&XQNN>I\'X\'wKB|E韁D;+Mbp\nβ8=f{=ronoI.\na~1JF	XS\Z;Ucq1LП\\{^w{j] ̕8Hߖ\\\Z}+HU:YpgԠYF،<?2pBѪWl\"Z:*H=<8Ϲ<ys:QТ	:2\"8ޘCh}oʨO=B_\0}҂w\\bG\rM|b+{%\rpF/dͭ4xM;Tjo녭W /\rLN<Fe%M@3:k B]L<=bA@X}|׽).ؘZSJ]RӧSh03?wW6]4<:M׸w>F]:x:NZpE5[1I챃ᑡwMƋgaHluXgt24\r]LcMkwMV[7*ޖ:Zoa6hLtW_&B8\r?޵ZxM遁%nzSUn*:\Z[Q>L\\`oRqDr?', '2009-10-04 01:17:18');
INSERT INTO mw_objectcache VALUES('starstar_soapro-mw_:pcache:idhash:33-0!1!0!!en!2!edit=0', 'Xmo6\nFE̶$ǉCh$eqHb{E(ɯJۇ6eswݑO)ץKPߧ\n:Nv˗1RҰYʉNwgLJRUBD&람ȌwsJgq#1=Rf)qM|I\n<pL.ƏhW4*U>s]h1Ln\\+J<v=,T%\r4\\\"wt,4D+i:S?CSy#(rNcGG*(rHy<vzq\'zBF|͓#lv)sH5lF&믗=6kHSgLk [1m88y(XJo35d8I B>f+9OE),G,4B1mQ*sH;/8jQA~3R\0@*CLyqdDH5%4)揥3:!ψK:s|uHlQl+Z$&PU^1\0!˙Xr\nxziIkݽ3㘍=G&\0JH\r>1$BӴw}m@s	2[ݪyĜ\ZX`_O,]cIi<U|4¾/8҄T\Zyg:mǭk:X=Dل9[t\"kik*eoiT<HmCK&O5~T*g\"\nbNb`#([j0#SVRA_u)4:Ԩ$잓0[٩wJLs^(X2MnE}Do#`HmSLޖ067\08QiWk \"\'(&xc	]h\Zg>b6fx:hfSßPUOQEqk;_Q<bUR	CĨ/ÝubT4Ԧ}}r/ɟn!*̓\nҵ$ذz7ueoײ*U_ppú\Z1<̹.b\\=L^3_N+,[Rn9l|PLYZ7KIy+&\ZzӂabL6a\'+JCGqCtJRJ)<\nyQ(\r{w{P%̲ ^{V@[)$\0e&{^-s.7_GNu=?dm;0\nNhnP%Hhqcc&c׆}klv/3NO	o.o[ΈQ~2d/҂oQ\0uNwl.Bg4jtzÀ^ [@lG0uϺVt`$ =@TP1uy:}\\Эkm-Z=upϟKkVl yp9\0cP_mjB}jXoHם\nxt()oaBЋVagF\\e ffK	l@\r-ޫp^z3\nٶ9R!G%{opT}wۿY}]Ym\n>\\mpb$\n2Ǌ&w(=O?', '2009-06-17 06:36:44');
INSERT INTO mw_objectcache VALUES('starstar_soapro-mw_:pcache:idhash:38-0!1!0!!en!2!edit=0', 'uSQO09⒗,IKKMB@#2ɑX$vd;\\v[(gww^$Q&E\\۹)Gn]taVJ4xMgXH,b$*]¶BA^k/fW(Z*y\r]u{(UB+Jt+Jx~\Z,F-1w2e#lqAF_sVP@utdںĮ\0#l>KRxJkPஷ-*+_:Rsr\'gxxE_|E^}(\0/؃ujA摷;E%l1!0\rIpwwdi!elΦɌgl\nw;B~+Ջ.gr	宨R\'rB*ytę?aDQ \'<b/~G	%19Nԓ=\"+i0bW\r;D{dǝ}o4h\r݀ǥzx?Q4GςT2[49f\nfO?0o`!-i;sv\Z\'do', '2009-06-18 05:37:06');
INSERT INTO mw_objectcache VALUES('starstar_soapro-mw_:pcache:idhash:5-0!1!0!!en!2!edit=0', 'Wn8b,{b[/H7AhGiD\n$e[wFv[@X33#6\n[2c-]Q:/\n裍ƑΛ(<̱U& ɘsO^XI1HM[2[D{`>so\'K#CO!~er\"MaYٳSȤTM\"cZUC#\n[tf,fC{׆V`<gf@asD)I5k8tƏ~Z-fMIj18NF%P01e0b}u%K#gbg*蟦4(F!NPLN4Ʉe\\r/dqsD|Ra~Q+[L˅=^&,56?G&^+Su&*)3*Cʰ)eq3.`%$F0q`%#0JJR+!)Qw׀Ň;h#7Rr4{Ykj37{9~80UUqwQf880lL*]6Z:\0W8vLWÈ_.?iyd)\"<+5Fd>8xcqm?2쏦44Ӎ].HÒcꩃhν+iQ3*Âp3S+i[4Y&I=_cZU2*PK;,Nbl>V\\*3$_sMaV6@C:\Zڰ1\'ZxP\nTm#lO0JQP++4YvR_S@\n\rGSr \\̍aGִE\nB)#83EK祒RCi]cչ};\n\\J3j%h?TpL6A\r\r&8@8hN5q%5$o.tފr1G(#\nm\\g߸ڀҜRS*<3L:Km]^BdT1AO.q^Xv325ũ%PYEU;X*qRO:ޢSGpǶ(	K_8,èz.&<e6=tnWnإJ@{	.}xx19e0³\rSmčT֛ȏ>~¹\0^blp&PL*{7l#o|BJ]=N$U>C	G<ωlK2>JȢ!}\'): 5\nB=|s7\rWv\n>K^3G`8mf8<\0?\nM	.(:rV|;ʌ{NT\"=[\'v<}p\n7!ER~3CdqxJei%rSI~M/ĥd?ٗ\\Zj\"O4#)`D', '2009-06-18 05:37:53');
INSERT INTO mw_objectcache VALUES('starstar_soapro-mw_:pcache:idhash:7-0!1!0!!en!2!edit=0', 'XYo6s~#C$br	%-wJrl\'\0ero>9CFAyw\\з-+Ea}20xD4&9$L,O̹Kx-Xǌ0.يov4)/MRj\"YĆa4F5&e\ZSK2^?YaQ7C=@rᵞj\'(;MD`<SdTMޟ\'}8SXb=V:=?9ck,il>}43	d][dܰ@@aJ/1.-jn6/S,A*,.l*&Rf+X3$n{YLIN׊(h3`0IeJd9Qɨd8ϙu5]2]K9\Zơ[!V<jym*:e+XDsSDziP-Pb!#܎\\I5/cuD,\rI6Q[x\r35%\"8rKfzc 0@A\nBr\rXjNB<K9e]Z\0%OS,{F~w1y\\hU4FLCzg%f;;{ɡ\rҊ獏Bi\\p\'mT%c0nrcW}󂹍upqd^_DdHtuq_+ؔk(b$$U%fw`x>tS^QRt+xej\'\nrc\"N}\0๩+\\=@IN+\0\nq%J*K-[b9p[ig>j	hDi&<ɔu+dPI$֣?+:\n,fzMLJ%\ZxD5K<bŲ+ۆ,.\n¶cXR\0j	c$-4hn%u\\#`d}Dqe	)D¢]E:¿T<\0/KxQ됦DJ44tyluH,eǏl+@@\Zbk,j,ޗb45@ԗ|ȽJ¿	ʹñM\r(<\0®4#腅&G]vt;<\nl4Ц8O0*F\n	~໿;elJ\"D$PiѨ`xc=EUZ4>ah\nsw6#EnwvTpW@Z\'xN/a\"Gn~J\',:|8<nOT-JQsFEuE\"o#?s]`Nx2yz\"qE.a\rMv`? >.\Z=G?8-ltAwBDz	]A\nxO\Zf+dE/Cky~nCjw@O9ty\'(nZ&0wk-In`iN[.SӃӁwmϼ\Z}2G48,x=CN#7`g0Ӝ\0RXKkJj&}K$#⾹fzJ;+%]#DaS<wf0\\S>mBӪew?7g|S\\҉|rlvkAn~;؁h0!f', '2009-06-18 05:38:28');
INSERT INTO mw_objectcache VALUES('starstar_soapro-mw_:rcfeed:atom:limit:50:minor:', '=r۸3_IvIK.1Qg&u8e{*urA\"dq!):v^yqdP%RdYl*HFn4\Z_ƶu/Uů~o+A8Xg,$c!	k xA>_k5߭.p`nPuڵyiւK	j]׶]c̨B_{[	|A\'^79mC~et:y~xk\Zr6Tkhk{kRK?b]\0P{h)4`:~PTE\Z9eۚ(,ӹ$>/f^HbQϳ.\r5ǌ[\01T2ߡ!{^?\\.فg@K;֬4Nި~[b`;i}Fl7CBDo3 Fs}fIիVU{[o?\\{Ӱ~S0{v}WeF`\rr5K>43\'*mOm׵PѲm%wXaY)0oes	$Vg`@ΐ *˿n&oăё\0FZ5b65q{duT{R&鹾M*!yyzEMv,5F:; ǮGIZh1qDB_5#/ԉ>F\nBSA(Imaɔ32gYІnx	ag3C$0LԲ7AȜE.+F@4w\ZOF\r:,8;v٥U+\ntfɂՇCټy]	U`߳4@nU>v|)V[\'@M@ǹ.]%/|:;ȫ3E85ɺ(0>ٻ#jۚۚޟǝ\"	>2u[pE(AY|\n檟JakNfԱXK8t-\Z\rNpd2]	aZP+jN{#t\r}	<\n\ZC\Z:5ph<HkG\rB6IE>S|cZ\'h!]AX93tCTQD|?\n0VJS[\'/#3HI\'NV+W埄/\rS?WqCoį\"2Կ0]{Ct^v5T\rg|̋~w@2@-v\r	\\4Kh(K *u¨w/5\r\Zpt.t`6Ѫ-f⿠kR60ReCѨH:L\rK1]4yY^.C+\\h@ŴY2|fMqagtP}qF0 09uI^	 P7s\"H;3$h&\'gg\\\"PPQȢd\Zr%=?U*|WPaĭ8nK\"ݖ{Rխq(ǈ:&̈4pE;݌\"CvF<-}kKoKS0e7ZDR\nBvbVhrj\ny`>BFgw)~p#>7mzYf<\0F802*ڽz\'\Z6eB^~b	;nh78#?<)Zq}u{gP>||z߃ p\ZkƄ߾V{\rϖ{M^Y10zs\\_GeȾ!aVGV暬xq#Hr|+f}+!5s%siֲϭ;7SƁ8{C_-67E\".{+,4F9is\rluSM-eό>w[LsNmb\r]6yM[;^dGT?L4>{)}>X420Nz\"uȸfU*KGx8:Z`n^?%	=tRs;H9O7`E6瘇,gm6v-6hAkbq4ŞC+ҳ΅>=Qn_#Ƴbחbjwb@QaK\nw߿;=G/]9p=]v	Y h4UglA3kU-Eb\Z-903NH0K\n	jBBKJ*QTg9+}a׫-f.w\\c)Y?Ñysp抬903G֜\\j0.<=/3 ZX\ZY2\'~LR5\n109No*ʾ9͝q\'c9N\Zv4q6\r@&N.4\'ŮmBodςdA]{P;Q=	X\'aq]Df_zHG\Z{D9\r5)+A*7`F`,يK2^xx휣fŎ>o*4go\0\\%\\ͽOOukKFQȢfeMP\\s?jrkiXnqK;|T3x	٨x\ZUyɳyU|gCdq44fȰz	YC30f|ɥb| o2ty3}JR\Z\r[7~&y2&J4cRhV\n!|\"O[OFd>`m\n23bA/K䕕zFy\Z\r>޻Sp_#vR6\"\'|KA)+!db2XvDHrx58fOOis;W	멻[&4T<ጸOn[{6g(VquЁA8W%Y,ǁ<֋[KZo&H\\(>s*6;W)r\Zǔ3$ƼIA(H_cQ0Wxk!2*A2\051Alch{m%%](lAe)[\\k;>E\"j;jfǴ~bT<s5P=ŤyVپ%X5g75ϼ夑*RJmҿZg;rӽ.\rrŮ\nn,#E\'8ѽkzW\0\Z%D/xAV~Ѽt(7Lf!ecc#:Fz{u/xVF]F#x4P8^E&e^GI	w{[kduۭo5JYngmpO9au.=LĴ}`6sＤ=)L!]	TI=)Q~qbuk{7\'s:SN:3({I$s([v c;#vvWմ\Z	<Ŕ5}ژJ)5bc\r&1^1<^j>R[ܚ\'[}n*qtx%@Re26|	r%t=Q,85tBBS\\eDkg\"V$7DY;C:d	*ALzŵ	)@cx_]1?4Ԓ\rئaXlj)5FLH=;NQ.N:`\nG)<6RLpuQzj&\ZqgnbQVq0T3!5EI%xO֋1L8)GՀe=m\"o&nL;	.f\ZcmN:X\0Ҧ_l3I~-(A(PӸSKy\\:qBޔ7H>.qjq)l)rL$w]§]ڸL\\.mti;%(؎,.	5M\"aQuYù+K}yx4|OC6K\']*X\\hߛQ\rw~OiE\ZkFe>!N74ѩkݸdr9:0]>Bi E2 &Ц[=̄/Wnwa,)Kue%tG2lbU*VtEEL[`tl)2m4aݎ9˄#Skvbh/	jW&v%vXȋeZߟ\\LB;\\|L,CtM2.]*H*%9NϑXlA\'̷(3w3ȹqeA]exqLr D2ʹՅ	-1U\" ^&=:`z\n^S+Kfj\r9޻PRu(J\\Z\\`L:b`  deCU&/gJVdh*3+2əf=9HNmiДӕ25GHAk&p6h8(*Za\ZQ))\'0\ZH2`XX,a^4Rc48^kF=	=5j7v4J:;h_N`Jvĳ/+&z:F	!|NǺwCvF\nFb5IRk,oWpt`qW	oXnw`4S#SRj1\Z048RDq5Q1َ-Jh˽4E;n6S\r#mhb{G犚Wt+;\"yi\r:[596MMc~;ThK^ͻuCl5v5&u#je:XA>_j,2Ny.&L#o\\tyA\0ѵ7-jR	ߘumK)bóͬͶZUR.źB̰[״q=b9Xפ\0D[_tçc\'u\\XfЯ.qWxZ5#݁5$}zD^+bJ\"\'*\\1驘\'G_?}r@>~|O\">~#|98bwpׇR+\rxPʎa7-iV[;[8<[`kn,R\\dgp= X.(q!!Gs+- 41`4UF9wDa,:Dp&>+#<yH##ЀJ}LRDx&kYQzHE\"#e04f7ul$`P$5nfnBC]X1]``E>[jǻ<Tl~`\"<8}<6\"ȧ0 %K-4$I: S.*y5O=ڭ1~\rl`aoiKfA+\r,EO`~#Ob{74*ƔMxOAe^#y\0Qԕ@,rpF^fGR*cj+5eD+b\nFM_Ba)sU\nIS+FdJFJt,Iߖ+ߖN^A$@;==a><;#;;p<\"\0*[&XֿCiqE+Bfc7Ub;_\\GǸ\"c⡷W{Qؑv&bP?;DET2oiSyʔk\'vMP9~TՇs5CΊ3hh-$M\'IQ3r\"\06qm4ڨj ӷB+!Qa$r)͏*SP\"\Zh.kʲ,]s5<I\Z%8?tXzg8_IՊ]S\Z():@@Or}#H\Z6BicC,cb֡H#4Urmw&I\n־uB\'46u*N6jB_PLC`cc(&!92+`بd0<a	b|w/\0q}ACP(P =>:ѡk,ros=.<Qmu/y489OCR]7F0Zg\Z\0uD\'<CpWHk~PӘA,ǬDٯ\"g{¡N>\nclF-8ﭻuDl%<+2`jK|a,8\'|njl3ι^,וyJ![h	9N+y`.B	WFR!;pzò{e$պDRC;2GP>Y%o%iMbIVMMS\r\0V!\niIEl4d6KCOlt]@!EB lȕ,cfN4ҊgYo5Jٳvp-f]jw=VeO:ƆX\'0\\dc˂>̙*dB{K#\"Ӭq&/e1j|\"rEס>ݢ>C%\'r\"m$p&-qƙ?Aƻ]cc{\n	À0XCbk=NO E6Mr<ӱ_c_5JV`ꬻ	578sLY9/j}W}[\\Gio=U_Ɋ[рF\r+cdr(Uc\"g1h\\4ֵCb# 78ks֫ޚ,CȓFEī<to7l\'~Az0p3\nHvXeM,Dx)8`A9)+tv|uWߪɭ 3˯\nl#@)îS}|$+mL3_sa|ʔ~q`5GDO	$3m<DY PopX|QF\0!Q#3Czx4-_A3Y{Dt+uΑ1e\"[oJ4\nC:wkƎ!Hh]a`r&/&_16DFH=!-־S\08-;Vyy͝gBl;2/8?>F`!(9`egmF%荸2ww|	pPu޴,Tg\rjy}*&st\0g`\'\\cy٨ۃ	&(b7Px\0^wt?qY3N44	zJQ\ZCt{{}#F7,\\)z(,M;1SW?-;ϺS^?\n(o/o_K?[hhaqxNe.:麦m,l$S̕Gr8􌘢7ėRO)R(\'4\'*g4zkUDOWqz~ʈ\Z)\r}kS~{ʍ\nn-ZwԄbfqB#òb%8홏M1gS`Lr⮯ \Z{xxԭ27aR~90+(Btg=yRO-u5ӝ{v9Ʈ{>t_<-Ec/C⋺Ɩ!k|QoG_>~^s{nq[{\"}Ba,{ɀ82B׋Cҋgj6|ʴu1VaB~qT)E&7g1\Z0B=9|mɻ\r3pc0zSq{Wv~Rr1\'kH@1;ڐL@1y$O%N%len[J%)d.aBHyb-\\\Zw/?', '2038-01-19 03:14:07');
INSERT INTO mw_objectcache VALUES('starstar_soapro-mw_:rcfeed:rss:limit:50:minor:', '=r۸g쌓ZK7:JxԉԔH1oly@HYd$6\Z}Cwncgxֶ5u/ڋwoO+A8Xc,$c!\r7 xAz>_66|\Z¾aA/7n+s#2`Cwmu6Ux]}wwAo%Чh>}3\rf19aQ7^ouf	boO\03!rthN%slfe:Wotv[z;^cI-M  7Fԧ	{n?Mb:\'Л\rGK9UdioaR>p NZ{&`iwIcR4j]RkhV!O1nӰG)GOsqwj{{;5ŵh{>$V~}i8ݽSD\0}Csx3 \ni}7KK\'ZH|Q@twA;j3mj0v	Q6d|sR&麾M*!y{zMMv,?jVk5ue퀜=>\"j:	ǌ!	C?|e7Q\'ic04t=;8?AO6h,2tonxt9wP\";taZQ0Q@e\r9La\neK󚑁ݝEdĨ\\&vvzmݰlH^}8=\"W\n=LcVxkv*N4stJ/}:L[{\"\r)co~^bV	5Ht4;`]#lsɬZW4o6P\0FdǬ!5j;=FHIۻZd@#r]ބ4`4k#[ǂb*D)h!rW_2Fwh8Qn@Oe^:_KQ6Yh&K¡(>\rTZ-5cO%-CCN.s\\ed}-8\'e:52sJ`i$a`BzeUx1 xoh{74*F(B nCKj{DAΌnPo~oy9 nZݻ%kyIZ\0.źa4\Zt\\jj٤Vm1{/FIwנ1AE\\t\'vɖⱥ:t_)$MDnVzVf@ۥyQhE*	%{a֘2?VLzW6D#\0_bF-=y^LNU_ͅ\">ɐ2jx^srAyPPSȦdr%=V*\\w0٦1\n*:ʕZvI2|wD}\"$޸֚AY\rIA闾HiQútLs`67ֈNlHVhrj\n14ux\"cҚE_aEi>eɭ..x.TZ:yk&+zh\rPyf<r<ip{F}#\0?\\>%Bc>~!tY@:,aL$76^w˽!/O{,JCwYWlY,3fņV[,~Tfq@3ZўV_v(uNjJ[X4ok5Ʉw:GݻwEfƸwBz:`g0kB~fi[!cRX*hic}f$DyR`ܠ6a\n{ae6̚vKQjG*+fƛd\"N@d`:ZLTfHk\\bVQcYsҬ֪(e\0 ,XڟfODVDٞiqoG܁(Vec,fE,B;58uHзA<82D)UɉdoWo,tyE]C?Kqv?dD>ƿ[3>{Cݪ9ceՂJI\Z-]?Ȅ3N0K\n	Cm+/tDW\n![ Yؽ^ml2{o=؟X<llkRL׉Dp7mi1틒j;Ǚ3o{K\rf!\\ggqG.\rv;9w~.APS2j=%FNͳjS}VqZG$Ť@e%{4̳r4hHgm\ZˌM\nt<\rGq6Q9+珮E]Q셗fC*H[Q|+e!*-)l@+=@RPx~\n]V(dW(l}UyU-,oP_xz}UЉACM_c+Cwt_嬅<hYYkTUẊAcU.r$\ZVeU-LG|q.TkkC$|Bd\'-W;w8&;+(7\\coF5l΃4\'G\rM7mulD<<iTvVPnn51Oci24BT\'\'cr28VE.ays4%TXq)LA&]^(+K8M䞈釽(58|\0J|b{w\n}UfP$}OM6\'h>]ylR,vDHrx4QZ~>ajlnRUAz<O.Uo.>5>鮩mj2p䤻:V9\rD+lh<p\'shefvٙ5\\nj !CUX*{V\\M[OfVyͳ.j.\\QjeO{ZbX)K-81=Ť9T\\Bȭșǳ[L:3_-)4XI\\g1\0d#-{Ģq~I\'IQ+OYn5:nt/}ZAuÍE\r|û1`V{/7\ZCuwk槧C1SZ)4֢mww?|?</t#krddz՚\'?Hʓմ֊Ud=fy3Z­[F=QI2DL[.i:畢k%el㒜sOŹ윔*Y(	;ae\n,vFMwwQC2xT@k1dtZMHrML/SQ)ǥH	=(1bz2xlImqODn7Fъ>mn//0NB+ 4 	JzZÓ3v^vlsl17	?:ZĒԫ5W|e}\0Ǩ0BƄwJU((&>f~hԒئaXlb)5wB8t:]|V-,8!>W1 %TW\'16E#L\r,:UhL3#=LHMR9AdI}Vs1CT-thjxfq7Ɲvx2	>SDDK84Q~ a5ao9M:85_ĭo7țGM6N[D\n\"\n\"rȘ/`)\\2%1nc4\ri!m%$\0Pۖmu@s3xQ<sm[\'n(Cf>\rԯtK`\"9dwGmt>][^{Ө3	zf:yM[fѼ.sTf88lMgzbvo	_LG0|J2C@]DBмNڊh	vS\"KwNMY&-kXнIeV/]`Lۢ	#m;Fv`aOr;1hY&p}g\Z0}i.{j7AI-H1t}d\\ړTSZVg62Q\Zt|;\rA|	F7ƙ΂ }xqLRsNz6HEu]&@;\\0Bq%j6y@*xNQ!WR޻PΰP>]HM:fn? diCU3-ISՉ0Y:%f]&4Y߀N\rm֓LrMhS*χf\"ASG25!\'Ӡ5Mw5dY%\\+>4r4R}+JZbayX7ǌiE$v=ה\Z$gP԰nR*ho}:)/}G|BKϻ뺡i0b7XnI\0HC(CL&0QJMv\rz]k:7X܁UBk:qFJb4`d\riHSX	1Q3ُuFLY@\Z7]kG~PWf]iiU+<rrNt%SV(bΟd{[ZIA5vjm*gj3\rBzQ/k2{>YR0IP\"\Zh6\0I:&63&VquY+i$Z1w?=%HChXkZƥpcI-\rЙ׿|×\\&/t\\ZfЫ.LpT\Zʻcm\rH^uKb1-}\\1ĜU>|xxӃ/__MEաԓg6kZmr/\nw[9&}{7%ҟ2\"\ZHH/a(.u\rSTkiJ,|P܀5ߘ&\r&\'X%ѪU8ј#~kcP|8 \'xiwhԝG	#V\"<ǁ#|Cߵh]$	\"*\rc\n|wmbh\r-8!3	IsБNmMovX %3;N.}ET[{.wۉ\'г~V4A9e	nQn$/DdJN>:`]~4˝y\rEpZo*ڟ)6w@-On~@+}z:UШ\Z1E8:3Fr%.sf]Xu7\"/iStS6)z#jVjՑ! ڒ<l)$[CKD䊹=^VQ\"؂%˦.ԯ0e ;;;e>:?Ɏc+f_;[\0*>}^Sދ=͆ʱ?*|uA\n=CElf\"T	wԹ\"ut%zJ*oPr8Vn)Jz.?iq9xɤl˾>y yE^|123LorҬֆ@S]:7{*옮M\"d񤏲PdR]Yz9P H!DFg=E:S~^Iu\\~)8le)mF\'UhmMLax<Sy\"	wT)<,):mn/_ST\'Q+.Xׅs2O0`Ko։ͨ(+^\"p2{01aHW> !(|F(o;Ѧd^=s]ߪ=Vv|q+(^\"<bIy\ru#Nj	?\rw嵫4a #ϪdH*,ʇ\'r9zԳˋં0mܣGcRtɵ#R; E0u% m|Ԅ.jaøDsfqIrَ\\MfԴdca1Z;e>93P.ĭde%RYRDɖ\\.+V)hu	7$\Z\"y/4C+Rlr珯 tȶ\0!\"V!gAEb0P6T!lqV}d\nٲ-\0eGF\nטej+PcXǼjeyZEdvYLTYXS,/ǰ&>W}XY[{ex<`ǈ+4ǈq:oe1jB/㾫S+\\Z~PI֩$Z@W7L	i/|:Y],0\nCc80\'&ȹqEhzǛ\0@^ 7Ly\\y_:`yUg9.dx\'2JP/\0BUu\'eTL	ߊ0oV.ߓ\Z#ef//A8)Q8ru$B&rKW2´ԑ9U?sMCH|4s搟#IPa糮:F<_F~~Gn@īgX띓WQtlə^_I41RdbZ˽	MDMޒ@,\"J\'%T_~I\\EigbѮ̂IQW<p(cfz}tK\'Ęߠ]R;$c=^>u>\\4ƅcd	-2% |d[,`\'$dj>sC>;әv@DrBo]	JcCVz ƛ2X\Z՗qȜ୊q\ny-On}\nrD|r\\\'ؐUc{9b=zrCm֗nG\\1jeC\\t\\IY7VtY+\".$E9Vs\"p`䋙kCJF\\mLe)(glI(*7-TZ^ʹܓ:n2 7^vva~ʙIq@l:`G씇ǝ9;O\\q~^#bMXt\ZB\"\'\Z\\)Y?nL\r\nnS}|hfAbqW\"\rV>JycR|%..VX70A~xQ>^ֆsE!Z$D+eSq	Eo/)USWҶX$U˫IGd|6J2ggijj=o\\}櫾*pn-<aZcYc/\\wa[0YX%o˛bjSyNY)Uɩ\r7[np^ꑉ/i]墶\\\0X~?^{XD\"ӳ\'Q%[\nɖO5fH<DcC/Ћ:mu+|QCb_?ȫy?|+B06OW*t^r?T-&o^dA;2̐au&nHYvN<рydK^Zl4k3<8˰+O|yID~B0\' 2ia	d06BI,~QJ0vvB]	PH;hhot!<0/o6 xb', '2038-01-19 03:14:07');



DROP TABLE IF EXISTS mw_oldimage;
CREATE TABLE `mw_oldimage` (
  `oi_name` varbinary(255) NOT NULL default '',
  `oi_archive_name` varbinary(255) NOT NULL default '',
  `oi_size` int(10) unsigned NOT NULL default '0',
  `oi_width` int(11) NOT NULL default '0',
  `oi_height` int(11) NOT NULL default '0',
  `oi_bits` int(11) NOT NULL default '0',
  `oi_description` tinyblob NOT NULL,
  `oi_user` int(10) unsigned NOT NULL default '0',
  `oi_user_text` varbinary(255) NOT NULL,
  `oi_timestamp` binary(14) NOT NULL default '\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `oi_metadata` mediumblob NOT NULL,
  `oi_media_type` enum('UNKNOWN','BITMAP','DRAWING','AUDIO','VIDEO','MULTIMEDIA','OFFICE','TEXT','EXECUTABLE','ARCHIVE') default NULL,
  `oi_major_mime` enum('unknown','application','audio','image','text','video','message','model','multipart') NOT NULL default 'unknown',
  `oi_minor_mime` varbinary(32) NOT NULL default 'unknown',
  `oi_deleted` tinyint(3) unsigned NOT NULL default '0',
  `oi_sha1` varbinary(32) NOT NULL default '',
  KEY `oi_usertext_timestamp` (`oi_user_text`,`oi_timestamp`),
  KEY `oi_name_timestamp` (`oi_name`,`oi_timestamp`),
  KEY `oi_name_archive_name` (`oi_name`,`oi_archive_name`(14)),
  KEY `oi_sha1` (`oi_sha1`)
) ENGINE=InnoDB DEFAULT CHARSET=binary;




DROP TABLE IF EXISTS mw_page;
CREATE TABLE `mw_page` (
  `page_id` int(10) unsigned NOT NULL auto_increment,
  `page_namespace` int(11) NOT NULL,
  `page_title` varbinary(255) NOT NULL,
  `page_restrictions` tinyblob NOT NULL,
  `page_counter` bigint(20) unsigned NOT NULL default '0',
  `page_is_redirect` tinyint(3) unsigned NOT NULL default '0',
  `page_is_new` tinyint(3) unsigned NOT NULL default '0',
  `page_random` double unsigned NOT NULL,
  `page_touched` binary(14) NOT NULL default '\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `page_latest` int(10) unsigned NOT NULL,
  `page_len` int(10) unsigned NOT NULL,
  PRIMARY KEY  (`page_id`),
  UNIQUE KEY `name_title` (`page_namespace`,`page_title`),
  KEY `page_random` (`page_random`),
  KEY `page_len` (`page_len`)
) ENGINE=InnoDB AUTO_INCREMENT=55 DEFAULT CHARSET=binary;

INSERT INTO mw_page VALUES('1', '0', 'Main_Page', '', '175', '0', '0', '0.709514370386', '20090324194440', '179', '3158');
INSERT INTO mw_page VALUES('2', '2', 'Daniel', '', '8', '0', '1', '0.115282145874', '20090320004251', '2', '35');
INSERT INTO mw_page VALUES('3', '4', 'General_disclaimer', '', '3', '0', '1', '0.341525522735', '20090318215414', '3', '341');
INSERT INTO mw_page VALUES('5', '0', 'Lucent', '', '68', '0', '0', '0.1839213975', '20090326061910', '154', '880');
INSERT INTO mw_page VALUES('6', '0', 'Sandbox', '', '8', '0', '1', '0.114543954657', '20090319210920', '8', '38');
INSERT INTO mw_page VALUES('7', '0', 'Daniel', '', '72', '0', '0', '0.259238282602', '20090322010053', '151', '1061');
INSERT INTO mw_page VALUES('8', '10', 'Userinfo', '', '12', '0', '0', '0.030464358642', '20090319223529', '19', '837');
INSERT INTO mw_page VALUES('11', '10', 'Documentation', '', '3', '0', '1', '0.00738279299', '20090321231224', '99', '2836');
INSERT INTO mw_page VALUES('13', '10', 'Infobox_Person', '', '22', '0', '0', '0.765635974403', '20090321231249', '100', '4111');
INSERT INTO mw_page VALUES('16', '8', 'Common.css', '', '3', '0', '0', '0.574763652955', '20090320001913', '29', '29369');
INSERT INTO mw_page VALUES('17', '10', 'Infobox', '', '26', '0', '0', '0.057859368326', '20090321231329', '101', '36642');
INSERT INTO mw_page VALUES('18', '2', 'Chzz/infoboxtest', '', '2', '0', '1', '0.215213267051', '20090320004020', '33', '612');
INSERT INTO mw_page VALUES('19', '10', 'Pp-template', '', '3', '0', '1', '0.807744019148', '20090321231210', '97', '2604');
INSERT INTO mw_page VALUES('20', '10', 'Pp-meta', '', '3', '0', '1', '0.416796771932', '20090321231337', '102', '7122');
INSERT INTO mw_page VALUES('23', '10', 'Mbox', '', '5', '0', '1', '0.867959022279', '20090321231343', '103', '624');
INSERT INTO mw_page VALUES('24', '10', 'Namespace_detect', '', '3', '0', '1', '0.263300330611', '20090321231349', '104', '1132');
INSERT INTO mw_page VALUES('25', '10', 'Ambox', '', '3', '0', '1', '0.401129024764', '20090321231355', '105', '919');
INSERT INTO mw_page VALUES('26', '10', 'Ambox/core', '', '4', '0', '1', '0.450245758116', '20090321231402', '106', '2697');
INSERT INTO mw_page VALUES('27', '0', 'Lunar_Flare', '', '39', '0', '0', '0.201011529743', '20090324145531', '178', '196');
INSERT INTO mw_page VALUES('28', '6', 'Imbox_protection.png', '', '2', '0', '1', '0.939209849318', '20090321003909', '59', '0');
INSERT INTO mw_page VALUES('29', '6', 'Ambox_protection.png', '', '3', '0', '1', '0.433234976005', '20090322002624', '60', '0');
INSERT INTO mw_page VALUES('30', '0', 'Spirit', '', '7', '0', '1', '0.920360924814', '20090321005242', '66', '396');
INSERT INTO mw_page VALUES('31', '0', 'King_of_the_Back_Alley', '', '2', '1', '1', '0.152566383162', '20090324000147', '69', '20');
INSERT INTO mw_page VALUES('32', '0', 'King_of_the_back_alley', '', '1', '1', '1', '0.171999695313', '20090324000147', '71', '20');
INSERT INTO mw_page VALUES('33', '0', 'Porn', '', '37', '0', '0', '0.44068125674', '20090322004120', '93', '2994');
INSERT INTO mw_page VALUES('34', '10', 'Did_you_know', '', '5', '0', '0', '0.79257954047', '20090322004113', '139', '36');
INSERT INTO mw_page VALUES('35', '10', 'MainPageInterwikis', '', '3', '0', '0', '0.090864940788', '20090321230559', '91', '0');
INSERT INTO mw_page VALUES('36', '2', 'Siucune', '', '10', '0', '0', '0.705510815348', '20090322001519', '123', '168');
INSERT INTO mw_page VALUES('37', '10', 'Main_Page_banner', '', '2', '0', '1', '0.641545426291', '20090321231151', '96', '679');
INSERT INTO mw_page VALUES('38', '0', 'OrgyPedia', '', '9', '0', '1', '0.529751133058', '20090322003946', '138', '88');
INSERT INTO mw_page VALUES('39', '0', 'Administrators', '', '20', '0', '0', '0.642396498858', '20090322002159', '124', '16511');
INSERT INTO mw_page VALUES('40', '0', 'SoapWiki', '', '6', '0', '1', '0.323912413667', '20090321235413', '117', '14');
INSERT INTO mw_page VALUES('42', '0', 'Flag_An_Article', '', '1', '0', '1', '0.943054018042', '20090322001900', '125', '498');
INSERT INTO mw_page VALUES('43', '10', 'Main', '', '3', '0', '1', '0.773789422067', '20090322002243', '129', '1019');
INSERT INTO mw_page VALUES('44', '10', 'Rellink', '', '2', '0', '1', '0.169377968785', '20090322002229', '128', '211');
INSERT INTO mw_page VALUES('45', '0', 'Rank_1', '', '5', '0', '1', '0.19944802178', '20090322005428', '149', '52');
INSERT INTO mw_page VALUES('46', '0', 'First_WoE', '', '2', '0', '1', '0.301559091647', '20090322042108', '152', '85');
INSERT INTO mw_page VALUES('47', '10', 'Infobox_Guild', '', '8', '0', '0', '0.997933772541', '20090324142733', '171', '4202');
INSERT INTO mw_page VALUES('48', '8', 'Group-bureaucrat-member', '', '1', '0', '1', '0.35095702899', '20090324135404', '162', '14');
INSERT INTO mw_page VALUES('49', '8', 'Group-sysop-member', '', '1', '0', '1', '0.833523034261', '20090324135523', '163', '7');
INSERT INTO mw_page VALUES('50', '8', 'Group-bureaucrat', '', '1', '0', '1', '0.648258304657', '20090324135841', '164', '14');
INSERT INTO mw_page VALUES('51', '8', 'Group-sysop', '', '1', '0', '1', '0.261526333729', '20090324135905', '165', '7');
INSERT INTO mw_page VALUES('52', '6', 'Lfemblem.png', '', '1', '0', '1', '0.111875486735', '20090324142847', '170', '35');
INSERT INTO mw_page VALUES('53', '8', 'External_image_whitelist', '', '1', '0', '1', '0.839840612649', '20090324145201', '174', '498');
INSERT INTO mw_page VALUES('54', '0', 'Bath_EP', '', '2', '0', '1', '0.446645070872', '20090326061910', '180', '471');



DROP TABLE IF EXISTS mw_page_props;
CREATE TABLE `mw_page_props` (
  `pp_page` int(11) NOT NULL,
  `pp_propname` varbinary(60) NOT NULL,
  `pp_value` blob NOT NULL,
  PRIMARY KEY  (`pp_page`,`pp_propname`)
) ENGINE=InnoDB DEFAULT CHARSET=binary;




DROP TABLE IF EXISTS mw_page_restrictions;
CREATE TABLE `mw_page_restrictions` (
  `pr_page` int(11) NOT NULL,
  `pr_type` varbinary(60) NOT NULL,
  `pr_level` varbinary(60) NOT NULL,
  `pr_cascade` tinyint(4) NOT NULL,
  `pr_user` int(11) default NULL,
  `pr_expiry` varbinary(14) default NULL,
  `pr_id` int(10) unsigned NOT NULL auto_increment,
  PRIMARY KEY  (`pr_page`,`pr_type`),
  UNIQUE KEY `pr_id` (`pr_id`),
  KEY `pr_typelevel` (`pr_type`,`pr_level`),
  KEY `pr_level` (`pr_level`),
  KEY `pr_cascade` (`pr_cascade`)
) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=binary;

INSERT INTO mw_page_restrictions VALUES('1', 'edit', 'sysop', '0', NULL, 'infinity', '35');
INSERT INTO mw_page_restrictions VALUES('1', 'move', 'sysop', '0', NULL, 'infinity', '36');
INSERT INTO mw_page_restrictions VALUES('7', 'edit', 'sysop', '0', NULL, 'infinity', '5');
INSERT INTO mw_page_restrictions VALUES('7', 'move', 'sysop', '0', NULL, 'infinity', '6');
INSERT INTO mw_page_restrictions VALUES('8', 'edit', 'sysop', '0', NULL, 'infinity', '1');
INSERT INTO mw_page_restrictions VALUES('8', 'move', 'sysop', '0', NULL, 'infinity', '2');
INSERT INTO mw_page_restrictions VALUES('11', 'edit', 'sysop', '0', NULL, 'infinity', '19');
INSERT INTO mw_page_restrictions VALUES('11', 'move', 'sysop', '0', NULL, 'infinity', '20');
INSERT INTO mw_page_restrictions VALUES('13', 'edit', 'sysop', '0', NULL, 'infinity', '21');
INSERT INTO mw_page_restrictions VALUES('13', 'move', 'sysop', '0', NULL, 'infinity', '22');
INSERT INTO mw_page_restrictions VALUES('17', 'edit', 'sysop', '0', NULL, 'infinity', '23');
INSERT INTO mw_page_restrictions VALUES('17', 'move', 'sysop', '0', NULL, 'infinity', '24');
INSERT INTO mw_page_restrictions VALUES('19', 'edit', 'sysop', '0', NULL, 'infinity', '17');
INSERT INTO mw_page_restrictions VALUES('19', 'move', 'sysop', '0', NULL, 'infinity', '18');
INSERT INTO mw_page_restrictions VALUES('20', 'edit', 'sysop', '0', NULL, 'infinity', '25');
INSERT INTO mw_page_restrictions VALUES('20', 'move', 'sysop', '0', NULL, 'infinity', '26');
INSERT INTO mw_page_restrictions VALUES('23', 'edit', 'sysop', '0', NULL, 'infinity', '27');
INSERT INTO mw_page_restrictions VALUES('23', 'move', 'sysop', '0', NULL, 'infinity', '28');
INSERT INTO mw_page_restrictions VALUES('24', 'edit', 'sysop', '0', NULL, 'infinity', '29');
INSERT INTO mw_page_restrictions VALUES('24', 'move', 'sysop', '0', NULL, 'infinity', '30');
INSERT INTO mw_page_restrictions VALUES('25', 'edit', 'sysop', '0', NULL, 'infinity', '31');
INSERT INTO mw_page_restrictions VALUES('25', 'move', 'sysop', '0', NULL, 'infinity', '32');
INSERT INTO mw_page_restrictions VALUES('26', 'edit', 'sysop', '0', NULL, 'infinity', '33');
INSERT INTO mw_page_restrictions VALUES('26', 'move', 'sysop', '0', NULL, 'infinity', '34');
INSERT INTO mw_page_restrictions VALUES('28', 'edit', 'sysop', '0', NULL, 'infinity', '7');
INSERT INTO mw_page_restrictions VALUES('28', 'move', 'sysop', '0', NULL, 'infinity', '8');
INSERT INTO mw_page_restrictions VALUES('30', 'edit', 'sysop', '0', NULL, 'infinity', '9');
INSERT INTO mw_page_restrictions VALUES('30', 'move', 'sysop', '0', NULL, 'infinity', '10');
INSERT INTO mw_page_restrictions VALUES('33', 'edit', 'sysop', '0', NULL, 'infinity', '11');
INSERT INTO mw_page_restrictions VALUES('33', 'move', 'sysop', '0', NULL, 'infinity', '12');
INSERT INTO mw_page_restrictions VALUES('34', 'edit', 'sysop', '0', NULL, 'infinity', '43');
INSERT INTO mw_page_restrictions VALUES('34', 'move', 'sysop', '0', NULL, 'infinity', '44');
INSERT INTO mw_page_restrictions VALUES('35', 'edit', 'sysop', '0', NULL, 'infinity', '13');
INSERT INTO mw_page_restrictions VALUES('35', 'move', 'sysop', '0', NULL, 'infinity', '14');
INSERT INTO mw_page_restrictions VALUES('37', 'edit', 'sysop', '0', NULL, 'infinity', '15');
INSERT INTO mw_page_restrictions VALUES('37', 'move', 'sysop', '0', NULL, 'infinity', '16');
INSERT INTO mw_page_restrictions VALUES('38', 'edit', 'sysop', '0', NULL, 'infinity', '45');
INSERT INTO mw_page_restrictions VALUES('38', 'move', 'sysop', '0', NULL, 'infinity', '46');
INSERT INTO mw_page_restrictions VALUES('39', 'edit', 'sysop', '0', NULL, 'infinity', '37');
INSERT INTO mw_page_restrictions VALUES('39', 'move', 'sysop', '0', NULL, 'infinity', '38');
INSERT INTO mw_page_restrictions VALUES('43', 'edit', 'sysop', '0', NULL, 'infinity', '41');
INSERT INTO mw_page_restrictions VALUES('43', 'move', 'sysop', '0', NULL, 'infinity', '42');
INSERT INTO mw_page_restrictions VALUES('44', 'edit', 'sysop', '0', NULL, 'infinity', '39');
INSERT INTO mw_page_restrictions VALUES('44', 'move', 'sysop', '0', NULL, 'infinity', '40');



DROP TABLE IF EXISTS mw_pagelinks;
CREATE TABLE `mw_pagelinks` (
  `pl_from` int(10) unsigned NOT NULL default '0',
  `pl_namespace` int(11) NOT NULL default '0',
  `pl_title` varbinary(255) NOT NULL default '',
  UNIQUE KEY `pl_from` (`pl_from`,`pl_namespace`,`pl_title`),
  KEY `pl_namespace` (`pl_namespace`,`pl_title`,`pl_from`)
) ENGINE=InnoDB DEFAULT CHARSET=binary;

INSERT INTO mw_pagelinks VALUES('1', '0', 'Administrators');
INSERT INTO mw_pagelinks VALUES('1', '0', 'King_of_the_Back_Alley');
INSERT INTO mw_pagelinks VALUES('1', '0', 'SoapWiki');
INSERT INTO mw_pagelinks VALUES('1', '0', 'TeamSpeak');
INSERT INTO mw_pagelinks VALUES('5', '0', 'Bath_EP');
INSERT INTO mw_pagelinks VALUES('5', '0', 'King_of_the_Back_Alley');
INSERT INTO mw_pagelinks VALUES('5', '0', 'Lunar_Flare');
INSERT INTO mw_pagelinks VALUES('7', '0', 'Administrators');
INSERT INTO mw_pagelinks VALUES('7', '0', 'Lucent');
INSERT INTO mw_pagelinks VALUES('7', '0', 'Siucune');
INSERT INTO mw_pagelinks VALUES('7', '0', 'TeamSpeak');
INSERT INTO mw_pagelinks VALUES('11', '10', 'Documentation/docname');
INSERT INTO mw_pagelinks VALUES('11', '10', 'Documentation/sandbox');
INSERT INTO mw_pagelinks VALUES('11', '10', 'Documentation/testcases');
INSERT INTO mw_pagelinks VALUES('13', '10', 'Documentation/docname');
INSERT INTO mw_pagelinks VALUES('13', '10', 'Infobox_Person/sandbox');
INSERT INTO mw_pagelinks VALUES('13', '10', 'Infobox_Person/testcases');
INSERT INTO mw_pagelinks VALUES('16', '0', 'Geo_microformat');
INSERT INTO mw_pagelinks VALUES('16', '2', 'Daniel');
INSERT INTO mw_pagelinks VALUES('16', '8', 'Common.js');
INSERT INTO mw_pagelinks VALUES('16', '10', 'Audio');
INSERT INTO mw_pagelinks VALUES('16', '10', 'Columns');
INSERT INTO mw_pagelinks VALUES('16', '10', 'Coord/link');
INSERT INTO mw_pagelinks VALUES('16', '10', 'IPA_fonts');
INSERT INTO mw_pagelinks VALUES('16', '10', 'Lang');
INSERT INTO mw_pagelinks VALUES('16', '10', 'Listen');
INSERT INTO mw_pagelinks VALUES('16', '10', 'Multi-listen_start');
INSERT INTO mw_pagelinks VALUES('16', '10', 'Multi-video_start');
INSERT INTO mw_pagelinks VALUES('16', '10', 'Ref');
INSERT INTO mw_pagelinks VALUES('16', '10', 'Tnavbar');
INSERT INTO mw_pagelinks VALUES('16', '10', 'Unicode_fonts');
INSERT INTO mw_pagelinks VALUES('16', '10', 'Video');
INSERT INTO mw_pagelinks VALUES('17', '10', 'Documentation/docname');
INSERT INTO mw_pagelinks VALUES('17', '10', 'Infobox/sandbox');
INSERT INTO mw_pagelinks VALUES('17', '10', 'Infobox/testcases');
INSERT INTO mw_pagelinks VALUES('18', '10', 'Tnavbar');
INSERT INTO mw_pagelinks VALUES('19', '10', 'Documentation/docname');
INSERT INTO mw_pagelinks VALUES('19', '10', 'Pp-template/sandbox');
INSERT INTO mw_pagelinks VALUES('19', '10', 'Pp-template/testcases');
INSERT INTO mw_pagelinks VALUES('20', '10', 'Documentation/docname');
INSERT INTO mw_pagelinks VALUES('20', '10', 'Mbox');
INSERT INTO mw_pagelinks VALUES('20', '10', 'Pp-meta/sandbox');
INSERT INTO mw_pagelinks VALUES('20', '10', 'Pp-meta/testcases');
INSERT INTO mw_pagelinks VALUES('23', '10', 'Documentation/docname');
INSERT INTO mw_pagelinks VALUES('23', '10', 'Mbox/sandbox');
INSERT INTO mw_pagelinks VALUES('23', '10', 'Mbox/testcases');
INSERT INTO mw_pagelinks VALUES('23', '10', 'Namespace_detect');
INSERT INTO mw_pagelinks VALUES('24', '10', 'Documentation/docname');
INSERT INTO mw_pagelinks VALUES('24', '10', 'Namespace_detect/sandbox');
INSERT INTO mw_pagelinks VALUES('24', '10', 'Namespace_detect/testcases');
INSERT INTO mw_pagelinks VALUES('25', '10', 'Ambox/core');
INSERT INTO mw_pagelinks VALUES('25', '10', 'Ambox/sandbox');
INSERT INTO mw_pagelinks VALUES('25', '10', 'Ambox/testcases');
INSERT INTO mw_pagelinks VALUES('25', '10', 'Documentation/docname');
INSERT INTO mw_pagelinks VALUES('26', '10', 'Ambox/core/sandbox');
INSERT INTO mw_pagelinks VALUES('26', '10', 'Ambox/core/testcases');
INSERT INTO mw_pagelinks VALUES('26', '10', 'Documentation/docname');
INSERT INTO mw_pagelinks VALUES('27', '0', 'Lucent');
INSERT INTO mw_pagelinks VALUES('31', '0', 'Lucent');
INSERT INTO mw_pagelinks VALUES('32', '0', 'Lucent');
INSERT INTO mw_pagelinks VALUES('33', '0', 'Back_Alley');
INSERT INTO mw_pagelinks VALUES('33', '0', 'Daniel');
INSERT INTO mw_pagelinks VALUES('33', '0', 'English_language');
INSERT INTO mw_pagelinks VALUES('33', '0', 'OrgyPedia');
INSERT INTO mw_pagelinks VALUES('33', '10', 'Main_Page_banner');
INSERT INTO mw_pagelinks VALUES('34', '0', 'King_of_the_Back_Alley');
INSERT INTO mw_pagelinks VALUES('39', '0', '');
INSERT INTO mw_pagelinks VALUES('39', '0', 'Becoming_a_SoapWiki_Admin');
INSERT INTO mw_pagelinks VALUES('39', '0', 'Bugzilla:12925');
INSERT INTO mw_pagelinks VALUES('39', '0', 'Flag_An_Article');
INSERT INTO mw_pagelinks VALUES('39', '0', 'Game_Master');
INSERT INTO mw_pagelinks VALUES('39', '0', 'M:Steward_requests/Permissions');
INSERT INTO mw_pagelinks VALUES('39', '0', 'M:Stewards');
INSERT INTO mw_pagelinks VALUES('39', '0', 'Meta:');
INSERT INTO mw_pagelinks VALUES('39', '0', 'Password_strength');
INSERT INTO mw_pagelinks VALUES('39', '0', 'Strong_password');
INSERT INTO mw_pagelinks VALUES('39', '0', 'WP:ADMINSOCK');
INSERT INTO mw_pagelinks VALUES('39', '0', 'WP:ANI');
INSERT INTO mw_pagelinks VALUES('39', '0', 'WP:APPEAL');
INSERT INTO mw_pagelinks VALUES('39', '0', 'WP:ARBCOM');
INSERT INTO mw_pagelinks VALUES('39', '0', 'WP:CRAT');
INSERT INTO mw_pagelinks VALUES('39', '0', 'WP:DR');
INSERT INTO mw_pagelinks VALUES('39', '0', 'WP:RFAR');
INSERT INTO mw_pagelinks VALUES('39', '0', 'WP:RFC/ADMIN');
INSERT INTO mw_pagelinks VALUES('39', '0', 'WP:SOCK');
INSERT INTO mw_pagelinks VALUES('39', '0', 'WP:UNINVOLVED');
INSERT INTO mw_pagelinks VALUES('39', '0', 'Wheel_war');
INSERT INTO mw_pagelinks VALUES('39', '2', 'Jimbo_Wales');
INSERT INTO mw_pagelinks VALUES('39', '10', 'Green');
INSERT INTO mw_pagelinks VALUES('39', '10', 'Main_article');
INSERT INTO mw_pagelinks VALUES('39', '10', 'Ndash');
INSERT INTO mw_pagelinks VALUES('39', '10', 'See');
INSERT INTO mw_pagelinks VALUES('39', '10', 'Shortcut');
INSERT INTO mw_pagelinks VALUES('39', '10', 'Tlx');
INSERT INTO mw_pagelinks VALUES('39', '14', 'Administrative_backlog');
INSERT INTO mw_pagelinks VALUES('39', '14', 'Candidates_for_speedy_deletion');
INSERT INTO mw_pagelinks VALUES('42', '0', 'Administrators');
INSERT INTO mw_pagelinks VALUES('43', '10', 'Rellink');
INSERT INTO mw_pagelinks VALUES('43', '10', 'Template_doc');
INSERT INTO mw_pagelinks VALUES('44', '10', 'Documentation/docname');
INSERT INTO mw_pagelinks VALUES('44', '10', 'Rellink/sandbox');
INSERT INTO mw_pagelinks VALUES('44', '10', 'Rellink/testcases');
INSERT INTO mw_pagelinks VALUES('47', '10', 'Documentation/docname');
INSERT INTO mw_pagelinks VALUES('47', '10', 'Infobox_Guild/sandbox');
INSERT INTO mw_pagelinks VALUES('47', '10', 'Infobox_Guild/testcases');
INSERT INTO mw_pagelinks VALUES('54', '0', 'Bath_EP_Headphones');
INSERT INTO mw_pagelinks VALUES('54', '0', 'Lucent');



DROP TABLE IF EXISTS mw_protected_titles;
CREATE TABLE `mw_protected_titles` (
  `pt_namespace` int(11) NOT NULL,
  `pt_title` varbinary(255) NOT NULL,
  `pt_user` int(10) unsigned NOT NULL,
  `pt_reason` tinyblob,
  `pt_timestamp` binary(14) NOT NULL,
  `pt_expiry` varbinary(14) NOT NULL default '',
  `pt_create_perm` varbinary(60) NOT NULL,
  PRIMARY KEY  (`pt_namespace`,`pt_title`),
  KEY `pt_timestamp` (`pt_timestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=binary;




DROP TABLE IF EXISTS mw_querycache;
CREATE TABLE `mw_querycache` (
  `qc_type` varbinary(32) NOT NULL,
  `qc_value` int(10) unsigned NOT NULL default '0',
  `qc_namespace` int(11) NOT NULL default '0',
  `qc_title` varbinary(255) NOT NULL default '',
  KEY `qc_type` (`qc_type`,`qc_value`)
) ENGINE=InnoDB DEFAULT CHARSET=binary;




DROP TABLE IF EXISTS mw_querycache_info;
CREATE TABLE `mw_querycache_info` (
  `qci_type` varbinary(32) NOT NULL default '',
  `qci_timestamp` binary(14) NOT NULL default '19700101000000',
  UNIQUE KEY `qci_type` (`qci_type`)
) ENGINE=InnoDB DEFAULT CHARSET=binary;




DROP TABLE IF EXISTS mw_querycachetwo;
CREATE TABLE `mw_querycachetwo` (
  `qcc_type` varbinary(32) NOT NULL,
  `qcc_value` int(10) unsigned NOT NULL default '0',
  `qcc_namespace` int(11) NOT NULL default '0',
  `qcc_title` varbinary(255) NOT NULL default '',
  `qcc_namespacetwo` int(11) NOT NULL default '0',
  `qcc_titletwo` varbinary(255) NOT NULL default '',
  KEY `qcc_type` (`qcc_type`,`qcc_value`),
  KEY `qcc_title` (`qcc_type`,`qcc_namespace`,`qcc_title`),
  KEY `qcc_titletwo` (`qcc_type`,`qcc_namespacetwo`,`qcc_titletwo`)
) ENGINE=InnoDB DEFAULT CHARSET=binary;




DROP TABLE IF EXISTS mw_recentchanges;
CREATE TABLE `mw_recentchanges` (
  `rc_id` int(11) NOT NULL auto_increment,
  `rc_timestamp` varbinary(14) NOT NULL default '',
  `rc_cur_time` varbinary(14) NOT NULL default '',
  `rc_user` int(10) unsigned NOT NULL default '0',
  `rc_user_text` varbinary(255) NOT NULL,
  `rc_namespace` int(11) NOT NULL default '0',
  `rc_title` varbinary(255) NOT NULL default '',
  `rc_comment` varbinary(255) NOT NULL default '',
  `rc_minor` tinyint(3) unsigned NOT NULL default '0',
  `rc_bot` tinyint(3) unsigned NOT NULL default '0',
  `rc_new` tinyint(3) unsigned NOT NULL default '0',
  `rc_cur_id` int(10) unsigned NOT NULL default '0',
  `rc_this_oldid` int(10) unsigned NOT NULL default '0',
  `rc_last_oldid` int(10) unsigned NOT NULL default '0',
  `rc_type` tinyint(3) unsigned NOT NULL default '0',
  `rc_moved_to_ns` tinyint(3) unsigned NOT NULL default '0',
  `rc_moved_to_title` varbinary(255) NOT NULL default '',
  `rc_patrolled` tinyint(3) unsigned NOT NULL default '0',
  `rc_ip` varbinary(40) NOT NULL default '',
  `rc_old_len` int(11) default NULL,
  `rc_new_len` int(11) default NULL,
  `rc_deleted` tinyint(3) unsigned NOT NULL default '0',
  `rc_logid` int(10) unsigned NOT NULL default '0',
  `rc_log_type` varbinary(255) default NULL,
  `rc_log_action` varbinary(255) default NULL,
  `rc_params` blob,
  PRIMARY KEY  (`rc_id`),
  KEY `rc_timestamp` (`rc_timestamp`),
  KEY `rc_namespace_title` (`rc_namespace`,`rc_title`),
  KEY `rc_cur_id` (`rc_cur_id`),
  KEY `new_name_timestamp` (`rc_new`,`rc_namespace`,`rc_timestamp`),
  KEY `rc_ip` (`rc_ip`),
  KEY `rc_ns_usertext` (`rc_namespace`,`rc_user_text`),
  KEY `rc_user_text` (`rc_user_text`,`rc_timestamp`)
) ENGINE=InnoDB AUTO_INCREMENT=204 DEFAULT CHARSET=binary;

INSERT INTO mw_recentchanges VALUES('1', '20090318205509', '20090318205509', '1', 'Daniel', '2', 'Daniel', 'Created page with \'Hello,  You have reached this page.\'', '0', '0', '1', '2', '2', '0', '1', '0', '', '1', '99.252.16.109', '0', '35', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('2', '20090318205624', '20090318205624', '2', 'Spirit', '2', 'Spirit', '', '0', '0', '0', '0', '0', '0', '3', '0', '', '1', '98.221.81.205', NULL, NULL, '0', '2', 'newusers', 'create', '2');
INSERT INTO mw_recentchanges VALUES('3', '20090318210453', '20090318210453', '1', 'Daniel', '2', 'Spirit', '', '0', '0', '0', '0', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '3', 'rights', 'rights', '\nsysop');
INSERT INTO mw_recentchanges VALUES('4', '20090318211602', '20090318211602', '3', 'Test', '2', 'Test', '', '0', '0', '0', '0', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '4', 'newusers', 'create', '3');
INSERT INTO mw_recentchanges VALUES('5', '20090318211726', '20090318211726', '1', 'Daniel', '2', 'Test', '', '0', '0', '0', '0', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '5', 'rights', 'rights', '\nsysop');
INSERT INTO mw_recentchanges VALUES('6', '20090318215414', '20090318215414', '1', 'Daniel', '4', 'General_disclaimer', 'Created page with \'The staff at SoapRO make no guarantee that the information contained within the wiki articles is fully accurate. If you believe that false information has been supplied to us, yo...\'', '0', '0', '1', '3', '3', '0', '1', '0', '', '1', '99.252.16.109', '0', '341', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('7', '20090318215553', '20090318215553', '1', 'Daniel', '0', 'Main_Page', '', '0', '0', '0', '1', '4', '1', '0', '0', '', '1', '99.252.16.109', '449', '190', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('8', '20090318215609', '20090318215609', '1', 'Daniel', '0', 'Main_Page', '', '0', '0', '0', '1', '5', '4', '0', '0', '', '1', '99.252.16.109', '190', '194', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('10', '20090318220120', '20090318220120', '2', 'Spirit', '2', 'Spirit', 'content was: \'{{pp-semi-vandalism|small=yes}} {{Infobox Musical artist |Name               = Spirit |Img                =  |Background         = server_owner |Birth_name         ...\' (and the only contributor was \'[[Special:Contributions/Spirit|Spirit]]\')', '0', '0', '0', '0', '0', '0', '3', '0', '', '1', '98.221.81.205', NULL, NULL, '0', '10', 'delete', 'delete', '');
INSERT INTO mw_recentchanges VALUES('11', '20090318220750', '20090318220750', '4', 'Siucune', '2', 'Siucune', '', '0', '0', '0', '0', '0', '0', '3', '0', '', '1', '205.209.230.207', NULL, NULL, '0', '11', 'newusers', 'create', '4');
INSERT INTO mw_recentchanges VALUES('12', '20090318221939', '20090318221939', '1', 'Daniel', '2', 'Spirit', '', '0', '0', '0', '0', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '12', 'rights', 'rights', 'sysop\nsysop, bureaucrat');
INSERT INTO mw_recentchanges VALUES('13', '20090318222009', '20090318222009', '1', 'Daniel', '2', 'Daniel', '', '0', '0', '0', '2', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '13', 'rights', 'rights', 'bureaucrat, sysop\nbureaucrat');
INSERT INTO mw_recentchanges VALUES('14', '20090318222029', '20090318222029', '1', 'Daniel', '2', 'Daniel', '', '0', '0', '0', '2', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '14', 'rights', 'rights', 'bureaucrat\nbureaucrat, sysop');
INSERT INTO mw_recentchanges VALUES('15', '20090319192755', '20090319192755', '1', 'Daniel', '2', 'Test', '', '0', '0', '0', '0', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '15', 'rights', 'rights', 'sysop\n');
INSERT INTO mw_recentchanges VALUES('16', '20090319192811', '20090319192811', '1', 'Daniel', '2', 'Siucune', '', '0', '0', '0', '0', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '16', 'rights', 'rights', '\nsysop');
INSERT INTO mw_recentchanges VALUES('17', '20090319202427', '20090319202427', '5', 'Lucent', '2', 'Lucent', '', '0', '0', '0', '0', '0', '0', '3', '0', '', '1', '99.237.124.116', NULL, NULL, '0', '17', 'newusers', 'create', '5');
INSERT INTO mw_recentchanges VALUES('18', '20090319210641', '20090319210641', '5', 'Lucent', '0', 'Lucent', 'Created page with \'\'\'\'Lucent\'\'\' (aka \'\'Nightshine\'\') is one of the eight original members of SoapRO, the leader of the guild [[Lunar Flare]], and a contributing member to SoapRO\'s society.  He deve...\'', '0', '0', '1', '5', '7', '0', '1', '0', '', '0', '99.237.124.116', '0', '393', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('19', '20090319210920', '20090319210920', '5', 'Lucent', '0', 'Sandbox', 'Created page with \'This is a fuckaround page for testing.\'', '0', '0', '1', '6', '8', '0', '1', '0', '', '0', '99.237.124.116', '0', '38', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('20', '20090319214412', '20090319214412', '5', 'Lucent', '0', 'Lucent', '', '0', '0', '0', '5', '9', '7', '0', '0', '', '0', '99.237.124.116', '393', '782', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('21', '20090319220242', '20090319220242', '1', 'Daniel', '0', 'Daniel', 'Created page with \'{{Userinfo|   |username=Daniel  |name=Daniel  |userid=2  |born=August 15  |gender=male   |location=Moncton  |other=Here  }}\'', '0', '0', '1', '7', '10', '0', '1', '0', '', '1', '99.252.16.109', '0', '123', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('22', '20090319221054', '20090319221054', '1', 'Daniel', '10', 'Userinfo', 'Created page with \'{| cellpadding=0 cellspacing=0 border=1 align=right style=\"font-family: verdana, sans-serif; margin: 0 0 1em 1em; font-size: 10px; background-color: #f7f8ff; border:1px solid #88...\'', '0', '0', '1', '8', '11', '0', '1', '0', '', '1', '99.252.16.109', '0', '841', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('23', '20090319221320', '20090319221320', '1', 'Daniel', '10', 'Userinfo', 'Template', '0', '0', '0', '8', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '20', 'protect', 'protect', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n');
INSERT INTO mw_recentchanges VALUES('24', '20090319221458', '20090319221458', '1', 'Daniel', '10', 'Userinfo', '', '0', '0', '0', '8', '13', '12', '0', '0', '', '1', '99.252.16.109', '841', '837', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('25', '20090319221950', '20090319221950', '6', 'Ramzah', '2', 'Ramzah', '', '0', '0', '0', '0', '0', '0', '3', '0', '', '1', '82.59.174.237', NULL, NULL, '0', '22', 'newusers', 'create', '6');
INSERT INTO mw_recentchanges VALUES('27', '20090319222845', '20090319222845', '1', 'Daniel', '10', 'Infobox_Person', 'content was: \'{{Infobox Person |name        =  |image       =  |caption     =  |birth_date  = {{Birth date|YYYY|MM|DD}} |birth_place =  |death_date  = <!-- {{Death date and age|Y...\' (and the only contributor was \'[[Special:Contributions/Daniel|Daniel]]\')', '0', '0', '0', '0', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '24', 'delete', 'delete', '');
INSERT INTO mw_recentchanges VALUES('29', '20090319223153', '20090319223153', '2', 'Spirit', '10', 'Userinfo', '', '0', '0', '0', '8', '16', '13', '0', '0', '', '1', '98.221.81.205', '837', '1003', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('30', '20090319223221', '20090319223221', '2', 'Spirit', '10', 'Userinfo', '', '0', '0', '0', '8', '17', '16', '0', '0', '', '1', '98.221.81.205', '1003', '987', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('31', '20090319223300', '20090319223300', '1', 'Daniel', '10', 'Infobox_Person', 'content was: \'{{Infobox Person |name        =  |image       =  |caption     =  |birth_date  = {{Birth date|YYYY|MM|DD}} |birth_place =  |death_date  = <!-- {{Death date and age|Y...\' (and the only contributor was \'[[Special:Contributions/Daniel|Daniel]]\')', '0', '0', '0', '0', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '28', 'delete', 'delete', '');
INSERT INTO mw_recentchanges VALUES('32', '20090319223422', '20090319223422', '2', 'Spirit', '10', 'Userinfo', 'Undo revision 17 by [[Special:Contributions/Spirit|Spirit]] ([[User talk:Spirit|Talk]])', '0', '0', '0', '8', '18', '17', '0', '0', '', '1', '98.221.81.205', '987', '1003', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('33', '20090319223529', '20090319223529', '2', 'Spirit', '10', 'Userinfo', 'Reverted edits by [[Special:Contributions/Spirit|Spirit]] ([[User talk:Spirit|Talk]]) to last version by [[User:Daniel|Daniel]]', '1', '0', '0', '8', '19', '18', '0', '0', '', '1', '98.221.81.205', '1003', '837', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('34', '20090319223733', '20090319223733', '1', 'Daniel', '10', 'Documentation', 'Created page with \'<div class=\"template-documentation\"><!--  These are the literal class definitions in common.css:   /* For template documentation */ .template-documentation {     clear: both;    ...\'', '0', '0', '1', '11', '20', '0', '1', '0', '', '1', '99.252.16.109', '0', '2836', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('36', '20090319223806', '20090319223806', '1', 'Daniel', '10', 'Infobox_Person', 'Created page with \'{{ infobox | bodyclass  = biography vcard vevent | bodystyle  = width:{{#if:{{{box_width|}}}|{{{box_width}}} |22em}}; font-size:95%; text-align:left; | above      = \'\'\'{{{name|{{...\'', '0', '0', '1', '13', '22', '0', '1', '0', '', '1', '99.252.16.109', '0', '3920', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('38', '20090319223937', '20090319223937', '1', 'Daniel', '10', 'Pp-template', 'content was: \'<includeonly>{{pp-meta |type={{#switch:{{{demolevel|{{PROTECTIONLEVEL:edit}}}}}    |semi    |autoconfirmed=semi    |administrator    |full    |sysop=indef    |#defa...\' (and the only contributor was \'[[Special:Contributions/Daniel|Daniel]]\')', '0', '0', '0', '0', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '35', 'delete', 'delete', '');
INSERT INTO mw_recentchanges VALUES('40', '20090319224325', '20090319224325', '1', 'Daniel', '0', 'Test', 'content was: \'{{Infobox Person |name        =  |image       =  |caption     =  |birth_date  = {{Birth date|YYYY|MM|DD}} |birth_place =  |death_date  = <!-- {{Death date and age|Y...\' (and the only contributor was \'[[Special:Contributions/Daniel|Daniel]]\')', '0', '0', '0', '0', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '37', 'delete', 'delete', '');
INSERT INTO mw_recentchanges VALUES('42', '20090319233631', '20090319233631', '1', 'Daniel', '10', 'Infobox', 'content was: \'{{{!}} class=\"infobox {{{bodyclass|}}}\" cellspacing=\"5\" style=\"width: 22em; text-align: left; font-size: 88%; line-height: 1.5em; {{{bodystyle|}}}\"<!--  Caption -->...\' (and the only contributor was \'[[Special:Contributions/Daniel|Daniel]]\')', '0', '0', '0', '0', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '39', 'delete', 'delete', '');
INSERT INTO mw_recentchanges VALUES('43', '20090320000038', '20090320000038', '1', 'Daniel', '8', 'Common.css', 'Created page with \'/* CSS placed here will be applied to all skins */  /* Infobox template style */ .infobox {     border: 1px solid #aaa;     background-color: #f9f9f9;     color: black;     margi...\'', '0', '0', '1', '16', '26', '0', '1', '0', '', '1', '99.252.16.109', '0', '1161', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('44', '20090320000451', '20090320000451', '1', 'Daniel', '0', 'Daniel', '', '0', '0', '0', '7', '27', '10', '0', '0', '', '1', '99.252.16.109', '123', '737', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('45', '20090320000514', '20090320000514', '1', 'Daniel', '10', 'Infobox', '2 revisions restored', '0', '0', '0', '17', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '42', 'delete', 'restore', '');
INSERT INTO mw_recentchanges VALUES('46', '20090320000616', '20090320000616', '1', 'Daniel', '10', 'Infobox', 'Replaced content with \'This template is currently unavailable.\'', '0', '0', '0', '17', '28', '25', '0', '0', '', '1', '99.252.16.109', '38864', '39', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('47', '20090320001913', '20090320001913', '1', 'Daniel', '8', 'Common.css', '', '0', '0', '0', '16', '29', '26', '0', '0', '', '1', '99.252.16.109', '1161', '29369', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('48', '20090320002634', '20090320002634', '1', 'Daniel', '10', 'Infobox', '', '0', '0', '0', '17', '30', '28', '0', '0', '', '1', '99.252.16.109', '39', '36642', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('49', '20090320002835', '20090320002835', '1', 'Daniel', '10', 'Infobox', '', '0', '0', '0', '17', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '46', 'protect', 'protect', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n');
INSERT INTO mw_recentchanges VALUES('50', '20090320003807', '20090320003807', '1', 'Daniel', '10', 'Infobox', 'Temporary unprotection', '0', '0', '0', '17', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '47', 'protect', 'unprotect', '');
INSERT INTO mw_recentchanges VALUES('51', '20090320003814', '20090320003814', '7', 'Chzz', '2', 'Chzz', '', '0', '0', '0', '0', '0', '0', '3', '0', '', '1', '94.196.165.4', NULL, NULL, '0', '48', 'newusers', 'create', '7');
INSERT INTO mw_recentchanges VALUES('52', '20090320004020', '20090320004020', '7', 'Chzz', '2', 'Chzz/infoboxtest', 'z', '0', '0', '1', '18', '33', '0', '1', '0', '', '0', '94.196.165.4', '0', '612', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('53', '20090320004042', '20090320004042', '1', 'Daniel', '0', 'Daniel', '', '0', '0', '0', '7', '34', '27', '0', '0', '', '1', '99.252.16.109', '737', '123', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('54', '20090320234608', '20090320234608', '0', '99.252.16.109', '10', 'Pp-template', 'Created page with \'<includeonly>{{pp-meta |type={{#switch:{{{demolevel|{{PROTECTIONLEVEL:edit}}}}}    |semi    |autoconfirmed=semi    |administrator    |full    |sysop=indef    |#default=indef<!--f...\'', '0', '0', '1', '19', '35', '0', '1', '0', '', '0', '99.252.16.109', '0', '2604', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('55', '20090320234829', '20090320234829', '0', '99.252.16.109', '10', 'Pp-meta', 'Created page with \'{{#ifeq:{{#switch:{{lc:{{{type}}}}}   |move=<!--  -->{{#ifeq:       {{#switch:{{lc:{{{demolevel|undefined}}}}}         |semi         |autoconfirmed=autoconfirmed         |adminis...\'', '0', '0', '1', '20', '36', '0', '1', '0', '', '0', '99.252.16.109', '0', '7122', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('57', '20090321000129', '20090321000129', '5', 'Lucent', '0', 'Lucent', '', '0', '0', '0', '5', '38', '9', '0', '0', '', '0', '99.237.124.116', '782', '800', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('58', '20090321000137', '20090321000137', '5', 'Lucent', '0', 'Lucent', '', '0', '0', '0', '5', '39', '38', '0', '0', '', '0', '99.237.124.116', '800', '801', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('60', '20090321000312', '20090321000312', '5', 'Lucent', '0', 'Lucent', '', '0', '0', '0', '5', '41', '39', '0', '0', '', '0', '99.237.124.116', '801', '803', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('61', '20090321000402', '20090321000402', '5', 'Lucent', '0', 'Lucent', '', '0', '0', '0', '5', '42', '41', '0', '0', '', '0', '99.237.124.116', '803', '876', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('62', '20090321000514', '20090321000514', '5', 'Lucent', '0', 'Lucent', '', '0', '0', '0', '5', '43', '42', '0', '0', '', '0', '99.237.124.116', '876', '836', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('63', '20090321000736', '20090321000736', '1', 'Daniel', '0', 'Daniel', '', '0', '0', '0', '7', '44', '34', '0', '0', '', '1', '99.252.16.109', '123', '243', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('64', '20090321000753', '20090321000753', '5', 'Lucent', '0', 'Lucent', '', '0', '0', '0', '5', '45', '43', '0', '0', '', '0', '99.237.124.116', '836', '837', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('65', '20090321001013', '20090321001013', '1', 'Daniel', '0', 'FUCKING_WORKS', 'content was: \'{{Infobox |name    = Infobox/doc |title   =  |image   = [[Image:example.png|200px]] |caption = Caption for example.png  |headerstyle  = background:#cc...\' (and the only contributor was \'[[Special:Contributions/99.252.16.109|99.252.16.109]]\')', '0', '0', '0', '0', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '52', 'delete', 'delete', '');
INSERT INTO mw_recentchanges VALUES('66', '20090321001042', '20090321001042', '1', 'Daniel', '0', 'Bill_Gates', 'content was: \'{{Infobox Person |name        = Bill Gates |image       = Bill Gates 2004 cr.jpg |image_size  = 170px |caption     = At an IT forum in Denmark, 2004 |birth_name  = ...\' (and the only contributor was \'[[Special:Contributions/Daniel|Daniel]]\')', '0', '0', '0', '0', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '53', 'delete', 'delete', '');
INSERT INTO mw_recentchanges VALUES('67', '20090321001256', '20090321001256', '1', 'Daniel', '0', 'Daniel', '', '0', '0', '0', '7', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '54', 'protect', 'protect', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n');
INSERT INTO mw_recentchanges VALUES('68', '20090321002210', '20090321002210', '1', 'Daniel', '0', 'Daniel', '', '0', '0', '0', '7', '47', '46', '0', '0', '', '1', '99.252.16.109', '243', '269', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('69', '20090321002243', '20090321002243', '1', 'Daniel', '10', 'Mbox', 'Created page with \'{{   {{namespace detect    | demospace = {{{demospace|}}}   | main      = ambox   | talk      = tmbox   | file      = imbox   | category  = cmbox   | other     = ombox   }} | typ...\'', '0', '0', '1', '23', '48', '0', '1', '0', '', '1', '99.252.16.109', '0', '624', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('70', '20090321002400', '20090321002400', '1', 'Daniel', '10', 'Namespace_detect', 'Created page with \'{{#switch:   {{lc:               <!--Lower case the result-->     <!--If no or empty \"demospace\" parameter then detect namespace-->     {{#if:{{{demospace|}}}      | {{{demospace...\'', '0', '0', '1', '24', '49', '0', '1', '0', '', '1', '99.252.16.109', '0', '1132', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('71', '20090321002428', '20090321002428', '1', 'Daniel', '10', 'Ambox', 'Created page with \'{{#switch:{{{small|}}} | left =    {{ambox/core   | small      = left   | type       = {{{type|}}}   | image      = {{#if:{{{smallimage|}}}                  | {{{smallimage}}}   ...\'', '0', '0', '1', '25', '50', '0', '1', '0', '', '1', '99.252.16.109', '0', '919', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('72', '20090321002435', '20090321002435', '2', 'Spirit', '0', 'Lucent', '', '0', '0', '0', '5', '51', '45', '0', '0', '', '1', '98.221.81.205', '837', '835', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('73', '20090321002457', '20090321002457', '1', 'Daniel', '10', 'Ambox/core', 'Created page with \'<table class=\"metadata plainlinks ambox {{#switch:{{{small|}}} | left = mbox-small-left }} {{#switch:{{{type|}}} | speedy     = ambox-speedy | delete     = ambox-delete | content...\'', '0', '0', '1', '26', '52', '0', '1', '0', '', '1', '99.252.16.109', '0', '2697', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('74', '20090321002521', '20090321002521', '2', 'Spirit', '0', 'Lucent', '', '0', '0', '0', '5', '53', '51', '0', '0', '', '1', '98.221.81.205', '835', '836', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('75', '20090321002629', '20090321002629', '5', 'Lucent', '0', 'Lucent', '', '1', '0', '0', '5', '54', '53', '0', '0', '', '0', '99.237.124.116', '836', '983', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('76', '20090321002830', '20090321002830', '5', 'Lucent', '0', 'Lucent', '/* Character Profile */ ', '0', '0', '0', '5', '55', '54', '0', '0', '', '0', '99.237.124.116', '983', '807', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('77', '20090321003155', '20090321003155', '1', 'Daniel', '0', 'Daniel', '', '0', '0', '0', '7', '56', '47', '0', '0', '', '1', '99.252.16.109', '269', '517', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('78', '20090321003732', '20090321003732', '5', 'Lucent', '0', 'Lunar_Flare', 'Created page with \'Lunar Flare is the first guild to appear on SoapRO.  Its leader is [[Lucent]].\'', '0', '0', '1', '27', '57', '0', '1', '0', '', '0', '99.237.124.116', '0', '78', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('79', '20090321003900', '20090321003900', '1', 'Daniel', '6', 'Imbox_protection.png', '', '0', '0', '0', '0', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '63', 'upload', 'upload', '');
INSERT INTO mw_recentchanges VALUES('80', '20090321003909', '20090321003909', '1', 'Daniel', '6', 'Imbox_protection.png', '', '0', '0', '0', '28', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '64', 'protect', 'protect', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n');
INSERT INTO mw_recentchanges VALUES('81', '20090321003946', '20090321003946', '1', 'Daniel', '6', 'Ambox_protection.png', '', '0', '0', '0', '0', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '65', 'upload', 'upload', '');
INSERT INTO mw_recentchanges VALUES('82', '20090321004007', '20090321004007', '5', 'Lucent', '0', 'Lunar_Flare', '', '0', '0', '0', '27', '61', '57', '0', '0', '', '0', '99.237.124.116', '78', '82', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('83', '20090321004254', '20090321004254', '5', 'Lucent', '0', 'Lucent', '', '0', '0', '0', '5', '62', '55', '0', '0', '', '0', '99.237.124.116', '807', '806', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('84', '20090321004315', '20090321004315', '1', 'Daniel', '0', 'Daniel', '', '0', '0', '0', '7', '63', '56', '0', '0', '', '1', '99.252.16.109', '517', '622', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('85', '20090321004844', '20090321004844', '1', 'Daniel', '0', 'Daniel', '', '0', '0', '0', '7', '64', '63', '0', '0', '', '1', '99.252.16.109', '622', '651', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('86', '20090321005212', '20090321005212', '2', 'Spirit', '0', 'Spirit', 'Created page with \'{{mbox | type  = protection | style = CSS values | textstyle  = CSS values | text  = \'\'\'WARNING:\'\'\' This page has been locked so that only users with administrator privileges can...\'', '0', '0', '1', '30', '65', '0', '1', '0', '', '1', '98.221.81.205', '0', '396', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('87', '20090321005242', '20090321005242', '2', 'Spirit', '0', 'Spirit', 'High traffic page', '0', '0', '0', '30', '0', '0', '3', '0', '', '1', '98.221.81.205', NULL, NULL, '0', '69', 'protect', 'protect', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n');
INSERT INTO mw_recentchanges VALUES('88', '20090321005334', '20090321005334', '1', 'Daniel', '10', 'Infobox_Person', '', '0', '0', '0', '13', '67', '22', '0', '0', '', '1', '99.252.16.109', '3920', '3972', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('89', '20090321005435', '20090321005435', '1', 'Daniel', '10', 'Infobox_Person', '', '0', '0', '0', '13', '68', '67', '0', '0', '', '1', '99.252.16.109', '3972', '3972', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('90', '20090321005524', '20090321005524', '5', 'Lucent', '0', 'King_of_the_Back_Alley', 'Redirected page to [[Lucent]]', '0', '0', '1', '31', '69', '0', '1', '0', '', '0', '99.237.124.116', '0', '20', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('91', '20090321005621', '20090321005621', '1', 'Daniel', '10', 'Infobox_Person', '', '0', '0', '0', '13', '70', '68', '0', '0', '', '1', '99.252.16.109', '3972', '4028', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('92', '20090321005636', '20090321005636', '5', 'Lucent', '0', 'King_of_the_back_alley', 'Redirected page to [[Lucent]]', '0', '0', '1', '32', '71', '0', '1', '0', '', '0', '99.237.124.116', '0', '20', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('93', '20090321005825', '20090321005825', '1', 'Daniel', '0', 'Daniel', '', '0', '0', '0', '7', '72', '64', '0', '0', '', '1', '99.252.16.109', '651', '616', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('94', '20090321005907', '20090321005907', '1', 'Daniel', '0', 'Daniel', '', '0', '0', '0', '7', '73', '72', '0', '0', '', '1', '99.252.16.109', '616', '655', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('95', '20090321005943', '20090321005943', '1', 'Daniel', '0', 'Daniel', '', '0', '0', '0', '7', '74', '73', '0', '0', '', '1', '99.252.16.109', '655', '565', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('96', '20090321010240', '20090321010240', '1', 'Daniel', '10', 'Infobox_Person', '', '0', '0', '0', '13', '75', '70', '0', '0', '', '1', '99.252.16.109', '4028', '4106', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('97', '20090321010307', '20090321010307', '1', 'Daniel', '0', 'Daniel', '', '0', '0', '0', '7', '76', '74', '0', '0', '', '1', '99.252.16.109', '565', '541', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('98', '20090321010645', '20090321010645', '1', 'Daniel', '0', 'Daniel', '', '0', '0', '0', '7', '77', '76', '0', '0', '', '1', '99.252.16.109', '541', '574', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('99', '20090321011758', '20090321011758', '1', 'Daniel', '10', 'Infobox_Person', '', '0', '0', '0', '13', '78', '75', '0', '0', '', '1', '99.252.16.109', '4106', '4111', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('100', '20090321223653', '20090321223653', '1', 'Daniel', '0', 'Porn', 'Created page with \'<!--        BANNER ACROSS TOP OF PAGE        --> {| id=\"mp-topbanner\" style=\"width:100%; background:#fcfcfc; margin-top:1.2em; border:1px solid #ccc;\" | style=\"width:56%; color:#...\'', '0', '0', '1', '33', '79', '0', '1', '0', '', '1', '99.252.16.109', '0', '4934', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('101', '20090321223747', '20090321223747', '1', 'Daniel', '10', 'Did_you_know', '', '0', '0', '0', '0', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '81', 'protect', 'protect', '[create=sysop]  (indefinite)\n');
INSERT INTO mw_recentchanges VALUES('102', '20090321223817', '20090321223817', '1', 'Daniel', '10', 'Did_you_know', 'Created page with \'Lucent is king of the [[Back Alley]]\'', '0', '0', '1', '34', '80', '0', '1', '0', '', '1', '99.252.16.109', '0', '36', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('103', '20090321224216', '20090321224216', '1', 'Daniel', '0', 'Porn', '', '0', '0', '0', '33', '81', '79', '0', '0', '', '1', '99.252.16.109', '4934', '4314', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('104', '20090321224340', '20090321224340', '1', 'Daniel', '0', 'Porn', '', '0', '0', '0', '33', '82', '81', '0', '0', '', '1', '99.252.16.109', '4314', '4284', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('105', '20090321225409', '20090321225409', '1', 'Daniel', '0', 'Porn', '', '0', '0', '0', '33', '83', '82', '0', '0', '', '1', '99.252.16.109', '4284', '3703', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('106', '20090321225646', '20090321225646', '1', 'Daniel', '0', 'Porn', '', '0', '0', '0', '33', '84', '83', '0', '0', '', '1', '99.252.16.109', '3703', '3779', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('107', '20090321225747', '20090321225747', '1', 'Daniel', '0', 'Porn', '', '0', '0', '0', '33', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '87', 'protect', 'protect', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n');
INSERT INTO mw_recentchanges VALUES('108', '20090321230136', '20090321230136', '1', 'Daniel', '0', 'Porn', '', '0', '0', '0', '33', '86', '85', '0', '0', '', '1', '99.252.16.109', '3779', '3457', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('109', '20090321230219', '20090321230219', '1', 'Daniel', '0', 'Porn', '', '0', '0', '0', '33', '87', '86', '0', '0', '', '1', '99.252.16.109', '3457', '3365', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('110', '20090321230414', '20090321230414', '1', 'Daniel', '0', 'Porn', '', '0', '0', '0', '33', '88', '87', '0', '0', '', '1', '99.252.16.109', '3365', '3457', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('111', '20090321230427', '20090321230427', '1', 'Daniel', '10', 'MainPageInterwikis', 'Created page with \'<includeonly>[[simple:]] [[ar:]] [[id:]] [[ms:]] [[bpy:]] [[br:]] [[bs:]] [[bg:]] [[ca:]] [[cs:]] [[cy:]] [[da:]] [[de:]] [[et:]] [[el:]] [[es:]] [[eo:]] [[eu:]] [[fa:]] [[fr:]] ...\'', '0', '0', '1', '35', '89', '0', '1', '0', '', '1', '99.252.16.109', '0', '531', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('112', '20090321230434', '20090321230434', '1', 'Daniel', '10', 'MainPageInterwikis', '', '0', '0', '0', '35', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '92', 'protect', 'protect', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n');
INSERT INTO mw_recentchanges VALUES('113', '20090321230559', '20090321230559', '1', 'Daniel', '10', 'MainPageInterwikis', 'Blanked the page', '0', '0', '0', '35', '91', '90', '0', '0', '', '1', '99.252.16.109', '531', '0', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('114', '20090321230820', '20090321230820', '1', 'Daniel', '0', 'Porn', '', '0', '0', '0', '33', '92', '88', '0', '0', '', '1', '99.252.16.109', '3457', '2988', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('115', '20090321230905', '20090321230905', '1', 'Daniel', '0', 'Porn', '', '0', '0', '0', '33', '93', '92', '0', '0', '', '1', '99.252.16.109', '2988', '2994', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('116', '20090321230923', '20090321230923', '4', 'Siucune', '2', 'Siucune', 'Created page with \'THIS PAGE SUCKS. >: (\'', '1', '0', '1', '36', '94', '0', '1', '0', '', '1', '205.209.230.207', '0', '21', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('117', '20090321231144', '20090321231144', '1', 'Daniel', '10', 'Main_Page_banner', 'Created page with \'<!--   Please note - this template is shown on the Main Page, and any changes or screw-ups you make will appear there immediately. Make changes very carefully, and always use the...\'', '0', '0', '1', '37', '95', '0', '1', '0', '', '1', '99.252.16.109', '0', '679', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('118', '20090321231151', '20090321231151', '1', 'Daniel', '10', 'Main_Page_banner', '', '0', '0', '0', '37', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '98', 'protect', 'protect', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n');
INSERT INTO mw_recentchanges VALUES('119', '20090321231210', '20090321231210', '1', 'Daniel', '10', 'Pp-template', '', '0', '0', '0', '19', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '99', 'protect', 'protect', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n');
INSERT INTO mw_recentchanges VALUES('120', '20090321231221', '20090321231221', '4', 'Siucune', '2', 'Siucune', '', '0', '0', '0', '36', '98', '94', '0', '0', '', '1', '205.209.230.207', '21', '218', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('121', '20090321231224', '20090321231224', '1', 'Daniel', '10', 'Documentation', '', '0', '0', '0', '11', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '101', 'protect', 'protect', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n');
INSERT INTO mw_recentchanges VALUES('122', '20090321231249', '20090321231249', '1', 'Daniel', '10', 'Infobox_Person', '', '0', '0', '0', '13', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '102', 'protect', 'protect', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n');
INSERT INTO mw_recentchanges VALUES('123', '20090321231329', '20090321231329', '1', 'Daniel', '10', 'Infobox', '', '0', '0', '0', '17', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '103', 'protect', 'protect', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n');
INSERT INTO mw_recentchanges VALUES('124', '20090321231337', '20090321231337', '1', 'Daniel', '10', 'Pp-meta', '', '0', '0', '0', '20', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '104', 'protect', 'protect', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n');
INSERT INTO mw_recentchanges VALUES('125', '20090321231343', '20090321231343', '1', 'Daniel', '10', 'Mbox', '', '0', '0', '0', '23', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '105', 'protect', 'protect', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n');
INSERT INTO mw_recentchanges VALUES('126', '20090321231349', '20090321231349', '1', 'Daniel', '10', 'Namespace_detect', '', '0', '0', '0', '24', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '106', 'protect', 'protect', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n');
INSERT INTO mw_recentchanges VALUES('127', '20090321231355', '20090321231355', '1', 'Daniel', '10', 'Ambox', '', '0', '0', '0', '25', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '107', 'protect', 'protect', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n');
INSERT INTO mw_recentchanges VALUES('128', '20090321231402', '20090321231402', '1', 'Daniel', '10', 'Ambox/core', '', '0', '0', '0', '26', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '108', 'protect', 'protect', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n');
INSERT INTO mw_recentchanges VALUES('129', '20090321231447', '20090321231447', '1', 'Daniel', '0', 'OrgyPedia', 'Created page with \'== OrgyPedia==  If you actually got to this page without clicking buttons, you\'re a hero\'', '0', '0', '1', '38', '107', '0', '1', '0', '', '1', '99.252.16.109', '0', '88', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('130', '20090321231719', '20090321231719', '1', 'Daniel', '0', 'Main_Page', '', '0', '0', '0', '1', '108', '5', '0', '0', '', '1', '99.252.16.109', '194', '2994', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('131', '20090321231725', '20090321231725', '1', 'Daniel', '0', 'Main_Page', '', '0', '0', '0', '1', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '111', 'protect', 'protect', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n');
INSERT INTO mw_recentchanges VALUES('132', '20090321231829', '20090321231829', '1', 'Daniel', '0', 'Main_Page', '', '0', '0', '0', '1', '110', '109', '0', '0', '', '1', '99.252.16.109', '2994', '3324', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('133', '20090321231854', '20090321231854', '1', 'Daniel', '0', 'Administrators', 'Created page with \'== SoapWiki Administrators == [[Spirit]] [[Daniel]] [[Siucune]]\'', '0', '0', '1', '39', '111', '0', '1', '0', '', '1', '99.252.16.109', '0', '63', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('134', '20090321231902', '20090321231902', '1', 'Daniel', '0', 'Administrators', '', '0', '0', '0', '39', '112', '111', '0', '0', '', '1', '99.252.16.109', '63', '65', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('135', '20090321231917', '20090321231917', '1', 'Daniel', '0', 'Administrators', '', '0', '0', '0', '39', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '115', 'protect', 'protect', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n');
INSERT INTO mw_recentchanges VALUES('136', '20090321233551', '20090321233551', '2', 'Spirit', '0', 'Main_Page', '', '0', '0', '0', '1', '114', '110', '0', '0', '', '1', '98.221.81.205', '3324', '3323', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('137', '20090321233739', '20090321233739', '2', 'Spirit', '0', 'Administrators', '', '0', '0', '0', '39', '115', '113', '0', '0', '', '1', '98.221.81.205', '65', '21234', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('138', '20090321235333', '20090321235333', '1', 'Daniel', '0', 'Main_Page', '', '0', '0', '0', '1', '116', '114', '0', '0', '', '1', '99.252.16.109', '3323', '3327', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('139', '20090321235413', '20090321235413', '2', 'Spirit', '0', 'SoapWiki', 'Created page with \'SoapRO\'s wiki.\'', '0', '0', '1', '40', '117', '0', '1', '0', '', '1', '98.221.81.205', '0', '14', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('140', '20090321235427', '20090321235427', '1', 'Daniel', '0', 'Main_Page', '', '0', '0', '0', '1', '118', '116', '0', '0', '', '1', '99.252.16.109', '3327', '3334', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('142', '20090322000724', '20090322000724', '2', 'Spirit', '0', 'Main_Page', '', '0', '0', '0', '1', '120', '118', '0', '0', '', '1', '98.221.81.205', '3334', '3210', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('143', '20090322000748', '20090322000748', '2', 'Spirit', '0', 'Main_Page', '', '0', '0', '0', '1', '121', '120', '0', '0', '', '1', '98.221.81.205', '3210', '3164', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('144', '20090322001201', '20090322001201', '1', 'Daniel', '0', 'Administrators', '', '0', '0', '0', '39', '122', '115', '0', '0', '', '1', '99.252.16.109', '21234', '17011', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('145', '20090322001519', '20090322001519', '2', 'Spirit', '2', 'Siucune', '', '0', '0', '0', '36', '123', '98', '0', '0', '', '1', '98.221.81.205', '218', '168', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('146', '20090322001531', '20090322001531', '1', 'Daniel', '0', 'Administrators', '', '0', '0', '0', '39', '124', '122', '0', '0', '', '1', '99.252.16.109', '17011', '16511', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('147', '20090322001900', '20090322001900', '1', 'Daniel', '0', 'Flag_An_Article', 'Created page with \' === Flagging An Article === If you believe that an article you see on SoapWiki is offensive, contains offensive material or is otherwise redundant and contains False Information...\'', '0', '0', '1', '42', '125', '0', '1', '0', '', '1', '99.252.16.109', '0', '498', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('148', '20090322001951', '20090322001951', '1', 'Daniel', '10', 'Main', 'Created page with \'{{rellink|extraclasses=noprint relarticle mainarticle|Main article{{#if:{{{2|}}}|s}}: [[{{{1}}}|{{{l1|{{{1}}}}}}]]{{#if:{{{2| }}}  |{{#if:{{{3|}}}|,&#32;|&#32;and&#32;}}[[{{{2}}}...\'', '0', '0', '1', '43', '126', '0', '1', '0', '', '1', '99.252.16.109', '0', '1019', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('149', '20090322002158', '20090322002158', '1', 'Daniel', '10', 'Rellink', 'Created page with \'<div class=\"rellink{{#if:{{{extraclasses|}}}|<nowiki> </nowiki>{{{extraclasses}}}}}\" style=\"font-style:italic; padding-left:2em;\">{{{1}}}</div><noinclude> {{pp-template|small=yes...\'', '0', '0', '1', '44', '127', '0', '1', '0', '', '1', '99.252.16.109', '0', '211', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('150', '20090322002229', '20090322002229', '1', 'Daniel', '10', 'Rellink', '', '0', '0', '0', '44', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '130', 'protect', 'protect', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n');
INSERT INTO mw_recentchanges VALUES('151', '20090322002243', '20090322002243', '1', 'Daniel', '10', 'Main', '', '0', '0', '0', '43', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '131', 'protect', 'protect', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n');
INSERT INTO mw_recentchanges VALUES('152', '20090322002614', '20090322002614', '1', 'Daniel', '0', 'Daniel', '', '0', '0', '0', '7', '130', '77', '0', '0', '', '1', '99.252.16.109', '574', '570', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('153', '20090322002624', '20090322002624', '1', 'Daniel', '0', 'Daniel', '', '0', '0', '0', '7', '131', '130', '0', '0', '', '1', '99.252.16.109', '570', '574', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('154', '20090322002748', '20090322002748', '1', 'Daniel', '0', 'Daniel', '', '0', '0', '0', '7', '132', '131', '0', '0', '', '1', '99.252.16.109', '574', '568', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('155', '20090322002801', '20090322002801', '1', 'Daniel', '0', 'Daniel', '', '0', '0', '0', '7', '133', '132', '0', '0', '', '1', '99.252.16.109', '568', '567', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('156', '20090322003259', '20090322003259', '1', 'Daniel', '0', 'Main_Page', '', '0', '0', '0', '1', '134', '121', '0', '0', '', '1', '99.252.16.109', '3164', '3212', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('157', '20090322003314', '20090322003314', '1', 'Daniel', '10', 'Did_you_know', '', '0', '0', '0', '34', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '137', 'protect', 'protect', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n');
INSERT INTO mw_recentchanges VALUES('158', '20090322003539', '20090322003539', '1', 'Daniel', '0', 'Main_Page', '', '0', '0', '0', '1', '136', '134', '0', '0', '', '1', '99.252.16.109', '3212', '3207', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('159', '20090322003755', '20090322003755', '1', 'Daniel', '0', 'Main_Page', '', '0', '0', '0', '1', '137', '136', '0', '0', '', '1', '99.252.16.109', '3207', '3187', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('160', '20090322003851', '20090322003851', '1', 'Daniel', '0', 'English_language', 'content was: \'{{pp-move-indef}} {{refimprove|date=February 2009}}  {{English language}} \'\'\'English\'\'\' is a [[West Germanic language]] that originated in [[Anglo-Saxon England]] a...\' (and the only contributor was \'[[Special:Contributions/Spirit|Spirit]]\')', '0', '0', '0', '0', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '140', 'delete', 'delete', '');
INSERT INTO mw_recentchanges VALUES('161', '20090322003946', '20090322003946', '1', 'Daniel', '0', 'OrgyPedia', '', '0', '0', '0', '38', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '141', 'protect', 'protect', '[edit=sysop] (indefinite) [move=sysop] (indefinite)\n');
INSERT INTO mw_recentchanges VALUES('162', '20090322004113', '20090322004113', '1', 'Daniel', '10', 'Did_you_know', '', '0', '0', '0', '34', '139', '135', '0', '0', '', '1', '99.252.16.109', '36', '36', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('163', '20090322004152', '20090322004152', '1', 'Daniel', '0', 'Lucent', '', '0', '0', '0', '5', '140', '62', '0', '0', '', '1', '99.252.16.109', '806', '806', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('164', '20090322004326', '20090322004326', '1', 'Daniel', '0', 'Main_Page', '', '0', '0', '0', '1', '141', '137', '0', '0', '', '1', '99.252.16.109', '3187', '3191', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('165', '20090322005145', '20090322005145', '1', 'Daniel', '0', 'Main_Page', '', '0', '0', '0', '1', '142', '141', '0', '0', '', '1', '99.252.16.109', '3191', '3268', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('166', '20090322005205', '20090322005205', '1', 'Daniel', '0', 'Main_Page', '', '0', '0', '0', '1', '143', '142', '0', '0', '', '1', '99.252.16.109', '3268', '3272', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('167', '20090322005239', '20090322005239', '1', 'Daniel', '0', 'Main_Page', '', '0', '0', '0', '1', '144', '143', '0', '0', '', '1', '99.252.16.109', '3272', '3269', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('168', '20090322005307', '20090322005307', '1', 'Daniel', '0', 'Main_Page', '', '0', '0', '0', '1', '145', '144', '0', '0', '', '1', '99.252.16.109', '3269', '3277', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('169', '20090322005319', '20090322005319', '1', 'Daniel', '0', 'Main_Page', '', '0', '0', '0', '1', '146', '145', '0', '0', '', '1', '99.252.16.109', '3277', '3273', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('170', '20090322005335', '20090322005335', '1', 'Daniel', '0', 'Main_Page', '', '0', '0', '0', '1', '147', '146', '0', '0', '', '1', '99.252.16.109', '3273', '3273', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('171', '20090322005405', '20090322005405', '1', 'Daniel', '0', 'Main_Page', '', '0', '0', '0', '1', '148', '147', '0', '0', '', '1', '99.252.16.109', '3273', '3272', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('172', '20090322005428', '20090322005428', '1', 'Daniel', '0', 'Rank_1', 'Created page with \'If you have Rank 1 on the server, feel free to brag.\'', '0', '0', '1', '45', '149', '0', '1', '0', '', '1', '99.252.16.109', '0', '52', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('173', '20090322010003', '20090322010003', '1', 'Daniel', '0', 'Daniel', '', '0', '0', '0', '7', '150', '133', '0', '0', '', '1', '99.252.16.109', '567', '1063', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('174', '20090322010053', '20090322010053', '1', 'Daniel', '0', 'Daniel', '', '0', '0', '0', '7', '151', '150', '0', '0', '', '1', '99.252.16.109', '1063', '1061', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('175', '20090322042108', '20090322042108', '2', 'Spirit', '0', 'First_WoE', 'Created page with \'This page is dedicated to the story of SoapRO v3.0\'s first WoE (which was epic, btw).\'', '0', '0', '1', '46', '152', '0', '1', '0', '', '1', '98.221.81.205', '0', '85', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('176', '20090323095825', '20090323095825', '1', 'Daniel', '0', 'Main_Page', '', '0', '0', '0', '1', '153', '148', '0', '0', '', '1', '99.252.16.109', '3272', '3101', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('177', '20090324000147', '20090324000147', '1', 'Daniel', '0', 'Lucent', '', '0', '0', '0', '5', '154', '140', '0', '0', '', '1', '99.252.16.109', '806', '880', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('178', '20090324133006', '20090324133006', '2', 'Spirit', '0', 'Main_Page', '', '0', '0', '0', '1', '155', '153', '0', '0', '', '1', '98.221.81.205', '3101', '3119', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('179', '20090324134436', '20090324134436', '1', 'Daniel', '10', 'Infobox_Guild', 'Created page with \'{{ infobox | bodyclass  = biography vcard vevent | bodystyle  = width:{{#if:{{{box_width|}}}|{{{box_width}}} |22em}}; font-size:95%; text-align:left; | above      = \'\'\'{{{name|{{...\'', '0', '0', '1', '47', '156', '0', '1', '0', '', '1', '99.252.16.109', '0', '4183', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('180', '20090324134712', '20090324134712', '1', 'Daniel', '0', 'Lunar_Flare', '', '0', '0', '0', '27', '157', '61', '0', '0', '', '1', '99.252.16.109', '82', '185', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('181', '20090324134835', '20090324134835', '1', 'Daniel', '0', 'Lunar_Flare', '', '0', '0', '0', '27', '158', '157', '0', '0', '', '1', '99.252.16.109', '185', '196', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('182', '20090324134952', '20090324134952', '1', 'Daniel', '0', 'Lunar_Flare', '', '0', '0', '0', '27', '159', '158', '0', '0', '', '1', '99.252.16.109', '196', '169', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('183', '20090324135026', '20090324135026', '1', 'Daniel', '10', 'Infobox_Guild', '', '0', '0', '0', '47', '160', '156', '0', '0', '', '1', '99.252.16.109', '4183', '4191', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('184', '20090324135129', '20090324135129', '1', 'Daniel', '0', 'Lunar_Flare', '', '0', '0', '0', '27', '161', '159', '0', '0', '', '1', '99.252.16.109', '169', '169', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('185', '20090324135404', '20090324135404', '1', 'Daniel', '8', 'Group-bureaucrat-member', 'Created page with \'Administrators\'', '0', '0', '1', '48', '162', '0', '1', '0', '', '1', '99.252.16.109', '0', '14', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('186', '20090324135523', '20090324135523', '1', 'Daniel', '8', 'Group-sysop-member', 'Created page with \'WikiMod\'', '0', '0', '1', '49', '163', '0', '1', '0', '', '1', '99.252.16.109', '0', '7', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('187', '20090324135841', '20090324135841', '1', 'Daniel', '8', 'Group-bureaucrat', 'Created page with \'Administrators\'', '0', '0', '1', '50', '164', '0', '1', '0', '', '1', '99.252.16.109', '0', '14', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('188', '20090324135905', '20090324135905', '1', 'Daniel', '8', 'Group-sysop', 'Created page with \'WikiMod\'', '0', '0', '1', '51', '165', '0', '1', '0', '', '1', '99.252.16.109', '0', '7', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('189', '20090324140644', '20090324140644', '1', 'Daniel', '10', 'Infobox_Guild', '', '0', '0', '0', '47', '166', '160', '0', '0', '', '1', '99.252.16.109', '4191', '4191', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('190', '20090324140719', '20090324140719', '1', 'Daniel', '10', 'Infobox_Guild', '', '0', '0', '0', '47', '167', '166', '0', '0', '', '1', '99.252.16.109', '4191', '4191', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('191', '20090324140825', '20090324140825', '1', 'Daniel', '10', 'Infobox_Guild', '', '0', '0', '0', '47', '168', '167', '0', '0', '', '1', '99.252.16.109', '4191', '4203', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('192', '20090324140837', '20090324140837', '1', 'Daniel', '0', 'Lunar_Flare', '', '0', '0', '0', '27', '169', '161', '0', '0', '', '1', '99.252.16.109', '169', '175', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('193', '20090324142645', '20090324142645', '1', 'Daniel', '6', 'Lfemblem.png', 'Lunar Flare emblem as of March 24th', '0', '0', '0', '0', '0', '0', '3', '0', '', '1', '99.252.16.109', NULL, NULL, '0', '173', 'upload', 'upload', '');
INSERT INTO mw_recentchanges VALUES('194', '20090324142733', '20090324142733', '1', 'Daniel', '10', 'Infobox_Guild', '', '0', '0', '0', '47', '171', '168', '0', '0', '', '1', '99.252.16.109', '4203', '4202', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('195', '20090324142847', '20090324142847', '1', 'Daniel', '0', 'Lunar_Flare', '', '0', '0', '0', '27', '172', '169', '0', '0', '', '1', '99.252.16.109', '175', '197', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('196', '20090324145111', '20090324145111', '1', 'Daniel', '0', 'Lunar_Flare', '', '0', '0', '0', '27', '173', '172', '0', '0', '', '1', '99.252.16.109', '197', '196', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('197', '20090324145201', '20090324145201', '1', 'Daniel', '8', 'External_image_whitelist', 'Created page with \' #Leave this line exactly as it is<pre> #Put regular expression fragments (just the part that goes between the //) below #These will be matched with the URLs of external (hotlink...\'', '0', '0', '1', '53', '174', '0', '1', '0', '', '1', '99.252.16.109', '0', '498', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('198', '20090324145328', '20090324145328', '1', 'Daniel', '0', 'Lunar_Flare', '', '0', '0', '0', '27', '175', '173', '0', '0', '', '1', '99.252.16.109', '196', '281', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('199', '20090324145438', '20090324145438', '1', 'Daniel', '0', 'Lunar_Flare', '', '0', '0', '0', '27', '176', '175', '0', '0', '', '1', '99.252.16.109', '281', '196', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('200', '20090324145521', '20090324145521', '1', 'Daniel', '0', 'Lunar_Flare', '', '0', '0', '0', '27', '177', '176', '0', '0', '', '1', '99.252.16.109', '196', '244', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('201', '20090324145531', '20090324145531', '1', 'Daniel', '0', 'Lunar_Flare', '', '0', '0', '0', '27', '178', '177', '0', '0', '', '1', '99.252.16.109', '244', '196', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('202', '20090324194440', '20090324194440', '1', 'Daniel', '0', 'Main_Page', '', '0', '0', '0', '1', '179', '155', '0', '0', '', '1', '99.252.16.109', '3119', '3158', '0', '0', NULL, '', '');
INSERT INTO mw_recentchanges VALUES('203', '20090326061910', '20090326061910', '6', 'Ramzah', '0', 'Bath_EP', 'Created page with \'The Bath EP is an album composed by [[Lucent]] and it is made of 6 tracks in 128kbps .mp3 format.  It is available for $3.00 USD on the [http://ro.soapstudios.org/forums SopaRO f...\'', '0', '0', '1', '54', '180', '0', '1', '0', '', '0', '87.3.226.206', '0', '471', '0', '0', NULL, '', '');



DROP TABLE IF EXISTS mw_redirect;
CREATE TABLE `mw_redirect` (
  `rd_from` int(10) unsigned NOT NULL default '0',
  `rd_namespace` int(11) NOT NULL default '0',
  `rd_title` varbinary(255) NOT NULL default '',
  PRIMARY KEY  (`rd_from`),
  KEY `rd_ns_title` (`rd_namespace`,`rd_title`,`rd_from`)
) ENGINE=InnoDB DEFAULT CHARSET=binary;

INSERT INTO mw_redirect VALUES('31', '0', 'Lucent');
INSERT INTO mw_redirect VALUES('32', '0', 'Lucent');



DROP TABLE IF EXISTS mw_revision;
CREATE TABLE `mw_revision` (
  `rev_id` int(10) unsigned NOT NULL auto_increment,
  `rev_page` int(10) unsigned NOT NULL,
  `rev_text_id` int(10) unsigned NOT NULL,
  `rev_comment` tinyblob NOT NULL,
  `rev_user` int(10) unsigned NOT NULL default '0',
  `rev_user_text` varbinary(255) NOT NULL default '',
  `rev_timestamp` binary(14) NOT NULL default '\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `rev_minor_edit` tinyint(3) unsigned NOT NULL default '0',
  `rev_deleted` tinyint(3) unsigned NOT NULL default '0',
  `rev_len` int(10) unsigned default NULL,
  `rev_parent_id` int(10) unsigned default NULL,
  PRIMARY KEY  (`rev_page`,`rev_id`),
  UNIQUE KEY `rev_id` (`rev_id`),
  KEY `rev_timestamp` (`rev_timestamp`),
  KEY `page_timestamp` (`rev_page`,`rev_timestamp`),
  KEY `user_timestamp` (`rev_user`,`rev_timestamp`),
  KEY `usertext_timestamp` (`rev_user_text`,`rev_timestamp`)
) ENGINE=InnoDB AUTO_INCREMENT=181 DEFAULT CHARSET=binary MAX_ROWS=10000000 AVG_ROW_LENGTH=1024;

INSERT INTO mw_revision VALUES('1', '1', '1', '', '0', 'MediaWiki default', '20090318205235', '0', '0', '449', '0');
INSERT INTO mw_revision VALUES('4', '1', '4', '', '1', 'Daniel', '20090318215553', '0', '0', '190', '1');
INSERT INTO mw_revision VALUES('5', '1', '5', '', '1', 'Daniel', '20090318215609', '0', '0', '194', '4');
INSERT INTO mw_revision VALUES('108', '1', '90', '', '1', 'Daniel', '20090321231719', '0', '0', '2994', '5');
INSERT INTO mw_revision VALUES('109', '1', '90', 'Protected \"[[Main Page]]\" ([edit=sysop] (indefinite) [move=sysop] (indefinite))', '1', 'Daniel', '20090321231725', '1', '0', '2994', '108');
INSERT INTO mw_revision VALUES('110', '1', '91', '', '1', 'Daniel', '20090321231829', '0', '0', '3324', '109');
INSERT INTO mw_revision VALUES('114', '1', '94', '', '2', 'Spirit', '20090321233551', '0', '0', '3323', '110');
INSERT INTO mw_revision VALUES('116', '1', '96', '', '1', 'Daniel', '20090321235333', '0', '0', '3327', '114');
INSERT INTO mw_revision VALUES('118', '1', '98', '', '1', 'Daniel', '20090321235427', '0', '0', '3334', '116');
INSERT INTO mw_revision VALUES('120', '1', '100', '', '2', 'Spirit', '20090322000724', '0', '0', '3210', '118');
INSERT INTO mw_revision VALUES('121', '1', '101', '', '2', 'Spirit', '20090322000748', '0', '0', '3164', '120');
INSERT INTO mw_revision VALUES('134', '1', '112', '', '1', 'Daniel', '20090322003259', '0', '0', '3212', '121');
INSERT INTO mw_revision VALUES('136', '1', '113', '', '1', 'Daniel', '20090322003539', '0', '0', '3207', '134');
INSERT INTO mw_revision VALUES('137', '1', '114', '', '1', 'Daniel', '20090322003755', '0', '0', '3187', '136');
INSERT INTO mw_revision VALUES('141', '1', '117', '', '1', 'Daniel', '20090322004326', '0', '0', '3191', '137');
INSERT INTO mw_revision VALUES('142', '1', '118', '', '1', 'Daniel', '20090322005145', '0', '0', '3268', '141');
INSERT INTO mw_revision VALUES('143', '1', '119', '', '1', 'Daniel', '20090322005205', '0', '0', '3272', '142');
INSERT INTO mw_revision VALUES('144', '1', '120', '', '1', 'Daniel', '20090322005239', '0', '0', '3269', '143');
INSERT INTO mw_revision VALUES('145', '1', '121', '', '1', 'Daniel', '20090322005307', '0', '0', '3277', '144');
INSERT INTO mw_revision VALUES('146', '1', '122', '', '1', 'Daniel', '20090322005319', '0', '0', '3273', '145');
INSERT INTO mw_revision VALUES('147', '1', '123', '', '1', 'Daniel', '20090322005335', '0', '0', '3273', '146');
INSERT INTO mw_revision VALUES('148', '1', '124', '', '1', 'Daniel', '20090322005405', '0', '0', '3272', '147');
INSERT INTO mw_revision VALUES('153', '1', '129', '', '1', 'Daniel', '20090323095825', '0', '0', '3101', '148');
INSERT INTO mw_revision VALUES('155', '1', '131', '', '2', 'Spirit', '20090324133006', '0', '0', '3119', '153');
INSERT INTO mw_revision VALUES('179', '1', '155', '', '1', 'Daniel', '20090324194440', '0', '0', '3158', '155');
INSERT INTO mw_revision VALUES('2', '2', '2', 'Created page with \'Hello,  You have reached this page.\'', '1', 'Daniel', '20090318205509', '0', '0', '35', '0');
INSERT INTO mw_revision VALUES('3', '3', '3', 'Created page with \'The staff at SoapRO make no guarantee that the information contained within the wiki articles is fully accurate. If you believe that false information has been supplied to us, yo...\'', '1', 'Daniel', '20090318215414', '0', '0', '341', '0');
INSERT INTO mw_revision VALUES('7', '5', '7', 'Created page with \'\'\'\'Lucent\'\'\' (aka \'\'Nightshine\'\') is one of the eight original members of SoapRO, the leader of the guild [[Lunar Flare]], and a contributing member to SoapRO\'s society.  He deve...\'', '5', 'Lucent', '20090319210641', '0', '0', '393', '0');
INSERT INTO mw_revision VALUES('9', '5', '9', '', '5', 'Lucent', '20090319214412', '0', '0', '782', '7');
INSERT INTO mw_revision VALUES('38', '5', '35', '', '5', 'Lucent', '20090321000129', '0', '0', '800', '9');
INSERT INTO mw_revision VALUES('39', '5', '36', '', '5', 'Lucent', '20090321000137', '0', '0', '801', '38');
INSERT INTO mw_revision VALUES('41', '5', '38', '', '5', 'Lucent', '20090321000312', '0', '0', '803', '39');
INSERT INTO mw_revision VALUES('42', '5', '39', '', '5', 'Lucent', '20090321000402', '0', '0', '876', '41');
INSERT INTO mw_revision VALUES('43', '5', '40', '', '5', 'Lucent', '20090321000514', '0', '0', '836', '42');
INSERT INTO mw_revision VALUES('45', '5', '42', '', '5', 'Lucent', '20090321000753', '0', '0', '837', '43');
INSERT INTO mw_revision VALUES('51', '5', '47', '', '2', 'Spirit', '20090321002435', '0', '0', '835', '45');
INSERT INTO mw_revision VALUES('53', '5', '49', '', '2', 'Spirit', '20090321002521', '0', '0', '836', '51');
INSERT INTO mw_revision VALUES('54', '5', '50', '', '5', 'Lucent', '20090321002629', '1', '0', '983', '53');
INSERT INTO mw_revision VALUES('55', '5', '51', '/* Character Profile */', '5', 'Lucent', '20090321002830', '0', '0', '807', '54');
INSERT INTO mw_revision VALUES('62', '5', '57', '', '5', 'Lucent', '20090321004254', '0', '0', '806', '55');
INSERT INTO mw_revision VALUES('140', '5', '116', '', '1', 'Daniel', '20090322004152', '0', '0', '806', '62');
INSERT INTO mw_revision VALUES('154', '5', '130', '', '1', 'Daniel', '20090324000147', '0', '0', '880', '140');
INSERT INTO mw_revision VALUES('8', '6', '8', 'Created page with \'This is a fuckaround page for testing.\'', '5', 'Lucent', '20090319210920', '0', '0', '38', '0');
INSERT INTO mw_revision VALUES('10', '7', '10', 'Created page with \'{{Userinfo|   |username=Daniel  |name=Daniel  |userid=2  |born=August 15  |gender=male   |location=Moncton  |other=Here  }}\'', '1', 'Daniel', '20090319220242', '0', '0', '123', '0');
INSERT INTO mw_revision VALUES('27', '7', '26', '', '1', 'Daniel', '20090320000451', '0', '0', '737', '10');
INSERT INTO mw_revision VALUES('34', '7', '31', '', '1', 'Daniel', '20090320004042', '0', '0', '123', '27');
INSERT INTO mw_revision VALUES('44', '7', '41', '', '1', 'Daniel', '20090321000736', '0', '0', '243', '34');
INSERT INTO mw_revision VALUES('46', '7', '41', 'Protected \"[[Daniel]]\" ([edit=sysop] (indefinite) [move=sysop] (indefinite))', '1', 'Daniel', '20090321001256', '1', '0', '243', '44');
INSERT INTO mw_revision VALUES('47', '7', '43', '', '1', 'Daniel', '20090321002210', '0', '0', '269', '46');
INSERT INTO mw_revision VALUES('56', '7', '52', '', '1', 'Daniel', '20090321003155', '0', '0', '517', '47');
INSERT INTO mw_revision VALUES('63', '7', '58', '', '1', 'Daniel', '20090321004315', '0', '0', '622', '56');
INSERT INTO mw_revision VALUES('64', '7', '59', '', '1', 'Daniel', '20090321004844', '0', '0', '651', '63');
INSERT INTO mw_revision VALUES('72', '7', '66', '', '1', 'Daniel', '20090321005825', '0', '0', '616', '64');
INSERT INTO mw_revision VALUES('73', '7', '67', '', '1', 'Daniel', '20090321005907', '0', '0', '655', '72');
INSERT INTO mw_revision VALUES('74', '7', '68', '', '1', 'Daniel', '20090321005943', '0', '0', '565', '73');
INSERT INTO mw_revision VALUES('76', '7', '70', '', '1', 'Daniel', '20090321010307', '0', '0', '541', '74');
INSERT INTO mw_revision VALUES('77', '7', '71', '', '1', 'Daniel', '20090321010645', '0', '0', '574', '76');
INSERT INTO mw_revision VALUES('130', '7', '108', '', '1', 'Daniel', '20090322002614', '0', '0', '570', '77');
INSERT INTO mw_revision VALUES('131', '7', '109', '', '1', 'Daniel', '20090322002624', '0', '0', '574', '130');
INSERT INTO mw_revision VALUES('132', '7', '110', '', '1', 'Daniel', '20090322002748', '0', '0', '568', '131');
INSERT INTO mw_revision VALUES('133', '7', '111', '', '1', 'Daniel', '20090322002801', '0', '0', '567', '132');
INSERT INTO mw_revision VALUES('150', '7', '126', '', '1', 'Daniel', '20090322010003', '0', '0', '1063', '133');
INSERT INTO mw_revision VALUES('151', '7', '127', '', '1', 'Daniel', '20090322010053', '0', '0', '1061', '150');
INSERT INTO mw_revision VALUES('11', '8', '11', 'Created page with \'{| cellpadding=0 cellspacing=0 border=1 align=right style=\"font-family: verdana, sans-serif; margin: 0 0 1em 1em; font-size: 10px; background-color: #f7f8ff; border:1px solid #88...\'', '1', 'Daniel', '20090319221054', '0', '0', '841', '0');
INSERT INTO mw_revision VALUES('12', '8', '11', 'Protected \"[[Template:Userinfo]]\": Template ([edit=sysop] (indefinite) [move=sysop] (indefinite))', '1', 'Daniel', '20090319221320', '1', '0', '841', '11');
INSERT INTO mw_revision VALUES('13', '8', '12', '', '1', 'Daniel', '20090319221458', '0', '0', '837', '12');
INSERT INTO mw_revision VALUES('16', '8', '15', '', '2', 'Spirit', '20090319223153', '0', '0', '1003', '13');
INSERT INTO mw_revision VALUES('17', '8', '16', '', '2', 'Spirit', '20090319223221', '0', '0', '987', '16');
INSERT INTO mw_revision VALUES('18', '8', '17', 'Undo revision 17 by [[Special:Contributions/Spirit|Spirit]] ([[User talk:Spirit|Talk]])', '2', 'Spirit', '20090319223422', '0', '0', '1003', '17');
INSERT INTO mw_revision VALUES('19', '8', '18', 'Reverted edits by [[Special:Contributions/Spirit|Spirit]] ([[User talk:Spirit|Talk]]) to last version by [[User:Daniel|Daniel]]', '2', 'Spirit', '20090319223529', '1', '0', '837', '18');
INSERT INTO mw_revision VALUES('20', '11', '19', 'Created page with \'<div class=\"template-documentation\"><!--  These are the literal class definitions in common.css:   /* For template documentation */ .template-documentation {     clear: both;    ...\'', '1', 'Daniel', '20090319223733', '0', '0', '2836', '0');
INSERT INTO mw_revision VALUES('99', '11', '19', 'Protected \"[[Template:Documentation]]\" ([edit=sysop] (indefinite) [move=sysop] (indefinite))', '1', 'Daniel', '20090321231224', '1', '0', '2836', '20');
INSERT INTO mw_revision VALUES('22', '13', '21', 'Created page with \'{{ infobox | bodyclass  = biography vcard vevent | bodystyle  = width:{{#if:{{{box_width|}}}|{{{box_width}}} |22em}}; font-size:95%; text-align:left; | above      = \'\'\'{{{name|{{...\'', '1', 'Daniel', '20090319223806', '0', '0', '3920', '0');
INSERT INTO mw_revision VALUES('67', '13', '61', '', '1', 'Daniel', '20090321005334', '0', '0', '3972', '22');
INSERT INTO mw_revision VALUES('68', '13', '62', '', '1', 'Daniel', '20090321005435', '0', '0', '3972', '67');
INSERT INTO mw_revision VALUES('70', '13', '64', '', '1', 'Daniel', '20090321005621', '0', '0', '4028', '68');
INSERT INTO mw_revision VALUES('75', '13', '69', '', '1', 'Daniel', '20090321010240', '0', '0', '4106', '70');
INSERT INTO mw_revision VALUES('78', '13', '72', '', '1', 'Daniel', '20090321011758', '0', '0', '4111', '75');
INSERT INTO mw_revision VALUES('100', '13', '72', 'Protected \"[[Template:Infobox Person]]\" ([edit=sysop] (indefinite) [move=sysop] (indefinite))', '1', 'Daniel', '20090321231249', '1', '0', '4111', '78');
INSERT INTO mw_revision VALUES('26', '16', '25', 'Created page with \'/* CSS placed here will be applied to all skins */  /* Infobox template style */ .infobox {     border: 1px solid #aaa;     background-color: #f9f9f9;     color: black;     margi...\'', '1', 'Daniel', '20090320000038', '0', '0', '1161', '0');
INSERT INTO mw_revision VALUES('29', '16', '28', '', '1', 'Daniel', '20090320001913', '0', '0', '29369', '26');
INSERT INTO mw_revision VALUES('24', '17', '23', 'Created page with \'<table class=\"infobox {{{bodyclass|}}}\" cellspacing=\"5\" style=\"width: 22em; text-align: left; font-size: 88%; line-height: 1.5em; {{{bodystyle|}}}\"><!--  Caption -->{{#if:{{{titl...\'', '1', 'Daniel', '20090319224017', '0', '0', '36642', '0');
INSERT INTO mw_revision VALUES('25', '17', '24', '', '1', 'Daniel', '20090319233610', '0', '0', '38864', '24');
INSERT INTO mw_revision VALUES('28', '17', '27', 'Replaced content with \'This template is currently unavailable.\'', '1', 'Daniel', '20090320000616', '0', '0', '39', '25');
INSERT INTO mw_revision VALUES('30', '17', '29', '', '1', 'Daniel', '20090320002634', '0', '0', '36642', '28');
INSERT INTO mw_revision VALUES('31', '17', '29', 'Protected \"[[Template:Infobox]]\" ([edit=sysop] (indefinite) [move=sysop] (indefinite))', '1', 'Daniel', '20090320002835', '1', '0', '36642', '30');
INSERT INTO mw_revision VALUES('32', '17', '29', 'Unprotected \"[[Template:Infobox]]\": Temporary unprotection', '1', 'Daniel', '20090320003807', '1', '0', '36642', '31');
INSERT INTO mw_revision VALUES('101', '17', '29', 'Protected \"[[Template:Infobox]]\" ([edit=sysop] (indefinite) [move=sysop] (indefinite))', '1', 'Daniel', '20090321231329', '1', '0', '36642', '32');
INSERT INTO mw_revision VALUES('33', '18', '30', 'z', '7', 'Chzz', '20090320004020', '0', '0', '612', '0');
INSERT INTO mw_revision VALUES('35', '19', '32', 'Created page with \'<includeonly>{{pp-meta |type={{#switch:{{{demolevel|{{PROTECTIONLEVEL:edit}}}}}    |semi    |autoconfirmed=semi    |administrator    |full    |sysop=indef    |#default=indef<!--f...\'', '0', '99.252.16.109', '20090320234608', '0', '0', '2604', '0');
INSERT INTO mw_revision VALUES('97', '19', '32', 'Protected \"[[Template:Pp-template]]\" ([edit=sysop] (indefinite) [move=sysop] (indefinite))', '1', 'Daniel', '20090321231210', '1', '0', '2604', '35');
INSERT INTO mw_revision VALUES('36', '20', '33', 'Created page with \'{{#ifeq:{{#switch:{{lc:{{{type}}}}}   |move=<!--  -->{{#ifeq:       {{#switch:{{lc:{{{demolevel|undefined}}}}}         |semi         |autoconfirmed=autoconfirmed         |adminis...\'', '0', '99.252.16.109', '20090320234829', '0', '0', '7122', '0');
INSERT INTO mw_revision VALUES('102', '20', '33', 'Protected \"[[Template:Pp-meta]]\" ([edit=sysop] (indefinite) [move=sysop] (indefinite))', '1', 'Daniel', '20090321231337', '1', '0', '7122', '36');
INSERT INTO mw_revision VALUES('48', '23', '44', 'Created page with \'{{   {{namespace detect    | demospace = {{{demospace|}}}   | main      = ambox   | talk      = tmbox   | file      = imbox   | category  = cmbox   | other     = ombox   }} | typ...\'', '1', 'Daniel', '20090321002243', '0', '0', '624', '0');
INSERT INTO mw_revision VALUES('103', '23', '44', 'Protected \"[[Template:Mbox]]\" ([edit=sysop] (indefinite) [move=sysop] (indefinite))', '1', 'Daniel', '20090321231343', '1', '0', '624', '48');
INSERT INTO mw_revision VALUES('49', '24', '45', 'Created page with \'{{#switch:   {{lc:               <!--Lower case the result-->     <!--If no or empty \"demospace\" parameter then detect namespace-->     {{#if:{{{demospace|}}}      | {{{demospace...\'', '1', 'Daniel', '20090321002400', '0', '0', '1132', '0');
INSERT INTO mw_revision VALUES('104', '24', '45', 'Protected \"[[Template:Namespace detect]]\" ([edit=sysop] (indefinite) [move=sysop] (indefinite))', '1', 'Daniel', '20090321231349', '1', '0', '1132', '49');
INSERT INTO mw_revision VALUES('50', '25', '46', 'Created page with \'{{#switch:{{{small|}}} | left =    {{ambox/core   | small      = left   | type       = {{{type|}}}   | image      = {{#if:{{{smallimage|}}}                  | {{{smallimage}}}   ...\'', '1', 'Daniel', '20090321002428', '0', '0', '919', '0');
INSERT INTO mw_revision VALUES('105', '25', '46', 'Protected \"[[Template:Ambox]]\" ([edit=sysop] (indefinite) [move=sysop] (indefinite))', '1', 'Daniel', '20090321231355', '1', '0', '919', '50');
INSERT INTO mw_revision VALUES('52', '26', '48', 'Created page with \'<table class=\"metadata plainlinks ambox {{#switch:{{{small|}}} | left = mbox-small-left }} {{#switch:{{{type|}}} | speedy     = ambox-speedy | delete     = ambox-delete | content...\'', '1', 'Daniel', '20090321002457', '0', '0', '2697', '0');
INSERT INTO mw_revision VALUES('106', '26', '48', 'Protected \"[[Template:Ambox/core]]\" ([edit=sysop] (indefinite) [move=sysop] (indefinite))', '1', 'Daniel', '20090321231402', '1', '0', '2697', '52');
INSERT INTO mw_revision VALUES('57', '27', '53', 'Created page with \'Lunar Flare is the first guild to appear on SoapRO.  Its leader is [[Lucent]].\'', '5', 'Lucent', '20090321003732', '0', '0', '78', '0');
INSERT INTO mw_revision VALUES('61', '27', '56', '', '5', 'Lucent', '20090321004007', '0', '0', '82', '57');
INSERT INTO mw_revision VALUES('157', '27', '133', '', '1', 'Daniel', '20090324134712', '0', '0', '185', '61');
INSERT INTO mw_revision VALUES('158', '27', '134', '', '1', 'Daniel', '20090324134835', '0', '0', '196', '157');
INSERT INTO mw_revision VALUES('159', '27', '135', '', '1', 'Daniel', '20090324134952', '0', '0', '169', '158');
INSERT INTO mw_revision VALUES('161', '27', '137', '', '1', 'Daniel', '20090324135129', '0', '0', '169', '159');
INSERT INTO mw_revision VALUES('169', '27', '145', '', '1', 'Daniel', '20090324140837', '0', '0', '175', '161');
INSERT INTO mw_revision VALUES('172', '27', '148', '', '1', 'Daniel', '20090324142847', '0', '0', '197', '169');
INSERT INTO mw_revision VALUES('173', '27', '149', '', '1', 'Daniel', '20090324145111', '0', '0', '196', '172');
INSERT INTO mw_revision VALUES('175', '27', '151', '', '1', 'Daniel', '20090324145328', '0', '0', '281', '173');
INSERT INTO mw_revision VALUES('176', '27', '152', '', '1', 'Daniel', '20090324145438', '0', '0', '196', '175');
INSERT INTO mw_revision VALUES('177', '27', '153', '', '1', 'Daniel', '20090324145521', '0', '0', '244', '176');
INSERT INTO mw_revision VALUES('178', '27', '154', '', '1', 'Daniel', '20090324145531', '0', '0', '196', '177');
INSERT INTO mw_revision VALUES('58', '28', '54', '', '1', 'Daniel', '20090321003900', '0', '0', '0', '0');
INSERT INTO mw_revision VALUES('59', '28', '54', 'Protected \"[[File:Imbox protection.png]]\" ([edit=sysop] (indefinite) [move=sysop] (indefinite))', '1', 'Daniel', '20090321003909', '1', '0', NULL, '58');
INSERT INTO mw_revision VALUES('60', '29', '55', '', '1', 'Daniel', '20090321003946', '0', '0', '0', '0');
INSERT INTO mw_revision VALUES('65', '30', '60', 'Created page with \'{{mbox | type  = protection | style = CSS values | textstyle  = CSS values | text  = \'\'\'WARNING:\'\'\' This page has been locked so that only users with administrator privileges can...\'', '2', 'Spirit', '20090321005212', '0', '0', '396', '0');
INSERT INTO mw_revision VALUES('66', '30', '60', 'Protected \"[[Spirit]]\": High traffic page ([edit=sysop] (indefinite) [move=sysop] (indefinite))', '2', 'Spirit', '20090321005242', '1', '0', '396', '65');
INSERT INTO mw_revision VALUES('69', '31', '63', 'Redirected page to [[Lucent]]', '5', 'Lucent', '20090321005524', '0', '0', '20', '0');
INSERT INTO mw_revision VALUES('71', '32', '65', 'Redirected page to [[Lucent]]', '5', 'Lucent', '20090321005636', '0', '0', '20', '0');
INSERT INTO mw_revision VALUES('79', '33', '73', 'Created page with \'<!--        BANNER ACROSS TOP OF PAGE        --> {| id=\"mp-topbanner\" style=\"width:100%; background:#fcfcfc; margin-top:1.2em; border:1px solid #ccc;\" | style=\"width:56%; color:#...\'', '1', 'Daniel', '20090321223653', '0', '0', '4934', '0');
INSERT INTO mw_revision VALUES('81', '33', '75', '', '1', 'Daniel', '20090321224216', '0', '0', '4314', '79');
INSERT INTO mw_revision VALUES('82', '33', '76', '', '1', 'Daniel', '20090321224340', '0', '0', '4284', '81');
INSERT INTO mw_revision VALUES('83', '33', '77', '', '1', 'Daniel', '20090321225409', '0', '0', '3703', '82');
INSERT INTO mw_revision VALUES('84', '33', '78', '', '1', 'Daniel', '20090321225646', '0', '0', '3779', '83');
INSERT INTO mw_revision VALUES('85', '33', '78', 'Protected \"[[Porn]]\" ([edit=sysop] (indefinite) [move=sysop] (indefinite))', '1', 'Daniel', '20090321225747', '1', '0', '3779', '84');
INSERT INTO mw_revision VALUES('86', '33', '79', '', '1', 'Daniel', '20090321230136', '0', '0', '3457', '85');
INSERT INTO mw_revision VALUES('87', '33', '80', '', '1', 'Daniel', '20090321230219', '0', '0', '3365', '86');
INSERT INTO mw_revision VALUES('88', '33', '81', '', '1', 'Daniel', '20090321230414', '0', '0', '3457', '87');
INSERT INTO mw_revision VALUES('92', '33', '84', '', '1', 'Daniel', '20090321230820', '0', '0', '2988', '88');
INSERT INTO mw_revision VALUES('93', '33', '85', '', '1', 'Daniel', '20090321230905', '0', '0', '2994', '92');
INSERT INTO mw_revision VALUES('80', '34', '74', 'Created page with \'Lucent is king of the [[Back Alley]]\'', '1', 'Daniel', '20090321223817', '0', '0', '36', '0');
INSERT INTO mw_revision VALUES('135', '34', '74', 'Protected \"[[Template:Did you know]]\" ([edit=sysop] (indefinite) [move=sysop] (indefinite))', '1', 'Daniel', '20090322003314', '1', '0', '36', '80');
INSERT INTO mw_revision VALUES('139', '34', '115', '', '1', 'Daniel', '20090322004113', '0', '0', '36', '135');
INSERT INTO mw_revision VALUES('89', '35', '82', 'Created page with \'<includeonly>[[simple:]] [[ar:]] [[id:]] [[ms:]] [[bpy:]] [[br:]] [[bs:]] [[bg:]] [[ca:]] [[cs:]] [[cy:]] [[da:]] [[de:]] [[et:]] [[el:]] [[es:]] [[eo:]] [[eu:]] [[fa:]] [[fr:]] ...\'', '1', 'Daniel', '20090321230427', '0', '0', '531', '0');
INSERT INTO mw_revision VALUES('90', '35', '82', 'Protected \"[[Template:MainPageInterwikis]]\" ([edit=sysop] (indefinite) [move=sysop] (indefinite))', '1', 'Daniel', '20090321230434', '1', '0', '531', '89');
INSERT INTO mw_revision VALUES('91', '35', '83', 'Blanked the page', '1', 'Daniel', '20090321230559', '0', '0', '0', '90');
INSERT INTO mw_revision VALUES('94', '36', '86', 'Created page with \'THIS PAGE SUCKS. >: (\'', '4', 'Siucune', '20090321230923', '1', '0', '21', '0');
INSERT INTO mw_revision VALUES('98', '36', '88', '', '4', 'Siucune', '20090321231221', '0', '0', '218', '94');
INSERT INTO mw_revision VALUES('123', '36', '103', '', '2', 'Spirit', '20090322001519', '0', '0', '168', '98');
INSERT INTO mw_revision VALUES('95', '37', '87', 'Created page with \'<!--   Please note - this template is shown on the Main Page, and any changes or screw-ups you make will appear there immediately. Make changes very carefully, and always use the...\'', '1', 'Daniel', '20090321231144', '0', '0', '679', '0');
INSERT INTO mw_revision VALUES('96', '37', '87', 'Protected \"[[Template:Main Page banner]]\" ([edit=sysop] (indefinite) [move=sysop] (indefinite))', '1', 'Daniel', '20090321231151', '1', '0', '679', '95');
INSERT INTO mw_revision VALUES('107', '38', '89', 'Created page with \'== OrgyPedia==  If you actually got to this page without clicking buttons, you\'re a hero\'', '1', 'Daniel', '20090321231447', '0', '0', '88', '0');
INSERT INTO mw_revision VALUES('138', '38', '89', 'Protected \"[[OrgyPedia]]\" ([edit=sysop] (indefinite) [move=sysop] (indefinite))', '1', 'Daniel', '20090322003946', '1', '0', '88', '107');
INSERT INTO mw_revision VALUES('111', '39', '92', 'Created page with \'== SoapWiki Administrators == [[Spirit]] [[Daniel]] [[Siucune]]\'', '1', 'Daniel', '20090321231854', '0', '0', '63', '0');
INSERT INTO mw_revision VALUES('112', '39', '93', '', '1', 'Daniel', '20090321231902', '0', '0', '65', '111');
INSERT INTO mw_revision VALUES('113', '39', '93', 'Protected \"[[Administrators]]\" ([edit=sysop] (indefinite) [move=sysop] (indefinite))', '1', 'Daniel', '20090321231916', '1', '0', '65', '112');
INSERT INTO mw_revision VALUES('115', '39', '95', '', '2', 'Spirit', '20090321233739', '0', '0', '21234', '113');
INSERT INTO mw_revision VALUES('122', '39', '102', '', '1', 'Daniel', '20090322001201', '0', '0', '17011', '115');
INSERT INTO mw_revision VALUES('124', '39', '104', '', '1', 'Daniel', '20090322001531', '0', '0', '16511', '122');
INSERT INTO mw_revision VALUES('117', '40', '97', 'Created page with \'SoapRO\'s wiki.\'', '2', 'Spirit', '20090321235413', '0', '0', '14', '0');
INSERT INTO mw_revision VALUES('125', '42', '105', 'Created page with \' === Flagging An Article === If you believe that an article you see on SoapWiki is offensive, contains offensive material or is otherwise redundant and contains False Information...\'', '1', 'Daniel', '20090322001900', '0', '0', '498', '0');
INSERT INTO mw_revision VALUES('126', '43', '106', 'Created page with \'{{rellink|extraclasses=noprint relarticle mainarticle|Main article{{#if:{{{2|}}}|s}}: [[{{{1}}}|{{{l1|{{{1}}}}}}]]{{#if:{{{2| }}}  |{{#if:{{{3|}}}|,&#32;|&#32;and&#32;}}[[{{{2}}}...\'', '1', 'Daniel', '20090322001951', '0', '0', '1019', '0');
INSERT INTO mw_revision VALUES('129', '43', '106', 'Protected \"[[Template:Main]]\" ([edit=sysop] (indefinite) [move=sysop] (indefinite))', '1', 'Daniel', '20090322002243', '1', '0', '1019', '126');
INSERT INTO mw_revision VALUES('127', '44', '107', 'Created page with \'<div class=\"rellink{{#if:{{{extraclasses|}}}|<nowiki> </nowiki>{{{extraclasses}}}}}\" style=\"font-style:italic; padding-left:2em;\">{{{1}}}</div><noinclude> {{pp-template|small=yes...\'', '1', 'Daniel', '20090322002158', '0', '0', '211', '0');
INSERT INTO mw_revision VALUES('128', '44', '107', 'Protected \"[[Template:Rellink]]\" ([edit=sysop] (indefinite) [move=sysop] (indefinite))', '1', 'Daniel', '20090322002229', '1', '0', '211', '127');
INSERT INTO mw_revision VALUES('149', '45', '125', 'Created page with \'If you have Rank 1 on the server, feel free to brag.\'', '1', 'Daniel', '20090322005428', '0', '0', '52', '0');
INSERT INTO mw_revision VALUES('152', '46', '128', 'Created page with \'This page is dedicated to the story of SoapRO v3.0\'s first WoE (which was epic, btw).\'', '2', 'Spirit', '20090322042108', '0', '0', '85', '0');
INSERT INTO mw_revision VALUES('156', '47', '132', 'Created page with \'{{ infobox | bodyclass  = biography vcard vevent | bodystyle  = width:{{#if:{{{box_width|}}}|{{{box_width}}} |22em}}; font-size:95%; text-align:left; | above      = \'\'\'{{{name|{{...\'', '1', 'Daniel', '20090324134436', '0', '0', '4183', '0');
INSERT INTO mw_revision VALUES('160', '47', '136', '', '1', 'Daniel', '20090324135026', '0', '0', '4191', '156');
INSERT INTO mw_revision VALUES('166', '47', '142', '', '1', 'Daniel', '20090324140644', '0', '0', '4191', '160');
INSERT INTO mw_revision VALUES('167', '47', '143', '', '1', 'Daniel', '20090324140719', '0', '0', '4191', '166');
INSERT INTO mw_revision VALUES('168', '47', '144', '', '1', 'Daniel', '20090324140825', '0', '0', '4203', '167');
INSERT INTO mw_revision VALUES('171', '47', '147', '', '1', 'Daniel', '20090324142733', '0', '0', '4202', '168');
INSERT INTO mw_revision VALUES('162', '48', '138', 'Created page with \'Administrators\'', '1', 'Daniel', '20090324135404', '0', '0', '14', '0');
INSERT INTO mw_revision VALUES('163', '49', '139', 'Created page with \'WikiMod\'', '1', 'Daniel', '20090324135523', '0', '0', '7', '0');
INSERT INTO mw_revision VALUES('164', '50', '140', 'Created page with \'Administrators\'', '1', 'Daniel', '20090324135841', '0', '0', '14', '0');
INSERT INTO mw_revision VALUES('165', '51', '141', 'Created page with \'WikiMod\'', '1', 'Daniel', '20090324135905', '0', '0', '7', '0');
INSERT INTO mw_revision VALUES('170', '52', '146', 'Lunar Flare emblem as of March 24th', '1', 'Daniel', '20090324142645', '0', '0', '35', '0');
INSERT INTO mw_revision VALUES('174', '53', '150', 'Created page with \' #Leave this line exactly as it is<pre> #Put regular expression fragments (just the part that goes between the //) below #These will be matched with the URLs of external (hotlink...\'', '1', 'Daniel', '20090324145201', '0', '0', '498', '0');
INSERT INTO mw_revision VALUES('180', '54', '156', 'Created page with \'The Bath EP is an album composed by [[Lucent]] and it is made of 6 tracks in 128kbps .mp3 format.  It is available for $3.00 USD on the [http://ro.soapstudios.org/forums SopaRO f...\'', '6', 'Ramzah', '20090326061910', '0', '0', '471', '0');



DROP TABLE IF EXISTS mw_searchindex;
CREATE TABLE `mw_searchindex` (
  `si_page` int(10) unsigned NOT NULL,
  `si_title` varchar(255) NOT NULL default '',
  `si_text` mediumtext NOT NULL,
  UNIQUE KEY `si_page` (`si_page`),
  FULLTEXT KEY `si_title` (`si_title`),
  FULLTEXT KEY `si_text` (`si_text`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

INSERT INTO mw_searchindex VALUES('2', 'daniel', ' hello youu800 have reached this page. ');
INSERT INTO mw_searchindex VALUES('3', 'general disclaimer', ' theu800 staff atu800 soapro make nou800 guarantee that theu800 information contained within theu800 wiki articles isu800 fully accurate. ifu800 youu800 believe that false information hasu800 been supplied tou800 usu800 youu800 mayu800 want tou800 edit theu800 information yourself oru800 flag itu800 foru800 review byu800 appending au800 link tou800 theu800 article inu800 question asu800 well asu800 au800 reference sou800 weu800 know where tou800 look. ');
INSERT INTO mw_searchindex VALUES('1', 'main page', ' mbox type protection style cssu800 values textstyle cssu800 values text  notice   soapwiki isu800 still inu800  alpha  andu800 therefore many things will change often. this page isu800 protected andu800 mayu800 only beu800 edited byu800 administrators . small small left yesu800 smalltext au800 shorter message body text. -- banner across topu800 ofu800 page -- idu800 mpu800-topbanner style width 100u800 ; background #fcfcfc; margin-topu800 1u800u82e2emu800; border 1pxu800 solid #cccu800; style width 56u800 ; color #000u800; -- welcome tou800 wikipedia andu800 article count -- style width 280px; border none; background none; style width 280px; text-align center; white-space nowrap; color #000u800; welcome tou800 soapwiki weu800 currently have special statistics numberofarticles articles inu800 english. -- strapline immediately below banner -- idu800 mpu800-strapline style width 100u800 ; background none; margin -.8emu800 0u800 -.7emu800 0u800; style font-size 95u800 ; padding 10px 0u800; margin 0u800; text-align right; white-space nowrap; color #000u800; main page banner -- today\'su800 featured article; didu800 youu800 know -- idu800 mpu800-upper style margin 0u800 0u800 0u800 0u800; background none; class mainpagebg style width 55u800 ; border 1pxu800 solid #cef2e0; background #f5fffa; vertical-align topu800; color #000u800; idu800 mpu800-left cellpadding 2u800 cellspacing 5u800 style width 100u800 ; vertical-align topu800; background #f5fffa; today\'su800 featured article - style color #000u800; . - didu800 youu800 know... - style color #000u800; didu800 youu800 know style border 1pxu800 solid transparent; -- inu800 theu800 news; onu800 this dayu800 -- class mainpagebg style width 45u800 ; border 1pxu800 solid #cedff2; background #f5faff; vertical-align topu800; idu800 mpu800-right cellpadding 2u800 cellspacing 5u800 style width 100u800 ; vertical-align topu800; background #f5faff; recent game updates - style color #000u800; this section will contain updates relating tou800 inu800-game things. - onu800 this dayu800... - style color #000u800; lucent\'su800 momu800 calls lucent anu800 idiot over teamspeak . -- interwiki strapline -- mainpageinterwikis __notoc____noeditsection__ ');
INSERT INTO mw_searchindex VALUES('4', 'spirit', ' ppu800-semi-vandalism small yesu800 infobox musical artist name spirit imgu800 background server_owner birth_name scott . alias kailure born june 6thu800 . origin howell newu800 jersey united states uu800u82esu800. occupation full-time student urlu800 ');
INSERT INTO mw_searchindex VALUES('5', 'lucent', ' infobox person name lucent caption crimson seraph birth_place canada other_names nightshine known_for lunar flare guild leader bath epu800 creator being anu800 annoyance  lucent  akau800  nightshine  isu800 oneu800 ofu800 theu800 eight original members ofu800 soapro theu800 leader ofu800 theu800 guild lunar flare andu800 au800 contributing member tou800 soapro\'su800 society. heu800 developed theu800 bath epu800 andu800 isu800 theu800 self proclaimed king ofu800 theu800 back alley history history history after lucent hadu800 au800 longed outu800 waru800 with theu800 server\'su800 administrators over atu800 theu800 previous server heu800 played onu800 heu800 joined soapro viau800 rate myu800 server\'su800 database. originally planning tou800 beu800 au800 troll lucent found that theu800 server\'su800 attitude wasu800 different from what heu800 expected andu800 afterwards became au800 contributing member tou800 theu800 community. heu800 just wanted someone tou800 edit hisu800 article heu800 just wanted someone tou800 edit hisu800 article heu800 just wanted someone tou800 edit hisu800 article hiu800 lucent iu800 canu800 seeu800 youu800 ');
INSERT INTO mw_searchindex VALUES('6', 'sandbox', ' this isu800 au800 fuckaround page foru800 testing. ');
INSERT INTO mw_searchindex VALUES('7', 'daniel', ' mbox type protection style cssu800 values textstyle cssu800 values text  warning   this article hasu800 been protected only administrators canu800 edit itu800. ifu800 youu800 need tou800 make anu800 edit please append your edit tou800 theu800 discussion page ofu800 this article andu800 someone will review. small small left yesu800 smalltext au800 shorter message body text. infobox person name daniel guild lunar flare characters dick cheney muu800 soldier birth_place canada occupation soapro wiki admin  daniel  isu800 theu800 father ofu800 soapwiki. theu800 mother ofu800 soapwiki however isu800 rumored tou800 beu800 au800 manu800-mother. heu800 isu800 also theu800 forum\'su800 technical admin meaning that heu800 provides technical support when au800 feature isu800 broken oru800 installing newu800 features which require template edits. looking foru800 daniel\'su800 tits looking foru800 daniel\'su800 tits looking foru800 daniel\'su800 tits onu800  march 19th 2009  anu800 epic adventure took place inu800 theu800 teamspeak . daniel went onu800 said epic adventure tou800 look foru800 hisu800 tits. lucent andu800 siucune were present atu800 theu800 time. inu800 theu800 endu800 daniel found hisu800 tits. ');
INSERT INTO mw_searchindex VALUES('8', 'userinfo', ' cellpadding 0u800 cellspacing 0u800 border 1u800 align right style font-family verdana sans-serif; margin 0u800 0u800 1emu800 1emu800; font-size 10px; background-color #f7f8ff; border 1pxu800 solid #8888aa; border-collapse collapse; width 256px - bgcolor #cfcfcf align center colspan 2u800  user information  - align center colspan 2u800 username \'su800 mini profile - style padding 0pxu800 5pxu800 real name style padding 0pxu800 5pxu800 name - style padding 0pxu800 5pxu800 date ofu800 birth style padding 0pxu800 5pxu800 born - style padding 0pxu800 5pxu800 gender style padding 0pxu800 5pxu800 gender - style padding 0pxu800 5pxu800 location style padding 0pxu800 5pxu800 location - style padding 0pxu800 5pxu800 forum profile style padding 0pxu800 5pxu800 http wwwu800u82erou800u82esoapstudiosu82eorgu800 forums memberu82ephpu800 uu800 userid profile - ');
INSERT INTO mw_searchindex VALUES('9', 'infobox person', ' infobox person name image caption birth_date birth date yyyy mmu800 ddu800 birth_place death_date -- death date andu800 ageu800 yyyy mmu800 ddu800 yyyy mmu800 ddu800 -- death_place other_names known_for occupation nationality ');
INSERT INTO mw_searchindex VALUES('10', 'infobox person', ' infobox person name image caption birth_date birth date yyyy mmu800 ddu800 birth_place death_date -- death date andu800 ageu800 yyyy mmu800 ddu800 yyyy mmu800 ddu800 -- death_place other_names known_for occupation nationality ');
INSERT INTO mw_searchindex VALUES('11', 'documentation', ' -- these areu800 theu800 literal class definitions inu800 commonu82ecssu800 foru800 template documentation .template-documentation clear both; margin 1emu800 0u800 0u800 0u800; border 1pxu800 solid #aaau800; background-color #ecfcf4; padding 5pxu800; -- #ifeq heading u8cebc -- defined butu800 empty -- -- nothing -- #ifeq content u8cebc u8cebc #ifexist 1u800 documentation docname -- docu800 exists -- fullurl 1u800 documentation docname action edit edit purge purge -- docu800 doesn\'tu800 exist -- fullurl 1u800 documentation docname action edit&preload template documentation preload create #ifu800 heading heading #ifeq namespace nsu800 template image template-infou82esvgu800 50px template documentation documentation -- -- -- -- #ifexist 1u800 documentation docname -- docu800 exists -- this wikipedia template documentation documentation isu800 wikipedia transclusion transcluded from 1u800 documentation docname . fullurl 1u800 documentation docname action edit edit &#124u800; fullurl 1u800 documentation docname action history history -- -- #switch subpagename sandbox testcases -- dou800 notu800 show these links onu800 theu800 sandbox testcases pages -- #default #switch subjectspace nsu800 template nsu800 user #ifexist fullpagename sandbox this template hasu800 au800 sandbox sandbox fullurl #rel2abs sandbox action edit edit -- -- #ifexist fullpagename testcases andu800 testcases testcases fullurl #rel2abs testcases action edit edit foru800 editors tou800 experiment. #ifexist fullpagename testcases this template hasu800 testcases testcases fullurl #rel2abs testcases action edit edit foru800 editors tou800 experiment. #ifu800 content content #ifexist 1u800 documentation docname 1u800 documentation docname ppu800-template small yesu800 -- addu800 categories andu800 interwikis tou800 theu800 docu800 subpage notu800 here -- ');
INSERT INTO mw_searchindex VALUES('12', 'ppu800-template', ' ppu800-meta type #switch demolevel protectionlevel edit semi autoconfirmed semi administrator full sysop indef #default indef --fallback value-- small small yesu800 demospace demospace demolevel #ifeq pagename namespace subpagename nsu800 template demolevel undefined #ifeq lcu800 subpagename sandbox sysop demolevel undefined expiry --notu800 applicable-- dispute nou800 icon-text this #ifeq namespace nsu800 6u800 image included inu800 au800 high-risk template oru800 message high-risk template isu800 indefinitely #switch demolevel protectionlevel edit semi autoconfirmed semi- administrator full sysop #default --fallback value-- protected from editing tou800 prevent vandalism. reason-text this #switch namespace nsu800 image image used inu800 oneu800 oru800 more wikipedia high-risk templates high-risk templates #switch demolevel protectionlevel edit semi autoconfirmed administrator full sysop andu800 oru800 special allmessages system messages #default --fallback value-- #default wikipedia high-risk templates high-risk template hasu800 been wikipedia this page isu800 protected #switch demolevel protectionlevel edit semi autoconfirmed semi- administrator full sysop --uses default-- #default --fallback value-- protected from editing tou800 prevent wikipedia vandalism vandalism . #switch demolevel protectionlevel edit semi autoconfirmed administrator full sysop --uses default-- #default #switch namespace nsu800 image  dou800 notu800 move this image  tou800 commons wikimedia commons . categories categories #ifeq namespace nsu800 10u800 category wikipedia #switch demolevel protectionlevel edit semi autoconfirmed semi- administrator full sysop --uses default-- #default --fallback value-- protected templates pagename #ifeq namespace nsu800 6u800 category #switch demolevel protectionlevel edit semi autoconfirmed semi-protected administrator full sysop --uses default-- #default protected --fallback value-- images pagename ppu800-template categories nou800 -- show theu800 small version -- ppu800-template small nou800 -- show theu800 large version -- documentation -- addu800 categories andu800 interwikis tou800 theu800 docu800 subpage notu800 here -- ');
INSERT INTO mw_searchindex VALUES('13', 'infobox person', ' infobox bodyclass biography vcard vevent bodystyle width #ifu800 box_width box_width 22em ; font-size 95u800 ; text-align left; above   name pagename   aboveclass fnu800 summary abovestyle text-align center; font-size 125u800 ; image #ifu800 image image image #ifu800 image_size imagesize image_size imagesize 225px imageclass image class names image imagestyle padding 4ptu800; line-height 1u800u82e25em; text-align center; font-size 8ptu800; caption caption labelstyle padding 0u800u82e2emu800 1u800u82e0emu800 0u800u82e2emu800 0u800u82e2emu800; background transparent; line-height 1u800u82e2emu800; text-align left; font-size 90u800 ; datastyle padding 0u800u82e2emu800; line-height 1u800u82e3emu800; vertical-align middle; font-size 90u800 ; data39 characters label39 characters data40 guild label40 guild&nbsp;membership data41 guildmaster label41 guild&nbsp;master label1 #ifu800 birth_name birth_date birth_place born data1 #ifu800 birth_name birth_name #ifu800 birth_date birth_date birth_place label2 #ifu800 death_date death_place died data2 #ifu800 death_date death_date death_place label3 cause&nbsp;ofu800 death data3 death_cause label4 body discovered data4 body_discovered label5 resting&nbsp;place class5 label data5 resting_place #ifu800 resting_place_coordinates resting_place_coordinates label6 residence class6 label data6 residence class7 category label7 nationality data7 nationality label8 other&nbsp;names class8 nickname data8 other_names class9 category label9 ethnicity data9 ethnicity class10 category label10 citizenship data10 citizenship label11 education data11 education label12 alma&nbsp;mater data12 alma_mater label13 occupation class13 role data13 occupation label14 years active data14 years_active label15 employer data15 employer label16 home&nbsp;town data16 home_town label17 salary data17 salary label18 netu800&nbsp;worth data18 networth label19 height data19 height label20 weight data20 weight label21 known&nbsp;foru800 data21 known known_for label22 title data22 title label23 term data23 term label24 predecessor data24 predecessor label25 successor data25 successor label26 political&nbsp;party data26 party label27 opponent su800 data27 opponents label28 board member&nbsp;ofu800 data28 boards label29 religious beliefs data29 religion label30 spouse su800 data30 spouse label31 partner data31 partner label32 children data32 children label33 parents data33 parents label34 relatives data34 relations relatives label35 call-sign data35 callsign data36 #ifu800 signature  signature  image signature 128px data37 #ifu800 website  website  website data38 #ifu800 footnotes  notes  footnotes ppu800-template small yesu800 documentation ---please addu800 metadata tou800 theu800 section atu800 theu800 bottom ofu800 theu800 docu800 subpage--- ');
INSERT INTO mw_searchindex VALUES('14', 'test', ' infobox person name image caption birth_date birth date yyyy mmu800 ddu800 birth_place death_date -- death date andu800 ageu800 yyyy mmu800 ddu800 yyyy mmu800 ddu800 -- death_place other_names known_for occupation nationality ');
INSERT INTO mw_searchindex VALUES('15', 'infobox', ' class infobox bodyclass cellspacing 5u800 style width 22em; text-align left; font-size 88u800 ; line-height 1u800u82e5emu800; bodystyle -- caption -- #ifu800 title class titleclass style font-size 125u800 ; font-weight bold; titlestyle title -- header -- #ifu800 above - colspan 2u800 class aboveclass style text-align center; font-size 125u800 ; font-weight bold; abovestyle above -- subheader -- #ifu800 subheader - colspan 2u800 class subheaderclass style text-align center; subheaderstyle subheader -- image -- #ifu800 image - colspan 2u800 class imageclass style text-align center; imagestyle image #ifu800 caption caption -- rowu800 1u800 -- #ifu800 header1 - colspan 2u800 style text-align center; headerstyle header1 -- -- #ifu800 label1 #ifu800 data1 - style labelstyle label1 class class1 style datastyle data1 #ifu800 data1 - colspan 2u800 class class1 style text-align center; datastyle data1 -- rowu800 2u800 -- #ifu800 header2 - colspan 2u800 style text-align center; headerstyle header2 -- -- #ifu800 label2 #ifu800 data2 - style labelstyle label2 class class2 style datastyle data2 #ifu800 data2 - colspan 2u800 class class2 style text-align center; datastyle data2 -- rowu800 3u800 -- #ifu800 header3 - colspan 2u800 style text-align center; headerstyle header3 -- -- #ifu800 label3 #ifu800 data3 - style labelstyle label3 class class3 style datastyle data3 #ifu800 data3 - colspan 2u800 class class3 style text-align center; datastyle data3 -- rowu800 4u800 -- #ifu800 header4 - colspan 2u800 style text-align center; headerstyle header4 -- -- #ifu800 label4 #ifu800 data4 - style labelstyle label4 class class4 style datastyle data4 #ifu800 data4 - colspan 2u800 class class4 style text-align center; datastyle data4 -- rowu800 5u800 -- #ifu800 header5 - colspan 2u800 style text-align center; headerstyle header5 -- -- #ifu800 label5 #ifu800 data5 - style labelstyle label5 class class5 style datastyle data5 #ifu800 data5 - colspan 2u800 class class5 style text-align center; datastyle data5 -- rowu800 6u800 -- #ifu800 header6 - colspan 2u800 style text-align center; headerstyle header6 -- -- #ifu800 label6 #ifu800 data6 - style labelstyle label6 class class6 style datastyle data6 #ifu800 data6 - colspan 2u800 class class6 style text-align center; datastyle data6 -- rowu800 7u800 -- #ifu800 header7 - colspan 2u800 style text-align center; headerstyle header7 -- -- #ifu800 label7 #ifu800 data7 - style labelstyle label7 class class7 style datastyle data7 #ifu800 data7 - colspan 2u800 class class7 style text-align center; datastyle data7 -- rowu800 8u800 -- #ifu800 header8 - colspan 2u800 style text-align center; headerstyle header8 -- -- #ifu800 label8 #ifu800 data8 - style labelstyle label8 class class8 style datastyle data8 #ifu800 data8 - colspan 2u800 class class8 style text-align center; datastyle data8 -- rowu800 9u800 -- #ifu800 header9 - colspan 2u800 style text-align center; headerstyle header9 -- -- #ifu800 label9 #ifu800 data9 - style labelstyle label9 class class9 style datastyle data9 #ifu800 data9 - colspan 2u800 class class9 style text-align center; datastyle data9 -- rowu800 10u800 -- #ifu800 header10 - colspan 2u800 style text-align center; headerstyle header10 -- -- #ifu800 label10 #ifu800 data10 - style labelstyle label10 class class10 style datastyle data10 #ifu800 data10 - colspan 2u800 class class10 style text-align center; datastyle data10 -- rowu800 11u800 -- #ifu800 header11 - colspan 2u800 style text-align center; headerstyle header11 -- -- #ifu800 label11 #ifu800 data11 - style labelstyle label11 class class11 style datastyle data11 #ifu800 data11 - colspan 2u800 class class11 style text-align center; datastyle data11 -- rowu800 12u800 -- #ifu800 header12 - colspan 2u800 style text-align center; headerstyle header12 -- -- #ifu800 label12 #ifu800 data12 - style labelstyle label12 class class12 style datastyle data12 #ifu800 data12 - colspan 2u800 class class12 style text-align center; datastyle data12 -- rowu800 13u800 -- #ifu800 header13 - colspan 2u800 style text-align center; headerstyle header13 -- -- #ifu800 label13 #ifu800 data13 - style labelstyle label13 class class13 style datastyle data13 #ifu800 data13 - colspan 2u800 class class13 style text-align center; datastyle data13 -- rowu800 14u800 -- #ifu800 header14 - colspan 2u800 style text-align center; headerstyle header14 -- -- #ifu800 label14 #ifu800 data14 - style labelstyle label14 class class14 style datastyle data14 #ifu800 data14 - colspan 2u800 class class14 style text-align center; datastyle data14 -- rowu800 15u800 -- #ifu800 header15 - colspan 2u800 style text-align center; headerstyle header15 -- -- #ifu800 label15 #ifu800 data15 - style labelstyle label15 class class15 style datastyle data15 #ifu800 data15 - colspan 2u800 class class15 style text-align center; datastyle data15 -- rowu800 16u800 -- #ifu800 header16 - colspan 2u800 style text-align center; headerstyle header16 -- -- #ifu800 label16 #ifu800 data16 - style labelstyle label16 class class16 style datastyle data16 #ifu800 data16 - colspan 2u800 class class16 style text-align center; datastyle data16 -- rowu800 17u800 -- #ifu800 header17 - colspan 2u800 style text-align center; headerstyle header17 -- -- #ifu800 label17 #ifu800 data17 - style labelstyle label17 class class17 style datastyle data17 #ifu800 data17 - colspan 2u800 class class17 style text-align center; datastyle data17 -- rowu800 18u800 -- #ifu800 header18 - colspan 2u800 style text-align center; headerstyle header18 -- -- #ifu800 label18 #ifu800 data18 - style labelstyle label18 class class18 style datastyle data18 #ifu800 data18 - colspan 2u800 class class18 style text-align center; datastyle data18 -- rowu800 19u800 -- #ifu800 header19 - colspan 2u800 style text-align center; headerstyle header19 -- -- #ifu800 label19 #ifu800 data19 - style labelstyle label19 class class19 style datastyle data19 #ifu800 data19 - colspan 2u800 class class19 style text-align center; datastyle data19 -- rowu800 20u800 -- #ifu800 header20 - colspan 2u800 style text-align center; headerstyle header20 -- -- #ifu800 label20 #ifu800 data20 - style labelstyle label20 class class20 style datastyle data20 #ifu800 data20 - colspan 2u800 class class20 style text-align center; datastyle data20 -- rowu800 21u800 -- #ifu800 header21 - colspan 2u800 style text-align center; headerstyle header21 -- -- #ifu800 label21 #ifu800 data21 - style labelstyle label21 class class21 style datastyle data21 #ifu800 data21 - colspan 2u800 class class21 style text-align center; datastyle data21 -- rowu800 22u800 -- #ifu800 header22 - colspan 2u800 style text-align center; headerstyle header22 -- -- #ifu800 label22 #ifu800 data22 - style labelstyle label22 class class22 style datastyle data22 #ifu800 data22 - colspan 2u800 class class22 style text-align center; datastyle data22 -- rowu800 23u800 -- #ifu800 header23 - colspan 2u800 style text-align center; headerstyle header23 -- -- #ifu800 label23 #ifu800 data23 - style labelstyle label23 class class23 style datastyle data23 #ifu800 data23 - colspan 2u800 class class23 style text-align center; datastyle data23 -- rowu800 24u800 -- #ifu800 header24 - colspan 2u800 style text-align center; headerstyle header24 -- -- #ifu800 label24 #ifu800 data24 - style labelstyle label24 class class24 style datastyle data24 #ifu800 data24 - colspan 2u800 class class24 style text-align center; datastyle data24 -- rowu800 25u800 -- #ifu800 header25 - colspan 2u800 style text-align center; headerstyle header25 -- -- #ifu800 label25 #ifu800 data25 - style labelstyle label25 class class25 style datastyle data25 #ifu800 data25 - colspan 2u800 class class25 style text-align center; datastyle data25 -- rowu800 26u800 -- #ifu800 header26 - colspan 2u800 style text-align center; headerstyle header26 -- -- #ifu800 label26 #ifu800 data26 - style labelstyle label26 class class26 style datastyle data26 #ifu800 data26 - colspan 2u800 class class26 style text-align center; datastyle data26 -- rowu800 27u800 -- #ifu800 header27 - colspan 2u800 style text-align center; headerstyle header27 -- -- #ifu800 label27 #ifu800 data27 - style labelstyle label27 class class27 style datastyle data27 #ifu800 data27 - colspan 2u800 class class27 style text-align center; datastyle data27 -- rowu800 28u800 -- #ifu800 header28 - colspan 2u800 style text-align center; headerstyle header28 -- -- #ifu800 label28 #ifu800 data28 - style labelstyle label28 class class28 style datastyle data28 #ifu800 data28 - colspan 2u800 class class28 style text-align center; datastyle data28 -- rowu800 29u800 -- #ifu800 header29 - colspan 2u800 style text-align center; headerstyle header29 -- -- #ifu800 label29 #ifu800 data29 - style labelstyle label29 class class29 style datastyle data29 #ifu800 data29 - colspan 2u800 class class29 style text-align center; datastyle data29 -- rowu800 30u800 -- #ifu800 header30 - colspan 2u800 style text-align center; headerstyle header30 -- -- #ifu800 label30 #ifu800 data30 - style labelstyle label30 class class30 style datastyle data30 #ifu800 data30 - colspan 2u800 class class30 style text-align center; datastyle data30 -- rowu800 31u800 -- #ifu800 header31 - colspan 2u800 style text-align center; headerstyle header31 -- -- #ifu800 label31 #ifu800 data31 - style labelstyle label31 class class31 style datastyle data31 #ifu800 data31 - colspan 2u800 class class31 style text-align center; datastyle data31 -- rowu800 32u800 -- #ifu800 header32 - colspan 2u800 style text-align center; headerstyle header32 -- -- #ifu800 label32 #ifu800 data32 - style labelstyle label32 class class32 style datastyle data32 #ifu800 data32 - colspan 2u800 class class32 style text-align center; datastyle data32 -- rowu800 33u800 -- #ifu800 header33 - colspan 2u800 style text-align center; headerstyle header33 -- -- #ifu800 label33 #ifu800 data33 - style labelstyle label33 class class33 style datastyle data33 #ifu800 data33 - colspan 2u800 class class33 style text-align center; datastyle data33 -- rowu800 34u800 -- #ifu800 header34 - colspan 2u800 style text-align center; headerstyle header34 -- -- #ifu800 label34 #ifu800 data34 - style labelstyle label34 class class34 style datastyle data34 #ifu800 data34 - colspan 2u800 class class34 style text-align center; datastyle data34 -- rowu800 35u800 -- #ifu800 header35 - colspan 2u800 style text-align center; headerstyle header35 -- -- #ifu800 label35 #ifu800 data35 - style labelstyle label35 class class35 style datastyle data35 #ifu800 data35 - colspan 2u800 class class35 style text-align center; datastyle data35 -- rowu800 36u800 -- #ifu800 header36 - colspan 2u800 style text-align center; headerstyle header36 -- -- #ifu800 label36 #ifu800 data36 - style labelstyle label36 class class36 style datastyle data36 #ifu800 data36 - colspan 2u800 class class36 style text-align center; datastyle data36 -- rowu800 37u800 -- #ifu800 header37 - colspan 2u800 style text-align center; headerstyle header37 -- -- #ifu800 label37 #ifu800 data37 - style labelstyle label37 class class37 style datastyle data37 #ifu800 data37 - colspan 2u800 class class37 style text-align center; datastyle data37 -- rowu800 38u800 -- #ifu800 header38 - colspan 2u800 style text-align center; headerstyle header38 -- -- #ifu800 label38 #ifu800 data38 - style labelstyle label38 class class38 style datastyle data38 #ifu800 data38 - colspan 2u800 class class38 style text-align center; datastyle data38 -- rowu800 39u800 -- #ifu800 header39 - colspan 2u800 style text-align center; headerstyle header39 -- -- #ifu800 label39 #ifu800 data39 - style labelstyle label39 class class39 style datastyle data39 #ifu800 data39 - colspan 2u800 class class39 style text-align center; datastyle data39 -- rowu800 40u800 -- #ifu800 header40 - colspan 2u800 style text-align center; headerstyle header40 -- -- #ifu800 label40 #ifu800 data40 - style labelstyle label40 class class40 style datastyle data40 #ifu800 data40 - colspan 2u800 class class40 style text-align center; datastyle data40 -- rowu800 41u800 -- #ifu800 header41 - colspan 2u800 style text-align center; headerstyle header41 -- -- #ifu800 label41 #ifu800 data41 - style labelstyle label41 class class41 style datastyle data41 #ifu800 data41 - colspan 2u800 class class41 style text-align center; datastyle data41 -- rowu800 42u800 -- #ifu800 header42 - colspan 2u800 style text-align center; headerstyle header42 -- -- #ifu800 label42 #ifu800 data42 - style labelstyle label42 class class42 style datastyle data42 #ifu800 data42 - colspan 2u800 class class42 style text-align center; datastyle data42 -- rowu800 43u800 -- #ifu800 header43 - colspan 2u800 style text-align center; headerstyle header43 -- -- #ifu800 label43 #ifu800 data43 - style labelstyle label43 class class43 style datastyle data43 #ifu800 data43 - colspan 2u800 class class43 style text-align center; datastyle data43 -- rowu800 44u800 -- #ifu800 header44 - colspan 2u800 style text-align center; headerstyle header44 -- -- #ifu800 label44 #ifu800 data44 - style labelstyle label44 class class44 style datastyle data44 #ifu800 data44 - colspan 2u800 class class44 style text-align center; datastyle data44 -- rowu800 45u800 -- #ifu800 header45 - colspan 2u800 style text-align center; headerstyle header45 -- -- #ifu800 label45 #ifu800 data45 - style labelstyle label45 class class45 style datastyle data45 #ifu800 data45 - colspan 2u800 class class45 style text-align center; datastyle data45 -- rowu800 46u800 -- #ifu800 header46 - colspan 2u800 style text-align center; headerstyle header46 -- -- #ifu800 label46 #ifu800 data46 - style labelstyle label46 class class46 style datastyle data46 #ifu800 data46 - colspan 2u800 class class46 style text-align center; datastyle data46 -- rowu800 47u800 -- #ifu800 header47 - colspan 2u800 style text-align center; headerstyle header47 -- -- #ifu800 label47 #ifu800 data47 - style labelstyle label47 class class47 style datastyle data47 #ifu800 data47 - colspan 2u800 class class47 style text-align center; datastyle data47 -- rowu800 48u800 -- #ifu800 header48 - colspan 2u800 style text-align center; headerstyle header48 -- -- #ifu800 label48 #ifu800 data48 - style labelstyle label48 class class48 style datastyle data48 #ifu800 data48 - colspan 2u800 class class48 style text-align center; datastyle data48 -- rowu800 49u800 -- #ifu800 header49 - colspan 2u800 style text-align center; headerstyle header49 -- -- #ifu800 label49 #ifu800 data49 - style labelstyle label49 class class49 style datastyle data49 #ifu800 data49 - colspan 2u800 class class49 style text-align center; datastyle data49 -- rowu800 50u800 -- #ifu800 header50 - colspan 2u800 style text-align center; headerstyle header50 -- -- #ifu800 label50 #ifu800 data50 - style labelstyle label50 class class50 style datastyle data50 #ifu800 data50 - colspan 2u800 class class50 style text-align center; datastyle data50 -- rowu800 51u800 -- #ifu800 header51 - colspan 2u800 style text-align center; headerstyle header51 -- -- #ifu800 label51 #ifu800 data51 - style labelstyle label51 class class51 style datastyle data51 #ifu800 data51 - colspan 2u800 class class51 style text-align center; datastyle data51 -- rowu800 52u800 -- #ifu800 header52 - colspan 2u800 style text-align center; headerstyle header52 -- -- #ifu800 label52 #ifu800 data52 - style labelstyle label52 class class52 style datastyle data52 #ifu800 data52 - colspan 2u800 class class52 style text-align center; datastyle data52 -- rowu800 53u800 -- #ifu800 header53 - colspan 2u800 style text-align center; headerstyle header53 -- -- #ifu800 label53 #ifu800 data53 - style labelstyle label53 class class53 style datastyle data53 #ifu800 data53 - colspan 2u800 class class53 style text-align center; datastyle data53 -- rowu800 54u800 -- #ifu800 header54 - colspan 2u800 style text-align center; headerstyle header54 -- -- #ifu800 label54 #ifu800 data54 - style labelstyle label54 class class54 style datastyle data54 #ifu800 data54 - colspan 2u800 class class54 style text-align center; datastyle data54 -- rowu800 55u800 -- #ifu800 header55 - colspan 2u800 style text-align center; headerstyle header55 -- -- #ifu800 label55 #ifu800 data55 - style labelstyle label55 class class55 style datastyle data55 #ifu800 data55 - colspan 2u800 class class55 style text-align center; datastyle data55 -- rowu800 56u800 -- #ifu800 header56 - colspan 2u800 style text-align center; headerstyle header56 -- -- #ifu800 label56 #ifu800 data56 - style labelstyle label56 class class56 style datastyle data56 #ifu800 data56 - colspan 2u800 class class56 style text-align center; datastyle data56 -- rowu800 57u800 -- #ifu800 header57 - colspan 2u800 style text-align center; headerstyle header57 -- -- #ifu800 label57 #ifu800 data57 - style labelstyle label57 class class57 style datastyle data57 #ifu800 data57 - colspan 2u800 class class57 style text-align center; datastyle data57 -- rowu800 58u800 -- #ifu800 header58 - colspan 2u800 style text-align center; headerstyle header58 -- -- #ifu800 label58 #ifu800 data58 - style labelstyle label58 class class58 style datastyle data58 #ifu800 data58 - colspan 2u800 class class58 style text-align center; datastyle data58 -- rowu800 59u800 -- #ifu800 header59 - colspan 2u800 style text-align center; headerstyle header59 -- -- #ifu800 label59 #ifu800 data59 - style labelstyle label59 class class59 style datastyle data59 #ifu800 data59 - colspan 2u800 class class59 style text-align center; datastyle data59 -- rowu800 60u800 -- #ifu800 header60 - colspan 2u800 style text-align center; headerstyle header60 -- -- #ifu800 label60 #ifu800 data60 - style labelstyle label60 class class60 style datastyle data60 #ifu800 data60 - colspan 2u800 class class60 style text-align center; datastyle data60 -- rowu800 61u800 -- #ifu800 header61 - colspan 2u800 style text-align center; headerstyle header61 -- -- #ifu800 label61 #ifu800 data61 - style labelstyle label61 class class61 style datastyle data61 #ifu800 data61 - colspan 2u800 class class61 style text-align center; datastyle data61 -- rowu800 62u800 -- #ifu800 header62 - colspan 2u800 style text-align center; headerstyle header62 -- -- #ifu800 label62 #ifu800 data62 - style labelstyle label62 class class62 style datastyle data62 #ifu800 data62 - colspan 2u800 class class62 style text-align center; datastyle data62 -- rowu800 63u800 -- #ifu800 header63 - colspan 2u800 style text-align center; headerstyle header63 -- -- #ifu800 label63 #ifu800 data63 - style labelstyle label63 class class63 style datastyle data63 #ifu800 data63 - colspan 2u800 class class63 style text-align center; datastyle data63 -- rowu800 64u800 -- #ifu800 header64 - colspan 2u800 style text-align center; headerstyle header64 -- -- #ifu800 label64 #ifu800 data64 - style labelstyle label64 class class64 style datastyle data64 #ifu800 data64 - colspan 2u800 class class64 style text-align center; datastyle data64 -- rowu800 65u800 -- #ifu800 header65 - colspan 2u800 style text-align center; headerstyle header65 -- -- #ifu800 label65 #ifu800 data65 - style labelstyle label65 class class65 style datastyle data65 #ifu800 data65 - colspan 2u800 class class65 style text-align center; datastyle data65 -- rowu800 66u800 -- #ifu800 header66 - colspan 2u800 style text-align center; headerstyle header66 -- -- #ifu800 label66 #ifu800 data66 - style labelstyle label66 class class66 style datastyle data66 #ifu800 data66 - colspan 2u800 class class66 style text-align center; datastyle data66 -- rowu800 67u800 -- #ifu800 header67 - colspan 2u800 style text-align center; headerstyle header67 -- -- #ifu800 label67 #ifu800 data67 - style labelstyle label67 class class67 style datastyle data67 #ifu800 data67 - colspan 2u800 class class67 style text-align center; datastyle data67 -- rowu800 68u800 -- #ifu800 header68 - colspan 2u800 style text-align center; headerstyle header68 -- -- #ifu800 label68 #ifu800 data68 - style labelstyle label68 class class68 style datastyle data68 #ifu800 data68 - colspan 2u800 class class68 style text-align center; datastyle data68 -- rowu800 69u800 -- #ifu800 header69 - colspan 2u800 style text-align center; headerstyle header69 -- -- #ifu800 label69 #ifu800 data69 - style labelstyle label69 class class69 style datastyle data69 #ifu800 data69 - colspan 2u800 class class69 style text-align center; datastyle data69 -- rowu800 70u800 -- #ifu800 header70 - colspan 2u800 style text-align center; headerstyle header70 -- -- #ifu800 label70 #ifu800 data70 - style labelstyle label70 class class70 style datastyle data70 #ifu800 data70 - colspan 2u800 class class70 style text-align center; datastyle data70 -- rowu800 71u800 -- #ifu800 header71 - colspan 2u800 style text-align center; headerstyle header71 -- -- #ifu800 label71 #ifu800 data71 - style labelstyle label71 class class71 style datastyle data71 #ifu800 data71 - colspan 2u800 class class71 style text-align center; datastyle data71 -- rowu800 72u800 -- #ifu800 header72 - colspan 2u800 style text-align center; headerstyle header72 -- -- #ifu800 label72 #ifu800 data72 - style labelstyle label72 class class72 style datastyle data72 #ifu800 data72 - colspan 2u800 class class72 style text-align center; datastyle data72 -- rowu800 73u800 -- #ifu800 header73 - colspan 2u800 style text-align center; headerstyle header73 -- -- #ifu800 label73 #ifu800 data73 - style labelstyle label73 class class73 style datastyle data73 #ifu800 data73 - colspan 2u800 class class73 style text-align center; datastyle data73 -- rowu800 74u800 -- #ifu800 header74 - colspan 2u800 style text-align center; headerstyle header74 -- -- #ifu800 label74 #ifu800 data74 - style labelstyle label74 class class74 style datastyle data74 #ifu800 data74 - colspan 2u800 class class74 style text-align center; datastyle data74 -- rowu800 75u800 -- #ifu800 header75 - colspan 2u800 style text-align center; headerstyle header75 -- -- #ifu800 label75 #ifu800 data75 - style labelstyle label75 class class75 style datastyle data75 #ifu800 data75 - colspan 2u800 class class75 style text-align center; datastyle data75 -- rowu800 76u800 -- #ifu800 header76 - colspan 2u800 style text-align center; headerstyle header76 -- -- #ifu800 label76 #ifu800 data76 - style labelstyle label76 class class76 style datastyle data76 #ifu800 data76 - colspan 2u800 class class76 style text-align center; datastyle data76 -- rowu800 77u800 -- #ifu800 header77 - colspan 2u800 style text-align center; headerstyle header77 -- -- #ifu800 label77 #ifu800 data77 - style labelstyle label77 class class77 style datastyle data77 #ifu800 data77 - colspan 2u800 class class77 style text-align center; datastyle data77 -- rowu800 78u800 -- #ifu800 header78 - colspan 2u800 style text-align center; headerstyle header78 -- -- #ifu800 label78 #ifu800 data78 - style labelstyle label78 class class78 style datastyle data78 #ifu800 data78 - colspan 2u800 class class78 style text-align center; datastyle data78 -- rowu800 79u800 -- #ifu800 header79 - colspan 2u800 style text-align center; headerstyle header79 -- -- #ifu800 label79 #ifu800 data79 - style labelstyle label79 class class79 style datastyle data79 #ifu800 data79 - colspan 2u800 class class79 style text-align center; datastyle data79 -- rowu800 80u800 -- #ifu800 header80 - colspan 2u800 style text-align center; headerstyle header80 -- -- #ifu800 label80 #ifu800 data80 - style labelstyle label80 class class80 style datastyle data80 #ifu800 data80 - colspan 2u800 class class80 style text-align center; datastyle data80 -- below -- #ifu800 below - colspan 2u800 style text-align center; belowstyle below -- -- #ifu800 name - style text-align right; colspan 2u800 tnavbar name noedit noedit 0u800 ');
INSERT INTO mw_searchindex VALUES('16', 'commonu82ecssu800', ' main page fixes #interwiki-completelist font-weight bold; bodyu82epage-main_page #cau800-delete display none important; bodyu82epage-main_page #mpu800-topbanner clear both; edit window toolbar #toolbar height 22px; margin-bottom 6pxu800; make theu800 list ofu800 references smaller olu800u82ereferences font-size 100u800 ; .references-small font-size 90u800 ; validator notice theu800 following isu800 correct butu800 theu800 w3cu800 validator doesn\'tu800 accept itu800 -mozu800- isu800 au800 vendor-specific extension cssu800 2u800u82e1u800 4u800u82e1u800u82e2u800u82e1u800 column-count isu800 from theu800 css3 module cssu800 multi-column layout please ignore anyu800 validator errors caused byu800 these twou800 lines .references-2column font-size 90u800 ; -mozu800-column-count 2u800; -webkit-column-count 2u800; column-count 2u800; highlight clicked reference inu800 blue tou800 help navigation olu800u82ereferences liu800 target background-color #defu800; supu800u82ereference target background-color #defu800; styling foru800 citations cite font-style normal; word-wrap break-word; ifu800 there isu800 anu800 inline link tou800 au800 full citation theu800 full citation will turn blue when theu800 inline link isu800 clicked cite target background-color #defu800; foru800 linked citation numbers andu800 document idsu800 where theu800 number need notu800 beu800 shown onu800 au800 screen oru800 au800 handheld butu800 should beu800 included inu800 theu800 printed version media screen handheld projection cite .printonly display none; wikitable prettytable class foru800 skinning normal tables tableu82ewikitable tableu82eprettytable margin 1emu800 1emu800 1emu800 0u800; background #f9f9f9; border 1pxu800 #aaau800 solid; border-collapse collapse; .wikitable thu800 .wikitable tdu800 .prettytable thu800 .prettytable tdu800 border 1pxu800 #aaau800 solid; padding 0u800u82e2emu800; .wikitable thu800 .prettytable thu800 background #f2f2f2; text-align center; .wikitable caption .prettytable caption font-weight bold; default skin foru800 navigation boxes tableu82enavbox navbox container style border 1pxu800 solid #aaau800; width 100u800 ; margin auto; clear both; font-size 88u800 ; text-align center; padding 1pxu800; tableu82enavbox tableu82enavbox margin-topu800 -1pxu800; single pixel border between adjacent navboxes doesn\'tu800 work foru800 ie6u800 butu800 that\'su800 okay .navbox-title .navbox-abovebelow tableu82enavbox thu800 text-align center; title andu800 above below styles padding-left 1emu800; padding-right 1emu800; .navbox-group group style white-space nowrap; text-align right; font-weight bold; padding-left 1emu800; padding-right 1emu800; .navbox .navbox-subgroup background #fdfdfd; background color .navbox-list border-color #fdfdfd; must match background color .navbox-title tableu82enavbox thu800 background #ccccff; level 1u800 color .navbox-abovebelow .navbox-group .navbox-subgroup .navbox-title background #ddddff; level 2u800 color .navbox-subgroup .navbox-group .navbox-subgroup .navbox-abovebelow background #e6e6ff; level 3u800 color .navbox-even background #f7f7f7; even rowu800 striping .navbox-oddu800 background transparent; oddu800 rowu800 striping .collapsebutton \'show\' \'hide\' buttons created dynamically byu800 theu800 float right; collapsibletables javascript inu800 mediawiki commonu82ejsu800 font-weight normal; areu800 styled here sou800 they canu800 beu800 customised. text-align right; width auto; .navbox .collapsebutton inu800 navboxes theu800 show hide button balances theu800 vdeu800 links from width 6emu800; template tnavbar sou800 they need tou800 beu800 theu800 same width. infobox template style .infobox border 1pxu800 solid #aaau800; background-color #f9f9f9; color black; margin 0u800u82e5emu800 0u800 0u800u82e5emu800 1emu800; padding 0u800u82e2emu800; float right; clear right; .infobox tdu800 .infobox thu800 vertical-align topu800; .infobox caption font-size larger; .infoboxu82ebordered border-collapse collapse; .infoboxu82ebordered tdu800 .infoboxu82ebordered thu800 border 1pxu800 solid #aaau800; .infoboxu82ebordered .borderless tdu800 .infoboxu82ebordered .borderless thu800 border 0u800; .infoboxu82esisterproject width 20em; font-size 90u800 ; .infoboxu82estandard-talk border 1pxu800 solid #c0c090; background-color #f8eaba; .infoboxu82estandard-talku82ebordered tdu800 .infoboxu82estandard-talku82ebordered thu800 border 1pxu800 solid #c0c090; styles foru800 bordered infobox with merged rows .infoboxu82ebordered .mergedtoprow tdu800 .infoboxu82ebordered .mergedtoprow thu800 border 0u800; border-topu800 1pxu800 solid #aaau800; border-right 1pxu800 solid #aaau800; .infoboxu82ebordered .mergedrow tdu800 .infoboxu82ebordered .mergedrow thu800 border 0u800; border-right 1pxu800 solid #aaau800; styles foru800 geography infoboxes eu800u82egu800. countries country subdivisions cities etcu800. .infoboxu82egeography text-align left; border-collapse collapse; line-height 1u800u82e2emu800; font-size 90u800 ; .infoboxu82egeography tdu800 .infoboxu82egeography thu800 border-topu800 solid 1pxu800 #aaau800; padding 0u800u82e4emu800 0u800u82e6emu800 0u800u82e4emu800 0u800u82e6emu800; .infoboxu82egeography .mergedtoprow tdu800 .infoboxu82egeography .mergedtoprow thu800 border-topu800 solid 1pxu800 #aaau800; padding 0u800u82e4emu800 0u800u82e6emu800 0u800u82e2emu800 0u800u82e6emu800; .infoboxu82egeography .mergedrow tdu800 .infoboxu82egeography .mergedrow thu800 border 0u800; padding 0u800 0u800u82e6emu800 0u800u82e2emu800 0u800u82e6emu800; .infoboxu82egeography .mergedbottomrow tdu800 .infoboxu82egeography .mergedbottomrow thu800 border-topu800 0u800; border-bottom solid 1pxu800 #aaau800; padding 0u800 0u800u82e6emu800 0u800u82e4emu800 0u800u82e6emu800; .infoboxu82egeography .maptable tdu800 .infoboxu82egeography .maptable thu800 border 0u800; padding 0u800; style foru800 notices .notice margin 1emu800; padding 0u800u82e2emu800; #disambig border-topu800 1pxu800 solid #cccu800; border-bottom 1pxu800 solid #cccu800; persondata andu800 other future metadata tableu82einchi andu800 .inchi-label areu800 temporary. tableu82einchi tableu82epersondata border 1pxu800 solid #aaau800; display none; speak none; .inchi-label .persondata-label color #aaau800; makes redirects appear inu800 italics inu800 categories andu800 onu800 special allpages .redirect-inu800-category .allpagesredirect font-style italic; class foru800 links with loudspeaker icon next tou800 them. used inu800 template audio andu800 theu800 like tou800 make theu800 speaker clickable .audiolink au800 background urlu800 center left nou800-repeat important; padding-left 16px important; padding-right 0u800 important; icons foru800 medialist templates template listen template multi-listen_start template video template multi-video_start divu800u82elistenlist background urlu800 ; padding-left 40px; divu800u82evideolist divu800u82emultivideolist background urlu800 ; padding-left 50px; style rules foru800 media list templates divu800u82emedialist minu800-height 50px; margin 1emu800; background-position topu800 left; background-repeat nou800-repeat; divu800u82emedialist ulu800 list-style-type none; list-style-image none; margin 0u800; divu800u82emedialist ulu800 liu800 padding-bottom 0u800u82e5emu800; divu800u82emedialist ulu800 liu800 liu800 font-size 91u800 ; padding-bottom 0u800; change theu800 external link icon tou800 anu800 adobe icon foru800 allu800 pdfu800 files inu800 browsers that support these cssu800 selectors like mozilla andu800 opera #bodycontent au800 href .pdfu800 .external #bodycontent au800 href .pdfu800 .external #bodycontent au800 href .pdfu800# .external #bodycontent au800 href .pdfu800 .external #bodycontent au800 href .pdfu800 .external #bodycontent au800 href .pdfu800# .external #mw_content au800 href .pdfu800 .external #mw_content au800 href .pdfu800 .external #mw_content au800 href .pdfu800# .external #mw_content au800 href .pdfu800 .external #mw_content au800 href .pdfu800 .external #mw_content au800 href .pdfu800# .external background urlu800 center right nou800-repeat; padding-right 16px; change theu800 external link icon tou800 anu800 adobe icon anywhere theu800 pdflink class isu800 used notably template pdflink . this works inu800 ieu800 unlike theu800 above. spanu82epdflink au800 background urlu800 center right nou800-repeat important; padding-right 17px important; spanu82egeolink au800 background urlu800 center right nou800-repeat important; padding-right 11px important; content inu800 columns with cssu800 instead ofu800 tables template columns divu800u82ecolumns-2u800 divu800u82ecolumn float left; width 50u800 ; minu800-width 300px; divu800u82ecolumns-3u800 divu800u82ecolumn float left; width 33u800u82e3u800 ; minu800-width 200px; divu800u82ecolumns-4u800 divu800u82ecolumn float left; width 25u800 ; minu800-width 150px; divu800u82ecolumns-5u800 divu800u82ecolumn float left; width 20u800 ; minu800-width 120px; addu800 formatting tou800 make sure that external references from template refu800 dou800 notu800 getu800 urlu800 expansion notu800 even when printed. theu800 mechanism upu800 tou800 mediawiki 1u800u82e4u800 wasu800 that theu800 html code contained au800 span following theu800 anchor au800; this span hadu800 theu800 class urlexpansion which wasu800 notu800 displayed onu800 screen butu800 wasu800 shown when theu800 medium wasu800 print . theu800 rules below ensure au800 that there isu800 nou800 extra padding tou800 theu800 right ofu800 theu800 anchor displayed asu800 bu800 that there isu800 nou800 external link arrow foru800 theu800 link andu800 cu800 that this span ofu800 class urlexpansion isu800 never shown. user daniel daniel 00u800 19u800 20u800 march 2009 utcu800 .plainlinksneverexpand background none important; padding 0u800 important; .plainlinksneverexpand .urlexpansion display none important; make sure that extu800 links displayed within plainlinksneverexpand donu800\'tu800 getu800 theu800 arrow... .plainlinksneverexpand au800 background none important; padding 0u800 important; with mediawiki 1u800u82e5u800 theu800 mechanism hasu800 changed instead ofu800 au800 span ofu800 class urlexpansion following theu800 anchor au800 theu800 anchor itself nowu800 hasu800 class external autonumber andu800 theu800 expansion isu800 inserted when printing seeu800 theu800 common printing style sheet atu800 using theu800 after pseudo- element ofu800 cssu800. weu800 have tou800 switch this offu800 foru800 links dueu800 tou800 template refu800 .plainlinksneverexpand au800u82eexternalu82etext after display none important; .plainlinksneverexpand au800u82eexternalu82eautonumber after display none important; messagebox templates .messagebox border 1pxu800 solid #aaau800; background-color #f9f9f9; width 80u800 ; margin 0u800 auto 1emu800 auto; padding .2emu800; .messageboxu82emerge border 1pxu800 solid #c0b8cc; background-color #f0e5ff; text-align center; .messageboxu82ecleanup border 1pxu800 solid #9f9fff; background-color #efefff; text-align center; .messageboxu82estandard-talk border 1pxu800 solid #c0c090; background-color #f8eaba; margin 4pxu800 auto; foru800 oldu800 wikiproject banners inside banner shells. .mbox-inside .standard-talk .messageboxu82enested-talk border 1pxu800 solid #c0c090; background-color #f8eaba; width 100u800 ; margin 2pxu800 0u800; padding 2pxu800; .messageboxu82esmall width 238px; font-size 85u800 ; float right; clear both; margin 0u800 0u800 1emu800 1emu800; line-height 1u800u82e25em; .messageboxu82esmall-talk width 238px; font-size 85u800 ; float right; clear both; margin 0u800 0u800 1emu800 1emu800; line-height 1u800u82e25em; background #f8eaba; cell sizes foru800 ambox tmbox imbox cmbox ombox fmbox dmbox message boxes thu800u82embox-text tdu800u82embox-text theu800 message body cell su800 border none; padding 0u800u82e25em 0u800u82e9emu800; 0u800u82e9emu800 left right width 100u800 ; make allu800 mboxes theu800 same width regardless ofu800 text length tdu800u82embox-image theu800 left image cell border none; padding 2pxu800 0u800 2pxu800 0u800u82e9emu800; 0u800u82e9emu800 left 0pxu800 right text-align center; tdu800u82embox-imageright theu800 right image cell border none; padding 2pxu800 0u800u82e9emu800 2pxu800 0u800; 0pxu800 left 0u800u82e9emu800 right text-align center; .mediawiki tableu82embox-small foru800 theu800 small yesu800 option also used elsewhere . clear right; theu800 mediawiki class ensures that this declaration float right; overrides styles setu800 inu800 tmbox ombox etcu800 below margin 4pxu800 0u800 4pxu800 1emu800; width 238px; font-size 88u800 ; line-height 1u800u82e25em; article message boxu800 styles tableu82eambox 10u800 will notu800 overlap with other elements margin -1pxu800 10u800 0pxu800; -1pxu800 single border between stacked boxes inu800 allu800 browsers border 1pxu800 solid #aaau800; border-left 10px solid #1e90ff; default notice blue background #fbfbfb; .ambox thu800u82embox-text .ambox tdu800u82embox-text theu800 message body cell su800 padding 0u800u82e25em 0u800u82e5emu800; 0u800u82e5emu800 left right .ambox tdu800u82embox-image theu800 left image cell padding 2pxu800 0u800 2pxu800 0u800u82e5emu800; 0u800u82e5emu800 left 0pxu800 right .ambox tdu800u82embox-imageright theu800 right image cell padding 2pxu800 0u800u82e5emu800 2pxu800 0u800; 0pxu800 left 0u800u82e5emu800 right tableu82eambox-notice border-left 10px solid #1e90ff; blue tableu82eambox-speedy border-left 10px solid #b22222; redu800 background #feeu800; pink tableu82eambox-delete border-left 10px solid #b22222; redu800 tableu82eambox-content border-left 10px solid #f28500; orange tableu82eambox-style border-left 10px solid #f4c430; yellow tableu82eambox-move border-left 10px solid #9932cc; purple tableu82eambox-protection border-left 10px solid #bbau800; gray-gold image message boxu800 styles tableu82eimbox margin 4pxu800 10u800 ; border-collapse collapse; border 3pxu800 solid #1e90ff; default notice blue background #fbfbfb; .imbox .mbox-text .imbox foru800 imboxes inside imbox-text cells. margin 0u800 -0u800u82e5emu800; 0u800u82e9u800 - 0u800u82e5u800 0u800u82e4emu800 left right. .mbox-inside .imbox foru800 imboxes inside other templates. margin 4pxu800; tableu82eimbox-notice border 3pxu800 solid #1e90ff; blue tableu82eimbox-speedy border 3pxu800 solid #b22222; redu800 background #feeu800; pink tableu82eimbox-delete border 3pxu800 solid #b22222; redu800 tableu82eimbox-content border 3pxu800 solid #f28500; orange tableu82eimbox-style border 3pxu800 solid #f4c430; yellow tableu82eimbox-move border 3pxu800 solid #9932cc; purple tableu82eimbox-protection border 3pxu800 solid #bbau800; gray-gold tableu82eimbox-license border 3pxu800 solid #88au800; dark gray background #f7f8ff; light gray tableu82eimbox-featured border 3pxu800 solid #cba135; brown-gold category message boxu800 styles tableu82ecmbox margin 3pxu800 10u800 ; border-collapse collapse; border 1pxu800 solid #aaau800; background #dfe8ff; default notice blue tableu82ecmbox-notice background #d8e8ff; blue tableu82ecmbox-speedy margin-topu800 4pxu800; margin-bottom 4pxu800; border 4pxu800 solid #b22222; redu800 background #ffdbdb; pink tableu82ecmbox-delete background #ffdbdb; redu800 tableu82ecmbox-content background #ffe7ce; orange tableu82ecmbox-style background #fff9db; yellow tableu82ecmbox-move background #e4d8ff; purple tableu82ecmbox-protection background #efefe1; gray-gold other pages message boxu800 styles tableu82eombox margin 4pxu800 10u800 ; border-collapse collapse; border 1pxu800 solid #aaau800; default notice gray background #f9f9f9; tableu82eombox-notice border 1pxu800 solid #aaau800; gray tableu82eombox-speedy border 2pxu800 solid #b22222; redu800 background #feeu800; pink tableu82eombox-delete border 2pxu800 solid #b22222; redu800 tableu82eombox-content border 1pxu800 solid #f28500; orange tableu82eombox-style border 1pxu800 solid #f4c430; yellow tableu82eombox-move border 1pxu800 solid #9932cc; purple tableu82eombox-protection border 2pxu800 solid #bbau800; gray-gold talk page message boxu800 styles tableu82etmbox margin 4pxu800 10u800 ; border-collapse collapse; border 1pxu800 solid #c0c090; default notice gray-brown background #f8eaba; .mediawiki .mbox-inside .tmbox foru800 tmboxes inside other templates. theu800 mediawiki margin 2pxu800 0u800; class ensures that this declaration overrides other width 100u800 ; foru800 safari andu800 opera styles including mbox-small above .mbox-inside .tmboxu82embox-small small tmboxes should notu800 beu800 small when line-height 1u800u82e5emu800; also nested sou800 reset styles that areu800 font-size 100u800 ; setu800 inu800 mbox-small above. tableu82etmbox-speedy border 2pxu800 solid #b22222; redu800 background #feeu800; pink tableu82etmbox-delete border 2pxu800 solid #b22222; redu800 tableu82etmbox-content border 2pxu800 solid #f28500; orange tableu82etmbox-style border 2pxu800 solid #f4c430; yellow tableu82etmbox-move border 2pxu800 solid #9932cc; purple tableu82etmbox-protection tableu82etmbox-notice border 1pxu800 solid #c0c090; gray-brown pink fmbox warning style foru800 divu800 based warning notices. divu800u82efmbox-warning divu800u82emwu800-warning-with-logexcerpt divu800u82emwu800-cascadeprotectedwarning clear both; margin 0u800u82e2emu800 0u800; border 1pxu800 solid #bb7070; background #ffdbdb; padding 0u800u82e25em 0u800u82e9emu800; putu800 au800 checker background atu800 theu800 image description page only visible ifu800 theu800 image hasu800 transparent background #file imgu800 background urlu800 repeat; support foru800 template ipau800 template unicode andu800 template polytonic. theu800 inherit declaration resets theu800 font foru800 allu800 browsers except msie6. theu800 empty comment must remain. please copy anyu800 changes tou800 template ipau800 fonts andu800 template unicode fonts . .ipau800 font-family charis silu800 doulos silu800 gentium gentiumalt dejavu sans code2000 titus cyberbit basic arial unicode msu800 lucida sans unicode chrysanthi unicode ; font-family inherit; .unicode font-family code2000 code2001 free serif titus cyberbit basic doulos silu800 chrysanthi unicode bitstream cyberbit bitstream cyberbase thryomanes gentium gentiumalt lucida grande free sans arial unicode msu800 microsoft sans serif lucida sans unicode ; font-family inherit; .latinx font-family code2000 code2001 titus cyberbit basic microsoft sans serif ; font-family inherit; .polytonic font-family athena unicode gentium palatino linotype arial unicode msu800 lucida sans unicode lucida grande code2000; font-family inherit; .mufi font-family alphabetum cardo leedsuni junicode titus cyberbit basic alpha-demo; pseudo-classes inu800 support ofu800 template lang . lang heu800 font-family sblu800 hebrew ezra silu800 sru800 ezra silu800 cardo chrysanthi unicode titus cyberbit basic arial unicode msu800 narkisim times newu800 roman ; font-family inherit; lang fau800 font-family nafees nastaleeq paku800 nastaleeq pdms_jauhar; font-family inherit; lang psu800 font-family nafees nastaleeq paku800 nastaleeq pdms_jauhar; font-family inherit; lang uru800 font-family nafees nastaleeq paku800 nastaleeq pdms_jauhar; font-family inherit; lang suxu800-xsux font-family akkadian; font-family inherit; lang jau800 font-family code2000 arial unicode msu800 bitstream cyberbit bitstream cybercjk ipagothic ipapgothic ipauigothic kochi gothic ipamincho ipapmincho; font-family inherit; lang kou800 font-family adobe myungjo stdu800 mu800 applemyungjo baekmuk batang baekmuk gulim batang dotum dotumche gulim gulimche hygothic-extra hymyeongjo-extra newu800 gulim unbatang undotum unyetgul uwkmjf; font-family inherit; lang zhu800-hans font-family adobe song stdu800 lu800 aru800 plu800 shanheisun uniu800 aru800 plu800 shanheisun uniu800 mbeu800 msu800 heiu800 msu800 song simhei; font-family inherit; lang zhu800-hant font-family adobe ming stdu800 lu800 aru800 plu800 newu800 sung aru800 plu800 zenkai uniu800 aru800 plu800 zenkai uniu800 mbeu800 mingliu pmingliu; font-family inherit; lang grcu800 font-family athena unicode gentium palatino linotype arial unicode msu800 lucida sans unicode lucida grande code2000; font-family inherit; #wpsave font-weight bold; class hiddenstructure isu800 defunct. seeu800 wikipedia hiddenstructure .hiddenstructure display inline important; color #f00u800; background-color #0f0u800; suppress missing interwiki image links where #ifexist cannot beu800 used dueu800 tou800 high number ofu800 requests useu800 restricted tou800 rail icon management pages seeu800 .hidden-redlink onu800 .check-icon au800u82enewu800 display none; speak none; removes underlines from links .nounderlines au800 text-decoration none; remove underline from ipau800 links .ipau800 au800 link .ipau800 au800 visited text-decoration none; #enwpmpbook background-image urlu800 #enwpmpsearch background urlu800 nou800-repeat topu800 right; #enwpmpsearchinner float right; width 20em; text-align center; #enwpmpbook2 background-image urlu800 standard navigationsleisten akau800 boxu800 hiding thingy from .deu800. documentation atu800 wikipedia navframe . divu800u82enavframe margin 0u800; padding 4pxu800; border 1pxu800 solid #aaau800; text-align center; border-collapse collapse; font-size 95u800 ; divu800u82enavframe divu800u82enavframe border-topu800-style none; border-topu800-style hidden; divu800u82enavpic background-color #fffu800; margin 0u800; padding 2pxu800; float left; divu800u82enavframe divu800u82enavhead height 1u800u82e6emu800; font-weight bold; background-color #ccfu800; position relative; divu800u82enavframe pu800 font-size 100u800 ; divu800u82enavframe divu800u82enavcontent font-size 100u800 ; divu800u82enavframe divu800u82enavcontent pu800 font-size 100u800 ; divu800u82enavend margin 0u800; padding 0u800; line-height 1pxu800; clear both; au800u82enavtoggle position absolute; topu800 0u800; right 3pxu800; font-weight normal; font-size 90u800 ; coloured watchlist numbers .mwu800-plusminus-posu800 color #006400; darkgreen .mwu800-plusminus-null currently atu800 developer default .mwu800-plusminus-negu800 color #8b0000; darkred .rellink .dablink font-style italic; padding-left 2emu800; .rellink iu800 .dablink iu800 font-style normal; style foru800 horizontal ulu800 lists .horizontal ulu800 padding 0u800; margin 0u800; .horizontal liu800 padding 0u800 0u800u82e6emu800 0u800 0u800u82e4emu800; display inline; border-right 1pxu800 solid; .horizontal liu800 last-child border-right none; padding-right 0u800; geographical coordinates defaults. seeu800 template coord link foru800 howu800 these areu800 used. theu800 classes geou800 longitude andu800 latitude areu800 used byu800 theu800 geou800 microformat sou800 theu800 names should notu800 beu800 changed. .geou800-default .geou800-dmsu800 .geou800-decu800 display inline; .geou800-nondefault .geou800-multi-punct display none; .longitude .latitude white-space nowrap; when isu800 used onu800 theu800 table ofu800 contents theu800 tocu800 will display without numbers .nonumtoc .tocnumber display none; .nonumtoc #tocu800 ulu800 .nonumtoc .tocu800 ulu800 line-height 1u800u82e5emu800; list-style none; margin .3emu800 0u800 0u800; padding 0u800; .nonumtoc #tocu800 ulu800 ulu800 .nonumtoc .tocu800 ulu800 ulu800 margin 0u800 0u800 0u800 2emu800; allow limiting ofu800 which header levels areu800 shown inu800 au800 tocu800; foru800 instance will limit tou800 showing headings andu800 headings butu800 nou800 further asu800 long asu800 there areu800 nou800 headings onu800 theu800 page which there shouldn\'tu800 beu800 according tou800 theu800 mosu800 . .toclimit-2u800 .toclevel-2u800 display none; .toclimit-3u800 .toclevel-3u800 display none; .toclimit-4u800 .toclevel-4u800 display none; .toclimit-5u800 .toclevel-5u800 display none; .toclimit-6u800 .toclevel-6u800 display none; .toclimit-7u800 .toclevel-7u800 display none; allow transcluded pages tou800 display inu800 lists rather than au800 table. compatible inu800 firefox; incompatible inu800 ie6u800. .listify tdu800 display list-item; .listify tru800 display block; .listify table display block; styling foru800 template quote blockquoteu82etemplatequote margin-topu800 0u800; blockquoteu82etemplatequote divu800u82etemplatequotecite line-height 1emu800; text-align left; padding-left 2emu800; margin-topu800 0u800; blockquoteu82etemplatequote divu800u82etemplatequotecite cite font-size 85u800 ; divu800u82euser-block padding 5pxu800; border 1pxu800 solid #a9a9a9; background-color #ffefd5; prevents line breaks inu800 links .nowraplinks au800 white-space nowrap; foru800 template documentation .template-documentation clear both; margin 1emu800 0u800 0u800 0u800; border 1pxu800 solid #aaau800; background-color #ecfcf4; padding 5pxu800; .thumbinner minu800-width 100px; inline divs inu800 imagemaps code borrowed from deu800u82ewiki .imagemap-inline divu800 display inline; increase theu800 height ofu800 theu800 image upload boxu800 #wpuploaddescription height 13em; reduce line-height foru800 andu800 supu800 subu800 line-height 1emu800; theu800 backgrounds foru800 galleries. #content .gallerybox divu800u82ethumb background-color #f9f9f9; light gray padding .gallerybox .thumb imgu800 background white urlu800 repeat; .nsu800-0u800 articles .nsu800-2u800 user pages .nsu800-100u800 portals. .nsu800-0u800 .gallerybox .thumb imgu800 .nsu800-2u800 .gallerybox .thumb imgu800 .nsu800-100u800 .gallerybox .thumb imgu800 background white; nou800 chequered background prevent boxes from overlapping theu800 category listings #mwu800-subcategories #mwu800-pages #mwu800-category-media clear both; selectively hide headers inu800 wikiproject banners .wpbu800 .wpbu800-header display none .wpbs-inner .wpbu800 .wpbu800-header display block foru800 ieu800 .wpbs-inner .wpbu800 .wpbu800-header display table-rowu800 foru800 real browsers .wpbs-inner .wpbu800-outside display none hide things that should only display outside shells stop html formulae breaking inu800 silly places spanu82etexhtml white-space nowrap; stop references with groups from line-breaking supu800u82ereference au800 white-space nowrap; temporary rule foru800 theu800 duration ofu800 wikipedia 2008 main page redesign proposal #pretzelsmainpageproposal-head background white urlu800 \' \' nou800-repeat; background colours foru800 theu800 wp1u800u82e0u800 assessment scheme .mediawiki .assess-fau800 background #6699ff; .mediawiki .assess-flu800 background #6699ff; .mediawiki .assess-au800 background #66ffff; .mediawiki .assess-gau800 background #66ff66; .mediawiki .assess-bu800 background #b2ff66; .mediawiki .assess-cu800 background #ffff66; .mediawiki .assess-start background #ffaa66; .mediawiki .assess-stub background #ff6666; .mediawiki .assess-list background #aa88ff; .mediawiki .assess-nau800 background #f5f5f5; .mediawiki .assess- background transparent; .mediawiki .assess-category background #ffa500; .mediawiki .assess-disambig background #00fa9a; .mediawiki .assess-image .mediawiki .assess-file background #ddccff; .mediawiki .assess-portal background #808080; .mediawiki .assess-project background #c0c090; .mediawiki .assess-redirect background #c0c0c0; .mediawiki .assess-template background #ffccff; .mediawiki .import-topu800 background #ff00ff; .mediawiki .import-high background #ff88ff; .mediawiki .import-midu800 background #ffccff; .mediawiki .import-lowu800 background #ffeeff; .mediawiki .import-nau800 background #f5f5f5; .mediawiki .import- background transparent; ');
INSERT INTO mw_searchindex VALUES('19', 'ppu800-template', ' ppu800-meta type #switch demolevel protectionlevel edit semi autoconfirmed semi administrator full sysop indef #default indef --fallback value-- small small yesu800 demospace demospace demolevel #ifeq pagename namespace subpagename nsu800 template demolevel undefined #ifeq lcu800 subpagename sandbox sysop demolevel undefined expiry --notu800 applicable-- dispute nou800 icon-text this #ifeq namespace nsu800 6u800 image included inu800 au800 high-risk template oru800 message high-risk template isu800 indefinitely #switch demolevel protectionlevel edit semi autoconfirmed semi- administrator full sysop #default --fallback value-- protected from editing tou800 prevent vandalism. reason-text this #switch namespace nsu800 image image used inu800 oneu800 oru800 more wikipedia high-risk templates high-risk templates #switch demolevel protectionlevel edit semi autoconfirmed administrator full sysop andu800 oru800 special allmessages system messages #default --fallback value-- #default wikipedia high-risk templates high-risk template hasu800 been wikipedia this page isu800 protected #switch demolevel protectionlevel edit semi autoconfirmed semi- administrator full sysop --uses default-- #default --fallback value-- protected from editing tou800 prevent wikipedia vandalism vandalism . #switch demolevel protectionlevel edit semi autoconfirmed administrator full sysop --uses default-- #default #switch namespace nsu800 image  dou800 notu800 move this image  tou800 commons wikimedia commons . categories categories #ifeq namespace nsu800 10u800 category wikipedia #switch demolevel protectionlevel edit semi autoconfirmed semi- administrator full sysop --uses default-- #default --fallback value-- protected templates pagename #ifeq namespace nsu800 6u800 category #switch demolevel protectionlevel edit semi autoconfirmed semi-protected administrator full sysop --uses default-- #default protected --fallback value-- images pagename ppu800-template categories nou800 -- show theu800 small version -- ppu800-template small nou800 -- show theu800 large version -- documentation -- addu800 categories andu800 interwikis tou800 theu800 docu800 subpage notu800 here -- ');
INSERT INTO mw_searchindex VALUES('17', 'infobox', ' -- caption -- #ifu800 title title -- header -- #ifu800 above above -- subheader -- #ifu800 subheader subheader -- image -- #ifu800 image image #ifu800 caption caption -- rowu800 1u800 -- #ifu800 header1 header1 #ifu800 label1 #ifu800 data1 label1 data1 #ifu800 data1 data1 -- rowu800 2u800 -- #ifu800 header2 header2 #ifu800 label2 #ifu800 data2 label2 data2 #ifu800 data2 data2 -- rowu800 3u800 -- #ifu800 header3 header3 #ifu800 label3 #ifu800 data3 label3 data3 #ifu800 data3 data3 -- rowu800 4u800 -- #ifu800 header4 header4 #ifu800 label4 #ifu800 data4 label4 data4 #ifu800 data4 data4 -- rowu800 5u800 -- #ifu800 header5 header5 #ifu800 label5 #ifu800 data5 label5 data5 #ifu800 data5 data5 -- rowu800 6u800 -- #ifu800 header6 header6 #ifu800 label6 #ifu800 data6 label6 data6 #ifu800 data6 data6 -- rowu800 7u800 -- #ifu800 header7 header7 #ifu800 label7 #ifu800 data7 label7 data7 #ifu800 data7 data7 -- rowu800 8u800 -- #ifu800 header8 header8 #ifu800 label8 #ifu800 data8 label8 data8 #ifu800 data8 data8 -- rowu800 9u800 -- #ifu800 header9 header9 #ifu800 label9 #ifu800 data9 label9 data9 #ifu800 data9 data9 -- rowu800 10u800 -- #ifu800 header10 header10 #ifu800 label10 #ifu800 data10 label10 data10 #ifu800 data10 data10 -- rowu800 11u800 -- #ifu800 header11 header11 #ifu800 label11 #ifu800 data11 label11 data11 #ifu800 data11 data11 -- rowu800 12u800 -- #ifu800 header12 header12 #ifu800 label12 #ifu800 data12 label12 data12 #ifu800 data12 data12 -- rowu800 13u800 -- #ifu800 header13 header13 #ifu800 label13 #ifu800 data13 label13 data13 #ifu800 data13 data13 -- rowu800 14u800 -- #ifu800 header14 header14 #ifu800 label14 #ifu800 data14 label14 data14 #ifu800 data14 data14 -- rowu800 15u800 -- #ifu800 header15 header15 #ifu800 label15 #ifu800 data15 label15 data15 #ifu800 data15 data15 -- rowu800 16u800 -- #ifu800 header16 header16 #ifu800 label16 #ifu800 data16 label16 data16 #ifu800 data16 data16 -- rowu800 17u800 -- #ifu800 header17 header17 #ifu800 label17 #ifu800 data17 label17 data17 #ifu800 data17 data17 -- rowu800 18u800 -- #ifu800 header18 header18 #ifu800 label18 #ifu800 data18 label18 data18 #ifu800 data18 data18 -- rowu800 19u800 -- #ifu800 header19 header19 #ifu800 label19 #ifu800 data19 label19 data19 #ifu800 data19 data19 -- rowu800 20u800 -- #ifu800 header20 header20 #ifu800 label20 #ifu800 data20 label20 data20 #ifu800 data20 data20 -- rowu800 21u800 -- #ifu800 header21 header21 #ifu800 label21 #ifu800 data21 label21 data21 #ifu800 data21 data21 -- rowu800 22u800 -- #ifu800 header22 header22 #ifu800 label22 #ifu800 data22 label22 data22 #ifu800 data22 data22 -- rowu800 23u800 -- #ifu800 header23 header23 #ifu800 label23 #ifu800 data23 label23 data23 #ifu800 data23 data23 -- rowu800 24u800 -- #ifu800 header24 header24 #ifu800 label24 #ifu800 data24 label24 data24 #ifu800 data24 data24 -- rowu800 25u800 -- #ifu800 header25 header25 #ifu800 label25 #ifu800 data25 label25 data25 #ifu800 data25 data25 -- rowu800 26u800 -- #ifu800 header26 header26 #ifu800 label26 #ifu800 data26 label26 data26 #ifu800 data26 data26 -- rowu800 27u800 -- #ifu800 header27 header27 #ifu800 label27 #ifu800 data27 label27 data27 #ifu800 data27 data27 -- rowu800 28u800 -- #ifu800 header28 header28 #ifu800 label28 #ifu800 data28 label28 data28 #ifu800 data28 data28 -- rowu800 29u800 -- #ifu800 header29 header29 #ifu800 label29 #ifu800 data29 label29 data29 #ifu800 data29 data29 -- rowu800 30u800 -- #ifu800 header30 header30 #ifu800 label30 #ifu800 data30 label30 data30 #ifu800 data30 data30 -- rowu800 31u800 -- #ifu800 header31 header31 #ifu800 label31 #ifu800 data31 label31 data31 #ifu800 data31 data31 -- rowu800 32u800 -- #ifu800 header32 header32 #ifu800 label32 #ifu800 data32 label32 data32 #ifu800 data32 data32 -- rowu800 33u800 -- #ifu800 header33 header33 #ifu800 label33 #ifu800 data33 label33 data33 #ifu800 data33 data33 -- rowu800 34u800 -- #ifu800 header34 header34 #ifu800 label34 #ifu800 data34 label34 data34 #ifu800 data34 data34 -- rowu800 35u800 -- #ifu800 header35 header35 #ifu800 label35 #ifu800 data35 label35 data35 #ifu800 data35 data35 -- rowu800 36u800 -- #ifu800 header36 header36 #ifu800 label36 #ifu800 data36 label36 data36 #ifu800 data36 data36 -- rowu800 37u800 -- #ifu800 header37 header37 #ifu800 label37 #ifu800 data37 label37 data37 #ifu800 data37 data37 -- rowu800 38u800 -- #ifu800 header38 header38 #ifu800 label38 #ifu800 data38 label38 data38 #ifu800 data38 data38 -- rowu800 39u800 -- #ifu800 header39 header39 #ifu800 label39 #ifu800 data39 label39 data39 #ifu800 data39 data39 -- rowu800 40u800 -- #ifu800 header40 header40 #ifu800 label40 #ifu800 data40 label40 data40 #ifu800 data40 data40 -- rowu800 41u800 -- #ifu800 header41 header41 #ifu800 label41 #ifu800 data41 label41 data41 #ifu800 data41 data41 -- rowu800 42u800 -- #ifu800 header42 header42 #ifu800 label42 #ifu800 data42 label42 data42 #ifu800 data42 data42 -- rowu800 43u800 -- #ifu800 header43 header43 #ifu800 label43 #ifu800 data43 label43 data43 #ifu800 data43 data43 -- rowu800 44u800 -- #ifu800 header44 header44 #ifu800 label44 #ifu800 data44 label44 data44 #ifu800 data44 data44 -- rowu800 45u800 -- #ifu800 header45 header45 #ifu800 label45 #ifu800 data45 label45 data45 #ifu800 data45 data45 -- rowu800 46u800 -- #ifu800 header46 header46 #ifu800 label46 #ifu800 data46 label46 data46 #ifu800 data46 data46 -- rowu800 47u800 -- #ifu800 header47 header47 #ifu800 label47 #ifu800 data47 label47 data47 #ifu800 data47 data47 -- rowu800 48u800 -- #ifu800 header48 header48 #ifu800 label48 #ifu800 data48 label48 data48 #ifu800 data48 data48 -- rowu800 49u800 -- #ifu800 header49 header49 #ifu800 label49 #ifu800 data49 label49 data49 #ifu800 data49 data49 -- rowu800 50u800 -- #ifu800 header50 header50 #ifu800 label50 #ifu800 data50 label50 data50 #ifu800 data50 data50 -- rowu800 51u800 -- #ifu800 header51 header51 #ifu800 label51 #ifu800 data51 label51 data51 #ifu800 data51 data51 -- rowu800 52u800 -- #ifu800 header52 header52 #ifu800 label52 #ifu800 data52 label52 data52 #ifu800 data52 data52 -- rowu800 53u800 -- #ifu800 header53 header53 #ifu800 label53 #ifu800 data53 label53 data53 #ifu800 data53 data53 -- rowu800 54u800 -- #ifu800 header54 header54 #ifu800 label54 #ifu800 data54 label54 data54 #ifu800 data54 data54 -- rowu800 55u800 -- #ifu800 header55 header55 #ifu800 label55 #ifu800 data55 label55 data55 #ifu800 data55 data55 -- rowu800 56u800 -- #ifu800 header56 header56 #ifu800 label56 #ifu800 data56 label56 data56 #ifu800 data56 data56 -- rowu800 57u800 -- #ifu800 header57 header57 #ifu800 label57 #ifu800 data57 label57 data57 #ifu800 data57 data57 -- rowu800 58u800 -- #ifu800 header58 header58 #ifu800 label58 #ifu800 data58 label58 data58 #ifu800 data58 data58 -- rowu800 59u800 -- #ifu800 header59 header59 #ifu800 label59 #ifu800 data59 label59 data59 #ifu800 data59 data59 -- rowu800 60u800 -- #ifu800 header60 header60 #ifu800 label60 #ifu800 data60 label60 data60 #ifu800 data60 data60 -- rowu800 61u800 -- #ifu800 header61 header61 #ifu800 label61 #ifu800 data61 label61 data61 #ifu800 data61 data61 -- rowu800 62u800 -- #ifu800 header62 header62 #ifu800 label62 #ifu800 data62 label62 data62 #ifu800 data62 data62 -- rowu800 63u800 -- #ifu800 header63 header63 #ifu800 label63 #ifu800 data63 label63 data63 #ifu800 data63 data63 -- rowu800 64u800 -- #ifu800 header64 header64 #ifu800 label64 #ifu800 data64 label64 data64 #ifu800 data64 data64 -- rowu800 65u800 -- #ifu800 header65 header65 #ifu800 label65 #ifu800 data65 label65 data65 #ifu800 data65 data65 -- rowu800 66u800 -- #ifu800 header66 header66 #ifu800 label66 #ifu800 data66 label66 data66 #ifu800 data66 data66 -- rowu800 67u800 -- #ifu800 header67 header67 #ifu800 label67 #ifu800 data67 label67 data67 #ifu800 data67 data67 -- rowu800 68u800 -- #ifu800 header68 header68 #ifu800 label68 #ifu800 data68 label68 data68 #ifu800 data68 data68 -- rowu800 69u800 -- #ifu800 header69 header69 #ifu800 label69 #ifu800 data69 label69 data69 #ifu800 data69 data69 -- rowu800 70u800 -- #ifu800 header70 header70 #ifu800 label70 #ifu800 data70 label70 data70 #ifu800 data70 data70 -- rowu800 71u800 -- #ifu800 header71 header71 #ifu800 label71 #ifu800 data71 label71 data71 #ifu800 data71 data71 -- rowu800 72u800 -- #ifu800 header72 header72 #ifu800 label72 #ifu800 data72 label72 data72 #ifu800 data72 data72 -- rowu800 73u800 -- #ifu800 header73 header73 #ifu800 label73 #ifu800 data73 label73 data73 #ifu800 data73 data73 -- rowu800 74u800 -- #ifu800 header74 header74 #ifu800 label74 #ifu800 data74 label74 data74 #ifu800 data74 data74 -- rowu800 75u800 -- #ifu800 header75 header75 #ifu800 label75 #ifu800 data75 label75 data75 #ifu800 data75 data75 -- rowu800 76u800 -- #ifu800 header76 header76 #ifu800 label76 #ifu800 data76 label76 data76 #ifu800 data76 data76 -- rowu800 77u800 -- #ifu800 header77 header77 #ifu800 label77 #ifu800 data77 label77 data77 #ifu800 data77 data77 -- rowu800 78u800 -- #ifu800 header78 header78 #ifu800 label78 #ifu800 data78 label78 data78 #ifu800 data78 data78 -- rowu800 79u800 -- #ifu800 header79 header79 #ifu800 label79 #ifu800 data79 label79 data79 #ifu800 data79 data79 -- rowu800 80u800 -- #ifu800 header80 header80 #ifu800 label80 #ifu800 data80 label80 data80 #ifu800 data80 data80 -- below -- #ifu800 below below -- tnavbar -- #ifu800 name tnavbar name noedit noedit 0u800 ppu800-template small yesu800 documentation -- addu800 categories andu800 interwikis tou800 theu800 docu800 subpage notu800 here -- ');
INSERT INTO mw_searchindex VALUES('18', 'chzz infoboxtest', ' infobox name infobox docu800 title image image exampleu82epngu800 200px caption caption foru800 exampleu82epngu800 headerstyle background #ccfu800; labelstyle background #ddfu800; header1 header defined alone label1 data1 header2 label2 label defined alone data2 header3 label3 data3 data defined alone header4 allu800 three defined header label4 allu800 three defined label data4 allu800 three defined data header5 label5 label andu800 data defined label data5 label andu800 data defined data belowstyle background #ddfu800; below below text ');
INSERT INTO mw_searchindex VALUES('20', 'ppu800-meta', ' #ifeq #switch lcu800 type move -- -- #ifeq #switch lcu800 demolevel undefined semi autoconfirmed autoconfirmed administrator full sysop sysop undefined protectionlevel move #default --fallback value null -- sysop yesu800 nou800 create -- -- #ifu800 #switch lcu800 demolevel undefined semi autoconfirmed autoconfirmed administrator full sysop sysop undefined protectionlevel create #default --fallback value null -- yesu800 nou800 #default --includes allu800 other types-- -- -- #ifu800 #switch lcu800 demolevel undefined semi autoconfirmed autoconfirmed administrator full sysop sysop undefined protectionlevel edit #default --fallback value null -- #ifeq #switch lcu800 disallowlevel semi autoconfirmed autoconfirmed administrator full sysop sysop #default --fallback value null-- #switch lcu800 demolevel undefined semi autoconfirmed autoconfirmed administrator full sysop sysop undefined protectionlevel edit #default --fallback value null -- nou800 yesu800 nou800 yesu800 #ifeq lcu800 small yesu800 #tagu800 imagemap image image #switch lcu800 type full padlocku82esvgu800 semi padlock-silver-mediumu82esvgu800 move padlock-oliveu82esvgu800 indef padlock-redu800u82esvgu800 office padlock-blacku82esvgu800 create padlock-skyblueu82esvgu800 #default transparentu82egifu800 20px icon-text #switch lcu800 type full fully protected semi semi-protected move move protected indef permanently protected create protected from creation office protected byu800 theu800 wikimedia office #default --null-- default icon-link wikipedia protection policy# lcu800 type icon-text this #ifeq namespace nsu800 0u800 article page isu800 #switch lcu800 type semi semi- move move- indef permanently create creation- office --null butu800 should this have au800 special tagu800 -- full #default --null-- protected #ifeq lcu800 type indef #ifu800 expiry until #time fu800 ju800 yu800 expiry #ifu800 icon-reason icon-reason . desc none -- else notu800 small -- mbox demospace demospace type protection image image image #switch lcu800 type full padlocku82esvgu800 semi padlock-silver-mediumu82esvgu800 move padlock-oliveu82esvgu800 indef padlock-redu800u82esvgu800 office padlock-blacku82esvgu800 create padlock-skyblueu82esvgu800 #default transparentu82egifu800 40px icon-text this page isu800 #switch lcu800 type semi semi- move move- indef permanently create creation- office --null butu800 should this have au800 special tagu800 -- full #default --null-- protected. text   reason-text #switch lcu800 type full this page isu800 currently wikipedia this page isu800 protected protected from editing semi editing ofu800 this #ifeq namespace nsu800 0u800 article page byu800 wikipedia user access levels#autoconfirmed_users newu800 oru800 wikipedia user access levels#anonymous_users unregistered users isu800 currently wikipedia protection policy disabled move this #ifeq namespace nsu800 0u800 article page isu800 currently wikipedia this page isu800 protected protected from help moving au800 page page moves indef this page isu800 wikipedia this page isu800 protected protected from editing  indefinitely  office this #ifeq namespace nsu800 0u800 article page isu800 currently wikipedia this page isu800 protected protected from editing create help starting au800 newu800 page recreation ofu800 this #ifeq namespace nsu800 0u800 article page wikipedia this page isu800 protected hasu800 been disabled #ifeq lcu800 type indef #ifu800 expiry &#32u800;until #time fu800 ju800 yu800 expiry reason .   explanation-text #ifeq lcu800 dispute yesu800 this protection isu800  notu800  anu800 endorsement ofu800 theu800 #ifeq type move fullurl special logu800 type move&page fullpagenamee current title fullurl fullpagenamee action history current version . seeu800 theu800 wikipedia protection policy protection policy andu800 fullurl special logu800 type protect&page fullpagenamee protection logu800 foru800 more details. #switch lcu800 type full indef please discuss anyu800 changes onu800 theu800 talkpagename talk page ; youu800 mayu800 useu800 theu800 tlxu800 editprotected template tou800 asku800 anu800 wikipedia administrator administrator tou800 make theu800 edit ifu800 itu800 isu800 supported byu800 wikipedia consensus consensus . #ifeq namespace nsu800 8u800 --mediawiki-- youu800 mayu800 also wikipedia requests foru800 page protection request that this page beu800 unprotected. semi ifu800 youu800 cannot edit this #switch namespace nsu800 0u800 article nsu800 6u800 image #default page andu800 youu800 wish tou800 make au800 change youu800 canu800 #ifeq namespace talkspace talkpagename discuss changes onu800 theu800 talk page wikipedia requests foru800 page protection#current requests foru800 unprotection request unprotection special userlogin logu800 inu800 oru800 create anu800 account . move theu800 page mayu800 still beu800 edited butu800 cannot beu800 moved until unprotected. please discuss anyu800 suggested moves onu800 theu800 talkpagename talk page oru800 atu800 wikipedia requested moves . youu800 canu800 also wikipedia requests foru800 page protection request that theu800 page beu800 unprotected. office ifu800 youu800 areu800 able tou800 edit this page please discuss allu800 changes andu800 additions onu800 theu800 talkpagename talk page first.  dou800 notu800 remove protection from this article unless youu800 areu800 authorized byu800 theu800 wikimedia foundation tou800 dou800 sou800.  create please seeu800 theu800 #ifu800 xfdu800   xfdu800 deletion discussion   oru800 theu800 fullurl special logu800 type delete&page fullpagenamee deletion logu800 foru800 details ofu800 whyu800 this page wasu800 deleted. ifu800 youu800 would like tou800 create au800 page atu800 this title youu800 must first wikipedia requests foru800 page protection request foru800 itu800 tou800 beu800 unprotected oru800 foru800 theu800 deleted material tou800 beu800 restored viau800 wikipedia deletion review deletion review . category wikipedia pages with incorrect protection templates --endu800 ifu800 small-- #ifeq lcu800 categories nou800 nou800 categories documentation -- addu800 categories andu800 interwikis tou800 theu800 docu800 subpage notu800 here -- ');
INSERT INTO mw_searchindex VALUES('21', 'fucking works', ' infobox name infobox docu800 title image image exampleu82epngu800 200px caption caption foru800 exampleu82epngu800 headerstyle background #ccfu800; labelstyle background #ddfu800; header1 header defined alone label1 data1 header2 label2 label defined alone data2 header3 label3 data3 data defined alone header4 allu800 three defined header label4 allu800 three defined label data4 allu800 three defined data header5 label5 label andu800 data defined label data5 label andu800 data defined data belowstyle background #ddfu800; below below text ');
INSERT INTO mw_searchindex VALUES('22', 'bill gates', ' infobox person name bill gates image bill gates 2004 cru800u82ejpgu800 image_size 170px caption atu800 anu800 itu800 forum inu800 denmark 2004 birth_name william henry gates iiiu800 birth_date birth date andu800 ageu800 1955 10u800 28u800 birth_place seattle washington occupation chairman microsoft -- -- cou800-chair bill & melinda gates foundation salary usu800 966u800 667u800 --this isu800 theu800 -- correct style foru800 money-- year 2006 -- -- compensation salary 616u800 667u800 bonus -- -- 350u800 000u800. from microsoft\'su800 http wwwu800. -- -- microsoftu82ecomu800 msft reports proxy2006u82emspx -- -- proxy statement . networth usu800 56u800u82e0u800 billion 2007 -- -- spouse melinda gates since 1994 children 3u800 signature billgates signatureu82esvgu800 website microsoft -- -- http wwwu800u82emicrosoftu82ecomu800 presspass exec -- -- billg defaultu82emspx press pass http -- -- wwwu800u82egatesfoundationu82eorgu800 gates foundation box_width 200px ');
INSERT INTO mw_searchindex VALUES('23', 'mbox', ' namespace detect demospace demospace main ambox talk tmbox file imbox category cmbox other ombox type type image image imageright imageright style style textstyle textstyle text text small small smallimage smallimage smallimageright smallimageright smalltext smalltext ppu800-template small yesu800 documentation -- addu800 categories andu800 interwikis tou800 theu800 docu800 subpage notu800 here -- ');
INSERT INTO mw_searchindex VALUES('24', 'namespace detect', ' #switch lcu800 --lower case theu800 result-- --ifu800 nou800 oru800 empty demospace parameter then detect namespace-- #ifu800 demospace demospace #ifeq namespace nsu800 0u800 main #ifeq namespace talkspace talk namespace -- only oneu800 ofu800 theu800 lines below will beu800 executed -- -- respecting empty parameters onu800 purpose -- main main other talk talk other user user other wikipedia wikipedia other file image file image other mediawiki mediawiki other template template other help help other category category other portal portal other other #default other -- demospace other oru800 au800 newu800 namespace-- --endu800 switch-- ppu800-template small yesu800 documentation -- addu800 categories andu800 interwikis tou800 theu800 docu800 subpage notu800 here -- ');
INSERT INTO mw_searchindex VALUES('25', 'ambox', ' #switch small left ambox core small left type type image #ifu800 smallimage smallimage image imageright #ifu800 smallimageright smallimageright imageright style style textstyle textstyle text #ifu800 smalltext smalltext text #default ambox core type type image image imageright imageright style style textstyle textstyle text text ppu800-template documentation -- addu800 categories andu800 interwikis tou800 theu800 docu800 subpage notu800 here -- ');
INSERT INTO mw_searchindex VALUES('26', 'ambox core', ' #default ambox-notice style #switch small left margin 4pxu800 1emu800 4pxu800 0u800; width 238px; border-collapse collapse; font-size 88u800 ; line-height 1u800u82e25em; style #switch image blank -- fall back tou800 none since deprecated. -- none -- nou800 image. cell with some width oru800 padding necessary foru800 text cell tou800 have 100u800 width. -- #default #switch small left -- donu800\'tu800 useu800 theu800 divu800 -- #default #ifu800 image image image #switch type speedy ambox speedy deletionu82epngu800 delete ambox deletionu82epngu800 content ambox contentu82epngu800 style ambox styleu82epngu800 move ambox moveu82epngu800 protection ambox protectionu82epngu800 notice -- notice default -- #default ambox noticeu82epngu800 #switch small left 20x20px #default 40x40px #switch small left -- donu800\'tu800 useu800 theu800 divu800 -- #default text #ifu800 imageright #ifeq imageright none -- nou800 image. -- #switch small left imageright #default imageright -- detect andu800 report usage with faulty type parameter -- #switch type -- nou800 type fedu800 isu800 also valid input -- speedy delete content style move protection notice -- dou800 nothing valid type -- #default this message boxu800 isu800 using anu800 invalid type type parameter andu800 needs fixing. category wikipedia message boxu800 parameter needs fixing main other main fullpagename -- sort onu800 namespace -- -- detect andu800 report usage ofu800 deprecated image blank -- #switch image blank category wikipedia message boxu800 parameter needs fixing main other main fullpagename -- sort onu800 namespace -- ppu800-template documentation -- addu800 categories andu800 interwikis tou800 theu800 docu800 subpage notu800 here -- ');
INSERT INTO mw_searchindex VALUES('27', 'lunar flare', ' infobox guild guildmaster lucent level 3u800 allies antagonists spirit 3u800 image lfemblemu82epngu800 lunar flare isu800 theu800 first guild tou800 appear onu800 soapro 3u800u82e0u800. itsu800 leader isu800 lucent . ');
INSERT INTO mw_searchindex VALUES('28', 'imbox protectionu82epngu800', ' ');
INSERT INTO mw_searchindex VALUES('29', 'ambox protectionu82epngu800', ' ');
INSERT INTO mw_searchindex VALUES('33', 'porn', ' -- banner across topu800 ofu800 page -- idu800 mpu800-topbanner style width 100u800 ; background #fcfcfc; margin-topu800 1u800u82e2emu800; border 1pxu800 solid #cccu800; style width 56u800 ; color #000u800; -- welcome tou800 wikipedia andu800 article count -- style width 280px; border none; background none; style width 280px; text-align center; white-space nowrap; color #000u800; welcome tou800 orgypedia special statistics numberofarticles articles inu800 english language english -- strapline immediately below banner -- idu800 mpu800-strapline style width 100u800 ; background none; margin -.8emu800 0u800 -.7emu800 0u800; style font-size 95u800 ; padding 10px 0u800; margin 0u800; text-align right; white-space nowrap; color #000u800; main page banner -- today\'su800 featured article; didu800 youu800 know -- idu800 mpu800-upper style margin 0u800 0u800 0u800 0u800; background none; class mainpagebg style width 55u800 ; border 1pxu800 solid #cef2e0; background #f5fffa; vertical-align topu800; color #000u800; idu800 mpu800-left cellpadding 2u800 cellspacing 5u800 style width 100u800 ; vertical-align topu800; background #f5fffa; today\'su800 featured article - style color #000u800;   daniel   isu800 theu800 father ofu800 this wiki. theu800 wiki\'su800 mother isu800 unknown; itu800 isu800 rumored tou800 actually have been au800 manu800-mother. - didu800 youu800 know... - style color #000u800; didu800 youu800 know style border 1pxu800 solid transparent; -- inu800 theu800 news; onu800 this dayu800 -- class mainpagebg style width 45u800 ; border 1pxu800 solid #cedff2; background #f5faff; vertical-align topu800; idu800 mpu800-right cellpadding 2u800 cellspacing 5u800 style width 100u800 ; vertical-align topu800; background #f5faff; recent game updates - style color #000u800; youu800 just lost - onu800 this dayu800... - style color #000u800; lucent andu800 baelr0g getu800 unbanned inu800 1u800 hour. lucent rickrolls theu800 teamspeak with ronu800 paul andu800 siucune present. spirit wasu800 unavailable atu800 theu800 time. -- interwiki strapline -- mainpageinterwikis __notoc____noeditsection__ ');
INSERT INTO mw_searchindex VALUES('30', 'spirit', ' mbox type protection style cssu800 values textstyle cssu800 values text  warning   this page hasu800 been locked sou800 that only users with administrator privileges canu800 edit itu800. ifu800 youu800 need tou800 edit this article please append your edit tou800 theu800 discussion page andu800 someone will review. small small left yesu800 smalltext au800 shorter message body text. spirit\'su800 wiki page ');
INSERT INTO mw_searchindex VALUES('31', 'king ofu800 theu800 back alley', ' #redirect lucent ');
INSERT INTO mw_searchindex VALUES('32', 'king ofu800 theu800 back alley', ' #redirect lucent ');
INSERT INTO mw_searchindex VALUES('36', 'siucune', ' infobox person name siucune characters aokip cyanide birth_place texas usau800 occupation student this page still sucks ignore ignore ignore. ');
INSERT INTO mw_searchindex VALUES('37', 'main page banner', ' -- please note - this template isu800 shown onu800 theu800 main page andu800 anyu800 changes oru800 screw-upsu800 youu800 make will appear there immediately. make changes very carefully andu800 always useu800 theu800 show preview button tou800 make sure your changes turn outu800 properly. tou800 make this template appear onu800 theu800 main page remove theu800 second setu800 ofu800 comment marks. tou800 remove itu800 place comment marks around theu800 banner\'su800 tags. donu800\'tu800 delete them -- make itu800 easy foru800 theu800 next person whou800 uses theu800 banner. -- -- text goes here -- ');
INSERT INTO mw_searchindex VALUES('35', 'mainpageinterwikis', ' ');
INSERT INTO mw_searchindex VALUES('38', 'orgypedia', ' orgypedia ifu800 youu800 actually gotu800 tou800 this page without clicking buttons youu800\'reu800 au800 hero ');
INSERT INTO mw_searchindex VALUES('34', 'didu800 youu800 know', ' lucent isu800 king ofu800 theu800 back alley ');
INSERT INTO mw_searchindex VALUES('45', 'rank 1u800', ' ifu800 youu800 have rank 1u800 onu800 theu800 server feel free tou800 brag. ');
INSERT INTO mw_searchindex VALUES('39', 'administrators', ' file adminsymbolu82epngu800 thumb this isu800 theu800 emblem ofu800 au800 soapwiki administrator.  wiki administrators  areu800 people whou800 have access tou800 restricted andu800 oru800 technical pages ofu800 theu800 wiki. they areu800 responsible foru800 overseeing theu800 functionality ofu800 theu800 wiki. furthermore their jobu800 isu800 tou800 ensure that accurate information isu800 being delivered tou800 soapwiki byu800 ouru800 contributorss. currently there areu800 numberofadmins administrators onu800 theu800 english wikipedia. flag anu800 article flag anu800 article fullurl special listusers sysop limit 5000 current wiki admins becoming au800 soapwiki admin becoming au800 soapwiki admin becoming au800 soapwiki admin main wikipedia requests foru800 adminship onu800 soapwiki there areu800 specific requirements foru800 becoming au800 wiki admin. youu800 donu800\'tu800 necessarily have tou800 beu800 au800 game master inu800 order tou800 become au800 wiki staff member butu800 that would definitely help because soapwiki cannot beu800 edited inu800 itu800\'su800 entirety byu800 guests weu800 require that allu800 contributing members sign upu800 andu800 beu800 active contributors. should youu800 beu800 interested inu800 obtaining au800 wiki admin position please follow theu800 instructions onu800 becoming au800 soapwiki admin this page . after seven days au800 wpu800 crat bureaucrat will determine ifu800 there isu800 wikipedia consensus consensus tou800 give youu800 admin status. this isu800 sometimes difficult tou800 ascertain andu800 isu800 notu800 au800 numerical measurement butu800 asu800 au800 general descriptive rule ofu800 thumb most ofu800 those above 80u800 approval pass most ofu800 those below 70u800 fail andu800 theu800 area between isu800 gray. although wikipedia sock puppetry multiple user accounts areu800 allowed onu800 wikipedia inu800 general   wpu800 adminsock only oneu800 account   ofu800 au800 given person should have administrative tools. theu800 sole exceptions areu800 byu800 agreement ofu800 arbcom oru800 theu800 community. adminship isu800 granted indefinitely andu800 isu800 only removed upon request oru800 under circumstances involving high-level intervention seeu800 #grievances_by_users_u82e28u800u82e22administrator_abuseu82e22u800u82e29u800 administrator abuse below . beu800 careful please beu800 careful please beu800 careful please ifu800 youu800 areu800 granted access youu800 must exercise care inu800 using these newu800 functions especially theu800 ability tou800 delete pages andu800 tou800 block ipu800 addresses. youu800 canu800 learn howu800 tou800 dou800 these things atu800 theu800 wikipedia administrators howu800-tou800 guide administrators howu800-tou800 guide andu800 theu800 wikipedia newu800 admin school newu800 administrator school . please also look atu800 theu800 pages linked from theu800 wikipedia administrators reading list administrators reading list before using your administrative abilities. administrator tools areu800 also used with  judgement ; itu800 canu800 take some time foru800 au800 newu800 administrator tou800 learn when itu800\'su800 best tou800 useu800 theu800 tools andu800 itu800 canu800 take months tou800 gain au800 good sense ofu800 howu800 long au800 period tou800 setu800 when using tools such asu800 blocking andu800 page protection inu800 difficult disputes. newu800 administrators areu800 strongly encouraged tou800 start slowly andu800 build upu800 experience onu800 areas they areu800 used tou800 andu800 byu800 asking others ifu800 unsure. administrators andu800 allu800 other users with extra tools areu800 expected tou800 have au800 strong password tou800 prevent damage inu800 theu800 case ofu800 au800 compromised account. seeu800 also wikipedia security . places where administrators inu800 particular canu800 assist places where administrators inu800 particular canu800 assist places where administrators inu800 particular canu800 assist administrator rights canu800 beu800 particularly helpful foru800 working inu800 certain areas ofu800 wikipedia. wikipedia administrators noticeboard incidents incidents that mayu800 require admin intervention wikipedia administrators noticeboard 3rru800 three-revert rule violations wikipedia administrator intervention against vandalism intervention against vandalism wikipedia copyright problems copyright problems wikipedia copyright problems advice foru800 admins advice foru800 admins category candidates foru800 speedy deletion candidates foru800 speedy deletion category administrative backlog administrative backlog administrators will also find their tools useful foru800 wikipedia recent changes patrol recent changes patrol . seeu800 also wikipedia admins willing tou800 make difficult blocks where admins willing tou800 handle more difficult blocks andu800 other situations canu800 make themselves known andu800 wikipedia ircu800#.23wikipedia-enu800-admins theu800 administrators channel onu800 ircu800 foru800 ircu800 users. wpu800 uninvolved uninvolved administrators canu800 also help inu800 theu800 management ofu800 wpu800 arbcom arbitration committee remedies andu800 theu800 wpu800 dru800 dispute resolution concerning chronic disruptive areas andu800 situations. administrators acting inu800 this role areu800  neutral ; they dou800 notu800 have anyu800 direct involvement inu800 theu800 issues they areu800 helping people with. foru800 au800 list ofu800 such remedies seeu800 wikipedia general sanctions andu800 wikipedia requests foru800 arbitration admin enforcement requested . seeu800 also wikipedia administrators noticeboard arbitration enforcement . administrator conduct administrator conduct administrator conduct administrators areu800 expected tou800 lead byu800 example andu800 tou800 behave inu800 au800 respectful civil manner inu800 their interactions with others. administrators areu800 expected tou800 follow wikipedia policies andu800 tou800 perform their duties tou800 theu800 best ofu800 their abilities. occasional mistakes areu800 entirely compatible with adminship; administrators areu800 notu800 expected tou800 beu800 perfect. however sustained oru800 serious disruption ofu800 wikipedia isu800 incompatible with theu800 status ofu800 administrator andu800 consistently oru800 egregiously poor judgment mayu800 result inu800 theu800 removal ofu800 administrator status. administrators andu800 other experienced editors should especially strive tou800 model appropriate standards ofu800 courtesy andu800 civility tou800 other editors andu800 tou800 oneu800 another. wikipedia requests_for_arbitration c68u800-fmu800-svu800#decorum_and_civility 1u800 wikipedia requests_for_arbitration daniel_brandt_deletion_wheel_war#expectations_and_role_of_administrators 2u800 wikipedia requests_for_arbitration allegations_of_apartheid proposed_decision#responsibility_of_administrators 3u800 wikipedia requests_for_arbitration inshaneee#administrators 4u800 administrators should bear inu800 mind that atu800 this stage inu800 theu800 evolution ofu800 wikipedia they have hundreds ofu800 colleagues. therefore ifu800 anu800 administrator finds that heu800 oru800 sheu800 cannot adhere tou800 site policies andu800 remain civil even toward users exhibiting problematic behavior while addressing au800 given issue then theu800 administrator should bring theu800 issue tou800 au800 noticeboard oru800 refer itu800 tou800 another administrator tou800 address rather than potentially compound theu800 problem byu800 poor conduct ofu800 hisu800 oru800 heru800 ownu800. administrators areu800 accountable foru800 their actions involving administrator tools andu800 unexplained administrator actions canu800 demoralize other editors whou800 lack such tools. subject only tou800 theu800 bounds ofu800 wikipedia civility civility wikipedia nou800 personal attacks avoiding personal attacks andu800 reasonable wikipedia assume good faith good faith editors areu800 free tou800 question oru800 tou800 criticize administrator actions. administrators areu800 expected tou800 respond promptly andu800 civilly tou800 queries about their administrative actions andu800 tou800 justify them when needed. administrators whou800 seriously oru800 repeatedly actu800 inu800 au800 problematic manner oru800 have lost theu800 trust oru800 confidence ofu800 theu800 community mayu800 beu800 sanctioned oru800 have their access removed. inu800 theu800 past this hasu800 happened oru800 been suggested foru800 # repeated consistent poor judgment # breach ofu800 basic policies attacks biting civility edit warring privacy etcu800 # failure tou800 communicate wikipedia requests_for_arbitration betacommand#communication 5u800 ndash this canu800 beu800 either tou800 users eu800u82egu800. lack ofu800 suitable warnings oru800 explanations ofu800 actions oru800 tou800 concerns ofu800 theu800 community especially when explanations oru800 other serious comments areu800 sought . # badu800 faith adminship wpu800 sock sock puppetry gross breach ofu800 trust 6u800 etcu800 # conduct elsewhere incompatible with adminship offu800 site attacking etcu800 . grievances byu800 users administrator abuse grievances byu800 users administrator abuse grievances byu800 users administrator abuse shortcut wpu800 adminabuse wpu800 administratorabuse ifu800 au800 user thinks anu800 administrator hasu800 acted improperly against them oru800 another editor they should express their concerns directly tou800 theu800 administrator responsible andu800 tryu800 tou800 come tou800 au800 resolution inu800 anu800 orderly andu800 civil manner. however ifu800 theu800 matter isu800 notu800 resolved between theu800 twou800 parties users canu800 take further action seeu800 #dispute resolution process dispute resolution process below . foru800 more possibilities seeu800 wikipedia requests foru800 comment user conduct#useu800 ofu800 administrator privileges requests foru800 comment user conduct useu800 ofu800 administrator privileges andu800 wpu800 aniu800 administrators noticeboard incidents . misuse ofu800 administrative tools misuse ofu800 administrative tools misuse ofu800 administrative tools -- also copied tou800 wpu800 admin tools dueu800 tou800 importance. transclusion used tou800 ensure itu800\'su800 upu800 tou800 date. link tou800 edit this section theu800 text includes #ifeq expressions tou800 modify wording based onu800 theu800 page used. take care -- wikipedia administrators misuse ofu800 tools section reinstating au800 reverted action wheel warring reinstating au800 reverted action wheel warring reinstating au800 reverted action wheel warring itu800 isu800 strictly forbidden foru800 administrators tou800 waru800 using administrative tools. wikipedia wheel waru800 describes wheel warring inu800 these terms style border darkgrey solid 1pxu800;background-color #f4e0ff width 90u800 au800 wheel waru800 isu800 au800 struggle between twou800 oru800 more administrators inu800 which they undo oneu800 another\'su800 administrative actions. dou800 notu800 repeat anu800 administrative action when youu800 know that another administrator opposes itu800. dou800 notu800 continue au800 chain ofu800 administrative reversals without discussion. sanctions foru800 wheel warring have varied from reprimands andu800 cautions tou800 temporary blocks tou800 desysopping even foru800 first time incidents. wheel warring hasu800 been used asu800 grounds foru800 immediate revocation ofu800 adminship with arbitration following inu800 au800 number ofu800 cases. administrative actions should never beu800 reversed without good cause. when another administrator hasu800 reversed anu800 administrative action then there isu800 very rarely au800 valid reason foru800 theu800 original oru800 anyu800 other administrator tou800 reinstate theu800 same oru800 similar action again without clear discussion leading tou800 au800 consensus decision. administrators whou800 dou800 sou800 risk desysopping foru800 abuse ofu800 their access. exceptional circumstances exceptional circumstances exceptional circumstances with very fewu800 exceptions once anu800 administrative action hasu800 been reverted itu800 should notu800 beu800 restored without consensus. there areu800 au800 fewu800 exceptions tou800 this general principle.   wikipedia biographies ofu800 living persons  u8e28094material deleted because itu800 contravenes blpu800 mayu800 beu800 reu800-deleted ifu800 reinstated ifu800 itu800 continues tou800 beu800 nonu800-blpu800-compliant.  privacy u8e28094personal information deleted under theu800 foundation\'su800 privacy policy mayu800 beu800 reu800-deleted ifu800 reinstated.  emergency u8e28094in certain situations there mayu800 arise anu800 emergency that cannot beu800 adjourned foru800 discussion. anu800 administrator should notu800 claim emergency unless there isu800 au800  reasonable belief ofu800 au800 present andu800 very serious emergency  iu800u82eeu800. reasonable possibility ofu800 actual imminent serious harm tou800 theu800 project oru800 au800 user ifu800 notu800 acted upon with administrative tools andu800 should immediately seek tou800 describe andu800 address theu800 matter butu800 inu800 such au800 case theu800 action should notu800 usually beu800 reverted andu800 mayu800 beu800 reinstated until appropriate discussion hasu800 taken place.  page protection inu800 edit warring u8e28094reasonable actions undertaken byu800 uninvolved administrators tou800 quell au800 visible andu800 heated edit waru800 byu800 protecting au800 contended page should beu800 respected byu800  allu800  users andu800 protection mayu800 beu800 reinstated ifu800 needed until itu800 isu800 clear theu800 edit waru800 will notu800 resume oru800 consensus agrees itu800 isu800 appropriate tou800 unprotect. removal ofu800 adminship desysopping removal ofu800 adminship desysopping removal ofu800 adminship desysopping ifu800 anu800 administrator abuses administrative powers these powers canu800 beu800 removed. administrators mayu800 beu800 removed either byu800 user jimbo wales jimmy wales oru800 byu800 au800 ruling ofu800 theu800 wikipedia arbitration committee arbitration committee . atu800 their discretion lesser penalties mayu800 also beu800 assessed against problematic administrators including theu800 restriction ofu800 their useu800 ofu800 certain powers oru800 placement onu800 administrative probation. theu800 technical ability tou800 remove administrator status rests with mu800 stewards stewards andu800 user jimbo wales jimmy wales . there have been alternative procedures suggested foru800 theu800 wikipedia requests foru800 deu800-adminship removal ofu800 sysop status butu800 none ofu800 them have achieved wikipedia consensus consensus . some administrators will voluntarily stand foru800 reconfirmation under certain circumstances; seeu800 #administrator recall . users mayu800 useu800 wpu800 dru800 dispute resolution tou800 request comment onu800 anu800 administrator\'su800 suitability. green technical note u8e28094removal ofu800 rights does notu800 currently show upu800 inu800 theu800 usual user logs. useu800 tlxu800 userrights  username  foru800 full links tou800 user rights information andu800 full logs including theu800 stewards global logs onu800 meta meta asu800 well oru800   special listusers   tou800 verify au800 users current rights. seeu800 bugzilla 12925 bugzilla 12925 . disputes oru800 complaints disputes oru800 complaints disputes oru800 complaints seeu800 wikipedia dispute resolution inu800 most cases disputes with administrators should beu800 resolved with theu800 normal dispute resolution process. ifu800 theu800 dispute reflects seriously onu800 au800 user\'su800 administrative capacity blatant misuse ofu800 administrative tools gross oru800 persistent misjudgement oru800 conduct issues then twou800 other steps areu800 also available # au800 wpu800 rfcu800 admin request foru800 comment onu800 anu800 administrator where theu800 community considers concerns oru800 requests foru800 removal ofu800 adminship andu800 will give feedback andu800 views. asu800 foru800 allu800 users au800 request foru800 comment requires au800 second user tou800 certify itu800 whou800 hasu800 also tried andu800 failed tou800 resolve theu800 dispute. # au800 wpu800 rfar request foru800 arbitration ifu800 theu800 matter mayu800 beu800 serious enough tou800 lead tou800 summary removal oru800 au800 restriction oru800 formal warning related tou800 adminship without request foru800 comment being needed. ifu800 theu800 complaining user wasu800 blocked improperly byu800 anu800 administrator they mayu800 wpu800 appeal appeal theu800 block andu800 oru800 email theu800 wpu800 arbcom arbitration committee directly. voluntary removal voluntary removal voluntary removal administrators mayu800 request that their access tou800 theu800 administrative tools beu800 removed atu800 mu800 steward requests permissions . administrators whou800 stepped down inu800 good standing that isu800 notu800 inu800 controversial circumstances mayu800 request their administrators status beu800 restored atu800 anyu800 time byu800 au800 bureaucrat. this isu800 commonly done atu800 theu800 wikipedia bureaucrats noticeboard bureaucrats noticeboard . administrator recall administrator recall administrator recall main article wikipedia administrators open tou800 recall some administrators place themselves open tou800 recall whereby they pledge tou800 #voluntary removal voluntarily step down ifu800 au800 certain number ofu800 editors inu800 good standing request sou800. theu800 specific criteria areu800 setu800 byu800 each administrator foru800 themselves andu800 isu800 usually detailed inu800 their userspace. theu800 process isu800 entirely voluntary andu800 administrators mayu800 change their criteria atu800 anyu800 time oru800 decline tou800 adhere tou800 previously made recall pledges. ifu800 anu800 administrator steps down asu800 au800 result ofu800 au800 recall heu800 oru800 sheu800 then requests removal atu800 mu800 steward requests permissions . security security security main wikipedia security itu800 isu800 extremely important that administrators have password strength strong passwords andu800 wikipedia personal security practices follow personal security practices . because they have theu800 potential tou800 cause site-wide damage with au800 single edit au800 compromised sysop account will beu800 blocked andu800 itsu800 privileges removed onu800 grounds ofu800 site security. inu800 certain circumstances theu800 revocation ofu800 privileges mayu800 beu800 permanent. discretion onu800 resysopping temporarily desysopped administrators isu800 left tou800 wpu800 crat bureaucrats whou800 will consider whether theu800 rightful owner hasu800 been correctly identified andu800 their view onu800 theu800 incident andu800 theu800 management andu800 security including likely future security ofu800 theu800 account. administrators should  never  share their password oru800 account with anyu800 other person foru800 anyu800 reason. ifu800 they find outu800 their password hasu800 been compromised oru800 their account hasu800 been otherwise compromised even byu800 anu800 editor oru800 individual they know andu800 trust they should attempt tou800 change itu800 immediately oru800 otherwise report itu800 tou800 au800 steward foru800 temporary deu800-sysopping. users whou800 fail tou800 report unauthorized useu800 ofu800 their account will beu800 desysopped under controversial circumstances. ');
INSERT INTO mw_searchindex VALUES('42', 'flag anu800 article', ' flagging anu800 article flagging anu800 article flagging anu800 article ifu800 youu800 believe that anu800 article youu800 seeu800 onu800 soapwiki isu800 offensive contains offensive material oru800 isu800 otherwise redundant andu800 contains false information weu800 encourage youu800 tou800 addu800 au800 link tou800 theu800 article inu800 question inu800 this article. administrators wiki admins check this page onu800 au800 regular basis andu800 will respond tou800 your flag asu800 soon asu800 possible. list ofu800 flagged articles list ofu800 flagged articles list ofu800 flagged articles  there areu800 nou800 flagged articles tou800 report. ifu800 youu800\'reu800 theu800 first please replace this text  ');
INSERT INTO mw_searchindex VALUES('43', 'main', ' rellink extraclasses noprint relarticle mainarticle main article #ifu800 2u800 su800 1u800 l1u800 1u800 #ifu800 2u800 #ifu800 3u800 &#32u800; &#32u800;andu800&#32u800; 2u800 l2u800 2u800 #ifu800 3u800 #ifu800 4u800 &#32u800; &#32u800;andu800&#32u800; 3u800 l3u800 3u800 #ifu800 4u800 #ifu800 5u800 &#32u800; &#32u800;andu800&#32u800; 4u800 l4u800 4u800 #ifu800 5u800 #ifu800 6u800 &#32u800; &#32u800;andu800&#32u800; 5u800 l5u800 5u800 #ifu800 6u800 #ifu800 7u800 &#32u800; &#32u800;andu800&#32u800; 6u800 l6u800 6u800 #ifu800 7u800 #ifu800 8u800 &#32u800; &#32u800;andu800&#32u800; 7u800 l7u800 7u800 #ifu800 8u800 #ifu800 9u800 &#32u800; &#32u800;andu800&#32u800; 8u800 l8u800 8u800 #ifu800 9u800 #ifu800 10u800 &#32u800; &#32u800;andu800&#32u800; 9u800 l9u800 9u800 #ifu800 10u800 andu800 10u800 l10u800 10u800   #ifu800 11u800 &#32u800; toou800 many parameters inu800 &#123u800;&#123u800; template main main &#125u800;&#125u800; ppu800-template small yesu800 template docu800 ');
INSERT INTO mw_searchindex VALUES('44', 'rellink', ' extraclasses style font-style italic; padding-left 2emu800; 1u800 ppu800-template small yesu800 documentation ');
INSERT INTO mw_searchindex VALUES('46', 'first woeu800', ' this page isu800 dedicated tou800 theu800 story ofu800 soapro v3u800u82e0u800\'su800 first woeu800 which wasu800 epic btwu800 . ');
INSERT INTO mw_searchindex VALUES('47', 'infobox guild', ' infobox bodyclass biography vcard vevent bodystyle width #ifu800 box_width box_width 22em ; font-size 95u800 ; text-align left; above   name pagename \'su800 stats  aboveclass fnu800 summary abovestyle text-align center; font-size 125u800 ; image #ifu800 image image image #ifu800 image_size imagesize image_size imagesize 24px imageclass image class names image imagestyle padding 4ptu800; line-height 1u800u82e25em; text-align center; font-size 8ptu800; caption caption labelstyle padding 0u800u82e2emu800 1u800u82e0emu800 0u800u82e2emu800 0u800u82e2emu800; background transparent; line-height 1u800u82e2emu800; text-align left; font-size 90u800 ; datastyle padding 0u800u82e2emu800; line-height 1u800u82e3emu800; vertical-align middle; font-size 90u800 ; data39 name label39 name data40 guildmaster label40 guild&nbsp;master data41 level label41 level data42 allies label42 allies data43 antagonists label43 antagonists label1 #ifu800 birth_name birth_date birth_place born data1 #ifu800 birth_name birth_name #ifu800 birth_date birth_date birth_place label2 #ifu800 death_date death_place died data2 #ifu800 death_date death_date death_place label3 cause&nbsp;ofu800 death data3 death_cause label4 body discovered data4 body_discovered label5 resting&nbsp;place class5 label data5 resting_place #ifu800 resting_place_coordinates resting_place_coordinates label6 residence class6 label data6 residence class7 category label7 nationality data7 nationality label8 other&nbsp;names class8 nickname data8 other_names class9 category label9 ethnicity data9 ethnicity class10 category label10 citizenship data10 citizenship label11 education data11 education label12 alma&nbsp;mater data12 alma_mater label13 occupation class13 role data13 occupation label14 years active data14 years_active label15 employer data15 employer label16 home&nbsp;town data16 home_town label17 salary data17 salary label18 netu800&nbsp;worth data18 networth label19 height data19 height label20 weight data20 weight label21 known&nbsp;foru800 data21 known known_for label22 title data22 title label23 term data23 term label24 predecessor data24 predecessor label25 successor data25 successor label26 political&nbsp;party data26 party label27 opponent su800 data27 opponents label28 board member&nbsp;ofu800 data28 boards label29 religious beliefs data29 religion label30 spouse su800 data30 spouse label31 partner data31 partner label32 children data32 children label33 parents data33 parents label34 relatives data34 relations relatives label35 call-sign data35 callsign data36 #ifu800 signature  signature  image signature 128px data37 #ifu800 website  website  website data38 #ifu800 footnotes  notes  footnotes ppu800-template small yesu800 documentation ---please addu800 metadata tou800 theu800 section atu800 theu800 bottom ofu800 theu800 docu800 subpage--- ');
INSERT INTO mw_searchindex VALUES('40', 'soapwiki', ' soapro\'su800 wiki. ');
INSERT INTO mw_searchindex VALUES('41', 'english language', ' ppu800-move-indef refimprove date february 2009 english language  english  isu800 au800 west germanic language that originated inu800 anglo-saxon england andu800 hasu800   lingua franca   status inu800 many parts ofu800 theu800 world asu800 au800 result ofu800 theu800 military economic scientific political andu800 cultural influence ofu800 theu800 british empire inu800 theu800 18th 19th andu800 early 20th centuries andu800 that ofu800 theu800 united states from theu800 late 19th century onwards. itu800 isu800 used extensively asu800 au800 second language andu800 asu800 anu800 official language inu800 commonwealth ofu800 nations commonwealth countries andu800 isu800 theu800 preferred language ofu800 many international organization organizationsu800. historically english originated from several dialects nowu800 called oldu800 english which were brought tou800 britain byu800 anglo-saxon settlers beginning inu800 theu800 5thu800 century. theu800 language wasu800 heavily influenced byu800 theu800 oldu800 norse language ofu800 viking invaders. after theu800 norman conquest ofu800 england norman conquest oldu800 english developed into middle english borrowing heavily from theu800 norman language norman anglo-french vocabulary andu800 spelling conventions. modern english developed from there andu800 continues tou800 adopt foreign words especially from latin language latin andu800 greek language greek . significance significance significance modern english sometimes described asu800 theu800 first global lingua franca cite webu800 title global english gift oru800 curse urlu800 accessdate 2005-04u800-04u800 isu800 theu800 linguistic imperialism dominant international auxiliary language international language inu800 communication communicationsu800 science business aviation entertainment radio andu800 diplomacy . cite webu800 urlu800 title theu800 triumph ofu800 english accessdate 2007-03u800-26u800 date 2001-12u800-20u800 publisher theu800 economist itsu800 spread beyond theu800 british isles began with theu800 growth ofu800 theu800 british empire andu800 byu800 theu800 late nineteenth century itsu800 reach wasu800 truly global. cite webu800 urlu800 title lecture 7u800 world-wide english accessdate 2007-03u800-26u800 publisher eu800 histling itu800 isu800 theu800 dominant language inu800 theu800 united states whose growing economic andu800 cultural influence andu800 status asu800 au800 global superpower since world waru800 iiu800 have significantly accelerated theu800 language\'su800 adoption across theu800 planet. cite webu800 urlu800 format pdfu800 title theu800 future ofu800 english accessdate 2007-04u800-15u800 year 1997 author david graddol publisher theu800 british council au800 working knowledge ofu800 english hasu800 become au800 requirement inu800 au800 number ofu800 fields occupations andu800 professions such asu800 medicine andu800 computing; asu800 au800 consequence over au800 billion people speak english tou800 atu800 least au800 basic level seeu800 english language learning andu800 teaching . itu800 isu800 also oneu800 ofu800 sixu800 official languages ofu800 theu800 united nations . linguists such asu800 david crystal recognize that oneu800 impact ofu800 this massive growth ofu800 english inu800 common with other global languages hasu800 been tou800 reduce native natural language#linguistic diversity linguistic diversity inu800 many parts ofu800 theu800 world most particularly inu800 australasia andu800 north america andu800 itsu800 huge influence continues tou800 play anu800 important role inu800 language attrition . cite book last crystal first david authorlink david crystal title langauge death publisher cambridge university press year 2002 doiu800 10u800u82e2277 0521012716 isbn 0521012716 similarly historical linguistics historical linguists aware ofu800 theu800 complex andu800 fluid dynamics ofu800 language change areu800 always aware ofu800 theu800 potential english contains through theu800 vast size andu800 spread ofu800 theu800 communities that useu800 itu800 andu800 itsu800 natural internal variety such asu800 inu800 itsu800 english-based creole languages creoles andu800 pidgin pidginsu800 tou800 produce au800 newu800 language family family ofu800 distinct languages over time. cite book last cheshire first jenny authorlink jenny cheshire title english around theu800 world sociolinguistic perspectives publisher cambridge university press year 1991 doiu800 10u800u82e2277 0521395658 isbn 0521395658 history history history main history ofu800 theu800 english language english isu800 au800 west germanic languages west germanic language that originated from theu800 anglo-frisian languages anglo-frisian andu800 lower saxon dialects brought tou800 great britain britain byu800 germanic settlers andu800 roman auxiliary troops from various parts ofu800 what isu800 nowu800 northwest germany andu800 theu800 northern netherlands fact date october 2008 inu800 theu800 5thu800 century. oneu800 ofu800 these german tribes were theu800 angles anglik english language resource whou800 mayu800 have come from angeln andu800 bede wrote that their whole nation came tou800 britain leaving their former land empty. theu800 names \'england\' oru800 \'aenglaland\' andu800  english  areu800 derived from theu800 name ofu800 this tribe. theu800 anglo saxon saxonsu800 began invading around 449u800 adu800 from theu800 regions ofu800 denmark andu800 jutland linguistics research center texas university theu800 germanic invasions ofu800 western europe calgary university before theu800 anglo-saxons arrived inu800 england theu800 native population spoke brythonic languages brythonic au800 celtic languages celtic language. english language expert although theu800 most significant changes inu800 dialect occurred after theu800 norman invasion ofu800 1066 theu800 language retained itsu800 name andu800 theu800 preu800-norman invasion dialect isu800 nowu800 known asu800 oldu800 english . history ofu800 english chapter 5u800 from oldu800 tou800 middle english initially oldu800 english language oldu800 english wasu800 au800 diverse group ofu800 dialects reflecting theu800 varied origins ofu800 theu800 anglo-saxon kingdoms ofu800 great britain fact date october 2008 . oneu800 ofu800 these dialects late west saxon eventually came tou800 dominate. theu800 original oldu800 english language wasu800 then influenced byu800 twou800 waves ofu800 invasion. theu800 first wasu800 byu800 language speakers ofu800 theu800 north germanic languages scandinavian branch ofu800 theu800 germanic family; they conquered andu800 colonized parts ofu800 theu800 british isles inu800 theu800 8thu800 andu800 9thu800 centuries. theu800 second wasu800 theu800 normans inu800 theu800 11th century whou800 spoke oldu800 norman andu800 developed anu800 english variety ofu800 this called anglo-norman language anglo-norman . over theu800 centuries this lost theu800 specifically norman element under theu800 influence ofu800 parisian french andu800 later ofu800 english eventually turning into au800 distinctive dialect ofu800 lawu800 french anglo-french . these twou800 invasions caused english tou800 become mixed tou800 some degree though itu800 wasu800 never au800 truly mixed language inu800 theu800 strict linguistic sense ofu800 theu800 word; mixed languages arise from theu800 cohabitation ofu800 speakers ofu800 different languages whou800 develop au800 hybrid tongue foru800 basic communication . cohabitation with theu800 scandinavians resulted inu800 au800 significant grammatical simplification andu800 lexical supplementation ofu800 theu800 anglo-frisian core ofu800 english; theu800 later normans norman occupation ledu800 tou800 theu800 grafting onto that germanic core ofu800 au800 more elaborate layer ofu800 words from theu800 italic languages italic branch ofu800 theu800 european languages. this norman influence entered english largely through theu800 courts andu800 government. thus english developed into au800 borrowing language ofu800 great flexibility andu800 with au800 huge vocabulary. theu800 emergence andu800 spread ofu800 theu800 british empire asu800 well asu800 theu800 emergence ofu800 theu800 united states asu800 au800 superpower helped tou800 spread theu800 english language around theu800 world. classification andu800 related languages classification andu800 related languages classification andu800 related languages theu800 english language belongs tou800 theu800 western subu800-branch ofu800 theu800 germanic languages germanic branch ofu800 theu800 indo-european languages indo-european family ofu800 languages. theu800 closest living relative ofu800 english isu800 either scots language scots spoken primarily inu800 scotland andu800 parts ofu800 northern ireland oru800 frisian languages frisian . asu800 scots isu800 viewed byu800 linguists asu800 either au800 separate language oru800 else asu800 au800 group ofu800 dialects ofu800 english frisian rather than scots isu800 often said tou800 beu800 theu800 next closest. after those areu800 other germanic languages namely theu800 west germanic languages dutch language dutch afrikaans lowu800 german german language high german andu800 theu800 north germanic languages swedish language swedish danish language danish norwegian language norwegian icelandic language icelandic andu800 faroese language faroese . with theu800 exception ofu800 scots none ofu800 these languages isu800 mutually intelligible with english because ofu800 divergences inu800 lexis syntax semantics andu800 phonology . fact date april 2008 lexical differences with theu800 other germanic languages arise predominantly because ofu800 theu800 heavy usage inu800 english ofu800 words taken from latin foru800 example exit vsu800. dutch  uitgang  literally outu800-gang with gang asu800 inu800 gangway andu800 french change vsu800. german  u8c3a4nderung  movement vsu800. german  bewegung  literally othering andu800 beu800-wayu800-ingu800 proceeding along theu800 wayu800 . theu800 syntax ofu800 german andu800 dutch isu800 also significantly different from english with different rules foru800 setting upu800 sentences foru800 example german  ichu800  habe  noch nieu800 etwas aufu800 demu800 platz  gesehen  vsu800. english iu800  have  still never  seen  anything inu800 theu800 square . semantics causes au800 number ofu800 false friends between english andu800 itsu800 relatives. phonology differences obscure words which actually areu800 genetically related enough vsu800. german  genug  andu800 sometimes both semantics  andu800  phonology areu800 different german  zeit  time isu800 related tou800 english tide butu800 theu800 english word hasu800 come tou800 mean gravitational effects onu800 theu800 ocean byu800 theu800 moon . fact date april 2008 finally english hasu800 been forming compound words andu800 affixing existing words separately from theu800 other germanic languages foru800 over 1500 years andu800 hasu800 different habits inu800 that regard. foru800 instance abstract nouns inu800 english mayu800 beu800 formed from native words byu800 theu800 suffixes -hood -ship -domu800 andu800 -ness. allu800 ofu800 these have cognate suffixes inu800 most oru800 allu800 other germanic languages butu800 their usage patterns have diverged asu800 german freiheit vsu800. english freedom theu800 suffix -heit being cognate ofu800 english -hood while english -domu800 isu800 cognate with german -tumu800 . many written french language french words areu800 also intelligible tou800 anu800 english speaker though pronunciations areu800 often quite different because english absorbed au800 large vocabulary from norman language norman andu800 french viau800 anglo-norman after theu800 norman conquest andu800 directly from french inu800 subsequent centuries. asu800 au800 result au800 large portion ofu800 english vocabulary isu800 derived from french with some minor spelling differences word endings useu800 ofu800 oldu800 french spellings etcu800. asu800 well asu800 occasional divergences inu800 meaning ofu800 sou800-called false friends. theu800 pronunciation ofu800 most french loanwords inu800 english with exceptions such asu800  mirage  oru800 phrases like  coup du8e28099u8c3a9tat  hasu800 become completely anglicized andu800 follows au800 typically english pattern ofu800 stress. fact date april 2008 some north germanic words also entered english dueu800 tou800 theu800 danish invasion shortly before then seeu800 danelaw ; these include words such asu800 skyu800 window eggu800 andu800 even they andu800 itsu800 forms andu800 areu800 theu800 present plural form ofu800 tou800 beu800 . fact date april 2008 geographical distribution geographical distribution geographical distribution seealso list ofu800 countries byu800 english-speaking population english official language clickable mapu800 file english dialects1997 modifiedu82esvgu800 thumb pieu800 chart showing theu800 relative numbers ofu800 native english speakers inu800 theu800 major english-speaking countries ofu800 theu800 world approximately 375u800 million people speak english asu800 their first language. curtis andy.  color race andu800 english language teaching shades ofu800 meaning . 2006 page 192u800. english today isu800 probably theu800 third largest language byu800 number ofu800 native speakers after mandarin linguistics mandarin chinese andu800 spanish language spanish . ethnologue 1999 ciau800 world factbook field listing - languages world . however when combining native andu800 nonu800-native speakers itu800 isu800 probably theu800 most commonly spoken language inu800 theu800 world though possibly second tou800 au800 combination ofu800 theu800 chinese language languagesu800 depending onu800 whether oru800 notu800 distinctions inu800 theu800 latter areu800 classified asu800 languages oru800 dialects . languages ofu800 theu800 world charts comrie 1998 weber 1997 andu800 theu800 summer institute foru800 linguistics silu800 1999 ethnologue survey. available atu800 theu800 world\'su800 most widely spoken languages cite journal urlu800 format pdfu800 journal sino-platonic papers last mair first victor hu800. authorlink victor hu800. mair title what isu800 au800 chinese dialect topolect reflections onu800 some keyu800 sino-english linguistic terms year 1991 estimates that include second language speakers vary greatly from 470u800 million tou800 over au800 billion depending onu800 howu800 literacy oru800 mastery isu800 defined. cite webu800 urlu800 title english language accessdate 2007-03u800-26u800 year 2005 publisher columbia university press 20u800 000u800 teaching there areu800 some whou800 claim that nonu800-native speakers nowu800 outnumber native speakers byu800 au800 ratio ofu800 3u800 tou800 1u800. notu800 theu800 queen\'su800 english newsweek international 7u800 march edition 2007. theu800 countries with theu800 highest populations ofu800 native english speakers areu800 inu800 descending order united states 215u800 million cite webu800 urlu800 title uu800u82esu800. census bureau statistical abstract ofu800 theu800 united states 2003 section 1u800 population format pdfu800 publisher uu800u82esu800. census bureau pages 59u800 pages language english table 47u800 gives theu800 figure ofu800 214u800 809u800 000u800 foru800 those five years oldu800 andu800 over whou800 speak exclusively english atu800 home. based onu800 theu800 american community survey these results exclude those living communally such asu800 college dormitories institutions andu800 group homes andu800 byu800 definition exclude native english speakers whou800 speak more than oneu800 language atu800 home. united kingdom 61u800 million theu800 cambridge encyclopedia ofu800 theu800 english language second edition crystal david; cambridge uku800 cambridge university press 1995 2003-08u800-03u800 . canada 18u800u82e2u800 million population byu800 mother tongue andu800 ageu800 groups 2006 counts foru800 canada provinces andu800 territoriesu8e2809320 sample data census 2006 statistics canada . australia 15u800u82e5u800 million census data from australian bureau ofu800 statistics main language spoken atu800 home. theu800 figure isu800 theu800 number ofu800 people whou800 only speak english atu800 home. ireland 3u800u82e8u800 million south africa 3u800u82e7u800 million census inu800 brief page 15u800 table 2u800u82e5u800 2001 census statistics south africa . andu800 newu800 zealand 3u800u82e0u800-3u800u82e7u800 million . languages spoken 2006 census statistics newu800 zealand . nou800 figure isu800 given foru800 theu800 number ofu800 native speakers butu800 itu800 would beu800 somewhere between theu800 number ofu800 people whou800 spoke english only 3u800 008u800 058u800 andu800 theu800 total number ofu800 english speakers 3u800 673u800 623u800 ifu800 oneu800 ignores theu800 197u800 187u800 people whou800 didu800 notu800 provide au800 usable answer. countries such asu800 jamaica andu800 nigeria also have millions ofu800 native speakers ofu800 dialect continuum dialect continua ranging from anu800 english-based creole languages english-based creole tou800 au800 more standard version ofu800 english. ofu800 those nations where english isu800 spoken asu800 au800 second language india hasu800 theu800 most such speakers \' indian english \' andu800 linguistics professor david crystal claims that combining native andu800 nonu800-native speakers india nowu800 hasu800 more people whou800 speak oru800 understand english than anyu800 other country inu800 theu800 world. subcontinent raises itsu800 voice crystal david; guardian weekly friday 19u800 november 2004. following india isu800 theu800 people\'su800 republic ofu800 china . yong zhao; keith pu800. campbell 1995 . english inu800 china . world englishes 14u800 3u800 377u8e28093390. hong kong contributes anu800 additional 2u800u82e5u800 million speakers 1996 byu800-census . countries inu800 order ofu800 total speakers countries inu800 order ofu800 total speakers countries inu800 order ofu800 total speakers class wikitable sortable style text-align center; - rank country total percent ofu800 population first language asu800 anu800 additional language class unsortable comment - 1u800 united states 251u800 388u800 301u800 83u800 215u800 423u800 557u800 35u800 964u800 744u800 source usu800 census 2006 language useu800 andu800 english-speaking ability 2006 table 1u800. figure foru800 second language speakers areu800 respondents whou800 reported they dou800 notu800 speak english atu800 home butu800 know itu800 very well oru800 well . note figures areu800 foru800 population ageu800 5u800 andu800 older - 2u800 india 90u800 000u800 000u800 8u800 178u800 598u800 65u800 000u800 000u800  second  language speakers. 25u800 000u800 000u800  third  language speakers figures include both those whou800 speak english asu800 au800  second language  andu800 those whou800 speak itu800 asu800 au800  third language . 1991 figures. census ofu800 india\'su800 indian census issue 10u800 2003 ppu800 8u800-10u800 feature languages ofu800 west bengal inu800 census andu800 surveys bilingualism andu800 trilingualism . tropf herbert su800. 2004. india andu800 itsu800 languages . siemens agu800 munich theu800 figures include english  speakers  butu800 notu800 english  users . foru800 theu800 distinction between english speakers andu800 english users seeu800 tesol-india teachers ofu800 english tou800 speakers ofu800 other languages india world\'su800 second largest english-speaking country . their article explains theu800 difference between theu800 350u800 million number mentioned inu800 au800 previous version ofu800 this wikipedia article andu800 au800 more plausible 90u800 million number cquote wikipedia\'su800 india estimate ofu800 350u800 million includes twou800 categories - english speakers andu800 english users . theu800 distinction between theu800 speakers andu800 users isu800 that users only know howu800 tou800 read english words while speakers know howu800 tou800 read english understand spoken english asu800 well asu800 form their ownu800 sentences tou800 converse inu800 english. theu800 distinction becomes clear when youu800 consider theu800 china numbers. china hasu800 over 200u800 350u800 million users that canu800 read english words butu800 asu800 anyone canu800 seeu800 onu800 theu800 streets ofu800 china only handful ofu800 million whou800 areu800 english speakers. - 3u800 nigeria 79u800 000u800 000u800 53u800 4u800 000u800 000u800 75u800 000u800 000u800 figures areu800 foru800 speakers ofu800 nigerian pidgin anu800 english-based pidgin oru800 creole. ihemere gives au800 range ofu800 roughly 3u800 tou800 5u800 million native speakers; theu800 midpoint ofu800 theu800 range isu800 used inu800 theu800 table. ihemere kelechukwu uchechukwu. 2006. au800 basic description andu800 analytic treatment ofu800 noun clauses inu800 nigerian pidgin.  nordic journal ofu800 african studies  15u800 3u800 296u8e28093313. - 4u800 united kingdom 59u800 600u800 000u800 98u800 58u800 100u800 000u800 1u800 500u800 000u800 source crystal 2005 pu800. 109u800. - 5u800 philippines 45u800 900u800 000u800 52u800 27u800 000u800 42u800 500u800 000u800 total speakers census 2000 text above figure 7u800 . 63u800u82e71u800 ofu800 theu800 66u800u82e7u800 million people aged 5u800 years oru800 more could speak english. native speakers census 1995 asu800 quoted byu800 andrew gonzalez inu800 theu800 language planning situation inu800 theu800 philippines journal ofu800 multilingual andu800 multicultural development 19u800 5u800&6u800 487u800-525u800. 1998 - 6u800 canada 25u800 246u800 220u800 76u800 17u800 694u800 830u800 7u800 551u800 390u800 source 2001 census - knowledge ofu800 official languages andu800 mother tongue . theu800 native speakers figure comprises 122u800 660u800 people with both french andu800 english asu800 au800 mother tongue plus 17u800 572u800 170u800 people with english andu800 notu800 french asu800 au800 mother tongue. - 7u800 australia 18u800 172u800 989u800 92u800 15u800 581u800 329u800 2u800 591u800 660u800 source 2006 census. australian bureau ofu800 statistics theu800 figure shown inu800 theu800 first language english speakers column isu800 actually theu800 number ofu800 australian residents whou800 speak only english atu800 home. theu800 additional language column shows theu800 number ofu800 other residents whou800 claim tou800 speak english well oru800 very well . another 5u800 ofu800 residents didu800 notu800 state their home language oru800 english proficiency. english isu800 theu800 primary language inu800 anguilla antigua andu800 barbuda australia australian english theu800 theu800 bahamas bahamas barbados bermuda belize belizean kriol language belizean kriol theu800 british indian ocean territory theu800 british virgin islands canada canadian english theu800 cayman islands theu800 falkland islands gibraltar grenada guam guernsey channel island english guyana ireland hiberno-english isle ofu800 manu800 manx english jamaica jamaican english jersey montserrat nauru newu800 zealand newu800 zealand english pitcairn islands saint helena saint kitts andu800 nevis saint vincent andu800 theu800 grenadines singapore south georgia andu800 theu800 south sandwich islands trinidad andu800 tobago theu800 turks andu800 caicos islands theu800 united kingdom theu800 united states virgin islands uu800u82esu800. virgin islands andu800 theu800 united states. inu800 many other countries where english isu800 notu800 theu800 most spoken language itu800 isu800 anu800 official language; these countries include botswana cameroon dominica fiji theu800 federated states ofu800 micronesia ghana theu800 gambia gambia india kenya kiribati lesotho liberia madagascar malta theu800 marshall islands mauritius namibia nigeria pakistan palau papua newu800 guinea theu800 philippines philippine english puerto rico rwanda theu800 solomon islands saint lucia samoa seychelles sierra leone sriu800 lanka swaziland tanzania uganda zambia andu800 zimbabwe . itu800 isu800 also oneu800 ofu800 theu800 11u800 official languages that areu800 given equal status inu800 south africa south african english . english isu800 also theu800 official language inu800 current dependent territory dependent territories ofu800 australia norfolk island christmas island andu800 cocos island andu800 ofu800 theu800 united states northern mariana islands american samoa andu800 puerto rico citation urlu800 title puerto rico culture politics andu800 identity author nancy morris year 1995 publisher praeger greenwood isbn 0275952282 pages 62u800 former british colony ofu800 hong kong andu800 netherlands antilles . english isu800 anu800 important language inu800 several former colony colonies andu800 protectorate protectoratesu800 ofu800 theu800 united kingdom butu800 falls short ofu800 official status such asu800 inu800 malaysia brunei united arab emirates bangladesh andu800 bahrain . english isu800 also notu800 anu800 official language inu800 either theu800 united states oru800 theu800 united kingdom. languages spoken inu800 theu800 uu800u82esu800. national virtual translation center 2006. uu800u82esu800. english foundation official language research ndash united kingdom. although theu800 united states federal government hasu800 nou800 official languages english hasu800 been given official status byu800 30u800 ofu800 theu800 50u800 state governments. uu800u82esu800. english incu800. english isu800 notu800 au800   deu800 jure   official language ofu800 israel ; however theu800 country hasu800 maintained official language useu800 au800  deu800 facto  role foru800 english since theu800 british mandate. multilingualism inu800 israel language policy research center english asu800 au800 global language english asu800 au800 global language english asu800 au800 global language seeu800 also english inu800 computing international english world language because english isu800 sou800 widely spoken itu800 hasu800 often been referred tou800 asu800 au800 world language theu800   lingua franca   ofu800 theu800 modern erau800. while english isu800 notu800 anu800 official language inu800 most countries itu800 isu800 currently theu800 language most often taught asu800 au800 second language around theu800 world. some linguists whou800 date november 2007 believe that itu800 isu800 nou800 longer theu800 exclusive cultural sign ofu800 native english speakers butu800 isu800 rather au800 language that isu800 absorbing aspects ofu800 cultures worldwide asu800 itu800 continues tou800 grow. itu800 isu800 byu800 international treaty theu800 official language foru800 aerial andu800 maritime communications. international maritime organization english isu800 anu800 official language ofu800 theu800 united nations andu800 many other international organizations including theu800 international olympic committee . english isu800 theu800 language most often studied asu800 au800 foreign language inu800 theu800 european union byu800 89u800 ofu800 schoolchildren followed byu800 french 32u800 german 18u800 andu800 spanish 8u800 . theu800 official euu800 languages among nonu800-english speaking euu800 countries au800 large percentage ofu800 theu800 population claimed tou800 beu800 able tou800 converse inu800 english inu800 theu800 netherlands 87u800 sweden 85u800 denmark 83u800 luxembourg 66u800 finland 60u800 slovenia 56u800 austria 53u800 belgium 52u800 andu800 germany 51u800 . european union norway andu800 iceland also have au800 large majority ofu800 competent english-speakers. fact date july 2008 book booksu800 magazine magazinesu800 andu800 newspaper newspapersu800 written inu800 english areu800 available inu800 many countries around theu800 world. english isu800 also theu800 most commonly used language inu800 theu800 science sciencesu800. inu800 1997 theu800 science citation index reported that 95u800 ofu800 itsu800 articles were written inu800 english even though only half ofu800 them came from authors inu800 english-speaking countries. dialects andu800 regional varieties dialects andu800 regional varieties dialects andu800 regional varieties main list ofu800 dialects ofu800 theu800 english language theu800 expansion ofu800 theu800 british empire andu8e28094since world waru800 iiu800 iiu800u8e28094the influence ofu800 theu800 united states have spread english throughout theu800 globe. because ofu800 that global spread english hasu800 developed au800 host ofu800 list ofu800 dialects ofu800 theu800 english language english dialects andu800 english-based creole language languagesu800 andu800 pidgin pidginsu800. twou800 educated native dialects ofu800 english have wide acceptance asu800 standards inu800 much ofu800 theu800 worldu8e28094one based onu800 educated southern british andu800 theu800 other based onu800 educated midwestern american. theu800 former isu800 sometimes called bbcu800 oru800 theu800 queen\'su800 english andu800 itu800 mayu800 beu800 noticeable byu800 itsu800 preference foru800 received pronunciation ; itu800 typifies theu800 cambridge english language teaching accreditation cambridge model which isu800 theu800 standard foru800 theu800 teaching ofu800 english tou800 speakers ofu800 other languages inu800 europe africa theu800 indian subcontinent andu800 other areas influenced either byu800 theu800 british commonwealth oru800 byu800 au800 desire notu800 tou800 beu800 identified with theu800 united states. theu800 latter dialect general american which isu800 spread over most ofu800 theu800 united states andu800 much ofu800 canada isu800 more typically theu800 model foru800 theu800 american continents andu800 areas such asu800 theu800 philippines which have hadu800 either close association with theu800 united states oru800 desire tou800 beu800 sou800 identified. aside from those twou800 major dialects areu800 numerous other variety linguistics varieties ofu800 english which include inu800 most cases several subvarieties such asu800 cockney scouse andu800 geordie within british english ; newfoundland english within canadian english ; andu800 african american vernacular english ebonics andu800 southern american english within american english . english isu800 au800 pluricentric language without au800 central language authority like france\'su800 acadu8c3a9mie franu8c3a7aise ; andu800 therefore nou800 oneu800 variety isu800 considered correct oru800 incorrect except inu800 terms ofu800 theu800 expectations ofu800 theu800 particular audience tou800 which theu800 language isu800 directed. scots language scots developedu8e28094largely independently fact date mayu800 2008 u8e28094from theu800 same origins butu800 following theu800 acts ofu800 union 1707 au800 process ofu800 language attrition began whereby successive generations adopted more andu800 more features from english causing dialectalisation. whether itu800 isu800 nowu800 au800 separate language oru800 au800 dialect ofu800 english better described asu800 scottish english isu800 inu800 dispute. theu800 pronunciation grammar andu800 lexis ofu800 theu800 traditional forms differ sometimes substantially from other varieties ofu800 english. because ofu800 theu800 wide useu800 ofu800 english asu800 au800 second language english speakers have many different accent linguistics accents which often signal theu800 speaker\'su800 native dialect oru800 language. foru800 theu800 more distinctive characteristics ofu800 regional accents seeu800 regional accents ofu800 english andu800 foru800 theu800 more distinctive characteristics ofu800 regional dialects seeu800 list ofu800 dialects ofu800 theu800 english language . within england variation isu800 nowu800 largely confined tou800 pronunciation rather than grammar oru800 vocabulary. atu800 theu800 time ofu800 theu800 survey ofu800 english dialects grammar andu800 vocabulary differed across theu800 country butu800 au800 process ofu800  lexical attrition  hasu800 ledu800 most ofu800 this variation tou800 dieu800 outu800. peter trudgill  theu800 dialects ofu800 england  2ndu800 edition page 125u800 blackwell oxford 2002 just asu800 english itself hasu800 borrowed words from many different languages over itsu800 history english loanword loanwordsu800 nowu800 appear inu800 many languages around theu800 world indicative ofu800 theu800 technological andu800 cultural influence ofu800 itsu800 speakers. several pidgin pidginsu800 andu800 creole language languagesu800 have been formed onu800 anu800 english base such asu800 jamaican language jamaican patois nigerian pidgin andu800 toku800 pisin . there areu800 many words inu800 english coined tou800 describe forms ofu800 particular nonu800-english languages that contain au800 very high proportion ofu800 english words. constructed varieties ofu800 english constructed varieties ofu800 english constructed varieties ofu800 english basic english isu800 simplified foru800 easy international useu800. manufacturers andu800 other international businesses tend tou800 write manuals andu800 communicate inu800 basic english. some english schools inu800 asia teach itu800 asu800 au800 practical subset ofu800 english foru800 useu800 byu800 beginners. eu800-prime excludes forms ofu800 theu800 verb  tou800 beu800 . english spelling reform english reform isu800 anu800 attempt tou800 improve collectively upon theu800 english language. manually coded english ndash au800 variety ofu800 systems have been developed tou800 represent theu800 english language with hand signals designed primarily foru800 useu800 inu800 deaf education. these should notu800 beu800 confused with true sign languages such asu800 british sign language andu800 american sign language used inu800 anglophone countries which areu800 independent andu800 notu800 based onu800 english. seaspeak andu800 theu800 related nato phonetic alphabet airspeak andu800 policespeak allu800 based onu800 restricted vocabularies were designed byu800 edward johnson prolingua limited edward johnson inu800 theu800 1980s tou800 aidu800 international cooperation andu800 communication inu800 specific areas. there isu800 also au800 tunnelspeak foru800 useu800 inu800 theu800 channel tunnel . special english isu800 au800 simplified version ofu800 english used byu800 theu800 voice ofu800 america . itu800 uses au800 vocabulary ofu800 only 1500 words. phonology phonology phonology main english phonology vowels vowels vowels seealso ipau800 chart foru800 english dialects cleanup-section date december 2008 itu800 isu800 theu800 vowel vowelsu800 that differ most from region tou800 region. where symbols appear inu800 pairs theu800 first corresponds tou800 american english general american accent; theu800 second corresponds tou800 british english received pronunciation . border 1u800 cellspacing 0u800 cellpadding 4u800 class wikitable international phonetic alphabet ipau800 description word - colspan 3u800 style text-align left; background #dedede monophthong monophthongsu800 - ipau800 iu800 iu8cb90 close front unrounded vowel bu800 bold dark redu800 eau800 du800 - ipau800 u8c9aa near-close near-front unrounded vowel bu800 bold dark redu800 iu800 du800 - ipau800 u8c99b open-midu800 front unrounded vowel bu800 bold dark redu800 eu800 du800 - ipau800 u8c3a6 near-open front unrounded vowel bu800 bold dark redu800 au800 du800 - ipau800 u8c992 open back rounded vowel bu800 bold dark redu800 ou800 xu800 american english lacks this sound; words with this sound areu800 pronounced with ipau800 u8c991 oru800 ipau800 u8c994 . seeu800 phonological history ofu800 english lowu800 back vowels#lotu800-cloth split  lotu800-cloth split  . - ipau800 u8c994 u8c991 open-midu800 back rounded vowel pu800 bold dark redu800 awu800 edu800 some dialects ofu800 north american english dou800 notu800 have this vowel. seeu800 phonological history ofu800 english low_back vowels#cotu800-caught merger  cotu800-caught merger  . - ipau800 u8c991 u8c991u8cb90 open back unrounded vowel bru800 bold dark redu800 au800 - ipau800 u8ca8a near-close near-back vowel gu800 bold dark redu800 oou800 du800 - ipau800 uu800 uu8cb90 close back rounded vowel bu800 bold dark redu800 oou800 edu800 theu800 letter  uu800  canu800 represent either ipau800 uu800 oru800 theu800 iotation iotated vowel ipau800 juu800 . inu800 brpu800 ifu800 this iotated vowel ipau800 juu800 occurs after ipau800 tu800 ipau800 du800 ipau800 su800 oru800 ipau800 zu800 itu800 often triggers palatalization ofu800 theu800 preceding consonant turning itu800 tou800 ipau800 u8caa8 ipau800 u8caa5 ipau800 u8c995 andu800 ipau800 u8ca91 respectively asu800 inu800  tune   during   sugar  andu800  azure . inu800 american english palatalization does notu800 generally happen unless theu800 ipau800 juu800 isu800 followed byu800  ru800  with theu800 result that ipau800 tu800 du800 su800 zu800 juru800 turn tou800 ipau800 tu8ca83u8c99a ipau800 du8ca92u8c99a ipau800 u8ca83u8c99a andu800 ipau800 u8ca92u8c99a respectively asu800 inu800  nature   verdure   sure  andu800  treasure . - ipau800 u8ca8c u8c990 u8c998 open-midu800 back unrounded vowel near-open central vowel bu800 bold dark redu800 uu800 du800 - ipau800 u8c99d u8c99cu8cb90 open-midu800 central unrounded vowel bu800 bold dark redu800 iru800 du800 theu800 north american variation ofu800 this sound isu800 au800 ru800-colored vowel rhotic vowel . - ipau800 u8c999 schwa rosu800 bold dark redu800 au800 \'su800 many speakers ofu800 north american english dou800 notu800 distinguish between these twou800 unstressed vowels. foru800 them  roses  andu800  rosa\'su800  areu800 pronounced theu800 same andu800 theu800 symbol usually used isu800 schwa ipau800 u8c999 . - ipau800 u8c9a8 close central unrounded vowel rosu800 bold dark redu800 eu800 su800 this sound isu800 often transcribed with ipau800 iu800 oru800 with ipau800 u8c9aa . - colspan 3u800 style text-align left; background #dedede diphthong diphthongsu800 - ipau800 eu800 u8c9aa eu8c9aa close-midu800 front unrounded vowel close front unrounded vowel bu800 bold dark redu800 ayu800 edu800 theu800 diphthongs ipau800 eu8c9aa andu800 ipau800 ou8ca8a areu800 monophthongal foru800 many general american speakers asu800 ipau800 eu8cb90 andu800 ipau800 ou8cb90 . - ipau800 ou800 u8ca8a u8c999u8ca8a close-midu800 back rounded vowel near-close near-back vowel bu800 bold dark redu800 ou800 deu800 - ipau800 au8c9aa open front unrounded vowel near-close near-front unrounded vowel cru800 bold dark redu800 yu800 vowel length plays au800 phonetic role inu800 theu800 majority ofu800 english dialects andu800 isu800 said tou800 beu800 phonemic inu800 au800 fewu800 dialects such asu800 australian english andu800 newu800 zealand english . inu800 certain dialects ofu800 theu800 modern english language foru800 instance general american there isu800 allophonic vowel length vowel phonemes areu800 realized asu800 long vowel allophones before voiced consonant phonemes inu800 theu800 coda ofu800 au800 syllable. before theu800 great vowel shift vowel length wasu800 phonemically contrastive. - ipau800 au8ca8a open front unrounded vowel near-close near-back vowel bu800 bold dark redu800 ough - ipau800 u8c994u8c9aa open-midu800 back rounded vowel close front unrounded vowel bu800 bold dark redu800 oyu800 - ipau800 u8ca8au8c99a u8ca8au8c999 near-close near-back vowel schwa bu800 bold dark redu800 ooru800 this sound only occurs inu800 nonu800-rhotic accents. inu800 some accents this sound mayu800 beu800 ipau800 u8c994u8cb90 instead ofu800 ipau800 u8ca8au8c999 . seeu800 english-language vowel changes before historic ru800 . - ipau800 u8c99bu8c99a u8c99bu8c999 eu8c99a open-midu800 front unrounded vowel schwa fu800 bold dark redu800 airu800 this sound only occurs inu800 nonu800-rhotic accents. inu800 some accents theu800 schwa offglide ofu800 ipau800 u8c99bu8c999 mayu800 beu800 dropped monophthising andu800 lengthening theu800 sound tou800 ipau800 u8c99bu8cb90 . notes notes notes reflist group vnu800 consonants consonants consonants this isu800 theu800 english consonantal system using symbols from theu800 international phonetic alphabet ipau800 . class wikitable &nbsp; bilabial consonant bilabial labiodental consonant labio- dental interdental consonant dental alveolar consonant alveolar postalveolar consonant post- alveolar palatal consonant palatal velar consonant velar labial-velar consonant labial- velar glottal consonant glottal - nasal consonant nasal style text-align center; ipau800 mu800 &nbsp; &nbsp; style text-align center; ipau800 nu800 &nbsp; &nbsp; style text-align center; ipau800 u8c58b theu800 velar nasal ipau800 u8c58b isu800 au800 nonu800-phonemic allophone ofu800 nu800 inu800 some northerly british accents appearing only before ku800 andu800 gu800 . inu800 allu800 other dialects itu800 isu800 au800 separate phoneme although itu800 only occurs inu800 syllable coda codasu800. &nbsp; - stop consonant plosive style text-align center; ipau800 pu800&nbsp;&nbsp;bu800 &nbsp; &nbsp; style text-align center; ipau800 tu800&nbsp;&nbsp;du800 &nbsp; &nbsp; style text-align center; ipau800 ku800&nbsp;&nbsp;u8c9a1 &nbsp; - affricate consonant affricate &nbsp; &nbsp; &nbsp; &nbsp; style text-align center; ipau800 tu8ca83&nbsp;&nbsp;du8ca92 theu800 sounds ipau800 u8ca83 u8ca92 andu800 u8c9b9 areu800 labialised inu800 some dialects. labialisation isu800 never contrastive inu800 initial position andu800 therefore isu800 sometimes notu800 transcribed. most speakers ofu800 general american realize always rhoticized asu800 theu800 retroflex approximant ipau800 u8c9bb whereas theu800 same isu800 realized inu800 scottish english etcu800. asu800 theu800 alveolar trill . &nbsp; &nbsp; &nbsp; - fricative consonant fricative &nbsp; style text-align center; ipau800 fu800&nbsp;&nbsp;vu800 style text-align center; ipau800 u8ceb8&nbsp;&nbsp;u8c3b0 inu800 some dialects such asu800 cockney theu800 interdentals u8ceb8 andu800 u8c3b0 areu800 usually merged with fu800 andu800 vu800 andu800 inu800 others like african american vernacular english u8c3b0 isu800 merged with dental du800 . inu800 some irish varieties u8ceb8 andu800 u8c3b0 become theu800 corresponding dental plosives which then contrast with theu800 usual alveolar plosives. style text-align center; ipau800 su800&nbsp;&nbsp;zu800 style text-align center; ipau800 u8ca83&nbsp;&nbsp;u8ca92 style text-align center; ipau800 u8c3a7 theu800 voiceless palatal fricative u8c3a7 isu800 inu800 most accents just anu800 allophone ofu800 hu800 before ju800 ; foru800 instance  human  u8c3a7juu8cb90mu8c999n . however inu800 some accents seeu800 phonological history ofu800 english consonant clusters this theu800 ju800 isu800 dropped butu800 theu800 initial consonant isu800 theu800 same. style text-align center; ipau800 xu800 theu800 voiceless velar fricative xu800 isu800 used byu800 scottish oru800 welsh speakers ofu800 english foru800 scots gaelic words such asu800  loch  ipau800 lu8c992x oru800 byu800 some speakers foru800 loanwords from german andu800 hebrew like  bach  ipau800 baxu800 oru800  chanukah  xanuka . xu800 isu800 also used inu800 south african english. inu800 some dialects such asu800 scouse liverpool either ipau800 xu800 oru800 theu800 affricate consonant affricate ipau800 kxu800 mayu800 beu800 used asu800 anu800 allophone ofu800 ku800 inu800 words such asu800  docker  ipau800 du8c992kxu8c999 . most native speakers have au800 great deal ofu800 trouble pronouncing itu800 correctly when learning au800 foreign language. most speakers useu800 theu800 sounds ku800 andu800 hu800 instead. style text-align center; ipau800 hu800 - flap consonant flap &nbsp; &nbsp; &nbsp; style text-align center; ipau800 u8c9be #tagu800 refu800 theu800 alveolar tapu800 ipau800 u8c9be isu800 anu800 allophone ofu800 tu800 andu800 du800 inu800 unstressed syllables inu800 north american english andu800 australian english . cite journal last coxu800 first felicity year 2006 title australian english pronunciation into theu800 21st century urlu800 format pdfu800 accessdate 2007-07u800-22u800 journal prospect volume 21u800 pages 3u8e2809321 this isu800 theu800 sound ofu800  ttu800  oru800  ddu800  inu800 theu800 words  latter  andu800  ladder  which areu800 homophones foru800 many speakers ofu800 north american english. inu800 some accents such asu800 scottish english andu800 indian english itu800 replaces ipau800 u8c9b9 . this isu800 theu800 same sound represented byu800 single  ru800  inu800 most varieties ofu800 spanish language spanish . group cnu800 name c2u800 &nbsp; &nbsp; &nbsp; &nbsp; - approximant consonant approximant &nbsp; &nbsp; &nbsp; style text-align center; ipau800 u8c9b9 &nbsp; style text-align center; ipau800 ju800 &nbsp; style text-align center; ipau800 u8ca8d&nbsp;&nbsp;wu800 voiceless wu800 ipau800 u8ca8d isu800 found inu800 scottish andu800 irish english asu800 well asu800 inu800 some varieties ofu800 american newu800 zealand andu800 english english. inu800 most other dialects itu800 isu800 merged with wu800 inu800 some dialects ofu800 scots itu800 isu800 merged with fu800 . &nbsp; - lateral consonant lateral &nbsp; &nbsp; &nbsp; style text-align center; ipau800 lu800 &nbsp; &nbsp; &nbsp; &nbsp; notes notes notes reflist group cnu800 voicing andu800 aspiration voicing andu800 aspiration voicing andu800 aspiration voice phonetics voicing andu800 aspiration phonetics aspiration ofu800 stop consonant consonantsu800 inu800 english depend onu800 dialect andu800 context butu800 au800 fewu800 general rules canu800 beu800 given voiceless stop consonant plosives andu800 affricate consonant affricates ipau800 pu800 ipau800 tu800 ipau800 ku800 andu800 ipau800 tu8ca83 areu800 aspirated when they areu800 word-initial oru800 begin au800 stressed syllable ndash compare  pinu800  ipau800 pu8cab0u8c9aan andu800  spin  ipau800 spu8c9aan  crap  ipau800 ku8cab0u8c9b9u8cca5u8c3a6p andu800  scrap  ipau800 sku8c9b9u8c3a6p . inu800 some dialects aspiration extends tou800 unstressed syllables asu800 well. inu800 other dialects such asu800 indian english allu800 voiceless stops remain unaspirated. word-initial voiced plosives mayu800 beu800 devoiced inu800 some dialects. word-terminal voiceless plosives mayu800 beu800 unreleased oru800 accompanied byu800 au800 glottal stop inu800 some dialects; examples  tapu800  ipau800 tu8cab0u8c3a6pu8cc9a  sack  ipau800 su8c3a6ku8cc9a . word-terminal voiced plosives mayu800 beu800 devoiced inu800 some dialects eu800u82egu800. some varieties ofu800 american english ndash examples  sadu800  ipau800 su8c3a6du8cca5  bagu800  ipau800 bu8c3a6u8c9a1u8cc8a . inu800 other dialects they areu800 fully voiced inu800 final position butu800 only partially voiced inu800 initial position. supra-segmental features supra-segmental features supra-segmental features tone groups english isu800 anu800 intonation linguistics intonation language . this means that theu800 pitch music pitch ofu800 theu800 human voice voice isu800 used syntax syntactically foru800 example tou800 convey surprise emotion surprise andu800 irony oru800 tou800 change au800 sentence linguistics statement into au800 question . inu800 english intonation patterns areu800 onu800 groups ofu800 words which areu800 called tone groups tone units intonation groups oru800 sense groups. tone groups areu800 said onu800 au800 single breath andu800 asu800 au800 consequence areu800 ofu800 limited length more often being onu800 average five words long oru800 lasting roughly twou800 seconds. foru800 example - ipau800 duu8cb90 juu8cb90 niu8cb90d u8cb88u8c99bnu8c9aau8cb8cu8ceb8u8c9aau8c58b  dou800 youu800 need anything   - ipau800 au8c9aa du8c999u8ca8ant nu8c999u8ca8a  iu800 donu800\'tu800 nou800  - ipau800 au8c9aa du8c999u8ca8ant nu8c999u8ca8a  iu800 donu800\'tu800 know  contracted tou800 foru800 example - ipau800 au8c9aa du8c999u8ca8anu8c999u8ca8a oru800 ipau800 au8c9aa du8c999nu8c999u8ca8a  iu800 dunno  inu800 fast oru800 colloquial speech that deu800-emphasises theu800 pause between donu800\'tu800 andu800 know even further characteristics ofu800 intonation characteristics ofu800 intonation characteristics ofu800 intonation english isu800 au800 strongly stress linguistics stress stressedu800 language inu800 that certain syllables both within words andu800 within phrases getu800 au800 relative prominence loudness during pronunciation while theu800 others dou800 notu800. theu800 former kind ofu800 syllables areu800 said tou800 beu800  accentuated stressed  andu800 theu800 latter areu800  unaccentuated unstressed . hence inu800 au800 sentence each tone group canu800 beu800 subdivided into syllables which canu800 either beu800 stressed strong oru800 unstressed weak . theu800 stressed syllable isu800 called theu800 nuclear syllable. foru800 example  that wasu800 theu800  best  thing youu800 could have  done    here allu800 syllables areu800 unstressed except theu800 syllables words  best  andu800  done  which areu800 stressed.  best  isu800 stressed harder andu800 therefore isu800 theu800 nuclear syllable. theu800 nuclear syllable carries theu800 main point theu800 speaker wishes tou800 make. foru800 example  john  hadu800 notu800 stolen that money. ... someone else hadu800. john  hadu800 notu800  stolen that money. ... someone said heu800 hadu800. oru800 ... notu800 atu800 that time butu800 later heu800 didu800. john hadu800 notu800  stolen  that money. ... heu800 acquired theu800 money byu800 some other means. john hadu800 notu800 stolen  that  money. ... heu800 hadu800 stolen some other money. john hadu800 notu800 stolen that  money . ... heu800 hadu800 stolen something else. also  iu800  didu800 notu800 tell heru800 that. ... someone else told heru800 iu800  didu800 notu800  tell heru800 that. ... youu800 said iu800 didu800. oru800 ... butu800 nowu800 iu800 will iu800 didu800 notu800  tell  heru800 that. ... iu800 didu800 notu800 sayu800 itu800; sheu800 could have inferred itu800 etcu800 iu800 didu800 notu800 tell  heru800  that. ... iu800 told someone else iu800 didu800 notu800 tell heru800  that . ... iu800 told heru800 something else this canu800 also beu800 used tou800 express emotion  ohu800  really ...iu800 didu800 notu800 know that ohu800  really  ...iu800 disbelieve youu800. oru800 ... that isu800 blatantly obvious theu800 nuclear syllable isu800 spoken more loudly than theu800 others andu800 hasu800 au800 characteristic  change ofu800 pitch . theu800 changes ofu800 pitch most commonly encountered inu800 english areu800 theu800  rising pitch  andu800 theu800  falling pitch  although theu800  fall-rising pitch  andu800 oru800 theu800  rise-falling pitch  areu800 sometimes used. inu800 this opposition between falling andu800 rising pitch which plays au800 larger role inu800 english than inu800 most other languages falling pitch conveys certainty andu800 rising pitch uncertainty. this canu800 have au800 crucial impact onu800 meaning specifically inu800 relation tou800 polarity theu800 positiveu8e28093negative opposition; thus falling pitch means polarity known while rising pitch means polarity unknown . this underlies theu800 rising pitch ofu800 yesu800 nou800 questions. foru800 example  when dou800 youu800 want tou800 beu800 paid    nowu800   rising pitch. inu800 this case itu800 denotes au800 question canu800 iu800 beu800 paid nowu800 oru800 dou800 youu800 desire tou800 payu800 nowu800  nowu800.  falling pitch. inu800 this case itu800 denotes au800 statement iu800 choose tou800 beu800 paid nowu800. grammar grammar grammar main english grammar english grammar hasu800 minimal inflection compared with most other indo-european languages . foru800 example modern english unlike modern german oru800 dutch andu800 theu800 romance languages lacks grammatical gender andu800 agreement linguistics adjectival agreement . grammatical case case marking hasu800 almost disappeared from theu800 language andu800 mainly survives inu800 pronoun pronounsu800. theu800 patterning ofu800 strong inflection strong eu800u82egu800.  speak spoke spoken  versus germanic weak verb weak verbs inherited from itsu800 germanic origins hasu800 declined inu800 importance inu800 modern english andu800 theu800 remnants ofu800 inflection such asu800 plural marking have become more regular. atu800 theu800 same time theu800 language hasu800 become more isolating language analytic andu800 hasu800 developed features such asu800 modal verb verbsu800 andu800 word order asu800 resources foru800 conveying meaning. auxiliary verb verbsu800 mark constructions such asu800 questions negative polarity theu800 grammatical voice passive voice andu800 progressive grammatical aspect aspect . vocabulary vocabulary vocabulary theu800 english vocabulary hasu800 changed considerably over theu800 centuries. foru800 theu800 processes andu800 triggers ofu800 english vocabulary changes cfu800.  english andu800 general historical lexicology  byu800 joachim grzega andu800 marion schu8c3b6ner wiktionary appendix list ofu800 proto-indo-european roots like many languages deriving from proto-indo-european language proto-indo-european pieu800 many ofu800 theu800 most common words inu800 english canu800 trace back their origin through theu800 germanic branch tou800 pieu800. such words include theu800 basic pronouns  iu800  from oldu800 english language oldu800 english  icu800  cfu800. latin  egou800  greek  egou800  sanskrit  aham   meu800  cfu800. latin  meu800  greek  emeu800  sanskrit  mamu800  numbers eu800u82egu800.  oneu800   twou800   three  cfu800. latin  unus duou800 tres  greek  oinos  aceu800 onu800 dice  duou800 treis  common family relationships such asu800 mother father brother sister etcu800 cfu800. greek meter latin mater sanskrit matu8e1b99b ;  mother  names ofu800 many animals cfu800. sankrit  musu800  greek  mysu800  latin  musu800 ;  mouse  andu800 many common verbs cfu800. greek  gignu8c58dmi  latin  gnoscere  hittite  kanes ;  tou800 know  . germanic words generally words ofu800 oldu800 english oru800 tou800 au800 lesser extent norse origin tend tou800 beu800 shorter than theu800 latinate words ofu800 english andu800 more common inu800 ordinary speech. this includes nearly allu800 theu800 basic pronouns prepositions conjunctions modal verbs etcu800. that form theu800 basis ofu800 english syntax andu800 grammar. theu800 longer latinate words areu800 often regarded asu800 more elegant oru800 educated. however theu800 excessive useu800 ofu800 latinate words isu800 considered atu800 times tou800 beu800 either pretentious oru800 anu800 attempt tou800 obfuscation obfuscate anu800 issue. george orwell \'su800 essay politics andu800 theu800 english language considered anu800 important scrutinization ofu800 theu800 english language isu800 critical ofu800 this asu800 well asu800 other perceived misuse ofu800 theu800 language. anu800 english speaker isu800 inu800 many cases able tou800 choose between germanic andu800 latinate synonym synonymsu800  come  oru800  arrive ;  sight  oru800  vision ;  freedom  oru800  liberty . inu800 some cases there isu800 au800 choice between au800 germanic derived word  oversee  au800 latin derived word  supervise  andu800 au800 french word derived from theu800 same latin word  survey  . such synonyms harbor au800 variety ofu800 different meanings andu800 nuances enabling theu800 speaker tou800 express fine variations oru800 shades ofu800 thought. familiarity with theu800 etymology ofu800 groups ofu800 synonyms canu800 give english speakers greater control over their register sociolinguistics linguistic register . seeu800 list ofu800 germanic andu800 latinate equivalents inu800 english . anu800 exception tou800 this andu800 au800 peculiarity perhaps unique tou800 english isu800 that theu800 nouns foru800 meats areu800 commonly different from andu800 unrelated tou800 those foru800 theu800 animals from which they areu800 produced theu800 animal commonly having au800 germanic name andu800 theu800 meat having au800 french-derived oneu800. examples include   deer   andu800   venison  ;   cattle cowu800   andu800   beef  ;  swine    pigu800   andu800   pork   oru800   domestic sheep sheep   andu800   lamb andu800 mutton mutton  . this isu800 assumed tou800 beu800 au800 result ofu800 theu800 aftermath ofu800 theu800 norman invasion where au800 french-speaking elite were theu800 consumers ofu800 theu800 meat produced byu800 anglo-saxon lower classes. fact date mayu800 2008 since theu800 majority ofu800 words used inu800 informal settings will normally beu800 germanic such words areu800 often theu800 preferred choices when au800 speaker wishes tou800 make au800 point inu800 anu800 argument inu800 au800 very direct wayu800. au800 majority ofu800 latinate words oru800 atu800 least au800 majority ofu800 content words will normally beu800 used inu800 more formal speech andu800 writing such asu800 au800 court courtroom oru800 anu800 encyclopedia article. fact date december 2007 --theu800 previous twou800 sentences areu800 poppycock andu800 should beu800 removed. nou800 wonder there\'su800 nou800 reference-- however there areu800 other latinate words that areu800 used normally inu800 everyday speech andu800 dou800 notu800 sound formal; these areu800 mainly words foru800 concepts that nou800 longer have germanic words andu800 areu800 generally assimilated better andu800 inu800 many cases dou800 notu800 appear latinate. foru800 instance theu800 words  mountain   valley   river   aunt   uncle   move   useu800   push  andu800  stay  areu800 allu800 latinate. english easily accepts technical terms into common usage andu800 often imports newu800 words andu800 phrases. examples ofu800 this phenomenon include contemporary words such asu800   http cookie cookie     internet   andu800   uniform resource locator urlu800   technical terms asu800 well asu800   genre     u8c3bcber     lingua franca   andu800  amigo  imported words phrases from french german italian andu800 spanish respectively . inu800 addition slang often provides newu800 meanings foru800 oldu800 words andu800 phrases. inu800 fact this fluidity isu800 sou800 pronounced that au800 distinction often needs tou800 beu800 made between formal forms ofu800 english andu800 contemporary usage. seeu800 also sociolinguistics . number ofu800 words inu800 english number ofu800 words inu800 english number ofu800 words inu800 english theu800  general explanations  atu800 theu800 beginning ofu800 theu800  oxford english dictionary  states cquote theu800 vocabulary ofu800 au800 widely diffused andu800 highly cultivated living language isu800 notu800 au800 fixed quantity circumscribed byu800 definite limits... there isu800 absolutely nou800 defining line inu800 anyu800 direction theu800 circle ofu800 theu800 english language hasu800 au800 well-defined centre butu800 nou800 discernible circumference. theu800 vocabulary ofu800 english isu800 undoubtedly vast butu800 assigning au800 specific number tou800 itsu800 size isu800 more au800 matter ofu800 definition than ofu800 calculation. unlike other languages such asu800 acadu8c3a9mie franu8c3a7aise french list ofu800 language regulators german real academia espau8c3b1ola spanish andu800 accademia della crusca italian there isu800 nou800 list ofu800 language regulators academy tou800 define officially accepted words andu800 spellings. neologism neologismsu800 areu800 coined regularly inu800 medicine science andu800 technology andu800 other fields andu800 newu800 slang isu800 constantly developed. some ofu800 these newu800 words enter wide usage; others remain restricted tou800 small circles. foreign words used inu800 immigrant communities often make their wayu800 into wider english usage. archaic dialectal andu800 regional words might oru800 might notu800 beu800 widely considered asu800 english . theu800   oxford english dictionary   2ndu800 edition   oed2   includes over 600u800 000u800 definitions following au800 rather inclusive policy cquote itu800 embraces notu800 only theu800 standard language ofu800 literature andu800 conversation whether current atu800 theu800 moment oru800 obsolete oru800 archaic butu800 also theu800 main technical vocabulary andu800 au800 large measure ofu800 dialectal usage andu800 slang supplement tou800 theu800  oedu800   1933 . itu800 went onu800 tou800 clarify cquote hence weu800 exclude allu800 words that hadu800 become obsolete byu800 1150 theu800 endu800 ofu800 theu800 oldu800 english erau800 . . . dialectal words andu800 forms which occur since 1500 areu800 notu800 admitted except when they continue theu800 history ofu800 theu800 word oru800 sense once inu800 general useu800 illustrate theu800 history ofu800 au800 word oru800 have themselves au800 certain literary currency. theu800 editors ofu800   webster\'su800 dictionary webster\'su800 third newu800 international dictionary unabridged   475u800 000u800 main headwords inu800 their preface estimate theu800 number tou800 beu800 much higher. itu800 isu800 estimated that about 25u800 000u800 words areu800 added tou800 theu800 language each year. kister kenu800. dictionaries defined.  library journal   6u800 15u800 92u800 volu800. 117u800 issue 11u800 p43u800 4pu800 2bwu800 word origins word origins word origins main lists ofu800 english words ofu800 international origin oneu800 ofu800 theu800 consequences ofu800 theu800 french influence isu800 that theu800 vocabulary ofu800 english isu800 tou800 au800 certain extent divided between those words which areu800 germanic languages germanic mostly west germanic with au800 smaller influence from theu800 north germanic branch andu800 those which areu800 latinate latin-derived either directly oru800 from norman french oru800 other romance languages . 83u800 ofu800 theu800 1u800 000u800 most common english words andu800 allu800 ofu800 theu800 100u800 most common areu800 germanic. oldu800 english online conversely au800 vast majority ofu800 more advanced words from subjects such asu800 theu800 sciences philosophy math etcu800. come from latin oru800 greek. au800 noticeable number ofu800 words from astronomy mathematics andu800 chemistry areu800 from arabic. numerous sets ofu800 statistics have been proposed tou800 demonstrate theu800 proportionate origins ofu800 english vocabulary. none asu800 ofu800 yetu800 isu800 considered definitive byu800 most linguists. au800 computerised survey ofu800 about 80u800 000u800 words inu800 theu800 oldu800  shorter oxford dictionary  3rdu800 edu800. wasu800 published inu800  ordered profusion  byu800 thomas finkenstaedt andu800 dieter wolff 1973 cite book last finkenstaedt first thomas coauthors dieter wolff title ordered profusion; studies inu800 dictionaries andu800 theu800 english lexicon publisher cu800. winter year 1973 isbn 3u800-533u800-02253-6u800 that estimated theu800 origin ofu800 english words asu800 follows file origins ofu800 english piechart 2du800u82esvgu800 thumb 250px influences inu800 english vocabulary   langues du800\'ou8c3afl langue du800\'ou8c3afl   including french andu800 oldu800 norman list ofu800 english words ofu800 french origin 28u800u82e3u800 latin including modern scientific andu800 technical latin 28u800u82e24u800 other germanic languages including words directly inherited from oldu800 english 25u800 greek 5u800u82e32u800 nou800 etymology given 4u800u82e03u800 derived from proper names 3u800u82e28u800 allu800 other languages contributed less than 1u800 au800 survey byu800 joseph mu800. williams inu800  origins ofu800 theu800 english language  ofu800 10u800 000u800 words taken from several thousand business letters gave this setu800 ofu800 statistics joseph mu800. willams origins ofu800 theu800 english language atu800 amazonu82ecomu800 french langue du800\'ou8c3afl 41u800 native english 33u800 latin 15u800 oldu800 norse 2u800 dutch 1u800 other 10u800 dutch origins dutch origins dutch origins main list ofu800 english words ofu800 dutch origin many words describing theu800 navy types ofu800 ships andu800 other objects oru800 activities onu800 theu800 water areu800 ofu800 dutch origin.  yacht   jacht   skipper   schipper  andu800  cruiser   kruiser  areu800 examples. dutch hasu800 also contributed tou800 english slang eu800u82egu800.  spook  andu800 theu800 nowu800 obsolete  snyder  tailor andu800  stiver  small coin . french origins french origins french origins main list ofu800 french words andu800 phrases used byu800 english speakers au800 large portion ofu800 english vocabulary isu800 ofu800 french oru800 langues du800\'ou8c3afl origin most derived from oru800 transmitted viau800 theu800 anglo-norman language anglo-norman spoken byu800 theu800 upper class classesu800 inu800 england foru800 several hundred years after theu800 norman conquest ofu800 england . words ofu800 french origin include  competition   artu800   table   publicity   police   role   routine   machine   force  andu800 many others that have been andu800 areu800 being anglicisation anglicised ; they areu800 nowu800 pronounced according tou800 english rules ofu800 phonology rather than french. writing system writing system writing system main english alphabet english orthography since around theu800 ninth century english hasu800 been written using theu800 latin alphabet which replaced anglo-saxon runes . theu800 spelling system oru800 orthography isu800 multilayered with elements ofu800 french latin andu800 greek spelling onu800 topu800 ofu800 theu800 native germanic system; itu800 hasu800 grown tou800 vary significantly from theu800 phonology ofu800 theu800 language. theu800 spelling ofu800 words often diverges considerably from howu800 they areu800 spoken. though letters andu800 sounds mayu800 notu800 correspond inu800 isolation spelling rules that take into account syllable structure phonetics andu800 accents areu800 75u800 oru800 more reliable. abbott mu800. 2000 . identifying reliable generalizations foru800 spelling words theu800 importance ofu800 multilevel analysis. theu800 elementary school journal 101u800 2u800 233u800-245u800. some phonics spelling advocates claim that english isu800 more than 80u800 phonetic. moats lu800. mu800. 2001 . speech tou800 print language essentials foru800 teachers. baltimore mdu800 paul hu800. brookes company. inu800 general history ofu800 theu800 english language theu800 english language being theu800 product ofu800 many other languages andu800 having only been codified orthographically inu800 theu800 16th century hasu800 fewer consistent relationships between sounds andu800 letters than many other languages; foru800 example theu800 sound sequence  ough  canu800 beu800 pronounced inu800 notu800 less than seven different ways. theu800 consequence ofu800 this complex orthographic history isu800 that reading canu800 beu800 challenging. diane mcguinness  whyu800 ouru800 children canu800\'tu800 read  newu800 york touchstone 1997 ppu800. 156u800-169u800 itu800 takes longer foru800 students tou800 become completely fluent readers ofu800 english than ofu800 many other languages including french greek andu800 spanish. ziegler ju800. cu800. & goswami uu800. 2005 . reading acquisition developmental dyslexia andu800 skilled reading across languages.  psychological bulletin 131u800  1u800 3u800-29u800. basic sound-letter correspondence basic sound-letter correspondence basic sound-letter correspondence seealso hard andu800 soft cu800 hard andu800 soft gu800 only theu800 consonant letters areu800 pronounced inu800 au800 relatively regular wayu800 class wikitable border 1u800 cellpadding 4u800 cellspacing 0u800 ipau800 align left alphabetic representation dialect-specific - voiceless bilabial plosive pu800 pu800 - voiced bilabial plosive bu800 bu800 - voiceless alveolar plosive tu800 tu800 thu800   rarely thyme thames  thu800  thing    african american vernacular english african american newu800 york dialect newu800 york   - voiced alveolar plosive du800 du800 thu800  that    african american newu800 york   - voiceless velar plosive ku800 cu800   au800 ou800 uu800 consonants   ku800 cku800 chu800 quu800   rarely conquer  khu800   inu800 foreign words   - voiced velar plosive gu800 gu800 ghu800 guu800   au800 eu800 iu800   gueu800   final position   - bilabial nasal mu800 mu800 - alveolar nasal nu800 nu800 - velar nasal u8c58b nu800   before gu800 oru800 ku800   ngu800 - voiceless labiodental fricative fu800 fu800 phu800 ghu800   final infrequent laugh rough  thu800  thing    many forms ofu800 english language inu800 england   - voiced labiodental fricative vu800 vu800 thu800  with    cockney estuary english   - voiceless dental fricative u8ceb8 thu800  thick think through  - voiced dental fricative u8c3b0 thu800  that this theu800  - voiceless alveolar fricative su800 su800 cu800   eu800 iu800 yu800   scu800   eu800 iu800 yu800   u8c3a7   fau8c3a7ade   - voiced alveolar fricative zu800 zu800 su800   finally oru800 occasionally medially   ssu800   rarely possess dessert  word-initial xu800  xylophone  - voiceless postalveolar fricative ipau800 u8ca83 shu800 schu800 tiu800 before vowel  portion  ciu800 ceu800 before vowel  suspicion   ocean ; siu800 ssiu800 before vowel  tension   mission ; chu800   espu800. inu800 words ofu800 french origin  ; rarely su800 ssu800 before uu800  sugar   issue ; chsi inu800  fuchsia  only - voiced postalveolar fricative ipau800 u8ca92 medial siu800 before vowel  division  medial su800 before uru800  pleasure  zhu800   inu800 foreign words   zu800 before uu800  azure  gu800   inu800 words ofu800 french origin eu800 iu800 yu800 genre - voiceless velar fricative xu800 khu800 chu800 hu800   inu800 foreign words   occasionally chu800  loch    scottish english welsh english   - voiceless glottal fricative hu800 hu800   syllable-initially otherwise silent   - voiceless postalveolar affricate ipau800 tu8ca83 chu800 tchu800 tu800 before uu800  future   culture  tu800   uu800 ueu800 euu800    tune tuesday teutonic    several dialects - seeu800 phonological history ofu800 english consonant clusters   - voiced postalveolar affricate ipau800 du8ca92 ju800 gu800   eu800 iu800 yu800   dgu800   eu800 iu800 consonant badge judg eu800 ment  du800   uu800 ueu800 ewu800    dune dueu800 dewu800    several dialects - another example ofu800 yodu800 coalescence   - alveolar approximant ipau800 u8c9b9 ru800 wru800 initial  wrangle  - palatal approximant ju800 yu800   initially oru800 surrounded byu800 vowels   - alveolar lateral approximant lu800 lu800 - voiced labial-velar approximant ipau800 wu800 wu800 - voiceless labio-velar approximant ipau800 u8ca8d whu800  pronounced  hwu800 scottish andu800 irish english asu800 well asu800 some varieties ofu800 american newu800 zealand andu800 english english written accents written accents written accents main english words with diacritics unlike most other germanic languages english hasu800 almost nou800 diacritic diacriticsu800 except inu800 foreign loanword loanwordsu800 like theu800 acute accent inu800  cafu8c3a9  andu800 inu800 theu800 uncommon useu800 ofu800 au800 diaeresis mark often inu800 formal writing tou800 indicate that twou800 vowels areu800 pronounced separately rather than asu800 oneu800 sound eu800u82egu800.  nau8c3afve zou8c3ab  . words such asu800 du8c3a9cor cafu8c3a9 ru8c3a9sumu8c3a9 resumu8c3a9 entru8c3a9e fiancu8c3a9e andu800 nau8c3afve areu800 frequently spelled both ways. diacritical marks areu800 often added tou800 words tou800 make them have au800 more upscale commercial appeal. recently inu800 theu800 advent ofu800 computer keyboards cafu800\'eu800 oru800 cafe\' foru800 example have begun tou800 become prevalent inu800 computer-generated signs dueu800 tou800 theu800 lack ofu800 effective diacritical keys onu800 many computer keyboards inu800 english-speaking countries. some english words retain diacritics tou800 distinguish them from others such asu800   animu8c3a9 oleo-resin animu8c3a9 investigative journalism exposu8c3a9 lamu8c3a9 fencing lamu8c3a9 u8c3b6re u8c3b8re pu8c3a2tu8c3a9 piquu8c3a9   andu800   rosu8c3a9   though these areu800 sometimes also dropped foru800 example   ru8c3a9sumu8c3a9 resumu8c3a9  isu800 often spelt  resume  inu800 theu800 united states . tou800 clarify pronunciation au800 small number ofu800 loanwords mayu800 employ au800 diacritic that does notu800 appear inu800 theu800 original word such asu800  matu8c3a9  from spanish   yerba mate   following theu800 french usage. formal written english formal written english formal written english main formal written english au800 version ofu800 theu800 language almost universally agreed upon byu800 educated english speakers around theu800 world isu800 called formal written english. itu800 takes virtually theu800 same form regardless ofu800 where itu800 isu800 written inu800 contrast tou800 spoken english which differs significantly between dialect dialectsu800 accent linguistics accents andu800 varieties ofu800 slang colloquial andu800 regional expressions. local variations inu800 theu800 formal written version ofu800 theu800 language areu800 quite limited being restricted largely tou800 theu800 american andu800 british english spelling differences spelling differences between british andu800 american english . basic andu800 simplified versions basic andu800 simplified versions basic andu800 simplified versions tou800 make english easier tou800 read there areu800 some simplified versions ofu800 theu800 language. oneu800 basic version isu800 named   basic english   au800 constructed language with au800 small number ofu800 words created byu800 charles kayu800 ogden andu800 described inu800 hisu800 book  basic english au800 general introduction with rules andu800 grammar  1930 . theu800 language isu800 based onu800 au800 simplified version ofu800 english. ogden said that itu800 would take seven years tou800 learn english seven months foru800 esperanto andu800 seven weeks foru800 basic english. thus companies whou800 need tou800 make complex books foru800 international useu800 mayu800 employ basic english asu800 well asu800 language schools that need tou800 give people some knowledge ofu800 english inu800 au800 short time. ogden didu800 notu800 putu800 anyu800 words into basic english that could beu800 said with au800 fewu800 other words andu800 heu800 worked tou800 make theu800 words work foru800 speakers ofu800 anyu800 other language. heu800 putu800 hisu800 setu800 ofu800 words through au800 large number ofu800 tests andu800 adjustments. heu800 also made theu800 grammar simpler butu800 tried tou800 keep theu800 grammar normal foru800 english users. theu800 concept gained itsu800 greatest publicity just after theu800 world waru800 iiu800 second world waru800 asu800 au800 tool foru800 world peace. fact date march 2009 although itu800 wasu800 notu800 built into au800 program similar simplifications were devised foru800 various international uses. another version simplified english exists which isu800 au800 controlled natural language controlled language originally developed foru800 aerospace industry maintenance manuals. itu800 offers au800 carefully limited andu800 standardised whou800 subset ofu800 english. simplified english hasu800 au800 lexicon ofu800 approved words andu800 those words canu800 only beu800 used inu800 certain ways. foru800 example theu800 word  close  canu800 beu800 used inu800 theu800 phrase close theu800 door butu800 notu800 dou800 notu800 gou800 close tou800 theu800 landing gear . seeu800 also seeu800 also seeu800 also changes tou800 oldu800 english vocabulary english foru800 academic purposes english language learning andu800 teaching language report teaching english asu800 au800 foreign language notes notes notes reflist 2u800 references references references cite book last baugh first albert cu800. coauthors thomas cable title au800 history ofu800 theu800 english language edition 5thu800 publisher routledge year 2002 isbn 0u800-415u800-28099-0u800 cite book last bragg first melvyn authorlink melvyn bragg title theu800 adventure ofu800 english theu800 biography ofu800 au800 language publisher arcade publishing year 2004 isbn 1u800-55970-710u800-0u800 cite book last crystal first david authorlink david crystal year 1997 title english asu800 au800 global language location cambridge publisher cambridge university press isbn 0u800-521u800-53032-6u800 cite book last crystal first david authorlink david crystal title theu800 cambridge encyclopedia ofu800 theu800 english language edition 2ndu800 publisher cambridge university press year 2003 isbn 0u800-521u800-53033-4u800 cite book last crystal first david authorlink david crystal title theu800 stories ofu800 english publisher allen lane year 2004 isbn 0u800-7139-9752-4u800 cite book last halliday first maku800 title anu800 introduction tou800 functional grammar edition 2ndu800 location london publisher edward arnold year 1994 isbn 0u800-340u800-55782-6u800 cite book last hayford first harrison coauthors howard pu800. vincent title reader andu800 writer publisher houghton mifflin company year 1954 kenyon john samuel andu800 knott thomas albert  au800 pronouncing dictionary ofu800 american english  gu800 & cu800 merriam company springfield mass usau800 1953. cite book last mcarthur first tu800. edu800. title theu800 oxford companion tou800 theu800 english language publisher oxford university press year 1992 isbn 0u800-19u800-214183-xu800 cite book last robinson first orrin title oldu800 english andu800 itsu800 closest relatives publisher stanford univ. press year 1992 isbn 0u800-8047-2221-8u800 external links external links external links wikiversity topic english language interwiki code wu800 -- seeu800 template talk interwiki#useu800 onu800 english language -- commonscat wikiquote 6000 english words recorded byu800 au800 native speaker accents ofu800 english from around theu800 world hear andu800 compare howu800 theu800 same 110u800 words areu800 pronounced inu800 50u800 english accents from around theu800 world - instantaneous playback online ethnologue code engu800 more than 20000 english words recorded byu800 au800 native speaker national clearinghouse foru800 english language acquisition theu800 global english survey project au800 survey tracking howu800 nonu800-native speakers around theu800 world useu800 english dictionaries dictionaries dictionaries wiktionarylang code enu800 collection ofu800 english bilingual dictionaries dictu82eorgu800 dictionary ofu800 american regional english english language word roots prefixes andu800 suffixes affixes dictionary oxford\'su800 online dictionary merriam-webster\'su800 online dictionary macquarie dictionary online template group title linguistics list germanic languages history ofu800 english english dialects byu800 continent languages ofu800 quebec template group title geopolitical useu800 list working languages ofu800 theu800 african union official unu800 languages official euu800 languages official languages ofu800 south america category english language category english idioms category languages ofu800 theu800 gambia category languages ofu800 american samoa category languages ofu800 australia category languages ofu800 bangladesh category languages ofu800 belize category languages ofu800 botswana category languages ofu800 theu800 british virgin islands category languages ofu800 cameroon category languages ofu800 canada category languages ofu800 fiji category languages ofu800 ghana category languages ofu800 guam category languages ofu800 guyana category languages ofu800 hong kong category languages ofu800 india category languages ofu800 ireland category languages ofu800 jamaica category languages ofu800 kenya category languages ofu800 kiribati category languages ofu800 lesotho category languages ofu800 liberia category languages ofu800 macau category languages ofu800 madagascar category languages ofu800 malawi category languages ofu800 malta category languages ofu800 mauritius category languages ofu800 namibia category languages ofu800 nauru category languages ofu800 newu800 zealand category languages ofu800 nigeria category languages ofu800 niue category languages ofu800 pakistan category languages ofu800 palau category languages ofu800 papua newu800 guinea category languages ofu800 pitcairn category languages ofu800 russia category languages ofu800 rwanda category languages ofu800 sierra leone category languages ofu800 singapore category languages ofu800 south africa category languages ofu800 sriu800 lanka category languages ofu800 sudan category languages ofu800 swaziland category languages ofu800 theu800 philippines category languages ofu800 theu800 seychelles category languages ofu800 theu800 solomon islands category languages ofu800 theu800 united kingdom category languages ofu800 theu800 united states virgin islands category languages ofu800 theu800 united states category languages ofu800 tokelau category languages ofu800 trinidad andu800 tobago category languages ofu800 uganda category languages ofu800 vanuatu category languages ofu800 zambia category languages ofu800 zimbabwe link fau800 mku800 ');
INSERT INTO mw_searchindex VALUES('48', 'group-bureaucrat-member', ' administrators ');
INSERT INTO mw_searchindex VALUES('49', 'group-sysop-member', ' wikimod ');
INSERT INTO mw_searchindex VALUES('50', 'group-bureaucrat', ' administrators ');
INSERT INTO mw_searchindex VALUES('51', 'group-sysop', ' wikimod ');
INSERT INTO mw_searchindex VALUES('52', 'lfemblemu82epngu800', ' lunar flare emblem asu800 ofu800 march 24th ');
INSERT INTO mw_searchindex VALUES('53', 'external image whitelist', ' #leave this line exactly asu800 itu800 isu800 #putu800 regular expression fragments just theu800 part that goes between theu800 below #these will beu800 matched with theu800 urls ofu800 external hotlinked images #those that match will beu800 displayed asu800 images otherwise only au800 link tou800 theu800 image will beu800 shown #lines beginning with # areu800 treated asu800 comments #putu800 allu800 regex fragments above this line. leave this line exactly asu800 itu800 isu800 ');
INSERT INTO mw_searchindex VALUES('54', 'bath epu800', ' theu800 bath epu800 isu800 anu800 album composed byu800 lucent andu800 itu800 isu800 made ofu800 6u800 tracks inu800 128kbps .mp3u800 format. itu800 isu800 available foru800 3u800u82e00u800 usdu800 onu800 theu800 soparo forum under theu800 subscribe button additionally theu800 purchase will give youu800 theu800 bath epu800 headphones . tracks tracks tracks 1u800. soapro theme 2u800. soapro theme ctou800 mixu800 3u800. situ800 beside 4u800. lucent foru800 gmu800 5u800. theu800 final song 6u800. mgroftnecul bonus track ');



DROP TABLE IF EXISTS mw_site_stats;
CREATE TABLE `mw_site_stats` (
  `ss_row_id` int(10) unsigned NOT NULL,
  `ss_total_views` bigint(20) unsigned default '0',
  `ss_total_edits` bigint(20) unsigned default '0',
  `ss_good_articles` bigint(20) unsigned default '0',
  `ss_total_pages` bigint(20) default '-1',
  `ss_users` bigint(20) default '-1',
  `ss_active_users` bigint(20) default '-1',
  `ss_admins` int(11) default '-1',
  `ss_images` int(11) default '0',
  UNIQUE KEY `ss_row_id` (`ss_row_id`)
) ENGINE=InnoDB DEFAULT CHARSET=binary;

INSERT INTO mw_site_stats VALUES('1', '621', '173', '8', '45', '7', '6', '1', '3');



DROP TABLE IF EXISTS mw_templatelinks;
CREATE TABLE `mw_templatelinks` (
  `tl_from` int(10) unsigned NOT NULL default '0',
  `tl_namespace` int(11) NOT NULL default '0',
  `tl_title` varbinary(255) NOT NULL default '',
  UNIQUE KEY `tl_from` (`tl_from`,`tl_namespace`,`tl_title`),
  KEY `tl_namespace` (`tl_namespace`,`tl_title`,`tl_from`)
) ENGINE=InnoDB DEFAULT CHARSET=binary;

INSERT INTO mw_templatelinks VALUES('1', '10', 'Ambox');
INSERT INTO mw_templatelinks VALUES('1', '10', 'Ambox/core');
INSERT INTO mw_templatelinks VALUES('1', '10', 'Did_you_know');
INSERT INTO mw_templatelinks VALUES('1', '10', 'MainPageInterwikis');
INSERT INTO mw_templatelinks VALUES('1', '10', 'Main_Page_banner');
INSERT INTO mw_templatelinks VALUES('1', '10', 'Mbox');
INSERT INTO mw_templatelinks VALUES('1', '10', 'Namespace_detect');
INSERT INTO mw_templatelinks VALUES('5', '10', 'Infobox');
INSERT INTO mw_templatelinks VALUES('5', '10', 'Infobox_Person');
INSERT INTO mw_templatelinks VALUES('7', '10', 'Ambox');
INSERT INTO mw_templatelinks VALUES('7', '10', 'Ambox/core');
INSERT INTO mw_templatelinks VALUES('7', '10', 'Infobox');
INSERT INTO mw_templatelinks VALUES('7', '10', 'Infobox_Person');
INSERT INTO mw_templatelinks VALUES('7', '10', 'Mbox');
INSERT INTO mw_templatelinks VALUES('7', '10', 'Namespace_detect');
INSERT INTO mw_templatelinks VALUES('11', '10', '!');
INSERT INTO mw_templatelinks VALUES('11', '10', 'Documentation/docname');
INSERT INTO mw_templatelinks VALUES('11', '10', 'PROTECTIONLEVEL:edit');
INSERT INTO mw_templatelinks VALUES('11', '10', 'Pp-meta');
INSERT INTO mw_templatelinks VALUES('11', '10', 'Pp-template');
INSERT INTO mw_templatelinks VALUES('13', '10', '!');
INSERT INTO mw_templatelinks VALUES('13', '10', 'Documentation');
INSERT INTO mw_templatelinks VALUES('13', '10', 'Documentation/docname');
INSERT INTO mw_templatelinks VALUES('13', '10', 'Infobox');
INSERT INTO mw_templatelinks VALUES('13', '10', 'PROTECTIONLEVEL:edit');
INSERT INTO mw_templatelinks VALUES('13', '10', 'Pp-meta');
INSERT INTO mw_templatelinks VALUES('13', '10', 'Pp-template');
INSERT INTO mw_templatelinks VALUES('17', '10', '!');
INSERT INTO mw_templatelinks VALUES('17', '10', 'Documentation');
INSERT INTO mw_templatelinks VALUES('17', '10', 'Documentation/docname');
INSERT INTO mw_templatelinks VALUES('17', '10', 'PROTECTIONLEVEL:edit');
INSERT INTO mw_templatelinks VALUES('17', '10', 'Pp-meta');
INSERT INTO mw_templatelinks VALUES('17', '10', 'Pp-template');
INSERT INTO mw_templatelinks VALUES('18', '10', 'Infobox');
INSERT INTO mw_templatelinks VALUES('18', '10', 'Tnavbar');
INSERT INTO mw_templatelinks VALUES('19', '10', 'Documentation');
INSERT INTO mw_templatelinks VALUES('19', '10', 'Documentation/docname');
INSERT INTO mw_templatelinks VALUES('19', '10', 'Pp-template');
INSERT INTO mw_templatelinks VALUES('20', '10', 'Documentation');
INSERT INTO mw_templatelinks VALUES('20', '10', 'Documentation/docname');
INSERT INTO mw_templatelinks VALUES('20', '10', 'Mbox');
INSERT INTO mw_templatelinks VALUES('20', '10', 'PROTECTIONLEVEL:edit');
INSERT INTO mw_templatelinks VALUES('23', '10', '!');
INSERT INTO mw_templatelinks VALUES('23', '10', 'Documentation');
INSERT INTO mw_templatelinks VALUES('23', '10', 'Documentation/docname');
INSERT INTO mw_templatelinks VALUES('23', '10', 'Namespace_detect');
INSERT INTO mw_templatelinks VALUES('23', '10', 'PROTECTIONLEVEL:edit');
INSERT INTO mw_templatelinks VALUES('23', '10', 'Pp-meta');
INSERT INTO mw_templatelinks VALUES('23', '10', 'Pp-template');
INSERT INTO mw_templatelinks VALUES('24', '10', '!');
INSERT INTO mw_templatelinks VALUES('24', '10', 'Documentation');
INSERT INTO mw_templatelinks VALUES('24', '10', 'Documentation/docname');
INSERT INTO mw_templatelinks VALUES('24', '10', 'PROTECTIONLEVEL:edit');
INSERT INTO mw_templatelinks VALUES('24', '10', 'Pp-meta');
INSERT INTO mw_templatelinks VALUES('24', '10', 'Pp-template');
INSERT INTO mw_templatelinks VALUES('25', '10', '!');
INSERT INTO mw_templatelinks VALUES('25', '10', 'Ambox/core');
INSERT INTO mw_templatelinks VALUES('25', '10', 'Documentation');
INSERT INTO mw_templatelinks VALUES('25', '10', 'Documentation/docname');
INSERT INTO mw_templatelinks VALUES('25', '10', 'PROTECTIONLEVEL:edit');
INSERT INTO mw_templatelinks VALUES('25', '10', 'Pp-meta');
INSERT INTO mw_templatelinks VALUES('25', '10', 'Pp-template');
INSERT INTO mw_templatelinks VALUES('26', '10', '!');
INSERT INTO mw_templatelinks VALUES('26', '10', 'Documentation');
INSERT INTO mw_templatelinks VALUES('26', '10', 'Documentation/docname');
INSERT INTO mw_templatelinks VALUES('26', '10', 'PROTECTIONLEVEL:edit');
INSERT INTO mw_templatelinks VALUES('26', '10', 'Pp-meta');
INSERT INTO mw_templatelinks VALUES('26', '10', 'Pp-template');
INSERT INTO mw_templatelinks VALUES('27', '10', 'Image_class_names');
INSERT INTO mw_templatelinks VALUES('27', '10', 'Infobox');
INSERT INTO mw_templatelinks VALUES('27', '10', 'Infobox_Guild');
INSERT INTO mw_templatelinks VALUES('30', '10', 'Ambox');
INSERT INTO mw_templatelinks VALUES('30', '10', 'Ambox/core');
INSERT INTO mw_templatelinks VALUES('30', '10', 'Mbox');
INSERT INTO mw_templatelinks VALUES('30', '10', 'Namespace_detect');
INSERT INTO mw_templatelinks VALUES('33', '10', 'Did_you_know');
INSERT INTO mw_templatelinks VALUES('33', '10', 'MainPageInterwikis');
INSERT INTO mw_templatelinks VALUES('33', '10', 'Main_Page_banner');
INSERT INTO mw_templatelinks VALUES('36', '10', 'Infobox');
INSERT INTO mw_templatelinks VALUES('36', '10', 'Infobox_Person');
INSERT INTO mw_templatelinks VALUES('39', '10', 'Green');
INSERT INTO mw_templatelinks VALUES('39', '10', 'Main');
INSERT INTO mw_templatelinks VALUES('39', '10', 'Main_article');
INSERT INTO mw_templatelinks VALUES('39', '10', 'Ndash');
INSERT INTO mw_templatelinks VALUES('39', '10', 'Rellink');
INSERT INTO mw_templatelinks VALUES('39', '10', 'See');
INSERT INTO mw_templatelinks VALUES('39', '10', 'Shortcut');
INSERT INTO mw_templatelinks VALUES('39', '10', 'Tlx');
INSERT INTO mw_templatelinks VALUES('43', '10', '!');
INSERT INTO mw_templatelinks VALUES('43', '10', 'PROTECTIONLEVEL:edit');
INSERT INTO mw_templatelinks VALUES('43', '10', 'Pp-meta');
INSERT INTO mw_templatelinks VALUES('43', '10', 'Pp-template');
INSERT INTO mw_templatelinks VALUES('43', '10', 'Rellink');
INSERT INTO mw_templatelinks VALUES('43', '10', 'Template_doc');
INSERT INTO mw_templatelinks VALUES('44', '10', '!');
INSERT INTO mw_templatelinks VALUES('44', '10', 'Documentation');
INSERT INTO mw_templatelinks VALUES('44', '10', 'Documentation/docname');
INSERT INTO mw_templatelinks VALUES('44', '10', 'PROTECTIONLEVEL:edit');
INSERT INTO mw_templatelinks VALUES('44', '10', 'Pp-meta');
INSERT INTO mw_templatelinks VALUES('44', '10', 'Pp-template');
INSERT INTO mw_templatelinks VALUES('47', '10', '!');
INSERT INTO mw_templatelinks VALUES('47', '10', 'Documentation');
INSERT INTO mw_templatelinks VALUES('47', '10', 'Documentation/docname');
INSERT INTO mw_templatelinks VALUES('47', '10', 'Infobox');
INSERT INTO mw_templatelinks VALUES('47', '10', 'PROTECTIONLEVEL:edit');
INSERT INTO mw_templatelinks VALUES('47', '10', 'Pp-meta');
INSERT INTO mw_templatelinks VALUES('47', '10', 'Pp-template');



DROP TABLE IF EXISTS mw_text;
CREATE TABLE `mw_text` (
  `old_id` int(10) unsigned NOT NULL auto_increment,
  `old_text` mediumblob NOT NULL,
  `old_flags` tinyblob NOT NULL,
  PRIMARY KEY  (`old_id`)
) ENGINE=InnoDB AUTO_INCREMENT=157 DEFAULT CHARSET=binary MAX_ROWS=10000000 AVG_ROW_LENGTH=10240;

INSERT INTO mw_text VALUES('1', '<big>\'\'\'MediaWiki has been successfully installed.\'\'\'</big>\n\nConsult the [http://meta.wikimedia.org/wiki/Help:Contents User\'s Guide] for information on using the wiki software.\n\n== Getting started ==\n* [http://www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]\n* [http://www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]\n* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]', 'utf-8');
INSERT INTO mw_text VALUES('2', 'Hello,\n\nYou have reached this page.', 'utf-8');
INSERT INTO mw_text VALUES('3', 'The staff at SoapRO make no guarantee that the information contained within the wiki articles is fully accurate. If you believe that false information has been supplied to us, you may want to edit the information yourself, or flag it for review by appending a link to the article in question, as well as a reference so we know where to look.', 'utf-8');
INSERT INTO mw_text VALUES('4', '<big>\'\'\'Welcome to SoapWiki.\'\'\'</big>\n\nAlright, so, we\'re up. This wiki is still in \'Alpha\' editing phase, so we would appreciate it if you create an account before editing pages. Thank you!', 'utf-8');
INSERT INTO mw_text VALUES('5', '<big>\'\'\'Welcome to SoapWiki.\'\'\'</big>\n\nAlright, so, we\'re up. This wiki is still in \'\'\'Alpha\'\'\' editing phase, so we would appreciate it if you create an account before editing pages. Thank you!', 'utf-8');
INSERT INTO mw_text VALUES('6', '{{pp-semi-vandalism|small=yes}}\n{{Infobox Musical artist\n|Name               = Spirit\n|Img                = \n|Background         = server_owner\n|Birth_name         = Scott *. ******\n|Alias              = Kailure\n|Born               = June 6th, ????.\n|Origin             = [[Howell, New Jersey], [[United States|U.S.]]\n|Occupation         = Full-time Student\n|URL                = [http://www.soapstudios.org]\n}}', 'utf-8');
INSERT INTO mw_text VALUES('7', '\'\'\'Lucent\'\'\' (aka \'\'Nightshine\'\') is one of the eight original members of SoapRO, the leader of the guild [[Lunar Flare]], and a contributing member to SoapRO\'s society.  He developed the [[Bath EP]], and is the self proclaimed \"King of the [[Back Alley]]\"\n\n==Character Profile==\n\n\'\'\'Class:\'\'\' High Wizard, Stalker<br>\n\'\'\'Guild:\'\'\' Lunar Flare<br>\n\'\'\'Title:\'\'\' Crimson Seraph<br>\n\'\'\'Age:\'\'\' 17', 'utf-8');
INSERT INTO mw_text VALUES('8', 'This is a fuckaround page for testing.', 'utf-8');
INSERT INTO mw_text VALUES('9', '\'\'\'Lucent\'\'\' (aka \'\'Nightshine\'\') is one of the eight original members of SoapRO, the leader of the guild [[Lunar Flare]], and a contributing member to SoapRO\'s society.  He developed the [[Bath EP]], and is the self proclaimed \"King of the [[Back Alley]]\"\n\n==Character Profile==\n\n\'\'\'Characters:\'\'\' Lucent, Nightshine<br>\n\'\'\'Class:\'\'\' High Wizard, Stalker<br>\n\'\'\'Guild:\'\'\' Lunar Flare<br>\n\'\'\'Title:\'\'\' Crimson Seraph<br>\n\'\'\'Age:\'\'\' 17\n\n==History==\n\nAfter Lucent had a longed out war with the server\'s administrator\'s over at the previous server he played on, he joined SoapRO via Rate My Server\'s database.  Originally planning to be a troll, Lucent found that the server\'s attitude was different from what he expected, and afterwards, became a contributing member to the community.', 'utf-8');
INSERT INTO mw_text VALUES('10', '{{Userinfo| \n\n|username=Daniel\n\n|name=Daniel\n\n|userid=2\n\n|born=August 15\n\n|gender=male \n\n|location=Moncton\n\n|other=Here\n\n}}', 'utf-8');
INSERT INTO mw_text VALUES('11', '{| cellpadding=0 cellspacing=0 border=1 align=right style=\"font-family: verdana, sans-serif; margin: 0 0 1em 1em; font-size: 10px; background-color: #f7f8ff; border:1px solid #8888aa; border-collapse: collapse; width: 256px\"\n|- bgcolor=#CC00FF\n| align=center colspan=2|<font size=\"2\">\'\'\'\'\'User Information\'\'\'\'\'</font>\n|-\n|align=\"center\" colspan=2|{{{username}}}\'s mini profile:\n|-\n|style=\"padding: 0px 5px\"|Real Name:\n|style=\"padding: 0px 5px\"|{{{name}}}\n|-\n|style=\"padding: 0px 5px\"|Date of Birth:\n|style=\"padding: 0px 5px\"|{{{born}}}\n|-\n|style=\"padding: 0px 5px\"|Gender:\n|style=\"padding: 0px 5px\"|{{{gender}}}\n|-\n|style=\"padding: 0px 5px\"|Location:\n|style=\"padding: 0px 5px\"|{{{location}}}\n|-\n|style=\"padding: 0px 5px\"|Forum Profile:\n|style=\"padding: 0px 5px\"|[http://www.ro.soapstudios.org/forums/member.php?u={{{userid}}} Profile]\n|-\n\n|}', 'utf-8');
INSERT INTO mw_text VALUES('12', '{| cellpadding=0 cellspacing=0 border=1 align=right style=\"font-family: verdana, sans-serif; margin: 0 0 1em 1em; font-size: 10px; background-color: #f7f8ff; border:1px solid #8888aa; border-collapse: collapse; width: 256px\"\n|- bgcolor=#CFCFCF\n| align=center colspan=2|<font size=\"2\">\'\'\'User Information\'\'\'</font>\n|-\n|align=\"center\" colspan=2|{{{username}}}\'s mini profile:\n|-\n|style=\"padding: 0px 5px\"|Real Name:\n|style=\"padding: 0px 5px\"|{{{name}}}\n|-\n|style=\"padding: 0px 5px\"|Date of Birth:\n|style=\"padding: 0px 5px\"|{{{born}}}\n|-\n|style=\"padding: 0px 5px\"|Gender:\n|style=\"padding: 0px 5px\"|{{{gender}}}\n|-\n|style=\"padding: 0px 5px\"|Location:\n|style=\"padding: 0px 5px\"|{{{location}}}\n|-\n|style=\"padding: 0px 5px\"|Forum Profile:\n|style=\"padding: 0px 5px\"|[http://www.ro.soapstudios.org/forums/member.php?u={{{userid}}} Profile]\n|-\n\n|}', 'utf-8');
INSERT INTO mw_text VALUES('13', '{{Infobox Person\n|name        = \n|image       = \n|caption     = \n|birth_date  = {{Birth date|YYYY|MM|DD}}\n|birth_place = \n|death_date  = <!-- {{Death date and age|YYYY|MM|DD|YYYY|MM|DD}} -->\n|death_place = \n|other_names = \n|known_for   = \n|occupation  = \n|nationality = \n}}', 'utf-8');
INSERT INTO mw_text VALUES('14', '{{Infobox Person\n|name        = \n|image       = \n|caption     = \n|birth_date  = {{Birth date|YYYY|MM|DD}}\n|birth_place = \n|death_date  = <!-- {{Death date and age|YYYY|MM|DD|YYYY|MM|DD}} -->\n|death_place = \n|other_names = \n|known_for   = \n|occupation  = \n|nationality = \n}}', 'utf-8');
INSERT INTO mw_text VALUES('15', '{{Infobox Person\n|name          = \n|image         = \n|image_size    = \n|caption       = \n|birth_name    = \n|birth_date    = {{Birth date|YYYY|MM|DD}}\n|birth_place   = \n|death_date    = <!-- {{Death date and age|YYYY|MM|DD|YYYY|MM|DD}} -->\n|death_place   = \n|body_discovered = \n|death_cause   = \n|resting_place = \n|resting_place_coordinates = <!-- {{coord|LAT|LONG|display=inline,title}} -->\n|residence     = \n|nationality   = \n|ethnicity     = \n|citizenship   = \n|other_names   = \n|known_for     = \n|education     = \n|alma_mater    = \n|employer      = \n|occupation    = \n|years_active  =\n|home_town     = \n|salary        = \n|networth      = \n|height        = \n|weight        = \n|title         = \n|term          = \n|predecessor   = \n|successor     = \n|party         = \n|opponents     =\n|boards        = \n|religion      = \n|spouse        = \n|partner       = \n|children      = \n|parents       = \n|relations     = \n|callsign      = \n|signature     = \n|website       = \n|footnotes     = \n|box_width     = \n}}', 'utf-8');
INSERT INTO mw_text VALUES('16', '{\n|name          = \n|image         = \n|image_size    = \n|caption       = \n|birth_name    = \n|birth_date    = {{Birth date|YYYY|MM|DD}}\n|birth_place   = \n|death_date    = <!-- {{Death date and age|YYYY|MM|DD|YYYY|MM|DD}} -->\n|death_place   = \n|body_discovered = \n|death_cause   = \n|resting_place = \n|resting_place_coordinates = <!-- {{coord|LAT|LONG|display=inline,title}} -->\n|residence     = \n|nationality   = \n|ethnicity     = \n|citizenship   = \n|other_names   = \n|known_for     = \n|education     = \n|alma_mater    = \n|employer      = \n|occupation    = \n|years_active  =\n|home_town     = \n|salary        = \n|networth      = \n|height        = \n|weight        = \n|title         = \n|term          = \n|predecessor   = \n|successor     = \n|party         = \n|opponents     =\n|boards        = \n|religion      = \n|spouse        = \n|partner       = \n|children      = \n|parents       = \n|relations     = \n|callsign      = \n|signature     = \n|website       = \n|footnotes     = \n|box_width     = \n}', 'utf-8');
INSERT INTO mw_text VALUES('17', '{{Infobox Person\n|name          = \n|image         = \n|image_size    = \n|caption       = \n|birth_name    = \n|birth_date    = {{Birth date|YYYY|MM|DD}}\n|birth_place   = \n|death_date    = <!-- {{Death date and age|YYYY|MM|DD|YYYY|MM|DD}} -->\n|death_place   = \n|body_discovered = \n|death_cause   = \n|resting_place = \n|resting_place_coordinates = <!-- {{coord|LAT|LONG|display=inline,title}} -->\n|residence     = \n|nationality   = \n|ethnicity     = \n|citizenship   = \n|other_names   = \n|known_for     = \n|education     = \n|alma_mater    = \n|employer      = \n|occupation    = \n|years_active  =\n|home_town     = \n|salary        = \n|networth      = \n|height        = \n|weight        = \n|title         = \n|term          = \n|predecessor   = \n|successor     = \n|party         = \n|opponents     =\n|boards        = \n|religion      = \n|spouse        = \n|partner       = \n|children      = \n|parents       = \n|relations     = \n|callsign      = \n|signature     = \n|website       = \n|footnotes     = \n|box_width     = \n}}', 'utf-8');
INSERT INTO mw_text VALUES('18', '{| cellpadding=0 cellspacing=0 border=1 align=right style=\"font-family: verdana, sans-serif; margin: 0 0 1em 1em; font-size: 10px; background-color: #f7f8ff; border:1px solid #8888aa; border-collapse: collapse; width: 256px\"\n|- bgcolor=#CFCFCF\n| align=center colspan=2|<font size=\"2\">\'\'\'User Information\'\'\'</font>\n|-\n|align=\"center\" colspan=2|{{{username}}}\'s mini profile:\n|-\n|style=\"padding: 0px 5px\"|Real Name:\n|style=\"padding: 0px 5px\"|{{{name}}}\n|-\n|style=\"padding: 0px 5px\"|Date of Birth:\n|style=\"padding: 0px 5px\"|{{{born}}}\n|-\n|style=\"padding: 0px 5px\"|Gender:\n|style=\"padding: 0px 5px\"|{{{gender}}}\n|-\n|style=\"padding: 0px 5px\"|Location:\n|style=\"padding: 0px 5px\"|{{{location}}}\n|-\n|style=\"padding: 0px 5px\"|Forum Profile:\n|style=\"padding: 0px 5px\"|[http://www.ro.soapstudios.org/forums/member.php?u={{{userid}}} Profile]\n|-\n\n|}', 'utf-8');
INSERT INTO mw_text VALUES('19', '<div class=\"template-documentation\"><!--\n\nThese are the literal class definitions in common.css:\n \n/* For template documentation */\n.template-documentation {\n    clear: both;\n    margin: 1em 0 0 0;\n    border: 1px solid #aaa; \n    background-color: #ecfcf4; \n    padding: 5px;\n}\n\n\n -->{{#ifeq:{{{heading|μ}}}|<!--**DEFINED BUT EMPTY**-->\n  |<!--**NOTHING**-->\n  |<div style=\"padding-bottom:3px; border-bottom: 1px solid #aaa; margin-bottom:1ex\">{{#ifeq:{{{content|μ}}}|μ\n   |<span class=\"editsection plainlinks\" id=\"doc_editlinks\">{{#ifexist: {{{1|{{Documentation/docname}}}}}\n    |<!--**    /doc EXISTS**   -->[[{{fullurl:{{{1|{{Documentation/docname}}}}}|action=edit}} edit]] [{{purge|purge}}] \n    |<!--**/doc DOESN\'T EXIST**-->[[{{fullurl:{{{1|{{Documentation/docname }}}}}|action=edit&preload=Template:Documentation/preload}} create]]\n   }}</span>\n  }} <span style=\"{{#if:{{{heading-style|}}}|{{{heading-style}}}|{{#ifeq:{{NAMESPACE}}|{{ns:template}}|font-weight: bold; font-size: 125%|font-size: 150%}}}}\">{{#if:{{{heading|}}}|{{{heading}}}|{{#ifeq:{{NAMESPACE}}|{{ns:template}}|[[Image:Template-info.svg|50px]] Template documentation|Documentation}}}}</span></div>\n }}<!--\n\n --><div id=\"template_doc_page_transcluded\" class=\"dablink plainlinks\"><!--\n  -->{{#ifexist: {{{1|{{Documentation/docname}}}}}\n  |<!--**/doc EXISTS**-->This [[Wikipedia:Template documentation|documentation]] is [[Wikipedia:Transclusion|transcluded]] from [[{{{1|{{Documentation/docname}}}}}]]. <small style=\"font-style: normal\">([{{fullurl:{{{1|{{Documentation/docname}}}}}|action=edit}} edit] &#124; [{{fullurl:{{{1|{{Documentation/docname}}}}}|action=history}} history])</small><br />\n }}<!--\n\n -->{{#switch: {{SUBPAGENAME}}\n   |sandbox|testcases=<!--**DO NOT SHOW THESE LINKS ON THE SANDBOX/TESTCASES PAGES**-->\n   |#default=\n    {{#switch: {{SUBJECTSPACE}}\n     |{{ns:template}}\n     |{{ns:user}}=\n      {{#ifexist: {{FULLPAGENAME}}/sandbox\n       |This template has a [[/sandbox|sandbox]] <small style=\"font-style: normal\">([{{fullurl:{{ #rel2abs: /sandbox }}|action=edit}} edit])</small> <!--\n        -->{{#ifexist: {{FULLPAGENAME}}/testcases\n         |and [[/testcases|testcases]] <small style=\"font-style: normal\">([{{fullurl:{{ #rel2abs: /testcases }}|action=edit}} edit])</small>}} for editors to experiment.\n       |{{#ifexist: {{FULLPAGENAME}}/testcases\n        |This template has [[/testcases|testcases]] <small style=\"font-style: normal\">([{{fullurl:{{ #rel2abs: /testcases }}|action=edit}} edit])</small> for editors to experiment.}}\n }}}}}}\n </div>\n{{#if:{{{content|}}}|{{{content}}}|{{#ifexist:{{{1|{{Documentation/docname}}}}} | {{ {{{1|{{Documentation/docname}}}}} }} }}}}\n<div style=\"clear: both;\"></div>\n</div><noinclude>\n\n{{pp-template|small=yes}}\n<!-- Add categories and interwikis to the /doc subpage, not here! -->\n</noinclude>', 'utf-8');
INSERT INTO mw_text VALUES('20', '<includeonly>{{pp-meta\n|type={{#switch:{{{demolevel|{{PROTECTIONLEVEL:edit}}}}}\n   |semi\n   |autoconfirmed=semi\n   |administrator\n   |full\n   |sysop=indef\n   |#default=indef<!--fallback value-->}}\n|small={{{small|yes}}}\n|demospace={{{demospace|}}}\n|demolevel={{#ifeq:{{PAGENAME}}/{{NAMESPACE}}|{{SUBPAGENAME}}/{{ns:Template}}|{{{demolevel|undefined}}}|{{#ifeq:{{lc:{{SUBPAGENAME}}}}|sandbox|sysop|{{{demolevel|undefined}}}}}}}\n|expiry=<!--not applicable-->\n|dispute=no\n|icon-text=This {{#ifeq:{{NAMESPACE}}|{{ns:6}}|image, included in a high-risk template or message,|high-risk template}} is indefinitely {{#switch:{{{demolevel|{{PROTECTIONLEVEL:edit}}}}}\n   |semi\n   |autoconfirmed=semi-\n   |administrator\n   |full\n   |sysop\n   |#default=<!--fallback value-->}}protected from editing to prevent vandalism.\n|reason-text=This {{#switch:{{NAMESPACE}}\n  |{{ns:image}}=image, used in one or more [[Wikipedia:High-risk templates|high-risk templates]]{{#switch:{{{demolevel|{{PROTECTIONLEVEL:edit}}}}}\n   |semi\n   |autoconfirmed=\n   |administrator\n   |full\n   |sysop=<nowiki> </nowiki>and/or [[Special:Allmessages|system messages]],\n   |#default=<!--fallback value-->}}\n  |#default=[[Wikipedia:High-risk templates|high-risk template]]\n}} has been [[Wikipedia:This page is protected|{{#switch:{{{demolevel|{{PROTECTIONLEVEL:edit}}}}}\n   |semi\n   |autoconfirmed=semi-\n   |administrator\n   |full\n   |sysop<!--uses default-->\n   |#default=<!--fallback value-->}}protected]] from editing to prevent [[Wikipedia:Vandalism|vandalism]]. {{#switch:{{{demolevel|{{PROTECTIONLEVEL:edit}}}}}\n   |semi\n   |autoconfirmed=\n   |administrator\n   |full\n   |sysop<!--uses default-->\n   |#default={{#switch:{{NAMESPACE}}|{{ns:image}}=<br /><small>\'\'\'Do not move this image\'\'\' to [[commons:|Wikimedia Commons]].</small>}}}}\n|categories={{{categories|{{#ifeq:{{NAMESPACE}}|{{ns:10}}|[[Category:Wikipedia {{#switch:{{{demolevel|{{PROTECTIONLEVEL:edit}}}}}\n   |semi\n   |autoconfirmed=semi-\n   |administrator\n   |full\n   |sysop<!--uses default-->\n   |#default=<!--fallback value-->}}protected templates|{{PAGENAME}}]]}}{{#ifeq:{{NAMESPACE}}|{{ns:6}}|[[Category:{{#switch:{{{demolevel|{{PROTECTIONLEVEL:edit}}}}}\n   |semi\n   |autoconfirmed=Semi-protected\n   |administrator\n   |full\n   |sysop<!--uses default-->\n   |#default=Protected<!--fallback value-->}} images|{{PAGENAME}}]]}}}}}}}</includeonly><noinclude>\n{{pp-template|categories=no}}  <!-- Show the small version -->\n{{pp-template|small=no}}      <!-- Show the large version -->\n{{Documentation}}\n<!-- Add categories and interwikis to the /doc subpage, not here! -->\n</noinclude>', 'utf-8');
INSERT INTO mw_text VALUES('21', '{{ infobox\n| bodyclass  = biography vcard vevent\n| bodystyle  = width:{{#if:{{{box_width|}}}|{{{box_width}}} |22em}}; font-size:95%; text-align:left;\n| above      = \'\'\'{{{name|{{PAGENAME}}}}}\'\'\'\n| aboveclass = fn summary\n| abovestyle = text-align:center; font-size:125%;\n| image      = {{#if:{{{image|}}}|[[Image:{{{image}}}|{{#if:{{{image_size|{{{imagesize|}}}}}}|{{{image_size|{{{imagesize}}}}}}|225px}}]]}}\n| imageclass = {{image class names|{{{image}}}}}\n| imagestyle = padding:4pt; line-height:1.25em; text-align:center; font-size:8pt;\n| caption    = <div style=\"padding-top:2pt;\">{{{caption|}}}</div>\n| labelstyle = padding:0.2em 1.0em 0.2em 0.2em; background:transparent; line-height:1.2em; text-align:left; font-size:90%;\n| datastyle  = padding:0.2em; line-height:1.3em; vertical-align:middle; font-size:90%;\n\n| label1     = {{#if:{{{birth_name|}}}{{{birth_date|}}}{{{birth_place|}}}|Born}}\n| data1      = {{#if:{{{birth_name|}}}|{{{birth_name}}}<br />}}{{#if:{{{birth_date|}}} |{{{birth_date}}}<br />}}{{{birth_place|}}}\n| label2     = {{#if:{{{death_date|}}}{{{death_place|}}}|Died }}\n| data2      = {{#if:{{{death_date|}}}|{{{death_date}}}<br />}}{{{death_place|}}}\n| label3     = Cause&nbsp;of death\n| data3      = {{{death_cause|}}}\n| label4     = Body discovered\n| data4      = {{{body_discovered|}}}\n| label5     = Resting&nbsp;place\n| class5     = label\n| data5      = {{{resting_place|}}}{{#if:{{{resting_place_coordinates|}}}|<br />{{{resting_place_coordinates}}} }}\n| label6     = Residence\n| class6     = label\n| data6      = {{{residence|}}}\n| class7     = category\n| label7     = Nationality\n| data7      = {{{nationality|}}}\n| label8     = Other&nbsp;names\n| class8     = nickname\n| data8      = {{{other_names|}}}\n| class9     = category\n| label9     = Ethnicity\n| data9      = {{{ethnicity|}}}\n| class10    = category\n| label10    = Citizenship\n| data10     = {{{citizenship|}}}\n| label11    = Education\n| data11     = {{{education|}}}\n| label12    = Alma&nbsp;mater\n| data12     = {{{alma_mater|}}}\n| label13    = Occupation\n| class13    = role\n| data13     = {{{occupation|}}}\n| label14    = Years active\n| data14     = {{{years_active|}}}\n| label15    = Employer\n| data15     = {{{employer|}}}\n| label16    = Home&nbsp;town\n| data16     = {{{home_town|}}}\n| label17    = Salary\n| data17     = {{{salary|}}}\n| label18    = Net&nbsp;worth\n| data18     = {{{networth|}}}\n| label19    = Height\n| data19     = {{{height|}}}\n| label20    = Weight\n| data20     = {{{weight|}}}\n| label21    = Known&nbsp;for\n| data21     = {{{known|{{{known_for|}}}}}}\n| label22    = Title\n| data22     = {{{title|}}}\n| label23    = Term\n| data23     = {{{term|}}}\n| label24    = Predecessor\n| data24     = {{{predecessor|}}}\n| label25    = Successor\n| data25     = {{{successor|}}}\n| label26    = Political&nbsp;party\n| data26     = {{{party|}}}\n| label27    = Opponent(s)\n| data27     = {{{opponents|}}}\n| label28    = Board member&nbsp;of\n| data28     = {{{boards|}}}\n| label29    = Religious beliefs\n| data29     = {{{religion|}}}\n| label30    = Spouse(s)\n| data30     = {{{spouse|}}}\n| label31    = Partner\n| data31     = {{{partner|}}}\n| label32    = Children\n| data32     = {{{children|}}}\n| label33    = Parents\n| data33     = {{{parents|}}}\n| label34    = Relatives\n| data34     = {{{relations|{{{relatives|}}}}}}\n| label35    = Call-sign\n| data35     = {{{callsign|}}}\n| data36     = {{#if:{{{signature|}}}|\'\'\'Signature\'\'\'<div style=\"padding-top:0.3em;\">[[Image:{{{signature}}}|128px]]</div>}}\n| data37     = {{#if:{{{website|}}}| \'\'\'Website\'\'\'<br />{{{website}}} }}\n| data38     = {{#if:{{{footnotes|}}}|<div style=\"text-align:left;\"><div style=\"border-top:1px solid;\">\'\'\'Notes\'\'\'</div><div style=\"line-height:1.2em;\">{{{footnotes}}}</div></div>}}\n}}<noinclude>{{pp-template|small=yes}}{{documentation}}<!---Please add metadata to the <includeonly> section at the bottom of the /doc subpage---></noinclude>', 'utf-8');
INSERT INTO mw_text VALUES('22', '{{Infobox Person\n|name        = \n|image       = \n|caption     = \n|birth_date  = {{Birth date|YYYY|MM|DD}}\n|birth_place = \n|death_date  = <!-- {{Death date and age|YYYY|MM|DD|YYYY|MM|DD}} -->\n|death_place = \n|other_names = \n|known_for   = \n|occupation  = \n|nationality = \n}}', 'utf-8');
INSERT INTO mw_text VALUES('23', '<table class=\"infobox {{{bodyclass|}}}\" cellspacing=\"5\" style=\"width: 22em; text-align: left; font-size: 88%; line-height: 1.5em; {{{bodystyle|}}}\"><!--\n Caption\n-->{{#if:{{{title|}}}|<caption class=\"{{{titleclass|}}}\" style=\"font-size: 125%; font-weight: bold; {{{titlestyle|}}}\">{{{title}}}</caption>}}\n<!--\n Header\n-->{{#if:{{{above|}}}|<tr><td colspan=\"2\" class=\"{{{aboveclass|}}}\" style=\"text-align:center; font-size: 125%; font-weight: bold; {{{abovestyle|}}}\">{{{above}}}</td></tr>}}<!--\n Subheader\n-->{{#if:{{{subheader|}}}|<tr><td colspan=\"2\" class=\"{{{subheaderclass|}}}\" style=\"text-align:center; {{{subheaderstyle|}}}\">{{{subheader}}}</td></tr>}}<!--\n Image\n-->{{#if:{{{image|}}}|<tr><td colspan=\"2\" class=\"{{{imageclass|}}}\" style=\"text-align:center; {{{imagestyle|}}}\"> {{{image}}} {{#if:{{{caption|}}}|<br />\n<span style=\"{{{captionstyle|}}}\">{{{caption}}}</span> }}</td></tr>}}<!--\n Row 1\n-->{{#if:{{{header1|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header1|}}}</th></tr>| {{#if:{{{label1|}}}|{{#if:{{{data1|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label1|}}}</th><td class=\"{{{class1|}}}\" style=\"{{{datastyle|}}}\">{{{data1|}}}</td></tr>}}|  {{#if:{{{data1|}}}|<tr><td colspan=\"2\" class=\"{{{class1|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data1|}}}</td></tr>}} }} }}<!--\n Row 2\n-->{{#if:{{{header2|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header2|}}}</th></tr>| {{#if:{{{label2|}}}|{{#if:{{{data2|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label2|}}}</th><td class=\"{{{class2|}}}\" style=\"{{{datastyle|}}}\">{{{data2|}}}</td></tr>}}|  {{#if:{{{data2|}}}|<tr><td colspan=\"2\" class=\"{{{class2|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data2|}}}</td></tr>}} }} }}<!--\n Row 3\n-->{{#if:{{{header3|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header3|}}}</th></tr>| {{#if:{{{label3|}}}|{{#if:{{{data3|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label3|}}}</th><td class=\"{{{class3|}}}\" style=\"{{{datastyle|}}}\">{{{data3|}}}</td></tr>}}|  {{#if:{{{data3|}}}|<tr><td colspan=\"2\" class=\"{{{class3|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data3|}}}</td></tr>}} }} }}<!--\n Row 4\n-->{{#if:{{{header4|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header4|}}}</th></tr>| {{#if:{{{label4|}}}|{{#if:{{{data4|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label4|}}}</th><td class=\"{{{class4|}}}\" style=\"{{{datastyle|}}}\">{{{data4|}}}</td></tr>}}|  {{#if:{{{data4|}}}|<tr><td colspan=\"2\" class=\"{{{class4|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data4|}}}</td></tr>}} }} }}<!--\n Row 5\n-->{{#if:{{{header5|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header5|}}}</th></tr>| {{#if:{{{label5|}}}|{{#if:{{{data5|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label5|}}}</th><td class=\"{{{class5|}}}\" style=\"{{{datastyle|}}}\">{{{data5|}}}</td></tr>}}|  {{#if:{{{data5|}}}|<tr><td colspan=\"2\" class=\"{{{class5|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data5|}}}</td></tr>}} }} }}<!--\n Row 6\n-->{{#if:{{{header6|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header6|}}}</th></tr>| {{#if:{{{label6|}}}|{{#if:{{{data6|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label6|}}}</th><td class=\"{{{class6|}}}\" style=\"{{{datastyle|}}}\">{{{data6|}}}</td></tr>}}|  {{#if:{{{data6|}}}|<tr><td colspan=\"2\" class=\"{{{class6|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data6|}}}</td></tr>}} }} }}<!--\n Row 7\n-->{{#if:{{{header7|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header7|}}}</th></tr>| {{#if:{{{label7|}}}|{{#if:{{{data7|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label7|}}}</th><td class=\"{{{class7|}}}\" style=\"{{{datastyle|}}}\">{{{data7|}}}</td></tr>}}|  {{#if:{{{data7|}}}|<tr><td colspan=\"2\" class=\"{{{class7|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data7|}}}</td></tr>}} }} }}<!--\n Row 8\n-->{{#if:{{{header8|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header8|}}}</th></tr>| {{#if:{{{label8|}}}|{{#if:{{{data8|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label8|}}}</th><td class=\"{{{class8|}}}\" style=\"{{{datastyle|}}}\">{{{data8|}}}</td></tr>}}|  {{#if:{{{data8|}}}|<tr><td colspan=\"2\" class=\"{{{class8|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data8|}}}</td></tr>}} }} }}<!--\n Row 9\n-->{{#if:{{{header9|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header9|}}}</th></tr>| {{#if:{{{label9|}}}|{{#if:{{{data9|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label9|}}}</th><td class=\"{{{class9|}}}\" style=\"{{{datastyle|}}}\">{{{data9|}}}</td></tr>}}|  {{#if:{{{data9|}}}|<tr><td colspan=\"2\" class=\"{{{class9|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data9|}}}</td></tr>}} }} }}<!--\n Row 10\n-->{{#if:{{{header10|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header10|}}}</th></tr>| {{#if:{{{label10|}}}|{{#if:{{{data10|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label10|}}}</th><td class=\"{{{class10|}}}\" style=\"{{{datastyle|}}}\">{{{data10|}}}</td></tr>}}|  {{#if:{{{data10|}}}|<tr><td colspan=\"2\" class=\"{{{class10|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data10|}}}</td></tr>}} }} }}<!--\n Row 11\n-->{{#if:{{{header11|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header11|}}}</th></tr>| {{#if:{{{label11|}}}|{{#if:{{{data11|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label11|}}}</th><td class=\"{{{class11|}}}\" style=\"{{{datastyle|}}}\">{{{data11|}}}</td></tr>}}|  {{#if:{{{data11|}}}|<tr><td colspan=\"2\" class=\"{{{class11|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data11|}}}</td></tr>}} }} }}<!--\n Row 12\n-->{{#if:{{{header12|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header12|}}}</th></tr>| {{#if:{{{label12|}}}|{{#if:{{{data12|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label12|}}}</th><td class=\"{{{class12|}}}\" style=\"{{{datastyle|}}}\">{{{data12|}}}</td></tr>}}|  {{#if:{{{data12|}}}|<tr><td colspan=\"2\" class=\"{{{class12|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data12|}}}</td></tr>}} }} }}<!--\n Row 13\n-->{{#if:{{{header13|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header13|}}}</th></tr>| {{#if:{{{label13|}}}|{{#if:{{{data13|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label13|}}}</th><td class=\"{{{class13|}}}\" style=\"{{{datastyle|}}}\">{{{data13|}}}</td></tr>}}|  {{#if:{{{data13|}}}|<tr><td colspan=\"2\" class=\"{{{class13|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data13|}}}</td></tr>}} }} }}<!--\n Row 14\n-->{{#if:{{{header14|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header14|}}}</th></tr>| {{#if:{{{label14|}}}|{{#if:{{{data14|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label14|}}}</th><td class=\"{{{class14|}}}\" style=\"{{{datastyle|}}}\">{{{data14|}}}</td></tr>}}|  {{#if:{{{data14|}}}|<tr><td colspan=\"2\" class=\"{{{class14|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data14|}}}</td></tr>}} }} }}<!--\n Row 15\n-->{{#if:{{{header15|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header15|}}}</th></tr>| {{#if:{{{label15|}}}|{{#if:{{{data15|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label15|}}}</th><td class=\"{{{class15|}}}\" style=\"{{{datastyle|}}}\">{{{data15|}}}</td></tr>}}|  {{#if:{{{data15|}}}|<tr><td colspan=\"2\" class=\"{{{class15|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data15|}}}</td></tr>}} }} }}<!--\n Row 16\n-->{{#if:{{{header16|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header16|}}}</th></tr>| {{#if:{{{label16|}}}|{{#if:{{{data16|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label16|}}}</th><td class=\"{{{class16|}}}\" style=\"{{{datastyle|}}}\">{{{data16|}}}</td></tr>}}|  {{#if:{{{data16|}}}|<tr><td colspan=\"2\" class=\"{{{class16|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data16|}}}</td></tr>}} }} }}<!--\n Row 17\n-->{{#if:{{{header17|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header17|}}}</th></tr>| {{#if:{{{label17|}}}|{{#if:{{{data17|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label17|}}}</th><td class=\"{{{class17|}}}\" style=\"{{{datastyle|}}}\">{{{data17|}}}</td></tr>}}|  {{#if:{{{data17|}}}|<tr><td colspan=\"2\" class=\"{{{class17|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data17|}}}</td></tr>}} }} }}<!--\n Row 18\n-->{{#if:{{{header18|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header18|}}}</th></tr>| {{#if:{{{label18|}}}|{{#if:{{{data18|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label18|}}}</th><td class=\"{{{class18|}}}\" style=\"{{{datastyle|}}}\">{{{data18|}}}</td></tr>}}|  {{#if:{{{data18|}}}|<tr><td colspan=\"2\" class=\"{{{class18|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data18|}}}</td></tr>}} }} }}<!--\n Row 19\n-->{{#if:{{{header19|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header19|}}}</th></tr>| {{#if:{{{label19|}}}|{{#if:{{{data19|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label19|}}}</th><td class=\"{{{class19|}}}\" style=\"{{{datastyle|}}}\">{{{data19|}}}</td></tr>}}|  {{#if:{{{data19|}}}|<tr><td colspan=\"2\" class=\"{{{class19|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data19|}}}</td></tr>}} }} }}<!--\n Row 20\n-->{{#if:{{{header20|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header20|}}}</th></tr>| {{#if:{{{label20|}}}|{{#if:{{{data20|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label20|}}}</th><td class=\"{{{class20|}}}\" style=\"{{{datastyle|}}}\">{{{data20|}}}</td></tr>}}|  {{#if:{{{data20|}}}|<tr><td colspan=\"2\" class=\"{{{class20|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data20|}}}</td></tr>}} }} }}<!--\n Row 21\n-->{{#if:{{{header21|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header21|}}}</th></tr>| {{#if:{{{label21|}}}|{{#if:{{{data21|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label21|}}}</th><td class=\"{{{class21|}}}\" style=\"{{{datastyle|}}}\">{{{data21|}}}</td></tr>}}|  {{#if:{{{data21|}}}|<tr><td colspan=\"2\" class=\"{{{class21|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data21|}}}</td></tr>}} }} }}<!--\n Row 22\n-->{{#if:{{{header22|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header22|}}}</th></tr>| {{#if:{{{label22|}}}|{{#if:{{{data22|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label22|}}}</th><td class=\"{{{class22|}}}\" style=\"{{{datastyle|}}}\">{{{data22|}}}</td></tr>}}|  {{#if:{{{data22|}}}|<tr><td colspan=\"2\" class=\"{{{class22|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data22|}}}</td></tr>}} }} }}<!--\n Row 23\n-->{{#if:{{{header23|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header23|}}}</th></tr>| {{#if:{{{label23|}}}|{{#if:{{{data23|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label23|}}}</th><td class=\"{{{class23|}}}\" style=\"{{{datastyle|}}}\">{{{data23|}}}</td></tr>}}|  {{#if:{{{data23|}}}|<tr><td colspan=\"2\" class=\"{{{class23|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data23|}}}</td></tr>}} }} }}<!--\n Row 24\n-->{{#if:{{{header24|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header24|}}}</th></tr>| {{#if:{{{label24|}}}|{{#if:{{{data24|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label24|}}}</th><td class=\"{{{class24|}}}\" style=\"{{{datastyle|}}}\">{{{data24|}}}</td></tr>}}|  {{#if:{{{data24|}}}|<tr><td colspan=\"2\" class=\"{{{class24|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data24|}}}</td></tr>}} }} }}<!--\n Row 25\n-->{{#if:{{{header25|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header25|}}}</th></tr>| {{#if:{{{label25|}}}|{{#if:{{{data25|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label25|}}}</th><td class=\"{{{class25|}}}\" style=\"{{{datastyle|}}}\">{{{data25|}}}</td></tr>}}|  {{#if:{{{data25|}}}|<tr><td colspan=\"2\" class=\"{{{class25|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data25|}}}</td></tr>}} }} }}<!--\n Row 26\n-->{{#if:{{{header26|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header26|}}}</th></tr>| {{#if:{{{label26|}}}|{{#if:{{{data26|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label26|}}}</th><td class=\"{{{class26|}}}\" style=\"{{{datastyle|}}}\">{{{data26|}}}</td></tr>}}|  {{#if:{{{data26|}}}|<tr><td colspan=\"2\" class=\"{{{class26|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data26|}}}</td></tr>}} }} }}<!--\n Row 27\n-->{{#if:{{{header27|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header27|}}}</th></tr>| {{#if:{{{label27|}}}|{{#if:{{{data27|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label27|}}}</th><td class=\"{{{class27|}}}\" style=\"{{{datastyle|}}}\">{{{data27|}}}</td></tr>}}|  {{#if:{{{data27|}}}|<tr><td colspan=\"2\" class=\"{{{class27|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data27|}}}</td></tr>}} }} }}<!--\n Row 28\n-->{{#if:{{{header28|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header28|}}}</th></tr>| {{#if:{{{label28|}}}|{{#if:{{{data28|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label28|}}}</th><td class=\"{{{class28|}}}\" style=\"{{{datastyle|}}}\">{{{data28|}}}</td></tr>}}|  {{#if:{{{data28|}}}|<tr><td colspan=\"2\" class=\"{{{class28|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data28|}}}</td></tr>}} }} }}<!--\n Row 29\n-->{{#if:{{{header29|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header29|}}}</th></tr>| {{#if:{{{label29|}}}|{{#if:{{{data29|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label29|}}}</th><td class=\"{{{class29|}}}\" style=\"{{{datastyle|}}}\">{{{data29|}}}</td></tr>}}|  {{#if:{{{data29|}}}|<tr><td colspan=\"2\" class=\"{{{class29|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data29|}}}</td></tr>}} }} }}<!--\n Row 30\n-->{{#if:{{{header30|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header30|}}}</th></tr>| {{#if:{{{label30|}}}|{{#if:{{{data30|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label30|}}}</th><td class=\"{{{class30|}}}\" style=\"{{{datastyle|}}}\">{{{data30|}}}</td></tr>}}|  {{#if:{{{data30|}}}|<tr><td colspan=\"2\" class=\"{{{class30|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data30|}}}</td></tr>}} }} }}<!--\n Row 31\n-->{{#if:{{{header31|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header31|}}}</th></tr>| {{#if:{{{label31|}}}|{{#if:{{{data31|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label31|}}}</th><td class=\"{{{class31|}}}\" style=\"{{{datastyle|}}}\">{{{data31|}}}</td></tr>}}|  {{#if:{{{data31|}}}|<tr><td colspan=\"2\" class=\"{{{class31|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data31|}}}</td></tr>}} }} }}<!--\n Row 32\n-->{{#if:{{{header32|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header32|}}}</th></tr>| {{#if:{{{label32|}}}|{{#if:{{{data32|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label32|}}}</th><td class=\"{{{class32|}}}\" style=\"{{{datastyle|}}}\">{{{data32|}}}</td></tr>}}|  {{#if:{{{data32|}}}|<tr><td colspan=\"2\" class=\"{{{class32|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data32|}}}</td></tr>}} }} }}<!--\n Row 33\n-->{{#if:{{{header33|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header33|}}}</th></tr>| {{#if:{{{label33|}}}|{{#if:{{{data33|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label33|}}}</th><td class=\"{{{class33|}}}\" style=\"{{{datastyle|}}}\">{{{data33|}}}</td></tr>}}|  {{#if:{{{data33|}}}|<tr><td colspan=\"2\" class=\"{{{class33|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data33|}}}</td></tr>}} }} }}<!--\n Row 34\n-->{{#if:{{{header34|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header34|}}}</th></tr>| {{#if:{{{label34|}}}|{{#if:{{{data34|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label34|}}}</th><td class=\"{{{class34|}}}\" style=\"{{{datastyle|}}}\">{{{data34|}}}</td></tr>}}|  {{#if:{{{data34|}}}|<tr><td colspan=\"2\" class=\"{{{class34|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data34|}}}</td></tr>}} }} }}<!--\n Row 35\n-->{{#if:{{{header35|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header35|}}}</th></tr>| {{#if:{{{label35|}}}|{{#if:{{{data35|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label35|}}}</th><td class=\"{{{class35|}}}\" style=\"{{{datastyle|}}}\">{{{data35|}}}</td></tr>}}|  {{#if:{{{data35|}}}|<tr><td colspan=\"2\" class=\"{{{class35|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data35|}}}</td></tr>}} }} }}<!--\n Row 36\n-->{{#if:{{{header36|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header36|}}}</th></tr>| {{#if:{{{label36|}}}|{{#if:{{{data36|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label36|}}}</th><td class=\"{{{class36|}}}\" style=\"{{{datastyle|}}}\">{{{data36|}}}</td></tr>}}|  {{#if:{{{data36|}}}|<tr><td colspan=\"2\" class=\"{{{class36|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data36|}}}</td></tr>}} }} }}<!--\n Row 37\n-->{{#if:{{{header37|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header37|}}}</th></tr>| {{#if:{{{label37|}}}|{{#if:{{{data37|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label37|}}}</th><td class=\"{{{class37|}}}\" style=\"{{{datastyle|}}}\">{{{data37|}}}</td></tr>}}|  {{#if:{{{data37|}}}|<tr><td colspan=\"2\" class=\"{{{class37|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data37|}}}</td></tr>}} }} }}<!--\n Row 38\n-->{{#if:{{{header38|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header38|}}}</th></tr>| {{#if:{{{label38|}}}|{{#if:{{{data38|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label38|}}}</th><td class=\"{{{class38|}}}\" style=\"{{{datastyle|}}}\">{{{data38|}}}</td></tr>}}|  {{#if:{{{data38|}}}|<tr><td colspan=\"2\" class=\"{{{class38|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data38|}}}</td></tr>}} }} }}<!--\n Row 39\n-->{{#if:{{{header39|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header39|}}}</th></tr>| {{#if:{{{label39|}}}|{{#if:{{{data39|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label39|}}}</th><td class=\"{{{class39|}}}\" style=\"{{{datastyle|}}}\">{{{data39|}}}</td></tr>}}|  {{#if:{{{data39|}}}|<tr><td colspan=\"2\" class=\"{{{class39|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data39|}}}</td></tr>}} }} }}<!--\n Row 40\n-->{{#if:{{{header40|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header40|}}}</th></tr>| {{#if:{{{label40|}}}|{{#if:{{{data40|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label40|}}}</th><td class=\"{{{class40|}}}\" style=\"{{{datastyle|}}}\">{{{data40|}}}</td></tr>}}|  {{#if:{{{data40|}}}|<tr><td colspan=\"2\" class=\"{{{class40|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data40|}}}</td></tr>}} }} }}<!--\n Row 41\n-->{{#if:{{{header41|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header41|}}}</th></tr>| {{#if:{{{label41|}}}|{{#if:{{{data41|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label41|}}}</th><td class=\"{{{class41|}}}\" style=\"{{{datastyle|}}}\">{{{data41|}}}</td></tr>}}|  {{#if:{{{data41|}}}|<tr><td colspan=\"2\" class=\"{{{class41|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data41|}}}</td></tr>}} }} }}<!--\n Row 42\n-->{{#if:{{{header42|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header42|}}}</th></tr>| {{#if:{{{label42|}}}|{{#if:{{{data42|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label42|}}}</th><td class=\"{{{class42|}}}\" style=\"{{{datastyle|}}}\">{{{data42|}}}</td></tr>}}|  {{#if:{{{data42|}}}|<tr><td colspan=\"2\" class=\"{{{class42|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data42|}}}</td></tr>}} }} }}<!--\n Row 43\n-->{{#if:{{{header43|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header43|}}}</th></tr>| {{#if:{{{label43|}}}|{{#if:{{{data43|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label43|}}}</th><td class=\"{{{class43|}}}\" style=\"{{{datastyle|}}}\">{{{data43|}}}</td></tr>}}|  {{#if:{{{data43|}}}|<tr><td colspan=\"2\" class=\"{{{class43|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data43|}}}</td></tr>}} }} }}<!--\n Row 44\n-->{{#if:{{{header44|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header44|}}}</th></tr>| {{#if:{{{label44|}}}|{{#if:{{{data44|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label44|}}}</th><td class=\"{{{class44|}}}\" style=\"{{{datastyle|}}}\">{{{data44|}}}</td></tr>}}|  {{#if:{{{data44|}}}|<tr><td colspan=\"2\" class=\"{{{class44|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data44|}}}</td></tr>}} }} }}<!--\n Row 45\n-->{{#if:{{{header45|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header45|}}}</th></tr>| {{#if:{{{label45|}}}|{{#if:{{{data45|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label45|}}}</th><td class=\"{{{class45|}}}\" style=\"{{{datastyle|}}}\">{{{data45|}}}</td></tr>}}|  {{#if:{{{data45|}}}|<tr><td colspan=\"2\" class=\"{{{class45|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data45|}}}</td></tr>}} }} }}<!--\n Row 46\n-->{{#if:{{{header46|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header46|}}}</th></tr>| {{#if:{{{label46|}}}|{{#if:{{{data46|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label46|}}}</th><td class=\"{{{class46|}}}\" style=\"{{{datastyle|}}}\">{{{data46|}}}</td></tr>}}|  {{#if:{{{data46|}}}|<tr><td colspan=\"2\" class=\"{{{class46|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data46|}}}</td></tr>}} }} }}<!--\n Row 47\n-->{{#if:{{{header47|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header47|}}}</th></tr>| {{#if:{{{label47|}}}|{{#if:{{{data47|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label47|}}}</th><td class=\"{{{class47|}}}\" style=\"{{{datastyle|}}}\">{{{data47|}}}</td></tr>}}|  {{#if:{{{data47|}}}|<tr><td colspan=\"2\" class=\"{{{class47|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data47|}}}</td></tr>}} }} }}<!--\n Row 48\n-->{{#if:{{{header48|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header48|}}}</th></tr>| {{#if:{{{label48|}}}|{{#if:{{{data48|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label48|}}}</th><td class=\"{{{class48|}}}\" style=\"{{{datastyle|}}}\">{{{data48|}}}</td></tr>}}|  {{#if:{{{data48|}}}|<tr><td colspan=\"2\" class=\"{{{class48|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data48|}}}</td></tr>}} }} }}<!--\n Row 49\n-->{{#if:{{{header49|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header49|}}}</th></tr>| {{#if:{{{label49|}}}|{{#if:{{{data49|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label49|}}}</th><td class=\"{{{class49|}}}\" style=\"{{{datastyle|}}}\">{{{data49|}}}</td></tr>}}|  {{#if:{{{data49|}}}|<tr><td colspan=\"2\" class=\"{{{class49|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data49|}}}</td></tr>}} }} }}<!--\n Row 50\n-->{{#if:{{{header50|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header50|}}}</th></tr>| {{#if:{{{label50|}}}|{{#if:{{{data50|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label50|}}}</th><td class=\"{{{class50|}}}\" style=\"{{{datastyle|}}}\">{{{data50|}}}</td></tr>}}|  {{#if:{{{data50|}}}|<tr><td colspan=\"2\" class=\"{{{class50|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data50|}}}</td></tr>}} }} }}<!--\n Row 51\n-->{{#if:{{{header51|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header51|}}}</th></tr>| {{#if:{{{label51|}}}|{{#if:{{{data51|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label51|}}}</th><td class=\"{{{class51|}}}\" style=\"{{{datastyle|}}}\">{{{data51|}}}</td></tr>}}|  {{#if:{{{data51|}}}|<tr><td colspan=\"2\" class=\"{{{class51|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data51|}}}</td></tr>}} }} }}<!--\n Row 52\n-->{{#if:{{{header52|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header52|}}}</th></tr>| {{#if:{{{label52|}}}|{{#if:{{{data52|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label52|}}}</th><td class=\"{{{class52|}}}\" style=\"{{{datastyle|}}}\">{{{data52|}}}</td></tr>}}|  {{#if:{{{data52|}}}|<tr><td colspan=\"2\" class=\"{{{class52|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data52|}}}</td></tr>}} }} }}<!--\n Row 53\n-->{{#if:{{{header53|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header53|}}}</th></tr>| {{#if:{{{label53|}}}|{{#if:{{{data53|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label53|}}}</th><td class=\"{{{class53|}}}\" style=\"{{{datastyle|}}}\">{{{data53|}}}</td></tr>}}|  {{#if:{{{data53|}}}|<tr><td colspan=\"2\" class=\"{{{class53|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data53|}}}</td></tr>}} }} }}<!--\n Row 54\n-->{{#if:{{{header54|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header54|}}}</th></tr>| {{#if:{{{label54|}}}|{{#if:{{{data54|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label54|}}}</th><td class=\"{{{class54|}}}\" style=\"{{{datastyle|}}}\">{{{data54|}}}</td></tr>}}|  {{#if:{{{data54|}}}|<tr><td colspan=\"2\" class=\"{{{class54|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data54|}}}</td></tr>}} }} }}<!--\n Row 55\n-->{{#if:{{{header55|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header55|}}}</th></tr>| {{#if:{{{label55|}}}|{{#if:{{{data55|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label55|}}}</th><td class=\"{{{class55|}}}\" style=\"{{{datastyle|}}}\">{{{data55|}}}</td></tr>}}|  {{#if:{{{data55|}}}|<tr><td colspan=\"2\" class=\"{{{class55|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data55|}}}</td></tr>}} }} }}<!--\n Row 56\n-->{{#if:{{{header56|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header56|}}}</th></tr>| {{#if:{{{label56|}}}|{{#if:{{{data56|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label56|}}}</th><td class=\"{{{class56|}}}\" style=\"{{{datastyle|}}}\">{{{data56|}}}</td></tr>}}|  {{#if:{{{data56|}}}|<tr><td colspan=\"2\" class=\"{{{class56|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data56|}}}</td></tr>}} }} }}<!--\n Row 57\n-->{{#if:{{{header57|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header57|}}}</th></tr>| {{#if:{{{label57|}}}|{{#if:{{{data57|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label57|}}}</th><td class=\"{{{class57|}}}\" style=\"{{{datastyle|}}}\">{{{data57|}}}</td></tr>}}|  {{#if:{{{data57|}}}|<tr><td colspan=\"2\" class=\"{{{class57|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data57|}}}</td></tr>}} }} }}<!--\n Row 58\n-->{{#if:{{{header58|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header58|}}}</th></tr>| {{#if:{{{label58|}}}|{{#if:{{{data58|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label58|}}}</th><td class=\"{{{class58|}}}\" style=\"{{{datastyle|}}}\">{{{data58|}}}</td></tr>}}|  {{#if:{{{data58|}}}|<tr><td colspan=\"2\" class=\"{{{class58|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data58|}}}</td></tr>}} }} }}<!--\n Row 59\n-->{{#if:{{{header59|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header59|}}}</th></tr>| {{#if:{{{label59|}}}|{{#if:{{{data59|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label59|}}}</th><td class=\"{{{class59|}}}\" style=\"{{{datastyle|}}}\">{{{data59|}}}</td></tr>}}|  {{#if:{{{data59|}}}|<tr><td colspan=\"2\" class=\"{{{class59|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data59|}}}</td></tr>}} }} }}<!--\n Row 60\n-->{{#if:{{{header60|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header60|}}}</th></tr>| {{#if:{{{label60|}}}|{{#if:{{{data60|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label60|}}}</th><td class=\"{{{class60|}}}\" style=\"{{{datastyle|}}}\">{{{data60|}}}</td></tr>}}|  {{#if:{{{data60|}}}|<tr><td colspan=\"2\" class=\"{{{class60|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data60|}}}</td></tr>}} }} }}<!--\n Row 61\n-->{{#if:{{{header61|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header61|}}}</th></tr>| {{#if:{{{label61|}}}|{{#if:{{{data61|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label61|}}}</th><td class=\"{{{class61|}}}\" style=\"{{{datastyle|}}}\">{{{data61|}}}</td></tr>}}|  {{#if:{{{data61|}}}|<tr><td colspan=\"2\" class=\"{{{class61|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data61|}}}</td></tr>}} }} }}<!--\n Row 62\n-->{{#if:{{{header62|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header62|}}}</th></tr>| {{#if:{{{label62|}}}|{{#if:{{{data62|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label62|}}}</th><td class=\"{{{class62|}}}\" style=\"{{{datastyle|}}}\">{{{data62|}}}</td></tr>}}|  {{#if:{{{data62|}}}|<tr><td colspan=\"2\" class=\"{{{class62|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data62|}}}</td></tr>}} }} }}<!--\n Row 63\n-->{{#if:{{{header63|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header63|}}}</th></tr>| {{#if:{{{label63|}}}|{{#if:{{{data63|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label63|}}}</th><td class=\"{{{class63|}}}\" style=\"{{{datastyle|}}}\">{{{data63|}}}</td></tr>}}|  {{#if:{{{data63|}}}|<tr><td colspan=\"2\" class=\"{{{class63|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data63|}}}</td></tr>}} }} }}<!--\n Row 64\n-->{{#if:{{{header64|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header64|}}}</th></tr>| {{#if:{{{label64|}}}|{{#if:{{{data64|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label64|}}}</th><td class=\"{{{class64|}}}\" style=\"{{{datastyle|}}}\">{{{data64|}}}</td></tr>}}|  {{#if:{{{data64|}}}|<tr><td colspan=\"2\" class=\"{{{class64|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data64|}}}</td></tr>}} }} }}<!--\n Row 65\n-->{{#if:{{{header65|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header65|}}}</th></tr>| {{#if:{{{label65|}}}|{{#if:{{{data65|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label65|}}}</th><td class=\"{{{class65|}}}\" style=\"{{{datastyle|}}}\">{{{data65|}}}</td></tr>}}|  {{#if:{{{data65|}}}|<tr><td colspan=\"2\" class=\"{{{class65|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data65|}}}</td></tr>}} }} }}<!--\n Row 66\n-->{{#if:{{{header66|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header66|}}}</th></tr>| {{#if:{{{label66|}}}|{{#if:{{{data66|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label66|}}}</th><td class=\"{{{class66|}}}\" style=\"{{{datastyle|}}}\">{{{data66|}}}</td></tr>}}|  {{#if:{{{data66|}}}|<tr><td colspan=\"2\" class=\"{{{class66|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data66|}}}</td></tr>}} }} }}<!--\n Row 67\n-->{{#if:{{{header67|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header67|}}}</th></tr>| {{#if:{{{label67|}}}|{{#if:{{{data67|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label67|}}}</th><td class=\"{{{class67|}}}\" style=\"{{{datastyle|}}}\">{{{data67|}}}</td></tr>}}|  {{#if:{{{data67|}}}|<tr><td colspan=\"2\" class=\"{{{class67|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data67|}}}</td></tr>}} }} }}<!--\n Row 68\n-->{{#if:{{{header68|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header68|}}}</th></tr>| {{#if:{{{label68|}}}|{{#if:{{{data68|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label68|}}}</th><td class=\"{{{class68|}}}\" style=\"{{{datastyle|}}}\">{{{data68|}}}</td></tr>}}|  {{#if:{{{data68|}}}|<tr><td colspan=\"2\" class=\"{{{class68|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data68|}}}</td></tr>}} }} }}<!--\n Row 69\n-->{{#if:{{{header69|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header69|}}}</th></tr>| {{#if:{{{label69|}}}|{{#if:{{{data69|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label69|}}}</th><td class=\"{{{class69|}}}\" style=\"{{{datastyle|}}}\">{{{data69|}}}</td></tr>}}|  {{#if:{{{data69|}}}|<tr><td colspan=\"2\" class=\"{{{class69|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data69|}}}</td></tr>}} }} }}<!--\n Row 70\n-->{{#if:{{{header70|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header70|}}}</th></tr>| {{#if:{{{label70|}}}|{{#if:{{{data70|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label70|}}}</th><td class=\"{{{class70|}}}\" style=\"{{{datastyle|}}}\">{{{data70|}}}</td></tr>}}|  {{#if:{{{data70|}}}|<tr><td colspan=\"2\" class=\"{{{class70|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data70|}}}</td></tr>}} }} }}<!--\n Row 71\n-->{{#if:{{{header71|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header71|}}}</th></tr>| {{#if:{{{label71|}}}|{{#if:{{{data71|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label71|}}}</th><td class=\"{{{class71|}}}\" style=\"{{{datastyle|}}}\">{{{data71|}}}</td></tr>}}|  {{#if:{{{data71|}}}|<tr><td colspan=\"2\" class=\"{{{class71|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data71|}}}</td></tr>}} }} }}<!--\n Row 72\n-->{{#if:{{{header72|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header72|}}}</th></tr>| {{#if:{{{label72|}}}|{{#if:{{{data72|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label72|}}}</th><td class=\"{{{class72|}}}\" style=\"{{{datastyle|}}}\">{{{data72|}}}</td></tr>}}|  {{#if:{{{data72|}}}|<tr><td colspan=\"2\" class=\"{{{class72|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data72|}}}</td></tr>}} }} }}<!--\n Row 73\n-->{{#if:{{{header73|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header73|}}}</th></tr>| {{#if:{{{label73|}}}|{{#if:{{{data73|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label73|}}}</th><td class=\"{{{class73|}}}\" style=\"{{{datastyle|}}}\">{{{data73|}}}</td></tr>}}|  {{#if:{{{data73|}}}|<tr><td colspan=\"2\" class=\"{{{class73|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data73|}}}</td></tr>}} }} }}<!--\n Row 74\n-->{{#if:{{{header74|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header74|}}}</th></tr>| {{#if:{{{label74|}}}|{{#if:{{{data74|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label74|}}}</th><td class=\"{{{class74|}}}\" style=\"{{{datastyle|}}}\">{{{data74|}}}</td></tr>}}|  {{#if:{{{data74|}}}|<tr><td colspan=\"2\" class=\"{{{class74|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data74|}}}</td></tr>}} }} }}<!--\n Row 75\n-->{{#if:{{{header75|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header75|}}}</th></tr>| {{#if:{{{label75|}}}|{{#if:{{{data75|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label75|}}}</th><td class=\"{{{class75|}}}\" style=\"{{{datastyle|}}}\">{{{data75|}}}</td></tr>}}|  {{#if:{{{data75|}}}|<tr><td colspan=\"2\" class=\"{{{class75|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data75|}}}</td></tr>}} }} }}<!--\n Row 76\n-->{{#if:{{{header76|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header76|}}}</th></tr>| {{#if:{{{label76|}}}|{{#if:{{{data76|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label76|}}}</th><td class=\"{{{class76|}}}\" style=\"{{{datastyle|}}}\">{{{data76|}}}</td></tr>}}|  {{#if:{{{data76|}}}|<tr><td colspan=\"2\" class=\"{{{class76|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data76|}}}</td></tr>}} }} }}<!--\n Row 77\n-->{{#if:{{{header77|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header77|}}}</th></tr>| {{#if:{{{label77|}}}|{{#if:{{{data77|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label77|}}}</th><td class=\"{{{class77|}}}\" style=\"{{{datastyle|}}}\">{{{data77|}}}</td></tr>}}|  {{#if:{{{data77|}}}|<tr><td colspan=\"2\" class=\"{{{class77|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data77|}}}</td></tr>}} }} }}<!--\n Row 78\n-->{{#if:{{{header78|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header78|}}}</th></tr>| {{#if:{{{label78|}}}|{{#if:{{{data78|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label78|}}}</th><td class=\"{{{class78|}}}\" style=\"{{{datastyle|}}}\">{{{data78|}}}</td></tr>}}|  {{#if:{{{data78|}}}|<tr><td colspan=\"2\" class=\"{{{class78|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data78|}}}</td></tr>}} }} }}<!--\n Row 79\n-->{{#if:{{{header79|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header79|}}}</th></tr>| {{#if:{{{label79|}}}|{{#if:{{{data79|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label79|}}}</th><td class=\"{{{class79|}}}\" style=\"{{{datastyle|}}}\">{{{data79|}}}</td></tr>}}|  {{#if:{{{data79|}}}|<tr><td colspan=\"2\" class=\"{{{class79|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data79|}}}</td></tr>}} }} }}<!--\n Row 80\n-->{{#if:{{{header80|}}}|<tr><th colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\">{{{header80|}}}</th></tr>| {{#if:{{{label80|}}}|{{#if:{{{data80|}}}|<tr><th style=\"{{{labelstyle|}}}\">{{{label80|}}}</th><td class=\"{{{class80|}}}\" style=\"{{{datastyle|}}}\">{{{data80|}}}</td></tr>}}|  {{#if:{{{data80|}}}|<tr><td colspan=\"2\" class=\"{{{class80|}}}\" style=\"text-align:center; {{{datastyle|}}}\">{{{data80|}}}</td></tr>}} }} }}<!--\n Below\n-->{{#if:{{{below|}}}|<tr><td colspan=\"2\" style=\"text-align:center; {{{belowstyle|}}}\">{{{below|}}}</td></tr>}}<!--\n Tnavbar\n-->{{#if:{{{name|}}}|<tr><td style=\"text-align:right;\" colspan=\"2\">{{Tnavbar|{{{name}}}|noedit={{{noedit|0}}}}}</td></tr>}}\n</table><noinclude>\n{{pp-template|small=yes}}\n\n{{documentation}}\n<!-- Add categories and interwikis to the /doc subpage, not here! -->\n</noinclude>', 'utf-8');
INSERT INTO mw_text VALUES('24', '{{{!}} class=\"infobox {{{bodyclass|}}}\" cellspacing=\"5\" style=\"width: 22em; text-align: left; font-size: 88%; line-height: 1.5em; {{{bodystyle|}}}\"<!--\n Caption\n-->{{#if:{{{title|}}}|<nowiki/>\n{{!}}+ \n{{!}}class=\"{{{titleclass|}}}\" style=\"font-size: 125%; font-weight: bold; {{{titlestyle|}}}\"{{!}}{{{title}}} }}<!--\n Header\n-->{{#if:{{{above|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{aboveclass|}}}\" style=\"text-align:center; font-size: 125%; font-weight: bold; {{{abovestyle|}}}\"{{!}}{{{above}}} }}<!--\n Subheader\n-->{{#if:{{{subheader|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{subheaderclass|}}}\" style=\"text-align:center; {{{subheaderstyle|}}}\"{{!}}{{{subheader}}} }}<!--\n Image\n-->{{#if:{{{image|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{imageclass|}}}\" style=\"text-align:center; {{{imagestyle|}}}\"{{!}} {{{image}}} {{#if:{{{caption|}}}|<br />\n<span style=\"{{{captionstyle|}}}\">{{{caption}}}</span> }} }}<!--\n Row 1\n-->{{#if:{{{header1|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header1|}}} }}<!--\n-->{{#if:{{{label1|}}}|{{#if:{{{data1|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label1|}}}\n{{!}} class=\"{{{class1|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data1|}}} }}|  {{#if:{{{data1|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class1|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data1|}}} }} }}<!--\n Row 2\n-->{{#if:{{{header2|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header2|}}} }}<!--\n-->{{#if:{{{label2|}}}|{{#if:{{{data2|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label2|}}}\n{{!}} class=\"{{{class2|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data2|}}} }}|  {{#if:{{{data2|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class2|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data2|}}} }} }}<!--\n Row 3\n-->{{#if:{{{header3|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header3|}}} }}<!--\n-->{{#if:{{{label3|}}}|{{#if:{{{data3|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label3|}}}\n{{!}} class=\"{{{class3|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data3|}}} }}|  {{#if:{{{data3|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class3|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data3|}}} }} }}<!--\n Row 4\n-->{{#if:{{{header4|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header4|}}} }}<!--\n-->{{#if:{{{label4|}}}|{{#if:{{{data4|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label4|}}}\n{{!}} class=\"{{{class4|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data4|}}} }}|  {{#if:{{{data4|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class4|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data4|}}} }} }}<!--\n Row 5\n-->{{#if:{{{header5|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header5|}}} }}<!--\n-->{{#if:{{{label5|}}}|{{#if:{{{data5|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label5|}}}\n{{!}} class=\"{{{class5|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data5|}}} }}|  {{#if:{{{data5|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class5|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data5|}}} }} }}<!--\n Row 6\n-->{{#if:{{{header6|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header6|}}} }}<!--\n-->{{#if:{{{label6|}}}|{{#if:{{{data6|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label6|}}}\n{{!}} class=\"{{{class6|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data6|}}} }}|  {{#if:{{{data6|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class6|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data6|}}} }} }}<!--\n Row 7\n-->{{#if:{{{header7|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header7|}}} }}<!--\n-->{{#if:{{{label7|}}}|{{#if:{{{data7|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label7|}}}\n{{!}} class=\"{{{class7|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data7|}}} }}|  {{#if:{{{data7|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class7|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data7|}}} }} }}<!--\n Row 8\n-->{{#if:{{{header8|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header8|}}} }}<!--\n-->{{#if:{{{label8|}}}|{{#if:{{{data8|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label8|}}}\n{{!}} class=\"{{{class8|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data8|}}} }}|  {{#if:{{{data8|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class8|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data8|}}} }} }}<!--\n Row 9\n-->{{#if:{{{header9|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header9|}}} }}<!--\n-->{{#if:{{{label9|}}}|{{#if:{{{data9|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label9|}}}\n{{!}} class=\"{{{class9|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data9|}}} }}|  {{#if:{{{data9|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class9|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data9|}}} }} }}<!--\n Row 10\n-->{{#if:{{{header10|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header10|}}} }}<!--\n-->{{#if:{{{label10|}}}|{{#if:{{{data10|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label10|}}}\n{{!}} class=\"{{{class10|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data10|}}} }}|  {{#if:{{{data10|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class10|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data10|}}} }} }}<!--\n Row 11\n-->{{#if:{{{header11|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header11|}}} }}<!--\n-->{{#if:{{{label11|}}}|{{#if:{{{data11|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label11|}}}\n{{!}} class=\"{{{class11|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data11|}}} }}|  {{#if:{{{data11|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class11|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data11|}}} }} }}<!--\n Row 12\n-->{{#if:{{{header12|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header12|}}} }}<!--\n-->{{#if:{{{label12|}}}|{{#if:{{{data12|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label12|}}}\n{{!}} class=\"{{{class12|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data12|}}} }}|  {{#if:{{{data12|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class12|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data12|}}} }} }}<!--\n Row 13\n-->{{#if:{{{header13|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header13|}}} }}<!--\n-->{{#if:{{{label13|}}}|{{#if:{{{data13|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label13|}}}\n{{!}} class=\"{{{class13|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data13|}}} }}|  {{#if:{{{data13|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class13|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data13|}}} }} }}<!--\n Row 14\n-->{{#if:{{{header14|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header14|}}} }}<!--\n-->{{#if:{{{label14|}}}|{{#if:{{{data14|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label14|}}}\n{{!}} class=\"{{{class14|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data14|}}} }}|  {{#if:{{{data14|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class14|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data14|}}} }} }}<!--\n Row 15\n-->{{#if:{{{header15|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header15|}}} }}<!--\n-->{{#if:{{{label15|}}}|{{#if:{{{data15|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label15|}}}\n{{!}} class=\"{{{class15|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data15|}}} }}|  {{#if:{{{data15|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class15|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data15|}}} }} }}<!--\n Row 16\n-->{{#if:{{{header16|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header16|}}} }}<!--\n-->{{#if:{{{label16|}}}|{{#if:{{{data16|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label16|}}}\n{{!}} class=\"{{{class16|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data16|}}} }}|  {{#if:{{{data16|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class16|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data16|}}} }} }}<!--\n Row 17\n-->{{#if:{{{header17|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header17|}}} }}<!--\n-->{{#if:{{{label17|}}}|{{#if:{{{data17|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label17|}}}\n{{!}} class=\"{{{class17|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data17|}}} }}|  {{#if:{{{data17|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class17|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data17|}}} }} }}<!--\n Row 18\n-->{{#if:{{{header18|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header18|}}} }}<!--\n-->{{#if:{{{label18|}}}|{{#if:{{{data18|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label18|}}}\n{{!}} class=\"{{{class18|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data18|}}} }}|  {{#if:{{{data18|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class18|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data18|}}} }} }}<!--\n Row 19\n-->{{#if:{{{header19|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header19|}}} }}<!--\n-->{{#if:{{{label19|}}}|{{#if:{{{data19|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label19|}}}\n{{!}} class=\"{{{class19|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data19|}}} }}|  {{#if:{{{data19|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class19|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data19|}}} }} }}<!--\n Row 20\n-->{{#if:{{{header20|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header20|}}} }}<!--\n-->{{#if:{{{label20|}}}|{{#if:{{{data20|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label20|}}}\n{{!}} class=\"{{{class20|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data20|}}} }}|  {{#if:{{{data20|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class20|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data20|}}} }} }}<!--\n Row 21\n-->{{#if:{{{header21|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header21|}}} }}<!--\n-->{{#if:{{{label21|}}}|{{#if:{{{data21|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label21|}}}\n{{!}} class=\"{{{class21|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data21|}}} }}|  {{#if:{{{data21|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class21|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data21|}}} }} }}<!--\n Row 22\n-->{{#if:{{{header22|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header22|}}} }}<!--\n-->{{#if:{{{label22|}}}|{{#if:{{{data22|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label22|}}}\n{{!}} class=\"{{{class22|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data22|}}} }}|  {{#if:{{{data22|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class22|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data22|}}} }} }}<!--\n Row 23\n-->{{#if:{{{header23|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header23|}}} }}<!--\n-->{{#if:{{{label23|}}}|{{#if:{{{data23|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label23|}}}\n{{!}} class=\"{{{class23|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data23|}}} }}|  {{#if:{{{data23|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class23|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data23|}}} }} }}<!--\n Row 24\n-->{{#if:{{{header24|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header24|}}} }}<!--\n-->{{#if:{{{label24|}}}|{{#if:{{{data24|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label24|}}}\n{{!}} class=\"{{{class24|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data24|}}} }}|  {{#if:{{{data24|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class24|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data24|}}} }} }}<!--\n Row 25\n-->{{#if:{{{header25|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header25|}}} }}<!--\n-->{{#if:{{{label25|}}}|{{#if:{{{data25|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label25|}}}\n{{!}} class=\"{{{class25|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data25|}}} }}|  {{#if:{{{data25|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class25|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data25|}}} }} }}<!--\n Row 26\n-->{{#if:{{{header26|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header26|}}} }}<!--\n-->{{#if:{{{label26|}}}|{{#if:{{{data26|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label26|}}}\n{{!}} class=\"{{{class26|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data26|}}} }}|  {{#if:{{{data26|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class26|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data26|}}} }} }}<!--\n Row 27\n-->{{#if:{{{header27|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header27|}}} }}<!--\n-->{{#if:{{{label27|}}}|{{#if:{{{data27|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label27|}}}\n{{!}} class=\"{{{class27|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data27|}}} }}|  {{#if:{{{data27|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class27|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data27|}}} }} }}<!--\n Row 28\n-->{{#if:{{{header28|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header28|}}} }}<!--\n-->{{#if:{{{label28|}}}|{{#if:{{{data28|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label28|}}}\n{{!}} class=\"{{{class28|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data28|}}} }}|  {{#if:{{{data28|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class28|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data28|}}} }} }}<!--\n Row 29\n-->{{#if:{{{header29|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header29|}}} }}<!--\n-->{{#if:{{{label29|}}}|{{#if:{{{data29|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label29|}}}\n{{!}} class=\"{{{class29|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data29|}}} }}|  {{#if:{{{data29|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class29|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data29|}}} }} }}<!--\n Row 30\n-->{{#if:{{{header30|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header30|}}} }}<!--\n-->{{#if:{{{label30|}}}|{{#if:{{{data30|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label30|}}}\n{{!}} class=\"{{{class30|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data30|}}} }}|  {{#if:{{{data30|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class30|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data30|}}} }} }}<!--\n Row 31\n-->{{#if:{{{header31|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header31|}}} }}<!--\n-->{{#if:{{{label31|}}}|{{#if:{{{data31|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label31|}}}\n{{!}} class=\"{{{class31|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data31|}}} }}|  {{#if:{{{data31|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class31|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data31|}}} }} }}<!--\n Row 32\n-->{{#if:{{{header32|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header32|}}} }}<!--\n-->{{#if:{{{label32|}}}|{{#if:{{{data32|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label32|}}}\n{{!}} class=\"{{{class32|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data32|}}} }}|  {{#if:{{{data32|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class32|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data32|}}} }} }}<!--\n Row 33\n-->{{#if:{{{header33|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header33|}}} }}<!--\n-->{{#if:{{{label33|}}}|{{#if:{{{data33|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label33|}}}\n{{!}} class=\"{{{class33|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data33|}}} }}|  {{#if:{{{data33|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class33|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data33|}}} }} }}<!--\n Row 34\n-->{{#if:{{{header34|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header34|}}} }}<!--\n-->{{#if:{{{label34|}}}|{{#if:{{{data34|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label34|}}}\n{{!}} class=\"{{{class34|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data34|}}} }}|  {{#if:{{{data34|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class34|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data34|}}} }} }}<!--\n Row 35\n-->{{#if:{{{header35|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header35|}}} }}<!--\n-->{{#if:{{{label35|}}}|{{#if:{{{data35|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label35|}}}\n{{!}} class=\"{{{class35|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data35|}}} }}|  {{#if:{{{data35|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class35|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data35|}}} }} }}<!--\n Row 36\n-->{{#if:{{{header36|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header36|}}} }}<!--\n-->{{#if:{{{label36|}}}|{{#if:{{{data36|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label36|}}}\n{{!}} class=\"{{{class36|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data36|}}} }}|  {{#if:{{{data36|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class36|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data36|}}} }} }}<!--\n Row 37\n-->{{#if:{{{header37|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header37|}}} }}<!--\n-->{{#if:{{{label37|}}}|{{#if:{{{data37|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label37|}}}\n{{!}} class=\"{{{class37|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data37|}}} }}|  {{#if:{{{data37|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class37|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data37|}}} }} }}<!--\n Row 38\n-->{{#if:{{{header38|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header38|}}} }}<!--\n-->{{#if:{{{label38|}}}|{{#if:{{{data38|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label38|}}}\n{{!}} class=\"{{{class38|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data38|}}} }}|  {{#if:{{{data38|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class38|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data38|}}} }} }}<!--\n Row 39\n-->{{#if:{{{header39|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header39|}}} }}<!--\n-->{{#if:{{{label39|}}}|{{#if:{{{data39|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label39|}}}\n{{!}} class=\"{{{class39|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data39|}}} }}|  {{#if:{{{data39|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class39|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data39|}}} }} }}<!--\n Row 40\n-->{{#if:{{{header40|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header40|}}} }}<!--\n-->{{#if:{{{label40|}}}|{{#if:{{{data40|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label40|}}}\n{{!}} class=\"{{{class40|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data40|}}} }}|  {{#if:{{{data40|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class40|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data40|}}} }} }}<!--\n Row 41\n-->{{#if:{{{header41|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header41|}}} }}<!--\n-->{{#if:{{{label41|}}}|{{#if:{{{data41|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label41|}}}\n{{!}} class=\"{{{class41|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data41|}}} }}|  {{#if:{{{data41|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class41|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data41|}}} }} }}<!--\n Row 42\n-->{{#if:{{{header42|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header42|}}} }}<!--\n-->{{#if:{{{label42|}}}|{{#if:{{{data42|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label42|}}}\n{{!}} class=\"{{{class42|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data42|}}} }}|  {{#if:{{{data42|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class42|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data42|}}} }} }}<!--\n Row 43\n-->{{#if:{{{header43|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header43|}}} }}<!--\n-->{{#if:{{{label43|}}}|{{#if:{{{data43|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label43|}}}\n{{!}} class=\"{{{class43|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data43|}}} }}|  {{#if:{{{data43|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class43|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data43|}}} }} }}<!--\n Row 44\n-->{{#if:{{{header44|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header44|}}} }}<!--\n-->{{#if:{{{label44|}}}|{{#if:{{{data44|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label44|}}}\n{{!}} class=\"{{{class44|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data44|}}} }}|  {{#if:{{{data44|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class44|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data44|}}} }} }}<!--\n Row 45\n-->{{#if:{{{header45|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header45|}}} }}<!--\n-->{{#if:{{{label45|}}}|{{#if:{{{data45|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label45|}}}\n{{!}} class=\"{{{class45|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data45|}}} }}|  {{#if:{{{data45|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class45|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data45|}}} }} }}<!--\n Row 46\n-->{{#if:{{{header46|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header46|}}} }}<!--\n-->{{#if:{{{label46|}}}|{{#if:{{{data46|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label46|}}}\n{{!}} class=\"{{{class46|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data46|}}} }}|  {{#if:{{{data46|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class46|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data46|}}} }} }}<!--\n Row 47\n-->{{#if:{{{header47|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header47|}}} }}<!--\n-->{{#if:{{{label47|}}}|{{#if:{{{data47|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label47|}}}\n{{!}} class=\"{{{class47|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data47|}}} }}|  {{#if:{{{data47|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class47|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data47|}}} }} }}<!--\n Row 48\n-->{{#if:{{{header48|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header48|}}} }}<!--\n-->{{#if:{{{label48|}}}|{{#if:{{{data48|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label48|}}}\n{{!}} class=\"{{{class48|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data48|}}} }}|  {{#if:{{{data48|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class48|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data48|}}} }} }}<!--\n Row 49\n-->{{#if:{{{header49|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header49|}}} }}<!--\n-->{{#if:{{{label49|}}}|{{#if:{{{data49|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label49|}}}\n{{!}} class=\"{{{class49|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data49|}}} }}|  {{#if:{{{data49|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class49|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data49|}}} }} }}<!--\n Row 50\n-->{{#if:{{{header50|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header50|}}} }}<!--\n-->{{#if:{{{label50|}}}|{{#if:{{{data50|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label50|}}}\n{{!}} class=\"{{{class50|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data50|}}} }}|  {{#if:{{{data50|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class50|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data50|}}} }} }}<!--\n Row 51\n-->{{#if:{{{header51|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header51|}}} }}<!--\n-->{{#if:{{{label51|}}}|{{#if:{{{data51|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label51|}}}\n{{!}} class=\"{{{class51|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data51|}}} }}|  {{#if:{{{data51|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class51|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data51|}}} }} }}<!--\n Row 52\n-->{{#if:{{{header52|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header52|}}} }}<!--\n-->{{#if:{{{label52|}}}|{{#if:{{{data52|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label52|}}}\n{{!}} class=\"{{{class52|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data52|}}} }}|  {{#if:{{{data52|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class52|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data52|}}} }} }}<!--\n Row 53\n-->{{#if:{{{header53|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header53|}}} }}<!--\n-->{{#if:{{{label53|}}}|{{#if:{{{data53|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label53|}}}\n{{!}} class=\"{{{class53|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data53|}}} }}|  {{#if:{{{data53|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class53|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data53|}}} }} }}<!--\n Row 54\n-->{{#if:{{{header54|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header54|}}} }}<!--\n-->{{#if:{{{label54|}}}|{{#if:{{{data54|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label54|}}}\n{{!}} class=\"{{{class54|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data54|}}} }}|  {{#if:{{{data54|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class54|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data54|}}} }} }}<!--\n Row 55\n-->{{#if:{{{header55|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header55|}}} }}<!--\n-->{{#if:{{{label55|}}}|{{#if:{{{data55|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label55|}}}\n{{!}} class=\"{{{class55|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data55|}}} }}|  {{#if:{{{data55|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class55|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data55|}}} }} }}<!--\n Row 56\n-->{{#if:{{{header56|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header56|}}} }}<!--\n-->{{#if:{{{label56|}}}|{{#if:{{{data56|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label56|}}}\n{{!}} class=\"{{{class56|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data56|}}} }}|  {{#if:{{{data56|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class56|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data56|}}} }} }}<!--\n Row 57\n-->{{#if:{{{header57|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header57|}}} }}<!--\n-->{{#if:{{{label57|}}}|{{#if:{{{data57|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label57|}}}\n{{!}} class=\"{{{class57|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data57|}}} }}|  {{#if:{{{data57|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class57|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data57|}}} }} }}<!--\n Row 58\n-->{{#if:{{{header58|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header58|}}} }}<!--\n-->{{#if:{{{label58|}}}|{{#if:{{{data58|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label58|}}}\n{{!}} class=\"{{{class58|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data58|}}} }}|  {{#if:{{{data58|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class58|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data58|}}} }} }}<!--\n Row 59\n-->{{#if:{{{header59|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header59|}}} }}<!--\n-->{{#if:{{{label59|}}}|{{#if:{{{data59|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label59|}}}\n{{!}} class=\"{{{class59|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data59|}}} }}|  {{#if:{{{data59|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class59|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data59|}}} }} }}<!--\n Row 60\n-->{{#if:{{{header60|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header60|}}} }}<!--\n-->{{#if:{{{label60|}}}|{{#if:{{{data60|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label60|}}}\n{{!}} class=\"{{{class60|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data60|}}} }}|  {{#if:{{{data60|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class60|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data60|}}} }} }}<!--\n Row 61\n-->{{#if:{{{header61|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header61|}}} }}<!--\n-->{{#if:{{{label61|}}}|{{#if:{{{data61|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label61|}}}\n{{!}} class=\"{{{class61|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data61|}}} }}|  {{#if:{{{data61|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class61|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data61|}}} }} }}<!--\n Row 62\n-->{{#if:{{{header62|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header62|}}} }}<!--\n-->{{#if:{{{label62|}}}|{{#if:{{{data62|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label62|}}}\n{{!}} class=\"{{{class62|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data62|}}} }}|  {{#if:{{{data62|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class62|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data62|}}} }} }}<!--\n Row 63\n-->{{#if:{{{header63|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header63|}}} }}<!--\n-->{{#if:{{{label63|}}}|{{#if:{{{data63|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label63|}}}\n{{!}} class=\"{{{class63|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data63|}}} }}|  {{#if:{{{data63|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class63|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data63|}}} }} }}<!--\n Row 64\n-->{{#if:{{{header64|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header64|}}} }}<!--\n-->{{#if:{{{label64|}}}|{{#if:{{{data64|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label64|}}}\n{{!}} class=\"{{{class64|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data64|}}} }}|  {{#if:{{{data64|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class64|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data64|}}} }} }}<!--\n Row 65\n-->{{#if:{{{header65|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header65|}}} }}<!--\n-->{{#if:{{{label65|}}}|{{#if:{{{data65|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label65|}}}\n{{!}} class=\"{{{class65|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data65|}}} }}|  {{#if:{{{data65|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class65|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data65|}}} }} }}<!--\n Row 66\n-->{{#if:{{{header66|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header66|}}} }}<!--\n-->{{#if:{{{label66|}}}|{{#if:{{{data66|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label66|}}}\n{{!}} class=\"{{{class66|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data66|}}} }}|  {{#if:{{{data66|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class66|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data66|}}} }} }}<!--\n Row 67\n-->{{#if:{{{header67|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header67|}}} }}<!--\n-->{{#if:{{{label67|}}}|{{#if:{{{data67|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label67|}}}\n{{!}} class=\"{{{class67|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data67|}}} }}|  {{#if:{{{data67|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class67|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data67|}}} }} }}<!--\n Row 68\n-->{{#if:{{{header68|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header68|}}} }}<!--\n-->{{#if:{{{label68|}}}|{{#if:{{{data68|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label68|}}}\n{{!}} class=\"{{{class68|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data68|}}} }}|  {{#if:{{{data68|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class68|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data68|}}} }} }}<!--\n Row 69\n-->{{#if:{{{header69|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header69|}}} }}<!--\n-->{{#if:{{{label69|}}}|{{#if:{{{data69|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label69|}}}\n{{!}} class=\"{{{class69|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data69|}}} }}|  {{#if:{{{data69|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class69|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data69|}}} }} }}<!--\n Row 70\n-->{{#if:{{{header70|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header70|}}} }}<!--\n-->{{#if:{{{label70|}}}|{{#if:{{{data70|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label70|}}}\n{{!}} class=\"{{{class70|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data70|}}} }}|  {{#if:{{{data70|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class70|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data70|}}} }} }}<!--\n Row 71\n-->{{#if:{{{header71|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header71|}}} }}<!--\n-->{{#if:{{{label71|}}}|{{#if:{{{data71|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label71|}}}\n{{!}} class=\"{{{class71|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data71|}}} }}|  {{#if:{{{data71|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class71|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data71|}}} }} }}<!--\n Row 72\n-->{{#if:{{{header72|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header72|}}} }}<!--\n-->{{#if:{{{label72|}}}|{{#if:{{{data72|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label72|}}}\n{{!}} class=\"{{{class72|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data72|}}} }}|  {{#if:{{{data72|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class72|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data72|}}} }} }}<!--\n Row 73\n-->{{#if:{{{header73|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header73|}}} }}<!--\n-->{{#if:{{{label73|}}}|{{#if:{{{data73|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label73|}}}\n{{!}} class=\"{{{class73|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data73|}}} }}|  {{#if:{{{data73|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class73|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data73|}}} }} }}<!--\n Row 74\n-->{{#if:{{{header74|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header74|}}} }}<!--\n-->{{#if:{{{label74|}}}|{{#if:{{{data74|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label74|}}}\n{{!}} class=\"{{{class74|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data74|}}} }}|  {{#if:{{{data74|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class74|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data74|}}} }} }}<!--\n Row 75\n-->{{#if:{{{header75|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header75|}}} }}<!--\n-->{{#if:{{{label75|}}}|{{#if:{{{data75|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label75|}}}\n{{!}} class=\"{{{class75|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data75|}}} }}|  {{#if:{{{data75|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class75|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data75|}}} }} }}<!--\n Row 76\n-->{{#if:{{{header76|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header76|}}} }}<!--\n-->{{#if:{{{label76|}}}|{{#if:{{{data76|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label76|}}}\n{{!}} class=\"{{{class76|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data76|}}} }}|  {{#if:{{{data76|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class76|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data76|}}} }} }}<!--\n Row 77\n-->{{#if:{{{header77|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header77|}}} }}<!--\n-->{{#if:{{{label77|}}}|{{#if:{{{data77|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label77|}}}\n{{!}} class=\"{{{class77|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data77|}}} }}|  {{#if:{{{data77|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class77|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data77|}}} }} }}<!--\n Row 78\n-->{{#if:{{{header78|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header78|}}} }}<!--\n-->{{#if:{{{label78|}}}|{{#if:{{{data78|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label78|}}}\n{{!}} class=\"{{{class78|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data78|}}} }}|  {{#if:{{{data78|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class78|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data78|}}} }} }}<!--\n Row 79\n-->{{#if:{{{header79|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header79|}}} }}<!--\n-->{{#if:{{{label79|}}}|{{#if:{{{data79|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label79|}}}\n{{!}} class=\"{{{class79|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data79|}}} }}|  {{#if:{{{data79|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class79|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data79|}}} }} }}<!--\n Row 80\n-->{{#if:{{{header80|}}}|<nowiki/>\n{{!}}-\n! colspan=\"2\" style=\"text-align:center; {{{headerstyle|}}}\"{{!}}{{{header80|}}} }}<!--\n-->{{#if:{{{label80|}}}|{{#if:{{{data80|}}}|<nowiki/>\n{{!}}- \n! style=\"{{{labelstyle|}}}\"{{!}}{{{label80|}}}\n{{!}} class=\"{{{class80|}}}\" style=\"{{{datastyle|}}}\"{{!}}{{{data80|}}} }}|  {{#if:{{{data80|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" class=\"{{{class80|}}}\" style=\"text-align:center; {{{datastyle|}}}\"{{!}}{{{data80|}}} }} }}<!--\n Below\n-->{{#if:{{{below|}}}|<nowiki/>\n{{!}}-\n{{!}}colspan=\"2\" style=\"text-align:center; {{{belowstyle|}}}\"{{!}}{{{below|}}} }}<!--\n\n-->{{#if:{{{name|}}}|<nowiki/>\n{{!}}-\n{{!}}style=\"text-align:right;\" colspan=2\"{{!}}{{Tnavbar|{{{name}}}|noedit={{{noedit|0}}}}} }}\n{{!}}}', 'utf-8');
INSERT INTO mw_text VALUES('25', '/* CSS placed here will be applied to all skins */\n\n/* Infobox template style */\n.infobox {\n    border: 1px solid #aaa;\n    background-color: #f9f9f9;\n    color: black;\n    margin: 0.5em 0 0.5em 1em;\n    padding: 0.2em;\n    float: right;\n    clear: right;\n}\n.infobox td,\n.infobox th {\n    vertical-align: top;\n}\n.infobox caption {\n    font-size: larger;\n}\n.infobox.bordered {\n    border-collapse: collapse;\n}\n.infobox.bordered td,\n.infobox.bordered th {\n    border: 1px solid #aaa;\n}\n.infobox.bordered .borderless td,\n.infobox.bordered .borderless th {\n    border: 0;\n}\n \n.infobox.sisterproject {\n    width: 20em;\n    font-size: 90%;\n}\n \n.infobox.standard-talk {\n    border: 1px solid #c0c090;\n    background-color: #f8eaba;\n}\n.infobox.standard-talk.bordered td,\n.infobox.standard-talk.bordered th {\n    border: 1px solid #c0c090;\n}\n \n/* styles for bordered infobox with merged rows */\n.infobox.bordered .mergedtoprow td,\n.infobox.bordered .mergedtoprow th {\n    border: 0;\n    border-top: 1px solid #aaa;\n    border-right: 1px solid #aaa;\n}\n \n.infobox.bordered .mergedrow td,\n.infobox.bordered .mergedrow th {\n    border: 0;\n    border-right: 1px solid #aaa;\n}', 'utf-8');
INSERT INTO mw_text VALUES('26', '{{Userinfo| \n\n|username=Daniel\n\n|name=Daniel\n\n|userid=2\n\n|born=August 15\n\n|gender=male \n\n|location=Moncton\n\n|other=Here\n\n}}\n\n{{Infobox\n|name    = Infobox/doc\n|title   = \n|image   = [[Image:example.png|200px]]\n|caption = Caption for example.png\n\n|headerstyle  = background:#ccf;\n|labelstyle   = background:#ddf;\n\n|header1 = Header defined alone\n|label1  = \n|data1   = \n|header2 = \n|label2  = Label defined alone\n|data2   = \n|header3 = \n|label3  = \n|data3   = Data defined alone\n|header4 = All three defined (header)\n|label4  = All three defined (label)\n|data4   = All three defined (data)\n|header5 = \n|label5  = Label and data defined (label)\n|data5   = Label and data defined (data)\n\n|belowstyle = background:#ddf;\n|below = Below text\n}}', 'utf-8');
INSERT INTO mw_text VALUES('27', 'This template is currently unavailable.', 'utf-8');
INSERT INTO mw_text VALUES('28', '/* <source lang=\"css\"> */\n \n/* Main page fixes */\n#interwiki-completelist {\n    font-weight: bold;\n}\nbody.page-Main_Page #ca-delete {\n    display: none !important;\n}\n \nbody.page-Main_Page #mp-topbanner {\n   clear:both;\n}\n \n/* Edit window toolbar */\n#toolbar {\n    height: 22px;\n    margin-bottom: 6px;\n}\n \n/* Make the list of references smaller */\nol.references {\n    font-size: 100%;\n}\n.references-small { \n    font-size: 90%;\n}\n \n/* VALIDATOR NOTICE: the following is correct, but the W3C validator doesn\'t accept it */\n/* -moz-* is a vendor-specific extension (CSS 2.1 4.1.2.1) */\n/* column-count is from the CSS3 module \"CSS Multi-column Layout\" */\n/* Please ignore any validator errors caused by these two lines */\n.references-2column {\n    font-size: 90%;\n    -moz-column-count: 2;\n    -webkit-column-count: 2;\n    column-count: 2;\n}\n \n/* Highlight clicked reference in blue to help navigation */\nol.references > li:target {\n    background-color: #DEF;\n}\n \nsup.reference:target { \n    background-color: #DEF;\n}\n \n/* Styling for citations */\ncite {\n    font-style: normal;\n    word-wrap: break-word;\n}\n \n/* If there is an inline link to a full citation, the full citation will turn blue when the inline link is clicked */\ncite:target { \n    background-color: #DEF;\n}\n \n/* For linked citation numbers and document IDs, where the number need not be shown on a screen or a handheld, but should be included in the printed version */\n \n@media screen, handheld, projection {\n    cite *.printonly {\n        display: none;\n    }\n}\n \n \n/* wikitable/prettytable class for skinning normal tables */\ntable.wikitable,\ntable.prettytable {\n    margin: 1em 1em 1em 0;\n    background: #f9f9f9;\n    border: 1px #aaa solid;\n    border-collapse: collapse;\n}\n.wikitable th, .wikitable td,\n.prettytable th, .prettytable td {\n    border: 1px #aaa solid;\n    padding: 0.2em;\n}\n.wikitable th,\n.prettytable th {\n    background: #f2f2f2;\n    text-align: center;\n}\n.wikitable caption,\n.prettytable caption {\n    font-weight: bold;\n}\n \n/* default skin for navigation boxes */\ntable.navbox {            /* navbox container style */\n  border:1px solid #aaa;\n  width:100%; \n  margin:auto;\n  clear:both;\n  font-size:88%;\n  text-align:center;\n  padding:1px;\n}\ntable.navbox + table.navbox {\n  margin-top:-1px;        /* single pixel border between adjacent navboxes (doesn\'t work for IE6, but that\'s okay) */\n}\n.navbox-title, .navbox-abovebelow, table.navbox th {\n  text-align:center;      /* title and above/below styles */\n  padding-left:1em;\n  padding-right:1em;\n}\n.navbox-group {           /* group style */\n  white-space:nowrap;\n  text-align:right;\n  font-weight:bold;\n  padding-left:1em;\n  padding-right:1em;\n}\n.navbox, .navbox-subgroup {\n  background:#fdfdfd;     /* Background color */\n}\n.navbox-list {\n  border-color:#fdfdfd;   /* Must match background color */\n}\n.navbox-title, table.navbox th {\n  background:#ccccff;     /* Level 1 color */\n}\n.navbox-abovebelow, .navbox-group, .navbox-subgroup .navbox-title {\n  background:#ddddff;     /* Level 2 color */\n}\n.navbox-subgroup .navbox-group, .navbox-subgroup .navbox-abovebelow {\n  background:#e6e6ff;     /* Level 3 color */\n}\n.navbox-even {\n  background:#f7f7f7;     /* Even row striping */\n}\n.navbox-odd {\n  background:transparent; /* Odd row striping */\n}\n \n.collapseButton {         /* \'show\'/\'hide\' buttons created dynamically by the        */\n    float: right;         /* CollapsibleTables javascript in [[MediaWiki:Common.js]] */\n    font-weight: normal;  /* are styled here so they can be customised.              */\n    text-align: right;\n    width: auto;\n}\n.navbox .collapseButton { /* In navboxes, the show/hide button balances the vde links from */\n    width: 6em;           /* [[Template:Tnavbar]], so they need to be the same width.      */\n}\n \n \n/* Infobox template style */\n.infobox {\n    border: 1px solid #aaa;\n    background-color: #f9f9f9;\n    color: black;\n    margin: 0.5em 0 0.5em 1em;\n    padding: 0.2em;\n    float: right;\n    clear: right;\n}\n.infobox td,\n.infobox th {\n    vertical-align: top;\n}\n.infobox caption {\n    font-size: larger;\n}\n.infobox.bordered {\n    border-collapse: collapse;\n}\n.infobox.bordered td,\n.infobox.bordered th {\n    border: 1px solid #aaa;\n}\n.infobox.bordered .borderless td,\n.infobox.bordered .borderless th {\n    border: 0;\n}\n \n.infobox.sisterproject {\n    width: 20em;\n    font-size: 90%;\n}\n \n.infobox.standard-talk {\n    border: 1px solid #c0c090;\n    background-color: #f8eaba;\n}\n.infobox.standard-talk.bordered td,\n.infobox.standard-talk.bordered th {\n    border: 1px solid #c0c090;\n}\n \n/* styles for bordered infobox with merged rows */\n.infobox.bordered .mergedtoprow td,\n.infobox.bordered .mergedtoprow th {\n    border: 0;\n    border-top: 1px solid #aaa;\n    border-right: 1px solid #aaa;\n}\n \n.infobox.bordered .mergedrow td,\n.infobox.bordered .mergedrow th {\n    border: 0;\n    border-right: 1px solid #aaa;\n}\n \n/* Styles for geography infoboxes, e.g. countries, country subdivisions, cities, etc. */\n.infobox.geography {\n    text-align: left;\n    border-collapse: collapse;\n    line-height: 1.2em; \n    font-size: 90%;\n}\n \n.infobox.geography  td,\n.infobox.geography  th {\n    border-top: solid 1px #aaa;\n    padding: 0.4em 0.6em 0.4em 0.6em;\n}\n.infobox.geography .mergedtoprow td,\n.infobox.geography .mergedtoprow th {\n    border-top: solid 1px #aaa;\n    padding: 0.4em 0.6em 0.2em 0.6em;\n}\n \n.infobox.geography .mergedrow td,\n.infobox.geography .mergedrow th {\n    border: 0;\n    padding: 0 0.6em 0.2em 0.6em;\n}\n \n.infobox.geography .mergedbottomrow td,\n.infobox.geography .mergedbottomrow th {\n    border-top: 0;\n    border-bottom: solid 1px #aaa;\n    padding: 0 0.6em 0.4em 0.6em;\n}\n \n.infobox.geography .maptable td,\n.infobox.geography .maptable th {\n    border: 0;\n    padding: 0;\n}\n \n/* Style for \"notices\" */\n.notice {\n    margin: 1em;\n    padding: 0.2em;\n}\n \n#disambig {\n    border-top: 1px solid #ccc; \n    border-bottom: 1px solid #ccc;\n}\n \n/* Persondata and other (future) metadata,\n   \"table.InChI\" and \".InChI-label\" are temporary. */\ntable.InChI,\ntable.persondata {\n    border: 1px solid #aaa;\n    display: none;\n    speak: none;\n}\n.InChI-label,\n.persondata-label {\n    color: #aaa;\n}\n \n/* Makes redirects appear in italics in categories and on [[Special:Allpages]] */\n.redirect-in-category, .allpagesredirect {\n    font-style: italic;\n}\n \n/* Class for links with loudspeaker icon next to them. \n   (Used in [[Template:Audio]] and the like to make the speaker clickable) */\n.audiolink a {\n    background: url(\"http://upload.wikimedia.org/wikipedia/commons/thumb/8/8a/Loudspeaker.svg/11px-Loudspeaker.svg.png\") center left no-repeat !important;\n    padding-left: 16px !important;\n    padding-right: 0 !important;\n}\n \n/* Icons for medialist templates [[Template:Listen]], [[Template:Multi-listen_start]], [[Template:Video]], [[Template:Multi-video_start]] */\ndiv.listenlist {\n    background: url(\"http://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Gnome-speakernotes.png/30px-Gnome-speakernotes.png\");\n    padding-left: 40px;\n}\ndiv.videolist, div.multivideolist {\n    background: url(\"http://upload.wikimedia.org/wikipedia/en/thumb/2/20/Tango-video-x-generic.png/40px-Tango-video-x-generic.png\");\n    padding-left: 50px;\n}\n \n/* Style rules for media list templates */\ndiv.medialist {\n    min-height: 50px;\n    margin: 1em;\n    background-position: top left;\n    background-repeat: no-repeat;\n}\ndiv.medialist ul {\n    list-style-type: none; \n    list-style-image: none;\n    margin: 0;\n}\ndiv.medialist ul li {\n    padding-bottom: 0.5em;\n}\ndiv.medialist ul li li {\n    font-size: 91%;\n    padding-bottom: 0;\n}\n \n/* Change the external link icon to an Adobe icon for all PDF files */\n/* (in browsers that support these CSS selectors, like Mozilla and Opera) */\n#bodyContent a[href$=\".pdf\"].external, \n#bodyContent a[href*=\".pdf?\"].external, \n#bodyContent a[href*=\".pdf#\"].external,\n#bodyContent a[href$=\".PDF\"].external, \n#bodyContent a[href*=\".PDF?\"].external, \n#bodyContent a[href*=\".PDF#\"].external,\n#mw_content a[href$=\".pdf\"].external, \n#mw_content a[href*=\".pdf?\"].external, \n#mw_content a[href*=\".pdf#\"].external,\n#mw_content a[href$=\".PDF\"].external, \n#mw_content a[href*=\".PDF?\"].external, \n#mw_content a[href*=\".PDF#\"].external {\n    background: url(http://upload.wikimedia.org/wikipedia/commons/thumb/2/23/Icons-mini-file_acrobat.gif/15px-Icons-mini-file_acrobat.gif) center right no-repeat;\n    padding-right: 16px;\n}\n \n/* Change the external link icon to an Adobe icon anywhere the PDFlink class */\n/* is used (notably Template:PDFlink). This works in IE, unlike the above. */\nspan.PDFlink a {\n    background: url(http://upload.wikimedia.org/wikipedia/commons/thumb/2/23/Icons-mini-file_acrobat.gif/15px-Icons-mini-file_acrobat.gif) center right no-repeat !important;\n    padding-right: 17px !important;\n}\n \nspan.geolink a {\n    background: url(http://upload.wikimedia.org/wikipedia/en/a/a7/Monobook-globe.png) center right no-repeat !important;\n    padding-right: 11px !important;\n}\n \n/* Content in columns with CSS instead of tables [[Template:Columns]] */\ndiv.columns-2 div.column {\n    float: left;\n    width: 50%;\n    min-width: 300px;\n}\ndiv.columns-3 div.column {\n    float: left;\n    width: 33.3%;\n    min-width: 200px;\n}\ndiv.columns-4 div.column {\n    float: left;\n    width: 25%;\n    min-width: 150px;\n}\ndiv.columns-5 div.column {\n    float: left;\n    width: 20%;\n    min-width: 120px;\n}\n \n/*Add formatting to make sure that \"external references\" from [[Template:Ref]] do\n  not get URL expansion, not even when printed. The mechanism up to MediaWiki 1.4 was\n  that the HTML code contained a SPAN following the anchor A; this SPAN had the class\n  \"urlexpansion\", which was not displayed on screen, but was shown when the medium was\n  \"print\". The rules below ensure (a) that there is no extra padding to the right of\n  the anchor (displayed as \"[<number>]\"), (b) that there is no \"external link arrow\" for\n  the link, and (c) that this SPAN of class \"urlexpansion\" is never shown.\n  [[User:Daniel|Daniel]] 00:19, 20 March 2009 (UTC)\n*/\n.plainlinksneverexpand {\n    background: none ! important;\n    padding: 0 ! important;\n}\n.plainlinksneverexpand .urlexpansion {\n    display: none ! important;\n}\n \n/* Make sure that ext links displayed within \"plainlinksneverexpand\" don\'t get\n   the arrow...\n*/\n.plainlinksneverexpand a {\n    background: none !important;\n    padding: 0 !important;\n}\n \n/* With MediaWiki 1.5, the mechanism has changed: instead of a SPAN of class \"urlexpansion\"\n   following the anchor A, the anchor itself now has class \"external autonumber\" and the\n   expansion is inserted when printing (see the common printing style sheet at\n   http://en.wikipedia.org/skins-1.5/common/commonPrint.css) using the \":after\" pseudo-\n   element of CSS. We have to switch this off for links due to Template:Ref!\n*/\n.plainlinksneverexpand a.external.text:after {\n    display: none !important;\n}\n.plainlinksneverexpand a.external.autonumber:after {\n    display: none !important;\n}\n \n/* Messagebox templates */\n.messagebox {\n    border: 1px solid #aaa;\n    background-color: #f9f9f9;\n    width: 80%;\n    margin: 0 auto 1em auto;\n    padding: .2em;\n}\n.messagebox.merge {\n    border: 1px solid #c0b8cc;\n    background-color: #f0e5ff;\n    text-align: center;\n}\n.messagebox.cleanup {\n    border: 1px solid #9f9fff;\n    background-color: #efefff;\n    text-align: center;\n}\n.messagebox.standard-talk {\n    border: 1px solid #c0c090;\n    background-color: #f8eaba;\n    margin: 4px auto;\n}\n/* For old WikiProject banners inside banner shells. */\n.mbox-inside .standard-talk,\n.messagebox.nested-talk {\n    border: 1px solid #c0c090;\n    background-color: #f8eaba;\n    width: 100%;\n    margin: 2px 0;\n    padding: 2px;\n}\n.messagebox.small {\n    width: 238px;\n    font-size: 85%;\n    float: right;\n    clear: both;\n    margin: 0 0 1em 1em;\n    line-height: 1.25em; \n}\n.messagebox.small-talk {\n    width: 238px;\n    font-size: 85%;\n    float: right;\n    clear: both;\n    margin: 0 0 1em 1em;\n    line-height: 1.25em; \n    background: #F8EABA;\n}\n \n \n/* Cell sizes for ambox/tmbox/imbox/cmbox/ombox/fmbox/dmbox message boxes */\nth.mbox-text, td.mbox-text {     /* The message body cell(s) */\n    border: none; \n    padding: 0.25em 0.9em;       /* 0.9em left/right */\n    width: 100%;    /* Make all mboxes the same width regardless of text length */\n}\ntd.mbox-image {                  /* The left image cell */\n    border: none; \n    padding: 2px 0 2px 0.9em;    /* 0.9em left, 0px right */\n    text-align: center; \n}\ntd.mbox-imageright {             /* The right image cell */\n    border: none;\n    padding: 2px 0.9em 2px 0;    /* 0px left, 0.9em right */\n    text-align: center; \n}\n.mediawiki table.mbox-small {    /* For the \"small=yes\" option (also used elsewhere).   */\n    clear: right;                /* The \"mediawiki\" 